@charset "UTF-8";

/* -------------------------------- 
色指定
-----------------------------------*/
:root {
  --primary-color: #f4a029;
  --line-color: #f8e387b3;
  --background-color: #fffae2;
  --text-color: #333333;
  --base-background-color: #ffffff;
}

/* -------------------------------- 
共通設定
-----------------------------------*/
html {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  color: var(--text-color);
}

img {
  vertical-align: bottom;
  object-fit: contain;
}
a,
a img {
  transition: all 0.3s;
}
a:hover,
a:focus {
  color: var(--primary-color);
  text-decoration-color: currentColor;
}
a:hover img {
  opacity: 0.7;
}

/* //////////////////////////////// 
スマホ
//////////////////////////////////*/
/* -------------------------------- 
ヘッダー
-----------------------------------*/
header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  z-index: 99;
  filter: drop-shadow(0px 0px 7px hsla(0, 0%, 20%, 0.251));
}
.header__logo {
  width: 35%;
  height: 110px;
  background: var(--base-background-color);
  border-radius: 47% 47% 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
h1 {
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
}
h1 a {
  width: 100%;
  height: auto;
}
h1 .header__logo-img {
  width: 100%;
  height: auto;
}
.sp__header {
  width: 100%;
  background: var(--base-background-color);
  display: flex;
  justify-content: space-between;
}
.header__top,
.hamburger__button {
  width: 33%;
  height: fit-content;
  text-align: center;
  cursor: pointer;
}
.header__top p a,
.hamburger__button p {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  padding: 1.5em 0;
}
.hamburger__button p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.hamburger__button p::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  background: url(../img/icon/menu__opn.svg) center no-repeat;
  background-size: contain;
}
.hamburger__button.is-open p::after {
  background: url(../img/icon/menu__close.svg) center no-repeat;
  background-size: contain;
}

/* -------------------------------- 
メニュー
-----------------------------------*/
.global__navi {
  width: 100%;
  height: fit-content;
  padding-bottom: 90px;
  background: var(--background-color);
  border-radius: 45px 45px 0 0;
  outline: 2px dashed var(--primary-color);
  outline-offset: -20px;
  position: fixed;
  bottom: 0;
  z-index: -1;
  box-shadow: 0px 0px 7px hsla(0, 0%, 20%, 0.251);
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
}
.global__navi.is-open {
  transform: translateY(0);
}
.global__navi-lists {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  padding: 15% 0;
}
.global__navi-lists li {
  text-align: center;
  font-size: 1.1rem;
}
.global__navi-lists li span {
  font-size: 0.9rem;
}
.header__sns {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
}
.header__sns li a img {
  height: 3rem;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.54); /* お好みで色・透明度を調整 */
  z-index: 97; /* .global__naviの98より下 */
}
.overlay.is-open {
  display: block;
}

/* -------------------------------- 
共通パーツ
-----------------------------------*/
h2 {
  width: 93%;
  /* height: 18vh; */
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 0.8;
  text-align: center;
  background: url(../img/top-ex.jpg) 50% 75% no-repeat;
  background-size: 100%;
  border-radius: 15px;
  margin: 15px auto;
  padding: 1.7em 0;
}

h2 span {
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 3px;
}

h2,
h2 span {
  color: #fff;
  text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.35);
}
section {
  margin: 7vh 0 7vh;
}
.section__wrap {
  width: 90%;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  padding: 0 0 5vh;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 5px;
  margin: 0 0 1em;
}
h3::before {
  display: block;
  content: "";
  width: 4em;
  height: 1.5em;
  background: url(../img/icon/tt.svg) center no-repeat;
  background-size: contain;
  margin: 0 auto 8px;
}
.speech__babble {
  width: 90vw;
  height: fit-content;
  margin: 0 auto 2.5rem;
}
.speech__babble p {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: var(--base-background-color);
  text-align: center;
  background: var(--primary-color);
  border-radius: 50px;
  padding: 1em 0.6em;
  position: relative;
}
.speech__babble p::after {
  content: "";
  position: absolute;
  bottom: -1.2em;
  left: 50%;
  transform: translateX(-50%) rotate(-30deg);
  z-index: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 30px solid var(--primary-color);
  border-bottom: 0;
}
.up.speech__babble p::before {
  content: "";
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%) rotate(150deg);
  z-index: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 30px solid var(--primary-color);
  border-bottom: 0;
}
.up.speech__babble p::after {
  content: none;
}
.speech__babble {
  opacity: 0;
}
.strong {
  font-weight: bold;
}
/* .mark {
color: var(--primary-color);
} */
.dots {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
  font-weight: bold;
}
.btn a {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  padding: 1rem 1rem;
  background-color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  box-shadow: 4px 6px 0 var(--primary-color);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1em;
}
.btn a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
}
.btn a:hover,
.btn a:active {
  box-shadow: none;
  transform: translate(4px, 6px);
}
.common__fade,
.in_oreder_fade,
.service__strong {
  opacity: 0;
}

/* -------------------------------- 
  TOPへ戻る固定ボタン
  -----------------------------------*/
.page__top-pc {
  display: none;
}
/* -------------------------------- 
フッタ
-----------------------------------*/
footer {
  width: 100%;
  background: var(--background-color);
}
.footer__link {
  width: 100%;
  padding: 2.5rem 0 1.5rem;
}
.footer__navi {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  row-gap: 2rem;
}
.footer__navi li {
  width: 7em;
}
.footer__navi li a {
  line-height: 1.1;
}
.footer__navi li a span {
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.footer__contact {
  width: 13.5rem;
  margin: 2.5rem auto 0;
  text-align: center;
}
.footer__contact-tel {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.footer__contact-tel-details {
  font-size: 0.9rem;
  text-align: left;
  margin-top: 0.5rem;
}
.footer__contact-tel-details li {
  padding: 3px 0;
}
.footer__sns {
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1em auto 0;
  gap: 1rem;
}
.footer__sns li {
  width: 45px;
  height: 45px;
}
.footer__sns li a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__sns li a img {
  height: 100%;
}
.footer__white {
  width: 100%;
  background-color: #fff;
  border-radius: 100% 100% 0px 0px / 40% 40% 0px 0px;
  padding: 1.5em 0 20vh;
}
.footer__logo {
  width: 30%;
  max-width: 140px;
  margin: 0 auto;
}
.footer__privacy {
  font-size: 0.9rem;
  text-align: center;
  margin: 0 0 1rem;
}
.footer__privacy a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: solid;
  text-decoration-color: var(--primary-color);
  font-weight: 500;
}

/* プライバシーポリシーポップアップ */
.privacy-overlay {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.privacy-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.privacy-modal {
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: min(680px, 90vw);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  padding: 40px 30px 20px;
}
.privacy-modal h2 {
  background: none;
  color: var(--text-color);
  text-shadow: none;
  text-align: left;
  font-size: 1.2rem;
  padding: 0;
  margin-left: 0;
}
.privacy-body {
  overflow-y: auto; /* テキストだけスクロール */
  flex: 1;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
  padding-right: 1rem;
}
.privacy-body div {
  margin: 1.5rem 0;
}
.privacy-body h3 {
  margin: 0;
  font-weight: 400;
  font-size: 1em;
  text-align: left;
}
.privacy-body h3::before {
  content: none;
}
.privacy-body div p,
.privacy-body div ul li {
  text-align: justify;
  text-justify: inter-ideograph;
}
.privacy-body div ul li {
  margin: 0.5rem 0;
}

/* 右上の ✕ ボタン */
.privacy-close--top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 4px 8px;
}

/* 下の閉じるボタン */
.privacy-close--bottom {
  align-self: center;
  background: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px 32px;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: fit-content;
  display: block;
  margin: 0 auto 2rem;
  transition: all 0.3s;
}
.privacy-close--bottom:hover {
  background-color: var(--background-color);
}

.copyright {
  font-size: 10px;
  text-align: center;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

/* //////////////////////////////// 
タブレット
//////////////////////////////////*/

@media screen and (width>=550px) {
  /* -------------------------------- 
共通設定
-----------------------------------*/
  html {
    font-size: 18px;
  }
  .sp__br {
    display: none;
  }

  /* -------------------------------- 
ヘッダー
-----------------------------------*/
  .header__logo {
    height: 120px;
    border-radius: 50% 50% 0 0;
  }
  h1 {
    max-width: 110px;
  }
  .hamburger__button p {
    padding: 1em 0;
  }
  .hamburger__button p::after {
    width: 2.5rem;
    height: 2.5rem;
  }
  /* -------------------------------- 
メニュー
-----------------------------------*/
  .global__navi {
    width: 100%;
    height: fit-content;
    /* border-radius: 45px 0 0 0; */
    padding-bottom: 100px;
    margin: 0 auto;
    right: 0;
  }
  .global__navi-lists {
    width: 85%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 10% 0;
  }
  .global__navi-lists li {
    width: 6.7em;
  }
  .header__sns {
    width: 100%;
    justify-content: center;
    gap: 1.5em;
    padding-top: 1em;
  }
  .header__sns li {
    width: 3em;
    height: 3em;
  }
  /* -------------------------------- 
共通パーツ
-----------------------------------*/
  h2 {
    font-size: 2rem;
    margin: 1.7rem auto;
    text-align: left;
    padding: 3em 4em;
  }
  h3 {
    font-size: 1.6rem;
  }
  .section__wrap {
    width: 80%;
  }
  .speech__babble {
    max-width: 500px;
    margin-bottom: 3rem;
  }
  .speech__babble p {
    font-size: 18px;
  }
  .up.speech__babble p::before {
    top: -1em;
  }
  .up.speech__babble p::after {
    content: none;
  }
  .btn a {
    line-height: 1.7;
  }
  /* -------------------------------- 
フッタ
-----------------------------------*/
  .footer__navi {
    width: 80%;
    max-width: 500px;
    row-gap: 3.5rem;
    padding-top: 4rem;
  }
  .footer__contact {
    width: 13.5rem;
    height: fit-content;
    text-align: left;
    margin: o auto;
  }

  .footer__sns {
    width: 8rem;
    height: fit-content;
    gap: 1.5rem;
    margin: 1rem auto 2rem;
  }
  .footer__white {
    padding-bottom: 150px;
  }
  .footer__logo {
    width: 30%;
    max-width: 140px;
  }
  .footer__privacy a:hover {
    text-decoration: none;
  }
}

/* //////////////////////////////// 
PC
//////////////////////////////////*/

@media screen and (width>=950px) {
  /* -------------------------------- 
  共通設定
  -----------------------------------*/
  html {
    scroll-padding-top: 7em;
  }
  body {
    margin-top: 5.9em;
  }

  /* -------------------------------- 
  ヘッダーs
  -----------------------------------*/
  header {
    width: 100%;
    height: fit-content;
    background: var(--base-background-color);
    position: fixed;
    top: 0;
    bottom: auto;
    z-index: 99;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* filter: drop-shadow(0px 0px 7px hsla(0, 0%, 20%, 0.251)); */
  }
  .header__logo {
    width: 220px;
    height: 200px;
    border-radius: 0 0 100% 0;
    bottom: auto;
    top: 0;
    left: 0;
    transform: none;
    filter: none;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header__logo h1 {
    width: 75%;
    height: fit-content;
    max-width: none;
    margin: 0;
  }
  .header__logo h1 a {
    width: 100%;
    height: 100%;
  }
  .sp__header {
    display: none;
  }

  /* -------------------------------- 
  メニュー
  -----------------------------------*/
  .global__navi {
    position: static;
    transform: none;
    background: none;
    box-shadow: none;
    outline: none;
    padding: 1.5em 0.5rem;
    border-radius: 0;
    z-index: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    /* padding-right: 2rem; */
    /* margin-left: 200px; ロゴの幅分あける */
  }
  .global__navi-lists {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0;
    width: 75%;
    max-width: 850px;
    height: auto;
    /* border: 1px solid; */
    margin: 0;
  }
  .global__navi-lists li {
    font-size: 0.95rem;
    line-height: 1.3;
    width: fit-content;
  }
  .global__navi-lists li span {
    font-size: 0.8rem;
    font-family: "Montserrat", sans-serif;
  }
  .header__sns {
    width: 6em;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    padding: 0;
    margin: 0;
  }
  .header__sns li {
    width: 40%;
  }
  .header__sns li a img {
    width: 100%;
  }

  /* オーバーレイは非表示 */
  .overlay {
    display: none !important;
  }

  /* -------------------------------- 
  共通パーツ
  -----------------------------------*/
  h2 {
    width: 85%;
    max-width: 1100px;
    font-size: 2.2rem;
    padding: 3.5em 15%;
    background-position: 50% 65%;
    border-radius: 30px;
    margin-bottom: 2em;
  }
  h3 {
    font-size: 1.8rem;
  }
  h3::before {
    width: 5em;
    height: 2em;
  }
  .section__wrap {
    max-width: 850px;
  }
  .btn a {
    padding: 1rem 1.5rem;
    gap: 1.5em;
  }
  .sp_tab_br {
    display: none;
  }
  /* -------------------------------- 
  TOPへ戻る固定ボタン
  -----------------------------------*/
  .page__top-pc {
    display: block;
    width: 130px;
    height: 130px;
    letter-spacing: 0;
    text-align: center;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  .page__top-pc.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .page__top-pc a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    /* font-size: 16px; */
    font-weight: 700;
    padding: 50px 0;
    background: url(../img/icon/to__top.png) no-repeat center;
    background-size: contain;
  }
  .page__top-pc a:hover {
    transform: translateY(-10px);
  }

  /* -------------------------------- 
  フッタ
  -----------------------------------*/
  .footer__link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8%;
    padding: 3rem 2rem 1rem;
  }
  .footer__navi {
    width: 19em;
    /* border: 1px solid; */
    padding: 0;
    row-gap: 1.5em;
    margin: 0;
  }
  .footer__navi li {
    width: 8em;
    text-align: left;
  }
  .footer__navi li a {
    font-size: 1.1rem;
  }
  .footer__contact {
    width: auto;
    margin: 0;
    text-align: left;
  }
  .footer__contact-tel {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .footer__contact-details {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .footer__sns {
    width: auto;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 0;
  }
  .footer__sns li {
    width: 50px;
    height: 50px;
  }
  .footer__white {
    font-size: 13px;
    padding: 1rem 0 1em;
    border-radius: 120% 120% 0px 0px / 100% 100% 0px 0px;
  }
  .footer__logo {
    width: 173px;
  }
  .footer__privacy {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
  .copyright small {
    font-size: 13px;
  }
}
