@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 基本スタイル
====================================== */

html {
  font-size: 62.5%;
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: source-han-sans-japanese, "Yu Gothic", yugothic,
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo,
    "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #000;
  position: relative;
}

.fade-huwari {
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 1.6rem;
  font-weight: normal;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  text-decoration: none;
  opacity: 0.5;
}

ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

/* 基本 フォーム
====================================== */

/* input
-------------------------------------- */

input {
  width: auto;
  max-width: 100%;
  padding: 0.4em 0.8em;
  background-color: #fff;
  border: none;
  border-radius: 5em;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/* テキストエリア
-------------------------------------- */

textarea {
  width: auto;
  max-width: 100%;
  height: 100px;
  padding: 0.4em 0.8em;
  background-color: #fff;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/* ラジオボタン
-------------------------------------- */

input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

input[type="radio"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #949494;
  background: #fff;
  border-radius: 50%;
}

input[type="radio"] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bfcf54;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
}

/* チェックボックス
-------------------------------------- */

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

input[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #949494;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="checkbox"] + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #bfcf54;
  border-bottom: 3px solid #bfcf54;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

/* セレクト
-------------------------------------- */

.c-select {
  display: inline-block;
  border: none;
  background: #fff;
  border-radius: 5em;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.c-select::after {
  content: "\f078";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0.3em;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-select select {
  width: 100%;
  padding: 5px 35px 5px 10px;
}

.c-select:focus-within::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* レイアウト メインナビゲーション
====================================== */

.l-nav {
  display: none;
  max-width: 1106px;
  z-index: 20;
  position: relative;
}

.l-nav-sp {
  width: 100%;
  max-width: 500px;
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px 100px;
  background: rgba(235, 231, 211, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  font-size: 18px;
}

.l-nav-sp.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-nav-sp .p-nav-sp {
  padding-top: 60px;
}

/* レイアウト ヘッダー
====================================== */

.l-header {
  position: relative;
  width: 100%;
  z-index: 15;
  padding: 20px 35px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

/* レイアウト ドロワー
====================================== */

.l-drawer {
  display: block;
  position: fixed;
  top: 35px;
  right: 26px;
  z-index: 40;
}

/* レイアウト フッター
====================================== */
.l-footer {
  padding-bottom: 200px;
}

.footer-contents {
  gap: 20px;
  grid-template-columns: 2fr 3fr;
  padding: 140px 60px 80px;
}

.footer-address {
  font-size: 2.4rem;
  padding-top: 40px;
}

.footer-menu .flex {
  flex-wrap: wrap;
  flex-direction: column;
  height: 200px;
}

.footer-menu ul li a {
  display: block;
  font-size: 2rem;
  line-height: 1.75;
}

.sns-icon {
  display: flex;
  padding-top: 10px;
}

.sns-icon a {
  margin-right: 15px;
}

@media (max-width: 1300px) {
  .footer-logo img {
    width: 250px;
  }

  .footer-address,
  .footer-menu ul li a {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .l-footer {
    padding-bottom: 100px;
  }

  .footer-contents {
    padding: 60px 0 30px;
  }

  .sns-icon a img {
    width: 45px;
  }
}

@media (max-width: 767px) {
  .footer-contents {
    grid-template-columns: 1fr;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 565px) {
  .footer-menu ul li a {
    font-size: 1.4rem;
  }
}

/* バナーエリア */
.footer-bnr {
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1290px;
  margin: 0 auto 78px;
}

.footer-bnr--item a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  font-size: 2.4rem;
}

@media (max-width: 1300px) {
  .copyright {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .footer-bnr .footer-bnr--item {
    margin: 0 auto;
  }
}

@media (max-width: 565px) {
  .footer-bnr {
    gap: 10px;
    margin-bottom: 45px;
  }

  .copyright {
    font-size: 1.4rem;
  }
}

/* 閉じるボタン
-------------------------------------- */

.c-button-close {
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.c-button-close span {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-button-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-button-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* js ボタン用
-------------------------------------- */

.js-modal-open {
  cursor: pointer;
}

.js-top-button {
  cursor: pointer;
}

/* コンポーネント ドロワー
====================================== */

.c-drawer {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 25px;
}

.c-drawer__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-drawer__bar:not(:last-child) {
  margin-bottom: 2px;
}

.c-drawer .c-drawer__bar {
  position: absolute;
  width: 30px;
  margin-bottom: 0;
}
.c-drawer .c-drawer__bar:nth-child(1) {
  top: 3px;
  left: 0;
}

.c-drawer .c-drawer__bar:nth-child(2) {
  top: 12px;
  left: 0;
}

.c-drawer .c-drawer__bar:nth-child(3) {
  top: 21px;
  left: 0;
}

.c-drawer.is-active .c-drawer__bar {
  position: absolute;
  width: 30px;
  margin-bottom: 0;
}

.c-drawer.is-active .c-drawer__bar:nth-child(1) {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}

.c-drawer.is-active .c-drawer__bar:nth-child(2) {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-drawer.is-active .c-drawer__bar:nth-child(3) {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ヘッダー
====================================== */

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 20px;
}

.p-header__logo {
  width: clamp(160px, 48.006vw, 200px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.is-fixed .p-header__logo {
  width: clamp(160px, 48.006vw, 200px);
}

.p-header__list {
  background: #fff;
  border-radius: 5em;
  padding: 5px 20px;
  font-size: 1.4rem;
}

.p-header__list p {
  text-align: center;
}

.p-header__list p::before {
  content: "●";
}

.p-header__list .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-header__list .swiper-slide {
  white-space: nowrap;
}

/* ドロワー 枠
-------------------------------------- */

.p-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #346651;
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.16));
}

/* メインナビゲーション PC版
====================================== */

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.p-nav__item {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  border-right: 1px solid #000;
  line-height: 1;
}

.p-nav__item:last-child {
  border-right: none;
}

.p-nav__item a,
.p-nav__item p {
  font-size: 1.8rem;
}

.p-nav__item > a,
.p-nav__item > p {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.p-nav__item > a span {
  display: block;
  padding-left: 25px;
  padding-right: 25px;
}

.p-nav__item:last-child > a span {
  padding-right: 0;
}

li.p-nav__item:hover::before {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  content: "●";
  color: #346651;
}
@media (max-width: 1390px) {
  .p-nav__item a,
  .p-nav__item p {
    font-size: 1.6rem;
  }

  .p-nav__item > a span {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* メインナビゲーション SP版
====================================== */

.p-nav-sp-item > a,
.p-nav-sp-item > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 1px dotted #000;
}

.p-nav-sp-item > a.js-toggle-open::after,
.p-nav-sp-item > p.js-toggle-open::after {
  content: "";
  margin-left: 20px;
  width: 8px;
  height: 10px;
  background-color: #fff;
  -webkit-clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
  clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-nav-sp-item > a.js-toggle-open.is-open::after,
.p-nav-sp-item > p.js-toggle-open.is-open::after {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-nav-sp-item .p-nav-treatment {
  margin-bottom: 1px;
}

.p-nav-sp-item.sp-item-bnr > a {
  padding: 0;
}

/* メインナビゲーション インフォメーション
====================================== */
.header--guide.flex {
  justify-content: space-between;
  align-items: center;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 20px;
}

.is-fixed .header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: clamp(150px, 86.972px + 16.808vw, 329px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.is-fixed .header__logo {
  width: clamp(160px, 48.006vw, 200px);
}

/* フェードイン
====================================== */

.js-fadeIn,
.js-intro {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: filter;
}

.js-fadeIn--fade,
.js-intro--fade {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.js-fadeIn.in,
.js-intro.in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  will-change: filter;
}

.js-fadeIn .js-fadeIn__child,
.js-intro .js-fadeIn__child {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: filter;
}

.js-fadeIn .js-fadeIn__child.in,
.js-intro .js-fadeIn__child.in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  will-change: filter;
}

@media screen and (min-width: 991px) {
  .l-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
  }

  .is-fixed .l-nav {
    margin-right: 25px;
  }

  .l-nav-sp {
    display: none;
  }

  .l-nav-sp.is-show {
    display: block;
  }

  .l-header.is-hidden {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    /* 上にスライドして非表示 */
    opacity: 0;
  }

  .l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    padding: 17px 35px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /* スライドイン（通常位置） */
  }

  .l-drawer {
    display: none;
  }

  .p-header__logo {
    width: clamp(150px, 106.553px + 11.586vw, 329px);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .is-fixed .p-header__logo {
    width: clamp(200px, 13.9vw, 250px);
  }

  .p-header__main {
    margin-left: auto;
  }
}

@media screen and (min-width: 1300px) {
  .is-fixed .l-nav {
    margin-right: 75px;
  }

  .l-header.is-fixed {
    padding: 17px 35px;
  }

  .l-header.is-fixed .header--guide {
    display: none;
  }
}

@media screen and (min-width: 1601px) {
  .p-header__list .swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(15px, 1.8235vw, 35px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-header__list .swiper-wrapper,
  .p-header__list .swiper-slide {
    display: contents;
  }
}

@media (max-width: 1500px) {
  .header--guide.flex p.head-intro {
    width: 40%;
  }
}

@media (max-width: 1280px) {
  .l-header {
    padding: 22px 15px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.4rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 1.4rem;
  }

  .p-header {
    justify-content: flex-start;
  }

  .l-header__inner .header--guide.flex {
    display: none;
  }
}

/* 臨時：固定ページのh1非表示 */
div#page #header {
  display: none;
}

.grecaptcha-badge {display:none !important;}

/*# sourceMappingURL=common.css.map */
