@charset "UTF-8";

/* 全体的な設定 */
html {
  height: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 16px × 0.625 = 10px */
  /* visibility: hidden; */
}
/* html.wf-active {
    visibility: visible;
  } */
body {
  height: 100%;
  height: 100dvh;
}
body,
input,
select,
textarea,
span {
  font-family:
    "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
.font-a {
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
}
/* JSでbodyに付与する固定用クラス */
body.is-fixed {
  overflow: hidden;
  height: 100%;
}
/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1;
}
/* リンク */
a {
  text-decoration: none;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media screen and (max-width: 430px) {
  body,
  input,
  select,
  textarea,
  span {
    font-size: 1.4rem;
  }
}

/* 問い合わせフォームで非表示にするclass */
.wpcf7-spinner {
  display: none !important;
}

/* CSS変数カスタムプロパティ */
:root {
  --header-height: 90px; /* PCでのヘッダーの高さ */
}
@media screen and (max-width: 1250px) {
  :root {
    --header-height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
}
.p-header {
  display: block;
  background: #fff;
}
.p-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 0px 0 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.p-header .header-title-a {
  position: absolute;
  left: 10px;
  z-index: 10x;
}
.p-header .header-title {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.p-header .header-title span {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.p-header .section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.p-nav.header-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  transition:
    right 0.6s,
    opacity 0.6s;
  position: static;
  opacity: 1;
  height: inherit;
  background: transparent;
  width: auto;
  padding: 0;
}
.p-nav .nav-inner {
  display: flex;
}
.p-nav .nav-list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
}
.p-nav .nav-item {
  position: relative;
  width: auto;
  display: flex;
  list-style: none;
  transition: all 0.2s ease-in;
}
.p-nav .nav-item:hover {
  opacity: 0.9;
}
.p-nav .nav-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 30px 8px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.p-nav .nav-item.-top a {
  background-color: #a5e367;
}
.p-nav .nav-item.-what a {
  background-color: #e50011;
}
.p-nav .nav-item.-fair a {
  background-color: #ffa700;
}
.p-nav .nav-item a::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 4.6rem;
  height: 3.8rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: transform 0.3s ease;
}
.p-nav .-top a::before {
  background-image: url("../images/common/icon-home.svg");
}
.p-nav .-what a::before {
  background-image: url("../images/common/icon-q.svg");
}
.p-nav .-fair a::before {
  background-image: url("../images/common/icon-gift.svg");
}
.p-nav .nav-link {
  color: #000;
  font-weight: bold;
  display: block;
  width: 100%;
}
.p-header .header-title-a.sp-only {
  display: none;
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
@media screen and (max-width: 1250px) {
  .p-header .header-title {
    font-size: 1.6rem;
  }
  .p-header .header-title span {
    font-size: 2.4rem;
  }
  .p-nav .nav-item a {
    padding: 42px 20px 10px;
    font-size: 1.4rem;
  }
  .p-nav .nav-item a::before {
    width: 3.6rem;
    height: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-nav .nav-item a {
    padding: 38px 15px 4px;
    border-radius: 0 0 14px 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-nav.header-box {
    position: fixed;
    top: 0;
    right: -100%;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 0 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .p-nav.header-box.is-active {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    opacity: 1;
  }
  .p-nav .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    justify-content: center;
  }
  .p-header .header-title {
    font-size: 1.4rem;
  }
  .p-header .header-title span {
    font-size: 2.2rem;
  }
  .p-nav .nav-list {
    padding-right: 20px;
    padding-left: 20px;
    display: block;
    width: 80%;
  }
  .p-nav .nav-item {
    margin-bottom: 20px;
  }
  .p-nav .nav-item a {
    padding: 40px 20px 10px;
    border-radius: 15px;
  }
  .p-header .header-title-a.sp-only {
    position: relative;
    display: block;
    margin-top: 20px;
    left: 0;
  }
  .p-hamburger {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .p-header .header-title {
    font-size: 1.3rem;
  }
  .p-header .header-title span {
    font-size: 2rem;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 30px;
  background-color: #fff001;
}
footer .name-area {
  margin-bottom: 40px;
}
footer .name-area p {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
footer .name-area p span {
  font-size: 3.6rem;
  font-weight: 900;
}
footer .logo-area {
  max-width: 530px;
  margin: 0 auto 60px;
  display: flex;
  column-gap: 30px;
}
.footer-nav ul {
  justify-content: center;
  column-gap: 60px;
  margin-bottom: 50px;
  display: flex;
  gap: 5rem;
  list-style: none;
}
.footer-nav .nav-item {
  transition:
    opacity 0.3s ease-in,
    transform 0.3s ease-out;
}
.footer-nav .nav-item:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}
.footer-nav .nav-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
}
.footer-nav .nav-item a::before {
  content: "";
  position: absolute;
  top: 0;
  width: 5.5rem;
  height: 4.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: transform 0.3s ease;
}
.footer-nav .-top a::before {
  background-image: url("../images/common/icon-home_black.svg");
}
.footer-nav .-what a::before {
  background-image: url("../images/common/icon-q-black.svg");
}
.footer-nav .-fair a::before {
  background-image: url("../images/common/icon-gift-black.svg");
}
.footer-nav .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
}
footer small {
  font-size: 1.2rem;
  font-weight: bold;
}
footer small br {
  display: none;
}
@media screen and (max-width: 1024px) {
  footer {
    padding-top: 130px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 100px;
  }
  footer .name-area {
    margin-bottom: 20px;
  }
  footer .name-area p {
    font-size: 2.2rem;
  }
  footer .name-area p span {
    font-size: 3.2rem;
  }
  footer .logo-area {
    max-width: 380px;
    margin: 0 auto 40px;
    column-gap: 20px;
  }
  .footer-nav .nav-list {
    gap: 3rem;
    margin-bottom: 30px;
  }
  .footer-nav .nav-item a {
    padding-top: 4rem;
    font-size: 1.4rem;
  }
  .footer-nav .nav-item a::before {
    width: 4.5rem;
    height: 3.5rem;
  }
  footer small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  footer .copy-area {
    line-height: 1.4;
  }
  footer small br {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  footer {
    padding-top: 80px;
  }
  footer .logo-area {
    max-width: 90%;
  }
  footer .name-area p {
    font-size: 1.7rem;
  }
  footer .name-area p span {
    font-size: 2.6rem;
  }
  .footer-nav .nav-list {
    gap: 2rem;
  }
  .footer-nav .nav-item a {
    padding-top: 3rem;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
  .footer-nav .nav-item a::before {
    width: 3.5rem;
    height: 2.5rem;
  }
  .footer-nav .nav-item a::after {
    height: 4px;
  }
}

/*---------------------*/
/* 全体共通 */
.page-top {
  margin-top: var(--header-height);
}
.section {
  padding: 60px 0 150px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* 斜めセクション */
.slant {
  position: relative;
  margin-top: -150px;
  padding-top: 150px;
  overflow: hidden;
  z-index: 10;
}
.slant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top: 5px solid #000;
  transform: skewY(-4deg);
  transform-origin: top right;
  z-index: -1;
}
.slant .section-inner {
  position: relative;
  z-index: 2;
}
/* 斜めセクション逆ver */
.slant-reverse {
  position: relative;
  margin-top: -150px;
  padding-top: 150px;
  overflow: hidden;
  z-index: 10;
}
.slant-reverse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top: 0.5rem solid #000;
  transform: skewY(4deg);
  transform-origin: top left;
  z-index: -1;
}
.slant-reverse .section-inner {
  position: relative;
  z-index: 2;
}
/* 右下バージョン（右下を起点に左下へ） */
.slant-bottom-right {
  position: relative;
  padding-bottom: 150px;
  z-index: 10;
}
.slant-bottom-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-bottom: 5px solid #000;
  transform: skewY(-4deg);
  transform-origin: bottom right;
  z-index: -1;
}
.slant-bottom-right .section-inner {
  position: relative;
  z-index: 2;
}
/* 左下バージョン（左下を起点に右下へ） */
.slant-bottom-left {
  position: relative;
  padding-bottom: 30px;
  z-index: 10;
}
.slant-bottom-left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-bottom: 5px solid #000;
  transform: skewY(4deg);
  transform-origin: bottom left;
  z-index: -1;
}
.slant-bottom-left .section-inner {
  position: relative;
  z-index: 2;
}

/* 上下で違う向きの斜線（上が左上がり、下が左下がり） */
.slant-both-custom {
  position: relative;
  margin-top: -150px;
  padding-top: 150px;
  padding-bottom: 50px;
  z-index: 10;
}
.slant-both-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  border-top: 5px solid #000;
  transform: skewY(4deg);
  transform-origin: top left;
  z-index: -1;
}
.slant-both-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  border-bottom: 5px solid #000;
  transform: skewY(-4deg);
  transform-origin: bottom right;
  z-index: -1;
}
.slant-both-custom .section-inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .slant {
    padding-top: 130px;
  }
  .slant-both-custom {
    padding-top: 130px;
  }
}
@media screen and (max-width: 767px) {
  .slant {
    padding-top: 100px;
  }
  .slant-both-custom {
    padding-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  .section-inner {
    padding: 0 20px;
  }
}

/*---------------------*/
/* 全体共通　タイトル */
.title-area {
  margin-bottom: 30px;
}
.title-area .t-en {
  font-size: 2rem;
  margin-bottom: 10px;
}
.title-area .t-ja {
  font-size: 3.8rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .title-area .t-en {
    font-size: 1.6rem;
  }
  .title-area .t-ja {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .title-area .t-ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .title-area .t-ja {
    font-size: 2.4rem;
  }
}

/*---------------------*/
/* 全体共通　ボタン */
.btn-area {
  text-align: center;
}
.btn-area .btn {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px;
  width: 300px;
  margin: 0 auto;
  border: 3px solid #000;
  border-radius: 35px;
  background-color: #fff;
  transition: transform 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-area .btn:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 1024px) {
  .btn-area .btn {
    font-size: 1.6rem;
    padding: 7px;
    width: 230px;
  }
}
@media screen and (max-width: 430px) {
  .btn-area .btn {
    font-size: 1.4rem;
    padding: 5px;
    width: 200px;
  }
}

/*---------------------*/
/* 全体共通　改行 */
.tab-br {
  display: none;
}
.sp-br {
  display: none;
}
.sp2-br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab-br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .sp2-br {
    display: block;
  }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 画像をぼかして徐々に表示 */
.fadeBlurIn {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity 1s ease-out,
    filter 1s ease-out;
  will-change: opacity, filter;
}
.fadeBlurIn.is-show {
  opacity: 1;
  filter: blur(0);
}
