@charset "UTF-8";
/*
Theme Name:KabuK Style
Theme URI:
Description:WordPress Original Theme for KabuK Style
Text Domain: kabukstyle_theme
Version:1.0.0
*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in;
}

li {
  list-style: none;
}

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

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  transition: 800ms;
}
.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: 800ms;
}
.fadeInUp.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition: 800ms;
}
.fadeInLeft.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(20px);
  transition: 800ms;
}
.fadeInRight.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  transform: scale(1.05);
  transition: 800ms;
}
.fadeInZoomOut.is-scrolled {
  opacity: 1;
  transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  transform: scale(0.95);
  transition: 800ms;
}
.fadeInZoomIn.is-scrolled {
  opacity: 1;
  transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes btnLineOne {
  from {
    transform: scale(0, 1);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes btnLineOne {
  from {
    transform: scale(0, 1);
  }
  to {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes btnLine {
  from {
    transform: scale(0, 1);
  }
  to {
    transform: scale(2, 1);
  }
}
@keyframes btnLine {
  from {
    transform: scale(0, 1);
  }
  to {
    transform: scale(2, 1);
  }
}
@-webkit-keyframes scrollLine {
  from {
    transform: scale(1, 0);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes scrollLine {
  from {
    transform: scale(1, 0);
  }
  to {
    transform: scale(1, 1);
  }
}
.accordion-container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 1.625em 0.625em 0 2em;
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  color: #1CBED4;
  cursor: pointer;
  border-radius: 20px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .accordion-container .accordion-title {
    font-size: 16px;
  }
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  background-color: #fff;
  color: #1CBED4;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.accordion-title {
  position: relative;
}

.accordion-title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 65%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #333333;
  border-right: solid 2px #333333;
  transform: rotate(135deg);
}

.accordion-title.open:after {
  transform: rotate(-45deg);
  top: 75%;
}

.accordion-content {
  display: none;
  width: 90%;
  margin: auto;
}
.accordion-content > h4:first-child {
  margin-top: 24px;
}
.accordion-content > h4:not(:first-child) {
  margin-top: 16px;
}
.accordion-content > p {
  text-align: left;
  font-size: 16px !important;
  padding: 20px 30px 20px 60px !important;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .accordion-content > p {
    font-size: 14px !important;
    padding: 22px 40px 22px 45px !important;
  }
}

.accordion-title-sep.open:after {
  top: 50% !important;
}

/* CSS for CodePen */
.accordion-container {
  width: 800px;
  margin: 1.875em auto;
  background-color: #fff;
  border-radius: 20px;
  padding-bottom: 1.625em;
}
@media screen and (max-width: 1023px) {
  .accordion-container {
    width: auto;
  }
}

.accordion-title-sep {
  background-color: #1CBED4 !important;
  color: #fff !important;
  padding: 22px 10px 22px 60px !important;
  font-size: 16px !important;
  position: relative;
  font-weight: 400 !important;
}
@media screen and (max-width: 1023px) {
  .accordion-title-sep {
    font-size: 14px !important;
    padding: 22px 40px 22px 45px !important;
  }
}
.accordion-title-sep::before {
  content: "Q.";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 30px;
  width: 20px;
  height: 30px;
  font-size: 16px !important;
}
@media screen and (max-width: 1023px) {
  .accordion-title-sep::before {
    left: 15px;
    top: 19px;
    bottom: initial;
  }
}
.accordion-title-sep::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
}
@media screen and (max-width: 1023px) {
  .accordion-title-sep::after {
    top: 28%;
  }
}

.accordion-content-sep {
  width: 100%;
  background: #E1F5FA;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  position: relative;
}
.accordion-content-sep::before {
  content: "A.";
  display: block;
  position: absolute;
  top: 19px;
  left: 30px;
  width: 20px;
  height: 30px;
  font-size: 16px !important;
}
@media screen and (max-width: 1023px) {
  .accordion-content-sep::before {
    left: 15px;
  }
}

.accordion-title-sep.open {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= レイアウトのためのCSS ===============*/
#container {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/*======================
  base
======================*/
body {
  color: #3B3C3E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.11em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.11em;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  position: relative;
  padding: 60px 0 0;
  background-color: #E1F5FA;
  box-sizing: border-box;
  color: #333333;
  margin-top: 150px;
}
@media screen and (max-width: 1023px) {
  .l-footer {
    padding-bottom: initial;
    margin-top: 20px;
  }
}
.l-footer__item > a:hover {
  color: #1CBED4;
  transition: 0.3s;
}
.l-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -19%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/home/footer-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 10px;
}
@media screen and (max-width: 1023px) {
  .l-footer::before {
    top: -10%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer::before {
    top: -8%;
  }
}
@media screen and (min-width: 1920px) {
  .l-footer::before {
    top: -32%;
  }
}
.l-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: content-box;
  padding-bottom: 55px;
}
@media screen and (max-width: 1023px) {
  .l-footer__inner {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: initial;
  }
}
.l-footer__box {
  display: flex;
  gap: 75px;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .l-footer__box {
    gap: initial;
  }
}
.l-footer__logo-sp-box {
  text-align: center;
  padding-bottom: 40px;
}
.l-footer__logo {
  display: block;
  width: 163px;
  margin-left: 24px;
}
.l-footer__logo img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-footer__logo {
    display: none;
  }
}
.l-footer__logo-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-footer__logo-sp {
    display: block;
    width: 150px;
    margin: auto;
  }
}
.l-footer__copyright {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  line-height: 46px;
  background-color: #EDEDED;
}
@media screen and (max-width: 1023px) {
  .l-footer__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.l-footer__link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #1CBED4;
  font-weight: 700;
  padding-bottom: 14px;
  padding-top: 43px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer__link {
    font-size: 10px;
    padding-top: 24px;
    padding-bottom: 8px;
  }
}
.l-footer__link::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 20px;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 20px;
  height: 20px;
  border-top: solid 3px #1CBED4;
  border-right: solid 3px #1CBED4;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1023px) {
  .l-footer__link::after {
    border-top: solid 2px #1CBED4;
    border-right: solid 2px #1CBED4;
    width: 15px;
    height: 15px;
    top: 10px;
  }
}
.l-footer__text {
  font-size: 14px;
}
.l-footer__text1 {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer__text1 {
    display: none;
  }
}
.l-footer__text1::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -20px !important;
  width: 15px !important;
  height: 15px !important;
  background-image: url(../img/home/footer-Location.png) !important;
  background-repeat: no-repeat;
  background-size: 100%;
}
.l-footer__text2 {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer__text2 {
    display: none;
  }
}
.l-footer__text2::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -20px !important;
  width: 15px !important;
  height: 15px !important;
  background-image: url(../img/home/footer-Phone.png) !important;
  background-repeat: no-repeat;
  background-size: 100%;
}
.l-footer__contact {
  width: 515px !important;
  line-height: 84px !important;
  font-size: 24px !important;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact {
    width: 335px !important;
    font-size: 16px !important;
    line-height: 72px !important;
  }
}
.l-footer__contact::after {
  background-image: url(../img/home/footer-contact.png) !important;
  width: 414px !important;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact::after {
    width: 311px !important;
  }
}
.l-footer__contact > img {
  width: 60px !important;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact > img {
    width: 40px !important;
  }
}
.l-footer__bou {
  position: relative;
}
.l-footer__bou::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: -30px;
  width: 14px;
  height: 1px;
  background-color: #333333;
  transform: rotate(115deg);
}
.l-footer__nav {
  display: flex;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav > li {
    margin-bottom: 8px;
  }
}
.l-footer__nav > li:not(:last-child) {
  margin-right: 48px;
}
@media screen and (max-width: 1200px) {
  .l-footer__nav > li:not(:last-child) {
    margin-right: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav > li:not(:last-child) {
    margin-right: 16px;
  }
}
.l-footer__nav > li > a {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav > li > a {
    font-weight: 600;
  }
}
.l-footer__nav > li > a::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  transition: 0.3s;
}
.l-footer__nav > li.m-contact > a {
  width: 88px;
  height: 32px;
  line-height: 30px;
  border: 1px solid #fff;
  text-align: center;
}
.l-footer__nav > li.m-contact > a::before {
  content: none;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav > li.m-contact > a {
    width: 106px;
    height: 40px;
    line-height: 38px;
  }
}
.l-footer__nav > li.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}
@media screen and (max-width: 1023px) {
  .l-footer__others {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
}
.l-footer__privacy {
  text-align: right;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .l-footer__privacy {
    margin-left: 20px;
  }
}
.l-footer__privacy > a:hover {
  opacity: 0.75;
}
.l-footer .c-language-swich {
  margin: 38px 0 38px;
}
@media screen and (max-width: 1023px) {
  .l-footer .c-language-swich {
    margin: 0;
    font-weight: normal;
  }
}

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 994;
}
.l-header.change-color {
  background-color: #fff;
}
.l-header__inner {
  max-width: 1440px;
  height: 100%;
  padding: 0 40px;
  margin: 26px auto 0;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    margin: 10px auto 0;
    padding: 0 20px;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  z-index: 999;
}
.l-header__logo a:hover {
  opacity: 1;
}
.l-header__logo a:hover > img {
  transition: 0.3s;
  opacity: 0.7;
}
.l-header__logo a img {
  width: 292px;
}
@media screen and (max-width: 1023px) {
  .l-header__logo a img {
    width: 179px;
  }
}
.l-header__logo a.m-logo {
  display: flex;
  width: 56px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}
@media screen and (min-width: 1500px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}
.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 999;
}
@media screen and (min-width: 1024px) {
  .l-navbtn {
    display: none;
  }
}
.l-navbtn__bar {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.3s;
}
.l-navbtn__bar:nth-child(1) {
  transform: translateY(-8px);
  opacity: 0;
}
.l-navbtn__bar:nth-child(3) {
  transform: translateY(8px);
  opacity: 0;
}

.m-middle {
  position: relative;
}
.m-middle::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  width: 40px;
  height: 35px;
  background-image: url(../img/home/hamborger.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}

.l-gnav {
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .l-gnav {
    width: 100%;
    height: 100vh;
    padding: 40% 40px 124px;
    background-color: #E1F5FA;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    transform: translateX(110%);
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
  }
}
.l-gnav__bou {
  position: relative;
}
.l-gnav__bou::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: -27px;
  width: 14px;
  height: 1px;
  background-color: #333333;
  transform: rotate(115deg);
}
@media screen and (max-width: 1023px) {
  .l-gnav__bou::after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .l-gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.l-gnav__img-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-gnav__img-sp {
    display: block;
    margin-right: 55px !important;
  }
}
@media screen and (max-width: 1023px) {
  .l-gnav__item {
    text-align: center;
  }
}
.l-gnav__item:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1024px) {
  .l-gnav__item:not(:last-child) {
    margin-right: 40px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1500px) {
  .l-gnav__item:not(:last-child) {
    margin-right: 64px;
  }
}
.l-gnav__item > a {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-gnav__item > a {
    font-size: 18px;
  }
}
.l-gnav__item.m-contact > a {
  width: 140px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  text-align: center;
  color: #fff;
}
.l-gnav__item.m-contact > a::before {
  content: none;
}
@media screen and (min-width: 1024px) {
  .l-gnav__item.m-contact > a {
    width: 160px;
    height: 80px;
    line-height: 78px;
  }
}
.l-gnav__item.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}
.l-gnav__item_hover > a::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  transition: 0.3s;
}
.l-gnav__link-sep {
  display: block;
  width: 240px;
  line-height: 56px;
  text-align: center;
  background-color: #1CBED4;
  color: #fff;
  border-radius: 50px;
  position: relative;
  box-shadow: 6px 6px #F3EEE8;
  transition: 0.3s;
}
.l-gnav__link-sep:hover {
  transform: translate(6px, 6px) !important;
  transition: 0.3s;
  box-shadow: initial;
}
.l-gnav__link-sep::after {
  content: "";
  display: block;
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  margin: auto;
  width: 176px;
  height: 100%;
  background-image: url(../img/home/contact-fukidasi.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.l-gnav__link-sep1 {
  display: block;
  width: 240px;
  line-height: 56px;
  text-align: center;
  background-color: #fff;
  color: #1CBED4;
  border-radius: 50px;
  position: relative;
  box-shadow: 6px 6px #1CBED4;
  transition: 0.3s;
}
.l-gnav__link-sep1:hover {
  transform: translate(6px, 6px) !important;
  transition: 0.3s;
  box-shadow: initial;
}
.l-gnav__link-sep1::before {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  left: 15px;
  width: 24px;
  height: 100%;
  background-image: url(../img/home/hitode.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.l-gnav__link-sep1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -95px;
  right: -175px;
  width: 34px;
  height: 100%;
  background-image: url(../img/home/kai.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.l-gnav__img {
  width: 40px;
  margin-right: 8px;
  transition: 0.3s;
}
.l-gnav__img:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-gnav__item-sep {
    margin-top: 70px;
  }
}
.l-gnav__item_hover > a:hover {
  color: #1CBED4;
  transition: 0.3s;
}

.is-open {
  display: block;
  transform: translateX(0);
  transition: 0.5s;
}
.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  opacity: 1;
  background: #000;
}
.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}
.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  opacity: 1;
  background: #000;
}

.m-not-loading {
  display: none;
}

/*=======================
  main
=======================*/
.l-main {
  display: block;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}
.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}
.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}
.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004EA2;
  text-align: center;
  text-decoration: underline;
}

.c-btn > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .c-btn > a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}
.c-btn > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: rotateY(90deg);
  transform-origin: left;
  transition: 0.4s;
  z-index: -1;
}
.c-btn > a > .arrow::before, .c-btn > a > .arrow::after {
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn > a > .arrow::before {
  width: 60px;
  background-color: #3B3C3E;
  right: -22px;
}
@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::before {
    width: 40px;
    right: -15px;
  }
}
.c-btn > a > .arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  transform-origin: left center;
}
@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::after {
    width: 20px;
    right: 4px;
  }
}
.c-btn > a:hover {
  color: #3B3C3E;
}
.c-btn > a:hover::before {
  transform: rotateY(0);
}
.c-btn > a:hover > .arrow::before {
  background-color: transparent;
}
.c-btn > a:hover > .arrow::after {
  background-color: #3B3C3E;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}
.c-btn.m-small > a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .c-btn.m-small > a {
    width: 190px;
    height: 50px;
  }
}
.c-btn.m-small > a > .arrow::before {
  width: 40px;
  right: -20px;
}
@media screen and (max-width: 1023px) {
  .c-btn.m-small > a > .arrow::before {
    width: 30px;
    right: -15px;
  }
}
.c-btn.m-white > a {
  color: #3B3C3E;
  font-weight: 300;
  background-color: #fff;
}
.c-btn.m-white > a::before {
  background-color: #F0F0F0;
}
.c-btn.m-white > a > .arrow::before {
  background-color: #3B3C3E;
  transform-origin: left;
}
.c-btn.m-white > a > .arrow::after {
  content: none;
}
.c-btn.m-white > a:hover > .arrow::before {
  background-color: #3B3C3E;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}
.c-btn.m-align-center {
  text-align: center;
}
.c-btn.m-align-right {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}
.c-btn.m-fw-normal > a {
  font-weight: 400;
}

.c-inner {
  max-width: 640px;
  margin: 0 auto;
  box-sizing: content-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .c-inner {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .c-inner {
    max-width: 1040px;
  }
}
@media screen and (min-width: 1024px) {
  .c-inner.m-1152 {
    max-width: 1152px;
  }
}
.c-inner.m-p-relative {
  position: relative;
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-only-tl {
    display: none !important;
  }
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
.c-fz16 {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .c-fz16 {
    font-size: 14px;
  }
}

.c-br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-br-sp {
    display: block;
  }
}
@media screen and (max-width: 359px) {
  .c-br-sp {
    display: none;
  }
}

.c-br {
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-br {
    display: none;
  }
}

.c-yerrow {
  color: #FFC121;
}

.c-fz32 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .c-fz32 {
    font-size: 24px;
  }
}

.c-blue {
  color: #1CBED4;
  font-weight: 700;
}

.p-fv {
  position: relative;
}
.p-fv::before {
  content: "";
  display: block;
  position: absolute;
  top: 16%;
  left: 25%;
  width: 122px;
  height: 40%;
  background-image: url(../img/home/fv-copy.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .p-fv::before {
    width: 64px;
    top: 26%;
  }
}
.p-fv::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20%;
  right: 17%;
  width: 44.2%;
  max-width: 636px;
  height: 140px;
  background-image: url(../img/home/fv-text-box.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .p-fv::after {
    bottom: 5%;
    width: 325px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv::after {
    display: none;
  }
}
.p-fv__container {
  position: relative;
}
.p-fv__reser-btn {
  position: fixed;
  bottom: 140px;
  right: 40px;
  width: 146px;
  z-index: 100;
  transition: 0.3s;
  z-index: 800;
}
@media screen and (max-width: 1023px) {
  .p-fv__reser-btn {
    width: 103px;
    bottom: 50px;
    right: 24px;
  }
}
.p-fv__reser-btn:hover {
  transition: 0.3s;
  transform: translate(3px, 10px);
  opacity: 0;
}
.p-fv__reser-btn2 {
  position: fixed;
  bottom: 130px;
  right: 37px;
  width: 146px;
  z-index: 50;
  transition: 0.3s;
  z-index: 700;
}
@media screen and (max-width: 1023px) {
  .p-fv__reser-btn2 {
    width: 103px;
    bottom: 44px;
    right: 18px;
  }
}

.p-about {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 250px;
  margin-top: -250px;
  padding-bottom: 200px;
}
@media screen and (max-width: 1023px) {
  .p-about {
    padding-bottom: 120px;
    padding-top: 330px;
    margin-top: -300px;
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-bottom: 110px;
    padding-top: 100px;
    margin-top: -70px;
    background-position: 0 100px;
  }
}
@media screen and (min-width: 1920px) {
  .p-about {
    padding-top: 380px;
    margin-top: -450px;
    padding-bottom: 100px;
  }
}
.p-about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1500px;
  height: 110%;
  background-image: url(../img/home/about-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 -158px;
  z-index: -1;
}
@media screen and (min-width: 1500px) {
  .p-about::before {
    top: -550px;
    width: 2560px;
    height: 200%;
  }
}
@media screen and (max-width: 1023px) {
  .p-about::before {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .p-about__container {
    position: relative;
  }
  .p-about__container::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 1023px;
    height: 230%;
    background-image: url(../img/home/about-bg-tab.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .p-about__container {
    position: relative;
  }
  .p-about__container::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -145px;
    left: 0;
    width: 768px;
    height: 200%;
    background-image: url(../img/home/about-bg-sp-new.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 -50px;
    z-index: -1;
  }
}
.p-about__sun {
  width: 192px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1023px) {
  .p-about__sun {
    width: 120px;
    margin-bottom: 16px;
  }
}
.p-about__title > span > img {
  width: 371px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .p-about__title > span > img {
    width: 232px;
  }
}
.p-about__text {
  margin-bottom: 24px;
}
.p-about__span {
  position: relative;
}
.p-about__span::before {
  content: "";
  display: block;
  position: absolute;
  top: 70px;
  left: -290px;
  width: 208px;
  height: 50px;
  background-image: url(../img/home/kamome.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .p-about__span::before {
    width: 81px;
    left: -150px;
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__span::before {
    width: 81px;
    left: -50px;
    top: 130px;
  }
}
.p-about__span::after {
  content: "";
  display: block;
  position: absolute;
  top: 140px;
  right: -290px;
  width: 208px;
  height: 50px;
  background-image: url(../img/home/kamome.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .p-about__span::after {
    width: 81px;
    top: 160px;
    right: -145px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__span::after {
    width: 81px;
    top: 260px;
    right: -45px;
  }
}
.p-about__sub-text {
  line-height: 40px;
}
@media screen and (max-width: 1023px) {
  .p-about__sub-text {
    line-height: 30px;
    position: relative;
    z-index: 30;
  }
}

.p-feature {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-feature {
    margin-top: -50px;
  }
}
.p-feature::before {
  content: "";
  display: block;
  position: absolute;
  top: 1125px;
  left: 0;
  width: 1500px;
  height: 100%;
  background-image: url(../img/home/feature03-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .p-feature::before {
    width: 130%;
    top: 1000px;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature::before {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .p-feature::before {
    background-image: url(../img/home/feature03-bg-max.png);
    width: 2560px;
  }
}
.p-feature::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 1500px;
  height: 810px;
  background-image: url(../img/home/feature06-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .p-feature::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature::after {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .p-feature::after {
    background-image: url(../img/home/feature06-bg-max.png);
    bottom: -30px;
    width: 2570px;
  }
}
.p-feature__left1 {
  position: relative;
  z-index: -10;
}
.p-feature__container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 95px 50px 110px;
}
@media screen and (max-width: 1023px) {
  .p-feature__container {
    padding: 60px 0px 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__container {
    padding: 0px 0px 100px;
  }
}
.p-feature__container > div:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .p-feature__container > div:nth-child(2n) {
    flex-direction: column;
  }
}
.p-feature__container > div:not(:last-child) {
  margin-bottom: 200px;
}
@media screen and (max-width: 1023px) {
  .p-feature__container > div:not(:last-child) {
    margin-bottom: 150px;
  }
}
.p-feature__box {
  display: flex;
  gap: 5%;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-feature__box {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature__left {
    width: 552px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-feature__left > img {
  width: 707px;
}
.p-feature__box1 {
  position: relative;
}
.p-feature__box1::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -120px;
  right: 0;
  width: 134px;
  height: 135px;
  background-image: url(../img/home/parasol.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .p-feature__box1::before {
    width: 98px;
    right: 25px;
    bottom: -150px;
  }
}
.p-feature__box2 {
  position: relative;
}
.p-feature__box2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  left: -11%;
  width: 208px;
  height: 50px;
  background-image: url(../img/home/kamome.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .p-feature__box2::before {
    bottom: -80px;
    left: 7%;
    width: 81px;
  }
}
.p-feature__box3 {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-feature__box3 {
    background-color: #F9EFE5;
    margin-bottom: initial !important;
    padding-bottom: 150px;
  }
  .p-feature__box3::after {
    content: "";
    display: block;
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home/feature03-bg-sp.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .p-feature__box3::after {
    top: -160px;
    width: 767px;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature__box3 > div::before {
    content: "";
    display: block;
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home/feature03-bg-sp.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .p-feature__box3 > div::before {
    display: none;
  }
}
.p-feature__box3::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 129px;
  height: 110px;
  background-image: url(../img/home/hanmok.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .p-feature__box3::before {
    width: 115px;
    right: 25px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature__left-sep {
    width: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.p-feature__box4 {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-feature__box4 {
    background-color: #F9EFE5;
  }
  .p-feature__box4::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -230px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home/feature04-bg-sp.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .p-feature__box4::after {
    width: 1023px;
    bottom: -120px;
    height: 110%;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .p-feature__box4::after {
    bottom: -210px;
    width: 767px;
    height: 100%;
  }
}
.p-feature__box4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  left: -11%;
  width: 208px;
  height: 50px;
  background-image: url(../img/home/kamome.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .p-feature__box4::before {
    left: 7%;
    width: 81px;
    bottom: -80px;
  }
}
.p-feature__box5 {
  position: relative;
}
.p-feature__box5::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -150px;
  right: 16%;
  width: 62px;
  height: 135px;
  background-image: url(../img/home/bbq.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .p-feature__box5::before {
    width: 50px;
    right: 7%;
  }
}
.p-feature__sub-title3 {
  max-width: 400px;
}
@media screen and (max-width: 1023px) {
  .p-feature__sub-title3 {
    max-width: initial;
  }
}
.p-feature__box6 {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-feature__box6 {
    background-color: #F9EFE5;
  }
  .p-feature__box6 > div:last-child::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -60px;
    left: -11%;
    width: 208px;
    height: 50px;
    background-image: url(../img/home/kamome.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .p-feature__box6 > div:last-child::before {
    left: 7%;
    width: 81px;
    bottom: -80px;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature__box6::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -450px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home/feature04-bg-sp.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .p-feature__box6::after {
    bottom: -250px;
    width: 1023px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .p-feature__box6::after {
    bottom: -428px;
    width: 100%;
  }
}
.p-feature__box6::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  left: -11%;
  width: 208px;
  height: 50px;
  background-image: url(../img/home/kamome.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .p-feature__box6::before {
    content: "";
    display: block;
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home/feature03-bg-sp.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .p-feature__box6::before {
    top: -170px;
    width: 767px;
  }
}
.p-feature__left-img5 {
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-feature__left-img5 {
    display: none;
  }
}
.p-feature__left-img5-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-feature__left-img5-sp {
    display: block;
  }
}
.p-feature__title {
  margin-bottom: 8px;
}
.p-feature__title > img {
  width: 121px;
}
.p-feature__sub-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .p-feature__sub-title {
    margin-bottom: 24px;
  }
}
.p-feature__right {
  max-width: 349px;
}
@media screen and (max-width: 1023px) {
  .p-feature__right {
    max-width: initial;
    padding: 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-feature__left-img3 {
  width: 600px !important;
}
.p-feature__right3 {
  max-width: 40.7% !important;
}
@media screen and (max-width: 1023px) {
  .p-feature__right3 {
    max-width: 600px !important;
  }
}
.p-feature__left-img4 {
  width: 512px !important;
}
.p-feature__right4 {
  max-width: 34.3% !important;
}
@media screen and (max-width: 1023px) {
  .p-feature__right4 {
    max-width: 600px !important;
  }
}
.p-feature__left-img5 {
  width: 547px !important;
}
.p-feature__right5 {
  max-width: 340px !important;
}
@media screen and (max-width: 1023px) {
  .p-feature__right5 {
    max-width: 600px !important;
  }
}
.p-feature__left-img6 {
  width: 512px !important;
}
.p-feature__right6 {
  max-width: 384px !important;
}
@media screen and (max-width: 1023px) {
  .p-feature__right6 {
    max-width: 600px !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature__right1 {
    padding: 0 30px;
  }
}
.p-news {
  text-align: center;
}
.p-news__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 50px;
}
@media screen and (max-width: 1023px) {
  .p-news__container {
    padding: 90px 40px 0px;
  }
}
.p-news__title > img {
  width: 88px;
}
.p-news__sub-title {
  margin-bottom: 40px;
}
.p-news__text {
  margin-bottom: 10px;
}

.p-active {
  text-align: center;
}
.p-active__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 50px;
}
@media screen and (max-width: 1023px) {
  .p-active__container {
    padding: 90px 40px 0px;
  }
}
.p-active__title {
  margin-bottom: 11px;
}
.p-active__title > img {
  width: 88px;
}
.p-active__sub-title {
  margin-bottom: 40px;
}
.p-active__text {
  margin-bottom: 40px;
}
.p-active__box > img {
  width: 150px;
  margin-bottom: 15px;
  box-shadow: 6px 6px #f3eee8;
  border-radius: 50%;
}
@media screen and (max-width: 1023px) {
  .p-active__box > img {
    width: 122px;
  }
}
.p-active__box-title {
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}
@media screen and (max-width: 1023px) {
  .p-active__box {
    width: 125px;
  }
}
.p-active__boxes {
  display: flex;
  justify-content: center;
  gap: 44px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-active__boxes {
    flex-wrap: wrap;
  }
}
.p-active__boxes::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -150px;
  right: 0;
  width: 105px;
  height: 122px;
  background-image: url(../img/home/active-human.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .p-active__boxes::before {
    bottom: -140px;
    right: -16px;
    width: 84px;
  }
}
.p-active__box {
  transition: 0.3s;
}
.p-active__box > img {
  transition: 0.3s;
}
.p-active__box:hover > img {
  transform: translate(6px, 6px);
  transition: 0.3s;
  box-shadow: initial;
}

.p-ques {
  text-align: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1023px) {
  .p-ques {
    padding-top: 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-ques {
    overflow: hidden;
  }
}
.p-ques::before {
  content: "";
  display: block;
  position: absolute;
  top: -160px;
  left: 0;
  width: 100%;
  height: 80%;
  background-image: url(../img/home/feature03-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -10;
}
@media screen and (max-width: 1023px) {
  .p-ques::before {
    background-image: url(../img/home/feature03-bg-sp.png);
    top: -2%;
  }
}
@media screen and (max-width: 767px) {
  .p-ques::before {
    background-image: url(../img/home/feature03-bg-sp.png);
    width: 767px;
  }
}
@media screen and (min-width: 1920px) {
  .p-ques::before {
    background-image: url(../img/home/ques-bg-max.png);
    top: -210px;
    height: 500px;
  }
}
.p-ques::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/home/feature03-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -14;
  background-position: 0 100%;
}
@media screen and (max-width: 1023px) {
  .p-ques::after {
    background-image: url(../img/home/feature04-bg-sp.png);
    bottom: -14%;
  }
}
@media screen and (max-width: 767px) {
  .p-ques::after {
    background-image: url(../img/home/feature04-bg-sp.png);
    bottom: -3%;
  }
}
@media screen and (min-width: 1920px) {
  .p-ques::after {
    background-image: url(../img/home/ques-bg-max.png);
    top: 60px;
    height: 100%;
  }
}
.p-ques__bg-box {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-ques__bg-box {
    background-color: #F9EFE5;
  }
}
.p-ques__bg-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #F9EFE5;
}
.p-ques__line {
  transition: 0.3s;
  text-decoration: underline;
}
.p-ques__line:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.p-ques__container {
  max-width: 1220px;
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-ques__container {
    padding: 10px 24px;
    max-width: 600px;
  }
}
.p-ques__title {
  margin-bottom: 8px;
}
.p-ques__title > img {
  width: 92px;
}
.p-ques__sub-title {
  margin-bottom: 40px;
}
.p-ques__text {
  margin-bottom: 40px;
}

.p-access__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 160px 80px;
}
@media screen and (max-width: 1023px) {
  .p-access__container {
    padding: 60px 24px 80px;
    max-width: 600px;
  }
}
.p-access__title {
  margin-bottom: 8px;
  text-align: center;
}
.p-access__title > img {
  width: 73px;
}
.p-access__sub-title {
  margin-bottom: 40px;
  text-align: center;
}
.p-access__box {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 1023px) {
  .p-access__box {
    flex-direction: column;
    gap: 40px;
  }
}
.p-access__text {
  font-weight: 400;
  position: relative;
  margin-left: 20px;
}
@media screen and (max-width: 1023px) {
  .p-access__text {
    margin-left: 35px;
  }
}
.p-access__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -25px;
  width: 20px;
  height: 20px;
  background-image: url(../img/home/Location.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.p-access__text2::before {
  background-image: url(../img/home/Phone.png);
}
.p-access__text3::before {
  background-image: url(../img/home/Car.png);
}
.p-access__text4::before {
  background-image: url(../img/home/Bus.png);
}
.p-access__text5::before {
  background-image: url(../img/home/Train.png);
}
.p-access__sub-text {
  font-weight: 300;
  margin-left: 20px;
}
@media screen and (max-width: 1023px) {
  .p-access__sub-text {
    margin-left: 35px;
  }
}
.p-access__left > img {
  width: 292px;
  margin-bottom: 23px;
}
@media screen and (max-width: 1023px) {
  .p-access__left > img {
    width: 200px;
  }
}
.p-access__right {
  max-width: 400px;
}
.p-access__right > ul:not(:last-child) {
  margin-bottom: 10px;
}
.p-access__map {
  text-align: center;
  margin-top: 40px;
}
.p-access__map > iframe {
  border-radius: 40px;
}
.p-parking__map {
  text-align: center;
}
.p-parking__map > iframe {
  border-radius: 20px;
  width: 95%;
  margin-bottom:5px;
}

.p-open {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-open {
    display: block;
  }
}
.p-open__container {
  text-align: center;
  padding-bottom: 60px;
}
.p-open__container > img {
  width: 295px;
  position: relative;
  z-index: 100;
}

iframe {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  iframe {
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  iframe {
    height: 200px;
  }
}

@media screen and (max-width: 430px) {
  .p-feature__box1 > div > img {
    margin-left: -90px;
  }
}
@media screen and (max-width: 430px) {
  .p-feature__box2 > div > img {
    margin-left: -90px;
  }
}
@media screen and (min-width: 550px) and (max-width: 1023px) {
  .p-feature {
    margin-top: 100px;
  }
}
@media screen and (min-width: 550px) and (max-width: 767px) {
  .p-ques::after {
    bottom: -8%;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1439px) {
  .p-active__boxes::before {
    bottom: -160px;
  }
}
@media screen and (max-width: 1023px) {
  .common-reserve-btn {
    display: none;
    transition: 0.3s;
  }
}

@media screen and (max-width: 1023px) {
  .reserve-open {
    display: block;
    transition: 0.3s;
  }
}/*# sourceMappingURL=style.css.map */