@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* 初期設定 */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #444444;
  position: relative;
  overflow-x: clip;
}

.en {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
}

a {
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a:hover {
  opacity: 0.5;
}

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

/* ----rem設定---- */
:root {
  --liquid-lgDesignRatio: calc(1440 / 10);
  --liquid-mdDesignRatio: calc(840 / 10);
  --liquid-smDesignRatio: calc(390 / 10);
}

@media screen and (max-width: 1440px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-lgDesignRatio));
  }
  html {
    font-size: var(--liquid-htmlroot);
  }
}
@media screen and (max-width: 840px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-mdDesignRatio));
  }
}
@media screen and (max-width: 520px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-smDesignRatio));
  }
}
/* --------- */
/* ----レスポンシブの表示非表示---- */
.sp1440,
.sp840,
.sp520 {
  display: none;
}

@media (max-width: 1440px) {
  .pc1440 {
    display: none !important;
  }
  .sp1440 {
    display: block;
  }
}
@media (max-width: 1440px) and (max-width: 840px) {
  .pc840 {
    display: none !important;
  }
  .sp840 {
    display: block;
  }
}
@media (max-width: 1440px) and (max-width: 840px) and (max-width: 520px) {
  .pc520 {
    display: none !important;
  }
  .sp520 {
    display: block;
  }
}
/* --------- */
/* ----------------------------------------------------------------------
クラス名設定
---------------------------------------------------------------------- */
.innerM {
  max-width: 140rem;
  width: 86%;
  margin: 0 auto;
}

.innerS {
  max-width: 120rem;
  width: 86%;
  margin: 0 auto;
}

.abs {
  position: absolute;
}

.maxnone {
  max-width: none;
  width: 100%;
}

.ore {
  color: #ea8d39;
}

.blu {
  color: #4068cc;
}

.red {
  color: #e27364;
}

.main {
  color: #2ca6e0;
}

.pur {
  color: #8b5ad1;
}

.gre {
  color: #6cc15b;
}

/* ----------------------------------------------------------------------
スライド
---------------------------------------------------------------------- */
.mvbg01 {
  background-image: -webkit-image-set(url("../img/top/mv01.webp") 1x, url("../img/top/mv01@2x.webp") 2x);
  background-image: image-set(url("../img/top/mv01.webp") 1x, url("../img/top/mv01@2x.webp") 2x);
}

.mvbg02 {
  background-image: -webkit-image-set(url("../img/top/mv02.webp") 1x, url("../img/top/mv02@2x.webp") 2x);
  background-image: image-set(url("../img/top/mv02.webp") 1x, url("../img/top/mv02@2x.webp") 2x);
}

.mvbg03 {
  background-image: -webkit-image-set(url("../img/top/mv03.webp") 1x, url("../img/top/mv03@2x.webp") 2x);
  background-image: image-set(url("../img/top/mv03.webp") 1x, url("../img/top/mv03@2x.webp") 2x);
}

/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 999;
}
header .navBox {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1em 2em;
  gap: 3em;
  background-color: #fff;
  color: #2ca6e0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 840px) {
  header .navBox {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  header .navBox {
    font-size: 1.4rem;
    padding: 1em 1em;
  }
}
header .navBox .logoBox {
  padding: 1.5em 2.5em;
  position: absolute;
  inset: 0 auto auto 0;
  background-color: #fff;
  border-radius: 0 0 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  z-index: 999;
  opacity: 1 !important;
}
@media screen and (max-width: 520px) {
  header .navBox .logoBox {
    padding: 1.1em 2em 1.1em 1em;
    background: none;
  }
}
header .navBox .logoBox > img {
  width: 13.92em;
}
header .navBox .logoBox h1 {
  font-size: 53%;
  letter-spacing: 0;
  margin-top: 0.5em;
}
@media screen and (max-width: 520px) {
  header .navBox .logoBox h1 {
    font-size: 70%;
  }
}
header .navBox .en {
  font-size: 110%;
}
header .navBox a.htBtn {
  position: relative;
}
header .navBox a.htBtn:after {
  content: "";
  display: block;
  width: 0.05em;
  height: 1.75em;
  border-radius: 999px;
  background-color: #9fddff;
  position: absolute;
  inset: 50% -1.5em auto auto;
  transform: translate(-50%, -50%);
}
header .navBox .tel {
  padding-left: 0.8em;
  position: relative;
}
header .navBox .tel:before {
  content: "";
  display: block;
  width: 0.62em;
  aspect-ratio: 137/179;
  background: url(../img/common/ico-tel.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset: 50% auto auto 0;
  transform: translatey(-50%);
}
header .navBox .hamburger {
  display: block;
  width: 3em;
  aspect-ratio: 1;
  position: relative;
  z-index: 999;
}
header .navBox .hamburger .line {
  display: block;
  height: 0.2em;
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  background-color: #2ca6e0;
  transition: 0.4s;
}
header .navBox .hamburger .line:before, header .navBox .hamburger .line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #2ca6e0;
  transition: inherit;
}
header .navBox .hamburger .line:before {
  top: -0.6em;
}
header .navBox .hamburger .line:after {
  top: 0.6em;
}
header .navBox .hamburger .txt {
  position: absolute;
  inset: auto auto 0 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 75%;
  line-height: 1;
}
header .navBox .hamburger .txt:before {
  content: "メニュー";
  color: #2ca6e0;
}
header .navBox .hamburger.active .line {
  background-color: transparent;
}
header .navBox .hamburger.active .line:before {
  top: 0;
  transform: rotate(45deg);
}
header .navBox .hamburger.active .line:after {
  top: 0;
  transform: rotate(-45deg);
}
header .navBox .hamburger.active .txt::before {
  content: "閉じる";
}

#mainNav {
  width: 100%;
  max-width: 50rem;
  height: 100vh;
  position: fixed;
  inset: 0 -30% auto auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  background-color: #fff;
}
#mainNav.show {
  opacity: 1;
  pointer-events: visible;
  right: 0;
}

.spNav {
  width: 100%;
  padding: 0 1em;
  position: fixed;
  inset: auto auto 1em 50%;
  transform: translateX(-50%);
  z-index: 999;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .spNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  .spNav {
    font-size: 1.4rem;
  }
}
.spNav > a {
  display: block;
  width: 49%;
  padding: 0.7em;
  border-radius: 999px;
  background-color: #2ca6e0;
  text-align: center;
  color: #fff;
  position: relative;
}
.spNav > a span {
  font-size: 110%;
}
.spNav > a:before {
  content: "";
  display: block;
  width: calc(100% - 0.4em);
  height: calc(100% - 0.4em);
  border: 0.1em solid #fff;
  border-radius: 999px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.spNav > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: rgba(230, 230, 230, 0.7);
  z-index: -1;
  position: absolute;
  inset: 7% auto auto 0;
  transition: 0.3s;
  filter: brightness(0.9) contrast(1.1);
}
.spNav > a:hover {
  opacity: 1;
}
.spNav > a:hover:after {
  top: 0;
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
#bnrArea {
  padding: 14rem 0 12rem;
}
@media screen and (max-width: 520px) {
  #bnrArea {
    padding: 4rem 0;
  }
}
#bnrArea .innerS > a {
  display: block;
}

footer {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 840px) {
  footer {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer {
    font-size: 1.2rem;
  }
}
footer:before {
  content: "";
  display: block;
  width: 90%;
  max-width: 160rem;
  height: 0.1em;
  position: absolute;
  inset: 0 0 auto 0;
  margin: 0 auto;
  background: url(../img/common/dots-line.svg) repeat center;
  background-size: contain;
}
footer .innerM {
  padding: 8em 0 9em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 3em;
}
@media screen and (max-width: 840px) {
  footer .innerM {
    justify-content: center;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer .innerM {
    padding: 3em 0;
  }
}
footer .innerM .leftBox {
  width: 37%;
}
@media screen and (max-width: 840px) {
  footer .innerM .leftBox {
    width: 80%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  footer .innerM .leftBox {
    width: 100%;
  }
}
footer .innerM .leftBox .logoBox {
  width: 100%;
  display: block;
  margin-bottom: 2em;
}
footer .innerM .leftBox .logoBox img {
  width: 100%;
  max-width: 40.7rem;
}
footer .innerM .leftBox .logoBox .ftxtList {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3em;
}
@media screen and (max-width: 520px) {
  footer .innerM .leftBox .logoBox .ftxtList {
    font-size: 85%;
  }
}
footer .innerM .leftBox .logoBox .ftxtList li {
  line-height: 1;
  padding: 0.3em 0.6em;
  border: 1px solid #2ca6e0;
}
footer .innerM .leftBox .info {
  line-height: 1.4;
}
footer .innerM .leftBox .info a {
  display: block;
  width: fit-content;
  font-size: 218.75%;
  letter-spacing: 0.04em;
}
footer .innerM .leftBox .info a span {
  color: #2ca6e0;
}
footer .innerM .leftBox .calendar {
  width: 100%;
  aspect-ratio: 501/232;
  background: url(../img/common/f-calendar.svg) no-repeat center;
  background-size: contain;
  position: relative;
}
footer .innerM .leftBox .calendar .calendarItems {
  position: absolute;
  width: 82.4%;
  height: 54.7%;
  inset: auto 0 22.3% auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
footer .innerM .leftBox .calendar .calendarItems li {
  width: 16.6666666667%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .innerM .leftBox .calendar .noticeBox {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 22%;
  overflow: auto;
  line-height: 1.4;
  padding: 0.1em 0.3em;
  font-size: 90%;
}
footer .innerM .leftBox .btnList {
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
footer .innerM .leftBox .btnList .btnItem {
  width: 49%;
}
footer .innerM .leftBox .btnList .btnItem a {
  display: block;
  width: 100%;
  border-radius: 999px;
  font-size: 125%;
  background-color: #2ca6e0;
  color: #fff;
  text-align: center;
  padding: 0.4em 1em;
  position: relative;
}
footer .innerM .leftBox .btnList .btnItem a span {
  font-size: 110%;
}
footer .innerM .leftBox .btnList .btnItem a:before {
  content: "";
  display: block;
  width: calc(100% - 0.4em);
  height: calc(100% - 0.4em);
  border: 0.1em solid #fff;
  border-radius: 999px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
footer .innerM .leftBox .btnList .btnItem a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: rgba(230, 230, 230, 0.7);
  z-index: -1;
  position: absolute;
  inset: 7% auto auto 0;
  transition: 0.3s;
  filter: brightness(0.9) contrast(1.1);
}
footer .innerM .leftBox .btnList .btnItem a:hover {
  opacity: 1;
}
footer .innerM .leftBox .btnList .btnItem a:hover:after {
  top: 0;
}
footer .innerM .rightBox {
  width: 58%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  row-gap: 3em;
}
@media screen and (max-width: 840px) {
  footer .innerM .rightBox {
    width: 100%;
  }
}
footer .innerM .rightBox .fNav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 520px) {
  footer .innerM .rightBox .fNav {
    justify-content: flex-start;
    gap: 1em 2em;
  }
}
footer .innerM .rightBox .fNav .fNavBlock .fNavItem {
  color: #2ca6e0;
  display: block;
  margin-bottom: 0.2em;
}
footer .innerM .rightBox .fNav .fNavBlock .fNavItem:last-child {
  margin-bottom: 0;
}
footer .innerM .rightBox .fNav .fNavBlock .fNavSlist {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
}
footer .innerM .rightBox .fNav .fNavBlock .fNavSlist .fNavSblock {
  padding-left: 1em;
  position: relative;
}
footer .innerM .rightBox .fNav .fNavBlock .fNavSlist .fNavSblock .fNavSitem {
  display: block;
  margin-bottom: 0.2em;
}
footer .innerM .rightBox .fNav .fNavBlock .fNavSlist .fNavSblock .fNavSitem:last-child {
  margin-bottom: 0;
}
footer .innerM .rightBox .fNav .fNavBlock .fNavSlist .fNavSblock::before {
  content: "";
  display: block;
  width: 0.1em;
  height: 100%;
  background-color: #333;
  position: absolute;
  inset: 0 auto auto 0.5em;
}
footer .innerM .rightBox .fMapBox {
  width: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 840px) {
  footer .innerM .rightBox .fMapBox {
    height: 30rem;
  }
}
footer small {
  font-size: 87.5%;
  display: block;
  width: 100%;
  background-color: #63b6e7;
  color: #fff;
  text-align: center;
  padding: 1em;
}
@media screen and (max-width: 840px) {
  footer small {
    padding: 1em 1em 7em;
  }
}

/* ----------------------------------------------------------------------
コモンパーツ（ナビゲーション①）
---------------------------------------------------------------------- */
#comNav {
  position: relative;
  z-index: 99;
}
#comNav .navInner {
  max-width: 140rem;
  width: 82%;
  margin: 0 auto 0;
  font-size: 1.8rem;
  line-height: 1.2777777778;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 840px) {
  #comNav .navInner {
    transform: translate(-50%, -22%);
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #comNav .navInner {
    font-size: 1.4rem;
  }
}
#comNav .navInner .subTtl {
  color: #fff;
  position: relative;
  margin-bottom: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
}
#comNav .navInner .subTtl:after {
  content: "";
  flex: 1;
  height: 0.0625em;
  background: #fff;
}
#comNav .navInner .navList {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  font-size: 120%;
  gap: 0.6em 0.3em;
}
@media screen and (max-width: 520px) {
  #comNav .navInner .navList {
    font-size: 120%;
  }
}
#comNav .navInner .navList .navItem {
  display: block;
  width: calc((100% - 1.5em) / 6);
  aspect-ratio: 222/234;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 0.7em;
  position: relative;
  border: 0.07em solid #ededed;
  padding-top: 0.2em;
}
@media screen and (max-width: 840px) {
  #comNav .navInner .navList .navItem {
    width: 31%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #comNav .navInner .navList .navItem {
    width: 49%;
    aspect-ratio: 222/219;
  }
}
#comNav .navInner .navList .navItem .icon {
  width: 45%;
}
#comNav .navInner .navList .navItem .txt {
  font-weight: bold;
  min-height: 2.5em;
  text-align: center;
}
#comNav .navInner .navList .navItem .sml {
  font-size: 90%;
}
#comNav .navInner .navList .navItem .topP {
  padding-top: 0.4em;
}
#comNav .navInner .navList .navItem:before {
  content: "";
  display: block;
  width: 1.5em;
  aspect-ratio: 1;
  border-radius: 1.5rem 0 0 0;
  background-color: #e1e1e1;
  position: absolute;
  inset: auto 0 0 auto;
  background-color: #e1e1e1;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
}
#comNav .navInner .navList .navItem:first-child .txt .color {
  color: #ea8d39;
}
#comNav .navInner .navList .navItem:first-child:before {
  background-color: #ea8d39;
}
#comNav .navInner .navList .navItem:nth-child(2) .txt .color {
  color: #2ca6e0;
}
#comNav .navInner .navList .navItem:nth-child(2):before {
  background-color: #2ca6e0;
}
#comNav .navInner .navList .navItem:nth-child(3) .txt .color {
  color: #6cc15b;
}
#comNav .navInner .navList .navItem:nth-child(3):before {
  background-color: #6cc15b;
}
#comNav .navInner .navList .navItem:nth-child(4) .txt .color {
  color: #e27364;
}
#comNav .navInner .navList .navItem:nth-child(4):before {
  background-color: #e27364;
}
#comNav .navInner .navList .navItem:nth-child(5) .txt .color {
  color: #4068cc;
}
#comNav .navInner .navList .navItem:nth-child(5):before {
  background-color: #4068cc;
}
#comNav .navInner .navList .navItem:nth-child(6) .txt .color {
  color: #8b5ad1;
}
#comNav .navInner .navList .navItem:nth-child(6):before {
  background-color: #8b5ad1;
}

/* ----------------------------------------------------------------------
コモンパーツ（ナビゲーション②）
---------------------------------------------------------------------- */
#subNav {
  margin: 19rem 0 14rem;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  #subNav {
    margin: 16rem 0;
  }
}
@media screen and (max-width: 1440px) and (max-width: 840px) {
  #subNav {
    margin: 42rem 0 13rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1440px) and (max-width: 840px) and (max-width: 520px) {
  #subNav {
    margin: 42rem 0 8rem;
  }
}
#subNav .navInner {
  max-width: 120rem;
  width: 82%;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1em;
}
#subNav .navInner > a {
  display: block;
  width: 24%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  padding: 1em 2em 1em 1em;
  position: relative;
  background-color: #fff;
  border-radius: 999px;
  border: 0.1em solid #ededed;
}
@media screen and (max-width: 840px) {
  #subNav .navInner > a {
    width: 49%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #subNav .navInner > a {
    width: 100%;
  }
}
#subNav .navInner > a > img {
  width: 1.5em;
}
#subNav .navInner > a::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 665/455;
  position: absolute;
  inset: 50% 0.6em auto auto;
  transform: translateY(-50%);
  background: url(../img/common/arrow01.svg) no-repeat center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(59%) sepia(78%) saturate(1955%) hue-rotate(168deg) brightness(92%) contrast(90%);
}

/* ----------------------------------------------------------------------
個ページ見出し
---------------------------------------------------------------------- */
.submidashi {
  text-align: center;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 300;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 840px) {
  .submidashi {
    font-size: 2rem;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  .submidashi {
    font-size: 1.7rem;
  }
}
.submidashi > .enTxt {
  display: inline-block;
  color: #ffbc00;
  padding-left: 1.3em;
  position: relative;
  letter-spacing: 0;
}
.submidashi > .enTxt::before {
  content: "";
  display: block;
  width: 1.3em;
  aspect-ratio: 1/1;
  position: absolute;
  transform: translateY(-50%);
  filter: brightness(0) saturate(100%) invert(77%) sepia(77%) saturate(3023%) hue-rotate(356deg) brightness(113%) contrast(104%);
  background: url(../img/common/ico-news.svg) center center/contain no-repeat;
  inset: 50% auto auto 0px;
}
.submidashi > h2 {
  font-size: 170%;
  font-weight: 600;
  margin-top: 0.2em;
}
@media screen and (max-width: 520px) {
  .submidashi > h2 {
    font-size: 160%;
    line-height: 1.2;
  }
}

/* ----------------------------------------------------------------------
enfont
---------------------------------------------------------------------- */
header .en {
  font-weight: 600;
}

footer .en {
  font-weight: 600;
}

/* ----------------------------------------------------------------------
ノイズ
---------------------------------------------------------------------- */
.noiseBox {
  background-image: url(../img/common/noise-normal.webp);
  background-size: 512px 512px;
  background-repeat: repeat;
  width: 100%;
  height: 100vh;
  position: fixed;
  pointer-events: none;
  z-index: 999;
  opacity: 0.8;
}

/* ----------------------------------------------------------------------
陰つけ
---------------------------------------------------------------------- */
.c-btn.press {
  box-shadow: 0 4px 0 #ededed;
  opacity: 1 !important;
}
@media screen and (max-width: 520px) {
  .c-btn.press {
    box-shadow: 0 3px 0 #ededed;
  }
}

.c-btn.press:hover {
  transform: translateY(4px);
  box-shadow: none;
}
@media screen and (max-width: 520px) {
  .c-btn.press:hover {
    transform: translateY(3px);
  }
}

#front-page #comNav .c-btn.press,
#front-page #topNav .c-btn.press {
  box-shadow: 0 4px 0 rgba(44, 166, 224, 0.2);
}
@media screen and (max-width: 520px) {
  #front-page #comNav .c-btn.press,
  #front-page #topNav .c-btn.press {
    box-shadow: 0 3px 0 rgba(44, 166, 224, 0.2);
  }
}
#front-page #comNav .c-btn.press:hover,
#front-page #topNav .c-btn.press:hover {
  transform: translateY(4px);
  box-shadow: none;
}
@media screen and (max-width: 520px) {
  #front-page #comNav .c-btn.press:hover,
  #front-page #topNav .c-btn.press:hover {
    transform: translateY(3px);
  }
}

/* ----------------------------------------------------------------------
telボタン
---------------------------------------------------------------------- */
.modal {
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal .modal-content {
  background-color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  width: 80%;
  max-width: 80rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  transition: transform 0.3s;
}
@media screen and (max-width: 520px) {
  .modal .modal-content {
    padding: 5rem 0.8rem;
  }
}
.modal .modal-content .modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}
.modal .modal-content .modal-item {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .modal .modal-content .modal-item {
    font-size: 1.4rem;
  }
}
.modal .modal-content .modal-item .modalBtn {
  border-radius: 1rem;
  padding: 2rem 3rem;
  margin: 1rem 10rem;
  position: relative;
  color: #fff;
  display: block;
}
@media screen and (max-width: 520px) {
  .modal .modal-content .modal-item .modalBtn {
    margin: 1rem 2rem;
  }
}
.modal .modal-content .modal-item .syoshinBtn {
  background-color: #2ca6e0;
}
.modal .modal-content .modal-item .monshinBtn {
  background-color: #ea8d39;
}
.modal .modal-content .modal-item .qaBtn {
  font-size: 130%;
  font-weight: 600;
  color: #e27364;
  display: block;
}
.modal .modal-content .modal-item .tel {
  display: block;
  padding: 1em 3em;
  position: relative;
  background-color: #fff;
  border-radius: 999px;
  border: 0.1em solid #ededed;
  color: #2ca6e0;
  width: fit-content;
  margin: 1rem auto 0;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
}
.modal.is-show .modal-content {
  transform: translate(-50%, -50%);
}

/* ----------------------------------------------------------------------
ハンバーガーNAVメニュー
---------------------------------------------------------------------- */
#mainNav {
  position: fixed;
  width: 100%;
  top: 0;
  transition: 0.6s;
}
#mainNav .nav-main-inner {
  width: 100%;
  height: 100%;
  flex-wrap: nowrap;
}
#mainNav .nav-main-inner .nav-main-box {
  height: calc(100% - 10rem);
  min-height: 100%;
  overflow: scroll;
  padding: 13rem 7% 6rem;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu {
  transition: 0.3s;
  width: 100%;
  margin-bottom: 2rem;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .nuvttl {
  color: #2ca6e0;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav {
  padding-bottom: 3rem;
  position: relative;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child,
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 1rem 2.5rem 0;
  font-size: 16px;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child span,
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button span {
  font-weight: 600;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child:hover,
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button:hover {
  color: #2ca6e0;
  opacity: 1;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child i {
  margin-right: 0.8rem;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child i:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 1px solid #ededed;
  border-right: 1px solid #ededed;
  transform: rotate(45deg);
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button i {
  position: relative;
  width: 2.3rem;
  height: 2.4rem;
  display: block;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  will-change: transform;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button i:hover {
  transform: scale(0.92);
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75%;
  height: 1px;
  border-radius: 10px;
  background: #2ca6e0;
  display: block;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button i:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1px;
  height: 75%;
  border-radius: 10px;
  background: #2ca6e0;
  display: block;
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .nav-main-button.open i:after {
  transform: translate(-50%, 0%);
  opacity: 0;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child-drop {
  display: none;
  margin: 0 0 1em;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child-drop li a {
  display: block;
  padding: 1rem 1rem 1rem 1.7rem;
  font-size: 16px;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li .menu-child-drop li a:hover {
  opacity: 1;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li:last-child a {
  border: none;
}
#mainNav .nav-main-inner .nav-main-box .nav-main-menu .header-menu-nav li span.blank {
  width: 1.1em;
  aspect-ratio: 1;
  background-image: url(../img/common/ico-newtab.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navlist {
  padding-left: 1.5em;
  position: relative;
  border-bottom: 1px solid #d3d3d3;
  cursor: pointer;
}
.navlist .menu-child {
  position: relative;
}
.navlist .menu-child::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  position: absolute;
  inset: 50% auto auto -1.5em;
  transform: translateY(-50%);
  background: url(../img/common/ico-news.svg) no-repeat center;
  background-size: contain;
  transition: scale 0.2s;
  scale: 0;
}
.navlist .menu-child:hover::before {
  scale: 1;
}
.navlist .menu-child-drop a {
  position: relative;
}
.navlist .menu-child-drop a::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  position: absolute;
  inset: 50% auto auto 0;
  transform: translateY(-50%);
  background: url(../img/common/ico-news.svg) no-repeat center;
  background-size: contain;
  transition: scale 0.2s;
  scale: 0;
  filter: brightness(0) saturate(100%) invert(77%) sepia(77%) saturate(3023%) hue-rotate(356deg) brightness(113%) contrast(104%);
}
.navlist .menu-child-drop a:hover::before {
  scale: 1;
}
.navlist .menu-child-drop a:hover {
  opacity: 1;
  color: #ffbc00;
}

.bnrtop {
  margin-bottom: 5rem;
}