@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@700&display=swap');

/*基本設定
---------------------------------------------------------- */
html {
  margin-top: 0 !important;
  height: 100%;
  min-height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

html,
body {
  height: 100%;
  width: 100%;
}

:root {
  --orange01: #FF8F0F;
  --orange02: #F6B24B;
  --blue: #6C92D7;
  --black: #333;
  --brown: #F3E8DC;
}

body {
  position: relative;
  height: 100%;
  color: var(--black);
  line-height: normal;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  *font-size: small;
  *font: x-small;
  counter-reset: number 0;
}


img {
  max-width: 100%;
  width: auto;
}

a {
  display: inline-block;
  color: var(--black);
  transition: .5s;
  -webkit-transition: .5s;
}

a:hover {
  opacity: .5;
}

/* header
---------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.l-header_logo {
  margin: 16px 17px;
}

.l-header_item {
  height: 100%;
}

.l-header_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 80px;
  padding: 20px 0;
  text-align: center;
  color: var(--orange02);
  font-weight: 700;
}

.l-header_link._contact {
  background: var(--orange02);
  color: #fff;
}

@media (max-width: 768px) {
  .l-header {
    padding: 0 10px 0 15px;
    height: 74px;
  }

  .l-header_logo {
    margin: 0;
  }

  .l-header_logo img {
    height: 28px;
    width: auto;
  }

  .l-header_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 45px;
    height: 45px;
    border-radius: 50vh;
    background: var(--orange02);
  }

  .l-header_btn span,
  .l-header_btn::before,
  .l-header_btn::after {
    display: block;
    width: 70%;
    height: 3px;
    background: #fff;
  }

  .l-header_btn::before,
  .l-header_btn::after {
    content: "";
  }
}

/* 共通：スクロール固定（メニュー展開中） */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {

  /* 初期状態：SPでナビは非表示。開いたらスライドイン */
  .l-header_nav {
    position: fixed;
    top: 74px;
    /* .l-header の高さに合わせる */
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform .25s ease;
    display: block;
    /* pc_view でもSP時は制御を上書き */
  }

  .l-header.is-open .l-header_nav {
    transform: translateX(0);
  }

  /* 縦並びのメニュー */
  .l-header_lists {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .l-header_item {
    height: auto;
  }

  .l-header_link {
    width: 100%;
    height: auto;
    padding: 18px 20px;
    justify-content: flex-start;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  /* ハンバーガー → × 変形アニメ */
  .l-header_btn {
    position: relative;
    overflow: hidden;
    /* 余白を隠す */
  }

  .l-header_btn span,
  .l-header_btn::before,
  .l-header_btn::after {
    transition: transform .2s ease, opacity .2s ease;
  }

  /* 3本線の初期配置：
     ::before（上）と ::after（下）は中央基準で上下にずらす  */
  .l-header_btn::before,
  .l-header_btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 3px;
    background: #fff;
    transform: translate(-50%, -50%);
  }

  .l-header_btn::before {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .l-header_btn::after {
    transform: translate(-50%, calc(-50% + 7px));
  }

  /* 中央の線は既存の span を使用（位置は中央） */
  .l-header_btn span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 3px;
    background: #fff;
    transform: translate(-50%, -50%);
  }

  /* 開いたとき：中央線を消し、上下線を交差させて「×」に */
  .l-header.is-open .l-header_btn span {
    opacity: 0;
  }

  .l-header.is-open .l-header_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .l-header.is-open .l-header_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}


/* main
---------------------------------------------------------- */
.l-main {
  padding-top: 80px;
}

.w500 {
  width: 500px;
  margin: 0 auto;
}

.w850 {
  width: 850px;
  margin: 0 auto;
}

.w870 {
  width: 870px;
  margin: 0 auto;
}

.w910 {
  width: 910px;
  margin: 0 auto;
}

.w940 {
  width: 940px;
  margin: 0 auto;
}

.w980 {
  width: 980px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .l-main {
    padding-top: 74px;
  }

  .w500,
  .w850,
  .w870,
  .w910,
  .w940,
  .w980 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* footer
---------------------------------------------------------- */
.l-footer {
  padding: 50px 0 25px;
  background: var(--orange02);
  color: #fff;
}

.l-footer a {
  color: #fff;
}

.l-footer_nav {
  gap: 65px;
}

.l-footer_nav li {
  margin-bottom: 7px;
}

.l-footer_nav dl {
  display: flex;
  flex-wrap: wrap;
  width: 190px;
}

.l-footer_nav dt {
  width: 53px;
  padding-bottom: 7px;
}

.l-footer_nav dd {
  width: calc(100% - 53px);
  padding-bottom: 7px;
}

@media (max-width: 768px) {
  .l-footer {
    padding: 25px 0 10px;
  }

  .l-footer_info {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .l-footer_nav dt {
    width: 70px;
  }

  .l-footer_nav dd {
    width: calc(100% - 70px);
  }
}

/* general
---------------------------------------------------------- */

/*----------------------------------------
  flex
----------------------------------------*/
.u-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-flex._jc-c {
  justify-content: center;
}

.u-flex._jc-fs {
  justify-content: flex-start;
}

.u-flex._ai-fs {
  align-items: flex-start;
}

.u-flex._ai-s {
  align-items: stretch;
}

@media (max-width: 959px) {
  .u-flex._fd-c_sp {
    flex-direction: column;
  }

  .u-flex._fd-cr_sp {
    flex-direction: column-reverse;
  }

  .u-flex._jc-c_sp {
    justify-content: center;
  }

  .u-flex._jc-fs_sp {
    justify-content: flex-start;
  }

  .u-flex._ai-fs_sp {
    align-items: flex-start;
  }

  .u-flex._ai-s_sp {
    align-items: stretch;
  }

  .u-flex._ai-c_sp {
    align-items: center;
  }
}

/*----------------------------------------
  text
----------------------------------------*/
.txt_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

/*----------------------------------------
  title
----------------------------------------*/
.c-ttl {
  margin-bottom: 25px;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
}

.c-ttl._slash {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.c-ttl._slash::before,
.c-ttl._slash::after {
  content: "";
  display: block;
  border-top: var(--orange02) dashed 2px;
  width: 50px;
  height: 2px;
}

.c-ttl._slash::before {
  transform: rotate(-118deg);
}

.c-ttl._slash::after {
  transform: rotate(-60deg);
}

.cta-ttl {
  height: 30px;
  margin-bottom: 8px;
  color: #666;
  font-size: 1.6rem;
}

.cta-ttl.c-ttl._slash::before,
.cta-ttl.c-ttl._slash::after {
  width: 35px;
}

@media (max-width: 768px) {
  .c-ttl {
    font-size: 2.4rem;
  }

  .cta-ttl {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
  button
----------------------------------------*/
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 350px;
  height: 50px;
  background: var(--orange02);
  border-radius: 50vh;
  box-shadow: 0px 9px 0px #CD8C29;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  transition: .5s;
  cursor: pointer;
}

.c-btn:hover {
  box-shadow: none;
  transform: translateY(9px);
  opacity: 1;
}

.c-btn._blue {
  background: #538AED;
  box-shadow: 0px 9px 0px #4676CC;
}

.c-btn._green {
  background: #7AED50;
  box-shadow: 0px 9px 0px #5DB83C;
}

.c-btn._cta {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .c-btn {
    width: 100%;
  }
}


/* animation
---------------------------------------------------------- */
.js-fadeup {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1s, visibility 1s, transform .5s;
}

.js-fadeup._active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}

.js-fadein._active {
  opacity: 1;
  visibility: visible;
}