@charset "UTF-8";
:root {
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-sub: "Zen Maru Gothic", sans-serif;
  --font-family-accent: "Crimson Text", serif;
  --font-family-mincho: "Shippori Mincho", serif;
  --transition-duration: 0.5s;
  --color-brightest: #fff;
  --color-contrast: rgba(34, 165, 224, 0.7);
  --color-base: #003d7a;
  --color-main: #000;
  --color-primary: #61baf0;
  --color-secondary: #007cd9;
  --color-link: #00f;
  --color-gray: #c6c6c6;
  --color-gradation: linear-gradient(to right, #0877e7, #76c3f2);
  --color-line: linear-gradient(to right, #06c755, #4eb286);
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-32: 32px;
  --font-size-42: 42px;
  --font-size-44: 44px;
  --font-size-72: 72px;
  --font-size-116: 116px;
  --font-size-150: 150px;
  --font-size-160: 160px;
  --z-index-header: 9990;
  --z-index-fixed-menu: 9990;
  --z-index-fixed-bnr: 8000;
}

/* =======================================================
基本設定
======================================================= */
html {
  font-size: min(calc(16 / 1464 * 100vw), 16px);
}

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  overflow-wrap: break-word;
  outline: none;
  box-shadow: none;
  line-break: strict;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:focus,
a:focus {
  outline: none;
}

body,
.ly-head,
.ly-main,
.ly-foot {
  min-width: 1024px;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-20);
  line-height: calc(29/20);
  color: var(--color-base);
  letter-spacing: 0.04em;
  background: var(--color-brightest);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

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

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

ul,
ol {
  list-style: none;
}

p,
li,
dt,
dd,
th,
td {
  overflow-wrap: anywhere;
  -ms-line-break: strict;
  line-break: strict;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: optimize-contrast;
}

picture {
  line-height: 0;
}

input,
button,
select,
textarea {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #222;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  display: none;
}

button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* PC SP */
.pc {
  display: initial;
}

.sp {
  display: none;
}

a,
.hp-hover {
  transition-timing-function: ease;
  transition-duration: var(--transition-duration);
  transition-property: opacity;
  will-change: opacity;
}
a:focus-visible,
.hp-hover:focus-visible {
  opacity: 0.7;
}
@media (any-hover: hover) {
  a:hover,
  .hp-hover:hover {
    opacity: 0.7;
  }
}

label:hover:focus-visible {
  cursor: pointer;
}
@media (any-hover: hover) {
  label:hover:hover {
    cursor: pointer;
  }
}

@media screen and (width <= 750px) {
  body,
  .ly-head,
  .ly-main,
  .ly-foot {
    width: 100%;
    min-width: 750px;
    max-width: 750px;
  }
  body {
    font-size: 24px;
  }
  input,
  button,
  select,
  textarea {
    font-size: 30px;
  }
  .sp {
    display: initial;
  }
  .pc {
    display: none;
  }
}
/* =============================
共通レイアウト
============================== */
.ly-main {
  position: relative;
  z-index: 2;
}

/* 全体のWrapper */
.ly-allwrapper {
  overflow: clip;
}

.ly-cont-inner {
  margin-inline: auto;
}

/* =======================================================
header
======================================================= */
.ly-header {
  position: fixed;
  top: 40px;
  left: 50%;
  z-index: var(--z-index-header);
  width: 100%;
  translate: -50%;
}

.bl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 1650px;
  padding: 0 40px 0 88px;
  margin-inline: auto;
  background: var(--color-gradation);
  border-radius: 60px;
}
.bl-header-nav-list {
  display: flex;
}
.bl-header-nav-item {
  position: relative;
}
.bl-header-nav-link {
  display: grid;
  align-items: center;
  height: 100%;
  padding: 21px 2em;
  font-weight: 700;
  line-height: calc(29/20);
  color: var(--color-brightest);
  text-align: center;
}
.bl-header-drop-list {
  position: absolute;
  bottom: -114px;
  left: 50%;
  display: grid;
  width: 100%;
  pointer-events: none;
  translate: -50%;
  opacity: 0;
  transition-timing-function: ease;
  transition-duration: var(--transition-duration);
  transition-property: opacity;
  will-change: opacity;
}
.bl-header-drop-list.--js-active {
  pointer-events: all;
  opacity: 1;
}
.bl-header-drop-item:not(:last-of-type) {
  border-bottom: 2px solid var(--color-brightest);
}
.bl-header-drop-link {
  display: block;
  padding: 12px 0 15px;
  font-weight: 500;
  color: var(--color-brightest);
  text-align: center;
  background-color: var(--color-base);
}

@media screen and (min-width: 751px) {
  .bl-header-nav-item:not(:last-of-type) {
    position: relative;
  }
  .bl-header-nav-item:not(:last-of-type)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 3em;
    content: "";
    translate: 0 -50%;
    background-color: var(--color-brightest);
  }
  .bl-header-nav-item:nth-of-type(7)::after {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .ly-header {
    top: 0;
  }
  .bl-header {
    width: 100%;
    min-width: auto;
    padding: 0;
    filter: drop-shadow(0, 0, 5, rgba(12, 12, 165, 0.3));
    border-radius: 0;
  }
  .bl-header-logo {
    padding-left: 40px;
  }
  .bl-header-logo-img {
    width: 208px;
  }
  .bl-header-box {
    display: flex;
  }
  .bl-header-btn {
    display: grid;
    place-content: center;
    width: 120px;
    aspect-ratio: 1;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-brightest);
  }
  .bl-header-btn-wrapper {
    display: flex;
  }
  .bl-header-btn::before {
    width: 58px;
    aspect-ratio: 1;
    margin: 0 auto 4px;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bl-header-btn.--tel {
    background: linear-gradient(to right, #5ca6ef, #8dcdf3);
  }
  .bl-header-btn.--tel::before {
    background-image: url("../images/common/icon-tel.svg");
  }
  .bl-header-btn.--calendar {
    background: linear-gradient(to right, #003d7a, #3e6d9b);
  }
  .bl-header-btn.--calendar::before {
    background-image: url("../images/common/icon-calendar.svg");
  }
  .bl-header .bl-burger {
    display: grid;
    place-content: center;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: linear-gradient(to right, #5ca6ef, #8dcdf3);
  }
  .bl-header .bl-burger.--js-active .bl-burger-bars::before,
  .bl-header .bl-burger.--js-active .bl-burger-bars::after {
    top: 50%;
    translate: -50% -50%;
  }
  .bl-header .bl-burger.--js-active .bl-burger-bars::before {
    rotate: 45deg;
  }
  .bl-header .bl-burger.--js-active .bl-burger-bars::after {
    rotate: -45deg;
  }
  .bl-header .bl-burger.--js-active .bl-burger-bar {
    display: none;
  }
  .bl-header .bl-burger-bars {
    position: relative;
    display: block;
    width: 64px;
    height: 48px;
  }
  .bl-header .bl-burger-bar,
  .bl-header .bl-burger-bars::before,
  .bl-header .bl-burger-bars::after {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 3px;
    content: "";
    background: #fff;
    translate: -50% -50%;
    transition-timing-function: ease;
    transition-duration: var(--transition-duration);
    transition-property: rotate top;
    will-change: rotate top;
  }
  .bl-header .bl-burger-bars::before {
    top: 0;
  }
  .bl-header .bl-burger-bars::after {
    bottom: 0;
  }
  .bl-header .bl-burger-bar {
    top: 50%;
    translate: -50% -50%;
  }
  .bl-header-nav-wrapper {
    position: fixed;
    top: 120px;
    left: 0;
    display: grid;
    place-content: center;
    width: 100%;
    height: calc(100svh - 240px);
    background-color: #d9ebf8;
    translate: 100%;
    transition-timing-function: ease;
    transition-duration: var(--transition-duration);
    transition-property: translate;
    will-change: translate;
  }
  .bl-header-nav-wrapper.--js-active {
    translate: 0;
  }
  .bl-header-nav-list {
    display: grid;
  }
  .bl-header-nav-item::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    content: "";
    background-color: var(--color-base);
    translate: -50%;
  }
  .bl-header-nav-item:first-of-type .bl-header-nav {
    padding-top: 0;
  }
  .bl-header-nav-item.--is-drop {
    height: 0;
    pointer-events: none;
    opacity: 0;
    transition-timing-function: ease;
    transition-duration: var(--transition-duration);
    transition-property: opacity;
    will-change: opacity;
  }
  .bl-header-nav-item.--is-drop.--js-active {
    height: 100%;
    pointer-events: all;
    opacity: 1;
  }
  .bl-header-nav-item.--is-drop::after {
    background-color: var(--color-brightest);
  }
  .bl-header-nav-item.--is-drop .bl-header-nav-link {
    padding-inline: 1.5em;
    color: var(--color-brightest);
    background-color: var(--color-base);
  }
  .bl-header-nav-item.--is-drop .bl-header-nav-link::after {
    background-image: url("../images/common/burger-arrow--white.svg");
  }
  .bl-header-nav-link {
    display: flex;
    gap: 46px;
    justify-content: space-between;
    padding: 1.25em 0;
    font-family: var(--font-family-sub);
    font-size: 27px;
    color: var(--color-base);
    text-align: left;
  }
  .bl-header-nav-link::after {
    width: 40px;
    aspect-ratio: 1;
    content: "";
    background-image: url("../images/common/burger-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bl-header-drop-list {
    display: none;
  }
}
/* =======================================================
fixed-reserve
======================================================= */
.bl-fixed-reserve {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: var(--z-index-fixed-bnr);
  width: 114px;
  translate: 0 -50%;
}

@media screen and (max-width: 750px) {
  .bl-fixed-reserve {
    display: none;
  }
}
/* =======================================================
footer
======================================================= */
.ly-foot {
  padding-top: 96px;
  color: var(--color-brightest);
  background-color: var(--color-base);
}

.bl-foot {
  max-width: 1252px;
}
.bl-foot-bnr-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 96px;
}
.bl-foot-bnr-wrapper.sp {
  display: none;
}
.bl-foot-bnr.--recruit {
  max-width: 218px;
}
.bl-foot-bnr.--csr {
  max-width: 218px;
}
.bl-foot-bnr.--line {
  max-width: 298px;
}
.bl-foot-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
}
.bl-foot-container {
  display: grid;
  gap: 1.5em;
  align-self: start;
}
.bl-foot-nav {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brightest);
  letter-spacing: 0;
}
.bl-foot-nav.sp {
  display: none;
}
.bl-foot-def {
  padding-left: 24px;
  border-left: 2px solid;
}
.bl-foot-def-wrapper {
  display: grid;
  gap: 64px;
  margin-bottom: 24px;
}
.bl-foot-dttl {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.bl-foot-tel {
  font-family: var(--font-family-accent);
  font-size: 50px;
  font-weight: 400;
  line-height: calc(65/50);
  letter-spacing: 0;
}
.bl-foot-time-def {
  display: flex;
  font-size: 16px;
  font-weight: 700;
}
.bl-foot-sns-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.bl-foot-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.bl-foot-corporation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1em;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
.bl-foot-corporation-wrapper {
  display: flex;
  gap: 64px;
}
.bl-foot-corporation-wrapper.sp {
  display: none;
}
.bl-foot-corporation.--jem img {
  width: 56px;
}
.bl-foot-copyright {
  padding-bottom: 3px;
  margin-inline: calc(50% - 50vw);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-base);
  text-align: center;
  background-color: var(--color-brightest);
}

@media screen and (max-width: 750px) {
  .ly-foot {
    padding-top: 96px;
  }
  .bl-foot {
    max-width: 690px;
  }
  .bl-foot-bnr-wrapper {
    gap: 18px;
    margin-bottom: 40px;
  }
  .bl-foot-bnr-wrapper.pc {
    display: none;
  }
  .bl-foot-bnr-wrapper.sp {
    display: flex;
  }
  .bl-foot-bnr.--recruit {
    max-width: 262px;
  }
  .bl-foot-bnr.--csr {
    max-width: 262px;
  }
  .bl-foot-box {
    grid-template: "container01 container03" "container02 container03" "container04 container04";
    grid-template-columns: repeat(2, 1fr);
  }
  .bl-foot-container {
    gap: 1em;
  }
  .bl-foot-container:first-of-type {
    grid-area: container01;
  }
  .bl-foot-container:nth-of-type(2) {
    grid-area: container02;
  }
  .bl-foot-container:nth-of-type(3) {
    grid-area: container03;
  }
  .bl-foot-container:nth-of-type(4) {
    grid-area: container04;
    gap: 0;
    margin-top: 48px;
  }
  .bl-foot-nav {
    font-size: 25px;
  }
  .bl-foot-nav.pc {
    display: none;
  }
  .bl-foot-nav.sp {
    display: grid;
  }
  .bl-foot-def-wrapper {
    display: none;
  }
  .bl-foot-sns {
    width: calc-size(fit-content, size * 1.5);
  }
  .bl-foot-sns-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
  .bl-foot-btm {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
  }
  .bl-foot-corporation {
    font-size: 15px;
  }
  .bl-foot-corporation-wrapper {
    gap: 32px;
    margin-bottom: 48px;
  }
  .bl-foot-corporation-wrapper.pc {
    display: none;
  }
  .bl-foot-corporation-wrapper.sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bl-foot-corporation.--jem img {
    width: 84px;
  }
  .bl-foot-corporation.--jcse img {
    width: 90px;
  }
  .bl-foot-logo {
    width: calc-size(fit-content, size * 2);
    margin-inline: auto;
  }
  .bl-foot-copyright {
    font-size: 24px;
  }
}
/* =======================================================
fixed-menu
======================================================= */
@media screen and (min-width: 751px) {
  .bl-fixed-menu-wrapper {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .bl-fixed-menu {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 4px;
    align-items: end;
    justify-content: center;
    height: 120px;
    padding: 0 0 12px;
    font-size: 21px;
    font-weight: 700;
    color: var(--color-brightest);
    text-align: center;
    background: linear-gradient(to right, #3b89db, #5dade2);
  }
  .bl-fixed-menu-wrapper {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: var(--z-index-fixed-menu);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    translate: -50%;
    width: 100%;
  }
  .bl-fixed-menu::before {
    margin-inline: auto;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .bl-fixed-menu.--top::before {
    width: 60px;
    height: 54px;
    background-image: url("../images/common/fixed-menu-top.svg");
  }
  .bl-fixed-menu.--flow::before {
    width: 108px;
    height: 52px;
    background-image: url("../images/common/fixed-menu-flow.svg");
  }
  .bl-fixed-menu.--price {
    gap: 8px;
  }
  .bl-fixed-menu.--price::before {
    width: 86px;
    height: 45px;
    background-image: url("../images/common/fixed-menu-price.svg");
  }
  .bl-fixed-menu.--faq::before {
    width: 88px;
    height: 60px;
    background-image: url("../images/common/fixed-menu-faq.svg");
  }
}
/* =======================================================
c-btn
======================================================= */
.c-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1em;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 342px;
  min-height: 94px;
  font-size: 27px;
  font-weight: 700;
  line-height: calc(39/27);
  color: var(--color-brightest);
  text-align: center;
  background: var(--color-gradation);
  border: 2px solid;
  border-radius: 45px;
}
.c-btn::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.c-btn.--line {
  background: var(--color-line);
}
.c-btn.--toright {
  padding: 0 2em;
}
.c-btn.--toright::after {
  width: 11px;
  height: 23px;
  background-image: url("../images/common/c-btn-arrow-toright.svg");
}
.c-btn.--tobtm {
  padding: 0 1.5em;
}
.c-btn.--tobtm::after {
  translate: 0 1px;
  width: 23px;
  height: 11px;
  background-image: url("../images/common/c-btn-arrow-tobtm.svg");
}

@media screen and (max-width: 750px) {
  .c-btn {
    min-width: 520px;
    min-height: 88px;
    font-size: 32px;
    border-width: 3px;
  }
  .c-btn.--toright {
    padding: 0 100px 3px;
  }
  .c-btn.--toright::after {
    width: 11px;
    height: 23px;
    background-image: url("../images/common/c-btn-arrow-toright.svg");
  }
  .c-btn.--tobtm {
    padding: 0 1.5em 3px;
  }
}
/* =======================================================
c-att
======================================================= */
.c-att {
  display: grid;
  grid-template-columns: auto 1fr;
}
.c-att::before {
  content: "※";
}

/* =======================================================
u-texthead
======================================================= */
.u-texthead {
  display: grid;
  grid-template-columns: auto 1fr;
}
.u-texthead.--square::before {
  content: "■";
}
.u-texthead.--triangle::before {
  content: "▼";
}