@charset "UTF-8";
:root {
  --color-def: #000;
  --color-title: #006fbb;
  --color-nav: #006fbb;
  --accent: #006fbb;
  --red: #bd0000;
  --bg-base: #007be3;
  --bg-gra: linear-gradient(135deg, rgba(0,168,255,0.3) 0%, rgba(0,255,174,0.3) 100%);
  --bg-gra2: linear-gradient(135deg, rgba(0,168,255,1) 0%, rgba(0,255,174,1) 100%);
  --ls-normal: 0.05em;
  --ls-narrow: 0.025em;
  --ls-wide: 0.1em;
  --title-sub-size: 2.4rem;
  --header-h: auto;
  --footer-bg: #f4f3f3;
  --section-space: calc(80em / 16);
  --container: 1230px;
  --container-pad: calc(15% / 4.00);
  --ff-gothic: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","Yu Gothic", sans-serif;
  --ff-maru: "Zen Maru Gothic","Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","Yu Gothic", sans-serif;
  --ff-mincho: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --ff-en: "Lexend", sans-serif;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
/* ===========================================================================

/assets/sass/common/_reset.scss
Reset

=========================================================================== */
body {
  /* webkit系のスマホで文字が拡大されるのを防ぐ */
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: inherit;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

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

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /* 必要に応じて下記はコメントアウト */
  /*
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
  */
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:focus {
  outline: none;
}

img {
  vertical-align: bottom;
}

a, span, small, strong {
  color: inherit;
  font-weight: inherit;
}

html {
  font-size: 0.625em;
  box-sizing: border-box;
}

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

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

.mt1 {
  margin-top: 1em;
}

.mt15 {
  margin-top: 1.5em;
}

.mt2 {
  margin-top: 2em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb15 {
  margin-bottom: 1.5em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb25 {
  margin-bottom: 2.5em;
}

.mb3 {
  margin-bottom: 3em;
}

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

.pl4 {
  padding-left: 4em;
}

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

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

.list-decimal > li {
  padding-left: 2em;
  text-indent: -2em;
  list-style: decimal;
  list-style-position: inside;
}
.list-decimal > li::marker {
  color: var(--accent);
  font-weight: bold;
}

.ta_l {
  text-align: left;
}
.ta_r {
  text-align: right;
}
.ta_c {
  text-align: center;
}

@media print, screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .hide-tablet {
    display: none;
  }
}
@media print, screen and (min-width: 1021px) {
  .hide-pc {
    display: none;
  }
}

/* -----------------------------
 clearfix
----------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  min-height: 1%;
}

/* for IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

body {
  font-family: var(--ff-gothic);
  color: var(--color-def);
  line-height: 1.875;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  letter-spacing: var(--ls-normal);
  font-size: clamp(1.4rem, 4vmin, 1.6rem);
}
@media print, screen and (max-width: 767px) {
  body {
    --section-space: 3em;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    --header-h:10rem;
    --container-pad: 15px;
  }
}

.small {
  font-size: clamp(1.4rem, 3.5vmin, 1.6rem);
}

.table {
  color: var(--color-def);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

.en {
  font-family: var(--ff-en);
}

.maru {
  font-family: var(--ff-maru);
}

.mincho {
  font-family: var(--ff-mincho);
}

.gothic {
  font-family: var(--ff-gothic);
}

b, strong, .bold {
  font-weight: 600;
}

.sup {
  font-size: smaller;
  position: relative;
  top: -0.1em;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
@media print, screen and (min-width: 768px) {
  .container {
    max-width: var(--container);
  }
}

h1, h2, h3, h4 {
  font-weight: inherit;
  line-height: 1.6;
}

.fc-default {
  color: var(--color-def);
}
.fc-accent {
  color: var(--accent);
}
.fc-red {
  color: var(--red);
}

.bg-gray {
  background-color: #eff3f6;
}

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

a:hover {
  opacity: 0.75;
}

a img {
  transition: opacity 0.3s ease;
}
a img:hover {
  opacity: 0.75;
}
a img.js-img-on:hover {
  opacity: 1;
}

.h-alpha {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.h-alpha:hover {
  opacity: 0.75;
}

@media print, screen and (min-width: 1021px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.ilblk {
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .col {
    width: 48.5507246377%;
  }
  .col-3 {
    width: 31.3235294118%;
  }
}
.js-animate.fade-in {
  opacity: 0;
}
.js-animate.fade-in.inView {
  animation: 0.8s 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation-name: fade_in, slide_in_y;
}
.js-animate.mask-in {
  position: relative;
  overflow: hidden;
}
.js-animate.mask-in .mask-blk {
  opacity: 0;
}
.js-animate.mask-in.inView {
  animation: maskIn 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  opacity: 1;
}
.js-animate.mask-in.inView::before {
  animation: maskOut 0.5s 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
}
.js-animate.mask-in.inView .mask-blk {
  animation: fade_in 0.5s 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide_in_y {
  0% {
    transform: translateY(1.4vw);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide_in_x_left {
  0% {
    transform: translateX(-25vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_in_x {
  0% {
    transform: translateX(25vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_in_x_left2 {
  0% {
    transform: translateX(-50vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_in_x2 {
  0% {
    transform: translateX(50vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bg_slide_x {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes arrow_bg {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 28% 0;
  }
}
@keyframes arrow_trans {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes maskIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes svgBigger {
  from {
    stroke-width: 0;
  }
  to {
    stroke-width: 50;
  }
}
@keyframes anime_slashtop {
  0% {
    transform: translate(-100vw, 100vw);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes anime_slashbottom {
  0% {
    transform: translate(45vw, -50vw);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes flip_in {
  0% {
    transform: rotateY(-90deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.header {
  --container: 100%;
  --container-pad: 0;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header-logo {
  padding-left: 1em;
}
.header-logo img {
  vertical-align: baseline;
}
.header-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: var(--header-h);
  align-items: center;
}
.header-btn {
  position: relative;
  z-index: 15;
  pointer-events: initial;
  margin-left: auto;
  position: fixed;
  right: 1.5rem;
}
.navopen .header .header-logo {
  opacity: 0;
  pointer-events: none;
}
@media print, screen and (max-width: 767px) {
  .header-row {
    flex-wrap: wrap;
    padding: 15px 0 20px;
  }
  .header-logo {
    width: 140px;
  }
  .header-btn {
    top: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .header-btn {
    display: none;
  }
}

@media print, screen and (max-width: 767px) {
  .gnav {
    position: fixed;
    z-index: 10;
    width: 100%;
    right: 0;
    top: 0;
    max-height: 100vh;
    overflow-y: scroll;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #eff3f6;
    padding: 8rem 0 4rem;
    opacity: 0;
  }
  .navopen .gnav {
    pointer-events: initial;
    transform: translateY(0);
    opacity: 1;
  }
  .navopen .gnav-btn-line {
    background-color: transparent;
  }
  .navopen .gnav-btn-line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .navopen .gnav-btn-line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .gnav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 1em;
    cursor: pointer;
  }
  .gnav-btn-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-nav);
    display: block;
    position: relative;
  }
  .gnav-btn-line::before, .gnav-btn-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: var(--color-nav);
    transition: top 0.3s ease, transform 0.3s ease;
  }
  .gnav-btn-line::before {
    top: -1rem;
  }
  .gnav-btn-line::after {
    top: 1rem;
  }
  .gnav-list {
    display: flex;
    flex-direction: column;
    padding-left: 2em;
    padding-right: 2em;
  }
  .gnav-logo {
    order: 0;
  }
  .gnav-item {
    order: 1;
    margin-top: 2em;
    line-height: 1.5;
  }
  .gnav-item a {
    display: flex;
    gap: 0.8em;
  }
  .gnav-item.contact {
    background-color: var(--bg-base);
    margin-left: 1em;
  }
  .gnav-item.contact a {
    background: var(--bg-gra);
    color: #fff;
    padding: 1em 2em;
  }
  .gnav-text {
    font-size: clamp(1.6rem, 4.5vmin, 2.2rem);
  }
}
@media print, screen and (min-width: 768px) {
  .gnav {
    position: relative;
    z-index: 5;
  }
  .gnav-list {
    display: flex;
    align-items: center;
  }
  .gnav-item {
    position: relative;
  }
  .gnav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    height: var(--header-h);
    padding-bottom: 0.5rem;
    gap: 0.5rem;
    padding: 1em;
    color: var(--color-def);
  }
  .gnav-item a:hover {
    opacity: 1;
    color: var(--color-nav);
  }
  .gnav-item.contact {
    background-color: var(--bg-base);
    margin-left: 1em;
  }
  .gnav-item.contact a {
    background: var(--bg-gra);
    color: #fff;
    padding: 1em 2em;
  }
  .gnav-btn {
    display: none;
  }
  .gnav-row {
    display: flex;
    justify-content: space-around;
    gap: 0 2em;
    flex-wrap: wrap;
  }
  .gnav-col {
    flex-grow: 1;
  }
}

.fcontact {
  background-color: var(--accent);
  color: #fff;
  padding-top: var(--section-space);
}
.fcontact-box {
  background-color: #fff;
  color: var(--color-def);
  position: relative;
  padding: 3em;
}
.fcontact-sub {
  text-align: center;
  font-size: clamp(1.6rem, 4vmin, 2rem);
}
.fcontact-bnr {
  position: absolute;
  left: 80%;
  top: 0;
  transform: translateY(-50%);
}
.fcontact-row {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1em 7.5%;
}
.fcontact-tel {
  color: var(--accent);
  font-weight: bold;
  line-height: 1;
  font-size: clamp(2.6rem, 6.5vmin, 5rem);
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.fcontact-time {
  font-size: clamp(1.5rem, 3.75vmin, 1.8rem);
  margin-top: 0.5em;
}
@media print, screen and (max-width: 767px) {
  .fcontact-row {
    flex-wrap: wrap;
  }
}
.footer {
  background-color: var(--footer-bg);
}
.footer-info {
  margin: 2.4em 0;
}
.footer .copy {
  padding: 2.8em 0;
  color: #fff;
  font-size: clamp(1.2rem, 3vmin, 1.4rem);
  background: var(--bg-gra2);
}
@media print, screen and (max-width: 767px) {
  .footer {
    padding-top: 2em;
  }
  .footer-col {
    padding: 0 1em 3em;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-row {
    display: flex;
    justify-content: flex-end;
    min-height: 410px;
    align-items: center;
  }
  .footer-col {
    max-width: 600px;
    width: 50%;
    padding-right: 6.6666666667%;
  }
  .footer-map {
    width: 50%;
  }
}

.fnav {
  border-top: 2px #fff solid;
  padding-top: 1.5em;
}
.fnav-list {
  display: flex;
  gap: 1em 2em;
  line-height: 1.2;
  font-size: clamp(1.5rem, 3.5vmin, 1.7rem);
}
.fnav-list a {
  color: var(--accent);
}
@media print, screen and (max-width: 767px) {
  .fnav-list {
    flex-wrap: wrap;
  }
}

.page-catch {
  position: relative;
}
.page-catch-img {
  position: relative;
  z-index: 1;
}
.page-catch-img img {
  width: 100%;
  max-width: none;
  min-height: 280px;
  object-fit: cover;
}
.page-catch-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
}
.page-catch-title {
  color: #fff;
  text-align: center;
  font-size: clamp(1.8rem, 5vmin, 3.5rem);
  letter-spacing: var(--ls-wide);
  line-height: 1.4769230769;
  margin-bottom: 1em;
}
.page-catch-en {
  display: block;
  font-size: clamp(1.6rem, 3.5vmin, 2rem);
  letter-spacing: var(--ls-normal);
}
.page-catch-bg {
  background: var(--bg-gra2);
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 63.3333333333%;
}
@media print, screen and (max-width: 767px) {
  .page-catch-img img {
    width: 100%;
    height: 16em;
    object-fit: cover;
  }
}
.page-title {
  letter-spacing: var(--ls-normal);
  font-size: clamp(3rem, 7.5vmin, 7rem);
  padding-bottom: 3rem;
}
.page-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1em;
  padding: 2rem 0;
  margin-bottom: 2em;
}
.page-nav {
  display: flex;
  justify-content: center;
  gap: 1.5625em;
  flex-wrap: wrap;
}
.page-nav .btn {
  width: 12.2222222222em;
  height: 3.3333333333em;
  margin: 0;
}
@media print, screen and (max-width: 767px) {
  .page-nav {
    gap: 0.5em;
  }
  .page-nav .btn {
    width: 10em;
  }
}
.page-desc {
  margin-top: var(--section-space);
  line-height: 1.9090909091;
  font-size: clamp(1.6rem, 4.25vmin, 2.2rem);
}

.title-sec {
  letter-spacing: var(--ls-normal);
  margin-bottom: 1em;
  font-size: clamp(2.8rem, 7.5vmin, 7rem);
  text-align: center;
}
.title-sec-jp {
  display: block;
  font-size: clamp(1.5rem, 3.75vmin, 1.8rem);
}

.section {
  padding: var(--section-space) 0;
}

.btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 17.7777777778em;
  height: 4.4444444444em;
  background: var(--bg-base);
  color: #fff;
  font-size: clamp(1.6rem, 4vmin, 1.8rem);
  justify-content: center;
  line-height: 1;
  transition: opacity 0.3s;
  gap: 0.5em;
}
.btn::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--bg-gra);
}
.btn-ic {
  position: relative;
  z-index: 1;
}
.btn-text {
  position: relative;
  z-index: 1;
}
.btn-arrow {
  position: absolute;
  z-index: 1;
  right: 1rem;
}
.btn-arrow::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 3px #fff solid;
  border-right: 3px #fff solid;
  display: block;
  transform: rotate(45deg);
  border-radius: 2px;
}
.btn-small {
  width: 13.75em;
  height: 3.125em;
  font-size: clamp(1.4rem, 3.5vmin, 1.6rem);
}
.btn:hover {
  color: #fff;
}

.map-wrap {
  position: relative;
  padding-top: 73.1343283582%;
}
.map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.breadcrumb {
  padding: 1em 0;
  position: relative;
}
.breadcrumb-list {
  display: flex;
  gap: 0.5em;
  font-size: clamp(1.2rem, 3vmin, 1.4rem);
  color: #fff;
}
.breadcrumb-list li {
  line-height: 1;
}
.breadcrumb-list li + li::before {
  content: ">";
}

.list-circle li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.list-circle li::before {
  content: "●";
  color: var(--accent);
  margin-right: 0.5em;
}
.full-img img {
  width: 100%;
  max-width: none;
}

.border-list li {
  display: grid;
  grid-template-columns: clamp(130px, 20.8333333333%, 250px) 1fr;
  gap: 0 2rem;
}
.border-list .item {
  border-bottom: 1px var(--accent) solid;
  padding: 1em 0;
}
.border-list .detail {
  border-bottom: 1px #e4e4e4 solid;
  padding: 1em 0 1em 1rem;
}
@media print and (orientation: portrait), screen and (max-width: 767px) and (orientation: portrait) {
  .border-list li {
    grid-template-columns: repeat(1, 1fr);
  }
  .border-list .detail {
    margin-bottom: 1.5em;
  }
}

.table {
  width: 100%;
}
.table th, .table td {
  padding: 1em;
  border: 1px #444 solid;
}
.table thead th {
  background-color: #A6CDE7;
  text-align: center;
}
.table tbody th {
  background-color: #F2F8FC;
}
.table tbody .head {
  background-color: #BFDBEE;
  text-align: left;
}
.table tbody td {
  text-align: right;
}
.table tbody tr:nth-of-type(even) th {
  background-color: #D9E9F5;
}
.table tbody tr:nth-of-type(even) .head {
  background-color: #A6CDE7;
}
.table tbody tr:nth-of-type(even) td {
  background-color: #ECECEC;
}
.table-wrap {
  margin: 1em 0;
}
@media print, screen and (max-width: 767px) {
  .table {
    width: 1000px;
  }
  .table-wrap {
    overflow-x: scroll;
  }
}

.d-flex {
  display: flex;
}

.f-wrap {
  flex-wrap: wrap;
}

.tel-box {
  border: 1px #e4e4e4 solid;
  padding: 1.25em;
  margin-top: 4em;
  display: flex;
  align-items: center;
  gap: 1em 1.5em;
  flex-wrap: wrap;
}
.tel-box-title {
  background-color: #ceebff;
  padding: 1.5em 1.5em;
  color: var(--accent);
  font-size: clamp(1.6rem, 4vmin, 2rem);
  line-height: 1;
}
.tel-box-tel {
  color: var(--accent);
  font-weight: bold;
  line-height: 1;
  font-size: clamp(2.6rem, 6.5vmin, 5rem);
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-weight: bold;
}
.tel-box-time {
  font-size: clamp(1.4rem, 3.5vmin, 1.8rem);
}
@media print, screen and (max-width: 767px) {
  .tel-box {
    justify-content: center;
    margin-top: 2em;
  }
}

.page-home .catch {
  position: relative;
  padding-bottom: 3.5em;
}
.page-home .catch-img {
  position: relative;
  overflow: hidden;
  width: 92.8571428571vw;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  opacity: 0;
}
.page-home .catch-img img {
  max-width: none;
  width: 100%;
  transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scale(1.15);
}
.page-home .catch-img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.page-home .catch-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
}
.page-home .catch-title {
  color: var(--color-title);
  text-align: center;
  font-size: clamp(1.8rem, 4.5vmin, 2.4rem);
  letter-spacing: var(--ls-wide);
  line-height: 1.4769230769;
  margin-bottom: 1em;
  opacity: 0;
}
.page-home .catch-title .big {
  font-size: 162.5%;
}
.page-home .catch-bnr {
  opacity: 0;
}
.page-home .catch-bg {
  background: var(--bg-gra2);
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: width 1s cubic-bezier(0.47, 0, 0.745, 0.715), height 1s cubic-bezier(0.47, 0, 0.745, 0.715);
}
@media print, screen and (max-width: 767px) {
  .page-home .catch-img {
    height: calc(100vmax - 4em);
  }
  .page-home .catch-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .page-home .catch-inner {
    padding: 3em;
  }
  .page-home .catch-bnr {
    width: 8.75em;
  }
}
.page-home .catchloaded .catch-bg {
  width: 50%;
  height: 43.8202247191%;
}
.page-home .catchloaded .catch-img {
  animation: fade_in 0.5s 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) forwards, slide_in_x_left 0.5s 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.page-home .catchloaded .catch-img::after {
  animation: fade_out 0.5s 1s cubic-bezier(0.47, 0, 0.745, 0.715) forwards, maskOut 0.5s 1s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.page-home .catchloaded .catch-title {
  animation: fade_in 0.5s 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) forwards, slide_in_y 0.5s 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.page-home .catchloaded .catch-bnr {
  animation: fade_in 0.5s 1.7s cubic-bezier(0.47, 0, 0.745, 0.715) forwards, slide_in_y 0.5s 1.7s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.page-home .intro-row {
  display: grid;
  gap: 2em 10%;
}
.page-home .intro-img {
  opacity: 0;
}
.page-home .intro-img-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.page-home .intro-img-wrap.inView .intro-img {
  animation: fade_in 0.5s var(--delay, 0.3s) cubic-bezier(0.47, 0, 0.745, 0.715) forwards, slide_in_y 0.5s var(--delay, 0.3s) cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.page-home .intro-img.img1 {
  margin-top: 56.25%;
}
.page-home .intro-img.img2 {
  margin-top: 25%;
  --delay:0.6s;
}
.page-home .intro-img.img3 {
  --delay:0.9s;
}
.page-home .intro-title {
  font-size: clamp(2rem, 5vmin, 3.5rem);
  line-height: 1.7142857143;
  margin-bottom: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .page-home .intro-row {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .intro-text {
    max-width: 23em;
  }
}
.page-home .business-title {
  font-size: clamp(1.8rem, 4.5vmin, 2.5rem);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page-home .business {
    background: rgb(239, 243, 246);
    background: linear-gradient(180deg, rgb(239, 243, 246) 0%, rgb(239, 243, 246) 410px, rgba(239, 243, 246, 0) 410px);
  }
  .page-home .business-row {
    display: grid;
    grid-template-areas: "img1 img2 img3" "title1 title2 title3" "desc1 desc2 desc3";
    gap: 1.5em 3.3333333333%;
    justify-content: center;
  }
  .page-home .business-fig {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .page-home .business-fig:nth-of-type(1) {
    grid-area: img1;
  }
  .page-home .business-fig:nth-of-type(2) {
    grid-area: img2;
  }
  .page-home .business-fig:nth-of-type(3) {
    grid-area: img3;
  }
  .page-home .business-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-home .business-title:nth-of-type(1) {
    grid-area: title1;
  }
  .page-home .business-title:nth-of-type(2) {
    grid-area: title2;
  }
  .page-home .business-title:nth-of-type(3) {
    grid-area: title3;
  }
  .page-home .business-desc {
    max-width: 16em;
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .business-desc:nth-of-type(1) {
    grid-area: desc1;
  }
  .page-home .business-desc:nth-of-type(2) {
    grid-area: desc2;
  }
  .page-home .business-desc:nth-of-type(3) {
    grid-area: desc3;
  }
  .page-home .business .biz1 .business-fig {
    grid-area: img1;
  }
  .page-home .business .biz1 .business-title {
    grid-area: title1;
  }
  .page-home .business .biz1 .business-desc {
    grid-area: desc1;
  }
  .page-home .business .biz2 .business-fig {
    grid-area: img2;
  }
  .page-home .business .biz2 .business-title {
    grid-area: title2;
  }
  .page-home .business .biz2 .business-desc {
    grid-area: desc2;
  }
  .page-home .business .biz3 .business-fig {
    grid-area: img3;
  }
  .page-home .business .biz3 .business-title {
    grid-area: title3;
  }
  .page-home .business .biz3 .business-desc {
    grid-area: desc3;
  }
}
.page-home .strength-col {
  position: relative;
  opacity: 0;
}
.page-home .strength-col:nth-of-type(2) {
  --delay:0.6s;
}
.page-home .strength-col:nth-of-type(3) {
  --delay:0.9s;
}
.page-home .strength-row {
  display: grid;
  gap: 2.5em 3.3333333333%;
}
.page-home .strength-row.inView .strength-col {
  animation: fade_in 0.5s var(--delay, 0.3s) cubic-bezier(0.47, 0, 0.745, 0.715) forwards, slide_in_y 0.5s var(--delay, 0.3s) cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.page-home .strength-inner {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  gap: 1em;
  padding: 1em 2em;
}
.page-home .strength-inner::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
  width: 100%;
}
.page-home .strength-no {
  font-size: clamp(1.8rem, 4.5vmin, 2rem);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
}
.page-home .strength-no .text {
  flex-shrink: 0;
}
.page-home .strength-no::before, .page-home .strength-no::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
  width: 50%;
}
.page-home .strength-title {
  font-size: clamp(1.8rem, 5.5vmin, 3rem);
}
@media print, screen and (max-width: 767px) {
  .page-home .strength-img img {
    min-height: 280px;
    object-fit: cover;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .page-home .strength-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .strength-col:first-of-type {
    grid-column: 1/2 span;
  }
  .page-home .strength-img img {
    min-height: 280px;
    object-fit: cover;
    width: 100%;
  }
  .page-home .strength-inner::after {
    margin-top: 1.5em;
    max-width: 860px;
  }
  .page-home .strength-no {
    margin-bottom: 1em;
    max-width: 860px;
  }
}

.page-about .overview-row {
  display: grid;
  gap: 1.5em 5%;
  margin-top: 3.5em;
}
.page-about .overview-img {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page-about .overview .border-list li:first-of-type .item {
    border-top: 1px var(--accent) solid;
  }
  .page-about .overview .border-list li:first-of-type .detail {
    border-top: 1px #e4e4e4 solid;
  }
  .page-about .overview .map-wrap {
    margin-top: 1rem;
    padding-top: 41.3043478261%;
  }
  .page-about .overview-row {
    grid-template-columns: 1fr 1fr;
  }
}
.page-about .message-title {
  font-size: clamp(1.8rem, 4.5vmin, 2.5rem);
  margin-bottom: 1.5em;
}
.page-about .message-img figure {
  margin-bottom: 1em;
}
.page-about .message-name {
  font-size: clamp(1.8rem, 4.5vmin, 2.5rem);
}
@media print, screen and (max-width: 767px) {
  .page-about .message-img {
    margin-top: 2em;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .page-about .message-row {
    display: grid;
    grid-template-columns: 1fr 27.5%;
    gap: 1em 6.6666666667%;
  }
}
.page-about .career {
  background-color: #fff;
  padding: 3em;
  margin-top: 10%;
  margin-bottom: 2%;
}
.page-about .career-row {
  display: flex;
  gap: 0 2em;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-about .career-detail {
  width: 76.3636363636%;
}
.page-about .career .title-sec {
  font-size: clamp(2rem, 5vmin, 5rem);
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .page-about .career {
    padding: 1.5em 1em;
  }
}
.page-about .about-btm {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
.page-about .about-btm img {
  height: 100%;
  object-fit: cover;
}

.page-fees .page-nav {
  margin-top: var(--section-space);
}
.page-fees .fees-section .title-sec {
  font-size: clamp(2.5rem, 5vmin, 5rem);
  text-align: left;
}
.page-fees .fees-section .big {
  font-size: clamp(1.6rem, 3.75vmin, 2rem);
}
.page-fees .fees-title {
  font-size: clamp(1.8rem, 5vmin, 3rem);
  margin-bottom: 1em;
}
.page-fees .fees-block {
  padding-bottom: var(--section-space);
  border-bottom: 5px rgba(98, 98, 98, 0.1) solid;
}
.page-fees .fees-block:nth-of-type(n + 2) {
  margin-top: var(--section-space);
}
.page-fees .fees-box {
  background-color: rgba(0, 111, 187, 0.1);
  padding: 2.5em;
}

.page-contact .intro-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5em 2em;
}
@media print, screen and (max-width: 767px) {
  .page-contact .intro-row {
    justify-content: center;
  }
  .page-contact .intro-bnr {
    width: 10em;
  }
}

.form-title {
  font-size: clamp(2rem, 5vmin, 3rem);
}
.form-table {
  width: 100%;
}
.form-table th, .form-table td {
  border-bottom: 1px #bebebe solid;
}
.form-table th {
  padding: 2em 0;
  vertical-align: top;
  text-align: left;
  width: 260px;
  font-size: clamp(1.6rem, 4vmin, 1.8rem);
}
.form-table td {
  padding: 1.6em;
}
.form-table .must {
  background-color: var(--red);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
  line-height: 1;
  margin-left: 1rem;
}
.form-table .small {
  font-size: clamp(1.2rem, 3vmin, 1.4rem);
}
.form-table .error-js {
  color: var(--red);
}
.form-radio {
  position: absolute;
  opacity: 0;
}
.form-radio-wrap {
  display: grid;
  gap: 1rem;
}
.form-radio-label {
  position: relative;
  width: 100%;
  max-width: 460px;
  line-height: 1.2;
}
.form-radio-label .box {
  border-radius: 5px;
  border: 1px var(--radio-active, #c9c9c9) solid;
  padding: 0.5em 1em;
  background-color: #fff;
  height: 3.125em;
  display: flex;
  align-items: center;
  width: 100%;
}
.form-radio-label .text {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form-radio-label .text::before {
  content: "";
  flex-shrink: 0;
  background: rgb(239, 243, 246);
  background: radial-gradient(circle, var(--radio-active, #c9c9c9) 0%, var(--radio-active, #c9c9c9) 33%, rgba(239, 243, 246, 0) 33%);
  border-radius: 50%;
  outline: 1px var(--radio-active, #c9c9c9) solid;
  width: 1em;
  height: 1em;
  display: block;
}
.form-radio:checked + .box {
  --radio-active:var(--accent);
  background-color: #ddf1ff;
  border-width: 2px;
}
.form-fill {
  border-radius: 5px;
  border: 1px #c9c9c9 solid;
  padding: 0.5em 1em;
  background-color: #fff;
  height: 3.125em;
  width: 100%;
  font-size: 1.6rem;
}
.form-fill.fat {
  height: 14.375em;
  padding: 1em;
}
.form-note {
  font-size: clamp(1.2rem, 3vmin, 1.4rem);
  color: var(--accent);
}
.form-privacy {
  margin: 2.5em auto;
}
.form-privacy-title {
  color: #fff;
  background-color: #758897;
  text-align: center;
  font-size: clamp(1.8rem, 4vmin, 2rem);
  padding: 0.2em 1em;
}
.form-privacy-box {
  padding: 1.5em;
  overflow-y: scroll;
  height: 21.875em;
  background-color: #fff;
  margin: 1.5em 0 2.5em;
}
.form-privacy-box .inner {
  padding: 0 1.5em;
}
.form-privacy-box .big {
  font-size: 112.5%;
}
.form-privacy-check {
  position: relative;
  height: 3.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5em;
  cursor: pointer;
}
.form-privacy-check input {
  position: relative;
  z-index: 2;
}
.form-privacy-check input:checked {
  accent-color: var(--red);
}
.form-privacy-check input:checked + .box {
  --check-active: #ffdddd;
  --check-active2: var(--red);
}
.form-privacy-check .box::before {
  pointer-events: none;
  content: "";
  background-color: var(--check-active, #d5d5d5);
  border: 2px var(--check-active2, #d5d5d5) solid;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
}
.form-privacy-check .text {
  position: relative;
  z-index: 2;
}
.form-privacy-check .error-js {
  position: relative;
  z-index: 2;
  color: var(--red);
}
.form-btns {
  display: flex;
  justify-content: center;
  gap: 1.5em 2em;
  flex-wrap: wrap;
  margin-top: 2em;
}
.form-btn {
  height: 3.3333333333em;
}
@media print, screen and (max-width: 767px) {
  .form-table th, .form-table td {
    float: left;
    width: 100%;
  }
  .form-table th {
    border-bottom: none;
    padding-bottom: 1em;
  }
  .form-table td {
    border-top: none;
    padding: 0 0 2em;
  }
  .form-privacy-box .inner {
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */