@charset "utf-8";

/*--------------------------------------
  # WEBfont
--------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Whisper&family=Marcellus&display=swap');

/*--------------------------------------
  # general
--------------------------------------*/

html {
  font-size: 62.5%;
  overflow-y: scroll !important;
  word-break: break-word;
  scroll-behavior: smooth;
}
body {
  margin: 0 !important;
  color: #000;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
  --linkColor: #603813;
  --titleColor: #3a2008;
  --accentColor: #8cc63f;
  --btnColor: #f4ea90;
}

@media (min-width: 950px) {
  html {
    scroll-padding-top: 110px;
  }
  body {
    font-size: 1.6rem;
  }
}

/*--------------------------------------
  # header
--------------------------------------*/
#header .site-title h1 {
  color: var(--linkColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2rem;
}
#header .site-title a {
  display: block;
  width: 108px;
  height: 0;
  padding-top: 42px;
  background: url(../img/site-title.png) no-repeat center;
  background-size: contain;
  overflow: hidden;
}
#header .global-nav-icon {
  position: fixed;
  top: 5px;
  right: 5px;
  background: var(--linkColor);
  border-radius: 50%;
  z-index: 999;
}
#header .global-nav-icon a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  transition: .2s;
}
#header .global-nav-icon a .i {
  display: block;
  width: 25px;
  margin: 3px 0;
  border-bottom: 2px solid;
  transition: .2s;
}
body.open #header .global-nav-icon a .i.t {
  animation: active-btn-bar01 0.75s forwards;
}
body.open #header .global-nav-icon a .i.b {
  animation: active-btn-bar03 0.75s forwards;
}
#header .global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s;
  z-index: 998;
}
body:not(.open) #header .global-nav {
  right: -100%;
}
#header .global-nav .global-nav-wrapper {
  min-height: 100%;
  background: rgba(255,255,255,0.95);
  background: var(--linkColor);
}
#header .global-nav .global-nav-inner {
  padding: 60px 20px;
  color: var(--titleColor);
}
#header .global-nav .nav-item {
  transition: 0.8s;
}
body.open #header .global-nav .nav-item:nth-child(1) {
  transition-delay: 0.05s;
}
body.open #header .global-nav .nav-item:nth-child(2) {
  transition-delay: 0.1s;
}
body.open #header .global-nav .nav-item:nth-child(3) {
  transition-delay: 0.15s;
}
body.open #header .global-nav .nav-item:nth-child(4) {
  transition-delay: 0.2s;
}
body.open #header .global-nav .nav-item:nth-child(5) {
  transition-delay: 0.25s;
}
body.open #header .global-nav .nav-item:nth-child(6) {
  transition-delay: 0.3s;
}
body.open #header .global-nav .nav-item:nth-child(7) {
  transition-delay: 0.35s;
}
body.open #header .global-nav .nav-item:nth-child(8) {
  transition-delay: 0.4s;
}
body.open #header .global-nav .nav-item:nth-child(9) {
  transition-delay: 0.45s;
}
body.open #header .global-nav .nav-item:nth-child(10) {
  transition-delay: 0.5s;
}
body:not(.open) #header .global-nav .nav-item {
  transform: translateX(100px);
  opacity: 0;
}
#header .global-nav .nav-item-name {
  position: relative;
  display: block;
  padding: 10px 40px 10px 20px;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  text-decoration: none;
}
#header .global-nav .child-nav {
  clear: both;
  padding: 0 0 10px 20px;
  overflow: hidden;
  transition: 0.2s;
}
#header .global-nav .child-nav a {
  position: relative;
  display: block;
  padding: 0.5em 0 0.5em 1em;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  text-decoration: none;
}
#header .global-nav .child-nav a:before {
  content: '';
  position: absolute;
  top: 1.4em;
  left: 0;
  width: 0.5em;
  height: 1px;
  background: var(--titleColor);
  opacity: 0.6;
}
#header .global-nav .inquiry-menu {
  clear: both;
  padding: 30px 0;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
#header .global-nav .inquiry-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
#header .global-nav .inquiry-menu ul a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 10px;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1.2;
}
#header .global-nav .inquiry-menu ul li:not(.tel) a:after {
  content: '';
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-left: auto;
  background: var(--btnColor) url(../img/icon/arrow_brown.svg) no-repeat center;
  background-size: 60% auto;
  border-radius: 50%;
  transition: 0.2s;
}
#header .global-nav .inquiry-menu ul i {
  margin: 0.1em 0.3em 0 0;
  font-size: 140%;
}
#header .global-nav .inquiry-menu ul .tel {
  line-height: 1.2;
}
#header .global-nav .inquiry-menu ul .tel a {
  padding-top: 0;
}
#header .global-nav .inquiry-menu ul .tel a:before {
  content: '';
  width: 35px;
  height: 35px;
  margin: 0 0.5em 0.5em 0;
  background: url(../img/icon/freedial_white.svg) no-repeat 0 0;
  background-size: contain;
}
#header .global-nav .inquiry-menu ul .tel a > span {
  font-size: min(11vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 1.5px;
}
#header .global-nav .inquiry-menu ul .tel .sub {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
#header .global-nav .mini-menu > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#header .global-nav .mini-menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-decoration: none;
}
#header .global-nav .mini-menu li.sns {
  width: 100%;
  padding-top: 10px;
}
.sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns-link li {
  margin: 0 0.4em;
  text-align: center;
}
.sns-link a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--linkColor);
  font-size: 2.0rem;
  text-decoration: none;
  background: #dfd7d0;
  border-radius: 50%;
}
@media (max-width: 949px) {
  #header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 65px 0 15px;
  }
  #header .site-title h1 {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }
  #header .header-nav {
    display: none;
  }
  #header .global-nav .nav-item {
    margin: 5px 0;
  }
  #header .global-nav .nav-item:not(.inquiry,.sub) {
    background: #fff;
    border-radius: 10px;
  }
  #header .global-nav .nav-item-name {
    cursor: pointer;
  }
  /* body.open #header .global-nav-icon {
		background: none;
  } */
  /* body.scroll #header .global-nav-icon a {
    opacity: .6;
  } */
  /* #header .global-nav .nav-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.2);
  } */
  #header .global-nav .nav-item.has-child .nav-item-name:before,
  #header .global-nav .nav-item.has-child .nav-item-name:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 2px;
    background: var(--accentColor);
    border-radius: 50vh;
    transform: translate(0, -50%);
    transition: 0.2s;
  }
  #header .global-nav .nav-item.has-child:not(.open) .nav-item-name:after {
    transform: translate(0, -50%) rotate(-90deg);
  }
  #header .global-nav .nav-item:not(.open) .child-nav {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
  }
  /* #header .global-nav .inquiry-menu ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  } */
}
@media (min-width: 950px) {
  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    line-height: 1.2;
    transition: 0.4s;
  }
  body:not(.scroll) #header {
  }
  #header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1480px; */
    height: 100px;
    /* margin: 0 auto; */
    padding: 0 min(6%, 80px);
  }
  #header .site-title {
    display: flex;
    align-items: center;
  }
  #header .site-title h1 {
    font-size: min(1.5vw, 1.5rem);
  }
  #header .site-title a {
    width: 165px;
    margin-bottom: 3px;
    padding-top: 64px;
    transition: 0.2s;
  }
  #header .site-title a:hover {
    opacity: 0.7;
  }
  #header .header-inner {
    flex: 1;
    margin: auto 0 0 20px;
  }
  #header .header-nav {
    padding-right: 90px;
  }
  #header .supplement-nav > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #header .supplement-nav > ul > li {
    margin-left: 1.5em;
  }
  #header .supplement-nav > ul > li > a {
    display: flex;
    align-items: center;
    color: var(--titleColor);
    font-size: 1.3rem;
    font-size: min(1vw, 1.3rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s opacity;
  }
  #header .supplement-nav a:hover {
    opacity: 0.6;
  }
  #header .supplement-nav > ul > li > a > i {
    margin-right: 3px;
    color: var(--accentColor);
  }
  #header .supplement-nav .sns-link a {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
    opacity: 0.8;
  }
  #header .supplement-nav .sns-link li:last-child {
    margin-right: 0;
  }
  #header .basic-nav > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #header .basic-nav .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: min(3%, 35px);
    transition: 0.4s;
  }
  #header .basic-nav:hover .nav-item:not(:hover) {
    opacity: 0.4;
  }
  #header .basic-nav .nav-item-name {
    position: relative;
    display: block;
    padding: 20px 0;
    color: var(--titleColor);
    font-size: min(1.1vw, 1.5rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.18em;
  }
  #header .basic-nav .nav-item.has-child .nav-item-name {
    padding-right: 1em;
  }
  #header .basic-nav .nav-item.has-child .nav-item-name:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--accentColor);
    border-right: 2px solid var(--accentColor);
    transform: translate(0, -50%) rotate(135deg);
  }
  #header .basic-nav .nav-item.has-child:hover .nav-item-name:before {
    animation: DownbuttonMove 0.3s ease-in-out forwards;
  }
  /* #header .basic-nav .child-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    background: #f8f5f3;
    color: var(--titleColor);
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.2s;
  } */
  #header .basic-nav .child-nav {
    position: absolute;
    top: 100%;
    right: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 280px max-content;
    background: #f8f5f3;
    color: var(--titleColor);
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s;
  }
  #header .basic-nav .child-nav:before {
    content: '';
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #header .basic-nav .nav-item.nav-guide .child-nav:before {
    background-image: url(../img/bg/guide.jpg);
  }
  #header .basic-nav .nav-item.nav-service .child-nav:before {
    background-image: url(../img/bg/service.jpg);
  }
  #header .basic-nav .nav-item.nav-location .child-nav:before {
    background-image: url(../img/bg/location.jpg);
  }
  #header .basic-nav .nav-item.nav-company .child-nav:before {
    background-image: url(../img/bg/company.jpg);
  }
  #header .basic-nav .nav-item:not(:hover) .child-nav {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
  }
  #header .basic-nav .child-nav-name {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin: -0.2em 0.5em -0.5em 0;
    font-size: min(7vw, 10.0rem);
    font-family: "Marcellus", serif;
    letter-spacing: -2px;
    white-space: nowrap;
    opacity: 0.1;
    clip-path: inset(0);
    transition: clip-path 2s ease 0.2s;
  }
  #header .basic-nav .nav-item:not(:hover) .child-nav-name {
    clip-path: inset(0 100% 0 0);
  }
  #header .basic-nav .child-nav > ul {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    min-width: 0;
    position: relative;
    padding: 0 60px 60px;
  }
  #header .basic-nav .child-nav > ul > li {
    border-bottom: 1px dotted;
  }
  #header .basic-nav .child-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 1em 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.8;
    white-space: nowrap;
  }
  #header .basic-nav .child-nav a > span {
    transition: 0.2s;
  }
  #header .basic-nav .child-nav a:hover > span {
    transform: translateX(20px);
  }
  #header .basic-nav .child-nav > ul > li > a:after {
    content: '';
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--linkColor) url(../img/icon/arrow_white.svg) no-repeat center;
    background-size: 65% auto;
    border-radius: 50%;
    transition: 0.3s;
  }
  #header .basic-nav .child-nav > ul > li > a:hover:after {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  #header .global-nav-icon {
    top: 15px;
    right: min(6%, 80px);
  }
  #header .global-nav-icon a {
    width: 70px;
    height: 70px;
    transition: 0.3s;
  }
  #header .global-nav-icon a:hover {
    transform: scale(1.2);
  }
  body:not(.open) .global-nav-icon a:hover .i.t {
    animation: scaleX-InOut 0.8s ease 0s both;
  }
  body:not(.open) .global-nav-icon a:hover .i.b {
    animation: scaleX-InOut 0.8s ease 0.4s both;
  }
  #header .global-nav {
    max-width: 600px;
  }
  #header .global-nav .global-nav-inner {
    padding: 80px;
    color: #fff;
  }
  #header .global-nav .nav-item:not(.inquiry, .sub) {
    padding: 1em 0;
    border-top: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
  }
  #header .global-nav .nav-item:first-child {
    padding-top: 0;
    border-top: none;
  }
  #header .global-nav .nav-item-name {
    position: relative;
    padding: 0.5em 0 0.5em 20px;
    font-size: 2.0rem;
    transition: 0.2s;
    transform: translateX(-20px);
  }
  #header .global-nav .nav-item-name:before {
    content: '';
    position: absolute;
    top: 1.1em;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(0, -50%) rotate(45deg);
  }
  #header .global-nav a.nav-item-name:hover {
    transform: translateX(0);
  }
  /* #header .global-nav .nav-item:not(.has-child) .nav-item-name:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translate(0, -50%) rotate(45deg);
  } */
  #header .global-nav .child-nav {
    padding: 0 0 0.5em 1em;
  }
  #header .global-nav .child-nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #header .global-nav .child-nav li {
    min-width: 50%;
  }
  #header .global-nav .child-nav a {
    padding: 0.5em 0 0.5em 1em;
    font-size: 1.6rem;
    transition: 0.2s;
  }
  #header .global-nav .child-nav .child-nav a {
    font-size: 1.5rem;
  }
  #header .global-nav .child-nav a:hover {
    transform: translateX(10px);
    opacity: 0.8;
  }
  #header .global-nav .child-nav a:before {
    top: 1.1em;
    background: #fff;
  }
  #header .global-nav .nav-item.inquiry {
    margin: 30px -60px;
  }
  #header .global-nav .inquiry-menu {
    padding: 0;
    /* border-top: 1px solid; */
  }
  #header .global-nav .inquiry-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  #header .global-nav .inquiry-menu ul li {
    width: calc(50% - 10px);
    border: none;
  }
  #header .global-nav .inquiry-menu ul a {
    justify-content: center;
    height: 100%;
    padding: 20px;
    font-size: 2.0rem;
    font-weight: 700;
    transition: 0.2s;
  }
  #header .global-nav .inquiry-menu ul li:not(.tel) a {
    color: var(--titleColor);
    background: #fff;
    border-radius: 10px;
  }
  #header .global-nav .inquiry-menu ul li:not(.tel) a:hover {
  }
  #header .global-nav .inquiry-menu ul li:not(.tel) a:hover:after {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  #header .global-nav .inquiry-menu ul .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #header .global-nav .inquiry-menu ul .tel a {
    padding: 15px 20px 20px;
  }
  #header .global-nav .inquiry-menu ul .tel a:before {
    width: 40px;
    height: 40px;
  }
  #header .global-nav .inquiry-menu ul .tel a > span {
    font-size: min(3.6vw, 5.0rem);
  }
  #header .global-nav .inquiry-menu ul .tel .sub {
    font-size: 1.4rem;
  }
  #header .global-nav .nav-item.sub {
    margin: 40px -50px 0;
  }
  #header .global-nav .mini-menu > ul {
    justify-content: center;
    gap: 20px 30px;
  }
  #header .global-nav .mini-menu > ul > li > a {
    gap: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: 0.2s;
  }
  #header .global-nav .mini-menu > ul > li > a:hover {
    opacity: 0.6;
  }
  #header .global-nav .mini-menu .sns-link {
    justify-content: center;
  }
  .sns-link a {
    transition: 0.3s;
  }
  .sns-link a:hover {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes DownbuttonMove {
  0% {transform: translate(0, -50%) rotate(135deg);}
  50% {transform: translate(0, 100%) rotate(135deg);opacity: 0;}
  51% {transform: translate(0, -100%) rotate(135deg);opacity: 0;}
  100% {transform: translate(0, -50%) rotate(135deg);opacity: 1;}
}
@keyframes UnderLineMove {
  0% {background-position: right bottom;background-size: 100% 1px;}
  50% {background-position: right bottom;background-size: 0% 1px;}
  51% {background-position: left bottom;background-size: 0% 1px;}
  100% {background-position: left bottom;background-size: 100% 1px;}
}
@keyframes active-btn-bar01 {
  0%   {transform: translateY(0) rotate(0)}
  50%  {transform: translateY(4px) rotate(0)}
  100% {transform: translateY(4px) rotate(22deg)}
}
@keyframes active-btn-bar03 {
  0%   {transform: translateY(0) rotate(0)}
  50%  {transform: translateY(-4px) rotate(0)}
  100% {transform: translateY(-4px) rotate(-22deg)}
}
@-webkit-keyframes scaleX-InOut {
  0% {
      -webkit-transform: scale3d(1,1,1);
      transform: scale3d(1,1,1);
      -webkit-transform-origin: 100% 0;
      transform-origin: 100% 0
  }
  50% {
      -webkit-transform: scale3d(0,1,1);
      transform: scale3d(0,1,1);
      -webkit-transform-origin: 100% 0;
      transform-origin: 100% 0
  }
  50.00001% {
      -webkit-transform: scale3d(0,1,1);
      transform: scale3d(0,1,1);
      -webkit-transform-origin: 0 0;
      transform-origin: 0 0
  }
  100% {
      -webkit-transform: scale3d(1,1,1);
      transform: scale3d(1,1,1);
      -webkit-transform-origin: 0 0;
      transform-origin: 0 0
  }
}
@keyframes ButtonArrowMove {
  0% {box-shadow: 0 0 0 0 rgb(96 56 19 / 50%);}
  100% {box-shadow: 0 0 0 1.2em rgb(96 56 19 / 0%);}
}

/*--------------------------------------
  # Contents
--------------------------------------*/

#contents {}

#main {}

/*--------------------------------------
  # Footer
--------------------------------------*/
#footer .footer-contact .footer-contact-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  background: url(../img/footer_img.png) no-repeat center 0;
  background-size: 100% auto;
}
#footer .footer-contact .footer-contact-img p {
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
  color: var(--titleColor);
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
#footer .footer-contact .footer-contact-img p > span {
  padding: 0.25em 0 0.5em;
  background: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: 0.8s;
}
#footer .footer-contact .footer-contact-img p > span:nth-child(1) {
  transition-delay: 0.2s;
}
#footer .footer-contact .footer-contact-img p > span:nth-child(2) {
  transition-delay: 0.4s;
}
#footer .footer-contact .footer-contact-img p > span:nth-child(3) {
  transition-delay: 0.6s;
}
#footer .footer-contact .footer-contact-img p > span:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
#footer .footer-contact .contact-wrapper {
  position: relative;
}
#footer .footer-contact .contact-wrapper .contact-title {
  position: absolute;
  top: -0.4em;
  left: 0;
  color: var(--titleColor);
  font-size: 9.0rem;
  font-family: "Marcellus", serif;
  line-height: 1.2;
  letter-spacing: -2px;
  opacity: 0.1;
  clip-path: inset(0);
  transition: all 2s ease 0.2s;
}
#footer .footer-contact .contact-wrapper .contact-title:not(.scrollin) {
  clip-path: inset(0 100% 0 0);
}
#footer .footer-contact .contact-wrapper ul {
  clear: both;
  padding: 40px 40px 20px;
  color: var(--titleColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
#footer .footer-contact .contact-wrapper ul li {
  transition: 0.8s;
}
#footer .footer-contact .contact-wrapper ul li:nth-child(1) {
  transition-delay: 0.2s;
}
#footer .footer-contact .contact-wrapper ul li:nth-child(2) {
  transition-delay: 0.4s;
}
#footer .footer-contact .contact-wrapper ul li:nth-child(3) {
  transition-delay: 0.6s;
}
#footer .footer-contact .contact-wrapper ul li:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
#footer .footer-contact .contact-wrapper ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1.2;
}
#footer .footer-contact .contact-wrapper ul li:not(.tel) a:after {
  content: '';
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  margin-left: auto;
  background: var(--btnColor) url(../img/icon/arrow_brown.svg) no-repeat center;
  background-size: 45% auto;
  border-radius: 50%;
  transition: 0.2s;
}
#footer .footer-contact .contact-wrapper ul li a i {
  margin: 0.1em 0.5em 0 0;
  font-size: 160%;
}
#footer .footer-contact .contact-wrapper ul .tel {
  font-weight: 700;
  line-height: 1.2;
}
#footer .footer-contact .contact-wrapper ul .tel a {
  align-items: flex-start;
  padding-top: 0;
}
#footer .footer-contact .contact-wrapper ul .tel a:before {
  content: '';
  width: 35px;
  height: 35px;
  margin: 0.5em 0.5em 0 0;
  background: url(../img/icon/freedial.svg) no-repeat 0 0;
  background-size: contain;
}
#footer .footer-contact .contact-wrapper ul .tel a > span {
  font-size: min(11vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 1.5px;
}
#footer .footer-contact .contact-wrapper ul .tel .sub {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}
#footer .footer-inner {
  padding: 45px 0 60px;
}
#footer .information {
  margin-bottom: 30px;
  padding: 0 25px;
  text-align: center;
}
#footer .information .site-title {
  margin-bottom: 0.5em;
  font-weight: 700;
}
#footer .information .site-title a {
  display: block;
  width: min(40%, 133px);
  height: 0;
  margin: 0 auto 1em;
  padding-top: min(16%, 52px);
  background: url(../img/site-title.png) no-repeat center;
  background-size: contain;
  overflow: hidden;
  transition: 0.2s;
}
#footer .information address {
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.6;
}
#footer .information address p {
  margin-bottom: 0;
}
#footer .footer-sns {
  margin: 0 0 30px;
  padding: 0 25px;
}
#footer .copylight {
  padding: 0.25em 25px 0.5em;
  background: var(--titleColor);
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
#footer .copylight p {
  margin-bottom: 0;
}
#footer .copylight small {
  font-size: 1.0rem;
  font-weight: 300;
  opacity: 0.5;
}
@media (max-width: 949px) {
  #footer .footer-contact {
    background: #f8f5f3;
  }
  #footer .footer-contact .contact-wrapper ul li:not(:last-child) {
    border-bottom: 1px solid rgba(58,32,8,0.2);
  }
  #footer .footer-sitemap,
  #footer .sub-nav {
    display: none;
  }
}
@media (min-width: 950px) {
  #footer .footer-contact {
    position: relative;
  }
  #footer .footer-contact:before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f5f3;
  }
  #footer .footer-contact .footer-contact-img {
    padding-top: 48%;
    background-image: url(../img/footer_img_l.png);
  }
  #footer .footer-contact .footer-contact-img p {
    flex-direction: column;
    align-items: flex-start;
    top: 6%;
    right: auto;
    left: 20%;
    gap: 4px;
    font-size: min(2vw, 2.6rem);
    letter-spacing: 2px;
  }
  #footer .footer-contact .contact-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  #footer .footer-contact .contact-wrapper .contact-title {
    top: -0.25em;
    font-size: 12.0rem;
  }
  #footer .footer-contact .contact-wrapper ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 55px 0 35px;
    border-bottom: 1px solid rgba(58,32,8,0.2);
  }
  #footer .footer-contact .contact-wrapper ul li a {
    font-size: 2.2rem;
  }
  #footer .footer-contact .contact-wrapper ul li:not(.tel) a > span {
    padding: 0.5em 0;
    background: linear-gradient(var(--titleColor), var(--titleColor)) 0 100% / 100% 1px no-repeat;
  }
  #footer .footer-contact .contact-wrapper ul li:not(.tel) a:hover > span {
    animation: UnderLineMove 0.8s ease-in-out forwards;
  }
  #footer .footer-contact .contact-wrapper ul li:not(.tel) a:after {
    width: 80px;
    height: 80px;
    margin-left: 1em;
  }
  #footer .footer-contact .contact-wrapper ul li:not(.tel) a:hover:after {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  #footer .footer-contact .contact-wrapper ul li a i {
    margin: 0.1em 0.25em 0 0;
  }
  #footer .footer-contact .contact-wrapper ul .tel a {
    align-items: flex-start;
    padding-top: 0;
  }
  #footer .footer-contact .contact-wrapper ul .tel a:before {
    width: 38px;
    height: 38px;
  }
  #footer .footer-contact .contact-wrapper ul .tel a > span {
    font-size: min(3vw, 4.2rem);
  }
  #footer .footer-contact .contact-wrapper ul .tel .sub {
    font-size: 1.2rem;
  }
  #footer .footer-wrapper {
    padding: 50px 0 40px;
    background: #f8f5f3;
  }
  #footer .footer-sitemap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  #footer .footer-sitemap ul .nav-item {
    margin: 0 0 8px;
    overflow: hidden;
  }
  #footer .footer-sitemap ul .nav-item-name {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    transform: translateX(-15px);
  }
  #footer .footer-sitemap ul .nav-item-name:before {
    content: '';
    position: absolute;
    top: 0.9em;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--accentColor);
    border-right: 2px solid var(--accentColor);
    transform: translate(0, -50%) rotate(45deg);
  }
  #footer .footer-sitemap ul a.nav-item-name:hover {
    transform: translateX(0);
  }
  #footer .footer-sitemap ul .nav-item .child-nav {
    padding-left: 0.5em;
    padding-right: 20px;
  }
  #footer .footer-sitemap ul .nav-item .child-nav a {
    position: relative;
    display: inline-block;
    padding: 0 0 0 0.8em;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
  }
  #footer .footer-sitemap ul .nav-item .child-nav a:before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 0.5em;
    height: 1px;
    background: #000;
    opacity: 0.6;
  }
  #footer .footer-sitemap ul li a:hover {
    transform: translateX(10px);
  }
  #footer .footer-inner {
    padding: 25px 0 0;
    background: #fff;
  }
  #footer .information-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 min(6%, 80px) 25px;
  }
  #footer .information {
    display: flex;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  #footer .information .site-title {
    margin: 0 1.5em 0 0;
  }
  #footer .information .site-title a {
    width: 171px;
    margin: 0;
    padding-top: 66px;
    transition: 0.2s;
  }
  #footer .information .site-title a:hover {
    opacity: 0.7;
  }
  #footer .footer-sns {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  #footer .footer-sns p {
    margin: 0 1em 0 0;
    color: var(--titleColor);
    font-size: 1.4rem;
    font-weight: 500;
  }
  #footer .copylight {
    padding: 0.5em 0 0.75em;
    text-align: left;
  }
  #footer .copylight .copylight-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  #footer .copylight .sub-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 1.2;
  }
  #footer .copylight .sub-nav a {
    padding: 0 1.5em;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.2s;
  }
  #footer .copylight .sub-nav li:not(:first-child) a {
    border-left: 1px solid;
  }
  #footer .copylight .sub-nav a:hover {
    opacity: 0.6;
  }
}

/*--------------------------------------
  # fixed-nav
--------------------------------------*/
#fixed-nav {
  position: fixed;
  z-index: 990;
  transition: 0.2s;
}
#fixed-nav ul {
  display: flex;
}
#fixed-nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: var(--btnColor);
  color: var(--titleColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 5px;
  line-height: 1.2;
}
#fixed-nav ul li.tel .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#fixed-nav ul li.tel i {
  margin: 0 0 0.1em;
  font-size: 140%;
}
/* #fixed-nav li#pagetop {
  position: fixed;
  bottom: 70px;
  right: 0;
  width: 40px;
  height: 40px;
}
#fixed-nav li#pagetop a {
  background: rgb(223,215,208,0.95);
  border-radius: 5px 0 0 5px;
}
body:not(.scroll) #fixed-nav li#pagetop {
  opacity: 0;
  transform: translateX(100%);
} */
@media (max-width: 949px) {
  #fixed-nav {
    right: 0;
    bottom: 0;
    width: 100%;
  }
  body:not(.scroll) #fixed-nav {
    transform: translateY(100%);
  }
  #fixed-nav ul {
    gap: 5px;
    height: 60px;
    padding: 5px;
    background: #fff;
  }
  #fixed-nav ul li {
    position: relative;
    flex: 1;
  }
  #fixed-nav ul i {
    margin: 0.1em 0.3em 0 0;
    font-size: 160%;
  }
  #fixed-nav ul li.tel {
    flex: none;
    width: 50px;
  }
  #fixed-nav ul li.tel a {
    background: var(--linkColor);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
  }
  #fixed-nav ul li.tel .text {
    display: none;
  }
  /* #pagetop a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--titleColor);
    text-decoration: none;
  }
  #pagetop i {
    margin: 0;
    font-size: 2.2rem;
  } */
}
@media (min-width: 950px) {
  #fixed-nav {
    position: fixed;
    top: 50%;
    left: calc(100% - 60px);
    transform: translateY(-50%);
    transition: 0.2s;
    z-index: 990;
  }
  body:not(.scroll) #fixed-nav {
    left: 100%;
    opacity: 0;
  }
  #fixed-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  #fixed-nav ul li {
    transition: all 0.3s ease 0s;
  }
  #fixed-nav ul li a {
    font-size: 1.6rem;
    border-radius: 10px 0 0 10px;
  }
  #fixed-nav ul li:not(.tel) a {
    flex-direction: column;
    width: 70px;
    padding: 20px 10px 15px 0;
  }
  #fixed-nav ul li:not(.tel) a > span {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  #fixed-nav ul li:not(.tel) a i {
    margin: 0 0 0.5em;
    font-size: 130%;
  }
	#fixed-nav li:not(.tel):hover {
		transform: translateX(-10px);
    filter: brightness(1.1);
	}
	/* #fixed-nav li:not(.tel) a:hover {
    animation: ButtonArrowMove 1s;
	} */
  #fixed-nav li.tel {
    order: 3;
    overflow: hidden;
  }
	#fixed-nav li.tel:hover {
		transform: translateX(calc(-100% + 60px));
	}
	#fixed-nav li.tel a {
		padding: 10px 0;
    background: var(--linkColor);
    color: #fff;
    font-size: 2.2rem;
	}
	#fixed-nav li.tel a .icon {
		width: 60px;
		font-size: 1.2rem;
	}
	#fixed-nav li.tel a .text {
		flex: 1;
		padding-right: 20px;
		white-space: nowrap;
    line-height: 1.2;
	}
  /* #fixed-nav li#pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #333;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
  }
  #fixed-nav li#pagetop {
    position: fixed;
    bottom: 70px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgb(223,215,208,0.95);
    border-radius: 5px 0 0 5px;
    transition: 0.2s;
  }
  body:not(.scroll) #pagetop {
    opacity: 0;
  }
  #fixed-nav li#pagetop a:hover {
    opacity: 0.6;
    transform: scale(1.1);
  } */
}

/*--------------------------------------
  # Common
--------------------------------------*/

/* basic
--------------------*/

@media (max-width: 949px) {
  .hide-m {
    display: none !important;
  }
}

@media (min-width: 950px) {
  .hide-d {
    display: none !important;
  }
}

@media (max-width: 949px) {

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* Font size */
.mini {
  font-size: 80%;
}
.small {
  font-size: 87.5%;
}
.big {
  font-size: 118%;
}
.large {
  font-size: 138%;
}

/* Color */
.fc-red {
  color: #F00;
}

/* Space */
.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px;
}

/* link */
a {
  color: inherit;
  text-decoration: underline;
}
a.link-icon {
  position: relative;
  display: inline-block;
  padding-left: 0.75em;
  transition: 0.2s;
}
a.link-icon:before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--accentColor);
}
a.link-pdf:not(:has(img)) {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
  transition: 0.2s;
}
a.link-pdf:not(:has(img)):before {
  content: '\f1c1';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accentColor);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
a.hover {
  display: inline-block;
  line-height: 0;
}
a.hover > img {
  transition: 0.2s;
}
@media (min-width: 950px) {
  a[href^="tel:"],
  a:hover {
    text-decoration: none;
  }
  a.hover:hover > img {
    transform: scale(0.95);
    filter: brightness(1.1);
  }
}

/* text */
p {
  margin-bottom: 1.6em;
}

p.aligncenter {
  text-align: center;
}

p.alignleft {
  text-align: left;
}

p.alignright {
  text-align: right;
}

/* align */
img.aligncenter,
img.alignleft,
img.alignright,
div.aligncenter,
div.alignleft,
div.alignright {
  display: block;
  margin: 0 auto 1.5em;
  text-align: center;
}

div.aligncenter img,
div.alignleft img,
div.alignright img {
  display: block;
  margin-bottom: 0.2em;
}
@media (max-width: 949px) {
  img.alignleft,
  img.alignright,
  div.alignleft,
  div.alignright {
    max-width: 100% !important;
  }
}
@media (min-width: 950px) {
  p.aligncenter-d {
    text-align: center;
  }
  img.alignleft,
  div.alignleft {
    float: left;
    clear: left;
    max-width: 35%;
    margin: 0 60px 60px 0;
  }
  img.alignright,
  div.alignright {
    float: right;
    clear: right;
    max-width: 35%;
    margin: 0 0 60px 60px;
  }
}

/* indent */

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-icon {
  padding-left: 1.4em;
  text-indent: -1.4em;
}

.indent-icon i {
  display: inline;
  margin-right: 0.4em;
}

/* List */
ul.reset,
ol.reset {
  list-style: none;
}

ul:not(.reset) {
  list-style: disc;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

ol:not(.reset) {
  list-style: decimal;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  overflow: hidden;
}

ul:not(.reset)>li,
ol:not(.reset)>li {
  margin: 0.1em 0;
}

ul:not(.reset) ul:not(.reset),
ol:not(.reset) ul:not(.reset) {
  list-style: circle;
  margin-bottom: 0;
}

/* Table */
table {
  width: 100%;
  margin: 0.8em 0 1.6em;
  background: #FFF;
  border-top: 1px solid #b0a69c;
  border-left: 1px solid #b0a69c;
	-webkit-text-size-adjust: 100%;
}
table caption {
  margin-bottom: 0.25em;
  color: var(--titleColor);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-align: left;
}
table th,
table td {
  padding: 15px;
  border-right: 1px solid #b0a69c;
  border-bottom: 1px solid #b0a69c;
}
table th {
  background: #efebe7;
  color: var(--titleColor);
  font-weight: 600;
}
table th.thead {
  padding: 8px 15px;
  background: var(--titleColor);
  color: #fff;
  line-height: 1.4;
}
table.layout {
	width: auto;
	margin: 0;
	border: none;
}
table.layout th,
table.layout td {
	display: table-cell;
	width: auto;
	padding: 0;
	border: none;
}
table .aligncenter {
  text-align: center;
}
table .alignleft {
  text-align: left;
}
table .alignright {
  text-align: right;
}
table .valigntop {
  vertical-align: top;
}
table .valignmiddle {
  vertical-align: middle;
}
table .valignbottom {
  vertical-align: bottom;
}
@media (max-width: 949px) {
  .js-scrollable {
    position: relative;
    width: 100%;
    margin: 0.8em 0 1.6em;
    padding-bottom: 5px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  .js-scrollable>table {
    width: 200vw;
    margin: 0;
  }
  .js-scrollable::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .js-scrollable::-webkit-scrollbar-track {
    background: #EEE;
    border-radius: 5px;
  }
  .js-scrollable::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 5px;
  }
  table.sp-style th,
  table.sp-style td {
    display: block;
    width: 100%;
		padding: 10px 15px;
  }
  table.sp-style th {
    padding: 5px 15px;
    border-bottom: none;
  }
  table.layout.sp-style th,
  table.layout.sp-style td {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.js-scrollable div.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}
.js-scrollable div.scroll-hint-icon-wrap .scroll-hint-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  padding: 20px 10px 10px 10px;
  background: rgba(0,0,0,.7);
  text-align: center;
  border-radius: 5px;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity .3s;
  opacity: 0;
}
.js-scrollable div.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}
.js-scrollable div.scroll-hint-icon-wrap .scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}
.js-scrollable div.scroll-hint-icon-wrap .scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}
.js-scrollable div.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}
.js-scrollable div.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}
.js-scrollable div.scroll-hint-icon-wrap .scroll-hint-text {
  color: #fff;
  font-size: 1.2rem;
}
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}


/* flex-block */
.flex-block {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  margin-bottom: calc(-10px + 1.5em);
}
.flex-block .flex-block-item {padding: 10px;}
.flex-block .flex-block-item.m1 {
  width: 100%;
}
.flex-block .flex-block-item.m2 {
  width: 50%;
}
.flex-block .flex-block-item.m3 {
  width: 33.3%;
}
.flex-block .flex-block-item:last-child > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 950px) {
  .flex-block .flex-block-item.d1 {
    width: 100%;
  }
  .flex-block .flex-block-item.d2 {
    width: 50%;
  }
  .flex-block .flex-block-item.d3 {
    width: 33.3%;
  }
  .flex-block .flex-block-item.d4 {
    width: 25%;
  }
  .flex-block .flex-block-item.d5 {
    width: 20%;
  }
  .flex-block .flex-block-item.d6 {
    width: 16.6%;
  }
}



.clear {
  clear: both;
}

.anchor {
  display: block;
  transform: translateY(-30px);
}

a.link-mark {
  position: relative;
  display: inline-flex;
  justify-content: left;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
}

a.link-mark::before {
  content: '\f054';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  color: #FFF;
  font-size: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  background: #61991e;
  border-radius: 100%;
}

a.link-mark span {
  display: block;
  text-decoration: underline;
}

a.link-mark:hover span {
  text-decoration: none;
}



/* faq */

/* .faq-block {
  margin-top: -10px;
} */
.faq-block .faq-item {}
.faq-block .faq-item .faq-item-question {
  border-bottom: 1px solid #BBB;
}

.faq-block .faq-item .faq-item-question a {
  position: relative;
  display: block;
  padding: 13px 1.5em 13px 0;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
}

.faq-block .faq-item .faq-item-question a:before {
  content: "\f056";
  position: absolute;
  right: 0;
  top: 50%;
  color: #8c7038;
  font-family: "Font Awesome 6 Free";
  transform: translateY(-50%);
  transition: 0.2s;
}

.faq-block .faq-item:not(.open) .faq-item-question a:before {
  content: "\f055";
  color: #999;
}

.faq-block .faq-item .faq-item-answer {
  padding: 10px 0 30px;
  font-size: 1.4rem;
  border-bottom: 1px solid #BBB;
  overflow: hidden;
  transition: 0.2s;
}

.faq-block .faq-item:not(.open) .faq-item-answer {
  height: 0;
  padding: 0;
  border-bottom: 0;
  line-height: 0;
}

.faq-block .faq-item .faq-item-answer>*:last-child {
  margin-bottom: 0;
}

@media (min-width: 950px) {
  .faq-block {}

  .faq-block .faq-item {}

  .faq-block .faq-item .faq-item-question {}

  .faq-block .faq-item .faq-item-question a {
    padding: 16px 2em 16px 0;
    font-size: 1.8rem;
  }

  .faq-block .faq-item .faq-item-question a:before {
    font-size: 1.1em;
  }

  .faq-block .faq-item:not(.open) .faq-item-question a:before {}

  .faq-block .faq-item .faq-item-answer {
    padding: 15px 0 40px;
    font-size: 1.6rem;
  }

  .faq-block .faq-item:not(.open) .faq-item-answer {}

  .faq-block .faq-item .faq-item-answer>*:last-child {}
}

/* iframe */
.iframe-wrapper {
  display: block;
  margin-bottom: 1.5em;
}
.iframe-wrapper iframe {
  display: block;
  width: 100%;
}

/* Tab Layout */
.tab-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.5em;
}
.tab-layout .tab-input {
  display: none;
}
.tab-layout .tab-label {
  order: -1;
  position: relative;
  padding: 1em;
  color: var(--titleColor);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
  z-index: 2;
  cursor: pointer;
}
.tab-layout .tab-content {
  position: relative;
  width: 100%;
  height: 0;
  margin-top: -1px;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
}
.tab-layout .tab-content:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100vw;
  height: 1px;
  background: #b0a69c;
  transform: translateX(-50%);
}
.tab-layout .tab-input:checked+.tab-label {
  background: #fff;
  font-weight: 700;
  border: 1px solid #b0a69c;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.tab-layout .tab-input:checked+.tab-label+.tab-content {
  height: auto;
  padding-top: 30px;
  opacity: 1;
  transition: .5s opacity;
}
@media (min-width: 950px) {
  .tab-layout .tab-label {
    padding: 1em 1.4em;
    font-size: 1.4rem;
    transition: 0.2s;
  }
  .tab-layout .tab-input:not(:checked)+.tab-label:hover {
    opacity: 0.6;
  }
}

/* Accordion Layout */
.accordion-layout {
  clear: both;
  margin-bottom: 1.5em;
  border-top: 1px solid #b0a69c;
}
.accordion-layout label {
  display: block;
  border-bottom: 1px solid #b0a69c;
}
.accordion-layout .accordion-title {
  position: relative;
  padding: 18px 35px 18px 0;
  color: var(--titleColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.accordion-layout .accordion-title:before,
.accordion-layout .accordion-title:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 2px;
  background: var(--linkColor);
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.accordion-layout input[type="checkbox"] {
  display: none;
}
.accordion-layout .accordion-content {
  padding-bottom: 18px;
  overflow: hidden;
  transition: 0.2s;
  cursor: text;
}
.accordion-layout .accordion-content>*:last-child {
  margin-bottom: 0;
}
.accordion-layout input[type="checkbox"]:not(:checked)+.accordion-title:before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.accordion-layout input[type="checkbox"]:not(:checked)+.accordion-title+.accordion-content {
  max-height: 0;
  padding-bottom: 0;
  line-height: 0;
  opacity: 0;
}