@charset "utf-8";

/* @reset
----------------------------------------------------------*/
*, *:before, *:after { box-sizing:border-box; }

html, body, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd,
figure, figcaption, form, textarea, fieldset, legend, blockquote { margin:0; padding:0; border:none; }

h1, h2, h3, h4, h5, h6 { font-size:100%; font-weight:inherit; }

footer, header, hgroup, main, menu, nav, section,
article, aside, details, summary, figcaption, figure { display: block; }

table { border-collapse:collapse; border-spacing:0; }
ul, ol { padding:0; list-style:none; }

img { max-width:100%; height:auto; font-size:0; line-height:0; vertical-align:bottom; border-width:0; }

input, button, select, textarea { font:inherit; }
button { margin:0; padding:0; border:none; border-radius:0; background:none; -webkit-appearance:none; appearance:none; cursor:pointer; }
button:focus { outline:none; }
input[type="submit"],input[type="button"],input[type="reset"] { cursor: pointer; }

/* @base
----------------------------------------------------------*/
:root {
  --color-main: #00b2f0;
  --color-main-hover: #00a1e5;
  --color-main-lite: #cae9fa;
  --color-main-bg: #f8f3ec;
  --color-sub: #107e3b;
  --color-sub-hover: #107e3b;
  --color-gry: #eee;
  --color-dgy: #aaa;

  --color-hilite: #f0e151;
  --color-red: #f70925;

  --icon-arrow : url(../img/common/arrow.svg);
  --icon-mail : url(../img/common/icon-mail.svg);
  --icon-map : url(../img/common/icon-map.svg);
  --icon-deco : url(../img/common/deco.svg);

  --inner-pd: 50px;
  --header-h: 128px;
  --fz-base: 1rem;
  --fz-l: 1.125rem;
  --fz-s: 0.875rem;
  --lh-base: 1.8;

  --inner-min: 1100px;
  --inner-max: 1300px;
  --content-overflow: calc(50% - max(50vw, calc(var(--inner-min) / 2)));

  --font-base: 'Noto Sans JP',
  "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
  "メイリオ", "Meiryo","ヒラギノ角ゴ Pro W3",
  "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  --font-en: "Lexend", sans-serif;
}


html, body { height: 100%; }

html {
  font-size: min(100%, 20px);
  background: #fff;
}
body {
  color: #000;
  font-family: var(--font-base);
  letter-spacing: .025em;
  line-height: var(--lh-base);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  font-optical-sizing: auto;
  -webkit-animation: loading 1.5s;
  animation: loading 1.5s;
}
@-webkit-keyframes loading {
  0%   { opacity:0.01; }
  100% { opacity:1; }
}
@keyframes loading {
  0%   { opacity:0.01; }
  100% { opacity:1; }
}

[id] { scroll-margin-top: 60px; }

a { color: var(--color-main-text); text-decoration:none; }
a:not([class]) { text-decoration:underline; text-underline-offset:2px; }
a:not(.fade), .anime { transition:all .5s; }
a:not([class]):hover, a:not([class]):focus { text-decoration:none; }
a:focus { outline:none; }

.c-link { color: var(--color-main); text-decoration: underline; }
.c-link:hover { text-decoration: none; }

/* @utility */
.font-sans {
  font-family: var(--font-sans);
}
.font-en {
  font-family: var(--font-en);
}

.clearfix::after { content:""; display:block; clear:both; }

.wide   { width: 100%; }

.pos-r { position:relative; }

.iblock { display:inline-block; }
.block  { display:block; }
.hide   { display:none; }

.fl-left { float:left; }
.fl-right { float:right; }

.ta-left { text-align:left; }
.ta-center { text-align:center; }
.ta-right { text-align:right; }
.ta-justify { text-align:justify; }

.va-top  { vertical-align:top; }
.va-mid  { vertical-align:middle; }
.va-btm  { vertical-align:bottom; }
.va-base { vertical-align:baseline; }

.fw-mid { font-weight:500; }
.fw-bold { font-weight:bold; }

.fz-small { font-size:.85em; }
.fz-big { font-size:1.2em; }

.fs-italic { font-style:italic; }
.ws-nowrap { white-space: nowrap; }

.is-fixed { position:fixed; top:0; right:0; bottom:0; left:0; }

.link-disabled { cursor:default; pointer-events:none; opacity:0.6; }

.marker { background:linear-gradient(transparent 60%, #fff073 0%); }
.indent { padding-left:1em; text-indent:-1em; }

.li-disc { padding-left: 1em; }
.li-disc > li { position: relative; text-indent: -1em; }
.li-disc > li + li { margin-top: .25em; }
.li-disc > li::before { content: "・";}
.li-decimal { list-style:decimal; padding-left:1.5em; }

.flex         { display:-webkit-flex; display:flex; -webkit-flex-wrap:wrap; flex-wrap:wrap; }
.flex-between { -webkit-justify-content:space-between;  justify-content:space-between;  }
.flex-center  { -webkit-justify-content:center; justify-content:center; }
.flex-align-center { -webkit-box-align:center; -webkit-align-items:center; align-items:center; }

.shadow { box-shadow:0 0 3px rgba(0,0,0,0.3); }


.txt-underline { text-decoration:underline; }
.link-txt { font-weight:bold; text-decoration:underline; }
.link-txt:hover { text-decoration: none; }

.txt-vert {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.bg-common { background-color: var(--color-main-bg); }
.bg-wht { background-color: var(--color-wht); }
.color-red { color: var(--color-red); }
.color-main { color: var(--color-main); }
.color-sub { color: var(--color-sub); }
.color-hilite { color: var(--color-hilite); }
.color-wht { color: #fff; }


.hv-fade { transition:opacity .8s ease-out; }
.hv-fade:hover { opacity:.7; }

.point_btn { width: 186px; margin: 20px auto;}
.point_btn2 { width: 192px; margin: 20px auto;}
.point_btn3 { width: 212px; margin: 20px auto;}

a[href^="tel:"] { color: inherit; text-decoration: none; }

/* 1025px 以上  */
@media screen and (min-width: 1025px) {
  /* hover scale */
  a .hv-scale { transition:transform .8s ease-out; will-change: transform; }
  a:hover .hv-scale  { -webkit-transform: scale(1.05); transform: scale(1.05); }
}
@media screen and (min-width: 821px) {
  .txt-vert-pc {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

@media screen and (min-width: 767px) {
  a[href^="tel:"] { pointer-events: none; cursor: default; }
}

/* layout ------ */
#wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 100%;
  padding-top: var(--header-h);
}

.wide-inner {
  padding-inline: var(--inner-pd);
}
.inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--inner-pd);
}
.narrow-inner {
  max-width: 900px;
  margin-inline: auto;
}

#main { display:block; }


/* recaptcha */
.grecaptcha-badge {
  display: none;
}


@media screen and (min-width: 960px) {
  .pc-none { display: none; }
}
/* 600px 以上 (PC・タブレット) */
@media screen and (min-width: 600px) {
  .sp-only { display: none; }
}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  .wide-inner { padding-left:40px; padding-right:40px; }
  .inner { width:auto; }
  .pc-only { display:none; }
}

/* 599px 以下 (スマホ)  */
@media screen and (max-width: 599px) {
  body { line-height: 1.8; }
  .wide-inner { padding-left:20px; padding-right:20px; }
  .inner, .narrow-inner { padding-left:20px; padding-right:20px; }
  .inner .narrow-inner { padding-left:0; padding-right:0; }

  .sp-none { display:none; }
  .sp-only { display:block; }
	
.point_btn { display:block;}
.point_btn2 { display:block;}
.point_btn3 { display:block;}
}


/* @effect */
.effect-blur {
  filter: blur(10px);
  transition: filter 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: filter;
}
.effect-blur.on-effect {
  filter: blur(0);
}

.effect-imgFadeInUp {
  overflow: hidden;
}
.effect-imgFadeInUp img {
  opacity: 0;
  transform: translateY(-10%);
  transition: opacity, .5s cubic-bezier(0.22, 0.61, 0.36, 1), transform .7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.effect-imgFadeInUp.on-effect img {
  opacity: 1;
  transform: translateY(0);
}

.effect-zoomOut {
  transform: scale(1.3);
  will-change: transform;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.effect-zoomOut.on-effect {
  transform: scale(1);
}

/* @loading */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main-bg_lite);
  transition: opacity .8s ease-in-out, visibility .8s ease-in-out;
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-con {
  position: relative;
  width: 100%;
  text-align: center;
  padding-bottom: 5%;
  transition: opacity .5s ease-in-out, filter .5s ease-in-out;
}
.loading-con.hidden {
  opacity: 0;
  filter: blur(10px);
}




/* @component
----------------------------------------------------------*/
/* @title ------ */
/* @secttl */
.c-secttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  position: relative;
  margin: 0 auto 2.1em;
  padding: 0 1.75em .15em;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .025em;
}
.c-secttl::after {
  content: attr(data-en);
  display: block;
  margin-top: .5em;
  color: var(--color-sub);
  font-size: .636em;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: .8;
  letter-spacing: .025em;
}
.c-secttl > span::before,
.c-secttl > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 20px;
  background: var(--icon-deco) no-repeat center / 100%
}
.c-secttl > span::before {
  left: 0;
}
.c-secttl > span::after {
  right: 0;
  transform: scale(-1, 1);
}


/* @main_lead */
.c-main_lead {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 1em;
  padding: 1.2em 2em;
  color: var(--color-main-text);
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  border: 6px solid var(--color-sub);
  border-radius: 100vmax;
}
.c-main_lead::after {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 2em;
  right: 2em;
  z-index: -1;
  background: #fff;
}


/* @lead */
.c-lead {
  margin-block: 0 1.1em;
  color: var(--color-main-text);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.667;
}


/* @button ---------- */
.c-btn {
  position: relative;
  display: inline-block;
  min-width: 210px;
  padding: 1.05em 4em 1.05em 3em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: .075em;
  border-radius: 100vmax;
  background: var(--color-main);
  transition: all .5s;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-main-lite) var(--icon-arrow) no-repeat center;
}
.c-btn:hover {
  background: var(--color-main-hover);
}
.c-btn._color-wht {
  color: #000;
  background: #fff;
}

/* txt_btn */
.c-txt_btn {
  display: inline-block;
  color: #000;
  font-size: var(--fz-s);
  font-weight: bold;
  text-decoration: none;
}
.c-txt_btn::after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-left: .5em;
  vertical-align: -.25em;
  background: var(--icon-arrow) no-repeat center / 100%;
  transition: transform .3s ease-out;
}
.c-txt_btn:hover::after {
  transform: translateX(.5em);
}
.c-txt_btn.font-en {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--color-main-text);
}
.c-txt_btn.font-en::after {
  vertical-align: -.15em;
}

/* link_txt */
.c-link_txt {
  text-decoration: none;
}
.c-link_txt::after {
  content: "";
  display: inline-block;
  width: .85em;
  height: .85em;
  vertical-align: -.12em;
  margin-left: .5em;
  background: var(--icon-arrow-wht) no-repeat center / 100%;
  transition: transform .3s ease-out;
}
a:hover .c-link_txt::after,
.c-link_txt:hover::after {
  transform: translateX(.3em);
}

/* link_gmap */
.c-link_gmap {
  position: relative;
  display: inline-block;

  padding-left: 1.6em;
  color: #000;
  text-decoration: underline;
  text-underline-offset: .5em;
}
.c-link_gmap::before {
  content: "";
  position: absolute;
  top: .15em;
  left: 0;
  width: 1.389em;
  height: 1.389em;
  background: var(--icon-map) no-repeat center / 100%;
}
.c-link_gmap:hover {
  text-decoration: none;
}

/* @guide-btn */
.c-guide-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 10px 1em;
  text-align: center;
}
.c-guide-btn .msg {
  margin-block: 0 .8em;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.556;
}

/* @tel -------- */
.c-tel {
  font-size: 1.2857rem;
  text-decoration: none;
  line-height: 1.2;
  font-size: .8125rem;
  font-weight: bold;
  text-align: center;
}
.c-tel-num {
  display: block;
  margin-bottom: .3em;
  font-size: 1.222em;
  letter-spacing: .1em;
  font-size: 1.615em;
}

/* @list --------- */
.c-list li {
  position: relative;
  margin: .5em 0;
  padding-left: 1.6em;
  line-height: 1.6;
}
.c-list li::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 1em;
  height: 1em;
  background: var(--color-main);
  border-radius: 50%;
}

/* @dl -------- */
.c-dl_tbl .row {
  display: grid;
  grid-template-columns: 210px 1fr;

  font-size: 1.125rem;
  font-weight: bold;
  border-top: 4px solid var(--color-main);
  border-left: 4px solid var(--color-main);
  border-right: 4px solid var(--color-main);
}
.c-dl_tbl .row > * {
  padding: 1.1em 1em 1.1em 3.5em;
}
.c-dl_tbl dt {
  color: var(--color-sub);
  vertical-align: top;
  border-right: 4px solid var(--color-main);
}
.c-dl_tbl dd {
  padding-right: 2em;
}
.c-dl_tbl a {
  text-underline-offset: .4em;
}
.c-dl_tbl .row:first-child {
  border-radius: 20px 20px 0 0;
}
.c-dl_tbl .row:last-child {
  border-radius: 0 0 20px 20px;
  border-bottom: 4px solid var(--color-main);
}

/* @404 */
.l-contents._404 {
  padding-bottom: 100px;
}
.l-contents._404 .ttl {
  font-size: 1.25rem;
  font-weight: bold;
}
.l-contents._404 .btn {
  margin-top: 2em;
}


/* @header
----------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding-top: 57px;
  padding-bottom: 14px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(20px);
  transition: padding .3s ease-in-out;
}
.l-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/common/wave_line_s.svg) repeat-x left -12px top 0;
  transition: top .3s ease-in-out;
}
.l-header-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--inner-pd);
}
.l-header-logo {
  margin-right: 20px;
  flex: 1;
}

.l-header.is-scroll {
  padding-top: 20px;
}
.l-header.is-scroll::after {
  top: -20px;
}

/* @gnav */
.l-nav-wrap {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.l-nav-list {
  display: flex;
  justify-content: center;
  gap: 2.5em;
}
.l-nav-list > li {
  position: relative;
}
.l-nav-list a {
  position: relative;
  display: block;
  padding: .6em .5em;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .075em;
  text-decoration: none;
  text-align: center;
  transition-duration: .35s;
  transition-timing-function: ease-out;
}
.l-nav-list > li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  width: 5px;
  height: 5px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--color-main);
  opacity: 0;
  transition: all .3s ease-in-out;
}
.l-nav-list a::after {
  content: attr(data-en);
  display: block;
  margin-top: .1em;
  font-family: var(--font-en);
  font-size: .75em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
  color: var(--color-main);
  transition: opacity .5s;
}
.l-nav-list > li:hover::before,
.l-nav-list > li.is-current::before {
  top: 0;
  opacity: 1;
}

.l-nav-btn a {
  display: flex;
  padding: 7px;
  padding-left: 1.5em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  border-radius: 100vmax;
  background: var(--color-main);
}
.l-nav-btn a span {
  display: inline-block;
  padding: .2em 1.25em;
  line-height: 1.5;
}
.l-nav-btn a span::after {
  content: attr(data-en);
  display: block;
  margin-left: .8em;
  font-family: var(--font-en);
  font-size: .75em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
  transition: opacity .5s;
}
.l-nav-btn a::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-main-lite) var(--icon-arrow) no-repeat center;
}
.l-nav-btn a:hover {
  background: var(--color-main-hover);
}


/* @menu-btn */
.menu-btn {
  display: none;
}


/* @footer
----------------------------------------------------------*/
.l-footer {
  padding-top: 16px;
  background: var(--color-main);
}
.l-footer,
.l-footer a {
  color: #fff;
}

.l-footer-logo {
  margin-bottom: 1.6em;
}
.l-footer-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding-bottom: 35px;
  margin-bottom: 45px;
}
.l-footer-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  margin: 0 var(--content-overflow);
  background: url(../img/common/wave_line-single.svg) repeat-x left -12px top 0;
}
.l-footer-nav a:after {
  color: #fff;
}
.l-footer-nav .l-nav-btn a {
  color: #000;
  background: #fff;
}
.l-footer-nav .l-nav-btn a span::after {
  color: var(--color-main);
}
.l-footer-nav .l-nav-btn a:hover {
  background: var(--color-main-lite);
}

.l-footer-info {
  text-align: center;
}
.l-footer-address {
  margin-bottom: .25em;
}
.l-footer-gmap {
  font-family: var(--font-en);
  font-weight: 600;
}
.l-footer-gmap a {
  text-underline-offset: 4px;
}
.l-footer-gmap a::before {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  margin-right: .3em;
  vertical-align: -.4em;
  background: var(--icon-map) no-repeat center /100%;
}

.l-footer-tel {
  margin-block: 1em;
  font-size: 1.375rem;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: .05em;
}
.l-footer-tel li + li {
  margin-top: .5em;
}

.l-footer-policy {
  margin-top: 2.8em;
  text-align: center;
}
.l-footer-policy a {
  text-underline-offset: 8px;
}


/* copyright */
.l-copyright {
  margin-block: 1.3em .4em;
  text-align: center;
}

.l-copyright small {
  font-size: 12px;
  letter-spacing: .025em;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1.5;
}

.l-footer-company {
  padding-block: 15px;
  text-align: center;
  background: #848484;
}
.l-footer-company .logo a {
  display: inline-block;
  padding: 13px 22px 12px;
  border-radius: 10px;
  background: #e4e63c;
}

/* @layout
----------------------------------------------------------*/
/* @page-head */
.l-page_head {
  position: relative;
  z-index: 2;
  margin-inline: var(--inner-pd);
  margin-bottom: 4.5rem;
  border: 4px solid var(--color-main);
  border-radius: 10px;
  background: var(--color-gry);
}
.l-page_head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 70px;
  border-radius: 7px;
  background: url(../img/common/wave_line.svg) repeat-x center bottom 0;
  transform: scale(1, -1);
}
.l-page_head-ttl {
  padding: 1.95em 1em;
  color: #222;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .025em;
}
.l-page_head-ttl::before {
  content: attr(data-en);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: var(--color-main);
  line-height: .72;
  font-size: .875em;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .025em;
  speak: none;
}



/* レスポンシブ
----------------------------------------------------------*/
@media screen and (min-width: 960px) {
  /* @header
  ----------------------------------------------------------*/

}

/* 959px 以下 */
@media screen and (max-width: 959px) {
  /* @base
  ----------------------------------------------------------*/
  :root {
    --inner-pd: 25px;
    --inner-min: 320px;
  }

  /* @component
  ----------------------------------------------------------*/
  /* @title */
  /* @secttl2 */
  .c-secttl2 {
    font-size: 2.2rem;
  }

  /*  @dl -------- */
  .c-dl_tbl > .row {
    display: block;
  }
  .c-dl_tbl > .row > * {
    padding-left: 2em;
  }
  .c-dl_tbl > .row > dt {
    padding-bottom: 0;
    border-right: none;
  }
  .c-dl_tbl > .row > dd {
    padding-top: .5em;
  }

  /* @header
  ----------------------------------------------------------*/
  .l-header.is-open {
    background: #fff;
  }

  /* @menu-btn */
  .menu-btn {
    position: relative;
    width: 53px;
    height: 50px;
    padding: 13px 10px 10px;
    cursor: pointer;
    z-index: 99999;
    background: var(--color-main);
  }
  .menu-btn:focus-visible {
    outline: auto;
  }

  .menu-btn,
  .menu-btn span {
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  .menu-bar {
    position: relative;
    display: block;
    height: 10px;
    margin: 0 auto;
  }
  .menu-bar::before,
  .menu-bar::after {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: #fff;
  }

  .menu-bar::before {
    top:0;
  }
  .menu-bar::after {
    bottom: 0;
  }
  .menu-btn.is-open .menu-bar::before {
    transform: translateY(4px) rotate(-20deg);
  }
  .menu-btn.is-open .menu-bar::after {
    transform: translateY(-4px) rotate(20deg);
  }

  .menu-label {
    position: relative;
    display: inline-block;
    margin-top: 7px;
    font-size: 12px;
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 1;
    letter-spacing: .025em;
    color: #fff;
  }


  /* @gnav */
  .l-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    display: block;
    margin: 0;
    padding: 0;
    background: var(--color-main);
    transition: all .5s cubic-bezier(0.39, 0.58, 0.57, 1);
    opacity: 0;
    visibility: hidden;
    color: #fff;
  }
  .l-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .l-nav-wrap {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    gap: 0;
    padding: 16px var(--inner-pd) 0;
  }
  .l-nav-list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.75em;
  }
  .l-nav-list > li {
    border-bottom: 1px solid #80d9f8;
  }
  .l-nav-list > li::before {
    top: 1.95em;
    left: -10px;
    right: auto;
    background: #fff;
  }
  .l-nav-list > li:hover::before,
  .l-nav-list > li.is-current::before {
    top: 1.95em;
  }

  .l-nav-list a::after,
  .l-nav-list a {
    color: #fff;
  }
   .l-nav-list a {
    position: relative;
    padding: 1.3em 0;
    text-align: left;
    letter-spacing: .025em
  }
  .l-nav-list a::after {
    margin-top: .2em;
    padding-left: .1em;
    font-size: .857em;
  }
  .l-nav-list a::before {
    content: "";
    position: absolute;
    top: 2.1em;
    right: 2px;
    width: 1.143em;
    height: 1.143em;
    background: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: var(--icon-arrow);
    mask-image: var(--icon-arrow);
  }

  .l-nav-btn a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-left: 2.5em;
    color: #000;
    background: #fff;
  }
  .l-nav-btn a span {
    padding: .35em 1.5em;
  }
  .l-nav-btn a span::after {
    color: var(--color-main);
  }

  .l-nav-footer {
    margin: auto var(--content-overflow) 0;
  }



  /* @footer
  ----------------------------------------------------------*/
  .l-footer-nav {
    flex-direction: column;
    gap: 0;
  }
  .l-footer-nav-list {
    margin-bottom: 1.5em;
  }
  .l-footer-nav:after {
    background-size: 180px;
  }

  .l-footer-logo img {
    width: 220px;
  }

  .l-footer-company .logo a {
    padding: 10px 17px 8px;
  }
  .l-footer-company img {
    width: 150px;
  }

  /* @layout
  ----------------------------------------------------------*/


}

/* 599x 以下 (スマホ)  */
@media screen and (max-width: 599px) {
  /* @base
  ----------------------------------------------------------*/
  :root {
    --inner-pd: 20px;
    --header-h: 80px;
  }

  .top-mv-con .logo {
    width: 290px;
    max-width: 90%;
  }

  /* @header
  ----------------------------------------------------------*/
  .l-header {
    padding-top: 18px;
    padding-bottom: 12px;
  }
  .l-header::after {
    background-position: 0 0;
    background-size: 180px;
  }
  .l-header.is-scroll {
    padding-top: 18px;
  }
  .l-header.is-scroll::after {
    top: 0;
  }

  .l-header-logo {
    max-width: 168px;
    padding-top: 4px;
  }

  /* @gnav */
  .l-nav {
    font-size: .875rem;
  }
  .l-nav .l-nav-btn a span::after {
    font-size: .857em;
  }

  /* @footer
  ----------------------------------------------------------*/
  .l-footer-nav-list {
    font-size: 1rem;
  }

  /* @Component
  ----------------------------------------------------------*/
  /* @title ----- */
  /* @secttl */
  .c-secttl {
    font-size: 1.25rem;
  }

  /* @subttl */
  .c-subttl1 {
    width: 320px;
    margin-bottom: 2em;
    font-size: 1.2857rem;
  }


  /* @button ---------- */
  .c-btn {
    font-size: 1.143rem;
  }


  /* @dl --------- */
  .c-dl_tbl .row {
    font-size: 1rem;
  }

  /* @404 */
  .l-contents._404 {
    text-align: left;
  }
  .l-contents._404 .ttl {
    font-size: 1rem;
  }
  .l-contents._404 .txt {
    font-size: .875rem;
  }
  .l-contents._404 .btn {
    text-align: center;
  }



  /* @layout
  ----------------------------------------------------------*/
  /* @page-head */
  .l-page_head-ttl {
    padding-block: 1.75em;
    font-size: 1.5rem;
  }
  .l-page_head-ttl::before {
    line-height: .7;
  }
}
