@charset "UTF-8";
@-webkit-keyframes megaMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
    border-top: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
}
@keyframes megaMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
    border-top: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: -ms-grid;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: -ms-grid;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
}
@-webkit-keyframes modalNavMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
@keyframes modalNavMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
*,
*::before,
*::after {
  /* Box sizingの定義 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  /* デフォルトのmargin, paddingを削除 */
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  /* デフォルトのmarginを削除 */
  margin: 0;
  padding: 0;
  font-family: "Libre Baskerville", serif;
}

body {
  /* bodyのデフォルトを定義 */
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  /*iphoneの勝手に文字拡大を防ぐ*/
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 600;
}

p,
li,
dt,
dd {
  line-height: 1.75;
  font-weight: 400;
}

ul,
ol {
  /* class属性を持つul、ol要素のリストスタイルを削除 */
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

a:not([class]) {
  /* classを持たない要素はデフォルトのスタイルを取得 */
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  /* img要素の扱いを簡単にする */
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

input,
button,
textarea,
select {
  /* inputやbuttonなどのフォントは継承を定義 */
  font: inherit;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
}

sup {
  font-size: 11px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  display: inline-block;
}

/* 
@media (prefers-reduced-motion: reduce) {
 見たくない人用に、すべてのアニメーションとトランジションを削除 
  *,*::before,*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*@mixin resetはここまで*/
.l-wrap {
  overflow: hidden;
}

/* header */
.header {
  width: 100%;
  height: 100px;
  padding: 0 2.9166666667vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .header {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header .header__logo {
  z-index: 9999;
}
.header .header__logo a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header__logo a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header__logo-title {
  width: 20vw;
}
@media only screen and (max-width: 1023px) {
  .header .header__logo-title {
    width: 25vw;
  }
}
@media only screen and (max-width: 767px) {
  .header .header__logo-title {
    font-size: 4.6511627907vw;
    width: 50vw;
  }
}
.header .header-nav {
  position: relative;
}
.header .header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1023px) {
  .header .header-nav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header .header-nav__list-item {
  cursor: pointer;
  position: relative;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-size: 20px;
  margin-left: 2.8125vw;
}
.header .header-nav__list-item:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 1023px) {
  .header .header-nav__list-item {
    width: 100%;
    color: #fff;
    padding-bottom: 18px;
    border-bottom: solid 1px #dfdfdf;
  }
}
@media only screen and (max-width: 1023px) {
  .header .header-nav__list-item {
    margin-left: 0;
  }
  .header .header-nav__list-item::before {
    content: "+";
    position: absolute;
    top: 12px;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 1.5rem;
    color: #fff;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  }
  .header .header-nav__list-item.open::before {
    content: "";
    width: 10px;
    height: 1px;
    top: 15px;
    background-color: #fff;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
    opacity: 1;
  }
}
.header .header-nav__list-item--contact {
  padding: 9px 27px;
  white-space: nowrap;
  background-color: #009e6f;
  border-radius: 4px;
  padding: 6px 11px 4px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .header .header-nav__list-item--contact:hover {
    opacity: 1;
  }
  .header .header-nav__list-item--contact:hover:before {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.header .header-nav__list-item--contact::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #45bf7e;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .header .header-nav__list-item--contact {
    padding: 9px 17px;
    max-width: 200px;
    margin: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header .header-nav__list-item--contact {
    padding: 10px 10px 8px;
    max-width: 170px;
  }
}
.header .header-nav__list-item--contact a {
  color: #fff;
  padding-left: 25px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
}
.header .header-nav__list-item--contact a:hover {
  opacity: 1;
}
.header .header-nav__list-item--contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
}
.header .header-nav__list-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  border-top: solid 2px #009e6f;
  border-right: solid 2px #009e6f;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  z-index: 1;
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
}
.header .header-nav__list-item--contact a .header-sub-list__link {
  margin-bottom: 0;
}
.header .header-nav__list-item .header__contact-text {
  color: #fff;
  font-size: 0.8333333333vw;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1023px) {
  .header .header-nav__list-item .header__contact-text {
    font-size: 14px;
  }
}
.header .header-sub-list {
  display: none;
  height: auto;
  top: 30px;
  padding: 20px 30px;
  white-space: nowrap;
  background-color: #121112;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .header .header-sub-list {
    position: static;
    padding: 20px 0 0 20px !important;
    background-color: transparent;
  }
}
.header .header-sub-list__link {
  color: #fff;
  font-size: 0.8333333333vw;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1023px) {
  .header .header-sub-list__link {
    font-size: 1.5640273705vw;
  }
}
@media only screen and (max-width: 767px) {
  .header .header-sub-list__link {
    margin-bottom: 10px;
  }
}
.header .header-sub-list__link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* ハンバーガーメニュー */
@media only screen and (max-width: 1023px) {
  #spmenu-btn {
    z-index: 1000;
    cursor: pointer;
    width: 30px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  #spmenu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .header .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #333;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    z-index: 998;
    overflow: scroll;
    margin-top: 60px;
  }
  .header .header-nav__list {
    list-style: none;
    padding: 40px 20px 100px;
    margin: 0;
  }
  .header .header-nav__list-item {
    margin-bottom: 20px;
  }
  .header .header-sub-list {
    list-style: none;
    margin: 0;
    padding: 20px 0 0 20px;
  }
  .header .header-sub-list__item {
    margin-bottom: 5px;
  }
  .header .header-sub-list__link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  /* メニュー開閉 */
  html.is-spmenu-open #sp_menu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  html.is-spmenu-open #spmenu-btn span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 11px);
            transform: rotate(45deg) translate(5px, 11px);
  }
  html.is-spmenu-open #spmenu-btn span:nth-child(2) {
    opacity: 0;
  }
  html.is-spmenu-open #spmenu-btn span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -11px);
            transform: rotate(-45deg) translate(5px, -11px);
  }
}
/* 幅の制御 */
.wrap_1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1439px) {
  .wrap_1280 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap_1280 {
    padding: 0 20px;
  }
}

.wrap_1380 {
  width: 100%;
  max-width: 1480px;
  padding: 0 50px;
  margin: 0 auto;
}
@media only screen and (max-width: 1439px) {
  .wrap_1380 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap_1380 {
    padding: 0 20px;
  }
}

.wrap_1600 {
  width: 100%;
  max-width: 83.3333333333vw;
  margin: 0 auto;
}
@media only screen and (max-width: 1439px) {
  .wrap_1600 {
    padding: 0 40px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .wrap_1600 {
    padding: 0 20px;
  }
}

/* footer */
.footer {
  width: 100%;
  height: 100%;
  padding: 4.6875vw 0 7.8125vw;
  background-color: #121112;
}
.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .footer__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 4.6875vw;
  }
}
.footer__nav--item {
  margin-left: 5.2083333333vw;
}
@media only screen and (max-width: 1023px) {
  .footer__nav--item {
    width: 100%;
  }
  .footer__nav--item:nth-child(n+2) {
    margin-top: 4.6511627907vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav--item {
    margin-left: 0;
  }
}
.footer__nav--list:nth-child(n+2) {
  margin-top: 1.8229166667vw;
}
@media only screen and (max-width: 1023px) {
  .footer__nav--list:nth-child(n+2) {
    margin-top: 4.6875vw;
  }
}

.footer__logo {
  width: 18.44vw;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 100%;
  }
}

.footer__nav-item {
  line-height: 1.5;
  font-family: "Libre Baskerville", serif;
}

.footer__nav-title {
  color: #fff;
  font-size: 0.94vw;
}
@media only screen and (max-width: 767px) {
  .footer__nav-title {
    font-size: 3.7209302326vw;
  }
}
.footer__nav-link {
  color: #fff;
  font-size: 0.94vw;
  font-weight: 400;
  position: relative;
  padding-left: 0.8333333333vw;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1023px) {
  .footer__nav-link {
    font-size: 1.5640273705vw;
    padding-left: calc(8px + 0.6976744186vw);
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav-link {
    font-size: 3.5vw;
  }
}
.footer__nav-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer__nav-link:before {
  position: absolute;
  content: "";
  width: 0.4166666667vw;
  height: 2px;
  background-color: #009e6f;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width: 1023px) {
  .footer__nav-link:before {
    width: 0.6976744186vw;
  }
}

.c-section-slide-wrap {
  position: relative;
}

.c-section-slide {
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.25));
  border-radius: 12px;
}
.c-section-slide .swiper-pagination-bullet {
  background-color: #000;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  margin: 0 !important;
}
@media only screen and (max-width: 480px) {
  .c-section-slide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.c-section-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.c-section-slide .js-swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 15px;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media only screen and (max-width: 480px) {
  .c-section-slide .js-swiper-pagination {
    gap: 12px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  aspect-ratio: 1/1;
  width: 50px;
  height: auto;
  background-color: #009e6f;
  border-radius: 50%;
}
@media only screen and (max-width: 480px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    max-width: 40px;
    max-height: 40px;
  }
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 16px;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .swiper-button-prev::before,
  .swiper-button-next::before {
    width: 12px;
  }
}

@media only screen and (max-width: 480px) {
  .swiper-button-prev {
    left: 0px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.swiper-button-prev::before {
  left: 58%;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (max-width: 480px) {
  .swiper-button-next {
    right: 0;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
.swiper-button-next::before {
  left: 45%;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}