@charset "utf-8";

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(17px, 1.18vw);
  font-weight: 500;
  font-style: normal;
  line-height: 1.77;
  letter-spacing: 0.02em;
  color: #000;
  overflow-x: clip;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}
body.fixed {
  overflow: hidden;
}
/* ======================
font
========================= */
.f_zengo {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  /* 400,500,700,900 */
  font-style: normal;
}
.en,
.f_rlaqva {
  font-family: "rl-aqva",  sans-serif;
  font-weight: 900;
  font-style: normal;
}

.fw_4 {
  font-weight: 400;
}
.fw_5 {
  font-weight: 500;
}
.fw_7 {
  font-weight: 700;
}
.fw_9 {
  font-weight: 900;
}
/* ======================
common
========================= */
a {
  color: #000;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
a.no_link {
  pointer-events: none;
  opacity: 0.5;
}
a.sptel {
  pointer-events: none;
}
a.hv_opacity {
  transition: 0.3s;
}
a.hv_opacity:hover {
  opacity: 0.7;
}
.nolink {
  pointer-events: none;
  cursor: default;
}
.cl_wh {
  color: #fff;
}
.cl_gn {
  color: #00675b;
}
.cl_bk {
  color: #000;
}
.txt_c {
  text-align: center;
}
.txt_c span {
  display: inline-block;
}
.inner-1200 {
  width: 83.33vw;
  min-width: 1200px;
  margin: 0 auto;
}
.inner-1300 {
  width: 90.28vw;
  min-width: 1300px;
  margin: 0 auto;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}
.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}
img[src*="_sp"] {
  display: none;
}
.sp {
  display: none;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ilbk {
  display: inline-block;
}
.p_rltv {
  position: relative;
}
.p_sticky {
  position: sticky;
}

/* ======================
header
========================= */
header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: opacity 0.3s;
}
header.shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 83.33vw;
  min-width: 1200px;
  height: 5.56vw;
  min-height: 50px;
  padding-left: 4vw;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  width: 5.56vw;
  min-width: 50px;
  position: fixed;
  top: 0;
  left: 1.74vw;
  z-index: 999;
}
header.shadow .header__logo img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.header__navList {
  display: flex;
  justify-content: flex-end;
  gap: 0.2em 3.47vw;
}
.header__navList li a {
  font-size: max(18px, 1.25vw);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #00675b;
  position: relative;
}
.header__navList li a::after {
  content: "";
  width: 0;
  max-width: 2.78em;
  height: 1px;
  background: #00675b;
  position: absolute;
  bottom: -0.7em;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s;
}

.header__navList li.np a::after,
.header__navList li a:hover::after {
  width: 100%;
  opacity: 1;
}

/* トップページ */
.index_header {
  background: transparent;
  transition: background 0.6s ease, background-image 0.6s ease, opacity 0.6s ease;
}
.index_header .header__navList li a {
  color: #fff;
}
.index_header.shadow,
.index_header .header__navList li a::after {
  background: #fff;
}
.index_header.shadow .header__navList li a {
  color: #00675b;
}

.index_header.shadow .header__navList li a::after {
  background: #00675b;
}
/* ハンバーガーボタン */
.header__toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 0 0 0 10px;
  background: #00675b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.header__toggle span {
  display: inline-block;
  width: 45%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 14px;
  transition: all 0.3s ease;
}

.header__toggle span:nth-child(1) {
  top: 15px;
}
.header__toggle span:nth-child(2) {
  top: 23px;
}
.header__toggle span:nth-child(3) {
  top: 31px;
}

/* active時 */
.header__toggle.active {
  background: #fff;
}
.header__toggle.active span {
  background: #00675b;
}
.header__toggle.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

/* ============================
article
=============================== */
article {
  min-height: 85vh;
  padding-bottom: 20px;
  overflow-x: clip;
}
.s-heading {
  font-size: max(45px, 4.17vw);
  /* 1440→60px 980→45px */
  line-height: 1.08;
  letter-spacing: 0.07em;
}
.s-heading .en {
  display: block;
}
.s-heading .ja {
  font-size: max(13px, 33.33%);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  display: block;
}
.bg_wh {
  background-color: #fff;
}
.bg_yl {
  background-color: #efd465;
}
.bg_gn {
  background-color: #00675b;
}

/* ------------------
contact_bnr
---------------------*/
.contact_bnr {
  width: 9.72vw;
  min-width: 80px;
  position: sticky;
  bottom: 0;
  left: 100%;
  transform-origin: right bottom;
  transition: 0.3s;
  z-index: 2;
}
.contact_bnr:hover {
  scale: 1.2;
}
/* ------------------
js-slider
---------------------*/
.js-slider li {
  width: 18.75vw;
  min-width: 270px;
  margin: 0 max(20px, 1.39vw);
  border-radius: max(40px, 2.78vw);
  overflow: hidden;
}
/* ======================
footer
========================= */
footer {
  padding: max(30px, 3.13vw) 0;
}
footer a {
  color: #fff;
}
.footer__logo {
  width: 23.33%;
  /* 1440 → 280px */
}
.footer__r {
  width: 73.5%;
  /* 1440 → 878px */
}
.footer__r-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.39vw;
}
.footer__contact {
  width: 43.28%;
  /* 878 → 380px */
}
.footer__contact p {
  font-size: max(18px, 1.74vw);
  /* 1440 → 25px */
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: 0.1em;
  padding-top: 0.5em;
}
.footer__contact .tel_Wrap {
  border-bottom: 2px solid #fff;
  margin-bottom: 5px;
}
.footer__contact .sptel {
  font-size: max(28px, 3.33vw);
  /* 1440 → 50px */
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 0.28em;
}
.footer__contact .sptel::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url(../imgs/common/f_tel.png) no-repeat center/contain;
}
.footer__contact .mail {
  font-size: max(15px, 1.25vw);
  word-break: break-all;
  /* 1440 → 18px */
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.05em;
  padding-left: 0.55em;
  display: flex;
  align-items: center;
  gap: 1em;
}
.footer__contact .mail::before {
  content: "";
  flex-shrink: 0;
  width: 1.39em;
  height: 1.11em;
  background: url(../imgs/common/f_mail.png) no-repeat center/contain;
}
.footer__banner {
  width: 52.85%;
  /* 878 → 380px */
}
.footer__banner a {
  width: 47.84%;
}
.footer__navList {
  font-size: max(15px, 1.11vw);
  /* 1440 → 16px */
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.footer__navList a {
  transition: 0.3s;
}
.footer__navList a:hover {
  opacity: 0.7;
}
/* ===========
inview
============== */
.inv_mov {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}
.tl_yb {
  transform: translate(0, 60px);
}
.tl_yt {
  transform: translate(0, -60px);
}
.tl_xl {
  transform: translate(-60px, 0);
}
.tl_xr {
  transform: translate(60px, 0);
}
.tl_rol {
  transform: rotate(-10deg);
}
.tl_ror {
  transform: rotate(10deg);
}
.tl_xtr {
  transform: rotateY(180deg);
}
.tl_ytr {
  transform: rotateX(180deg);
}

.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: opacity 1s, transform 1s;
}
.mov.delay100 {
  transition-delay: 100ms;
}
.mov.delay200 {
  transition-delay: 200ms;
}
.mov.delay300 {
  transition-delay: 300ms;
}
.mov.delay400 {
  transition-delay: 400ms;
}
.mov.delay500 {
  transition-delay: 500ms;
}
.mov.delay600 {
  transition-delay: 600ms;
}
.mov.delay700 {
  transition-delay: 700ms;
}
.mov.delay800 {
  transition-delay: 800ms;
}

/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
  text-align: center;
  padding: 250px 0;
}

.notfound .ttl {
  font-size: clamp(26px, 4.17vw, 32px);
  text-align: center;
  margin-bottom: 30px;
}

.notfound p {
  line-height: 1.75;
  margin-bottom: 15px;
}

.notfound p strong {
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.notfound a {
  text-decoration: underline;
  display: inline-block;
}

@media screen and (max-width: 1440px) {
  .inner-1200 {
    width: 92%;
    max-width: 1200px;
    min-width: initial;
  }
  .inner-1300 {
    width: 92%;
    min-width: initial;
    max-width: 1300px;
  }
  /* ======================
	header
	========================= */
  .header__inner {
    width: 92%;
    max-width: 1200px;
    min-width: initial;
  }
}
@media screen and (max-width: 1260px) {
  /* ======================
	header
	========================= */
  .header__navList li a {
    font-size: clamp(11.5px, 1.43vw, 18px);
  }
}
@media screen and (max-width: 1080px) {
  /* ======================
	footer
	========================= */
  .footer__contact .mail {
    gap: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  a.sptel {
    pointer-events: initial;
  }
  img[src*="_sp"] {
    display: block;
  }
  img[src*="_pc"] {
    display: none;
  }

  /* ======================
	header
	========================= */
  header {
    background: transparent;
  }
  .header__logo {
    width: 110px;
    top: 5px;
  }
  header .header__logo img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
  .header__nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100svh;
  }
  .circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all 0.6s;
  }

  .circle-bg.circleactive {
    transform: scale(50);
  }

  /*ナビゲーションの縦スクロール*/
  .header__nav-inner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100svh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.panelactive .header__nav-inner {
    display: block;
  }

  /*ナビゲーション*/
  .header__nav .header__navList {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header__nav.panelactive .header__navList {
    opacity: 1;
  }

  .header__nav.panelactive .header__navList li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /*リストのレイアウト設定*/
  .header__nav .header__navList {
    flex-direction: column;
    align-items: center;
  }

  .header__navList li a,
  .index_header .header__navList li a {
    font-size: 15px;
    color: #00675b;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .header__navList li a::after {
    content: none;
  }
  .header__toggle {
    display: flex !important;
    position: fixed;
    right: 0;
    z-index: 9999;
  }
  /* ======================
	article
	========================= */
  .s-heading {
    font-size: clamp(35px, 5.86vw, 45px);
  }
  /* ------------------
	js-slider
	---------------------*/
  .js-slider li {
    width: 35.16vw;
    min-width: 170px;
    max-width: 270px;
    margin: 0 max(13px, 2.6vw);
    border-radius: clamp(25px, 5.21vw, 40px);
    overflow: hidden;
  }
  /* ======================
	footer
	========================= */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer__logo {
    width: 70%;
    max-width: 164px;
  }
  .footer__r {
    width: 100%;
  }

  .footer__r-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 365px;
    margin: 0 auto 20px;
    justify-content: center;
  }
  .footer__contact {
    width: 100%;
  }
  .footer__contact p {
    font-size: 18px;
    text-align: center;
  }
  .footer__contact .sptel {
    font-size: 35px;
    justify-content: center;
  }
  .footer__contact .mail {
    font-size: 18px;
    justify-content: center;
    padding-left: 0;
  }
  .footer__banner {
    width: 100%;
    max-width: 245px;
  }
  .footer__navList {
    justify-content: center;
  }
}

@media screen and (max-width: 430px) {
  body {
    font-size: clamp(15px, 3.95vw, 17px);
  }

  .sttl .chango {
    font-size: clamp(30px, 8.14vw, 35px);
  }
  .sttl.ttl .chango {
    font-size: clamp(30px, 9.3vw, 40px);
  }

  .sttl.ttl .ja,
  .sttl .ja {
    font-size: clamp(15px, 3.95vw, 17px);
  }
}
