@charset "utf-8";
/** ==============================================
01.共通
============================================== **/
/*
-----------------
Zen Maru Gothic
-----------------
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
 */

/* -------------------------------------
sec-deco
-------------------------------------*/
.sec-deco::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 6%;
  top: -130px;
}
#reason::after {
  width: 275px;
  aspect-ratio: 275/ 150;
  background-image: url(../images/deco-reason.svg);
}
#works::after {
  width: 222px;
  aspect-ratio: 222/ 140;
  background-image: url(../images/deco-works.svg);
  top: -20px;
}
#plan::after {
  width: 400px;
  aspect-ratio: 400/ 240;
  background-image: url(../images/deco-plan.svg);
  top: -70px;
  left: 0;
}

@media (max-width: 520px) {
  .sec-deco::after {
    top: -130px;
  }
  #reason::after {
    width: 200px;
    top: -120px;
  }
  #works::after {
    width: 160px;
    top: -50px;
  }
  #plan::after {
    width: 240px;
    top: -60px;
  }
}

/* -------------------------------------
wave
-------------------------------------*/
.wave01 {
  width: 100%;
  height: 210px;
  background: url(../images/bg-wave01.png) no-repeat center bottom / 100% 100%, var(--bg-main);
}
.wave02 {
  width: 100%;
  height: 210px;
  background: url(../images/bg-wave02.png) no-repeat center / 100% 100%, var(--bg-main);
}

@media (max-width: 520px) {
  .wave01 {
    height: 100px;
  }
  .wave02 {
    height: 100px;
  }
}

/* -------------------------------------
splide
-------------------------------------*/
.splide .splide__slide,
.splide .splide__slide img {
  border-radius: var(--radius);
  overflow: hidden;
}

/* -------------------------------------
splide 矢印 / ページネーション
-------------------------------------*/
.options-customize {
  --height: 50px;
  --color: var(--gray);
  width: 230px;
  margin: 50px 5% 0 auto;
  height: var(--height);
  position: relative;
}
/* 矢印 */
.splide__arrows.base-customize .splide__arrow {
  --size: var(--height);
  width: var(--size);
  height: var(--size);
  background: none;
  opacity: 1;
  border: 1px solid currentColor;
  transition: var(--transition);
}
.splide__arrows.base-customize .splide__arrow.splide__arrow--prev {
  left: 0;
}
.splide__arrows.base-customize .splide__arrow.splide__arrow--next {
  right: 0;
}
.splide__arrows.base-customize .splide__arrow svg {
  width: var(--size);
  height: var(--size);
  fill: currentColor;
}
.splide__arrows.base-customize .splide__arrow.splide__arrow--prev:hover,
.splide__arrows.base-customize .splide__arrow.splide__arrow--next:hover {
  background: var(--gray_l);
  border-color: var(--gray_l);
}

@media (max-width: 520px) {
  .options-customize {
    --height: 38px;
    width: 180px;
    margin: 40px auto 0;
  }
  .splide__arrows.base-customize .splide__arrow svg {
    --size: 45px;
  }
}

/* -------------------------------------
splide 矢印 / thumb用
-------------------------------------*/
.thumb-slide .splide__arrow {
  background: none;
  opacity: 1;
}
.thumb-slide .splide__arrow svg {
  --size: 1.5em;
  width: var(--size);
  height: var(--size);
  fill: #fff;
}
.thumb-slide .splide__arrow--prev {
  left: 0;
}
.thumb-slide .splide__arrow--next {
  right: 0;
}

/* -------------------------------------
thumb-slid
-------------------------------------*/
.thumb-slide .thumb-thumb {
  margin-top: 20px;
}
.thumb-slide .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}
.thumb-slide .thumb-thumb .splide__slide {
  opacity: 0.6;
}
.thumb-slide .thumb-thumb .splide__slide.is-active {
  opacity: 1;
}

/** ==============================================
02.テンプレート
============================================== **/
/* -------------------------------------
header
-------------------------------------*/
header {
  width: 100%;
  padding: 10px 2%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.h-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* h-logo */
header .h-logo {
  width: 230px;
  transition: var(--transition);
}
header .h-logo:hover {
  opacity: var(--opacity);
}
header nav {
  --gap: 25px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--gap);
}
header nav .gnav {
  display: flex;
  gap: var(--gap);
}
header nav .gnav a {
  font-weight: var(--fw_b);
}
header nav .gnav a:hover {
  color: var(--c-main);
}

/* hamburger */
header .hamburger {
  display: none;
}

@media screen and (max-width: 520px) {
  header {
    padding: 0;
  }
  .h-inner {
    padding-right: 0;
  }

  /* h-logo */
  header .h-logo {
    width: auto;
    height: 70px;
    padding: 15px 20px 20px;
  }
  header .h-logo img {
    height: 100%;
  }

  /* nav */
  header nav {
    flex-direction: column;
    justify-content: flex-start;
    width: min(100%, 600px) !important;
    height: 100%;
    margin: 0;
    padding: 70px 6% 40px;
    background: #fff;
    position: fixed;
    top: 0px;
    right: -100%;
    overflow-y: scroll;
    z-index: 1499;
    transition: var(--transition);
  }
  header.nav-open nav {
    right: 0;
  }
  header nav .gnav {
    flex-direction: column;
  }
  header nav .gnav ul {
    width: 100%;
  }
  header nav .gnav li a {
    display: block;
    margin: 5px 0;
    padding: 10px 0;
    text-align: center;
  }
  header nav .mail-btn {
    width: 80%;
  }

  /* hamburger */
  header .hamburger {
    --size: 70px;
    display: block;
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all 400ms;
    z-index: 1500;
    transition: var(--transition);
  }
  header .hamburger span {
    position: absolute;
    width: 50%;
    height: 2px;
    background: currentColor;
    transition: all 400ms;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  header .hamburger span:nth-child(1) {
    top: 30%;
  }
  header .hamburger span:nth-child(2) {
    top: 48%;
  }
  header .hamburger span:nth-child(3) {
    top: 66%;
  }

  /* nav-open時 */
  header.nav-open .hamburger {
    border: none;
  }
  header.nav-open .hamburger span:nth-child(1) {
    top: 46%;
    transform: rotate(45deg);
  }
  header.nav-open .hamburger span:nth-child(2) {
    display: none;
  }
  header.nav-open .hamburger span:nth-child(3) {
    top: 46%;
    transform: rotate(-45deg);
  }
}

/* -------------------------------------
フッター
-------------------------------------*/
footer {
  padding: 80px 0 0;
  background: var(--bg-main);
  position: relative;
}
footer::before {
  content: "";
  display: block;
  width: 90px;
  aspect-ratio: 90 / 188;
  background: url(../images/deco-footer01.svg) no-repeat center / contain;
  position: absolute;
  bottom: 111%;
  left: 5%;
}
footer::after {
  content: "";
  display: block;
  width: 100px;
  aspect-ratio: 100 / 210;
  background: url(../images/deco-footer02.svg) no-repeat center / contain;
  position: absolute;
  bottom: 102%;
  right: 5%;
}

.f-inner {
  display: grid;
  grid-template-columns: 300px auto 240px;
  gap: 10px;
  padding-bottom: 80px;
}
.f-inner address .f-info {
  margin-top: 30px;
}
.f-inner address .f-info strong {
  font-size: 2rem;
  margin-bottom: 15px;
}

.f-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: fit-content;
  margin-left: auto;
  padding-left: 20px;
  border-left: 2px dotted var(--color);
}
.f-nav a {
  font-weight: var(--fw_b);
}
.f-nav a:hover {
  color: var(--c-main);
}

/* copyright */
.copyright small {
  display: block;
  padding: 20px 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  background: var(--c-main);
}

@media screen and (max-width: 768px) {
  footer {
    padding: 80px 0 0;
  }
  footer::before {
    width: 58px;
    bottom: 95%;
    left: 7%;
  }
  footer::after {
    width: 64px;
    bottom: 90%;
    right: 7%;
  }

  .f-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .f-inner address .f-info {
    margin-top: 30px;
  }
  .f-inner address .f-info strong {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .f-nav {
    display: none;
  }

  /* copyright */
  .copyright small {
    display: block;
    padding: 20px 0;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background: var(--c-main);
  }
}

/* -------------------------------------
sp-fix
-------------------------------------*/
.sp-fix {
  display: none;
}

@media screen and (max-width: 520px) {
  .sp-fix {
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 900;
  }
  .sp-fix > * {
    height: 60px;
    line-height: 1.3;
  }
  .sp-fix .tel {
    justify-content: center;
    gap: 0.5em;
    font-size: 1rem;
    background: #fff;
    border-top: var(--border);
  }
  .sp-fix .mail-btn {
    width: 100%;
    font-size: min(2.8vw, 1.3rem);
  }
}

/** ==============================================
TOPページ
============================================== **/
/* -------------------------------------
hero
-------------------------------------*/
.hero {
  width: 100%;
  margin: 0 auto;
  padding-block: 60px 80px;
  background: var(--bg-main);
  position: relative;
}
.hero::before {
  content: "";
  display: block;
  inset: 0;
  width: 100%;
  background: url(../images/bg-wave01.png) no-repeat left top / 100% 324px;
  position: absolute;
  z-index: 2;
}
.hero img {
  display: block;
  width: min(90%, 1400px);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

@media (max-width: 520px) {
  .hero {
    padding-block: 20px 0;
  }
  .hero::before {
    background-size: 100% 200px;
  }
}

/* floating */
.floating {
  aspect-ratio: 1/1;
  width: 150px;
  position: fixed;
  right: 3%;
  bottom: 50px;
  z-index: 50;
}
.floating img {
  width: 100%;
}

@media (max-width: 520px) {
  .floating {
    width: 100px;
    bottom: 40px;
  }
}

/* -------------------------------------
#consultant
-------------------------------------*/
#consultant .tit-ribbon {
  width: 700px;
}
#consultant .main-img {
  margin-block: -25px -70px;
}

@media (max-width: 520px) {
  #consultant .main-img {
    margin-block: 15px 30px;
  }
}

/* -------------------------------------
#reason
-------------------------------------*/
.reason-content:not(.reason03) {
  margin-bottom: 70px;
}
.reason-content .w_base {
  position: relative;
}

/* reason-head */
.reason-head {
  width: 64%;
  display: grid;
  grid-template-columns: 290px auto;
  gap: 30px;
  margin-bottom: 60px;
}
.reason-head p strong {
  margin-bottom: 15px;
  font-size: 1.2em;
}

/* reason-list */
.reason-list {
  --gap: 55px;
  --gap-col: 30px;
  gap: var(--gap-col) var(--gap);
  margin-bottom: 40px;
}
.reason-list li {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 10px;
  font-size: 1.5rem;
}
.reason-list li p strong {
  margin-block: 10px;
  color: var(--c-main);
  font-size: 1.3em;
}
.reason-list li img {
  border-radius: var(--radius);
}

.reason-content .w_base .main-img {
  width: 530px;
  position: absolute;
  top: -130px;
  right: -180px;
}
.reason-content.reason01 .w_base .main-img {
  width: 530px;
}

/* fusui */
:is(.fusui01, .fusui02) {
  flex: 1;
  display: flex;
  padding: 20px 30px;
  font-size: 1.5rem;
  line-height: var(--lh_s);
  background: var(--bg-main);
}
:is(.fusui01, .fusui02) p {
  flex: 1;
}
.fusui01 {
  gap: 20px;
  align-items: flex-end;
}
.fusui01 i {
  width: 270px;
  margin-top: -80px;
  margin-left: -50px;
}
.reason02 .fusui01 i {
  margin-top: -80px;
  margin-left: -50px;
}
.fusui02 {
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.fusui02 i {
  width: 255px;
  margin-top: -40px;
}

.fusui-wrap:has(.sub) {
  display: flex;
  gap: 30px;
}
.fusui-wrap .sub {
  padding: 15px;
  color: #fff;
  text-align: center;
  background: var(--c-point);
  background: url(../images/frame_t.png) repeat-x left top -1px / 100px auto, url(../images/frame_b.png) repeat-x left bottom -1px/ 100px auto,
    url(../images/frame_l.png) repeat-y left -1px top / auto 100px, url(../images/frame_r.png) repeat-y right -1px top / auto 100px, var(--c-point);
}

/* 個別 */
.reason03 .fusui-wrap .sub {
  width: 620px;
}

@media (max-width: 520px) {
  /* reason-head */
  .reason-head {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .reason-head img {
    width: 50%;
  }
  .reason-head p strong {
    font-size: 1.4em;
    text-align: center;
  }

  /* reason-list */
  .reason-list {
    --gap: 55px;
    --gap-col: 30px;
    gap: var(--gap-col) var(--gap);
    margin-bottom: 40px;
  }
  .reason-list li {
    display: grid;
    grid-template-columns: 45% auto;
    gap: 15px;
    font-size: 1.4rem;
  }
  .reason-list li p strong {
    margin-block: 10px;
    font-size: 1.2em;
  }

  .reason-list li:nth-child(even) p {
    order: 2;
  }
  .reason-list li:nth-child(even) img {
    order: 1;
  }

  .reason-content .w_base .main-img,
  .reason-content.reason01 .w_base .main-img {
    width: 95%;
    display: block;
    margin: 0 auto;
    position: static;
  }

  /* fusui */
  :is(.fusui01, .fusui02) {
    flex-direction: column;
    margin-top: 50px;
    padding: 20px 20px;
    font-size: 1.4rem;
  }
  .fusui01 {
    align-items: center;
  }
  .fusui01 i,
  .reason02 .fusui01 i {
    width: 200px;
    margin-top: -40px;
    margin-left: -80px;
  }
  .fusui02 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .fusui02 i {
    width: 200px;
    margin-top: -40px;
    margin-left: -80px;
  }

  .fusui-wrap:has(.sub) {
    flex-direction: column;
    gap: 10px;
  }
  .fusui-wrap .sub {
    padding: 15px;
  }

  /* 個別 */
  .reason03 .fusui-wrap .sub {
    width: 100%;
  }
}

/* -------------------------------------
#works
-------------------------------------*/
#works .w_base {
  position: relative;
}
#works .text {
  width: 440px;
  position: absolute;
  left: 640px;
  top: 110px;
}
#works .text strong {
  color: var(--c-main);
}
#works .thumb-main {
  width: 580px;
}
#works .splide.thumb-thumb .splide__slide,
#works .splide.thumb-thumb .splide__slide img {
  border-radius: var(--radius_s);
}

#works .deco2 {
  width: 125px;
  position: absolute;
  right: 10%;
  bottom: -100px;
}

@media (max-width: 520px) {
  #works .text {
    width: 100%;
    position: static;
    margin-bottom: 30px;
  }
  #works .thumb-main {
    width: 100%;
  }
  #works .splide.thumb-thumb .splide__slide,
  #works .splide.thumb-thumb .splide__slide img {
    border-radius: 5px;
  }

  #works .deco2 {
    width: 60px;
    bottom: -10px;
  }
}

/* -------------------------------------
#plan
-------------------------------------*/
.plan-info {
  width: 90%;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 350px auto;
}
.plan-info p {
  line-height: var(--lh_s);
}
.plan-info p strong {
  margin-bottom: 15px;
  color: var(--c-main);
}
.plan-list {
  --gap: 6px;
}
.plan-list li {
  padding: 8px;
  color: #fff;
  font-weight: var(--fw_b);
  text-align: center;
  line-height: 1;
  background: var(--c-sub);
}

@media (max-width: 520px) {
  .plan-info {
    width: 100%;
    margin: 20px auto 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .plan-list {
    --gap: 6px;
    padding-right: 4%;
  }
  .plan-list li {
    font-size: 1.4rem;
  }
}

/* -------------------------------------
#produce
-------------------------------------*/
.produce-content {
  display: grid;
  grid-template-columns: 214px auto;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border: 3px dotted var(--c-main);
  outline: 5px solid #fff;
  border-radius: var(--radius);
}
.produce-content .planner {
  margin-top: 10px;
}
.produce-content .text .tit-ribbon {
  max-width: 100%;
  margin-bottom: 10px;
}

.produce-content .text .inner {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 35px;
  padding-right: 2%;
}
.produce-content .text .inner p {
  margin-top: 20px;
}

@media (max-width: 520px) {
  #produce .tit-en {
    font-size: min(4.5vw, 2rem);
  }
  #produce .tit-en span {
    line-height: 1.5;
    padding: 0;
    background: none;
  }

  .produce-content {
    display: contents;
  }
  .produce-content .planner {
    width: 60%;
    display: block;
    margin: 30px auto 60px;
  }

  .produce-content .text {
    padding: 20px 15px 30px;
    background: #fff;
    border: 3px dotted var(--c-main);
    outline: 5px solid #fff;
    border-radius: var(--radius);
  }
  .produce-content .text .tit-ribbon {
    margin-top: -60px;
    position: relative;
    z-index: 2;
  }

  .produce-content .text .inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline: 10px;
  }
  .produce-content .text .inner p {
    margin-top: 10px;
  }
  .produce-content .text .inner img {
    width: 60%;
    margin: 0 auto;
  }
}

/* -------------------------------------
#faq
-------------------------------------*/
/* -------------------------------
toggle-item
-------------------------------- */
.toggle-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.toggle-item details {
  --before: 30px;
  --padding: 20px;
  background: var(--bg-main);
  border-radius: 14px;
  overflow: hidden;
}

/* summary */
.toggle-item summary {
  display: grid; /* 初期値の display: list-item 以外を指定したので、デフォルトの三角形アイコンは非表示になる */
  grid-template-columns: var(--before) 1fr var(--before);
  gap: 15px;
  align-items: center;
  padding: var(--padding);
  font-weight: var(--fw_b);
  font-size: 1.8rem;
  position: relative;
  cursor: pointer;
}
.toggle-item summary::-webkit-details-marker {
  display: none; /* Safari 18.4 未満で表示されるデフォルトの三角形アイコンを消す */
}
.toggle-item summary::before {
  content: "Q";
  font-size: 2.8rem;
  font-weight: var(--fw_b);
  color: var(--c-main);
}
.toggle-item summary::after {
  content: "";
  display: block;
  width: var(--before);
  height: 100%;
  background: url(../images/ico-faq-open.svg) no-repeat center / 100% auto;
  transition: var(--transition);
}
.toggle-item details[open] summary::after {
  background-image: url(../images/ico-faq-close.svg);
}

/* content */
.toggle-item .content {
  display: grid;
  grid-template-columns: var(--before) 1fr;
  gap: 15px;
  padding: var(--padding);
  position: relative;
}
.toggle-item .content::before {
  content: "A";
  font-size: 2.8rem;
  font-weight: var(--fw_b);
  color: var(--c-main);
  line-height: 1;
}
.toggle-item .content::after {
  content: "";
  display: block;
  width: 96%;
  height: 1px;
  border-bottom: 2px dotted var(--c-main);
  position: absolute;
  left: 2%;
  top: 1px;
}

/* アニメーション */
.toggle-item details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
}
/* アコーディオンの中身のスタイル（開いている時） */
.toggle-item details[open]::details-content {
  opacity: 1;
}
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  .toggle-item details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  .toggle-item details[open]::details-content {
    height: 150px;
    overflow-y: scroll; /* 溢れる場合はスクロール可能にする */
  }
}

@media (max-width: 520px) {
  .toggle-item details {
    --before: 24px;
  }
  /* summary */
  .toggle-item summary {
    padding: 10px 20px 10px 20px;
    font-size: 0.9em;
    line-height: 1.4;
  }
  /* content */
  .toggle-item .content {
    padding: 20px 20px 25px;
  }
}

/* -------------------------------------
#cv
-------------------------------------*/
.cv-content {
  width: min(90%, 780px);
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
}
.cv-content img {
  display: block;
  width: 680px;
  margin: -80px auto 0;
  translate: -10px 0;
}
.cv-content .btn {
  margin-top: -60px;
}

@media (max-width: 520px) {
  .cv-content {
    width: min(96%, 780px);
    padding: 20px;
  }
  .cv-content img {
    width: 100%;
    margin: -40px auto 0;
    translate: -5px 0;
  }
  .cv-content .btn {
    margin-top: 20px;
  }
}

/* -------------------------------------
#reserve
-------------------------------------*/
#reserve .w_base {
  position: relative;
}
#reserve .main-img img {
  position: absolute;
}
#reserve .main-img .img01 {
  width: 225px;
  top: 10px;
  left: 0;
}
#reserve .main-img .img02 {
  width: 200px;
  top: -20px;
  right: 0;
}

/* locaop */
#locaop-reservation-widget {
  height: 480px;
  margin-top: 70px;
}
#locaop-reservation-widget iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 520px) {
  #reserve .main-img {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 0;
  }
  #reserve .main-img img {
    align-self: center;
    position: static;
  }
  #reserve .main-img .img01 {
    width: 35%;
  }
  #reserve .main-img .img02 {
    width: 40%;
  }

  /* locaop */
  #locaop-reservation-widget {
    height: 560px;
    margin-top: 30px;
  }
}

/* -------------------------------------
#contact
-------------------------------------*/
.contact-wrap {
  display: grid;
  grid-template-columns: 450px 490px;
  gap: 30px;
}

@media (max-width: 520px) {
  #contact {
    padding-bottom: 30px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
