@charset "UTF-8";

/* 全体的な設定 */
html {
    font-size: 10px;
    height: 100%;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
  }
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
/* フォント */
.font-k {
  font-family: 'font-k', sans-serif;
}
@media screen and (max-width: 750px) {
  body,
  input,
  select,
  textarea {
      font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  body,
  input,
  select,
  textarea {
      font-size: 16px;
  }
}


/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.p-header__inner {
  max-width: 750px;
  margin: 0 auto;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.p-header__title-a {
  position: relative;
  z-index: 100;
}
.p-header__title {
  max-width: 280px;
  margin-bottom: 0;
}
.p-hamburger {
  display: block;
  width: 70px;
  height: 100%;
  position: relative;
  z-index: 100;
}
.line-area1 img {
  width: 60px;
  height: auto;
}
.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: 3px;
  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;
}
.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: -6px;
  transform: translateX(-50%) rotate(-225deg);
}
.p-header__box {
  display: none;
  top: 0;
  position: absolute;
  opacity: 0; 
  height: 100vh;
  width: 750px;
  background-color: #FEF7CB;
}
.p-header__box.is-active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed; 
  top: 0;
  left: 50%;
  transform: translate(-50%);
  opacity: 1;
  height: 100vh;
  width: 750px;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 10px;
}
.p-nav__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: initial;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-nav__list {
  margin-bottom: 20px;
}
.p-nav__item {
  margin-bottom: 20px;
}
.p-nav__link {
  color: #000;
  font-size: 22px;
  display: block;
  width: 100%;
  border-bottom: 5px solid #FFD800;
  text-align: center;
  padding-bottom: 5px;
}
header .btn-area {
  width: 330px;
  padding: 0;
}
header .btn-area a {
  padding: 10px;
}
header .btn-area a .white {
    font-size: 24px;
}
header .btn-area a .yellow {
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .p-header__title {
    max-width: 220px;
  }
  .line-area1 img {
      width: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav__item {
    margin-bottom: 12px;
  }
  .p-nav__link {
    font-size: 18px;
  }
  header .btn-area a .white {
    font-size: 20px;
  }
  header .btn-area a .yellow {
    font-size: 16px;
  }
  header .btn-area a {
    padding: 8px;
    max-width: 280px;
  }
}
@media screen and (max-width: 390px) {
  .p-header__title {
    max-width: 180px;
  }
  .p-nav__link {
    font-size: 16px;
  }
  header .btn-area a .white {
    font-size: 16px;
  }
  header .btn-area a .yellow {
    font-size: 14px;
  }
  .line-area1 img {
    width: 35px;
  }
  .c-hamburger span:nth-of-type(1) {
    top: -6px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: -1px;
  }
  .c-hamburger span:nth-of-type(3) {
    top: 4px;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding: 40px 0 0;
  background-color: #000;
  color: #fff;
}
footer h2 {
  font-size: 48px;
}
footer .logo-area {
  max-width: 90%;
  margin: 0 auto;
}
footer ul {
  display: flex;
  flex-direction: column;
  justify-content: left;
  column-gap: 60px;
  margin-bottom: 40px;
}
footer ul li {
  text-align: left;
  padding: 20px 0 20px 0;
  position: relative;
  font-size: 22px;
}
footer ul li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-image: 
    radial-gradient(circle at 13px 2px, #ffffff 2px, transparent 2px), 
    radial-gradient(circle at 13px 2px, #ffffff 2px, transparent 2px),
    linear-gradient(to right, #ffffff 2px, #ffffff 13px, transparent 13px, transparent 30px);
  background-repeat: repeat-x;
  background-size: 30px 4px;
  background-position: left bottom;
}
footer ul li:last-child::after {
  display: none;
}
footer ul li h3 {
  font-size: 28px;
  color: #FFD500;
  margin-bottom: 5px;
}
footer .copy-area {
  background-color: #fff;
}
footer .copy-inner {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
.footer-cat {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 130px;
}
footer small {
  font-size: 14px;
  color: #000;
}
footer ul li p br {
  display: none;
}
footer small br {
  display: none;
}
@media screen and (max-width: 750px) {
  footer .section-inner {
    padding: 0 20px;
  }
  footer h2 {
    font-size: 7vw;
  }
  footer ul li h3 {
    font-size: 4vw;
  }
  footer ul li p {
    font-size: 3.3vw;
  }
  footer .copy {
    line-height: 1;
    font-size: 12px;
  }
  footer small br {
    display: block;
  }
  .footer-cat {
    bottom: -57px;
  }
}
@media screen and (max-width: 520px) {
  footer ul li::after {
      background-size: 20px 2px;
  }
  .footer-cat {
   width: 20vw;
  }
}
@media screen and (max-width: 420px) {
footer ul li {
    padding: 10px 0;
}
footer ul li p br {
  display: block;
}
.footer-cat {
    width: 25vw;
    right: 10px;
    bottom: 0;
}
}


/*---------------------*/
/* 全体共通 */
.section-inner {
  max-width: 750px;
  margin: 0 auto;
}


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

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1s, transform 1s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s, transform 1s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}

/* テキストアンダーライン */
.t-li {
  background-image: linear-gradient(#FFD500, #FFD500);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 3px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}
.t-li:hover {
  background-position: bottom left;
  background-size: 100% 3px;
}