@charset "UTF-8";
/* ===============================================
# フォント
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
/* ===============================================
# フォント
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
/* ===============================================
# 関数
=============================================== */
/* ===============================================
# 変数
=============================================== */
:root {
  --color-white: #ffffff;
  --color-background: #FCF9F3;
  --color-footer: #CEE1AC;
  --color-green: #4CA859;
  --color-btn_green: #52AA5C;
  --color-light_green: #CEE1AC;
  --color-orange: #F89C00;
  --color-btn_orange: #FAC46B;
  --color-gray: #979692;
  --color-hamburger: #584C43;
}

:root {
  --font-size12: 0.75rem;
  --font-size14: 0.875rem;
  --font-size16: 1rem;
  --font-size18: 1.125rem;
  --font-size20: 1.25rem;
  --font-size22: 1.375rem;
  --font-size24: 1.5rem;
  --font-size25: 1.5625rem;
  --font-size28: 1.75rem;
  --font-size30: 1.875rem;
  --font-size32: 2rem;
  --font-size36: 2.25rem;
  --font-size48: 3rem;
  --font-size50: 3.125rem;
}

/* ===============================================
# ミックスイン
=============================================== */
/* ===============================================
# 共通
=============================================== */
* {
  box-sizing: border-box;
  font-size: var(--font-size16);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  min-width: 375px;
  width: 100%;
  height: 100%;
}

h1, h2, h3, p, a {
  line-height: 1.6;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ===============================================
# アニメーション
=============================================== */
@keyframes open_menu {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.key-open_menu {
  animation-name: open_menu;
}

@keyframes TextAnime {
  0% {
    transform: translateY(2rem);
    opacity: 0;
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.key-textAnime {
  animation-name: TextAnime;
  opacity: 0;
}

@keyframes TextJump {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(3px) rotate(-3deg);
  }
  75% {
    transform: translateY(-3px) rotate(3deg);
  }
  100% {
    transform: translateY(0);
  }
}
.key-textJump.animate {
  animation-name: TextJump;
  animation-timing-function: ease-in-out;
  animation-fill-mode: none;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-7deg);
  }
}
.key-fadeUp {
  animation-name: fadeUp;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.key-fuwafuwa {
  animation-name: fuwafuwa;
  animation-direction: alternate;
}

.anime {
  animation-fill-mode: forwards;
}
.anime.duration-1s {
  animation-duration: 1s;
}
.anime.duration-3s {
  animation-duration: 3s;
}
.anime.duration-12s {
  animation-duration: 12s;
}
.anime.loop {
  animation-iteration-count: infinite;
}
.anime.delay-02s {
  animation-delay: 0.2s;
}
.anime.delay-04s {
  animation-delay: 0.4s;
}
.anime.delay-06s {
  animation-delay: 0.6s;
}
.anime.delay-08s {
  animation-delay: 0.8s;
}
.anime.delay-1s {
  animation-delay: 1s;
}
.anime.delay-1_02s {
  animation-delay: 1.2s;
}
.anime.delay-1_04s {
  animation-delay: 1.4s;
}
.anime.delay-1_06s {
  animation-delay: 1.6s;
}
.anime.delay-1_08s {
  animation-delay: 1.8s;
}
.anime.delay-2s {
  animation-delay: 2s;
}
.anime.delay-2_02s {
  animation-delay: 2.2s;
}
.anime.delay-2_04s {
  animation-delay: 2.4s;
}
.anime.delay-2_06s {
  animation-delay: 2.6s;
}
.anime.delay-2_08s {
  animation-delay: 2.8s;
}
.anime.delay-3s {
  animation-delay: 3s;
}
.anime.delay-4s {
  animation-delay: 4s;
}
.anime.delay-5s {
  animation-delay: 5s;
}
.anime.delay-6s {
  animation-delay: 6s;
}
.anime.fast {
  animation-duration: 500ms;
}
.anime.slow-2s {
  animation-duration: 2s;
}
.anime.slow-10s {
  animation-duration: 10s;
}
.anime.slow-20s {
  animation-duration: 20s;
}
.anime.ease-in {
  animation-timing-function: ease-in;
}
.anime.ease-out {
  animation-timing-function: ease-out;
}

/* ===============================================
# hover
=============================================== */
/* ===============================================
# 今日のあいる一覧
=============================================== */
.post-type-archive {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#archive {
  flex: 1;
  padding-top: 80px;
}
@media screen and (max-width: 580px) {
  #archive {
    padding-top: 60px;
  }
}
@media screen and (max-width: 580px) {
  #archive .lower-h2 {
    max-height: 60px;
    padding: 15px 0;
  }
}
#archive .lower-h2 .inner {
  max-width: 800px;
  font-size: var(--font-size36);
}
@media screen and (max-width: 580px) {
  #archive .lower-h2 .inner {
    font-size: var(--font-size20);
    text-align: center;
  }
}
#archive ul {
  margin-bottom: 50px;
}
#archive .post_item {
  border-bottom: dotted 3px var(--color-green);
  color: var(--color-green);
}
#archive .post_item:first-child {
  border-top: dotted 3px var(--color-green);
}
#archive .post_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
}
@media screen and (max-width: 580px) {
  #archive .post_item a {
    padding: 30px 10px;
  }
}
#archive .post_item a time {
  margin-right: 50px;
}
@media screen and (max-width: 580px) {
  #archive .post_item a time {
    margin-right: 1rem;
  }
}
#archive .post_item a span {
  flex: 1;
}
#archive .post_item img {
  width: 10px;
  height: 15px;
  vertical-align: text-bottom;
}
@media screen and (max-width: 580px) {
  #archive .post_item img {
    display: none;
  }
}

/* ===============================================
# top
=============================================== */
#front-page {
  width: 100%;
  margin: 0 auto;
}
#front-page .kv {
  position: relative;
}
#front-page #diaries {
  color: #4CA859;
}
#front-page #diaries .inner h2 {
  font-size: var(--font-size24);
  text-align: center;
  margin-bottom: 40px;
}
#front-page #diaries .inner h2::before, #front-page #diaries .inner h2::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-green.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#front-page #diaries .inner h2::before {
  transform: translate(-7px, 9px);
}
#front-page #diaries .inner h2::after {
  transform: translate(5px, 9px);
}
#front-page #diaries .inner ul {
  font-size: var(--font-size20);
  border-top: 1px solid #4CA859;
  border-bottom: 1px solid #4CA859;
  margin-bottom: 40px;
}
#front-page #diaries .inner ul li {
  padding: 20px;
}
#front-page #diaries .inner ul li a {
  gap: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 580px) {
  #front-page #diaries .inner ul li a {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media screen and (max-width: 580px) {
  #front-page #diaries .inner ul li a img {
    display: none;
  }
}
#front-page #diaries .inner ul li span {
  flex: 1;
}
#front-page #diaries .inner ul li:not(:last-child) {
  border-bottom: 1px dashed #4CA859;
}
#front-page #pages .common-ul li {
  color: var(--color-green);
  margin-bottom: 150px;
}
@media screen and (max-width: 580px) {
  #front-page #pages .common-ul li {
    margin-bottom: 60px;
  }
}
#front-page #pages .common-ul li > h3 {
  display: none;
}
@media screen and (max-width: 580px) {
  #front-page #pages .common-ul li > h3 {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 580px) {
  #front-page #pages .common-ul li .text {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  #front-page #pages .common-ul li .text h3 {
    display: none;
  }
}
#front-page #pages .common-ul li:nth-child(odd) {
  flex-direction: row-reverse;
  color: var(--color-orange);
}
@media screen and (max-width: 580px) {
  #front-page #pages .common-ul li:nth-child(odd) {
    flex-direction: column;
  }
}
#front-page #pages .common-ul li:nth-child(odd) h3::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-7px, 9px);
}
#front-page #pages .common-ul li h3::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-red.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-7px, 9px);
}
#front-page #pages .common-ul li p {
  margin-bottom: 16px;
}

/* ===============================================
# 私たちについて
=============================================== */
#page-about {
  padding-top: 100px;
}
#page-about h2 {
  color: #4CA859;
  text-align: center;
  padding-top: 64px;
  margin-bottom: 80px;
  font-size: var(--font-size36);
}
#page-about h2::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-10px, 3px);
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 580px) {
  #page-about h2::before {
    width: 25px;
    height: 25px;
  }
}
#page-about h2::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-red.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(5px, 9px);
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 580px) {
  #page-about h2::after {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 580px) {
  #page-about h2 {
    font-size: var(--font-size25);
    margin-bottom: 64px;
  }
}
#page-about #top {
  color: #F89C00;
}
#page-about #top h3 {
  font-size: var(--font-size24);
  margin-bottom: 50px;
}
@media screen and (max-width: 580px) {
  #page-about #top h3 {
    font-size: var(--font-size20);
    margin-bottom: 48px;
  }
}
#page-about #top p {
  line-height: 1.8;
}
#page-about #company .inner h3 {
  font-weight: 500;
  color: var(--color-green);
}
#page-about #company .inner h3::before, #page-about #company .inner h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-green.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#page-about #company .inner h3::before {
  transform: translate(-7px, 8px);
}
@media screen and (max-width: 580px) {
  #page-about #company .inner h3::before {
    width: 25px;
    height: 25px;
  }
}
#page-about #company .inner h3::after {
  transform: translate(4px, 8px);
}
@media screen and (max-width: 580px) {
  #page-about #company .inner h3::after {
    width: 25px;
    height: 25px;
  }
}
#page-about #company .inner > dl {
  border-radius: 36px;
  overflow: hidden;
  display: block;
  margin-bottom: 80px;
  color: #979692;
}
#page-about #company .inner > dl > div {
  display: flex;
  background: #fff;
}
#page-about #company .inner > dl > div > dt {
  width: 150px;
  text-align: center;
  background: #CEE1AC;
  color: #fff;
  padding: 24px;
}
#page-about #company .inner > dl > div > dd {
  width: 100%;
  padding: 24px;
  flex: 1;
}
#page-about #company .inner > dl > div > dd dl div {
  display: flex;
}
#page-about #company .inner > dl > div > dd dl div dt {
  width: 150px;
  margin-bottom: 8px;
  font-weight: 400;
}
#page-about #company .inner > dl > div > dd dl div dd {
  width: 100%;
  flex: 1;
}
#page-about #company .inner > dl > div > dd dl div:not(:last-child) {
  margin-bottom: 24px;
}
#page-about #company .inner > dl > div > :not(:last-child) {
  border-bottom: 1px solid #fff;
  font-weight: 400;
}
@media screen and (max-width: 580px) {
  #page-about #company .inner > dl > div {
    flex-direction: column;
  }
  #page-about #company .inner > dl > div > dt, #page-about #company .inner > dl > div > dd {
    width: 100%;
    padding: 16px 24px;
  }
  #page-about #company .inner > dl > div > dt dl div, #page-about #company .inner > dl > div > dd dl div {
    flex-direction: column;
  }
  #page-about #company .inner > dl > div > dt dl div dd, #page-about #company .inner > dl > div > dd dl div dd {
    width: 100%;
  }
}
#page-about #company .inner .company--br {
  display: none;
}
@media screen and (max-width: 450px) {
  #page-about #company .inner .company--br {
    display: block;
  }
}
#page-about #company .inner .company--br-2 {
  display: block;
}
@media screen and (max-width: 450px) {
  #page-about #company .inner .company--br-2 {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  #page-about #company .inner .tel-dd {
    text-align: center;
  }
}
#page-about #company .inner iframe {
  width: 100%;
  height: 400px;
  margin-bottom: 50px;
}
@media screen and (max-width: 450px) {
  #page-about #company .inner iframe {
    height: 320px;
    margin-bottom: 25px;
  }
}

/* ===============================================
# お問い合わせ
=============================================== */
#page-contact {
  width: 100%;
  padding-top: 80px;
}
@media screen and (max-width: 580px) {
  #page-contact {
    padding-top: 60px;
  }
}
#page-contact .lower-h2 {
  width: 100%;
  background-color: var(--color-light_green);
}
@media screen and (max-width: 580px) {
  #page-contact .lower-h2 {
    max-height: 60px;
    padding: 15px 0;
  }
}
#page-contact .lower-h2 .inner {
  color: var(--color-white);
  font-size: var(--font-size36);
}
@media screen and (max-width: 580px) {
  #page-contact .lower-h2 .inner {
    font-size: var(--font-size20);
    text-align: center;
  }
}
#page-contact .page-contact--inner {
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#page-contact .forms--text {
  padding: 0;
}
#page-contact .forms--text p {
  margin-bottom: 50px;
}
#page-contact .forms--text h3 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 580px) {
  #page-contact .forms--text h3 {
    font-size: var(--font-size16);
  }
}
#page-contact .forms--text .line {
  max-width: 170px;
  margin: 0 auto;
}
#page-contact .forms--text img {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 580px) {
  #page-contact .forms--text img {
    max-width: 170px;
  }
}
#page-contact .forms--text .tel {
  text-align: center;
}
#page-contact .forms--text .tel p {
  margin-bottom: 1rem;
}
#page-contact .forms--text .tel--inner {
  width: 310px;
  border: solid 4px var(--color-gray);
  border-radius: 3px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 580px) {
  #page-contact .forms--text .tel--inner {
    width: 100%;
  }
}
#page-contact .forms--text .tel--inner a {
  font-size: var(--font-size25);
  padding-top: 30px;
  color: var(--color-gray);
}
#page-contact .forms--text .tel--inner a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: translate(-6px, 6px);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../../assets/img/icon/tel-gray-icon.png");
}
#page-contact .forms--text .tel--inner p {
  margin-bottom: 30px;
  color: var(--color-gray);
}
#page-contact #forms {
  padding: 0;
}
#page-contact #forms .forms--inner > p {
  text-align: center;
  margin-bottom: 24px;
}
#page-contact #forms .wpcf7-form input[type=text],
#page-contact #forms .wpcf7-form input[type=tel],
#page-contact #forms .wpcf7-form input[type=email] {
  width: 100%;
}
#page-contact #forms .wpcf7-form input {
  height: 70px;
  border-radius: 3px;
  background-color: var(--color-white);
  border: solid 2px var(--color-gray);
}
#page-contact #forms .wpcf7-form .wpcf7-textarea {
  width: 100%;
  border-radius: 3px;
  background-color: var(--color-white);
  border: solid 2px var(--color-gray);
}
#page-contact #forms .wpcf7-form .lower_pages--list--block {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 580px) {
  #page-contact #forms .wpcf7-form .lower_pages--list--block {
    flex-direction: column;
    align-items: flex-start;
  }
}
#page-contact #forms .wpcf7-form .lower_pages--list--block dt {
  width: 35%;
  font-weight: 500;
}
@media screen and (max-width: 580px) {
  #page-contact #forms .wpcf7-form .lower_pages--list--block dt {
    margin-bottom: 1rem;
    width: 100%;
  }
}
#page-contact #forms .wpcf7-form .lower_pages--list--block dt span {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 20px;
  line-height: 20px;
  border-radius: 2px;
  background-color: var(--color-btn_green);
  color: var(--color-white);
  font-size: var(--font-size12);
  font-weight: 400;
  margin-right: 1rem;
}
#page-contact #forms .wpcf7-form .lower_pages--list--block dd {
  flex: 1;
}
@media screen and (max-width: 580px) {
  #page-contact #forms .wpcf7-form .lower_pages--list--block dd {
    width: 100%;
  }
}
#page-contact #forms .wpcf7-form .lower_pages--list--block .wpcf7-form-control {
  display: flex;
  flex-direction: column;
}
#page-contact #forms .wpcf7-form .lower_pages--list--block .wpcf7-form-control input {
  height: 30px;
}
#page-contact #forms .wpcf7-form .privacy--outer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 580px) {
  #page-contact #forms .wpcf7-form .privacy--outer {
    justify-content: normal;
  }
}
@media screen and (max-width: 410px) {
  #page-contact #forms .wpcf7-form .privacy--outer label {
    width: 15%;
  }
}
#page-contact #forms .wpcf7-form .privacy--outer input {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#page-contact #forms .wpcf7-form .privacy--outer input:checked + .checkbox-text::after {
  opacity: 1;
}
#page-contact #forms .wpcf7-form .privacy--outer .checkbox-text {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
}
#page-contact #forms .wpcf7-form .privacy--outer .checkbox-text::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  border: solid 1px var(--color-gray);
}
@media screen and (max-width: 410px) {
  #page-contact #forms .wpcf7-form .privacy--outer .checkbox-text::before {
    top: 0;
  }
}
#page-contact #forms .wpcf7-form .privacy--outer .checkbox-text::after {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: solid 3px var(--color-btn_green);
  border-bottom: solid 3px var(--color-btn_green);
  opacity: 0;
}
@media screen and (max-width: 410px) {
  #page-contact #forms .wpcf7-form .privacy--outer .checkbox-text::after {
    top: 0;
  }
}
#page-contact #forms .wpcf7-form .privacy {
  display: block;
  text-decoration: underline;
}
#page-contact #forms .wpcf7-form .submit {
  width: 100%;
}
#page-contact #forms .wpcf7-form .submit input {
  display: block;
  width: 270px;
  height: 60px;
  border-radius: 30px;
  color: var(--color-white);
  background-color: var(--color-btn_orange);
  margin-left: 35%;
  text-align: center;
}
@media screen and (max-width: 580px) {
  #page-contact #forms .wpcf7-form .submit input {
    margin-right: auto;
    margin-left: auto;
  }
}

/* ===============================================
# B型事業所
=============================================== */
#page-office .lower-keyvisual {
  background-image: url("../../assets/img/office-keyvisual.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 580px) {
  #page-office .lower-keyvisual {
    max-height: 220px;
  }
}
#page-office .lower-keyvisual--inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(112, 112, 112, 0.3);
}
@media screen and (max-width: 580px) {
  #page-office .lower-keyvisual--inner h2 {
    font-size: var(--font-size20);
    transform: translateY(28px);
  }
}
#page-office h3 {
  color: var(--color-green);
}
#page-office #top {
  text-align: center;
}
#page-office #top h3::before, #page-office #top h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#page-office #top h3::before {
  transform: translate(-7px, 7px);
}
#page-office #top h3::after {
  transform: translate(7px, 8px);
}
#page-office #top ul {
  display: inline-block;
  text-align: left;
  list-style: disc;
  color: var(--color-orange);
}
#page-office #top ul li {
  display: flex;
  margin-bottom: 20px;
}
#page-office #top ul li .ttl {
  width: 20%;
}
@media screen and (max-width: 630px) {
  #page-office #top ul li .ttl {
    width: 30%;
  }
}
#page-office #top ul li .text {
  flex: 1;
}
#page-office #day {
  color: #979692;
}
#page-office #day h3::before, #page-office #day h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-red.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#page-office #day h3::before {
  transform: translate(-7px, 7px);
}
#page-office #day h3::after {
  transform: translate(7px, 8px);
}
#page-office #day .inner .common-ul li > h4 {
  display: none;
}
@media screen and (max-width: 580px) {
  #page-office #day .inner .common-ul li > h4 {
    display: block;
  }
}
#page-office #day .inner .common-ul li .text h4 {
  font-size: var(--font-size18);
  margin-bottom: 16px;
}
@media screen and (max-width: 580px) {
  #page-office #day .inner .common-ul li .text h4 {
    display: none;
  }
}
#page-office #day .inner .common-ul li .text p {
  line-height: 32px;
}
#page-office #day .inner .common-ul > :nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 580px) {
  #page-office #day .inner .common-ul > :nth-child(2n) {
    flex-direction: column;
  }
}
#page-office #day .inner > p {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  #page-office #day .inner > p {
    width: 100%;
  }
  #page-office #day .inner > p br {
    display: none;
  }
}
#page-office #about .inner {
  max-width: 800px;
  margin: 0 auto;
}
#page-office #about .inner h3 {
  margin-bottom: 70px;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner h3 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 385px) {
  #page-office #about .inner h3 {
    font-size: var(--font-size18);
  }
}
#page-office #about .inner h3::before, #page-office #about .inner h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#page-office #about .inner h3::before {
  transform: translate(-7px, 7px);
}
#page-office #about .inner h3::after {
  transform: translate(7px, 8px);
}
#page-office #about .inner > p {
  color: var(--color-orange);
  margin-bottom: 90px;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner > p {
    margin-bottom: 30px;
  }
}
#page-office #about .inner .detail {
  background-color: var(--color-white);
  border-radius: 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail {
    border-radius: 30px;
  }
}
#page-office #about .inner .detail dl {
  display: flex;
  border-bottom: solid 3px var(--color-white);
}
#page-office #about .inner .detail dl:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail dl {
    flex-direction: column;
    border-bottom: none;
  }
}
#page-office #about .inner .detail dl:last-of-type {
  border-bottom: none;
}
#page-office #about .inner .detail dl .dt-first {
  border-radius: 70px 0 0 0;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail dl .dt-first {
    border-radius: 30px 30px 0 0;
  }
}
#page-office #about .inner .detail dl dt {
  width: 25%;
  color: var(--color-white);
  background-color: var(--color-light_green);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail dl dt {
    width: 100%;
    padding: 20px;
  }
}
#page-office #about .inner .detail dl .dt-last {
  border-radius: 0 0 0 70px;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail dl .dt-last {
    border-radius: 0;
  }
}
#page-office #about .inner .detail dl dd {
  flex: 1;
  padding: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail dl dd {
    padding: 20px;
  }
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .detail dl .centre_dd {
    text-align: center;
  }
}
#page-office #about .inner .exception {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .exception {
    width: 100%;
  }
}
#page-office #about .inner .exception p:first-child {
  margin-bottom: 2rem;
}
@media screen and (max-width: 580px) {
  #page-office #about .inner .exception p:first-child {
    margin-bottom: 1rem;
  }
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.wp-singular {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#page-privacy {
  flex: 1;
  padding-top: 80px;
}
#page-privacy #top {
  font-weight: 300;
}
#page-privacy #top p {
  margin-bottom: 2rem;
}
#page-privacy #top dl {
  margin-bottom: 2rem;
}
#page-privacy #top dt {
  font-weight: 500;
  margin-bottom: 0.8rem;
}
#page-privacy #top dd {
  line-height: 1.6;
}
#page-privacy #top dd ul {
  padding-top: 2rem;
}

/* ===============================================
# 喫茶クーちゃん
=============================================== */
#page-shop .lower-keyvisual {
  background-image: url("../../assets/img/shop-keyvisual.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 580px) {
  #page-shop .lower-keyvisual {
    max-height: 220px;
  }
}
#page-shop .lower-keyvisual--inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(112, 112, 112, 0.3);
}
@media screen and (max-width: 580px) {
  #page-shop .lower-keyvisual--inner h2 {
    font-size: var(--font-size20);
    transform: translateY(28px);
  }
}
#page-shop #about h3 {
  color: var(--color-green);
}
#page-shop #about h3::before, #page-shop #about h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#page-shop #about h3::before {
  transform: translate(-7px, 7px);
}
#page-shop #about h3::after {
  transform: translate(7px, 8px);
}
#page-shop #about .shop {
  margin-bottom: 100px;
}
#page-shop #about .shop--inner {
  color: var(--color-orange);
  background-color: var(--color-white);
  border-radius: 70px;
  padding: 20px 40px;
}
@media screen and (max-width: 580px) {
  #page-shop #about .shop--inner {
    padding: 20px 10px;
    border-radius: 40px;
    margin-bottom: 60px;
  }
}
#page-shop #about .shop--inner > p {
  text-align: center;
  margin-bottom: 1rem;
}
#page-shop #about .shop--inner--menu {
  width: 70%;
  margin: 0 auto 1rem;
  list-style: disc;
}
@media screen and (max-width: 580px) {
  #page-shop #about .shop--inner--menu {
    width: 94%;
    transform: translateX(16px);
    line-height: 1.5;
  }
}
#page-shop #about .shop--inner--menu li {
  margin-bottom: 0.8rem;
}
#page-shop #about .shop--inner--menu li br {
  display: none;
}
@media screen and (max-width: 580px) {
  #page-shop #about .shop--inner--menu li br {
    display: block;
  }
}
#page-shop #about .shop--inner > span {
  width: 70%;
  display: block;
  text-align: center;
  margin-left: 0.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 580px) {
  #page-shop #about .shop--inner > span {
    width: 100%;
  }
}
#page-shop #about .shop--inner .shop--inner--menu_text {
  width: 100%;
  text-align: left;
  margin-bottom: 2rem;
}
#page-shop #about .shop--inner .opening_times {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  #page-shop #about .shop--inner .opening_times {
    width: 100%;
  }
}
#page-shop #about .shop--inner .opening_times h4 {
  text-align: center;
  margin-bottom: 1rem;
}
#page-shop #about .shop--inner .opening_times p {
  margin-bottom: 2rem;
}
#page-shop #about .shop--inner .opening_times p .sp-br {
  display: none;
}
@media screen and (max-width: 580px) {
  #page-shop #about .shop--inner .opening_times p .sp-br {
    display: block;
  }
}
#page-shop #about .shop--inner .opening_times span {
  display: block;
  text-align: center;
}
#page-shop #about .common-ul li:nth-of-type(odd) {
  flex-direction: row-reverse;
  color: var(--color-green);
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li:nth-of-type(odd) {
    flex-direction: column;
  }
}
#page-shop #about .common-ul li:nth-of-type(odd) h4::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-red.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-7px, 7px);
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li:nth-of-type(odd) h4 {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li:nth-of-type(odd) > h4 {
    display: block;
    margin: 0 auto;
  }
}
#page-shop #about .common-ul li:nth-of-type(even) {
  color: var(--color-orange);
}
#page-shop #about .common-ul li:nth-of-type(even) h4::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-7px, 7px);
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li:nth-of-type(even) > h4 {
    display: block;
    margin: 0 auto;
  }
}
#page-shop #about .common-ul li > h4 {
  display: none;
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li > h4 {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li .text {
    width: 100%;
  }
}
#page-shop #about .common-ul li .text h4 {
  font-size: var(--font-size20);
  margin-bottom: 45px;
}
@media screen and (max-width: 580px) {
  #page-shop #about .common-ul li .text h4 {
    display: none;
  }
}
#page-shop .goodwill {
  position: relative;
}
@media screen and (max-width: 580px) {
  #page-shop .goodwill {
    margin-bottom: 50px;
  }
}
#page-shop .goodwill span {
  display: inline-block;
  position: absolute;
  top: 180px;
  left: 60%;
}
@media screen and (max-width: 580px) {
  #page-shop .goodwill span {
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#page-shop .goodwill--inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 580px) {
  #page-shop .goodwill--inner {
    flex-direction: column;
    align-content: center;
  }
}
#page-shop .goodwill--inner .image01 {
  margin-bottom: 80px;
}
#page-shop .goodwill--inner .image02 {
  transform: translateY(50%);
}
@media screen and (max-width: 580px) {
  #page-shop .goodwill--inner .image02 {
    transform: translateY(0);
    margin-bottom: 40px;
  }
}
#page-shop .goodwill--inner .image02 img {
  max-width: 400px;
  width: 100%;
}
#page-shop .dog {
  max-width: 800px;
  padding: 35px 50px 45px;
  margin: 0 auto 100px;
  background-color: var(--color-white);
  border-radius: 30px;
}
@media screen and (max-width: 580px) {
  #page-shop .dog {
    margin-right: 26px;
    margin-left: 26px;
    margin-bottom: 40px;
  }
}
#page-shop .dog--inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 580px) {
  #page-shop .dog--inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 580px) {
  #page-shop .dog--inner img {
    max-width: 80%;
  }
}
#page-shop .dog--inner p {
  line-height: 1.8;
}
#page-shop .dog h3 {
  color: var(--color-green);
  margin-bottom: 90px;
}
#page-shop .dog h3::before, #page-shop .dog h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/img/icon/flower-yellow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#page-shop .dog h3::before {
  transform: translate(-7px, 7px);
}
#page-shop .dog h3::after {
  transform: translate(7px, 8px);
}

/* ===============================================
# 関数
=============================================== */
/* ===============================================
# 変数
=============================================== */
:root {
  --color-white: #ffffff;
  --color-background: #FCF9F3;
  --color-footer: #CEE1AC;
  --color-green: #4CA859;
  --color-btn_green: #52AA5C;
  --color-light_green: #CEE1AC;
  --color-orange: #F89C00;
  --color-btn_orange: #FAC46B;
  --color-gray: #979692;
  --color-hamburger: #584C43;
}

:root {
  --font-size12: 0.75rem;
  --font-size14: 0.875rem;
  --font-size16: 1rem;
  --font-size18: 1.125rem;
  --font-size20: 1.25rem;
  --font-size22: 1.375rem;
  --font-size24: 1.5rem;
  --font-size25: 1.5625rem;
  --font-size28: 1.75rem;
  --font-size30: 1.875rem;
  --font-size32: 2rem;
  --font-size36: 2.25rem;
  --font-size48: 3rem;
  --font-size50: 3.125rem;
}

/* ===============================================
# ミックスイン
=============================================== */
/* ===============================================
# 今日のあいる
=============================================== */
.single-post {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#single {
  flex: 1;
  padding-top: 80px;
  padding-right: 24px;
  padding-left: 24px;
  color: var(--color-green);
}
#single article {
  margin-bottom: 100px;
}
#single h2 {
  text-align: center;
  font-size: var(--font-size20);
  color: var(--color-orange);
  margin-bottom: 100px;
}
#single h3 {
  margin-bottom: 50px;
}
#single .post-img {
  max-width: 300px;
  display: block;
  margin: 0 auto;
}
#single .btn-orange {
  display: block;
  width: 200px;
  height: 40px;
  color: var(--color-white);
  background-color: var(--color-btn_orange);
  margin: 0 auto 100px;
  text-align: center;
  font-weight: 300;
  border-radius: 20px;
  line-height: 40px;
}
#single .btn-orange img {
  width: 15px;
  height: 15px;
  transform: translate(-30px, -12px);
}
#single .single_cont {
  margin-bottom: 50px;
}

#contact {
  color: #4CA859;
  text-align: center;
}
#contact .inner {
  background-color: var(--color-white);
  padding: 35px 50px 45px;
  margin-bottom: 136px;
  border-radius: 30px;
}
@media screen and (max-width: 650px) {
  #contact .inner {
    background-color: var(--color-background);
    padding: 0;
    margin-bottom: 85px;
  }
}
#contact .inner h3 {
  font-size: var(--font-size20);
}
#contact .inner .means {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  align-items: center;
}
@media screen and (max-width: 650px) {
  #contact .inner .means {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
#contact .inner .means .tel {
  width: 50%;
  height: 106px;
  padding: 30px 80px 0 0;
  border-right: solid 2px var(--color-green);
}
@media screen and (max-width: 650px) {
  #contact .inner .means .tel {
    width: 100%;
    padding: 0;
    border: none;
  }
}
#contact .inner .means .tel a {
  display: inline-block;
  font-size: var(--font-size24);
}
#contact .inner .means .tel a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: translate(-6px, 6px);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../../assets/img/icon/tel-icon.png");
}
#contact .inner .means .tel time {
  font-size: var(--font-size16);
  display: block;
  text-align: right;
}
#contact .inner .means .line {
  width: 50%;
  padding-left: 80px;
}
@media screen and (max-width: 650px) {
  #contact .inner .means .line {
    max-width: 170px;
    padding: 0;
    margin-bottom: 50px;
  }
}
#contact .inner .means .line img {
  width: 211px;
}
#contact .inner .btn {
  font-size: var(--font-size16);
  background: var(--color-green);
  display: inline-block;
  color: #fff;
  padding: 12px 35px;
  border-radius: 28px;
}

main .scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 100px;
  opacity: 1;
  transition: transform 1s;
}
main .scroll-top.hidden {
  transform: translateY(100vh);
}
@media screen and (max-width: 580px) {
  main .scroll-top {
    transform: scale(0.8);
  }
}

#footer {
  background: #CEE1AC;
  width: 100%;
  padding: 90px 24px;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
}
#footer .inner .company {
  color: #4CA859;
}
#footer .inner .company img {
  margin-bottom: 16px;
}
@media screen and (max-width: 580px) {
  #footer .inner .company img {
    max-width: 50%;
  }
}
#footer .inner .company address {
  font-style: normal;
  display: block;
}
#footer .inner .company a {
  display: block;
}
#footer .inner nav ul {
  font-size: var(--font-size14);
}
#footer .inner nav ul > :not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (max-width: 580px) {
  #footer .inner {
    flex-direction: column;
    gap: 36px;
  }
}

#header {
  width: 100%;
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FCF9F3;
}
#header .header-inner {
  max-width: 1200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  #header .header-inner {
    height: 60px;
  }
}
#header .header-inner h1 {
  max-width: 250px;
}
@media screen and (max-width: 580px) {
  #header .header-inner h1 {
    max-width: 145px;
  }
}
#header .header-inner h1 img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 580px) {
  #header .header-inner h1 img {
    max-width: 145px;
  }
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-weight: 400;
}
html::-webkit-scrollbar {
  display: none;
}
html body {
  background: #FCF9F3;
  font-family: "Zen Maru Gothic";
}
html body section {
  padding: 0 64px;
}
html body section:not(#contact) {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  html body section {
    padding: 0 24px;
  }
  html body section:not(#contact) {
    margin-bottom: 64px;
  }
}
html body a {
  text-decoration: none;
}
html body ul {
  list-style: none;
  padding-left: 0;
}
html body nav ul :nth-child(2n-1) a {
  color: #4CA859;
}
html body nav ul :nth-child(2n) a {
  color: #F89C00;
}
html body .inner {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
html body .lower-h2 {
  background: #CEE1AC;
  color: #fff;
  font-size: var(--font-size48);
  padding: 36px 64px;
  margin-bottom: 48px;
}
@media screen and (max-width: 760px) {
  html body .lower-h2 {
    padding: 36px 24px;
  }
}
html body .lower-keyvisual {
  height: calc(100vh - 80px);
  max-height: 400px;
  margin-bottom: 64px;
}
html body .lower-keyvisual h2 {
  font-weight: 400;
  color: #fff;
}
html body h2 {
  font-size: var(--font-size36);
}
html body h3 {
  font-size: var(--font-size20);
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
}
html body .button-outer {
  text-align: right;
}
html body .button-outer a {
  display: inline-block;
}
html body .common-ul li {
  display: flex;
  margin-bottom: 64px;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 580px) {
  html body .common-ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
}
html body .common-ul li img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 580px) {
  html body .common-ul li img {
    width: 100%;
  }
}
html body .common-ul li .text {
  padding-top: 0;
}
html body .hamburger {
  display: none;
}

/* ===============================================
# メインビジュアル
=============================================== */
.kv {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 64px;
}
@media screen and (max-width: 580px) {
  .kv {
    margin-bottom: 0;
  }
}
.kv .copy--outer {
  text-align: center;
  margin: 0 auto 50px;
  position: relative;
  z-index: 999;
}
.kv .copy-1 {
  margin-bottom: 10px;
}
.kv .copy-2 {
  flex-direction: row;
  transform: translateX(-6%);
}
@media screen and (max-width: 580px) {
  .kv .copy-2 {
    flex-direction: column;
    align-items: center;
    transform: translateX(0);
  }
}
.kv .copy {
  display: flex;
  justify-content: center;
  padding-top: 2em;
  gap: 10px;
}
@media screen and (max-width: 580px) {
  .kv .copy {
    padding-top: 0;
  }
}
.kv .copy img {
  width: 30px;
  height: 30px;
}
.kv .copy .copy-2--inner {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 580px) {
  .kv .copy .copy-2--inner {
    width: 100%;
    justify-content: center;
  }
}
.kv .copy .copy-2--inner:last-child {
  width: 40%;
  justify-content: flex-start;
}
@media screen and (max-width: 580px) {
  .kv .copy .copy-2--inner:last-child {
    width: 100%;
    justify-content: center;
  }
}
.kv .copy .copy-2--inner img {
  display: inline-block;
}
.kv .kv--inner {
  position: relative;
}
.kv .kv--inner .kv-image {
  position: absolute;
  opacity: 0;
}
.kv .kv--inner .kv-image01 {
  width: 12%;
  top: -3%;
  right: -4%;
}
@media screen and (max-width: 760px) {
  .kv .kv--inner .kv-image01 {
    right: 0%;
  }
}
.kv .kv--inner .kv-image02 {
  width: 30%;
  bottom: -6%;
  right: -4%;
}
@media screen and (max-width: 760px) {
  .kv .kv--inner .kv-image02 {
    right: 0%;
  }
}
.kv .kv--inner .kv-image03 {
  width: 20%;
  top: -12%;
  left: -8%;
}
@media screen and (max-width: 760px) {
  .kv .kv--inner .kv-image03 {
    left: 0%;
  }
}
.kv .kv--inner .kv-image04 {
  width: 12%;
  bottom: -2%;
  left: 0%;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-white);
  border-radius: 50%;
}
.pagination .nav-links .current {
  color: var(--color-orange);
}
.pagination .nav-links .next,
.pagination .nav-links .prev {
  background-color: var(--color-btn_green);
}
.pagination .nav-links .next img,
.pagination .nav-links .prev img {
  width: 50%;
  display: inline-block;
}

#header.is-open {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  padding-top: 16px;
}
#header.is-open .header-inner {
  height: 100dvh;
  flex-direction: column;
  align-items: flex-start;
}
#header.is-open .header-inner h1 {
  margin-bottom: 40px;
}
#header.is-open .header-inner .nav-outer {
  display: block;
  flex: 1;
}
#header.is-open .header-inner .nav-outer ul {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 40px;
}
#header.is-open .header-inner .nav-outer ul li {
  margin-bottom: 40px;
}
#header .header-inner .nav-outer {
  display: block;
}
@media screen and (max-width: 990px) {
  #header .header-inner .nav-outer {
    display: none;
    background: #FCF9F3;
  }
}
#header .header-inner .nav-outer ul {
  display: flex;
  align-items: center;
}
#header .header-inner .nav-outer ul li {
  margin-right: 2rem;
}
#header .header-inner .nav-outer ul img {
  max-width: 30px;
  width: 100%;
}
#header .header-inner .hamburger {
  width: 35px;
  height: 35px;
  display: none;
}
@media screen and (max-width: 990px) {
  #header .header-inner .hamburger {
    display: block;
    margin-top: 20px;
  }
}
@media screen and (max-width: 580px) {
  #header .header-inner .hamburger {
    margin-top: 25px;
  }
}
#header .header-inner .hamburger:hover {
  cursor: pointer;
}
#header .header-inner .hamburger.is-open {
  position: absolute;
  top: 25px;
  right: 5px;
  transform: translate(-50%, -50%);
}
#header .header-inner .hamburger.is-open span:first-child {
  transform: translate(0px, -4px) rotate(-45deg);
}
#header .header-inner .hamburger.is-open span:nth-of-type(2) {
  display: none;
}
#header .header-inner .hamburger.is-open span:last-child {
  transform: translate(0px, -7px) rotate(45deg);
}
#header .header-inner .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-hamburger);
  transition: 0.4s;
}
#header .header-inner .hamburger span:first-child {
  transform: translate(0px, 10px);
}
#header .header-inner .hamburger span:last-child {
  transform: translate(0px, -10px);
}/*# sourceMappingURL=style.css.map */