@charset "UTF-8";
:root {
  /* 設計幅÷10（従来の命名を踏襲） */
  --liquid-npcDesignRatio: calc(1920 / 10);
  --liquid-spcDesignRatio: calc(1366 / 10);
  --liquid-ltbDesignRatio: calc(1024 / 10);
  --liquid-ntbDesignRatio: calc(820 / 10);
  --liquid-spDesignRatio: calc(390 / 10);
  /* 追加：viewport単位のエイリアスと既定値 */
  --liquid-viewport: 100vw; /* フォールバック */
  --liquid-htmlroot: 10px; /* ≥1920px は 1rem=10px */
  --rem-min: 9px; /* 最小の読みやすさ下限（お好みで 8.5〜10px） */
  --rem-max: 10px; /* 上限は10pxで頭打ち */
}

/* 対応環境ではスクロールUIの影響を受けない svw を使用 */
@supports (width: 1svw) {
  :root {
    --liquid-viewport: 100svw;
  }
}
/* html の基準サイズは常に変数経由で決定（可読性ガード付き） */
html {
  font-size: clamp(var(--rem-min), var(--liquid-htmlroot), var(--rem-max));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* 以下、幅に応じて 1rem を線形スケール（ロジックは従来どおり） */
@media screen and (max-width: 1920px) {
  :root {
    --liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-npcDesignRatio));
  }
}
@media screen and (max-width: 1366px) {
  :root {
    --liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-spcDesignRatio));
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-ltbDesignRatio));
  }
}
@media screen and (max-width: 820px) {
  :root {
    --liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-ntbDesignRatio));
  }
}
@media screen and (max-width: 520px) {
  :root {
    --liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-spDesignRatio));
  }
}
/* ----------------------------------------------------------------------
基本設定
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #333;
  font-weight: 500;
  line-height: 1.8;
  font-size: 16px;
}

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

a {
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 38px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.textindent {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
  .text-center-pc {
    text-align: center;
  }
}
/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #FFF;
}
header nav {
  display: flex;
  align-items: center;
  gap: 8rem;
  width: 90%;
  max-width: 1720px;
  margin-inline: auto;
  position: relative;
  height: 10rem;
}
header nav .logo_wrapper h1, header nav .logo_wrapper h2 {
  line-height: 1;
}
header nav .logo_wrapper img.header_pc {
  width: 38rem;
}
header nav .logo_wrapper img.header_sp {
  display: none;
}
header nav .nav-wrapper .nav_btn {
  display: none;
}
header nav .nav-wrapper .nav_toggle {
  display: none;
}
header nav .nav-wrapper #main-nav ul#menu {
  display: flex;
  gap: 4rem;
}
header nav .nav-wrapper #main-nav ul#menu li a {
  display: block;
  color: #023e73;
  position: relative;
}
header nav .header_contact {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 3rem;
}
header nav .header_contact .tel {
  color: #f27d52;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0;
  padding-left: 3.2rem;
  background: url(../images/header_tel_orange.svg) no-repeat left center/2.4rem 2.4rem;
}
header nav .header_contact .mail {
  font-size: 2rem;
  color: #FFF;
  border-radius: 99999px;
  padding: 7px 30px 7px 78px;
  border: solid 1px #f27d52;
  background: url(../images/header_mail_white.svg) no-repeat left 3.2rem center/2.6rem 2rem, #f27d52;
  letter-spacing: 0.1em;
}

main {
  margin-top: 10rem;
}

@media screen and (max-width: 1366px) {
  header nav {
    gap: 3rem;
  }
  header nav .logo_wrapper img.header_pc {
    width: 32rem;
  }
  header nav .nav-wrapper #main-nav ul#menu {
    gap: 1rem;
  }
  header nav .header_contact {
    gap: 1rem;
  }
  header nav .header_contact .tel {
    font-size: 2.4rem;
  }
  header nav .header_contact .mail {
    font-size: 1.6rem;
    padding: 7px 20px 7px 50px;
    background-position: left 15px center;
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    height: 8rem;
  }
  header nav .logo_wrapper img.header_sp {
    display: block;
  }
  header nav .logo_wrapper img.header_pc {
    display: none;
  }
  header nav .nav-wrapper .nav_btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  header nav .nav-wrapper .nav_btn .nav_toggle {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  header nav .nav-wrapper .nav_btn .nav_toggle .nav_toggle_menu {
    position: absolute;
    bottom: 0;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    color: #023e73;
    font-size: 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
  }
  header nav .nav-wrapper .nav_btn .nav_toggle i {
    transition: all 0.5s;
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 2px;
    left: 0;
    position: absolute;
    background-color: #023e73;
  }
  header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(1) {
    top: 0px;
  }
  header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(2) {
    top: 11px;
  }
  header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(3) {
    top: 22px;
  }
  header nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(1) {
    transform: translateY(11px) translateX(0) rotate(30deg);
  }
  header nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(2) {
    display: none;
  }
  header nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(3) {
    transform: translateY(-11px) translateX(0) rotate(-30deg);
  }
  header nav .nav-wrapper #main-nav {
    top: 0;
    right: -120%;
    transition: all 0.5s;
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 420px;
    z-index: 98;
    padding: 100px 40px 40px;
    line-height: 1.5;
    background-color: #f0f5ff;
  }
  header nav .nav-wrapper #main-nav ul#menu {
    flex-wrap: wrap;
    gap: 0;
    border-top: solid 1px #b3b3b3;
  }
  header nav .nav-wrapper #main-nav ul#menu li {
    width: 100%;
    border-bottom: solid 1px #b3b3b3;
  }
  header nav .nav-wrapper #main-nav ul#menu li a {
    display: block;
    padding: 12px 20px;
    position: relative;
  }
  header nav .nav-wrapper #main-nav ul#menu li a::after {
    content: "";
    width: 3px;
    height: 6px;
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.47%22%20height%3D%2210.84%22%20viewBox%3D%220%200%206.47%2010.84%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.a%20%7B%20fill%3A%20none%3B%20stroke%3A%20%230B1A32%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolyline%20class%3D%22a%22%20points%3D%221%201%205.47%205.47%201.09%209.84%22%2F%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
    margin: auto;
    z-index: 999;
    background-repeat: no-repeat;
    background-size: cover;
  }
  header nav .nav-wrapper #main-nav.show {
    right: 0;
    top: 0;
  }
  header nav .header_contact {
    right: 60px;
  }
  header nav .header_contact .tel, header nav .header_contact .mail {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
    padding: 0;
    display: block;
    width: 45px;
    height: 45px;
    background-position: center center;
  }
  header nav .header_contact .tel {
    background: url(../images/header_tel_white.svg) no-repeat center center/2.6rem 2rem, #f27d52;
    border-radius: 99999px;
  }
  main {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 520px) {
  header nav .header_contact {
    right: 50px;
	gap:0.3rem;
  }
}
@media screen and (min-width: 1025px) {
  header nav .nav-wrapper #main-nav ul#menu li a:after {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f27d52;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
	
  header nav .nav-wrapper #main-nav ul#menu li a.current:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@media (any-hover: hover) {
  header nav .nav-wrapper #main-nav ul#menu li a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
  header nav .header_contact .mail:hover {
    background: url(../images/header_mail_orange.svg) no-repeat left 3.2rem center/2.6rem 2rem, #FFF;
    color: #f27d52;
  }
}
/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
footer {
  background-color: #023e73;
  padding-top: 10rem;
  padding-bottom: 4.2rem;
  position: relative;
}
footer .footer_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  background-color: #fffaeb;
  border-radius: 20px;
  width: 90%;
  max-width: 828px;
  margin-inline: auto;
  padding: 20px;
  text-align: center;
  height: 14.4rem;
  position: absolute;
  top: -7.2rem;
  left: 50%;
  transform: translateX(-50%);
}
footer .footer_contact h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
footer .footer_contact p {
  font-size: 14px;
}
footer .footer_contact .tel {
  display: inline-block;
  color: #f27d52;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 3.2rem;
  margin-bottom: 5px;
  background: url(../images/header_tel_orange.svg) no-repeat left center/2.4rem 2.4rem;
}
footer .footer_contact .mail {
  display: inline-block;
  font-size: 2.24rem;
  color: #FFF;
  border-radius: 99999px;
  padding: 8px 30px 8px 83px;
  border: solid 1px #f27d52;
  background: url(../images/header_mail_white.svg) no-repeat left 3.4rem center/3rem 3rem, #f27d52;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}
footer .footer_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
footer .footer_info .footer_menu {
  order: 2;
}
footer .footer_info .footer_menu ul {
  display: flex;
  gap: 1rem 5rem;
}
footer .footer_info .footer_menu ul li a {
  color: #FFF;
  position: relative;
  padding-bottom: 5px;
}
footer .footer_info .footer_company {
  width: 50%;
}
footer .footer_info .footer_company h3 {
  color: #FFF;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
}
footer .footer_info .footer_company p {
  color: #FFF;
  letter-spacing: 0.12em;
}
footer .copyright {
  color: #FFF;
  font-size: 12px;
  text-align: center;
  margin-top: 50px;
}

.home .grecaptcha-badge {
  visibility: hidden;
}
footer .privacy .button{margin-left:0.5rem;}
footer .privacy a{color:#f27d52; text-decoration:underline;}
footer .privacy a:hover{ text-decoration:none;}

@media screen and (max-width: 1024px) {
  footer .footer_info .footer_menu {
    width: 36%;
  }
  footer .footer_info .footer_menu ul {
    flex-wrap: wrap;
    gap: 0 4rem;
  }
  footer .footer_info .footer_company {
    width: 60%;
  }
}
@media screen and (max-width: 820px) {
  footer .footer_contact {
    gap: 2rem;
    padding: 10px;
  }
  footer .footer_contact h3 {
    font-size: 1.8rem;
  }
  footer .footer_contact .tel {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
  }
  footer .footer_contact .mail {
    font-size: 1.8rem;
    padding: 5px 17px 5px 62px;
    letter-spacing: 0.05em;
	background: url(../images/header_mail_white.svg) no-repeat left 2rem center/3rem 3rem, #f27d52;
  }
  footer .footer_info .footer_menu {
    width: 30%;
  }
  footer .footer_info .footer_menu ul {
    gap: 0;
  }
  footer .footer_info .footer_menu ul li {
    width: 50%;
  }
  footer .footer_info .footer_menu ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  footer .footer_info .footer_company {
    width: 60%;
  }
  footer .footer_info .footer_company h3 {
    font-size: 18px;
  }
  footer .footer_info .footer_company p {
    font-size: 12px;
  }
}
@media screen and (max-width: 520px) {
  footer {
    border-radius: 46px 46px 0 0;
    padding-top: 71px;
  }
  footer .footer_contact {
    display: block;
    height: 220px;
    width: 77%;
    border-radius: 10px;
    padding: 20px;
    top: -176px;
  }
  footer .footer_contact > div {
    width: 100%;
  }
  footer .footer_contact h3 {
    margin-bottom: 0;
  }
  footer .footer_contact p {
    line-height: 1;
  }
  footer .footer_contact .tel {
    letter-spacing: 0.1em;
  }
  footer .footer_contact .mail {
    margin-top: 20px;
    padding: 8px 34px 8px 82px;
    background-size: 24px;
	background: url(../images/header_mail_white.svg) no-repeat left 3.5rem center/3rem 3rem, #f27d52;
  }
  footer .footer_info {
    display: block;
    margin-top: 0;
  }
  footer .footer_info.inner {
    width: 80%;
  }
  footer .footer_info .footer_menu, footer .footer_info .footer_company {
    width: 100%;
  }
  footer .footer_info .footer_menu ul li a {
    padding: 5px 0;
  }
  footer .footer_info .footer_company {
    margin-top: 20px;
  }
  footer .privacy {font-size:15px;}
}
@media screen and (min-width: 1025px) {
  footer .footer_info .footer_menu ul li a:after {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFF;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  footer .footer_info .footer_menu ul li a.current:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@media (any-hover: hover) {
  footer .footer_contact .mail:hover {
    background: url(../images/header_mail_orange.svg) no-repeat left 3.4rem center/3rem 3rem, #FFF;
    color: #f27d52;
  }
  footer .footer_info .footer_menu ul li a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}/*# sourceMappingURL=common.css.map */