@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");

/* 基本設定 */
/* フォントサイズ基本の設定　基本10pxになるように */
html {
  font-size: 3.125vw; /* 10px見当 */
}
@media screen and (min-width: 374px) {
  html {
    font-size: 2.673796791vw;
    /*  10px / 374px * 100 =2.673796791  */
  }
}
@media screen and (min-width: 576px) {
  html {
    font-size: 1.736111111vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 1.008064516vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
    /* PC表示ではtel反応しないようにする */
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10px;
  }
}
body {
  background-color: #fff;
  color: var(--text-color);
  font-family: "Montserrat", "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-weight: 400;
  position: relative;

  overflow-wrap: break-word; /* 要素内で区切りのいい単語単語で区切る */
}
.container {
  background-color: var(--bg);
  font-size: 1.2em; /* =12px */
  line-height: 1.5;
  letter-spacing: .025em;
  width: 100%;
  min-width: 1%;
  max-height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.container-inner {
  display: flex;
  flex-direction: column; /* header main footer　を縦並びにする */
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* font-family: ; */
}
.main-inner,
.footer-inner {
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
  padding: 0 1.5em;
}
@media screen and (min-width: 374px) {
  .container {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 576px) {
  .container {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 768px) {
  .container {
    font-size: 1.5em;
  }
  .main-inner,
  .footer-inner {
    padding: 0 2.5em;
  }
}
@media screen and (min-width: 992px) {
  .container {
    font-size: 1.6em;
    font-size: 16px;
  }
  a[href^="tel:"] {
    pointer-events: none;
    /* PC表示ではtel反応しないようにする */
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-style: normal;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.33;
  margin: 0;
  padding: 0;

  margin-block-start: 0;
  margin-block-end: 0;
}
header,
main,
footer {
  width: 100%;
  min-width: 1%;
  margin: 0 auto;
  z-index: 1;
}
nav {
  position: relative;
  z-index: 10;
}
footer {
  margin-top: auto;
  position: relative;
}
main,
footer .site-footer,
.breadcrumb {
  /* max-width: var(--content-max-width); */
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  nav {
    z-index: 9;
  }
}
ul {
  padding-left: 1em;
}
ul.list {
  list-style-type: none;
  margin: 1em 0;
  padding: 0;
}
ul.list > li {
  display: block;
  position: relative;
}
strong {
  color: #333;
  font-size: 1em;
  font-style: normal;
  font-weight: bold;
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="submit"],
input[type="reset"],
textarea,
select,
button {
  /* border-radius: 4px; */
  background-color: whitesmoke;
  border: transparent 2px solid;
  color: var(--text-color);
  font-size: 1.33334em; /* 16px =画面サイズごとの設定で元12px*1.33334em */
  letter-spacing: .06em;
  width: 100%;
  padding: .4em .5em;
}
@media screen and (min-width: 576px) {
  input[type="text"],
  input[type="password"],
  input[type="date"],
  input[type="datetime"],
  input[type="email"],
  input[type="number"],
  input[type="search"],
  input[type="tel"],
  input[type="time"],
  input[type="url"],
  input[type="submit"],
  input[type="reset"],
  textarea,
  select,
  button {
    font-size: 1.2em;
    padding: .5em;
  }
}
input[type="submit"] {
  background-color: transparent;
  border: none;
  font-size: 1.1em;
  letter-spacing: .06em;
  padding: 0;
  transition: color var(--duration-x) ease, background-color var(--duration) ease;
}
input[type="submit"]:disabled {
  opacity: .5;
}
input[type="submit"].is-inactive {
  transition: color var(--duration-x) ease, background-color var(--duration) ease;
}
input:focus-visible,
textarea:focus-visible,
input[type="checkbox"]:focus + .input_label,
input[type="radio"]:focus + .input_label {
  outline: var(--form-point-color) solid 2px;
  transition: outline .15s ease;
}
a,
button,
input,
label,
textarea {
  cursor: pointer;
}
input.is-inactive {
  cursor: not-allowed;
}
/* ::placeholder */
::-webkit-input-placeholder {
  color: #afafaf;
}
::-moz-placeholder {
  color: #afafaf;
  opacity: 1;
}
::placeholder {
  color: #afafaf;
  opacity: 1;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}
:focus::-moz-placeholder {
  color: transparent;
}
:focus::placeholder {
  color: transparent;
}
/*  */
img {
  width: 100%;
  height: auto;
  min-height: 1%;
}
p {
  margin-block-start: 0;
  margin-block-end: 0;
}
ul.style-none,
ol.style-none,
ul.cell,
ol.cell,
ul.check-list,
ul.contact,
ul.field,
ul.symbol-list,
ol.symbol-list,
ul.item,
ul.menu,
ul.nav,
ul.submenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.style-none > li,
ol.style-none > li,
ul.cell > li,
ol.cell > li,
ul.check-list > li,
ul.contact > li,
ul.field > li,
ul.symbol-list > li,
ol.symbol-list > li,
ul.menu > li,
ul.nav > li,
ul.submenu > li {
  margin: 0;
  padding: 0;
}
ul > li > p,
ol > li > p {
  margin: 0;
}
ul {
  margin: 0;
}
ol {
  padding-inline-start: 0;
}
dl {
  margin: 2em 0;
}
th {
  font-weight: inherit;
}
dd {
  margin-inline-start: 0;
}
table {
  border-spacing: 0;
}
td {
  padding: 0;
}
nav li {
  position: relative;
}
nav li::before {
  position: absolute;
}
a {
  color: var(--link-text);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.link-text {
  position: relative;
}
.header-inner,
.article-header,
.list-heading,
.arrow {
  position: relative;
}
.header-inner::before,
.header-inner::after,
.article-header::before,
.article-header::after,
.article-header_sub::before,
.article-header_sub::after,
.list-heading::before,
.list-heading::after,
.arrow:before {
  content: "";
  position: absolute;
}
/* 共通 */
.site-heading {
  margin: .6em 0 auto 0;
}
.group-heading {
}
.list-heading {
}
.article {
  margin: 6em 0 7.5em;
  position: relative;
  z-index: 1;
}
.article-header {
  text-align: center;
  height: 100%;
  margin-bottom: 4em;
}
.article-header .article-heading {
  color: var(--blue-dark-);
}
.article-inner .article-heading > .heading-inner {
  font-size: 1.4em;
  position: relative;
}
.article-inner .article-heading > .heading-inner {
  display: flex;
  flex-direction: column-reverse;
}
.article-heading span.jp {
  letter-spacing: .2em;
  height: 100%;
}
.article-heading span.en {
  font-size: 1.2em;
  font-weight: 200;
  letter-spacing: .4em;
  text-transform: uppercase;
  height: 100%;
}
/* テキスト系設定 */
.text-text,
p.text-text {
  margin: 1em 0;
}
.text-bold {
  font-weight: bold;
}
.text-large {
  font-size: 1.2em;
}
.text-small {
  font-size: .9em;
}
.text-highlight {
  font-size: 1.2em;
  line-height: 1;
}
.text-center {
  text-align: center;
}
.text-inline {
  display: inline-block;
  /* 文字いいところでも改行できるように */
}
.text-label {
  background-color: var(--nav-bg);
  display: inline-block;
  padding: .2em .4em;
}
.text-underline,
.text-marker {
  position: relative;
}
.text-underline::before {
  background-color: #333;
  content: "";
  width: 102%;
  height: .1em;
  position: absolute;
  bottom: -.08em;
  left: -.1em;
}
.text-marker::before {
  background: linear-gradient(transparent 60%, #dcdcdc 0% );
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
span.text-block,
small.text-block {
  display: block;
}
.copyright {
  font-size: .9em;
}
.number-text {
  letter-spacing: .06em;
}
.hyphen {
  font-size: 1.4em;
  font-weight: 400;
  line-height: .5;
  position: relative;
  top: .02em;

  padding-inline: .01em;
}
.nyoro {
  padding: 0 .05em;
}
.slash {
  position: relative;
  left: .1em;
}

/* パーツなどのテンプレート設定 */
.pc-only {
  display: none;
}
.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
ul.list-dot > li,
ul.list-checklist > li {
  padding-left: 1em;
}
ul.list-dot > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
ul.list-checklist > li::before {
  border: .12em solid var(--text-color);
  content: "";
  display: block;
  width: .9em;
  height: .9em;
  position: absolute;
  top: .3em;
  left: 0;
}
.list-inner {
  margin: 0 0 1em;
  position: relative;
}
.item,
ul.item {
  display: flex;
}
.item.column,
.item.row {
  flex-flow: column;
}
.grid {
  display: grid;
}
@media screen and (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
  }
  .grid > div {
    margin: 0;
  }
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  margin: 3em 0;
}
.form-title {
  display: flex;
  margin: 1em 0;
}
.form-inner {
  width: 100%;
}
.form-title > span:not(.must) {
  margin: auto 0;
}
.must {
  background-color: #797979;
  color: #fff;
  font-size: .9em;
  font-weight: bold;
  letter-spacing: .1em;
  display: flex;
  min-width: 3.4em;
  margin: auto 1em auto 0;
  padding: .4em .6em;
}
input[type="submit"].submit {
  background-color: var(--footer-bg);
  color: #fff;
  display: inline-block;
  width: auto;
  padding: 1em 2.5em;
  transition: color var(--duration-x) ease, background-color var(--duration) ease, opacity var(--duration);
}

.group {
}
.group-inner {
}
.group-box,
.item-box {
  margin: 2em 0;
  position: relative;
}
.text-box {
  margin: 2em 0;
}
.img-box {
  width: 100%;
  height: 100%;
  min-height: 1%;
}
.box-inner {
  position: relative;
}
.img-box > .box-inner {
  width: 100%;
  height: 100%;
}
/* 共通したテキストボックス系 */
.box-shape,
.box-shape-outline,
.box-outline {
  box-shadow: 0 10px 10px rgba(0,0,0,.05);
  margin: 2em 0;
  padding: 1em 2em;
}
.box-shape,
.box-shape-outline {
  background-color: var(--shape-bg);
}
.item.row > .list-inner.box-shape {
  padding: 1em 2em;
}
.box-shape-outline,
.box-outline {
  border: 1px solid #333;
}

.arrow::before {
  border-top: 1em solid #4f4f4f;
  border-right: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid transparent;
  bottom: -2em;
  left: calc(50% - 1em);
}
.braket-before {
  margin-right: .025em;
  margin-left: -.75em;
}
.braket-after {
  margin-left: -.5em;
  position: relative;
  left: .5em;
}
.fadein {
  opacity: 0;
}
.fadein.scrollin {
  opacity: 0;
  animation-name: fadeinAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
@keyframes fadeinAnime {
  from {
    opacity: 0;
    transform: translateY(5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 374px) {
}
@media screen and (min-width: 576px) {
}
@media screen and (min-width: 768px) {
  .item.row {
    flex-flow: row;
  }
  .item.row > .list-inner {
    padding: 0 1em;
  }
  .contents-small {
    max-width: var(--contents-width);
    margin: 0 auto;
  }
  .form-title {
    width: 33%;
    margin: 0 0 auto 0;
  }
  .form-inner {
    width: 67%;
    margin: auto 0;
  }
}
@media screen and (min-width: 992px) {
}

/*
___________________
基本16px
0.0625em | 1px
0.09375em | 1.5px
0.125em | 2px
0.1875em | 3px
0.25em | 4px
・・・
0.625em | 10px
1em | 16px
___________________ */

/* ---------------------
index.html
------------------------ */
/* header */
.header {
  background-color: var(--blue-light);
  display: block;
  height: 4em;
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 10;
}
.header > .header-inner {
  line-height: 1.2em;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 1em 2em;
}
.header .header-inner .item-box {
  margin: auto 0;
  padding-right: 1.5em;
}
.header .item-box a[href^="tel:"] span {
  font-size: 1.2em;
  letter-spacing: .05em;
}
.header-info {
  display: flex;
  justify-content: space-between;
  margin: auto 0;
}
.header-info .heading-inner a {
  color: var(--blue-dark-);
}
.nav .nav-menu {
  /* width: 100vw; */
  width: 77%;
  margin: 4em 0 0;
  /* padding: .5em 2em; */
  padding: 0 2em;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  transition: transform var(--duration) ease;
}
.nav-menu .nav-menu_item {
  padding: 1.5em 0;
  position: relative;
  opacity: 1;
}
/* hamberger-btn */
.nav .hamberger-btn {
  width: 2em;
  height: 2em;
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 99;
  cursor: pointer;
}
.hamberger-btn .btn-inner::before,
.hamberger-btn .btn-inner::after {
  content: "";
}
.hamberger-btn .hamberger {
  background-color: var(--blue-dark-);
  display: block;
  width: 100%;
  height: 2.5px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transform: none;
  transition: transform var(--duration) ease, opacity var(--duration) ease, display var(--duration) ease, background-color var(--duration) ease;

  transform-origin: right center;
}
.nav .active .hamberger {
  background-color: #fff;
  transition: background-color var(--duration) ease;
}
.hamberger-btn .hamberger:nth-child(2) {
  top: .75em;

  transform-origin: center;
}
.hamberger-btn .hamberger:nth-child(3) {
  top: 1.5em;
}
.active .hamberger-btn .hamberger:nth-child(1) {
  transform: rotate(-45deg);
  transition: transform var(--duration) ease;

  transform-origin: right center;
}
.active .hamberger-btn .hamberger:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.active .hamberger-btn .hamberger:nth-child(3) {
  transform: rotate(45deg);
  transition: transform var(--duration) ease;

  transform-origin: right center;
}
.nav-bg {
  background-color: var(--blue-dark-);
  width: 77%;
  height: 50%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translateX(120vw);
  transition: opacity var(--duration) ease,
  transform .4s ease;
}
.active .nav-bg {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--duration) ease,
  transform .4s ease;
}
@media screen and (min-width: 576px) {
  .header .group {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .header {
    height: 4.5em;
  }
  .header .nav {
    margin-right: -1.4em;
    position: relative;
  }
  .nav-inner {
    max-width: var(--contents-max-width);
    margin: 0 auto;
  }
  .nav .nav-menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    position: relative;
  }
  .nav .nav-menu_item {
    line-height: 1;
    text-align: center;
    margin: 0 .5em;
    padding: 0;
  }
  .nav .nav-menu_item span {
    font-size: .9em;
    font-weight: 700;
    display: block;
    min-width: 6em;
    padding: .8em .5em;
  }
}
body.active-01 .nav .nav-menu {
  position: fixed;
  z-index: 1;
  opacity: 0;
  transform: translate(120vw);
  transition: transform var(--duration) ease, opacity var(--duration) ease;
}
body.active-01 .nav .nav-menu_item {
  z-index: 0;
  transform: translate(250vw);
}
body.active-01 .nav .active .nav-menu {
  z-index: 5;
  opacity: 1;
  transform: translate(0);
  transition: transform var(--duration) ease, opacity var(--duration) ease;
}
body.active-01 .nav .active .nav-menu_item {
  transform: translate(0);
  transition: transform .66s ease-in-out;
}
body.active-01 .nav .active .nav-menu_item:first-of-type {
  transition-delay: .1s;
}
body.active-01 .nav .active .nav-menu_item:nth-of-type(2) {
  transition-delay: .2s;
}
body.active-01 .nav .active .nav-menu_item:last-of-type {
  transition-delay: .3s;
}
@media screen and (min-width: 768px) {
  .active .top-bg {
    top: 4.5em;
  }
  .nav .hamberger-btn {
    display: none;
    opacity: 0;
  }
  body.active-02 .nav .nav-menu {
    display: flex;
    top: 0;
  }
  body.active-01 .nav .nav-menu,
  body.active-01 .nav .nav-menu_item {
    padding: 0;
    position: relative;
    opacity: 1;
    transform: translate(0);
    transition: none;
  }
}

/* main */
main {
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 0;
  }
}
#eyecatch {
  max-height: 45em;
  margin: 0 calc(50% - 50vw) 0;
  position: relative;
  overflow: hidden;
}
#eyecatch > .box-inner {
  background-image: url(../img/top_.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 40em;
  position: relative;

  aspect-ratio: 4 / 3;
}
#eyecatch > .box-inner::before {
  background-color: rgb(140 140 140 / 30%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;;
}
#eyecatch .text-box {
  text-align: center;
  display: block;
  width: 30em;
  height: auto;
  position: absolute;
  top: calc(50% - 5em);
  left: calc(50% - 15em);
}
#eyecatch .text-box p {
  font-size: 1.6em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #eyecatch .text-box {
    width: 40em;
    left: calc(50% - 20em);
  }
  #eyecatch .text-box p {
    font-size: 2.0em;
  }
}
@media screen and (min-width: 768px) {
  #eyecatch {
    margin: 0 calc(50% - 50vw) 0;
  }
}
/* article */
.grid > li {
  margin: 1em 0;
}
.grid-items-3 .box-shape {
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  .grid > li {
    margin: 0;
  }
  .grid.grid-items-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

[type="checkbox"],
[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.input_label {
  margin-left: 1.5em;
  padding: .2em;
  position: relative;
}
.input_label::before,
.input_label::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
}
.input_label.radio::before,
.input_label.checkbox::before {
  border: .09375em solid var(--text-color);
  width: 1.4em;
  height: 1.4em;
  top: .05em;
  left: -1.5em;
  opacity: 3;
}
.input_label.radio::before,
.input_label.radio::after {
  border-radius: 50%;
}
.input_label.radio::after {
  background-color: var(--form-point-color);
  width: 1em;
  height: 1em;
  top: .25em;
  left: -1.3em;
  opacity: 0;
  transition: opacity var(--duration) ease;
}
input[type=radio]:checked + .input_label.radio::after,
input[type=checkbox]:checked + .input_label.checkbox::after {
  opacity: 1;
  transition: opacity var(--duration) ease;
}
.input_label.checkbox::after {
  border-right: 3px solid var(--form-point-color);
  border-bottom: 3px solid var(--form-point-color);
  width: .7em;
  height: 1em;
  top: .05em;
  left: -1.15em;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity var(--duration) ease;
}
.form .submit.is-active {
  transition: transform var(--duration) ease;
}
.form .submit.is-active:hover {
  transform: scale(.95) translateY(.25em);
  transition: transform var(--duration) ease;
}

/* footer */
.footer {
  background-color: var(--blue-dark-);
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer .item.row {
  justify-content: center;
}
.footer .list-inner span {
  font-size: .9em;
}
.footer .list-inner a {
  transition: opacity var(--duration) ease;
}
.page-up-btn {
  background-color: var(--blue-dark-);
  border-radius: .2em;
  width: 4em;
  height: 4em;
  position: absolute;
  top: -3.8em;
  right: 1em;
  transform: translateY(0);
  transition: transform var(--duration) ease;
}
.page-up-btn .btn-inner {
  background-color: var(--text-color);
  box-shadow: 0 5px 5px rgba(0,0,0,.05);
  padding: .8em .9em;
}
.page-up-btn .btn-inner svg {
  font-size: 1.2em;
}
.page-up-btn:hover {
  cursor: pointer;
  transform: translateY(-.4em);
  transition: transform var(--duration) ease;
}
.page-up-btn .icon {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
}
.page-up-btn .fa-chevron-up {
  font-size: 1.5em;
  margin: auto;
}
@media  screen and (min-width: 768px) {
  .page-up-btn {
    right: 2.5em;
  }
}
/* header */
.header .nav-menu_item a {
  color: #fff;
}
.icon-phone::before {
  content: "\f095";
  color: #fff;
  font: var(--fa-font-solid);
  font-size: 1.4em;
  font-weight: 900;
  position: relative;
  bottom: -3px;
  left: -.2em;
}
.header .icon-phone::before {
  color: var(--blue-dark-);
}
.header .nav .item-box,
.header .nav .item-box a {
  color: var(--blue-dark-);
}
.header .nav .item-box {
  display: none;
  margin-top: -1em;
  position: relative;
}
.header .nav .text-center {
  font-size: .9em;
  margin-right: -1.2em;
  position: relative;
  bottom: -.5em;
}
.header .nav .contact-tel + .text-block.text-small {
  color: var(--text-color);
  font-size: .8em;
  letter-spacing: -.03em;
  text-align: end;
}
@media screen and (min-width: 576px) {
  .header .nav .item-box {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header .nav-menu_item a {
    color: var(--blue-dark-);
  }
  .header .nav-menu_item a::before {
    background-color: var(--blue-dark-);
    content: "";
    width: calc(100% - 1em);
    height: .125em;
    position: absolute;
    bottom: .4em;
    left: .5em;
    transform: scale(0, 1);
    transition: transform .35s ease;

    transform-origin: right top;
  }
  .header.header-down {
    box-shadow: 0 10px 10px rgba(0, 0, 0, .05);
    position: fixed;
    animation: DownHeader .5s forwards;
  }
  @keyframes DownHeader {
    from {
      opacity: 0;
      transform: translateY(-7em);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header.header-up {
    position: fixed;
    animation: UpHeader .5s forwards;
  }
  @keyframes UpHeader {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-7em);
    }
  }
  .nav-menu_item a:hover::before {
    transform: scale(1, 1);
    transition: transform .35s ease;

    transform-origin: left top;
  }
  .icon-phone::before {
    bottom: -3px;
    left: -.1em;
  }
}
/* -----
.mainvisual
-----*/
.mainvisual {
  background-color: var(--blue-light);
  height: 38em;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
.mainvisual .mainvisual-inner {
  max-width: var(--contents-max-width);
  padding: 0 1.5em;
}
.mainvisual::before {
  background: url(../img/mainvisual-bg.webp) repeat-x ;
  background-position: 7% 0;
  background-size: 200%;
  content: "";
  width: 100%;
  height: 5em;
  position: absolute;
  bottom: 2em;
  left: 0;
}

/* お問い合わせ　contact-box 共通*/
.contact-box {
  font-size: 1.4em;
  text-align: end;
  display: flex;
  justify-content: end;
}
.contact-box .contact-inner {
  background-color: #fff;
  border-radius: .2em;
  font-family: "Montserrat", "Zen Kaku Gothic New", serif;
  display: flex;
  padding: .6em .8em;
}
.contact-box .contact-inner a,
.contact-box .icon-phone::before {
  color: var(--blue-dark-);
}
.contact-box .icon-phone {
  margin: auto 0;
  padding-right: .2em;
}
.contact-box .contact-inner .link-inner {
  display: flex;
  flex-direction: column;
}

.contact-box .tel .num {
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
}
.contact-box .tel .ja {
  font-size: .65em;
}
.contact-box .text-link {
  line-height: 1.2;
  padding-bottom: .3em;
}
.contact-box  .link-inner .text-small {
  font-size: .6em;
  text-align: center;
}
.contact-box .link-inner > span:first-of-type {
  font-size: .8em;
  text-align: center;
  padding-bottom: .3em;
  position: relative;
  left: -.5em;
}
.contact-box .link-inner .text-small:first-of-type {
  position: relative;
  left: -.2em;
}
.contact-box .link-inner > .text-small:last-of-type {
  letter-spacing: .13em;
  padding: 0 1em 0 0 ;
}
@media screen and (min-width: 768px) {
  .contact-box .contact-inner {
    padding: 1em 1.2em 1em 1em;
  }
  .contact-box .link-inner {
    text-align: center;
  }
  .contact-box .contact-inner .link-inner {
    max-width: 12em;
  }
  .contact-box .tel .num {
    font-size: 1.2em;
    letter-spacing: .05em;
  }
  .contact-box .tel .ja {
    font-size: .75em;
  }
  .contact-box .link-inner > span:first-of-type {
    font-size: .8em;
    line-height: 1;
    text-align: center;
    padding-bottom: .3em;
    position: relative;
    left: -.5em;
  }
  .contact-box .link-inner > .text-small:last-of-type {
    font-size: .65em;
    letter-spacing: .15em;
  }
}
@media screen and (min-width: 992px) {
  .contact-box .contact-inner {
    padding: 1em;
  }
  .contact-box .contact-inner .link-inner {
    max-width: none;
  }
}
/* .contact-box共通　ここまで */

/* .mainvisual .main-text */
.mainvisual .main-text {
  color: #fff;
  font-family: "Montserrat", "Zen Kaku Gothic New";
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: .1em;
  text-shadow: 0 3px 3px rgba(0,0,0,.1);
  padding: 1.5em 0 0 ;
}
/* .mainvisual .contact-box */
.mainvisual .contact-box .contact-inner {
  background-color: var(--blue-sub);
  color: #fff;
  position: relative;
}
.mainvisual .contact-box .contact-inner::before {
  border-top: var(--blue-sub) 1.625em solid;
  border-right: transparent 2.5em solid;
  border-bottom: transparent .375em solid;
  border-left: transparent 0 solid;
  content: "";
  position: absolute;
  right: 1.2em;
  bottom: -1em;
  z-index: -1;
}
.mainvisual .contact-box  a,
.mainvisual .contact-box .icon-phone::before {
  color: #fff;
}
.mainvisual .contact-box .icon-phone::before {
  top: 0;
}
.mainvisual .item-box > .box-inner {
  display: inline-block;
}
.mainvisual .item-box {
  text-align: center;
  position: relative;
}
.mainvisual .item-box .img-box {
  width: 12em;
  margin: 1em auto 0;
}
.mainvisual .item-box .img-box img {
  aspect-ratio: 4 / 3 ;
}
@media screen and (min-width: 576px) {
  .mainvisual {
    height: 42em;
  }
  .mainvisual::before {
    background-size: 150%;
  }
  .mainvisual .main-text {
    font-size: 1.8em;

    padding-inline: 1em;
  }
  .mainvisual .item-box .img-box {
    width: 13em;
  }
  .mainvisual .contact-box .tel .ja {
    font-size: .8em;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual {
    height: 35em;
  }
  .mainvisual::before {
    background-size: auto;
  }
  .mainvisual .mainvisual-inner {
    margin: 0 auto;
    padding: 0 2.5em ;
    position: relative;
  }
  .mainvisual .item-box {
    max-width: 40%;
    margin: 0;
    position: absolute;
    top: 0;
    right: 2em;
  }
  .mainvisual .item-box .img-box {
    width: 17em;
    margin: 2em auto 0;
  }
  .mainvisual .main-text {
    font-size: 1.45em;
    padding: 4em 0 0 0;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual .contact-box .contact-inner {
    padding: 1em 1.5em;
  }
  .mainvisual .item-box {
    max-width: none;
    top: 2em;
    right: 2.5em;
  }
  .mainvisual .main-text {
    font-size: 1.65em;
    padding: 4.5em 0 0 0;
  }
}
@media screen and (min-width: 1180px) {
  .mainvisual .main-text {
    font-size: 1.8em;
  }
}

/* ----------
#article-service
---------- */
#article-service .list-number {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2em;
}
#article-service .heading {
  color: var(--blue-dark-);
  text-align: center;
}
#article-service .heading .heading-inner {
  font-size: 1.375em;
}
#article-service .group-inner .list .list > .list-inner,
#article-service .group-inner .list .list {
  margin-bottom: 0;
}
#article-service .group-inner .list .list > .list-inner {
  display: inline-block;
}
#article-service .list .text-block {
  text-align: end;
}
#article-service .img-box {
  width: 100%;
  height: auto;

  margin-block: 1em;
}
#article-service .img-box > .box-inner {
  width: 6.25em;
  height: auto;
  margin: 0 auto;
}
#article-service .img-box > .box-inner img {
  aspect-ratio: 1 / 1;
}
#article-service .group-inner > .list > .list-inner {
  background-color: var(--blue-light-);
  border-radius: .625em;
  margin-bottom: 3em;
  padding: 2em 1.5em;
}
@media screen and (min-width: 768px) {
  #article-service .group-inner > .list {
    display: grid;

    gap: 2em;
    grid-template-columns: 2fr 2fr;
  }
  #article-service .group-inner > .list > .list-inner {
    width: 100%;
    margin-bottom: 0;
    padding: 2em 1.5em;
  }
}
@media screen and (min-width: 992px) {
  #article-service .group-inner > .list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5em;
  }
  #article-service .group-inner > .list > .list-inner {
    padding: 1.5em;
  }
}
@media screen and (min-width: 1200px) {
}
/* ----------
#article-about
---------- */
#article-about .table {
  width: 100%;
}
#article-about .table th {
  border-bottom: .125em solid var(--main-blue);
  font-weight: 700;
  letter-spacing: .1em;
  text-align: justify;
  width: 27%;
  padding: 1em 1em;
}
#article-about .table td {
  border-bottom: .125em solid #e4eaec;
  width: 73%;
  padding: 1em 1em 1em 2em;
  position: relative;
}
#article-about .table th[rowspan="2"] + td {
  border-bottom: none;
  padding-bottom: 0;
}
#article-about .table .tr-two-line td {
  padding-top: .25em;
}
#article-about .table .td .number-text {
  display: inline-block;
  min-width: 8em ;
}
#article-about .item-01::before {
  background: url(../img/icon-points.webp) no-repeat;
  background-size: 90%;
  content: "";
  width: 9em;
  height: 9em;
  position: absolute;
  top: 1em;
  right: -2em;

  aspect-ratio: 322 / 359;
}
.number-text .number-1 {
  position: relative;
  left: .125em;
}
@media screen and (min-width: 576px) {
  #article-about .item-01::before {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  #article-about .table th {
    padding: 1em 2em;
  }
  #article-about .table td {
    padding: 1em 2em;
  }
  #article-about .item-01::before {
    width: 10em;
    height: 10em;
    top: -4em;
    right: 2em;
  }
}

/* ----------
#article-access
---------- */
#article-access {
  background-color: var(--blue-light);
  margin: 0 calc(50% - 50vw);
  padding: 6em 0 7.5em;
}
#article-access .article-inner {
  max-width: var(--contents-max-width);
  margin: 0 auto ;
  padding: 0 1.5em;
}
#article-access .list-inner .icon-inner {
  display: inline-block;
  width: 5em;
  height: 5em;
}
#article-access .list-inner .icon-inner img {
  aspect-ratio: 1 / 1;
}
#article-access .text-box {
  text-align: center;
}
#article-access a {
  transition: opacity var(--duration) ease;
}
#article-access a:hover {
  opacity: .7;
  transition: opacity var(--duration) ease;
}
#article-access .icon {
  display: inline-block;
  margin-bottom: 1em;
}
#article-access .text-text {
  margin-top: 0;
}
#article-access .text-text .icon {
  margin-bottom: 0;
  padding-left: .5em;
}
.map {
  margin: 0 auto;
}
#article-access .group-inner > .map {
  height: 19em;
}
@media screen and (min-width: 768px) {
  #article-access .article-inner {
    padding: 0 2.5em;
  }
  #article-access .group-inner {
    display: flex;
  }
  #article-access .group-inner > .text-box {
    width: 43%;
    margin: 0 .5em auto 0;
  }
  #article-access .group-inner > .map {
    width: 67%;
  }
}
/* ----------
footer
---------- */
.footer .footer-inner {
  padding: 2em 1.5em;
}
.copyright {
  text-align: center;
  margin-top: 2em;
}
.footer .nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .text-box {
  margin: 0 0 2em;
}
.footer .text-box span.text-block {
  margin-bottom: 1em;
}
.footer .contact-box {
  justify-content: center;
  transition: transform var(--duration) ease;
}
.footer .contact-box:hover {
  /* transform: translateY(.25em); */
  transition: transform var(--duration) ease;
}
/* .footer .contact-inner a {
  display: flex;
} */

.footer .contact-box .contact-inner .link-inner {
  color: var(--blue-dark-);
}
@media screen and (min-width: 768px) {
  .footer .footer-inner {
    padding: 2em 2.5em;
  }
  .footer .text-box {
    margin: 0 ;
  }
  .footer .nav-inner {
    flex-direction: row;
  }
}

/*  */
