@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　sensu シンガポール　テンプレート設定(template-style.css)ver.1 2025.8.6
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*赤*/
/*ピンク寄りの赤*/
/*オレンジ寄りの赤*/
/*オレンジ*/
/*ベージュ*/
/*薄いベージュ*/
/*濃い赤茶*/
/*■■■■■■ HEADER ■■■■■■■*/
header {
  margin: 0;
  padding: 10px 0;
  height: 100vh;
  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-align: center;
      -ms-flex-align: center;
          align-items: center; /* 横中央 */
  /* justify-contentは後で調整 */
  position: relative;
}

.header-logo-box {
  margin-top: 5vh; /* 画面高さの割合で余白調整 */
  /* 横幅はロゴ画像のmax幅に合わせて調整 */
  max-width: 685px;
  width: 50vw; /* ビューポート幅の50%を目安に */
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 縮まらないように */
}

.header-logo-box a {
  display: block;
  width: 100%;
  height: auto;
}

.header-logo-box img {
  width: 100%;
  height: auto;
  max-width: 685px;
  max-height: 20vh; /* 画面高さに対して最大高さを制限 */
  -o-object-fit: contain;
     object-fit: contain;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.footer-flex-box {
  padding: 0;
  width: 100%;
  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;
}

/*■■■■■■ FOOTER ■■■■■■■*/
/*ロゴ*/
.logo-block {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo-block img {
  width: 190px;
  height: auto;
}
.logo-block a {
  opacity: 1;
}
.logo-block a:hover {
  opacity: 0.75;
}

footer {
  margin: 0;
  padding: 44px 0;
  color: #fff;
  background-color: #7f7f7f;
}

/*■■■■■■ NAVIGATION & HAMBURGER ■■■■■■■*/
/*ハンバーガーメニュー*/
.nav {
  position: fixed;
  top: -100vh; /* 右から出てくる */
  left: 0;
  width: 100%; /* スマホに収まるサイズ */
  height: 100%;
  padding-top: 70px;
  background: rgba(222, 222, 190, 0.7);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 400;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  -webkit-filter: drop-shadow(#999 0 0 0.3rem);
          filter: drop-shadow(#999 0 0 0.3rem);
  text-align: center;
}

.hamburger {
  padding-top: 0;
  margin-right: 0;
  position: fixed;
  right: 15px;
  top: 15px;
  width: 48px; /* クリックしやすい幅 */
  height: 48px; /* クリックしやすい高さ */
  cursor: pointer;
  z-index: 401;
  font-size: 0.9rem;
  text-align: center;
}

.nav.nav_list {
  overflow-y: scroll;
}

.nav_list {
  margin: 32px auto 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
}
.nav_list li {
  margin: x 0;
  padding: 10px 16px;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.nav_list li a {
  font-size: 5rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.nav_list li a span {
  font-size: 2.5rem;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  position: relative;
  top: 3px; /* ← ここで上げる。好みで数値調整 */
}
.nav_list li a:link, .nav_list li a:visited {
  color: #222;
}
.nav_list li a:hover, .nav_list li a:active {
  color: #ff264b;
}

.nav_item {
  text-align: center;
  padding: 0 14px;
}

.nav_item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.nav_item a:hover {
  background-color: #eee;
}

.hamburger_border {
  position: absolute;
  right: 4px;
  width: 40px;
  height: 2px;
  background-color: #222;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.hamburger_border_top {
  top: 14px;
}

.hamburger_border_center {
  top: 23px;
}

.hamburger_border_bottom {
  top: 32px;
}

/* 表示された時用のCSS */
.nav-open .nav {
  top: 0;
  left: 0;
}

.nav-open .black_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger_border_top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 22px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 22px;
}

.nav-open .hamburger_border {
  position: absolute;
  background-color: #222;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-open .hamburger_border_center {
  display: none;
}

/*■■■■■■■ トップに戻るボタン ■■■■■■*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #FFF;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  background: #CCC;
}

.pagetop:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-width: 4px 0 0 4px;
  border-color: #7f7f7f;
  border-style: solid;
  position: absolute;
  bottom: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ HEADER ■■■■■■■*/
  header {
    /* 横幅いっぱい、高さも横幅に合わせて正方形に */
    width: 100vw;
    height: 90vw; /* 正方形に */
    padding: 10px 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /* ロゴは上に */
    position: relative;
  }
  /*■■■■■■ FOOTER (XS) ■■■■■■■*/
  footer {
    margin: 0;
    padding: 15px 0 10px;
    color: #fff;
    background-color: #7f7f7f;
    font-size: 0;
  }
  /*ロゴ*/
  .logo-block {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-block img {
    width: 120px;
    height: auto;
  }
  /*■■■■■■ HAMBURGER MENU (XS) ■■■■■■■*/
  .nav_list li {
    margin: x 0;
    padding: 10px 16px;
    position: relative;
    border-bottom: 1px solid #CCC;
  }
  .nav_list li a {
    font-size: 3rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-style: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .nav_list li a span {
    font-size: 2rem;
    font-family: "corporate-logo-ver2", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    position: relative;
    top: 3px; /* ← ここで上げる。好みで数値調整 */
  }
  .nav_list li a:link, .nav_list li a:visited {
    color: #222;
  }
  .nav_list li a:hover, .nav_list li a:active {
    color: #ff264b;
  }
  /*■■■■■■■ トップに戻るボタン ■■■■■■*/
  .pagetop {
    bottom: 34px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ HEADER (SM) ■■■■■■■*/
  header {
    /* 横幅いっぱい、高さも横幅に合わせて正方形に */
    width: 100vw;
    height: 90vw; /* 正方形に */
    padding: 10px 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /* ロゴは上に */
    position: relative;
  }
  /*■■■■■■ FOOTER (SM) ■■■■■■■*/
  footer {
    margin: 0;
    padding: 20px 0 20px;
    color: #fff;
    background-color: #7f7f7f;
    font-size: 0;
  }
  /*ロゴ*/
  .logo-block {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-block img {
    width: 160px;
    height: auto;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■ HEADER (SM) ■■■■■■■*/
  header {
    /* 横幅いっぱい、高さも横幅に合わせて正方形に */
    width: 100vw;
    height: 70vw; /* 正方形に */
    padding: 10px 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /* ロゴは上に */
    position: relative;
  }
  /*■■■■■■ FOOTER (MD) ■■■■■■■*/
  footer {
    margin: 0;
    padding: 20px 0 20px;
    color: #fff;
    background-color: #7f7f7f;
    font-size: 0;
  }
  /*ロゴ*/
  .logo-block {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-block img {
    width: 160px;
    height: auto;
  }
} /*//MD*/
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  /*■■■■■■ HEADER (LG) ■■■■■■■*/
  header {
    /* 横幅いっぱい、高さも横幅に合わせて正方形に */
    width: 100vw;
    height: 70vw; /* 正方形に */
    padding: 10px 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /* ロゴは上に */
    position: relative;
  }
  .header-logo-box {
    max-width: 50vw; /* ロゴは画面幅の70%くらい */
    width: 50vw;
    margin-top: 8vw;
  }
  .header-logo-box img {
    width: 100%;
    height: auto;
    max-height: 18vw; /* 高さ制限 */
    -o-object-fit: contain;
       object-fit: contain;
  }
  /*■■■■■■ FOOTER (LG) ■■■■■■■*/
  /*ロゴ*/
  .logo-block {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-block img {
    width: 220px;
    height: auto;
  }
  footer {
    margin: 0;
    padding: 44px 0;
    color: #fff;
    background-color: #7f7f7f;
  }
} /*//LG*/
/*------------(XL)------------*/
/*//XL*/