@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@400;700&display=swap");
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
/* -----------------------------------
   Foundation: Design Tokens
----------------------------------- */
:root {
  --pcBaseWidth: 160;
  --tabBaseWidth: 82;
  --spBaseWidth: 48;
  --vw1: calc(100vw / var(--pcBaseWidth));
  --content-max-width: 1200px;
  --space-xs: clamp(4px, calc(4 * var(--vw1)), 8px);
  --space-sm: clamp(8px, calc(8 * var(--vw1)), 16px);
  --space-md: clamp(16px, calc(16 * var(--vw1)), 32px);
  --space-lg: clamp(32px, calc(32 * var(--vw1)), 64px);
  --space-xl: clamp(64px, calc(64 * var(--vw1)), 128px);
  --font-xs: clamp(10px, calc(1.2 * var(--vw1)), 12px);
  --font-sm: clamp(12px, calc(1.4 * var(--vw1)), 14px);
  --font-md: clamp(14px, calc(1.6 * var(--vw1)), 18px);
  --font-lg: clamp(18px, calc(2 * var(--vw1)), 24px);
  --font-xl: clamp(24px, calc(2.8 * var(--vw1)), 32px);
  --lh-base: 1.6;
  --lh-tight: 1.4;
  --container-padding: clamp(16px, calc(32 * var(--vw1)), 64px);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: calc(100vw / var(--pcBaseWidth));
}
@media (min-width: 560px) and (max-width: 820.9px) {
  html {
    font-size: calc(100vw / var(--tabBaseWidth));
  }
}
@media (max-width: 559.9px) {
  html {
    font-size: calc(100vw / var(--spBaseWidth));
  }
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  color: #6d5237;
  line-height: var(--lh-base);
  font-family: -apple-system-body, BlinkMacSystemFont, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  letter-spacing: 0.6rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  cursor: none;
}
@media (min-width: 560px) {
  body {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  body {
    font-size: 1.5rem;
  }
}
body * {
  cursor: none;
}
body.cursor-native {
  cursor: auto !important;
}
body.cursor-native * {
  cursor: auto;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.2s ease;
}
@media (max-width: 820.9px) {
  .cursor {
    display: none;
  }
}

.cursor span {
  height: 3rem;
  width: 3rem;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  position: fixed;
  z-index: 999;
  pointer-events: none;
}

.cursor span.dot1 {
  background: rgba(252, 118, 40, 0.8);
  transition: width 0.2s, height 0.2s;
}

.cursor span.dot1.active {
  height: 4.8rem;
  width: 4.8rem;
  background: rgba(252, 118, 40, 0.8);
}

.cursor span.dot1.text_active {
  height: 1.4em;
  width: 2px;
  border-radius: 0;
}

select,
input,
button,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

img {
  max-width: 100%;
}

#pagetop {
  background: url(../images/common/pagetop2.png);
  background-size: contain;
  position: fixed;
  right: 0.8rem;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 3;
}
@media (min-width: 560px) {
  #pagetop {
    width: 6rem;
    height: 6rem;
    bottom: -6rem;
  }
}
@media (max-width: 559.9px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

a {
  text-decoration: none;
  color: #1d56c6;
  outline: none;
  font-weight: bold;
}
a:hover {
  color: #5f79ad;
}

/**************
Layout Set
**************/
.wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.middlewrap {
  width: 92%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .middlewrap {
    width: 88%;
  }
}

.shortwrap {
  width: 92%;
  max-width: 856px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .shortwrap {
    width: 88%;
  }
}

/**************
Header
**************/
#header {
  position: absolute;
  left: 0;
  top: 0;
  padding: 4rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
@media (max-width: 559.9px) {
  #header {
    padding: 20px;
  }
}
#header .header_logo {
  width: 80px;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  #header .header_logo {
    width: 64px;
  }
}
#header .header_logo_under {
  display: block;
  width: 37rem;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  #header .header_logo_under {
    width: 200px;
  }
}
#header .header_logo_under img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#header .header_logo_under .txt {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6d5237;
}

.header_line_btn {
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #f5d051;
  position: fixed;
  z-index: 5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 560px) {
  .header_line_btn {
    font-size: 1.5rem;
    gap: 1rem;
    right: 3rem;
    top: 3rem;
    width: 25rem;
    height: 5.2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .header_line_btn {
    right: 2rem;
    top: 2rem;
    font-size: 1.3rem;
    width: 23rem;
    height: 4.8rem;
  }
}
@media (max-width: 559.9px) {
  .header_line_btn {
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 22rem;
    height: 5.2rem;
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    gap: 0.8rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
}
.header_line_btn .icon-line {
  display: block;
  width: 2.5rem;
}
@media (max-width: 559.9px) {
  .header_line_btn .icon-line {
    width: 24px;
  }
}
.header_line_btn.white {
  background-color: white;
  color: #6d5237;
  border: 0.1rem #6d5237 solid;
}

/**************
WordPressログイン時
**************/
/**************
Side Header
**************/
.menuBtn {
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: fixed;
  z-index: 20;
}
@media (min-width: 560px) {
  .menuBtn {
    left: 4rem;
    top: 4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .menuBtn {
    left: 3rem;
    top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .menuBtn {
    top: 2.5rem;
    right: 10.5rem;
  }
}
.menuBtn .txt {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6d5237;
  position: absolute;
  left: 2.4rem;
  padding-left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .menuBtn .txt {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
}
@media (max-width: 559.9px) {
  .menuBtn .txt {
    font-size: 13px;
    letter-spacing: 0.3em;
    left: 1.5rem;
  }
}
.menuBtn .txt_close {
  display: none;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  left: 2.4rem;
  padding-left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6d5237;
  font-weight: 400;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .menuBtn .txt_close {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
}
@media (max-width: 559.9px) {
  .menuBtn .txt_close {
    font-size: 13px;
    letter-spacing: 0.3em;
    left: 1.5rem;
  }
}
.menuBtn .humburger {
  width: 2.7rem;
  height: 2.1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 559.9px) {
  .menuBtn .humburger {
    width: 20px;
    height: 14px;
  }
}
.menuBtn .humburger::before, .menuBtn .humburger::after {
  width: 100%;
  height: 0.2rem;
  display: block;
  content: "";
  background-color: #6d5237;
  position: absolute;
  left: 0;
  transition: all 0.4s ease;
}
@media (max-width: 559.9px) {
  .menuBtn .humburger::before, .menuBtn .humburger::after {
    height: 1px;
  }
}
.menuBtn .humburger::before {
  top: 0;
}
.menuBtn .humburger::after {
  bottom: 0;
}
.menuBtn .humburger .humburger_rect {
  width: 100%;
  height: 0.2rem;
  background-color: #6d5237;
  transition: all 0.4s ease;
}
@media (max-width: 559.9px) {
  .menuBtn .humburger .humburger_rect {
    height: 1px;
  }
}
.menuBtn.opened .txt {
  display: none;
}
.menuBtn.opened .humburger::before {
  background-color: #6d5237;
  transform: rotate(-30deg);
  top: 0.9rem;
}
@media (max-width: 559.9px) {
  .menuBtn.opened .humburger::before {
    top: 6px;
  }
}
.menuBtn.opened .humburger::after {
  background-color: #6d5237;
  transform: rotate(30deg);
  bottom: 1rem;
}
@media (max-width: 559.9px) {
  .menuBtn.opened .humburger::after {
    bottom: 6px;
  }
}
.menuBtn.opened .humburger .humburger_rect {
  opacity: 0;
}

.g_menu #humburger_menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -10%;
  z-index: 11;
  transition: left 0.5s ease, visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  display: flex;
}
.g_menu #humburger_menu.opened {
  visibility: visible;
  opacity: 1;
  left: 0;
}
@media (max-width: 559.9px) {
  .g_menu #humburger_menu.opened {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  }
}
.g_menu .humburger_menu {
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  background: #faf8f4;
  width: 54.375%;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .g_menu .humburger_menu {
    width: 56%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .humburger_menu {
    width: 60%;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu {
    width: 100%;
  }
}
.g_menu .humburger_menu .inner {
  padding: 18rem 0 10rem 12rem;
}
@media (min-width: 1440px) {
  .g_menu .humburger_menu .inner {
    padding-top: 15rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .humburger_menu .inner {
    padding: 16vh 40px 20px;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner {
    padding: 80px 32px;
  }
}
.g_menu .humburger_menu .inner .main_menu {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.g_menu .humburger_menu .inner .main_menu > li > a {
  color: #6d5237;
  font-size: 3rem;
}
@media (min-width: 1440px) {
  .g_menu .humburger_menu .inner .main_menu > li > a {
    font-size: 2.6rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .humburger_menu .inner .main_menu > li > a {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .main_menu > li > a {
    font-size: 16px;
  }
}
.g_menu .humburger_menu .inner .hm_contact_btn {
  background-color: #f5d051;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d5237;
  font-weight: bold;
  margin-top: 4vh;
}
@media (min-width: 560px) {
  .g_menu .humburger_menu .inner .hm_contact_btn {
    border: 0.1rem #6d5237 solid;
    padding: 0 1rem;
    height: 5.5rem;
    gap: 0.6rem;
    font-size: 1.6rem;
    width: 32rem;
    border-radius: 5rem;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .hm_contact_btn {
    width: 34rem;
    height: 6rem;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    border: 0.1rem #6d5237 solid;
    border-radius: 10rem;
    gap: 1.2rem;
  }
}
.g_menu .humburger_menu .inner .hm_contact_btn .icon-user-check {
  display: block;
  width: 3rem;
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .hm_contact_btn .icon-user-check {
    width: 24px;
  }
}
.g_menu .humburger_menu .inner .hm_bg_menus {
  display: flex;
  flex-direction: column;
  margin-top: 4vh;
  width: 36rem;
  gap: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus {
    width: 320px;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus {
    flex-direction: column;
    width: 270px;
    gap: 16px;
  }
}
.g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 0.7rem;
  overflow: hidden;
  aspect-ratio: 245/72;
  box-shadow: 0.4rem 0.4rem 0 0 rgba(117, 103, 88, 0.35);
  font-size: 2.1rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu {
    border-radius: 8px;
    width: 100%;
    font-size: 1.8rem;
    box-shadow: 4px 4px 0 0 rgba(117, 103, 88, 0.35);
  }
}
.g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu.online {
  background: url(../images/common/header_menu-online.png) no-repeat;
  background-size: cover;
  padding: 0 50% 0 10%;
  text-align: center;
  line-height: 1.4;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2.3rem;
  padding-top: 0.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu.online {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu.online {
    font-size: 16px;
  }
}
.g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu.partner {
  background: url(../images/common/header_menu-partner.png) no-repeat;
  background-size: cover;
  padding: 0 10% 0 52%;
}
@media (max-width: 559.9px) {
  .g_menu .humburger_menu .inner .hm_bg_menus .hm_bg_menu.partner {
    padding: 0 3rem 0 18rem;
  }
}
.g_menu .menu_bg_img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f5d051;
  width: 45.625%;
  position: relative;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .g_menu .menu_bg_img {
    width: 44%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .menu_bg_img {
    width: 40%;
  }
}
@media (max-width: 559.9px) {
  .g_menu .menu_bg_img {
    display: none;
  }
}
.g_menu .menu_bg_img .hm_side_logo {
  display: block;
  width: 12rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .menu_bg_img .hm_side_logo {
    width: 9rem;
  }
}
.g_menu .menu_bg_img .menu_logo_text {
  display: block;
  width: 24rem;
  margin: 4rem auto 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .menu_bg_img .menu_logo_text {
    width: 18rem;
    margin-top: 2rem;
  }
}
.g_menu .menu_bg_img .hm_side_line {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  color: #6d5237;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  width: 24rem;
  height: 5.6rem;
  border-radius: 50px;
  margin-top: 5vh;
  border: 1px #6d5237 solid;
}
.g_menu .menu_bg_img .hm_side_line .icon-line {
  display: block;
  width: 2.6rem;
}
.g_menu .menu_bg_img .hm_side_logo_catch {
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8vh;
  text-align: center;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .menu_bg_img .hm_side_logo_catch {
    font-size: 1.5rem;
    width: 180px;
  }
}
.g_menu .small_menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem 3.2rem;
  width: 60%;
  margin-top: 4vh;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .small_menu {
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
}
@media (max-width: 559.9px) {
  .g_menu .small_menu {
    width: 100%;
  }
}
.g_menu .small_menu > li > a {
  color: #6d5237;
  font-size: 1.6rem;
  font-weight: normal;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .g_menu .small_menu > li > a {
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .g_menu .small_menu > li > a {
    font-size: 1.3rem;
  }
}

#overlay {
  position: relative;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}
#overlay.opened {
  opacity: 1;
  visibility: visible;
}

/**************
Footer
**************/
#footer {
  background-color: #f5d051;
  padding: 10rem 18rem 5rem;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer {
    padding: 7rem 5rem 5rem;
  }
}
@media (max-width: 559.9px) {
  #footer {
    padding: 80px 0;
  }
}
#footer .footer_inner {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 560px) {
  #footer .footer_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 821px) {
  #footer .footer_inner .footer_left {
    width: 18rem;
  }
}
#footer .footer_inner .footer_left .footer_sns {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
  justify-content: center;
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_left .footer_sns {
    gap: 16px;
    margin-top: 24px;
  }
}
#footer .footer_inner .footer_left .footer_sns .footer_sns_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_left .footer_sns .footer_sns_icon {
    width: 24px;
  }
}
#footer .footer_inner .footer_left .footer_sns .footer_sns_icon img {
  display: block;
  width: 100%;
}
#footer .footer_inner .footer_right {
  position: relative;
}
@media (min-width: 560px) {
  #footer .footer_inner .footer_right.page {
    width: 90rem;
    margin-top: 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer .footer_inner .footer_right.page {
    width: 100%;
    margin: 40px auto;
  }
}
@media (min-width: 1160px) {
  #footer .footer_inner .footer_right.page::before {
    content: "";
    display: block;
    height: 50%;
    width: 0.1rem;
    background-color: #6d5237;
    position: absolute;
    letter-spacing: 0;
    top: 25%;
    left: 0;
  }
}
@media (min-width: 1160px) {
  #footer .footer_inner .footer_right.page {
    width: calc(100% - 28rem);
    padding-left: 10rem;
  }
}
@media (min-width: 560px) {
  #footer .footer_inner .footer_right.page .footer_buttons {
    margin-top: 0;
  }
}
#footer .footer_inner .footer_right .footer_buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  #footer .footer_inner .footer_right .footer_buttons {
    margin: 40px auto 0;
  }
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_right .footer_buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
#footer .footer_inner .footer_right .footer_buttons > a {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 245/72;
  color: white;
  font-size: 1.8rem;
  border-radius: 8px;
  overflow: hidden;
  text-shadow: 0px 0px 5px #756758;
  box-shadow: 0.4rem 0.4rem 0px 0px rgba(117, 103, 88, 0.3);
  box-sizing: border-box;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer .footer_inner .footer_right .footer_buttons > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_right .footer_buttons > a {
    width: 320px;
    box-shadow: 4px 4px 0px 0px rgba(117, 103, 88, 0.3);
  }
}
#footer .footer_inner .footer_right .footer_buttons > a.footer_button-1 {
  background: url(../images/common/header_menu-partner.png) no-repeat;
  background-size: cover;
}
@media (min-width: 560px) {
  #footer .footer_inner .footer_right .footer_buttons > a.footer_button-1 {
    padding: 0 3% 0 20%;
    font-size: 2.4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer .footer_inner .footer_right .footer_buttons > a.footer_button-1 {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_right .footer_buttons > a.footer_button-1 {
    font-size: 17px;
    padding: 0 8% 0 44%;
  }
}
#footer .footer_inner .footer_right .footer_buttons > a.footer_button-2 {
  background: url(../images/common/header_menu-online.png) no-repeat right;
  background-size: cover;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 560px) {
  #footer .footer_inner .footer_right .footer_buttons > a.footer_button-2 {
    padding: 0 22% 0 3%;
    font-size: 2.4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer .footer_inner .footer_right .footer_buttons > a.footer_button-2 {
    padding-top: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_right .footer_buttons > a.footer_button-2 {
    padding: 0 52% 0 12%;
    font-size: 18px;
  }
}
#footer .footer_inner .footer_right .foot_menus {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  margin-top: 3rem;
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_right .foot_menus {
    gap: 1rem 1.2rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 0 3rem;
  }
}
#footer .footer_inner .footer_right .foot_menus li a {
  color: #6d5237;
  font-weight: bold;
  font-size: 1.4rem;
}
@media (max-width: 559.9px) {
  #footer .footer_inner .footer_right .foot_menus li a {
    font-size: 12px;
    font-weight: bold;
  }
}
#footer .footer_logomark {
  display: block;
  width: 11rem;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  #footer .footer_logomark {
    width: 90px;
  }
}
#footer .footer_logo_text {
  display: block;
  width: 20rem;
  margin: 1.6rem auto 0;
}
@media (max-width: 559.9px) {
  #footer .footer_logo_text {
    width: 180px;
    margin: 24px auto 0;
  }
}
#footer.home .footer_inner {
  flex-direction: column;
  align-items: center;
}
#footer.home .footer_inner .footer_left .footer_sns {
  display: flex;
  gap: 1.6rem;
  margin-top: 6.4rem;
  justify-content: center;
}
@media (max-width: 559.9px) {
  #footer.home .footer_inner .footer_left .footer_sns {
    gap: 16px;
    margin-top: 24px;
  }
}
@media (min-width: 1160px) {
  #footer.home .footer_inner .footer_right {
    width: 100%;
  }
}
#footer.home .footer_inner .footer_right .footer_buttons {
  width: 40rem;
  flex-direction: column;
  gap: 2rem;
  margin: 4rem auto;
}
@media (max-width: 559.9px) {
  #footer.home .footer_inner .footer_right .footer_buttons {
    width: 280px;
    margin-top: 32px;
    gap: 12px;
  }
}
#footer.home .footer_inner .footer_right .footer_buttons > a {
  width: 100%;
}
@media (min-width: 560px) {
  #footer.home .footer_inner .footer_right .footer_buttons > a.footer_button-1 {
    padding: 0 4rem 0 20rem;
  }
}
@media (max-width: 559.9px) {
  #footer.home .footer_inner .footer_right .footer_buttons > a.footer_button-1 {
    font-size: 17px;
    padding: 0 8% 0 44%;
  }
}
#footer.home .footer_inner .footer_right .footer_buttons > a.footer_button-2 {
  line-height: 1.3;
}
@media (min-width: 560px) {
  #footer.home .footer_inner .footer_right .footer_buttons > a.footer_button-2 {
    padding: 0.8rem 20rem 0 4rem;
  }
}
#footer.home .footer_inner .footer_right .foot_menus {
  width: 44rem;
  margin: 8rem auto 0;
  justify-content: center;
}
@media (max-width: 559.9px) {
  #footer.home .footer_inner .footer_right .foot_menus {
    width: 100%;
    margin: 24px auto 0;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  #footer.page .footer_inner {
    flex-direction: column;
    align-items: center;
  }
}

.footer_line_btn {
  width: 28rem;
  height: 5.6rem;
  border-radius: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background-color: white;
  color: #6d5237;
  border: 0.1rem #6d5237 solid;
  margin: 8rem auto;
  font-size: 1.4rem;
}
@media (max-width: 559.9px) {
  .footer_line_btn {
    bottom: 8px;
    left: 8px;
    transform: translateX(0);
    width: 200px;
    height: 48px;
    font-size: 12px;
    border-radius: 40px;
    gap: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    border-width: 1px;
  }
  .footer_line_btn .icon-line {
    width: 24px;
  }
}
.footer_line_btn .icon-line {
  display: block;
  width: 2.5rem;
}
@media (max-width: 559.9px) {
  .footer_line_btn .icon-line {
    width: 24px;
  }
}

.copyright {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  line-height: 1.4;
  margin-top: 3rem;
  text-align: center;
}
@media (min-width: 560px) {
  .copyright {
    margin: 8rem auto 0;
  }
}
@media (max-width: 820.9px) {
  .copyright {
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .copyright {
    font-size: 15px;
    margin-top: 30px;
  }
}

/**************
Common Parts
**************/
/* Titles */
.center-title {
  text-align: center;
  font-size: 3.6rem;
  color: #FC7628;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .center-title {
    font-size: 20px;
  }
}

.center_title_border {
  text-align: center;
  border-bottom: 0.1rem #6d5237 solid;
  font-size: 2.4rem;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .center_title_border {
    border-bottom: 1px #6d5237 solid;
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 40px;
  }
}

.tit_404 {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.je-title {
  text-align: center;
}
.je-title .eng {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6d5237;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .je-title .eng {
    font-size: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .je-title .eng {
    font-size: 20px;
  }
}
.je-title .jp {
  font-size: 2.2rem;
  font-weight: bold;
  color: #FC7628;
}
.je-title .jp::before, .je-title .jp::after {
  content: "〜";
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .je-title .jp {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .je-title .jp {
    font-size: 14px;
    margin-top: 5px;
  }
}
.je-title.white .eng {
  color: white;
}
.je-title.white .eng.carrot {
  color: #FC7628;
}
.je-title.white .jp {
  color: white;
}
.je-title.colorReverse .eng {
  color: #FC7628;
}
.je-title.colorReverse .jp {
  color: #6d5237;
}

/* Buttons */
.btn-yellow {
  background-color: #f5d051;
  color: white;
  padding: 1.5rem 3.2rem;
  border-radius: 30px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.4s ease;
  font-size: 1.6rem;
}
@media (max-width: 559.9px) {
  .btn-yellow {
    font-size: 15px;
    padding: 15px 32px;
  }
}
.btn-yellow:hover, .btn-yellow:active {
  background-color: #74d5c1;
  color: white;
}

/* Tables */
/* Parts */
/* Lists */
.list-disc {
  margin-left: 15px;
}
.list-disc li {
  list-style: square;
}
.list-disc li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal {
  margin-left: 20px;
}
.list-decimal li {
  list-style: decimal;
}
.list-decimal li b {
  display: inline-block;
  margin-right: 10px;
}

.list-decimal2 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.5em;
}
.list-decimal2 li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
.list-decimal2 li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5c9ee7;
  color: white;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.list-check li {
  position: relative;
  padding: 2px 0 2px 28px;
}
.list-check li::before {
  content: "";
  display: block;
  background: url(../images/common/icon_check_black.png) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Boxes */
/* Texts */
@media (min-width: 1160px) {
  .strong_text {
    font-size: 1.8rem;
    text-align: center;
  }
}

.text-brown {
  color: #6d5237;
}

.text-carrot {
  color: #FC7628;
}

.text-wavy {
  -webkit-text-decoration: #f5d051 wavy underline;
          text-decoration: #f5d051 wavy underline;
  text-decoration-thickness: 0.3rem;
  text-underline-offset: 0.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .text-wavy {
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 0.3rem;
  }
}
@media (max-width: 559.9px) {
  .text-wavy {
    text-decoration-thickness: 2px;
    text-underline-offset: 1px;
  }
}

.text-wavy-white {
  -webkit-text-decoration: white wavy underline;
          text-decoration: white wavy underline;
  text-decoration-thickness: 0.3rem;
  text-underline-offset: 0.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .text-wavy-white {
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 0.3rem;
  }
}
@media (max-width: 559.9px) {
  .text-wavy-white {
    text-decoration-thickness: 2px;
    text-underline-offset: 1px;
  }
}

/* Others */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}
@media (max-width: 820.9px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.sp-scroll {
  width: 100%;
  overflow-x: auto;
}

.underconst {
  background-color: #fff;
  text-align: center;
  margin: 50px auto;
  padding: 80px 0;
  border: 1px #ddd solid;
  border-radius: 5px;
}

@media (max-width: 559.9px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 820.9px) {
  .pc_only {
    display: none;
  }
}
@media (max-width: 820.9px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 560px) {
  .sp_only {
    display: none;
  }
}

.float_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/* Animations */
@-webkit-keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideOut {
  0% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInR {
  0% {
    transform: translateX(-40px);
    filter: blur(1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes cubeIn {
  0% {
    opacity: 0;
    transform: rotate(-145deg);
  }
  10% {
    opacity: 1;
    transform: rotate(-145deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: translate(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
/**************
HOME
**************/
#main_wrap {
  width: 100%;
  position: relative;
  background-color: white;
}
#main_wrap.home {
  margin-top: 100vh;
}

.main_visual {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 559.9px) {
  .main_visual {
    height: 100dvh;
    padding: 7rem 3rem 10rem;
    background-color: #faf8f4;
  }
}
.main_visual .main_slider {
  width: 100%;
  height: 100%;
}
@media (max-width: 559.9px) {
  .main_visual .main_slider {
    border-radius: 2rem;
    overflow: hidden;
  }
}
.main_visual .main_slider .top_main_slider {
  width: 100%;
  height: 100%;
}
.main_visual .main_slider .top_main_slider .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.main_visual .main_slider .top_main_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.main_visual .main_catch {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 30vh;
}
@media (max-width: 559.9px) {
  .main_visual .main_catch {
    padding-top: 34vh;
  }
}
.main_visual .main_catch .main_logo {
  display: block;
  width: 32vw;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_visual .main_catch .main_logo {
    width: 32rem;
  }
}
@media (max-width: 559.9px) {
  .main_visual .main_catch .main_logo {
    width: 280px;
  }
}
.main_visual .main_catch .main_catch_jp {
  width: 50%;
}
@media (max-width: 559.9px) {
  .main_visual .main_catch .main_catch_jp {
    width: 90%;
  }
}
.main_visual .main_catch .main_catch_en {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  margin-top: 30px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .main_visual .main_catch .main_catch_en {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .main_visual .main_catch .main_catch_en {
    font-size: 1.6rem;
    text-align: center;
  }
}

.top_foryou_section {
  padding: 18rem 0 12rem;
  background-color: #faf8f4;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 821px) {
  .top_foryou_section {
    height: 240rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_foryou_section {
    padding: 12rem 0;
    height: 140rem;
  }
}
@media (max-width: 559.9px) {
  .top_foryou_section {
    padding: 10rem 3rem;
  }
}
.top_foryou_section .fy_blocks {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks {
    margin-top: 80px;
  }
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks .block {
    position: relative;
    margin-bottom: 64px;
  }
}
.top_foryou_section .fy_blocks .block .img_box {
  border-radius: 12rem;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_foryou_section .fy_blocks .block .img_box {
    border-radius: 6rem;
  }
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks .block .img_box {
    height: 280px;
    border-radius: 64px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.top_foryou_section .fy_blocks .block .img_box img {
  transition: all 0.8s ease 0.1s;
  width: 100%;
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks .block .img_box img {
    display: block;
    height: 100%;
  }
}
.top_foryou_section .fy_blocks .block .fy_messages {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease 1s;
}
@media (min-width: 560px) {
  .top_foryou_section .fy_blocks .block .fy_messages {
    height: 9rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_foryou_section .fy_blocks .block .fy_messages {
    height: 64px;
  }
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks .block .fy_messages {
    height: 7rem;
  }
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  border: 0.1rem #559484 solid;
  background-color: #faf8f4;
  font-weight: bold;
  position: relative;
  transition: border-color 0.5s ease 1s, width 0.5s ease 1s, background-color 0.5s ease 1s, left 0.5s ease 1s;
  font-size: 1.7rem;
  height: 5rem;
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box[style*=width] {
  transition: width 0.3s ease;
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box, .top_foryou_section .fy_blocks .block .fy_messages .message_box.message-01, .top_foryou_section .fy_blocks .block .fy_messages .message_box.message-02 {
  transition: border-color 0.5s ease 1s, width 0.5s ease 1s, background-color 0.5s ease 1s, left 0.5s ease 1s;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_foryou_section .fy_blocks .block .fy_messages .message_box {
    font-size: 1.4rem;
    height: 32px;
    border-radius: 0.5rem;
  }
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks .block .fy_messages .message_box {
    border-radius: 0.6rem;
    border: 0.15rem #559484 solid;
    font-size: 1.3rem;
    height: 7rem;
  }
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-r,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-r {
  position: absolute;
  left: 1.6rem;
  top: 0.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-r,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-r {
    left: 1.2rem;
    top: 0.4rem;
    letter-spacing: 0.15em;
  }
}
@media (max-width: 559.9px) {
  .top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-r,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-r {
    left: 10px;
    top: 5px;
    letter-spacing: 0.3em;
  }
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-n,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-n {
  color: #559484;
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-n.shown {
  opacity: 0;
  -webkit-animation: slideIn 0.8s ease 1s forwards;
          animation: slideIn 0.8s ease 1s forwards;
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-n.shown {
  opacity: 0;
  -webkit-animation: slideIn 0.8s ease 1.2s forwards;
          animation: slideIn 0.8s ease 1.2s forwards;
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-r,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-r {
  opacity: 0;
  color: #FC7628;
}
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-01-r.slide-out,
.top_foryou_section .fy_blocks .block .fy_messages .message_box .message-02-r.slide-out {
  -webkit-animation: slideOut 0.8s ease forwards;
          animation: slideOut 0.8s ease forwards;
}
.top_foryou_section .fy_blocks .block.moved .img_box img {
  opacity: 0;
}
.top_foryou_section .fy_blocks .block.moved .fy_messages .message_box {
  color: #FC7628;
  border: 0.1rem #FC7628 solid;
  background-color: white;
}
.top_foryou_section .fy_blocks .block.moved .fy_messages .message_box .message-01-n {
  -webkit-animation: slideOut 0.8s ease 0.2s forwards;
          animation: slideOut 0.8s ease 0.2s forwards;
}
.top_foryou_section .fy_blocks .block.moved .fy_messages .message_box .message-02-n {
  -webkit-animation: slideOut 0.8s ease 0.4s forwards;
          animation: slideOut 0.8s ease 0.4s forwards;
}
.top_foryou_section .fy_blocks .block.moved .fy_messages .message_box .message-01-r {
  -webkit-animation: slideIn 0.8s ease 1s forwards;
          animation: slideIn 0.8s ease 1s forwards;
}
.top_foryou_section .fy_blocks .block.moved .fy_messages .message_box .message-02-r {
  -webkit-animation: slideIn 0.8s ease 1.2s forwards;
          animation: slideIn 0.8s ease 1.2s forwards;
}

.fy_blocks {
  width: 100%;
}
@media (min-width: 560px) {
  .fy_blocks .block-1 {
    position: absolute;
    left: 6.6%;
    top: 6.19%;
    width: 30.364%;
  }
}
.fy_blocks .block-1 .img_box {
  background: url(../images/top/top_for_01-r.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 559.9px) {
  .fy_blocks .block-1 .img_box {
    margin-left: auto;
    margin-right: 4vw;
  }
}
.fy_blocks .block-1 .fy_messages {
  position: absolute;
  transition: all 0.5s ease 1s;
}
@media (min-width: 560px) {
  .fy_blocks .block-1 .fy_messages {
    top: -10%;
    left: 48%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-1 .fy_messages {
    left: 40%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-1 .fy_messages {
    top: -8%;
    left: 16px;
  }
}
.fy_blocks .block-1 .fy_messages .message-01 {
  width: 14rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-1 .fy_messages .message-01 {
    width: 10rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-1 .fy_messages .message-01 {
    width: 11rem;
  }
}
.fy_blocks .block-1 .fy_messages .message-02 {
  width: 33rem;
  position: absolute;
  left: 5%;
  bottom: 2%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-1 .fy_messages .message-02 {
    width: 23rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-1 .fy_messages .message-02 {
    width: 25rem;
  }
}
.fy_blocks .block-1.moved .fy_messages .message-01 {
  width: 21rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-1.moved .fy_messages .message-01 {
    width: 16rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-1.moved .fy_messages .message-01 {
    width: 15.2rem;
  }
}
.fy_blocks .block-1.moved .fy_messages .message-02 {
  width: 33rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-1.moved .fy_messages .message-02 {
    width: 23rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-1.moved .fy_messages .message-02 {
    width: 24rem;
  }
}
@media (min-width: 560px) {
  .fy_blocks .block-2 {
    position: absolute;
    left: 43.4%;
    top: 10%;
    width: 23%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-2 {
    top: 14rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2 {
    padding-left: 24vw;
  }
}
.fy_blocks .block-2 .img_box {
  background: url(../images/top/top_for_02-r.jpg) no-repeat;
  background-size: cover;
}
.fy_blocks .block-2 .fy_messages {
  position: absolute;
  transition: all 0.5s ease 1s;
}
@media (min-width: 560px) {
  .fy_blocks .block-2 .fy_messages {
    top: 5%;
    left: 30%;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .fy_blocks .block-2 .fy_messages {
    left: 50%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2 .fy_messages {
    top: -8%;
    right: 16px;
  }
}
.fy_blocks .block-2 .fy_messages .message-01 {
  width: 42rem;
  position: absolute;
  left: 24%;
  top: 2%;
  z-index: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-2 .fy_messages .message-01 {
    width: 30rem;
    left: 10%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2 .fy_messages .message-01 {
    width: 32rem;
    left: -4%;
  }
}
.fy_blocks .block-2 .fy_messages .message-02 {
  width: 51.5rem;
  position: relative;
  left: 0%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-2 .fy_messages .message-02 {
    width: 36rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2 .fy_messages .message-02 {
    width: 38rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2.moved .fy_messages {
    right: 15rem;
  }
}
.fy_blocks .block-2.moved .fy_messages .message-01 {
  width: 21rem;
}
@media (min-width: 560px) {
  .fy_blocks .block-2.moved .fy_messages .message-01 {
    left: 60%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-2.moved .fy_messages .message-01 {
    width: 15rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2.moved .fy_messages .message-01 {
    width: 15.5rem;
  }
}
.fy_blocks .block-2.moved .fy_messages .message-02 {
  width: 33.5rem;
}
@media (min-width: 821px) {
  .fy_blocks .block-2.moved .fy_messages .message-02 {
    left: 50%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-2.moved .fy_messages .message-02 {
    left: 30%;
    width: 24rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-2.moved .fy_messages .message-02 {
    width: 24.5rem;
  }
}
@media (min-width: 560px) {
  .fy_blocks .block-3 {
    position: absolute;
    left: 69.69%;
    top: 32.87%;
    width: 24%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-3 {
    top: 38rem;
    left: 60rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3 {
    padding-right: 4vw;
  }
}
.fy_blocks .block-3 .img_box {
  background: url(../images/top/top_for_03-r.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3 .img_box {
    margin-left: auto;
  }
}
.fy_blocks .block-3 .fy_messages {
  position: absolute;
  transition: all 0.5s ease 1s;
}
@media (min-width: 560px) {
  .fy_blocks .block-3 .fy_messages {
    top: 10%;
    left: -35rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3 .fy_messages {
    top: -8%;
    left: 16px;
  }
}
.fy_blocks .block-3 .fy_messages .message-01 {
  width: 32rem;
  position: absolute;
  left: 26%;
  top: 2%;
  z-index: 2;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-3 .fy_messages .message-01 {
    width: 23rem;
    left: 50%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3 .fy_messages .message-01 {
    width: 23.5rem;
    left: 4%;
  }
}
.fy_blocks .block-3 .fy_messages .message-02 {
  width: 42rem;
  position: relative;
  left: 0%;
  z-index: 2;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-3 .fy_messages .message-02 {
    width: 30rem;
    left: 30%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3 .fy_messages .message-02 {
    width: 31rem;
  }
}
@media (min-width: 821px) {
  .fy_blocks .block-3.moved .fy_messages {
    top: 24%;
    left: -35rem;
  }
}
.fy_blocks .block-3.moved .fy_messages .message-01 {
  left: 66%;
  width: 14rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-3.moved .fy_messages .message-01 {
    width: 10rem;
    left: 80%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3.moved .fy_messages .message-01 {
    left: 4%;
    width: 10.5rem;
  }
}
.fy_blocks .block-3.moved .fy_messages .message-02 {
  width: 37.2rem;
  left: 1%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-3.moved .fy_messages .message-02 {
    left: 35%;
    width: 27rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-3.moved .fy_messages .message-02 {
    left: 0;
    width: 27.5rem;
  }
}
@media (min-width: 560px) {
  .fy_blocks .block-4 {
    position: absolute;
    left: 10.36%;
    top: 38.39%;
    width: 31.09%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-4 {
    padding-left: 12vw;
  }
}
.fy_blocks .block-4 .img_box {
  background: url(../images/top/top_for_04-r.jpg) no-repeat;
  background-size: cover;
}
.fy_blocks .block-4 .fy_messages {
  position: absolute;
  transition: all 0.5s ease 1s;
}
@media (min-width: 560px) {
  .fy_blocks .block-4 .fy_messages {
    top: 72%;
    left: -8%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-4 .fy_messages {
    top: -8%;
    right: 16px;
  }
}
.fy_blocks .block-4 .fy_messages .message-01 {
  width: 23.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-4 .fy_messages .message-01 {
    width: 17rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-4 .fy_messages .message-01 {
    width: 17.5rem;
  }
}
.fy_blocks .block-4 .fy_messages .message-02 {
  width: 22rem;
  position: absolute;
  left: -4vw;
  bottom: 2%;
  z-index: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-4 .fy_messages .message-02 {
    width: 16rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-4 .fy_messages .message-02 {
    width: 16rem;
  }
}
.fy_blocks .block-4.moved .fy_messages .message-01 {
  width: 33rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-4.moved .fy_messages .message-01 {
    width: 24rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-4.moved .fy_messages .message-01 {
    width: 24.5rem;
  }
}
.fy_blocks .block-4.moved .fy_messages .message-02 {
  width: 37rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-4.moved .fy_messages .message-02 {
    width: 27rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-4.moved .fy_messages .message-02 {
    width: 27.5rem;
  }
}
@media (min-width: 560px) {
  .fy_blocks .block-5 {
    position: absolute;
    left: 54%;
    top: 52.66%;
    width: 27.73%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5 {
    padding-right: 4vw;
  }
}
.fy_blocks .block-5 .img_box {
  background: url(../images/top/top_for_05-r.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5 .img_box {
    margin-left: auto;
  }
}
.fy_blocks .block-5 .fy_messages {
  position: absolute;
  top: 80%;
  left: 76%;
  transition: all 0.5s ease 1s;
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5 .fy_messages {
    top: -8%;
    left: 16px;
  }
}
.fy_blocks .block-5 .fy_messages .message-01 {
  width: 24rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-5 .fy_messages .message-01 {
    width: 17rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5 .fy_messages .message-01 {
    width: 17.5rem;
  }
}
.fy_blocks .block-5 .fy_messages .message-02 {
  width: 20rem;
  position: absolute;
  left: 4vw;
  bottom: 2%;
  z-index: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-5 .fy_messages .message-02 {
    width: 14rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5 .fy_messages .message-02 {
    width: 14.5rem;
  }
}
.fy_blocks .block-5.moved .fy_messages .message-01 {
  width: 25rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-5.moved .fy_messages .message-01 {
    width: 18rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5.moved .fy_messages .message-01 {
    width: 18.5rem;
  }
}
.fy_blocks .block-5.moved .fy_messages .message-02 {
  width: 30rem;
  left: -4vw;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-5.moved .fy_messages .message-02 {
    width: 22rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-5.moved .fy_messages .message-02 {
    width: 22.5rem;
    left: -1vw;
  }
}
@media (min-width: 560px) {
  .fy_blocks .block-6 {
    position: absolute;
    left: 20.625%;
    top: 71.89%;
    width: 32.68%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-6 {
    padding-left: 9vw;
  }
}
.fy_blocks .block-6 .img_box {
  background: url(../images/top/top_for_06-r.jpg) no-repeat;
  background-size: cover;
}
.fy_blocks .block-6 .fy_messages {
  position: absolute;
  transition: all 0.5s ease 1s;
}
@media (min-width: 560px) {
  .fy_blocks .block-6 .fy_messages {
    top: 24%;
    left: 90%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-6 .fy_messages {
    top: -8%;
    right: 16px;
  }
}
.fy_blocks .block-6 .fy_messages .message-01 {
  width: 16.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-6 .fy_messages .message-01 {
    width: 12rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-6 .fy_messages .message-01 {
    width: 12.4rem;
  }
}
.fy_blocks .block-6 .fy_messages .message-02 {
  width: 24rem;
  position: absolute;
  left: 3vw;
  bottom: 2%;
  z-index: 1;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-6 .fy_messages .message-02 {
    width: 17rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-6 .fy_messages .message-02 {
    width: 17.5rem;
  }
}
.fy_blocks .block-6.moved .fy_messages .message-01 {
  width: 31rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-6.moved .fy_messages .message-01 {
    width: 22rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-6.moved .fy_messages .message-01 {
    width: 22.5rem;
  }
}
.fy_blocks .block-6.moved .fy_messages .message-02 {
  width: 35rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .fy_blocks .block-6.moved .fy_messages .message-02 {
    width: 25rem;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .block-6.moved .fy_messages .message-02 {
    width: 25.5rem;
  }
}
@media (min-width: 560px) {
  .fy_blocks .last_message {
    position: absolute;
    left: 56.15%;
    top: 88.875%;
  }
}
@media (max-width: 559.9px) {
  .fy_blocks .last_message {
    padding: 0 2rem;
  }
}
.fy_blocks .last_message p {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.5;
  color: #559484;
  letter-spacing: 2rem;
  line-height: 2;
}
@media (max-width: 559.9px) {
  .fy_blocks .last_message p {
    letter-spacing: 1.5em;
    font-size: 1.3rem;
  }
}

.top_action_section {
  background-color: #f5d051;
  padding: 4.8rem;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section {
    padding: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section {
    padding: 3rem;
  }
}
.top_action_section .white_section {
  background-color: #faf8f4;
  border-radius: 4rem;
  width: 100%;
  margin: 0 auto;
  padding: 16rem 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section {
    border-radius: 2.4rem;
    padding: 7rem 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section {
    padding: 5rem 3rem;
  }
}
@media (min-width: 821px) {
  .top_action_section .white_section .head_message {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.top_action_section .white_section .head_message .message_img {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 821px) {
  .top_action_section .white_section .head_message .message_img {
    width: 38%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .head_message .message_img {
    width: 32rem;
    margin: 0 auto;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .head_message .message_img {
    width: 240px;
    margin: 0 auto;
  }
}
.top_action_section .white_section .head_message .message_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top_action_section .white_section .head_message .message_side {
  width: 54%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .head_message .message_side {
    gap: 20px;
    width: 100%;
    margin-top: 2.4rem;
    padding: 0 2rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .head_message .message_side {
    width: 100%;
    margin-top: 4rem;
    gap: 2rem;
  }
}
.top_action_section .white_section .head_message .message_side h2 {
  color: #EF7E52;
  font-size: 3.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .head_message .message_side h2 {
    font-size: 2.4rem;
    text-align: center;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .head_message .message_side h2 {
    font-size: 1.8rem;
    text-align: center;
    font-feature-settings: "palt";
  }
}
.top_action_section .white_section .head_message .message_side p {
  color: #6d5237;
  font-weight: bold;
}
@media (min-width: 821px) {
  .top_action_section .white_section .head_message .message_side p {
    line-height: 4rem;
    font-size: 1.7rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .head_message .message_side p {
    font-size: 1.5rem;
    line-height: 3.4rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .head_message .message_side p {
    line-height: 3rem;
  }
}
@media (min-width: 821px) {
  .top_action_section .white_section .head_message .message_side p .bd {
    font-size: 2.5rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .head_message .message_side p .bd {
    font-size: 2.2rem;
  }
}
.top_action_section .white_section .mid-title {
  color: #6d5237;
  font-size: 4rem;
  text-align: center;
  margin: 18rem 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .mid-title {
    margin: 8vh auto;
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .mid-title {
    margin: 10rem auto 7rem;
    font-size: 2.1rem;
    font-feature-settings: "palt";
  }
}
.top_action_section .white_section .top_actions {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .top_actions {
    flex-direction: column;
  }
}
.top_action_section .white_section .top_actions .box {
  width: 28%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .white_section .top_actions .box {
    width: 30%;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .top_actions .box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .top_action_section .white_section .top_actions .box:not(:last-child) {
    margin-bottom: 24px;
  }
  .top_action_section .white_section .top_actions .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.top_action_section .white_section .top_actions .box .img {
  width: 80%;
  margin: 0 auto 2.4rem;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .top_actions .box .img {
    width: 120px;
    margin: 0;
    border-radius: 16px;
  }
}
.top_action_section .white_section .top_actions .box .img img {
  display: block;
  width: 100%;
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .top_actions .box .inner {
    width: calc(100% - 144px);
  }
}
.top_action_section .white_section .top_actions .box .eng {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #559484;
}
@media (max-width: 820.9px) {
  .top_action_section .white_section .top_actions .box .eng {
    font-size: 18px;
    text-align: left;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .top_actions .box .eng {
    font-size: 1.9rem;
  }
}
.top_action_section .white_section .top_actions .box .jp {
  font-size: 1.7rem;
  color: #6d5237;
  margin-top: 2rem;
  line-height: 3.6rem;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .top_action_section .white_section .top_actions .box .jp {
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.8;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .white_section .top_actions .box .jp {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    line-height: 2.4rem;
  }
}
.top_action_section .video_section {
  margin-top: 20rem;
  padding-bottom: 12rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .video_section {
    margin-top: 14rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .video_section {
    margin-top: 10vh;
    padding-bottom: 8vh;
  }
}
.top_action_section .video_section .video_title {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 4rem;
  margin: 6rem auto;
}
@media (max-width: 559.9px) {
  .top_action_section .video_section .video_title {
    width: 90%;
    margin: 4vh auto;
    padding: 8px 24px;
  }
}
.top_action_section .video_section .video_title h3 {
  font-size: 2rem;
  color: #6d5237;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .video_section .video_title h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .video_section .video_title h3 {
    font-size: 14px;
    text-align: center;
  }
}
.top_action_section .video_section .video_i {
  width: 100rem;
  margin: 0 auto;
  padding: 0.06rem;
  background-color: white;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_action_section .video_section .video_i {
    width: 80%;
  }
}
@media (max-width: 559.9px) {
  .top_action_section .video_section .video_i {
    width: 100%;
  }
}
.top_action_section .video_section .video_i video {
  display: block;
  width: 100%;
}

.top_about_section {
  width: 100%;
  overflow: hidden;
  background-color: #faf8f4;
  padding: 16rem 20rem 12rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_section {
    padding: 10vh 4vw 10vh;
  }
}
@media (max-width: 559.9px) {
  .top_about_section {
    padding: 12rem 4rem;
  }
}

.top_about_slider {
  width: 100%;
  margin: 14rem auto 8rem;
  overflow: visible;
  position: relative;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .top_about_slider {
    width: 100%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider {
    margin-top: 10rem;
    margin-bottom: 5rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider {
    width: 100%;
    margin: 40px auto 32px;
  }
}
.top_about_slider .swiper-wrapper {
  width: 100%;
}
.top_about_slider .swiper-wrapper .swiper-slide {
  width: 100%;
}
.top_about_slider .top_about_box {
  width: 100%;
  background-color: white;
  overflow: hidden;
}
@media (min-width: 560px) {
  .top_about_slider .top_about_box {
    aspect-ratio: 28/13;
    display: flex;
    border: 0.2rem #6d5237 solid;
    border-radius: 2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider .top_about_box {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box {
    height: 44rem;
    border-radius: 4rem;
  }
}
.top_about_slider .top_about_box .text_side {
  height: 100%;
}
@media (min-width: 560px) {
  .top_about_slider .top_about_box .text_side {
    width: 50%;
    padding: 0 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider .top_about_box .text_side {
    padding: 0 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box .text_side {
    padding: 0;
    width: 100%;
    padding: 0 3rem;
  }
}
@media (min-width: 821px) {
  .top_about_slider .top_about_box .text_side .title_text {
    height: 37%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom: 0.3rem #6d5237 solid;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider .top_about_box .text_side .title_text {
    border-bottom: 1px #6d5237 solid;
    height: auto;
    margin-bottom: 2rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box .text_side .title_text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12rem;
    margin-bottom: 19.5rem;
  }
}
.top_about_slider .top_about_box .text_side .title {
  font-size: 2.5rem;
  color: #6d5237;
  font-weight: bold;
  padding-bottom: 2rem;
}
@media (min-width: 821px) {
  .top_about_slider .top_about_box .text_side .title {
    line-height: 4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider .top_about_box .text_side .title {
    font-size: 1.8rem;
    line-height: 1.5;
    padding-bottom: 2rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box .text_side .title {
    height: auto;
    font-size: 1.6rem;
    border-bottom: 1px #6d5237 solid;
    text-align: center;
    padding-bottom: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-feature-settings: "palt";
  }
}
.top_about_slider .top_about_box .text_side .under_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 821px) {
  .top_about_slider .top_about_box .text_side .under_text {
    height: 63%;
    padding-top: 4rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider .top_about_box .text_side .under_text {
    height: auto;
    gap: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box .text_side .under_text {
    height: auto;
    gap: 8px;
  }
}
.top_about_slider .top_about_box .text_side .under_text p {
  font-size: 2rem;
  color: #6d5237;
  font-weight: 500;
}
@media (min-width: 821px) {
  .top_about_slider .top_about_box .text_side .under_text p {
    line-height: 3.7rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_about_slider .top_about_box .text_side .under_text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box .text_side .under_text p {
    font-size: 1.2rem;
    font-feature-settings: "palt";
  }
}
.top_about_slider .top_about_box .img_side {
  width: 50%;
  height: 100%;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_about_slider .top_about_box .img_side {
    position: absolute;
    top: 11.3rem;
    left: 3rem;
    width: calc(100% - 6rem);
    height: 18rem;
    border-radius: 6rem;
    overflow: hidden;
  }
}
.top_about_slider .top_about_box .img_side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top_about_slider .about_box-prev,
.top_about_slider .about_box-next {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background-color: transparent;
  width: 8rem;
  height: 8rem;
  color: #1b1b1b;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
.top_about_slider .about_box-prev::after,
.top_about_slider .about_box-next::after {
  display: none;
}
.top_about_slider .about_box-next {
  right: -12rem;
}
@media (max-width: 559.9px) {
  .top_about_slider .about_box-next {
    width: 5rem;
    height: 5rem;
    right: -4rem;
    font-size: 1.6rem;
  }
}
.top_about_slider .about_box-prev {
  left: -12rem;
}
@media (max-width: 559.9px) {
  .top_about_slider .about_box-prev {
    display: none;
  }
}

.top_about_slider-thumbnail {
  width: 56rem;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .top_about_slider-thumbnail {
    width: 96%;
  }
}
.top_about_slider-thumbnail .swiper-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 0.1rem #6d5237 solid;
}
.top_about_slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 100% !important;
  padding: 1.4rem 3rem;
  border-bottom: 0.1rem #6d5237 solid;
  cursor: pointer;
}
@media (max-width: 559.9px) {
  .top_about_slider-thumbnail .swiper-wrapper .swiper-slide {
    padding: 10px;
  }
}
.top_about_slider-thumbnail .swiper-wrapper .swiper-slide > p {
  color: #d0c4b7;
  font-size: 1.6rem;
}
@media (max-width: 559.9px) {
  .top_about_slider-thumbnail .swiper-wrapper .swiper-slide > p {
    font-size: 1.26rem;
    font-feature-settings: "palt";
  }
}
.top_about_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  cursor: default;
}
.top_about_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active > p {
  color: #6d5237;
}

.top_menu_section {
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 16rem 10rem 12rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menu_section {
    padding: 8rem 8vw 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_menu_section {
    padding: 10rem 3rem;
  }
}

.top_menu_head {
  width: 88rem;
  margin: 0 auto;
  position: relative;
  padding-top: 4.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menu_head {
    width: 100%;
    padding-top: 4.5rem;
  }
}
@media (max-width: 559.9px) {
  .top_menu_head {
    width: 100%;
    padding-top: 24px;
  }
}
.top_menu_head::before, .top_menu_head::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 4.8rem;
  background-color: #f5d051;
  position: absolute;
  top: 0;
  left: 50%;
}
@media (max-width: 559.9px) {
  .top_menu_head::before, .top_menu_head::after {
    width: 6px;
    height: 24px;
  }
}
.top_menu_head::before {
  transform: translateX(-15rem);
}
@media (max-width: 559.9px) {
  .top_menu_head::before {
    transform: translateX(-60px);
  }
}
.top_menu_head::after {
  transform: translateX(15rem);
}
@media (max-width: 559.9px) {
  .top_menu_head::after {
    transform: translateX(60px);
  }
}
.top_menu_head .top_menu_head_inner {
  border: 1.6rem #f5d051 solid;
  text-align: center;
  border-radius: 2rem;
  padding: 2rem 2rem 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menu_head .top_menu_head_inner {
    padding: 2rem 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_menu_head .top_menu_head_inner {
    border-width: 6px;
    padding: 16px;
  }
}
.top_menu_head h2 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .top_menu_head h2 {
    font-size: 20px;
  }
}
.top_menu_head p {
  font-size: 1.6rem;
  color: #FC7628;
  font-weight: bold;
  margin-top: 0.8rem;
}
@media (max-width: 559.9px) {
  .top_menu_head p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}

.top_menu_head_under_text {
  text-align: center;
  color: #6d5237;
  margin-top: 6rem;
}
.top_menu_head_under_text p {
  font-size: 2.2rem;
  line-height: 1.5;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .top_menu_head_under_text p {
    font-size: 2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menu_head_under_text p {
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    line-height: 1.6;
  }
}
@media (max-width: 559.9px) {
  .top_menu_head_under_text p {
    font-size: 1.4rem;
    margin-top: 4rem;
    line-height: 1.8;
  }
  .top_menu_head_under_text p br {
    display: none;
  }
}
.top_menu_head_under_text p.text-wavy {
  margin-top: 2rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .top_menu_head_under_text p.text-wavy {
    margin-top: 2rem;
  }
}

.top_menus {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 90rem;
  margin: 8rem auto;
  gap: 8rem 12rem;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .top_menus {
    width: 100%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus {
    width: 100%;
    margin-top: 6rem;
    gap: 24px 24px;
  }
}
@media (max-width: 559.9px) {
  .top_menus {
    width: 92%;
    margin: 4rem auto 0;
    gap: 3rem;
  }
}
.top_menus .top_menu_box {
  width: calc(50% - 6rem);
}
@media (max-width: 820.9px) {
  .top_menus .top_menu_box {
    width: calc(50% - 12px);
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box {
    width: 100%;
  }
}
.top_menus .top_menu_box > .img {
  width: 100%;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}
.top_menus .top_menu_box > .img .top_menu_img {
  display: block;
  width: 100%;
}
.top_menus .top_menu_box > .img .top_menu_img img {
  display: block;
  width: 100%;
}
.top_menus .top_menu_box > .img .menu_eng {
  position: absolute;
  left: 0;
  bottom: 18%;
  background-color: white;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6d5237;
  padding: 0.5rem 3rem 0.5rem 5rem;
}
@media (max-width: 820.9px) {
  .top_menus .top_menu_box > .img .menu_eng {
    font-size: 12px;
    padding: 2px 16px;
    bottom: 12%;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box > .img .menu_eng {
    bottom: 3.3rem;
  }
}
.top_menus .top_menu_box > .img .icon-checksheet {
  display: block;
  width: 3.6rem;
  position: absolute;
  right: 4.8rem;
  bottom: 2.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box > .img .icon-checksheet {
    width: 24px;
    right: 24px;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box > .img .icon-checksheet {
    width: 2.4rem;
    right: 1.6rem;
    bottom: 1.8rem;
  }
}
.top_menus .top_menu_box > .img:hover {
  transform: scale(1.04);
}
.top_menus .top_menu_box .menu_title {
  text-align: right;
  color: #6d5237;
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .menu_title {
    font-size: 14px;
    margin-top: 1rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .menu_title {
    font-size: 1.6rem;
    margin-top: 0.8rem;
    text-align: center;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5vh 0;
  z-index: 21;
  display: none;
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content {
  width: 92%;
  margin: auto;
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header {
  width: 100%;
  position: relative;
  background-color: #EF7E52;
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.4rem 2.4rem 0 0;
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header {
    height: 72px;
    padding-right: 4rem;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header h3 {
  color: white;
  font-size: 3rem;
  font-weight: 500;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header h3 {
    font-size: 18px;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header h3 {
    font-size: 16px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header .minus_button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header .minus_button {
    width: 40px;
    height: 40px;
    right: 16px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header .minus_button i {
  color: #EF7E52;
  font-size: 2.4rem;
  display: block;
  letter-spacing: 0;
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_header .minus_button i {
    font-size: 16px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner {
  background-color: #faf8f4;
  height: calc(90vh - 11rem);
  overflow: scroll;
  padding: 5rem;
  border-radius: 0 0 2.4rem 2.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner {
    padding: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner {
    padding: 3rem;
    height: calc(90vh - 72px);
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title {
    margin-bottom: 20px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title .eng {
  font-size: 3.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title .eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title .eng {
    font-size: 20px;
    line-height: 1.4;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title .jp {
  font-size: 1.8rem;
  font-weight: normal;
  color: #559484;
  margin-top: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title .jp {
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner > .je-title .jp {
    font-size: 1.4rem;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section {
  background-color: white;
  padding: 5rem 8rem 8rem;
  border-radius: 1.6rem;
  margin-top: 4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section {
    padding: 5rem 4rem 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section {
    padding: 24px 4vw;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section > .je-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section > .je-title .eng {
    font-size: 2.8rem;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section > .je-title .jp {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section > .je-title .jp {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section > .je-title .jp {
    font-size: 14px;
    margin-top: 0;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin: 3rem auto 5rem;
}
@media (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_tags {
    flex-wrap: wrap;
    gap: 4px 4px;
    margin: 16px auto;
    justify-content: flex-start;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_tags {
    justify-content: center;
    margin-bottom: 32px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_tags span {
  background-color: #f5d051;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 2rem;
  color: #6d5237;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 2rem;
}
@media (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_tags span {
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 4px;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_tags span {
    font-size: 1.2rem;
    padding: 0.2rem 1.2rem;
    border-radius: 0.4rem;
    font-feature-settings: "palt";
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .explain_area {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .explain_area {
    text-align: left;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .explain_area p {
  color: #6d5237;
  font-size: 1.6rem;
  line-height: 2.7rem;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .explain_area p {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .explain_area p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 4rem auto 0;
}
@media (min-width: 1440px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items {
    padding: 0 4%;
  }
}
@media (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item {
  width: 31%;
}
@media (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item {
    width: 100%;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_thumb {
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_thumb {
    border-radius: 12px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_thumb img {
  display: block;
  width: 100%;
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_item_title {
  color: #6d5237;
  margin: 4rem 0 3.7rem;
  font-size: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_item_title {
    font-size: 1.8rem;
    margin: 3.5rem 0 3rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_item_title {
    margin: 16px 0;
    font-size: 15px;
  }
}
.top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_text {
  color: #6d5237;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_text {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 559.9px) {
  .top_menus .top_menu_box .top_menu_fixed_box .top_menu_fixed_box_content .top_menu_fixed_box_inner .menu_about_section .menu_items .menu_item .menu_text {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.worries {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 559.9px) {
  .worries {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 24px;
  }
}
.worries .item {
  position: relative;
}
@media (min-width: 560px) {
  .worries .item {
    width: 32%;
  }
}
@media (max-width: 559.9px) {
  .worries .item {
    width: 90%;
    margin: 0 auto;
  }
}
.worries .item .img img {
  display: block;
  width: 100%;
}
.worries .item .worry_abouts {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: 1;
}
.worries .item .worry_abouts span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.1rem;
  color: #559484;
  border: 1px #559484 solid;
  border-radius: 0.4rem;
  background-color: white;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}
.worries .item .worry_abouts span:nth-child(2) {
  position: relative;
  top: -3px;
  left: 30px;
}
@media (max-width: 820.9px) {
  .worries .item .worry_abouts span {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .worries .item .worry_abouts span {
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 4px;
  }
}
@media (max-width: 559.9px) {
  .worries.worries-1 {
    padding-bottom: 40px;
  }
}
.worries.worries-1 .item:first-child {
  margin-top: 30px;
}
.worries.worries-1 .item:first-child .img {
  width: 80%;
}
.worries.worries-1 .item:first-child .worry_abouts {
  bottom: 80%;
  left: 30%;
}
@media (max-width: 559.9px) {
  .worries.worries-1 .item:first-child .worry_abouts {
    left: 20%;
  }
}
@media (min-width: 821px) {
  .worries.worries-1 .item:nth-child(2) {
    margin: 3.2rem;
  }
}
.worries.worries-1 .item:nth-child(2) .img {
  width: 90%;
}
@media (max-width: 559.9px) {
  .worries.worries-1 .item:nth-child(2) .img {
    width: 80%;
    margin: auto;
  }
}
.worries.worries-1 .item:nth-child(2) .worry_abouts {
  bottom: -29px;
  left: 40%;
}
@media (max-width: 559.9px) {
  .worries.worries-1 .item:nth-child(2) .worry_abouts {
    bottom: -16px;
  }
}
.worries.worries-1 .item:nth-child(3) {
  padding: 24px 32px 0 0;
}
.worries.worries-1 .item:nth-child(3) .img {
  width: 84%;
  margin: auto;
}
.worries.worries-1 .item:nth-child(3) .worry_abouts {
  bottom: -45px;
  left: 30px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .worries.worries-1 .item:nth-child(3) .worry_abouts {
    left: 1rem;
  }
}
.worries.worries-2 .item {
  overflow: visible;
}
.worries.worries-2 .item:first-child {
  padding: 10px 40px 0 20px;
}
.worries.worries-2 .item:first-child .worry_abouts {
  bottom: 80%;
}
.worries.worries-2 .item:nth-child(2) {
  padding: 30px 40px 0 30px;
}
.worries.worries-2 .item:nth-child(2) .worry_abouts {
  bottom: -3%;
  left: 30%;
}
@media (max-width: 559.9px) {
  .worries.worries-2 .item:nth-child(2) .worry_abouts {
    left: 0;
    bottom: 64%;
  }
}
.worries.worries-2 .item:nth-child(3) {
  padding: 24px 32px 0 24px;
}
.worries.worries-2 .item:nth-child(3) .img {
  padding-right: 32px;
}
.worries.worries-2 .item:nth-child(3) .worry_abouts {
  bottom: 63%;
  left: 30%;
}
.worries.worries-3 .item {
  overflow: visible;
}
.worries.worries-3 .item:first-child {
  padding: 36px 10px 0 56px;
}
@media (max-width: 559.9px) {
  .worries.worries-3 .item:first-child {
    padding: 18px 12px 0 28px;
  }
}
.worries.worries-3 .item:first-child .worry_abouts {
  bottom: 80%;
  left: 30%;
}
@media (max-width: 559.9px) {
  .worries.worries-3 .item:first-child .worry_abouts {
    left: 20%;
    bottom: -16px;
  }
}
.worries.worries-3 .item:nth-child(2) {
  padding: 48px 20px 0 16px;
}
@media (max-width: 559.9px) {
  .worries.worries-3 .item:nth-child(2) {
    padding: 24px 25px 0 28px;
  }
}
.worries.worries-3 .item:nth-child(2) .img {
  width: 84%;
  margin: 0 auto;
}
.worries.worries-3 .item:nth-child(2) .worry_abouts {
  bottom: 0%;
  left: 30%;
}
@media (max-width: 559.9px) {
  .worries.worries-3 .item:nth-child(2) .worry_abouts {
    bottom: -12px;
  }
}
.worries.worries-3 .item:nth-child(3) {
  padding: 32px 0 0 0;
}
.worries.worries-3 .item:nth-child(3) .img {
  width: 90%;
  margin: auto;
}
.worries.worries-3 .item:nth-child(3) .worry_abouts {
  bottom: 14%;
  left: 44%;
}
@media (max-width: 559.9px) {
  .worries.worries-3 .item:nth-child(3) .worry_abouts {
    left: 100px;
    bottom: -16px;
  }
}
.worries.worries-4 .item {
  overflow: visible;
}
.worries.worries-4 .item:first-child {
  padding: 36px 40px 0 16px;
}
@media (max-width: 559.9px) {
  .worries.worries-4 .item:first-child {
    padding: 18px 20px 0 28px;
  }
}
.worries.worries-4 .item:first-child .img {
  width: 100%;
  margin: auto;
}
.worries.worries-4 .item:first-child .worry_abouts {
  bottom: 32%;
}
@media (max-width: 559.9px) {
  .worries.worries-4 .item:first-child .worry_abouts {
    bottom: -16px;
  }
}
.worries.worries-4 .item:nth-child(2) {
  padding: 24px 0 0 0;
}
@media (max-width: 559.9px) {
  .worries.worries-4 .item:nth-child(2) {
    padding: 40px 24px 0 0;
  }
}
.worries.worries-4 .item:nth-child(2) .img {
  width: 90%;
}
.worries.worries-4 .item:nth-child(2) .worry_abouts {
  left: 60%;
  bottom: 15%;
}
@media (max-width: 559.9px) {
  .worries.worries-4 .item:nth-child(2) .worry_abouts {
    left: 50%;
    bottom: 5%;
  }
}
.worries.worries-4 .item:nth-child(3) .img {
  width: 100%;
  padding: 24px 50px 0 0;
}
.worries.worries-4 .item:nth-child(3) .worry_abouts {
  bottom: 64%;
  left: 52%;
}
@media (max-width: 559.9px) {
  .worries.worries-4 .item:nth-child(3) .worry_abouts {
    left: 36%;
  }
}

.cta_section {
  background-color: #f5d051;
  padding: 4.8rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .cta_section {
    padding: 4vw;
  }
}
.cta_section .white_section {
  background-color: #FAF8F4;
  border-radius: 4rem;
  margin: 0 auto;
  padding: 6vh 8vw;
}
@media (max-width: 559.9px) {
  .cta_section .white_section {
    width: 92vw;
    border-radius: 24px;
    padding: 5vw;
  }
}
.cta_section .white_section .cta_logo {
  display: block;
  width: 36rem;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .cta_section .white_section .cta_logo {
    width: 240px;
  }
}
.cta_section .white_section .cta_logo img {
  display: block;
  width: 100%;
}
.cta_section .white_section .cta_btn_line {
  background-color: #f5d051;
  width: 30rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d5237;
  font-size: 1.6rem;
  gap: 2rem;
  border-radius: 8rem;
  margin: 3rem auto 0;
}
@media (max-width: 559.9px) {
  .cta_section .white_section .cta_btn_line {
    width: 280px;
    height: 56px;
    margin-top: 24px;
    font-size: 13px;
    gap: 10px;
    border-radius: 50px;
  }
}
.cta_section .white_section .cta_btn_line img {
  display: block;
  width: 3.6rem;
}
@media (max-width: 559.9px) {
  .cta_section .white_section .cta_btn_line img {
    width: 24px;
  }
}

.top_crew_section {
  width: 100%;
  overflow: hidden;
  background-color: #faf8f4;
  padding: 20rem 10rem 12rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_section {
    padding: 10vh 6vw 6.4vh;
  }
}
@media (max-width: 559.9px) {
  .top_crew_section {
    padding: 8vh 8vw;
  }
}

.top_crew_title_under_text {
  text-align: center;
  font-size: 2.2rem;
  color: #6d5237;
  margin-top: 8rem;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .top_crew_title_under_text {
    font-size: 15px;
    margin-top: 40px;
  }
}
@media (max-width: 559.9px) {
  .top_crew_title_under_text {
    font-size: 1.5rem;
    margin-top: 4rem;
  }
}

.top_crew_slider {
  padding-bottom: 10rem;
  position: relative;
  margin-top: 8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider {
    margin-top: 50px;
    padding-bottom: 8rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider {
    margin-top: 50px;
    padding-bottom: 56px;
  }
}
.top_crew_slider .top_crew {
  width: 100%;
  padding: 6rem 6rem 7rem;
  background-color: white;
  border-radius: 2.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew {
    padding: 40px;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew {
    padding: 4vw;
    border-radius: 16px;
  }
}
.top_crew_slider .top_crew header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top_crew_slider .top_crew header .top_crew_thumb {
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb {
    width: 96px;
    height: 96px;
    border-radius: 8px;
  }
}
.top_crew_slider .top_crew header .top_crew_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top_crew_slider .top_crew header .top_crew_thumb_side {
  flex: 1;
  padding-left: 4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side {
    padding-left: 28px;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side {
    padding-left: 20px;
  }
}
.top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}
.top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info .top_crew_name {
  font-size: 3.2rem;
  color: #6d5237;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info .top_crew_name {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info .top_crew_name {
    font-size: 15px;
  }
}
.top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info .top_crew_position {
  font-size: 1.2rem;
  border: 0.1rem #6d5237 solid;
  color: #6d5237;
  font-weight: bold;
  border-radius: 3rem;
  padding: 0.3rem 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info .top_crew_position {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-feature-settings: "palt";
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_info .top_crew_position {
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    line-height: 1.5;
  }
}
.top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1.2rem;
  color: #6d5237;
  margin-top: 1.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_tags {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-feature-settings: "palt";
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_tags {
    font-size: 11px;
    gap: 3px 6px;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    line-height: 1.5;
    margin-top: 10px;
  }
}
.top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_tags span {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_tags span {
    font-size: 1.1rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew header .top_crew_thumb_side .top_crew_tags span {
    font-size: 1rem;
    font-weight: 500;
  }
}
.top_crew_slider .top_crew .top_crew_inner {
  margin-top: 6rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew .top_crew_inner {
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew .top_crew_inner {
    margin-top: 32px;
  }
}
.top_crew_slider .top_crew .top_crew_inner .top_crew_question {
  position: relative;
}
.top_crew_slider .top_crew .top_crew_inner .top_crew_question:not(:last-child) {
  border-bottom: 0.1rem #6d5237 solid;
  padding-bottom: 4rem;
  margin-bottom: 4.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question:not(:last-child) {
    padding-bottom: 3rem;
    margin-bottom: 3.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question:not(:last-child) {
    padding-bottom: 2.4rem;
    margin-bottom: 3rem;
  }
}
.top_crew_slider .top_crew .top_crew_inner .top_crew_question dt {
  margin-bottom: 2.8rem;
  color: #6d5237;
  position: relative;
  font-weight: 700;
}
@media (min-width: 560px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dt {
    padding-left: 4.5rem;
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dt {
    font-size: 1.5rem;
    line-height: 3rem;
    padding-left: 4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dt {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding-left: 3rem;
    color: #07afbf;
  }
}
.top_crew_slider .top_crew .top_crew_inner .top_crew_question dt::before {
  content: "Q.";
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6d5237;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dt::before {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dt::before {
    font-size: 1.5rem;
    color: #07afbf;
    top: -0.1rem;
  }
}
.top_crew_slider .top_crew .top_crew_inner .top_crew_question dd {
  color: #6d5237;
  position: relative;
}
@media (min-width: 560px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dd {
    padding-left: 4.5rem;
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dd {
    font-size: 1.5rem;
    line-height: 3rem;
    padding-left: 4rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dd {
    font-size: 1.3rem;
    padding-left: 3rem;
  }
}
.top_crew_slider .top_crew .top_crew_inner .top_crew_question dd::before {
  content: "A.";
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6d5237;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dd::before {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_crew_slider .top_crew .top_crew_inner .top_crew_question dd::before {
    font-size: 1.5rem;
    top: -0.1rem;
  }
}
.top_crew_slider .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 0.15rem #555 solid;
  background-color: #555;
  opacity: 1;
}
@media (max-width: 559.9px) {
  .top_crew_slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}
.top_crew_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  border: 0.15rem #555 solid;
  top: 0;
  transform: scale(1.4);
}
@media (max-width: 559.9px) {
  .top_crew_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}

.top_howto_section {
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 15rem 15rem 12rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_howto_section {
    padding: 10vh 6vw 8vh;
  }
}
@media (max-width: 559.9px) {
  .top_howto_section {
    padding: 8vh 8vw;
  }
}
.top_howto_section .top_howto_wrap {
  margin: 10rem auto 0;
}
@media (max-width: 1159.9px) {
  .top_howto_section .top_howto_wrap {
    width: 100%;
  }
}
@media (max-width: 820.9px) {
  .top_howto_section .top_howto_wrap {
    margin-top: 8vh;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_howto_section .top_howto_wrap {
    margin-top: 6rem;
  }
}

.top_howto_flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 559.9px) {
  .top_howto_flow {
    flex-direction: column;
    gap: 32px;
  }
}
.top_howto_flow > li {
  width: 21%;
  position: relative;
}
@media (max-width: 559.9px) {
  .top_howto_flow > li {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.top_howto_flow > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 20%;
  aspect-ratio: 31/11;
  background: url(../images/icons/icon-howto-arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
}
@media (min-width: 560px) {
  .top_howto_flow > li:not(:last-child)::after {
    left: 103%;
    top: 13rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_howto_flow > li:not(:last-child)::after {
    top: 7.2rem;
  }
}
@media (max-width: 559.9px) {
  .top_howto_flow > li:not(:last-child)::after {
    left: 50%;
    top: 104%;
    transform: rotate(90deg);
    width: 30px;
  }
}
.top_howto_flow > li .img {
  border-radius: 1.8rem;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .top_howto_flow > li .img {
    width: 120px;
  }
}
.top_howto_flow > li .img img {
  display: block;
  width: 100%;
}
@media (max-width: 559.9px) {
  .top_howto_flow > li .inner {
    width: calc(100% - 144px);
  }
}
.top_howto_flow > li .tit {
  text-align: center;
  margin-top: 3rem;
  color: #6d5237;
  font-size: 1.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_howto_flow > li .tit {
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }
}
@media (max-width: 559.9px) {
  .top_howto_flow > li .tit {
    text-align: left;
    margin-top: 0;
    line-height: 1.5;
    font-size: 15px;
  }
}
.top_howto_flow > li .tit + p {
  font-size: 1.5rem;
  text-align: center;
  color: #6d5237;
  margin-top: 1.5rem;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_howto_flow > li .tit + p {
    text-align: left;
    letter-spacing: 0.2em;
    font-feature-settings: "palt";
    font-size: 1.3rem;
  }
  .top_howto_flow > li .tit + p br {
    display: none;
  }
}
@media (max-width: 559.9px) {
  .top_howto_flow > li .tit + p {
    font-size: 13px;
    text-align: left;
    margin-top: 16px;
    font-weight: 500;
  }
}

.top_howto_flow_after_text {
  margin-top: 10rem;
  color: #6d5237;
  font-size: 1.3rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .top_howto_flow_after_text {
    font-size: 13px;
    margin-top: 40px;
  }
}

.top_promise_section {
  width: 100%;
  overflow: hidden;
  background-color: #f5d051;
  padding: 18rem 0 16rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_promise_section {
    padding: 10rem 0;
  }
}
@media (max-width: 559.9px) {
  .top_promise_section {
    padding: 8vh 0;
  }
}
.top_promise_section .top_promise_title_under_text {
  text-align: center;
  font-size: 2.2rem;
  color: #6d5237;
  width: 90%;
  margin: 6rem auto 0;
  font-weight: bold;
}
@media (max-width: 1159.9px) {
  .top_promise_section .top_promise_title_under_text {
    font-size: 16px;
  }
}
@media (max-width: 559.9px) {
  .top_promise_section .top_promise_title_under_text {
    font-size: 14px;
    margin-top: 40px;
  }
}
.top_promise_section .top_promise_wrap {
  width: 100%;
  padding: 0 14rem;
  margin: 8vh auto 0;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_promise_section .top_promise_wrap {
    padding: 0 6rem;
  }
}
@media (max-width: 820.9px) {
  .top_promise_section .top_promise_wrap {
    flex-direction: column-reverse;
    margin-top: 5vh;
    gap: 16px;
  }
}
@media (max-width: 559.9px) {
  .top_promise_section .top_promise_wrap {
    padding: 0 3rem;
  }
}
.top_promise_section .top_promise_wrap .thumb_side {
  width: 30%;
}
@media (max-width: 820.9px) {
  .top_promise_section .top_promise_wrap .thumb_side {
    width: 100%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_promise_section .top_promise_wrap .thumb_side {
    width: 40rem;
    margin: 0 auto;
  }
}
.top_promise_section .top_promise_wrap .slider_side {
  width: calc(70% - 3rem);
}
@media (max-width: 820.9px) {
  .top_promise_section .top_promise_wrap .slider_side {
    width: 100%;
  }
}

.top_promise_slider {
  width: 100%;
  height: 100%;
}
.top_promise_slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.top_promise_slider .swiper-wrapper .top_promise_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6.4rem 4.8rem;
  background-color: white;
  border-radius: 1.8rem;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box {
    padding: 32px;
  }
}
@media (max-width: 559.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box {
    padding: 4rem 2rem;
    border-radius: 2rem;
    height: 24rem;
    align-items: flex-start;
  }
}
.top_promise_slider .swiper-wrapper .top_promise_box .text_side {
  width: 50%;
}
@media (max-width: 559.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .text_side {
    width: 100%;
  }
}
.top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_tab {
  background-color: #74d5c1;
  color: white;
  padding: 0.5rem 1.4rem;
  border-radius: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_tab {
    font-size: 12px;
    border-radius: 4px;
    padding: 2px 10px;
  }
}
.top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_tit {
  font-weight: bold;
  color: #6d5237;
  margin-top: 3rem;
  border-bottom: 0.2rem #6d5237 solid;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  font-size: 1.8rem;
}
@media (max-width: 820.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_tit {
    font-feature-settings: "palt";
    font-size: 1.8rem;
    margin: 20px 0;
  }
}
@media (max-width: 559.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_tit {
    font-size: 1.3rem;
    width: calc(100% - 11rem);
    padding-bottom: 1.2rem;
    margin: 1rem 0 1.6rem;
    line-height: 1.5;
    border-bottom: 0.12rem #6d5237 solid;
  }
}
.top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_inner {
  color: #6d5237;
  line-height: 4rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_inner {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 559.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .text_side .promise_inner {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.top_promise_slider .swiper-wrapper .top_promise_box .img_side {
  width: calc(50% - 4rem);
  border-radius: 9rem;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .top_promise_slider .swiper-wrapper .top_promise_box .img_side {
    width: 9.6rem;
    position: absolute;
    right: 1.5rem;
    top: 3rem;
    border-radius: 1.2rem;
  }
}
.top_promise_slider .swiper-wrapper .top_promise_box .img_side img {
  display: block;
  width: 100%;
}

.top_promise_slider-thumbnail {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .top_promise_slider-thumbnail {
    width: 39rem;
    margin: 0 auto;
  }
}
.top_promise_slider-thumbnail .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_promise_slider-thumbnail .swiper-wrapper {
    gap: 0.8rem;
  }
}
@media (max-width: 559.9px) {
  .top_promise_slider-thumbnail .swiper-wrapper {
    gap: 4px;
  }
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 100% !important;
  padding: 0 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.8rem;
  gap: 0.8rem;
  height: calc(20% - 1rem);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_promise_slider-thumbnail .swiper-wrapper .swiper-slide {
    height: 48px;
    padding: 0 1.6rem;
    gap: 0.5rem;
  }
}
@media (max-width: 559.9px) {
  .top_promise_slider-thumbnail .swiper-wrapper .swiper-slide {
    height: 4.8rem;
    padding: 0 1rem;
    gap: 1rem;
    border-radius: 1.2rem;
  }
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide .num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 559.9px) {
  .top_promise_slider-thumbnail .swiper-wrapper .swiper-slide .num {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide .txt {
  font-weight: bold;
  font-size: 1.35rem;
  flex: 1;
  padding-left: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 559.9px) {
  .top_promise_slider-thumbnail .swiper-wrapper .swiper-slide .txt {
    font-size: 12px;
    letter-spacing: 0.3em;
  }
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide:not(.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active) {
  background-color: #faf8f4;
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide:not(.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active) .num {
  color: white;
  background-color: #6d5237;
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide:not(.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active) .txt {
  color: #6d5237;
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  cursor: default;
  background-color: #FC7628;
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .num {
  color: #6d5237;
  background-color: white;
}
.top_promise_slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .txt {
  color: white;
}

.top_voice_section {
  width: 100%;
  overflow: hidden;
  background-color: #faf8f4;
  padding: 20rem 0 12rem;
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .top_voice_section {
    padding-top: 6rem;
  }
}
@media (max-width: 820.9px) {
  .top_voice_section {
    padding: 4vh 0 8vh;
  }
}
@media (max-width: 559.9px) {
  .top_voice_section {
    padding: 8rem 4rem;
  }
}
.top_voice_section .top_voice_wrap {
  width: 82%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .top_voice_section .top_voice_wrap {
    width: 100%;
  }
}
.top_voice_section .top_voice_wrap .je-title {
  text-align: left;
}

.top_voice_slider {
  padding-bottom: 10rem;
  position: relative;
  margin-top: 10rem;
}
@media (max-width: 559.9px) {
  .top_voice_slider {
    margin-top: 40px;
    padding-bottom: 50px;
  }
}
.top_voice_slider .top_voice_box {
  width: 100%;
  background-color: white;
  border-radius: 2.4rem;
  overflow: hidden;
  border: 0.1rem #6d5237 solid;
  position: relative;
}
.top_voice_slider .top_voice_box .thumb {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2/1;
  position: relative;
}
.top_voice_slider .top_voice_box .thumb img {
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top_voice_slider .top_voice_box .inner {
  border-top: 0.1rem #6d5237 solid;
  padding: 2rem 2.8rem;
}
@media (max-width: 559.9px) {
  .top_voice_slider .top_voice_box .inner {
    padding: 16px 4vw;
    border-top-width: 1px;
  }
}
.top_voice_slider .top_voice_box .inner .vol {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6d5237;
  margin-bottom: 0.3rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_voice_slider .top_voice_box .inner .vol {
    font-size: 13px;
  }
}
@media (max-width: 559.9px) {
  .top_voice_slider .top_voice_box .inner .vol {
    font-size: 12px;
  }
}
.top_voice_slider .top_voice_box .inner .title_area {
  width: 100%;
  position: relative;
  padding-right: 20rem;
}
@media (max-width: 559.9px) {
  .top_voice_slider .top_voice_box .inner .title_area {
    padding-right: 28%;
  }
}
.top_voice_slider .top_voice_box .inner .title_area .date {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6d5237;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_voice_slider .top_voice_box .inner .title_area .date {
    font-size: 13px;
  }
}
@media (max-width: 559.9px) {
  .top_voice_slider .top_voice_box .inner .title_area .date {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
.top_voice_slider .top_voice_box .inner .title_area .tit {
  font-size: 1.8rem;
  color: #6d5237;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_voice_slider .top_voice_box .inner .title_area .tit {
    font-size: 15px;
  }
}
@media (max-width: 559.9px) {
  .top_voice_slider .top_voice_box .inner .title_area .tit {
    font-size: 14px;
  }
}
.top_voice_slider .top_voice_box:hover .thumb img {
  transform: scale(1.05);
}
.top_voice_slider .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 0.15rem #555 solid;
  background-color: #555;
  opacity: 1;
}
@media (max-width: 559.9px) {
  .top_voice_slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}
.top_voice_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  border: 0.15rem #555 solid;
  top: 0;
  transform: scale(1.4);
}
@media (max-width: 559.9px) {
  .top_voice_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}
.top_voice_slider .about_box-prev,
.top_voice_slider .about_box-next {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background-color: transparent;
  width: 8rem;
  height: 8rem;
  color: #1b1b1b;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
.top_voice_slider .about_box-prev::after,
.top_voice_slider .about_box-next::after {
  display: none;
}
.top_voice_slider .about_box-next {
  right: -12rem;
}
@media (max-width: 559.9px) {
  .top_voice_slider .about_box-next {
    width: 5rem;
    height: 5rem;
    right: -4rem;
    font-size: 1.6rem;
  }
}
.top_voice_slider .about_box-prev {
  left: -12rem;
}
@media (max-width: 559.9px) {
  .top_voice_slider .about_box-prev {
    display: none;
  }
}

.top_gallery_section {
  width: 100%;
  overflow: hidden;
  padding: 8rem 0;
}
@media (max-width: 559.9px) {
  .top_gallery_section {
    padding: 4vh 0;
  }
}

.top_gallery_slider {
  overflow: hidden;
  width: 100%;
}
.top_gallery_slider .swiper-wrapper {
  display: inline-flex;
  white-space: nowrap;
  -webkit-animation: marquee 70s linear infinite;
          animation: marquee 70s linear infinite;
}
@media (max-width: 559.9px) {
  .top_gallery_slider .swiper-wrapper {
    -webkit-animation: marquee 40s linear infinite;
            animation: marquee 40s linear infinite;
  }
}
.top_gallery_slider .swiper-wrapper .swiper-slide {
  height: 24rem;
  width: auto;
  margin-right: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_gallery_slider .swiper-wrapper .swiper-slide {
    height: 160px;
    margin-right: 12px;
  }
}
@media (max-width: 559.9px) {
  .top_gallery_slider .swiper-wrapper .swiper-slide {
    height: 80px;
    margin-right: 8px;
  }
}
.top_gallery_slider .swiper-wrapper .swiper-slide .top_gallery_item {
  height: 24rem;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_gallery_slider .swiper-wrapper .swiper-slide .top_gallery_item {
    height: 160px;
  }
}
@media (max-width: 559.9px) {
  .top_gallery_slider .swiper-wrapper .swiper-slide .top_gallery_item {
    height: 80px;
    border-radius: 8px;
  }
}
.top_gallery_slider .swiper-wrapper .swiper-slide .top_gallery_item img {
  display: block;
  height: 24rem;
  width: auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_gallery_slider .swiper-wrapper .swiper-slide .top_gallery_item img {
    height: 160px;
  }
}
@media (max-width: 559.9px) {
  .top_gallery_slider .swiper-wrapper .swiper-slide .top_gallery_item img {
    height: 80px;
  }
}
.top_gallery_slider.top_gallery_slider-2 {
  margin-top: 1.2rem;
}
@media (max-width: 559.9px) {
  .top_gallery_slider.top_gallery_slider-2 {
    margin-top: 6px;
  }
}
.top_gallery_slider.top_gallery_slider-2 .swiper-wrapper {
  -webkit-animation: marquee 80s linear infinite;
          animation: marquee 80s linear infinite;
}
@media (max-width: 559.9px) {
  .top_gallery_slider.top_gallery_slider-2 .swiper-wrapper {
    -webkit-animation: marquee 36s linear infinite;
            animation: marquee 36s linear infinite;
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.top_gallery_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
  margin-top: 8rem;
}
@media (max-width: 559.9px) {
  .top_gallery_sns {
    margin-top: 4vh;
    gap: 24px;
  }
}
.top_gallery_sns a {
  color: #6d5237;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .top_gallery_sns a {
    font-size: 13px;
    gap: 8px;
  }
}
.top_gallery_sns a img {
  display: block;
  width: 3rem;
}
@media (max-width: 559.9px) {
  .top_gallery_sns a img {
    width: 20px;
  }
}

.top_faq_section {
  width: 100%;
  background-color: #faf8f4;
  padding: 16rem 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_faq_section {
    padding: 10vh 0;
  }
}
@media (max-width: 559.9px) {
  .top_faq_section {
    padding: 8vh 0;
  }
}

.top_faq_wrap {
  padding: 0 12rem;
  margin: 0 auto;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .top_faq_wrap {
    padding: 0 7rem;
  }
}
@media (max-width: 559.9px) {
  .top_faq_wrap {
    padding: 0 4rem;
  }
}
.top_faq_wrap .je-title {
  text-align: left;
}
.top_faq_wrap .faq_items {
  width: 96rem;
  margin-left: auto;
  margin-top: 4rem;
  max-width: 100%;
}
@media (max-width: 559.9px) {
  .top_faq_wrap .faq_items {
    width: 100%;
    margin-top: 40px;
  }
}
.top_faq_wrap .faq_items .faq_item {
  background-color: white;
  border: 0.1rem #6d5237 solid;
}
@media (max-width: 559.9px) {
  .top_faq_wrap .faq_items .faq_item {
    border-width: 1px;
  }
}
.top_faq_wrap .faq_items .faq_item:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 559.9px) {
  .top_faq_wrap .faq_items .faq_item:not(:last-child) {
    margin-bottom: 8px;
  }
}
.top_faq_wrap .btn-yellow {
  margin: 6.4rem auto 0;
}
@media (max-width: 559.9px) {
  .top_faq_wrap .btn-yellow {
    margin-top: 32px;
  }
}

.faq_items .question_box,
.faq_items .answer_box {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 560px) {
  .faq_items .question_box,
.faq_items .answer_box {
    padding: 2.4rem 8rem 2.4rem 5.6rem;
  }
}
@media (max-width: 559.9px) {
  .faq_items .question_box,
.faq_items .answer_box {
    padding: 12px 64px 12px 32px;
  }
}
.faq_items .question_box .head_icon,
.faq_items .answer_box .head_icon {
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .faq_items .question_box .head_icon,
.faq_items .answer_box .head_icon {
    left: 12px;
    top: 12px;
    font-size: 13px;
  }
}
.faq_items .question_box .inner,
.faq_items .answer_box .inner {
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .faq_items .question_box .inner,
.faq_items .answer_box .inner {
    font-size: 13px;
  }
}
.faq_items .question_box .trigger_icon,
.faq_items .answer_box .trigger_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 560px) {
  .faq_items .question_box .trigger_icon,
.faq_items .answer_box .trigger_icon {
    width: 1.9rem;
    height: 1.9rem;
    right: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .faq_items .question_box .trigger_icon,
.faq_items .answer_box .trigger_icon {
    width: 19px;
    height: 19px;
    right: 12px;
  }
}
.faq_items .question_box .trigger_icon::before, .faq_items .question_box .trigger_icon::after,
.faq_items .answer_box .trigger_icon::before,
.faq_items .answer_box .trigger_icon::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #6d5237;
}
.faq_items .question_box .trigger_icon::before,
.faq_items .answer_box .trigger_icon::before {
  width: 100%;
  height: 0.2rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 820.9px) {
  .faq_items .question_box .trigger_icon::before,
.faq_items .answer_box .trigger_icon::before {
    height: 2px;
  }
}
.faq_items .question_box .trigger_icon::after,
.faq_items .answer_box .trigger_icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 0.2rem;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 1;
}
@media (max-width: 820.9px) {
  .faq_items .question_box .trigger_icon::after,
.faq_items .answer_box .trigger_icon::after {
    width: 2px;
  }
}
.faq_items .question_box {
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .faq_items .question_box {
    font-size: 15px;
  }
}
.faq_items .question_box.opened .trigger_icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq_items .answer_box {
  background-color: #faf8f4;
  color: #EF7E52;
  border: none;
  display: none;
  padding: 2.4rem 2.4rem 2.4rem 5.6rem;
  font-size: 1.6rem;
}
@media (max-width: 559.9px) {
  .faq_items .answer_box {
    font-size: 13px;
    padding: 20px 16px 20px 32px;
  }
}
.faq_items .answer_box .head_icon {
  color: #EF7E52;
}
@media (max-width: 559.9px) {
  .faq_items .answer_box .head_icon {
    top: 20px;
  }
}

/**************
Under PageTitle
**************/
.page_title {
  width: 100%;
  background-color: #f5d051;
  position: relative;
  height: 34rem;
}
@media (max-width: 559.9px) {
  .page_title {
    height: 200px;
  }
}
.page_title .title_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  padding-top: 10rem;
}
@media (max-width: 559.9px) {
  .page_title .title_inner {
    padding-top: 80px;
  }
}
.page_title .title_inner .eng {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
}
@media (max-width: 559.9px) {
  .page_title .title_inner .eng {
    font-size: 22px;
  }
}
.page_title .title_inner .jp {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 559.9px) {
  .page_title .title_inner .jp {
    font-size: 15.6px;
  }
}

.page_section {
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 16rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_section {
    padding: 9rem 6vw;
  }
}
@media (max-width: 559.9px) {
  .page_section {
    padding: 8vh 5.6vw;
  }
}
.page_section__bgYellow {
  background-color: #faf8f4;
}

.page_section_w {
  width: 100%;
  overflow: hidden;
  padding: 10rem 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_section_w {
    padding: 6vw 6vw 8vh;
  }
}
@media (max-width: 559.9px) {
  .page_section_w {
    padding: 8vh 5.6vw;
  }
}

.breadcrumbs {
  background-color: #fff;
  padding: 12px 0;
  font-size: 1.2rem;
  box-sizing: border-box;
}
.breadcrumbs a {
  display: inline-block;
  font-weight: normal;
  color: #666;
}

.flex_content {
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 560px) {
  .flex_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_content.start {
    align-items: flex-start;
  }
  .flex_content.mt70 {
    margin-top: 70px;
  }
}
@media (min-width: 560px) {
  .flex_content_r {
    flex-direction: row-reverse;
  }
}
@media (max-width: 559.9px) {
  .flex_content > .item {
    width: 100%;
  }
  .flex_content > .item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 560px) {
  .flex_content .item_1 {
    width: 12%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_2 {
    width: 21%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_3 {
    width: 33%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_35 {
    width: 38%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_4 {
    width: 47.5%;
  }
}
.flex_content .item_4 .text_title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 559.9px) {
  .flex_content .item_4 .text_title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
}
@media (min-width: 560px) {
  .flex_content .item_45 {
    width: 56%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_5 {
    width: 62%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_6 {
    width: 73%;
  }
}
@media (min-width: 560px) {
  .flex_content .item_7 {
    width: 84%;
  }
}

@media (min-width: 1160px) {
  .leftColumn {
    width: 230px;
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .leftColumn {
    width: 22%;
  }
}

@media (min-width: 1160px) {
  .rightColumn {
    width: calc(100% - 340px);
  }
}
@media (min-width: 821px) and (max-width: 1159.9px) {
  .rightColumn {
    width: 72%;
  }
}
@media (max-width: 820.9px) {
  .rightColumn {
    margin-top: 40px;
  }
}

/**************
Salon
**************/
.salon_tab_navi {
  display: flex;
  width: 100%;
}
.salon_tab_navi > li {
  width: 50%;
  border: 0.1rem #b5a696 solid;
  border-radius: 1.6rem 1.6rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 12rem;
}
@media (max-width: 559.9px) {
  .salon_tab_navi > li {
    border: 1px #b5a696 solid;
    border-radius: 16px 16px 0 0;
    height: 64px;
  }
}
.salon_tab_navi > li.current {
  background-color: white;
  color: rgba(117, 103, 88, 0.6);
}
.salon_tab_navi > li:not(.salon_tab_navi > li.current) {
  background-color: #EF7E52;
  color: white;
  cursor: pointer;
}
.salon_tab_navi > li .eng {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 0.5rem;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .salon_tab_navi > li .eng {
    font-size: 10px;
    padding-top: 5px;
  }
}
.salon_tab_navi > li .jp {
  font-size: 1.7rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .salon_tab_navi > li .jp {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}

.salon_tab_target {
  padding: 8vh 0;
}
@media (max-width: 559.9px) {
  .salon_tab_target {
    padding: 32px 0;
  }
}
.salon_tab_target:not(.salon_tab_target.current) {
  display: none;
}
.salon_tab_target .je-title {
  margin-bottom: 5rem;
}
@media (max-width: 559.9px) {
  .salon_tab_target .je-title {
    margin-bottom: 28px;
  }
}

.salon_anchor_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 559.9px) {
  .salon_anchor_navi {
    margin-bottom: 28px;
  }
}
.salon_anchor_navi > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.salon_anchor_navi > li > a {
  color: #6d5237;
  padding: 0 1.2rem;
  position: relative;
  display: block;
  font-weight: 500;
}
@media (min-width: 560px) {
  .salon_anchor_navi > li > a {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .salon_anchor_navi > li > a {
    font-size: 12px;
    padding: 0 8px;
  }
}
.salon_anchor_navi > li > a::after {
  content: "";
  display: block;
  width: calc(100% - 5px);
  height: 0.2rem;
  background-color: #FC7628;
  max-width: 0;
  transition: all 0.3s ease;
}
.salon_anchor_navi > li > a:hover::after {
  max-width: calc(100% - 5px);
}
.salon_anchor_navi > li:not(:last-child)::after {
  content: "/";
  position: relative;
  top: -0.1rem;
}
@media (min-width: 560px) {
  .salon_anchor_navi > li:not(:last-child)::after {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .salon_anchor_navi > li:not(:last-child)::after {
    font-size: 12px;
    top: -1px;
  }
}

.salon_items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5.6rem 5.6rem;
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items {
    gap: 2rem 2rem;
    margin-top: 6rem;
    margin-bottom: 6.4rem;
  }
}
@media (max-width: 559.9px) {
  .salon_items {
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 821px) {
  .salon_items .salon_item {
    width: calc(50% - 2.8rem);
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items .salon_item {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 559.9px) {
  .salon_items .salon_item {
    width: 100%;
  }
}
.salon_items .salon_item .salon_item_trigger {
  cursor: pointer;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger {
    border-radius: 16px;
  }
}
.salon_items .salon_item .salon_item_trigger .thumb {
  width: 100%;
  aspect-ratio: 13/4;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items .salon_item .salon_item_trigger .thumb {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger .thumb {
    aspect-ratio: 3/1;
  }
}
.salon_items .salon_item .salon_item_trigger .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.salon_items .salon_item .salon_item_trigger .inner {
  background-color: #f5d051;
  height: 13rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 8rem 0 2.8rem;
  position: relative;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items .salon_item .salon_item_trigger .inner {
    height: 15rem;
    padding: 0 4.8rem 0 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger .inner {
    height: auto;
    padding: 15px 64px 16px 24px;
  }
}
.salon_items .salon_item .salon_item_trigger .inner .salon_name {
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}
@media (min-width: 560px) {
  .salon_items .salon_item .salon_item_trigger .inner .salon_name {
    font-size: 2.2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .salon_name {
    font-size: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .salon_name {
    font-size: 15px;
  }
}
.salon_items .salon_item .salon_item_trigger .inner .salon_address {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .salon_address {
    font-size: 1.2rem;
  }
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .salon_address {
    font-size: 12px;
  }
}
.salon_items .salon_item .salon_item_trigger .inner .salon_tel {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .salon_tel {
    font-size: 12px;
  }
}
.salon_items .salon_item .salon_item_trigger .inner .icon-plus {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  letter-spacing: 0;
  color: #555;
  border-radius: 50%;
  position: absolute;
  right: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 560px) {
  .salon_items .salon_item .salon_item_trigger .inner .icon-plus {
    font-size: 1.8rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .icon-plus {
    width: 3.2rem;
    height: 3.2rem;
    right: 1.6rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .salon_items .salon_item .salon_item_trigger .inner .icon-plus {
    width: 32px;
    height: 32px;
    right: 16px;
    font-size: 15px;
  }
}
.salon_items .salon_item .salon_item_trigger:hover .icon-plus {
  background-color: #555;
  color: white;
}

.salon_fixed_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #faf8f4;
  padding: 5vh 0;
  z-index: 21;
  display: none;
}
.salon_fixed_section .salon_fixed_section_content {
  width: 92%;
  margin: auto;
  background-color: white;
  border: 0.1rem #6d5237 solid;
  border-radius: 1.6rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content {
    border: 1px #6d5237 solid;
    border-radius: 16px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header {
  width: 100%;
  position: relative;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header {
    height: 72px;
    padding: 0 64px 0 16px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .salon_fixed_name {
  color: #6d5237;
  font-size: 3.2rem;
  font-weight: 700;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .salon_fixed_name {
    font-size: 18px;
  }
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .salon_fixed_name {
    font-size: 15px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .minus_button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6d5237;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .minus_button {
    width: 32px;
    height: 32px;
    right: 12px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .minus_button i {
  color: white;
  font-size: 2.4rem;
  display: block;
  letter-spacing: 0;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner_header .minus_button i {
    font-size: 14px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner {
  height: calc(90vh - 14rem);
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0 8vw 5vw;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner {
    height: calc(90vh - 90px);
    padding: 20px 5.6vw 5vw;
  }
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .je-title {
    margin-bottom: 20px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .je-title .eng {
  font-size: 2.4rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .je-title .eng {
    font-size: 20px;
    line-height: 1.4;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .je-title .jp {
  font-size: 1.6rem;
  font-weight: normal;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .je-title .jp {
    font-size: 14px;
    margin-top: 0;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_open_info {
  text-align: center;
  color: #6d5237;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_open_info {
    font-size: 12px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_fixed_tel {
  border: 0.8rem #f5d051 solid;
  border-radius: 1.6rem;
  background-color: white;
  padding: 0.8rem 4rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 2rem;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_fixed_tel {
    border: 5px #f5d051 solid;
    border-radius: 16px;
    font-size: 16px;
    padding: 8px 20px;
    margin: 32px auto 10px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_fixed_tel_under {
  color: #6d5237;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_fixed_tel_under {
    font-size: 14px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image {
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 0.1rem #6d5237 solid;
  margin: 5.6rem auto 0;
  aspect-ratio: 5/2;
  position: relative;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image {
    margin: 32px auto 0;
    border-radius: 16px;
    border: 1px #6d5237 solid;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text {
  color: #6d5237;
  text-align: center;
  margin-top: 2.4rem;
  font-size: 1.8rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text {
    margin-top: 20px;
    font-size: 13px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text + .je-title {
  margin-top: 10rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text + .je-title {
    margin-top: 50px;
  }
}
@media (min-width: 560px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text + .je-title .eng {
    font-size: 3.2rem;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text + .je-title .jp {
  color: #6d5237;
  margin-top: 0;
}
@media (min-width: 560px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_main_image_under_text + .je-title .jp {
    font-size: 2rem;
    font-weight: bold;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider {
  padding-bottom: 7.2rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider {
    padding-bottom: 48px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider .top_crew {
  border: 0.1rem #6d5237 solid;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider .top_crew {
    border: 1px #6d5237 solid;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider + .je-title {
  margin-top: 10rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider + .je-title {
    margin-top: 50px;
  }
}
@media (min-width: 560px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider + .je-title .eng {
    font-size: 3.2rem;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider + .je-title .jp {
  color: #6d5237;
  margin-top: 0;
}
@media (min-width: 560px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .top_crew_slider + .je-title .jp {
    font-size: 2rem;
    font-weight: bold;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_fixed_access {
  color: #6d5237;
  text-align: center;
  font-size: 1.8rem;
  margin: 5rem auto;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_fixed_access {
    font-size: 14px;
    margin: 50px auto;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_gmap {
  width: 100%;
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_gmap iframe {
  width: 100%;
  filter: grayscale(1);
}
@media (min-width: 821px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_gmap iframe {
    height: auto;
    aspect-ratio: 16/5;
  }
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .salon_gmap iframe {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl {
    margin-top: 30px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl dt {
  display: block;
  padding: 0.5rem 3.2rem;
  border: 0.1rem #6d5237 solid;
  border-radius: 4rem;
  background-color: white;
  color: #6d5237;
  font-size: 1.7rem;
  width: 30rem;
  margin: 0 auto 2rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl dt {
    padding: 4px 32px;
    border: 1px #6d5237 solid;
    border-radius: 40px;
    width: 300px;
    margin: 0 auto 20px;
    font-size: 14px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl dd {
  color: #6d5237;
  text-align: center;
  font-size: 1.7rem;
}
.salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl dd .bd {
  color: #FC7628;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_fixed_section_inner .access_contents dl dd {
    font-size: 14px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_footer {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-top: 1px #6d5237 solid;
  margin: 8rem auto 0;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_footer {
    padding: 40px 0;
    border-top: 1px #6d5237 solid;
    margin: 80px auto 0;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_footer .salon_foot_logo {
  display: block;
  width: 9.6rem;
  margin: 0 auto 2.4rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_footer .salon_foot_logo {
    width: 96px;
    margin: 0 auto 24px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_footer .salon_foot_catch {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_footer .salon_foot_catch {
    font-size: 16px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_footer .salon_footer_line_btn {
  width: 28rem;
  height: 5.6rem;
  border-radius: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background-color: white;
  color: #6d5237;
  border: 0.1rem #6d5237 solid;
  margin: 8rem auto 0;
  font-size: 1.4rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_footer .salon_footer_line_btn {
    bottom: 8px;
    left: 8px;
    transform: translateX(0);
    width: 200px;
    height: 48px;
    font-size: 12px;
    border-radius: 40px;
    gap: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    border-width: 1px;
  }
  .salon_fixed_section .salon_fixed_section_content .salon_footer .salon_footer_line_btn .icon-line {
    width: 24px;
  }
}
.salon_fixed_section .salon_fixed_section_content .salon_footer .salon_footer_line_btn .icon-line {
  display: block;
  width: 2.5rem;
}
@media (max-width: 559.9px) {
  .salon_fixed_section .salon_fixed_section_content .salon_footer .salon_footer_line_btn .icon-line {
    width: 24px;
  }
}

/**************
FAQ
**************/
.page_column_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5rem;
  width: 100%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_column_wrap {
    flex-direction: column;
  }
}
@media (max-width: 559.9px) {
  .page_column_wrap {
    margin-top: 50px;
    flex-direction: column;
  }
}
.page_column_wrap.mt0 {
  margin-top: 0;
}
@media (min-width: 821px) {
  .page_column_wrap .page_sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 9.6rem;
    width: 24%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_column_wrap .page_sidebar {
    margin-bottom: 6rem;
  }
}
@media (max-width: 559.9px) {
  .page_column_wrap .page_sidebar {
    margin-bottom: 40px;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_column_wrap .page_sidebar ul {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1.2rem 1.2rem;
  }
}
@media (max-width: 559.9px) {
  .page_column_wrap .page_sidebar ul {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 4px 4px;
  }
}
.page_column_wrap .page_sidebar ul li a {
  padding: 1.6rem 0;
  display: block;
  color: #559484;
  font-weight: 500;
  font-size: 1.8rem;
}
@media (max-width: 820.9px) {
  .page_column_wrap .page_sidebar ul li a {
    border: 1px #6d5237 solid;
    background-color: white;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_column_wrap .page_sidebar ul li a {
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .page_column_wrap .page_sidebar ul li a {
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
  }
}
@media (min-width: 821px) {
  .page_column_wrap .faq_content {
    width: 70%;
  }
}
@media (max-width: 820.9px) {
  .page_column_wrap .faq_content {
    width: 100%;
  }
}
.page_column_wrap .faq_content .faq_content_section {
  margin-bottom: 8rem;
}
@media (max-width: 559.9px) {
  .page_column_wrap .faq_content .faq_content_section {
    margin-bottom: 56px;
  }
}
.page_column_wrap .faq_content .faq_title {
  font-size: 2.2rem;
  color: #6d5237;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_column_wrap .faq_content .faq_title {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .page_column_wrap .faq_content .faq_title {
    font-size: 20px;
  }
}
@media (min-width: 821px) {
  .page_column_wrap .page_news_content {
    width: 70%;
  }
}
@media (max-width: 820.9px) {
  .page_column_wrap .page_news_content {
    width: 100%;
  }
}

/**************
RECRUIT
**************/
.recruit_top_tel {
  border: 0.4rem #f5d051 solid;
  border-radius: 1.6rem;
  background-color: white;
  padding: 1rem 8rem;
  font-size: 2.2rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 10px;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .recruit_top_tel {
    border-radius: 12px;
    padding: 4px 24px;
    font-size: 15px;
    border-width: 3px;
    text-align: center;
  }
}

.recruit_map {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 80px;
}

/**************
PARTNER
**************/
.message_title_under {
  margin-top: 5rem;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .message_title_under {
    margin-top: 30px;
    font-size: 14px;
  }
}

.partner_video {
  width: 96rem;
  margin: 4rem auto;
}
@media (max-width: 820.9px) {
  .partner_video {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .partner_video {
    margin: 40px auto 16px;
  }
}

.prologue_trigger {
  text-align: right;
  width: 96rem;
  margin: 3rem auto 10rem;
  color: #6d5237;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .prologue_trigger {
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .prologue_trigger {
    margin: 16px auto 0;
    font-size: 14px;
  }
}

.partner_text {
  width: 96rem;
  margin: 5rem auto;
  color: #6d5237;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 820.9px) {
  .partner_text {
    width: 100%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .partner_text {
    font-size: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .partner_text {
    font-size: 14px;
  }
}

.prologue {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #faf8f4;
  padding: 5rem 0;
  z-index: 21;
  display: none;
}
.prologue .minus_button {
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5d051;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
}
@media (max-width: 559.9px) {
  .prologue .minus_button {
    width: 40px;
    height: 40px;
    right: 16px;
    top: 16px;
  }
}
.prologue .minus_button i {
  color: white;
  font-size: 2.4rem;
  display: block;
  letter-spacing: 0;
}
@media (max-width: 559.9px) {
  .prologue .minus_button i {
    font-size: 16px;
  }
}
.prologue .prologue_inner {
  width: 92%;
  margin: auto;
}
.prologue .prologue_inner h3 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #6d5237;
  height: 12rem;
  font-size: 2.2rem;
}
@media (max-width: 559.9px) {
  .prologue .prologue_inner h3 {
    height: 96px;
  }
}
.prologue .prologue_content {
  height: calc(90vh - 12rem);
  background-color: white;
  border: 0.1rem #6d5237 solid;
  border-radius: 1.6rem;
  padding: 8rem;
  overflow-y: auto;
}
@media (max-width: 559.9px) {
  .prologue .prologue_content {
    height: calc(90vh - 96px);
    border: 1px #6d5237 solid;
    border-radius: 16px;
    padding: 80px 8vw;
  }
}
.prologue .prologue_content p {
  color: #6d5237;
  line-height: 2.2;
  font-size: 1.8rem;
}
@media (max-width: 559.9px) {
  .prologue .prologue_content p {
    font-size: 15px;
  }
}
.prologue .prologue_content p:not(:last-child) {
  margin-bottom: 40px;
}

/**************
COMPANY
**************/
@media (min-width: 560px) {
  .staff_list .staff_list_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.staff_list .staff_list_item:not(:last-child) {
  margin-bottom: 10rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media (min-width: 560px) {
  .staff_list .staff_list_item .thumb {
    width: 24%;
  }
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .thumb {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 32px;
  }
}
.staff_list .staff_list_item .thumb img {
  border-radius: 1.6rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .thumb img {
    border-radius: 12px;
  }
}
@media (min-width: 560px) {
  .staff_list .staff_list_item .staff_side {
    width: 68%;
  }
}
.staff_list .staff_list_item .staff_side .s_name {
  padding-bottom: 1.6rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_name {
    padding-bottom: 10px;
  }
}
.staff_list .staff_list_item .staff_side .s_name::after {
  content: "";
  display: block;
  width: 32rem;
  height: 0.2rem;
  background-color: #6d5237;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_name::after {
    width: 100%;
    height: 1px;
  }
}
.staff_list .staff_list_item .staff_side .s_name .name_text {
  color: #6d5237;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_name .name_text {
    font-size: 20px;
  }
}
.staff_list .staff_list_item .staff_side .s_name .kana_text {
  color: #6d5237;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_name .kana_text {
    font-size: 15px;
  }
}
.staff_list .staff_list_item .staff_side .s_name + p {
  color: #6d5237;
  font-size: 1.4rem;
  margin: 3rem 0 3.6rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_name + p {
    font-size: 14px;
    margin: 24px 0 24px;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns {
  display: flex;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns {
    flex-direction: column;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column {
  width: 55%;
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column:nth-child(2) {
  width: 45%;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column:nth-child(2) {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column {
    width: 100%;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column > p {
  color: #6d5237;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  font-feature-settings: "palt";
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column > p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column > p:not(:first-of-type) {
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column > p:not(:first-of-type) {
    margin-top: 16px;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .position_list > li {
  font-size: 1.4rem;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .position_list > li {
    font-size: 14px;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .position_list > li:not(:last-child) {
  margin-bottom: 1.4rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .position_list > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .list-disc-brown > li {
  padding-left: 1.2rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .list-disc-brown > li {
    font-size: 14px;
  }
}
.staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .list-disc-brown > li:not(:last-child) {
  margin-bottom: 1.4rem;
}
@media (max-width: 559.9px) {
  .staff_list .staff_list_item .staff_side .s_info_columns .s_info_column .list-disc-brown > li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.list-disc-brown > li {
  padding-left: 1.2rem;
  position: relative;
  font-size: 1.4rem;
  color: #6d5237;
}
.list-disc-brown > li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.9rem;
  background-color: #6d5237;
}

.overview_area {
  width: 100%;
  margin: 14rem auto;
}
@media (min-width: 821px) {
  .overview_area {
    width: 100rem;
  }
}

.overview {
  width: 100%;
}
.overview tbody tr th {
  font-weight: normal;
  color: #6d5237;
  text-align: left;
}
@media (min-width: 821px) {
  .overview tbody tr th {
    font-size: 1.6rem;
  }
}
@media (min-width: 560px) {
  .overview tbody tr th {
    border-bottom: 0.1rem #6d5237 solid;
    padding: 4rem 1rem;
    width: 25rem;
    line-height: 2;
  }
}
@media (max-width: 559.9px) {
  .overview tbody tr th {
    display: block;
    width: 100%;
    padding: 20px 0.3em 5px;
  }
}
.overview tbody tr td {
  border-bottom: 0.1rem #6d5237 solid;
  color: #6d5237;
}
@media (min-width: 821px) {
  .overview tbody tr td {
    font-size: 1.6rem;
  }
}
@media (min-width: 560px) {
  .overview tbody tr td {
    padding: 4rem 1rem;
    line-height: 3.6rem;
  }
}
@media (max-width: 559.9px) {
  .overview tbody tr td {
    display: block;
    width: 100%;
    padding: 5px 0.3em 20px;
    font-size: 14px;
  }
}
.overview tbody tr:first-child th {
  border-top: 1px #6d5237 solid;
}
@media (min-width: 560px) {
  .overview tbody tr:first-child td {
    border-top: 1px #6d5237 solid;
  }
}

.gmap_area {
  width: 100%;
  margin: 16rem auto 10rem;
}
@media (min-width: 821px) {
  .gmap_area {
    width: 120rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .gmap_area {
    margin: 12rem auto 4rem;
  }
}
@media (max-width: 559.9px) {
  .gmap_area {
    margin: 80px auto 40px;
  }
}
.gmap_area iframe {
  width: 100%;
  filter: grayscale(1);
  height: auto;
}
@media (min-width: 560px) {
  .gmap_area iframe {
    height: auto;
    aspect-ratio: 16/5;
  }
}
@media (max-width: 559.9px) {
  .gmap_area iframe {
    aspect-ratio: 1/1;
  }
}

/**************
CONTACT
**************/
.contact_wrap {
  margin: 0 auto;
}
@media (min-width: 821px) {
  .contact_wrap {
    width: 96rem;
  }
}
@media (max-width: 820.9px) {
  .contact_wrap {
    width: 100%;
  }
}
.contact_wrap p {
  font-size: 1.8rem;
}
@media (max-width: 559.9px) {
  .contact_wrap p {
    font-size: 14px;
  }
}
.contact_wrap p:not(:first-child) {
  margin-top: 2.4rem;
}
@media (max-width: 559.9px) {
  .contact_wrap p:not(:first-child) {
    margin-top: 20px;
  }
}

.contact_form {
  width: 100%;
  margin: 10rem auto;
}
@media (min-width: 821px) {
  .contact_form {
    width: 96rem;
  }
}
@media (max-width: 559.9px) {
  .contact_form {
    margin: 64px auto;
  }
}
.contact_form .form_dl {
  margin-bottom: 1.6rem;
}
@media (min-width: 560px) {
  .contact_form .form_dl {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (max-width: 559.9px) {
  .contact_form .form_dl {
    margin-bottom: 10px;
  }
}
.contact_form .form_dl > dt {
  width: 28rem;
  color: #6d5237;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 821px) {
  .contact_form .form_dl > dt {
    padding-top: 2.2rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .contact_form .form_dl > dt {
    font-size: 1.3rem;
    width: 20rem;
    padding-top: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .contact_form .form_dl > dt {
    width: 100%;
    margin-bottom: 3px;
    font-size: 13px;
  }
}
.contact_form .form_dl > dd {
  width: calc(100% - 28rem);
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .contact_form .form_dl > dd {
    width: calc(100% - 20rem);
  }
}
@media (max-width: 559.9px) {
  .contact_form .form_dl > dd {
    width: 100%;
  }
}

input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-input,
.c-select,
.c-textarea,
.wpcf7-select {
  background: #fff;
  border: 0.1rem solid #d0c4b7;
  transition: background-color 100ms, border-color 100ms;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.8rem;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .c-input,
.c-select,
.c-textarea,
.wpcf7-select {
    border: 1px solid #d0c4b7;
    border-radius: 8px;
  }
}

.c-select,
.wpcf7-select {
  padding: 0.2rem 1rem;
  height: 7rem;
  font-size: 1.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .c-select,
.wpcf7-select {
    height: 5.2rem;
    font-size: 1.4rem;
    padding: 0.2rem 0.7rem;
  }
}
@media (max-width: 559.9px) {
  .c-select,
.wpcf7-select {
    padding: 2px 10px;
    height: 40px;
    font-size: 14px;
  }
}

.c-input {
  padding: 0.2rem 1rem;
  height: 7rem;
  font-size: 1.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .c-input {
    height: 5.2rem;
    font-size: 1.4rem;
    padding: 0.2rem 0.7rem;
  }
}
@media (max-width: 559.9px) {
  .c-input {
    padding: 2px 10px;
    height: 40px;
    font-size: 14px;
  }
}

.c-radio {
  position: relative;
  top: -3px;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

.c-textarea {
  height: 20rem;
  width: 100%;
  padding: 0.8rem 1rem;
}
@media (max-width: 559.9px) {
  .c-textarea {
    height: 120px;
    width: 100%;
    padding: 8px 10px;
  }
}

.form-btn {
  margin-top: 5rem;
  text-align: center;
}

.c-submit,
.c-confirm,
.c-back {
  padding: 1.8rem 0;
  text-align: center;
  width: 280px;
  cursor: pointer;
}
@media (min-width: 1160px) {
  .c-submit,
.c-confirm,
.c-back {
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 1159.9px) {
  .c-submit,
.c-confirm,
.c-back {
    width: 48%;
    padding: 15px 0;
  }
}

.c-confirm,
.c-back {
  border: 2px #777 solid;
  color: #777;
  background-color: #fff;
}

.c-confirm:hover,
.c-back:hover {
  background-color: #eee;
}

.btn-confirm, #btn_confirm {
  display: block;
  border: 0.1rem #6d5237 solid;
  width: 30rem;
  padding: 2.4rem 0;
  text-align: center;
  margin: 0 auto;
  background-color: #f5d051;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease 0s;
  border-radius: 1rem;
}
@media (min-width: 560px) {
  .btn-confirm, #btn_confirm {
    font-size: 1.8rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .btn-confirm, #btn_confirm {
    height: 6.4rem;
    font-size: 1.6rem;
    padding: 0.2rem 0.7rem;
  }
}
@media (max-width: 559.9px) {
  .btn-confirm, #btn_confirm {
    border-radius: 8px;
    width: 280px;
    height: 48px;
    font-size: 15px;
    border-width: 1px;
  }
}
.btn-confirm:disabled, #btn_confirm:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-confirm.hoverOn, .hoverOn#btn_confirm {
  opacity: 1;
  cursor: pointer;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  border-radius: 50%;
  position: relative;
  top: -2px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  border-radius: 50%;
}

.c-radio,
.c-checkbox {
  margin-right: 5px;
  position: relative;
  top: -0.1em;
}

.alert-block {
  border: 0.2rem tomato solid;
  padding: 2.4rem;
  color: red;
  font-weight: bold;
}

.help-block {
  display: block;
  color: tomato;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 3px;
}
@media (max-width: 559.9px) {
  .help-block {
    font-size: 12px;
  }
}

.wpcf7-response-output {
  background-color: #fff0f0;
  text-align: center;
  color: red;
  padding: 24px !important;
  border-radius: 4px;
  border: none !important;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.3rem !important;
  font-weight: bold !important;
  margin-top: 3px !important;
}

.privacy_check {
  text-align: center;
  margin-top: 6rem;
}

.mwform-checkbox-field label {
  cursor: pointer;
}
.mwform-checkbox-field label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .mwform-checkbox-field label > span {
    gap: 10px;
  }
}
.mwform-checkbox-field label > span::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
  border: solid 0.1rem #b5b5b6;
  background-color: white;
}
@media (max-width: 559.9px) {
  .mwform-checkbox-field label > span::before {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border-width: 1px;
  }
}

.mwform-checkbox-field label > input:checked + span::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #000000;
  -webkit-mask-image: url(../images/icons/icon-check.svg);
  mask-image: url(../images/icons/icon-check.svg);
  -webkit-mask-size: 1.7rem 1.2rem;
  mask-size: 1.7rem 1.2rem;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 559.9px) {
  .mwform-checkbox-field label > input:checked + span::after {
    width: 24px;
    height: 24px;
    -webkit-mask-size: 17px 12px;
    mask-size: 17px 12px;
  }
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  margin-right: 5px;
}

.p-contact-list__pp {
  display: none;
}

.mwform-checkbox-field-text,
.p-contact-list__pp-remarks {
  color: #6d5237;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .mwform-checkbox-field-text,
.p-contact-list__pp-remarks {
    font-size: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .mwform-checkbox-field-text,
.p-contact-list__pp-remarks {
    font-size: 13px;
  }
}

.p-contact-list__pp-remarks {
  text-align: center;
  margin-top: 20px;
}

/**************
PRIVACY POLICY
**************/
.privacy_wrap {
  color: #6d5237;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .privacy_wrap {
    padding: 8rem;
    border: 0.1rem #6d5237 solid;
    background-color: #fff;
    border-radius: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .privacy_wrap {
    font-size: 14px;
  }
}
.privacy_wrap *:first-child {
  margin-top: 0;
}
.privacy_wrap ul {
  margin-top: 1rem;
}
@media (max-width: 559.9px) {
  .privacy_wrap ul {
    margin-top: 10px;
  }
}
.privacy_wrap ul li {
  margin-top: 0.6rem;
}
@media (max-width: 559.9px) {
  .privacy_wrap ul li {
    margin-top: 6px;
  }
}
.privacy_wrap p {
  margin-top: 2.4rem;
}
@media (max-width: 559.9px) {
  .privacy_wrap p {
    margin-top: 24px;
  }
}
.privacy_wrap h2 {
  font-size: 110%;
  margin-bottom: 0.8rem;
  margin-top: 2.4rem;
}
@media (max-width: 559.9px) {
  .privacy_wrap h2 {
    margin-top: 24px;
    margin-bottom: 8px;
  }
}
.privacy_wrap h3 {
  font-size: 105%;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .privacy_wrap h3 {
    margin-top: 24px;
  }
}
.privacy_wrap h4 {
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .privacy_wrap h4 {
    margin-top: 15px;
  }
}

.link_text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 2rem;
  color: #6d5237;
  padding: 1.6rem 2.4rem;
  border: 0.1rem #6d5237 solid;
  border-radius: 0.8rem;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .link_text {
    gap: 20px;
    padding: 16px 24px;
    border: 1px #6d5237 solid;
    border-radius: 8px;
    margin-top: 20px;
  }
}
.link_text svg {
  display: block;
  width: 3.2rem;
}
@media (max-width: 559.9px) {
  .link_text svg {
    width: 32px;
  }
}

/**************
NEWS
**************/
.page_news_section {
  width: 100%;
  background-color: #faf8f4;
  padding: 16rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_section {
    padding: 9rem 6vw;
  }
}
@media (max-width: 559.9px) {
  .page_news_section {
    padding: 8vh 5.6vw;
  }
}

.page_news_wrap {
  width: 96rem;
  margin: 12rem auto 0;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_wrap {
    width: 69rem;
    margin-top: 9rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_wrap {
    width: 100%;
  }
}

.page_news_items .page_news_item {
  display: flex;
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item {
    flex-direction: column;
  }
}
.page_news_items .page_news_item:not(:last-child) {
  margin-bottom: 8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_items .page_news_item:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item:not(:last-child) {
    margin-bottom: 24px;
    border-bottom: 1px #559484 solid;
    padding-bottom: 24px;
  }
}
.page_news_items .page_news_item .date_side {
  width: 20rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_items .page_news_item .date_side {
    width: 12rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item .date_side {
    width: 100%;
    margin-bottom: 16px;
  }
}
.page_news_items .page_news_item .date_side .news_year {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item .date_side .news_year {
    font-size: 11px;
  }
}
.page_news_items .page_news_item .date_side .news_date {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_items .page_news_item .date_side .news_date {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item .date_side .news_date {
    font-size: 16px;
  }
}
.page_news_items .page_news_item .info_side {
  flex: 1;
  position: relative;
}
@media (min-width: 560px) {
  .page_news_items .page_news_item .info_side {
    padding-left: 10rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_items .page_news_item .info_side {
    padding-left: 6rem;
  }
}
@media (min-width: 560px) {
  .page_news_items .page_news_item .info_side::before {
    content: "";
    display: block;
    width: 0.2rem;
    height: 100%;
    background-color: #6d5237;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.page_news_items .page_news_item .info_side .page_news_info_side_header {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_items .page_news_item .info_side .page_news_info_side_header {
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item .info_side .page_news_info_side_header {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.page_news_items .page_news_item .info_side .page_news_info_side_header .inner_name {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 0.5rem;
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item .info_side .page_news_info_side_header .inner_name {
    display: none;
  }
}
.page_news_items .page_news_item .info_side .page_news_title {
  font-size: 2.2rem;
  font-weight: bold;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page_news_items .page_news_item .info_side .page_news_title {
    font-size: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .page_news_items .page_news_item .info_side .page_news_title {
    font-size: 16px;
  }
}
.page_news_items .page_news_item .info_side .page_news_title a {
  color: #756758;
}
.page_news_items .page_news_item .info_side .page_news_title a:hover {
  text-decoration: underline;
}

.news_cats,
.single_cat_tag {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.3rem 0.3rem;
}
@media (max-width: 559.9px) {
  .news_cats,
.single_cat_tag {
    gap: 3px 3px;
  }
}
.news_cats span,
.news_cats .single_cat_tag_item,
.single_cat_tag span,
.single_cat_tag .single_cat_tag_item {
  background-color: #559484;
  padding: 0.5rem 2rem;
  color: white;
  font-size: 1.2rem;
  border-radius: 0.4rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .news_cats span,
.news_cats .single_cat_tag_item,
.single_cat_tag span,
.single_cat_tag .single_cat_tag_item {
    font-size: 1.1rem;
    padding: 0.3rem 1.2rem;
  }
}
@media (max-width: 559.9px) {
  .news_cats span,
.news_cats .single_cat_tag_item,
.single_cat_tag span,
.single_cat_tag .single_cat_tag_item {
    font-size: 12px;
    border-radius: 4px;
    padding: 2px 10px;
  }
}

.news_va_bottom {
  margin-top: 16rem;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 559.9px) {
  .news_va_bottom {
    margin-top: 50px;
  }
}

.link_with_arrow {
  display: flex;
  gap: 4rem;
  align-items: center;
  color: #756758;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .link_with_arrow {
    font-size: 14px;
  }
}
.link_with_arrow .ico_arrow_pc {
  display: block;
  width: 6rem;
}
@media (max-width: 559.9px) {
  .link_with_arrow .ico_arrow_pc {
    width: 32px;
  }
}

.single_title {
  font-size: 3rem;
  border-bottom: 0.3rem #f5d051 dashed;
  padding-bottom: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 559.9px) {
  .single_title {
    font-size: 20px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom-width: 1px;
  }
}

.post_data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6.4rem;
}
@media (max-width: 559.9px) {
  .post_data {
    margin-bottom: 32px;
  }
}

@media (min-width: 560px) {
  .single_content {
    min-height: 500px;
    line-height: 1.8;
  }
}
.single_content img {
  max-width: 100% !important;
  height: auto;
  margin-bottom: 4rem;
  border-radius: 1.2rem;
  border: 0.2rem #6d5237 solid;
  overflow: hidden;
}
.single_content .auto {
  margin: 1.6rem 0;
}
.single_content p {
  padding-bottom: 3.2rem;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.single_content p:empty {
  display: none;
}
.single_content h1 {
  font-size: 3.2rem;
  margin: 5rem 0 2.5rem;
}
@media (max-width: 559.9px) {
  .single_content h1 {
    font-size: 20px;
    margin: 40px 0 24px;
  }
}
.single_content h2 {
  font-size: 2.8rem;
  margin: 5rem 0 2.5rem;
  line-height: 1.4;
}
@media (max-width: 559.9px) {
  .single_content h2 {
    font-size: 19px;
    margin: 30px 0 12px;
  }
}
.single_content h3 {
  font-size: 2.4rem;
  margin: 4rem 0 2.5rem;
}
@media (max-width: 559.9px) {
  .single_content h3 {
    font-size: 18px;
    margin: 28px 0 24px;
    line-height: 1.6;
  }
}
.single_content h4 {
  font-size: 2.2rem;
  border-bottom: solid 0.2rem #6d5237;
  padding-bottom: 1rem;
  margin: 4rem 0 2.5rem;
}
@media (max-width: 559.9px) {
  .single_content h4 {
    font-size: 17px;
    padding: 10px;
  }
}
.single_content h5 {
  font-size: 2rem;
  position: relative;
  margin: 4rem 0 2.5rem;
}
@media (max-width: 559.9px) {
  .single_content h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.single_content h5::before {
  background: #6d5237;
  width: 0.8rem;
  height: 80%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
}
.single_content h6 {
  font-size: 1.8rem;
  margin: 4rem 0 2.5rem;
}
@media (max-width: 559.9px) {
  .single_content h6 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.single_content h6::before {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #07afbf;
  content: "";
  display: block;
}
.single_content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
.single_content table th,
.single_content table td {
  vertical-align: middle;
  padding: 15px 10px;
  border: 1px solid #ddd;
  margin: 0;
}
.single_content table th {
  text-align: center;
  background: #eee;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .single_content table.contact_table tr th {
    padding: 10px;
    border: none;
  }
}
@media (max-width: 559.9px) {
  .single_content table.contact_table tr th .hissu_cell {
    min-height: 24px;
  }
}
@media (max-width: 559.9px) {
  .single_content table.contact_table tr td {
    padding: 10px 0 20px;
    border: none;
  }
}
.single_content table.contact_table tr:last-child th {
  border: none;
}
.single_content blockquote {
  position: relative;
  box-sizing: border-box;
  padding: 45px 20px 45px 30px;
  margin: 0 0 30px;
  font-weight: 400;
  background-color: #fff;
  border: 1px #ddd solid;
}
@media (max-width: 559.9px) {
  .single_content blockquote {
    padding: 20px 5%;
  }
}
.single_content pre {
  padding: 20px;
  margin: 20px;
  background: #eee;
  border-radius: 5px;
  font-size: 1.5rem;
  white-space: pre-line;
}
.single_content code {
  word-wrap: break-word;
  font-size: 1.5rem;
}
.single_content .word-set {
  display: inline-table;
  position: relative;
  vertical-align: baseline;
  white-space: initial;
}
.single_content .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: inline-block;
}
.single_content .alignright {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
}
.single_content ul {
  margin-left: 10px;
  margin-bottom: 30px;
}
.single_content ul li {
  position: relative;
  padding-left: 12px;
}
.single_content ul li::before {
  width: 5px;
  height: 5px;
  border-radius: 4px;
  content: "";
  display: block;
  background-color: #1b1b1b;
  position: absolute;
  left: 0;
  top: 14px;
}
.single_content ol {
  list-style: inherit;
  margin-bottom: 30px;
}
.single_content ol li {
  list-style-type: decimal;
  list-style-position: outside;
}
.single_content a {
  text-decoration: underline;
  color: #FC7628;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.single_content a:hover, .single_content a:active {
  opacity: 0.7;
}
.single_content a.no-underline {
  text-decoration: none;
}
@media (max-width: 559.9px) {
  .single_content .link_buttons {
    margin-top: 32px;
  }
}
.single_content .link_buttons a {
  text-decoration: none;
}
@media (max-width: 559.9px) {
  .single_content .link_buttons a {
    height: auto;
    padding: 15px;
  }
}
.single_content .underline_text {
  background: linear-gradient(transparent 70%, yellow 70%);
}

.single_icatch {
  width: 100%;
}
.single_icatch img {
  display: block;
  width: 100%;
  margin-bottom: 8rem;
  border-radius: 1.6rem;
  height: auto;
}
@media (max-width: 559.9px) {
  .single_icatch img {
    margin-bottom: 40px;
    border-radius: 12px;
  }
}

.news_single_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 12rem;
}
@media (max-width: 559.9px) {
  .news_single_bottom {
    margin-top: 64px;
  }
}
.news_single_bottom .link_center {
  color: #756758;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .news_single_bottom .link_center {
    font-size: 13px;
  }
}
.news_single_bottom .arrow_column {
  width: 16rem;
}
@media (max-width: 559.9px) {
  .news_single_bottom .arrow_column {
    width: 80px;
  }
}
@media (max-width: 559.9px) {
  .news_single_bottom .arrow_column .link_with_arrow {
    font-size: 13px;
  }
}

/* ------------
PAGENATION
------------- */
.wp-pagenavi {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .wp-pagenavi {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  display: none;
}
@media (max-width: 559.9px) {
  .wp-pagenavi .last, .wp-pagenavi .first {
    display: none;
  }
}

.wp-pagenavi > span,
.wp-pagenavi > a {
  padding: 0 1.2rem !important;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  border: none !important;
  letter-spacing: 0;
  color: #6d5237;
}
@media (max-width: 559.9px) {
  .wp-pagenavi > span,
.wp-pagenavi > a {
    height: 32px;
    border-radius: 4px;
    padding: 0 8px;
  }
}
.wp-pagenavi > span:not(.wp-pagenavi > span.nextpostslink,
.wp-pagenavi > a.nextpostslink), .wp-pagenavi > span:not(.wp-pagenavi > span.previouspostslink,
.wp-pagenavi > a.previouspostslink),
.wp-pagenavi > a:not(.wp-pagenavi > span.nextpostslink,
.wp-pagenavi > a.nextpostslink),
.wp-pagenavi > a:not(.wp-pagenavi > span.previouspostslink,
.wp-pagenavi > a.previouspostslink) {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .wp-pagenavi > span:not(.wp-pagenavi > span.nextpostslink,
.wp-pagenavi > a.nextpostslink), .wp-pagenavi > span:not(.wp-pagenavi > span.previouspostslink,
.wp-pagenavi > a.previouspostslink),
.wp-pagenavi > a:not(.wp-pagenavi > span.nextpostslink,
.wp-pagenavi > a.nextpostslink),
.wp-pagenavi > a:not(.wp-pagenavi > span.previouspostslink,
.wp-pagenavi > a.previouspostslink) {
    font-size: 12px;
  }
}
.wp-pagenavi > span.nextpostslink, .wp-pagenavi > span.previouspostslink,
.wp-pagenavi > a.nextpostslink,
.wp-pagenavi > a.previouspostslink {
  font-size: 1.5rem;
  gap: 0.5rem;
}
@media (max-width: 559.9px) {
  .wp-pagenavi > span.nextpostslink, .wp-pagenavi > span.previouspostslink,
.wp-pagenavi > a.nextpostslink,
.wp-pagenavi > a.previouspostslink {
    font-size: 13px;
    gap: 3px;
  }
}
.wp-pagenavi > span.nextpostslink > span, .wp-pagenavi > span.previouspostslink > span,
.wp-pagenavi > a.nextpostslink > span,
.wp-pagenavi > a.previouspostslink > span {
  border: none;
  padding: 0;
}
@media (max-width: 559.9px) {
  .wp-pagenavi > span.nextpostslink > span, .wp-pagenavi > span.previouspostslink > span,
.wp-pagenavi > a.nextpostslink > span,
.wp-pagenavi > a.previouspostslink > span {
    display: none;
  }
}

.wp-pagenavi .page,
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  background: white;
}

.wp-pagenavi .current {
  background: #6d5237;
  color: #fff;
}

.searchHead {
  font-size: 1.2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 559.9px) {
  .searchHead {
    font-size: 12px;
    margin-bottom: 24px;
  }
}

/**************
Loading Animation
**************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #faf8f4;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  max-width: 40rem;
  padding: 0 20px;
}
@media (max-width: 559.9px) {
  .loading-content {
    max-width: 240px;
  }
}

.loading-logo {
  opacity: 1;
  -webkit-animation: none;
          animation: none;
}
.loading-logo .logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transform: scale(1);
  -webkit-animation: logoScale 0.6s ease 1.4s forwards;
          animation: logoScale 0.6s ease 1.4s forwards;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .loading-logo .logo-text {
    gap: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .loading-logo .logo-text {
    gap: 12px;
  }
}
.loading-logo .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-100px);
  -webkit-animation: dropIn 0.8s ease forwards;
          animation: dropIn 0.8s ease forwards;
}
.loading-logo .char img {
  width: auto;
  height: 4.8rem;
  display: block;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .loading-logo .char img {
    height: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .loading-logo .char img {
    height: 20px;
  }
}
.loading-logo .char[data-char=F] {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.loading-logo .char[data-char=O] {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loading-logo .char[data-char=R] {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loading-logo .char[data-char=space] {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.loading-logo .char[data-char=A] {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loading-logo .char[data-char=C] {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-50vh) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-50vh) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes logoScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes logoScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
body.loaded .loading {
  opacity: 0;
  visibility: hidden;
}
/*# sourceMappingURL=styles.css.map */