@charset "UTF-8";

/*===============================================================================

	基本設定

===============================================================================*/
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, main {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

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

table {
  border-spacing: 0;
}

label {
  font-size: inherit;
}

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

a {
  display: block;
  color: inherit;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
}

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

select {
  align-items: center;
  color: #34383A;
  white-space: pre;
  box-sizing: border-box;
  background-color: #fff;
  -webkit-rtl-ordering: logical;
  cursor: default;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  font-feature-settings: "palt";
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  position: relative;
  min-width: 1200px;
  color: #34383A;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
  font-feature-settings: "palt";
}
body::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 0.6s;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
    font-size: 1.4rem;
  }
}


/* ショートコード
************************************************************/
._pc {}
._sp {display: none;}
@media screen and (max-width: 768px) {
  ._pc {display: none;}
  ._sp {display: inline;}
}

._mt20 {margin-top: 20px !important;}
._mt40 {margin-top: 40px !important;}
._mt60 {margin-top: 60px !important;}
._mt70 {margin-top: 70px !important;}
@media screen and (max-width: 768px) {
  ._mt20 {margin-top: 3% !important;}
  ._mt40 {margin-top: 6% !important;}
  ._mt60 {margin-top: 8% !important;}
  ._mt70 {margin-top: 9% !important;}
}

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

._fl {float: left !important;}
._fr {float: right !important;}
._text-left {text-align: left;}
._text-right {text-align: right;}
._text-center {text-align: center;}

._color-main {color: #4297CF;}
._bold {font-weight: 700;}


/*===============================================================================

	共通レイアウト

===============================================================================*/
.head-wrap {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head-wrap {
    flex-direction: column;
  }
}


/* ヘッダー
************************************************************/
#header {
  width: 100%;
  min-width: 1200px;
}
@media screen and (max-width: 768px) {
  #header {
    min-width: 100%;
    padding: 0;
  }
}

#header-inner {
  width: calc(100% - 60px);
  padding: 0;
  min-width: 1200px;
  position: absolute;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  transition: all 0.3s;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0);
}
#header-inner.is-hover {
  width: calc(100% - 60px);
  background: #fff;
  border-radius: 40px 40px 0 0;
  transition: all 0.3s;
}
#header-inner.is-fixed {
  position: fixed;
  width: calc(100% - 60px);
  background: rgb(255, 255, 255);
  border-radius: 40px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
}
#header-inner.is-fixed.is-hover {
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 768px) {
  #header-inner {
    position: fixed;
    min-width: inherit;
    width: 100%;
    top: inherit;
    left: inherit;
    transform: inherit;
    background: #fff;
    height: 60px;
    border-radius: inherit;
    flex-wrap: wrap;
  }
  #header-inner.is-hover {
    width: 100%;
    background: none;
    border-radius: inherit;
  }
  #header-inner.is-fixed {
    width: 100%;
    border-radius: inherit;
    box-shadow: none;
  }
  #header-inner.is-fixed.is-hover {
    border-radius: inherit;
  }
}

#header-logo {
  flex-shrink: 1;
  position: relative;
  top: 5px;
  left: 30px;
  width: 465px;
  min-width: 337px;
  padding: 0 45px 0 0;
  transition: all 0.3s;
  z-index: 105;
}
#header-inner.is-hover #header-logo {
  top: 0;
  width: 337px;
}
#header-inner.is-fixed #header-logo {
  top: 0;
  width: 337px;
}
#header-logo .logo {
  width: 100%;
}
#header-logo .logo a {
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #header-logo {
    flex-shrink: inherit;
    display: block;
    top: inherit;
    left: 10px;
    width: 270px;
    min-width: auto;
    padding: 0;
  }
  #header-inner.is-hover #header-logo {
    top: inherit;
    left: 10px;
    width: 270px;
  }
  #header-inner.is-fixed #header-logo {
    top: inherit;
    left: 10px;
    width: 270px;
  }
  #header-logo .logo {
    width: 270px;
  }
}

#header-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: auto;
  height: 70px;
  padding: 0 40px;
  background: rgb(255, 255, 255);
  border-radius: 40px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  #header-content {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  #header-content {
    height: 60px;
    padding: 0;
    background: none;
    border-radius: inherit;
    box-shadow: none;
  }
}
#header-inner.is-hover #header-content {
  height: 90px;
  margin: 0;
  background: none;
  border-radius: 40px 40px 0 0;
  box-shadow: none;
}
#header-inner.is-fixed #header-content {
  margin: 0;
  background: rgba(255, 255, 255, 0);
  border-radius: 40px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  #header-inner.is-hover #header-content {
    display: none;
  }
}


/* ヘッダーナビ
************************************************************/
body.is-header-navi-hover {
  overflow: hidden;
}
body.is-header-navi-hover::before {
  opacity: 1;
  visibility: visible;
}
#header-navi > ul {
  display: flex;
  gap: 0px;
}
#header-navi > ul > li {
  cursor: pointer;
}
#header-navi > ul > li .menu-title {
  position: relative;
  bottom: 40px;
  padding: 80px 20px 0 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 2.4px;
  transition: all 0.3s;
}
#header-navi > ul > li:first-child .menu-title {
  margin: 0;
}
#header-navi > ul > li .menu-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 1px;
  height: 20px;
  margin: 40px 0 0 0;
  background: #4297CF;
  opacity: 0.3;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 1500px) {
  #header-navi > ul > li:last-child .menu-title {
    padding: 80px 0 0 20px;
  }
  #header-navi > ul > li:last-child .menu-title::before {
    content: none;
  }
}
@media screen and (max-width: 1300px) {
  #header-navi > ul > li:last-child .menu-title {
    padding: 80px 0 0 15px;
  }
  #header-navi > ul > li:last-child .menu-title::before {
    content: none;
  }
  #header-navi > ul > li .menu-title {
    padding: 80px 15px 0 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #header-navi {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #header-navi > ul > li:hover .menu-title {
    color: #4297CF;
  }
}

#header-navi .sub-menu {
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  padding: 40px 0 0;
  opacity: 0;
  visibility: hidden;
}
#header-navi .sub-menu .content {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0 40px;
  margin: 0 auto;
  background: #fff;
  border-top: 1px solid #4297CF;
  border-radius: 0 0 40px 40px;
}
#header-navi .sub-menu .box {
  display: flex;
  width: 1100px;
}
#header-navi .sub-menu .box.-column {
  justify-content: space-between;
  padding: 20px 0 0;
}
#header-navi .sub-menu .box.-column .column {
  width: 330px;
}
#header-navi .sub-menu .box.-column .column .title {
  padding: 0 0 20px;
  color: #4297CF;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 1.8px;
  border-bottom: 2px solid #4297CF;
}
#header-navi .sub-menu .box.-column .column ul {
  gap: 0;
}
#header-navi .sub-menu .box.-column .column ul > li {
  width: calc(100% - 20px);
  margin: 0 0 0 auto;
}
#header-navi .sub-menu .box.-column .column ul > li a {
  height: auto;
  padding: 20px 0 20px 30px;
}
#header-navi .sub-menu .box ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 20px;
  width: 100%;
  padding: 0;
}
#header-navi .sub-menu .box ul > li {
  position: relative;
  width: 204px;
}
#header-navi .sub-menu .box ul > li.space-02 {
  width: 428px;
}
#header-navi .sub-menu .box ul > li a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 55px;
  padding: 0 0 0 30px;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(66, 151, 207, 0.2);
}
#header-navi .sub-menu .box ul > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 14px;
  height: 14px;
  background-size: cover;
  mask-image: url('../images/common/arrow.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #4297CF;
  transition: all 0.3s;
  transform: translateY(-50%);
  z-index: 1;
}
#header-navi .sub-menu .box ul > li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #4297CF;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s;
  transform: translateY(-50%);
}
#header-navi > ul > li.is-hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.35s;
}
@media screen and (min-width: 769px) {
  #header-navi .sub-menu .box ul > li:hover a {
    border-bottom: 1px solid rgb(66, 151, 207);
  }
  #header-navi .sub-menu .box ul > li:hover a::before {
    background-color: #fff;
  }
  #header-navi .sub-menu .box ul > li:hover a::after {
    content: "";
    background: #4297CF;
  }
}

#header-inner.is-hover #header-navi > ul > li .menu-title {
  bottom: 40px;
  padding: 80px 20px 0 20px;
  margin: 0 0 0;
}
#header-inner.is-hover #header-navi > ul > li .menu-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 1px;
  height: 20px;
  margin: 40px 0 0 0;
  background: #4297CF;
  opacity: 0.3;
  transform: translateY(-50%);
  pointer-events: all;
}
#header-inner.is-fixed #header-navi > ul > li:last-child .menu-title {
  padding: 80px 0 0 20px;
}
#header-inner.is-fixed #header-navi > ul > li:last-child .menu-title::before {
  content: none;
}
@media screen and (max-width: 1300px) {
  #header-inner.is-hover #header-navi > ul > li .menu-title {
    padding: 80px 15px 0 15px;
  }
  #header-inner.is-fixed #header-navi > ul > li:last-child .menu-title {
    padding: 80px 0 0 15px;
  }
}

#header-tel {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 40px;
}
#header-inner.is-fixed #header-tel {
  display: none;
}
#header-tel .caption {
  color: #4297CF;
  font-size: 1.2rem;
  letter-spacing: 1.8px;
  text-align: center;
}
#header-tel .number {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  letter-spacing: 2.2px;
}
#header-tel .number span {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 1500px) {
  #header-tel {
    display: none;
  }
}


/* ハンバーガーメニュー
************************************************************/
#navi-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  #navi-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    transition: all 0.3s;
    z-index: 105;
  }
  #navi-toggle .in {
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 105;
  }
  #navi-toggle .in span {
    display: block;
    position: absolute;
    left: 16px;
    width: 27px;
    height: 1px;
    background: #34383A;
    transition: transform 0.3s;
  }
  #navi-toggle .in span:nth-of-type(1) {
    top: 22px;
  }
  #navi-toggle .in span:nth-of-type(2) {
    top: 29px;
  }
  #navi-toggle .in span:nth-of-type(3) {
    top: 37px;
  }
  #navi-toggle.is-active .in span:nth-of-type(1) {
    top: 31px;
    transform: rotate(35deg);
  }
  #navi-toggle.is-active .in span:nth-of-type(2) {
    transform: scaleX(0);
  }
  #navi-toggle.is-active .in span:nth-of-type(3) {
    top: 31px;
    transform: rotate(145deg);
  }
}


/* ヘッダー（SP）CTA
************************************************************/
#header-cta-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #header-cta-sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding: 4px 8px 8px;
    background: #fff;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  }
  #header-cta-sp .tel-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 0 0 7.3%;
    background: linear-gradient(96deg, rgba(76, 167, 226, 0.25) 0%, rgba(99, 210, 177, 0.25) 48.73%, rgba(171, 228, 144, 0.25) 90.84%), #FFF;
    border-radius: 50px;
  }
  #header-cta-sp .tel-box a {
    display: flex;
    align-items: center;
    gap: 11px;
    position: relative;
    width: 100%;
  }
  #header-cta-sp .tel-box a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    width: 20px;
    height: 20px;
    background: url('../images/common/sp_head_arrow.svg');
    background-size: cover;
    transform: translatey(-50%);
  }
  #header-cta-sp .tel-box .i-01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 7px 0;
    color: #4297CF;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.12rem;
    text-align: center;
    background: #FFF;
    border-radius: 3px;
  }
  #header-cta-sp .tel-box .i-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #header-cta-sp .tel-box .i-02 .a-01 {
    position: relative;
    padding: 0 0 0 23px;
    margin: 0 0 3px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    line-height: 100%;
    letter-spacing: 0.12rem;
  }
  #header-cta-sp .tel-box .i-02 .a-01::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 21px;
    height: 21px;
    background-size: cover;
    background: url('../images/common/icon_tel.svg');
    transform: translatey(-50%);
  }
  #header-cta-sp .tel-box .i-02 .a-02 {
    padding: 0 0 0 26px;
    color: #4297CF;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.11rem;
    text-align: center;
  }
  #header-cta-sp .button-box .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    border-radius: 5px;
  }
  #header-cta-sp .button-box .button span {
    position: relative;
    padding: 0 0 0 16px;
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-align: center;
  }
  #header-cta-sp .button-box .button span::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
  }
  #header-cta-sp .button-box.-i-01 {
    width: 37.5%;
  }
  #header-cta-sp .button-box.-i-01 .button {
    background: #4297CF;
  }
  #header-cta-sp .button-box.-i-01 .button span {
    color: #fff;
  }
  #header-cta-sp .button-box.-i-01 .button span::before {
    top: 50%;
    left: -16px;
    background: url('../images/common/icon_event.svg');
    background-size: cover;
    transform: translateY(-50%);
  }
  #header-cta-sp .button-box.-i-02 {
    width: 37.5%;
  }
  #header-cta-sp .button-box.-i-02 .button {
    background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  }
  #header-cta-sp .button-box.-i-02 .button span {
    color: #fff;
  }
  #header-cta-sp .button-box.-i-02 .button span::before {
    top: 50%;
    left: -16px;
    background: url('../images/common/icon_web.svg');
    background-size: cover;
    transform: translateY(-50%);
  }
  #header-cta-sp .button-box.-i-03 {
    width: 20.52%;
  }
  #header-cta-sp .button-box.-i-03 .button {
    align-items: flex-end;
    background: #F9F8F1;
    border: 1px solid rgba(66, 151, 207, 0.3);
  }
  #header-cta-sp .button-box.-i-03 .button span {
    position: relative;
    padding: 0 0 6px 0;
    color: #4297CF;
    font-size: 1.1rem;
    letter-spacing: 1.1px;
  }
  #header-cta-sp .button-box.-i-03 .button span::before {
    top: -24px;
    left: 50%;
    background: url('../images/common/icon_tel.svg');
    background-size: cover;
    transform: translateX(-50%);
  }
}


/* ヘッダーナビ（SP）
************************************************************/
@media screen and (max-width: 768px) {
  body.is-sp-navi {
    height: 100%;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  #header-navi-sp {
    display: none !important;
  }
}
#header-navi-sp {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 0;
  background: #fff;
  overflow: scroll;
  z-index: 100;
}
#header-navi-sp .navi-inner {
  height: 100vh;
  overflow: scroll;
}
#header-navi-sp .navi-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 190px auto 0;
}
#header-navi-sp .menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 0;
}
#header-navi-sp .menu > .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: auto;
  margin: 0 auto 0;
  text-align: center;
}
#header-navi-sp .menu > .item:not(:first-child) {
  border-top: none;
}
#header-navi-sp .menu > .item:last-child {
  border-bottom: none;
}
#header-navi-sp .menu > .item .in {
  width: 100%;
  text-align: left;
}
#header-navi-sp .menu > .item.-has-grandchild .in {
  margin: 0 0 15px;
}
#header-navi-sp .cta-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 92%;
  margin: 50px auto 100px;
}
#header-navi-sp .cta-box .box-01 .wrap {
  display: flex;
  gap: 15px;
}
#header-navi-sp .cta-box .box-01 .item {
  width: calc((100% - 15px) / 2);
}
#header-navi-sp .cta-box .box-01 .item a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 0 20px;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1.95px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
#header-navi-sp .cta-box .box-01 .item a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
}
#header-navi-sp .cta-box .box-01 .item.-i-01 a {
  background: #4297CF;
}
#header-navi-sp .cta-box .box-01 .item.-i-01 a::before {
  content: "";
  background: url('../images/common/icon_event.svg');
  background-size: cover;
}
#header-navi-sp .cta-box .box-01 .item.-i-02 a {
  text-align: center;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
}
#header-navi-sp .cta-box .box-01 .item.-i-02 a::before {
  content: "";
  background: url('../images/common/icon_web.svg');
  background-size: cover;
}
#header-navi-sp .cta-box .box-02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 60px;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1.95px;
  text-align: center;
  border-radius: 10px;
  background: #ADD059;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
#header-navi-sp .cta-box .box-02 a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 25px;
  height: 25px;
  background: url('../images/common/icon_phone.svg');
  background-size: cover;
  transform: translateY(-50%);
}
#header-navi-sp .cta-box .box-03 .i-01 .in {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 60px;
  border: 1px solid #4297CF;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
#header-navi-sp .cta-box .box-03 .i-01 .in .text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #4297CF;
  font-weight: 500;
  letter-spacing: 2.4px;
}
#header-navi-sp .cta-box .box-03 .i-01 .in::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 25px;
  height: 25px;
  background: url('../images/common/icon_tel.svg');
  background-size: cover;
  transform: translateY(-50%);
}
#header-navi-sp .cta-box .box-03 .i-02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 20px 0 0;
}
#header-navi-sp .cta-box .box-03 .i-02 .caption {
  position: relative;
  width: fit-content;
  padding: 0 30px 0;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1.95px;
}
#header-navi-sp .cta-box .box-03 .i-02 .caption::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background: url('../images/common/arrow_double_shita.svg');
  background-size: cover;
  transform: translateY(-50%);
}
#header-navi-sp .cta-box .box-03 .i-02 .caption::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background: url('../images/common/arrow_double_shita.svg');
  background-size: cover;
  transform: translateY(-50%);
}
#header-navi-sp .cta-box .box-03 .i-02 .button {
  width: 100%;
}
#header-navi-sp .cta-box .box-03 .i-02 .button a {
  position: relative;
  width: 100%;
  height: 70px;
  padding: 5px;
  border: 1px solid rgb(66, 151, 207);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
#header-navi-sp .cta-box .box-03 .i-02 .button a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 28px;
  height: 28px;
  mask-image: url('../images/common/icon_content.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #4297CF;
  transition: all 0.3s;
  transform: translateY(-50%);
}
#header-navi-sp .cta-box .box-03 .i-02 .button a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 0 0 10px;
  color: #4297CF;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-align: center;
  background: #FFF;
  border: 1px solid rgba(66, 151, 207, 0.5);
  border-radius: 7px;
  transition: all 0.3s;
}

#header-navi-sp .menu > .item .title input[type="checkbox"] {
  display: none;
}
#header-navi-sp .menu > .item .title:has(input[type="checkbox"]:checked)::before {
  transition: all 0.5s !important;
  transform: translateY(-50%) rotate(90deg) !important;
}
#header-navi-sp .menu > .item .title:has(input[type="checkbox"]:checked) + .sub-menu {
  display: block;
  height: auto;
  opacity: 1;
  visibility: visible;
}
#header-navi-sp .menu > .item .title {
  display: flex;
  align-items: center;
  position: relative;
  height: 52px;
  padding: 0 0 0 5px;
  border-bottom: 1px solid #4297CF;
}
#header-navi-sp .menu > .item.-has-grandchild .title {
  width: calc(100% - 25px);
  margin: 0 0 0 auto;
}
#header-navi-sp .menu > .item.-has-grandchild .title span {
  color: #4297CF;
}
#header-navi-sp .menu > .item .title span {
  font-size: 1.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 2.25px;
}
#header-navi-sp .menu > .item .title span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5.5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4297CF;
  background-size: cover;
  transform: translateY(-50%);
  z-index: 1;
}
#header-navi-sp .menu > .item .title::after {
  content: "";
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 10.5px;
  width: 12px;
  height: 1px;
  padding: 0;
  background: #fff;
  box-sizing: border-box;
  transform: translateY(-50%);
  z-index: 2;
}
#header-navi-sp .menu > .item .title::before {
  content: "";
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 1px;
  height: 12px;
  padding: 0;
  background: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  transform: translateY(-50%) rotate(0deg);
  z-index: 2;
}
#header-navi-sp .menu > .item .menu-title {
  display: flex;
  align-items: center;
  position: relative;
  height: 52px;
  padding: 0 0 0 5px;
  border-bottom: 1px solid #4297CF;
}
#header-navi-sp .menu > .item .menu-title span {
  font-size: 1.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 2.25px;
}
#header-navi-sp .sub-menu {
  display: none;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
#header-navi-sp .menu > .item.-has-grandchild .sub-menu > ul {
  margin: 0 0 10px;
}
#header-navi-sp .menu > .item.-has-grandchild .sub-menu > ul > li {
  width: calc(100% - 25px);
  margin: 0 0 0 auto;
}
#header-navi-sp .sub-menu > ul {
  display: flex;
  flex-direction: column;
  margin: 0 0 30px;
}
#header-navi-sp .sub-menu > ul > li {
  width: 100%;
}
#header-navi-sp .sub-menu > ul > li a {
  display: flex;
  align-items: center;
  position: relative;
  height: 44px;
  padding: 0 0 0 28px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 1.3px;
  border-bottom: 1px solid rgba(66, 151, 207, 0.2);
}
#header-navi-sp .sub-menu > ul > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 18px;
  height: 18px;
  background: url('../images/common/arrow_sp_menu.svg');
  background-size: cover;
  transform: translateY(-50%);
}


/* お問い合わせ（電話）ポップアップ
************************************************************/
body.is-modal-tel {
  height: 100%;
  overflow: hidden;
}
#modal-tel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  z-index: 9997 !important;
}
#modal-tel .bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.6);
  z-index: 9998 !important;
}
#modal-tel ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 50%;
  width: 100%;
  min-height: 541px;
  padding: 25px;
  background: #fff;
  transform: translateY(-50%);
  z-index: 9999 !important;
}
#modal-tel ul li {
  position: relative;
  padding: 0 0 15px;
  border-bottom: 1px solid #eee;
}
#modal-tel ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  background: #34383A;
  border-radius: 50%;
}
#modal-tel ul li a {
  padding: 0 0 0 13px;
  color: #34383A;
}
#modal-tel ul li.close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80%;
  height: 40px;
  padding: 0;
  margin: 0 auto;
  border: 1px solid #34383A;
  border-radius: 30px;
}
#modal-tel ul li.close-button::before {
  content: none;
}
#modal-tel ul li.close-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  height: 40px;
  padding: 0 0 0 10px;
}
#modal-tel ul li.close-button span::before,
#modal-tel ul li.close-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 15px;
  background: #333;
  translate: 0 -50%;
}
#modal-tel ul li.close-button span::before {
  rotate: 45deg;
}
#modal-tel ul li.close-button span::after {
  rotate: -45deg;
}


/* メインエリア レイアウト
************************************************************/
#main {
  position: relative;
}

._width-1100 {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  ._width-1100 {
    width: 100%;
    padding: 0 4%;
  }
}

._width-full {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  ._width-full {
    width: 100%;
    min-width: auto;
  }
}


/* フッター
************************************************************/
#footer {
  padding: 80px 0 0;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 40px 0 0;
  }
}

#footer ._width-1100 {
  position: relative;
}

#footer-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 0 80px;
}
#footer-content::before {
  content: "";
  position: absolute;
  right: -400px;
  bottom: -400px;
  width: 900px;
  height: 900px;
  background: url('../images/common/ft_bk.png');
  background-size: cover;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #footer-content {
    flex-direction: column;
    padding: 0 0 40px;
  }
  #footer-content::before {
    right: -100px;
    bottom: -100px;
    width: 430px;
    height: 430px;
  }
}

#footer-content .content-left {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 480px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #footer-content .content-left {
    width: 100%;
  }
}

#footer-logo {
  width: 465px;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #footer-logo {
    width: 100%;
  }
}

#footer-address .address {
  margin: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 2.4px;
}
#footer-address .distance {
  display: flex;
}
#footer-address .distance p {
  padding: 0 30px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 2.4px;
}
#footer-address .map {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.6px;
  text-decoration: underline;
  background: linear-gradient(96deg, #4CA7E2 0%, #53D2AC 90.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid;
  border-image: linear-gradient(96deg, #4CA7E2 0%, #53D2AC 90.84%) 1;
}
#footer-address .tel {
  padding: 20px 0 0;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  letter-spacing: 2.4px;
}
#footer-address .tel span {
  padding: 0 10px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  #footer-address {
    width: 290px;
    margin: 0 auto;
  }
  #footer-address .address {
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
  #footer-address .distance p {
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
  #footer-address ._sp {
    display: inline-block;
    margin: 0 0 0 15px;
  }
  #footer-address .map {
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
  #footer-address .tel {
    font-size: 1.8rem;
    letter-spacing: 1.8px;
  }
  #footer-address .tel span {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
  }
}

#footer-content .content-left .banner-box-01 {
  display: flex;
  gap: 20px;
  margin: 50px 0 30px;
}
#footer-content .content-left .banner-box-01 .item {
  width: calc((100% - 20px) / 2);
}
#footer-content .content-left .banner-box-01 .item a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 0 0 25px;
  color: #FFF;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 2.55px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
#footer-content .content-left .banner-box-01 .item a::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
}
#footer-content .content-left .banner-box-01 .item.-i-01 a {
  background: #4297CF;
}
#footer-content .content-left .banner-box-01 .item.-i-01 a::before {
  content: "";
  background: url('../images/common/icon_event.svg');
  background-size: cover;
}
#footer-content .content-left .banner-box-01 .item.-i-02 a {
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
}
#footer-content .content-left .banner-box-01 .item.-i-02 a::before {
  content: "";
  background: url('../images/common/icon_web.svg');
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #footer-content .content-left .banner-box-01 {
    gap: 15px;
    margin: 30px 0 20px;
  }
  #footer-content .content-left .banner-box-01 .item {
    width: calc((100% - 15px) / 2);
  }
  #footer-content .content-left .banner-box-01 .item a {
    height: 90px;
    padding: 0 0 18px;
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
  #footer-content .content-left .banner-box-01 .item a::before {
    top: 18px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 769px) {
  #footer-content .content-left .banner-box-01 .item a:hover {
    top: 2px;
    left: 2px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  }
}

#footer-content .content-left .banner-box-02 {
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer-content .content-left .banner-box-02 .caption {
  position: relative;
  width: fit-content;
  padding: 0 30px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2.4px;
}
#footer-content .content-left .banner-box-02 .caption::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: url('../images/top/arrow_double.svg');
  background-size: cover;
  transform: translateY(-50%);
}
#footer-content .content-left .banner-box-02 .button a {
  position: relative;
  width: 310px;
  height: 70px;
  padding: 5px;
  border: 1px solid rgba(66, 151, 207, 0.3);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
#footer-content .content-left .banner-box-02 .button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 60px;
  padding: 0 0 0 10px;
  color: #4297CF;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-align: center;
  border: 1px solid rgba(66, 151, 207, 0.5);
  border-radius: 7px;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
}
#footer-content .content-left .banner-box-02 .button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 28px;
  height: 28px;
  mask-image: url('../images/common/icon_content.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #4297CF;
  transition: all 0.3s;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #footer-content .content-left .banner-box-02 {
    flex-direction: column;
  }
  #footer-content .content-left .banner-box-02 .caption {
    padding: 0 30px 0;
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
  #footer-content .content-left .banner-box-02 .caption::before {
    width: 20px;
    height: 20px;
    background: url('../images/common/arrow_double_shita.svg');
    background-size: cover;
  }
  #footer-content .content-left .banner-box-02 .caption::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background: url('../images/common/arrow_double_shita.svg');
    background-size: cover;
    transform: translateY(-50%);
  }
  #footer-content .content-left .banner-box-02 .button {
    width: 100%;
    margin: 0 0 40px;
  }
  #footer-content .content-left .banner-box-02 .button a {
    width: 100%;
    height: 60px;
  }
  #footer-content .content-left .banner-box-02 .button span::before {
    width: 25px;
    height: 25px;
  }
  #footer-content .content-left .banner-box-02 .button span {
    width: calc(100% - 10px);
    height: 50px;
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
}

@media screen and (min-width: 769px) {
  #footer-content .content-left .banner-box-02 .button a:hover {
    border: 2px solid rgb(66, 151, 207);
  }
  #footer-content .content-left .banner-box-02 .button a:hover span {
    border: 1px solid rgba(66, 151, 207, 0.5);
  }
}

#footer-content .content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
#footer-schedule {
  width: 500px;
}

#footer-schedule .banner a {
  margin: 30px auto 0;
  text-align: center;
  transition: all .3s;
}
#footer-schedule .banner img {
  width: 300px;
  border: 1px solid #E4E4E4;
}
#footer-schedule .banner .text {
  display: block;
  padding: 5px 0 0;
  color: #777;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer-schedule {
    width: 100%;
  }
  #footer-schedule .note p {
    font-size: 1.2rem;
    letter-spacing: 1.8px;
  }
  #footer-schedule .note .last {
    font-size: 1.2rem;
    letter-spacing: 1.8px;
  }
  #footer-schedule .banner img {
    width: 80%;
    max-width: 300px;
  }
}
@media (min-width: 769px) {
  #footer-schedule .banner a:hover {
    opacity: .7;
  }
}

#footer-advertisement {
  display: flex;
  justify-content: center;
  gap: 11px;
}
#footer-advertisement .item a {
  width: 100%;
  text-align: center;
}
#footer-advertisement .item img {
  width: 175px;
  border: 1px solid rgba(52, 56, 58, 0.1);
}
#footer-advertisement .item .text {
  display: block;
  padding: 8px 0 0;
  color: #34383A;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.7px;
}
#footer-advertisement .item.-i-02 .text {
  display: block;
  padding: 8px 0 0;
  color: #89B724;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 768px) {
  #footer-advertisement {
    justify-content: space-between;
    gap: 15px;
    margin: 40px auto 0;
  }
  #footer-advertisement .item {
    width: calc((100% - 15px) / 2);
  }
  #footer-advertisement .item img {
    width: 100%;
    height: auto;
  }
  #footer-advertisement .item .text {
    font-size: 1.2rem;
    letter-spacing: 0.6px;
  }
  #footer-advertisement .item.-i-02 .text {
    font-size: 1.2rem;
    letter-spacing: 0.6px;
  }
}

#footer-copyright {
  display: block;
  position: relative;
  width: 100%;
  padding: 30px 0;
  margin: 0 auto;
  background: #34383A;
  z-index: 1;
}
#footer-copyright ._width-1100 {
  display: block;
  margin: 0 auto;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 1.8px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #footer-copyright {
    padding: 20px 22px 120px;
  }
  #footer-copyright ._width-1100 {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
}


/* ページトップ（SP）
************************************************************/
#sp-pagetop {
  display: none;
}
@media screen and (max-width: 768px) {
  #sp-pagetop {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 70px;
    opacity: 1;
    z-index: 50;
  }
  #sp-pagetop.none {
    opacity: 0;
    transition: all 0.6s;
  }
  #sp-pagetop a {
    position: relative;
    width: 50px;
    height: 50px;
    background: #4297CF;
    border-radius: 50%;
    transition: all 0.3s;
  }
  #sp-pagetop a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    background: url('../images/common/arrow_tate.svg') no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
  }
}


/* サイド固定 CTA
************************************************************/
#side-fixed-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #side-fixed-cta {
    display: none;
  }
}
#side-fixed-cta .item a {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  width: 110px;
  height: 110px;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2.1px;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 60px 0px 0px 60px;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  #side-fixed-cta .item a:hover {
    transform: scale(1.1, 1.1);
  }
}
#side-fixed-cta .item.-i-01 a {
  padding: 0 15px 18px 0;
  background: #4297CF;
}
#side-fixed-cta .item.-i-01 a::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 31px;
  width: 34px;
  height: 34px;
  background: url('../images/common/icon_event.svg');
  background-size: cover;
}
#side-fixed-cta .item.-i-02 a {
  padding: 0 8px 16px 0;
  background: linear-gradient(141deg, #ABE490 0%, #63D2B1 53.65%, #4CA7E2 100%);
}
#side-fixed-cta .item.-i-02 a::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 31px;
  width: 34px;
  height: 34px;
  background: url('../images/common/icon_web.svg');
  background-size: cover;
}


/* ページ下固定 CTA
************************************************************/
#fixed-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  bottom: 0;
  width: auto;
  height: 120px;
  padding: 0 0 0 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px 0px 0px 0px;
  backdrop-filter: blur(10px);
  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.1));
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #fixed-cta {
    display: none;
  }
}
#fixed-cta .tel-box {
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(66, 151, 207, 0.3);
}
#fixed-cta .tel-box .in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 8px 16px 11px;
  border-radius: 10px;
  background: linear-gradient(96deg, rgba(76, 167, 226, 0.25) 0%, rgba(99, 210, 177, 0.25) 48.73%, rgba(171, 228, 144, 0.25) 90.84%), #FFF;
}
#fixed-cta .tel-box .a-01 {
  padding: 6px 12px;
  margin: 0 auto;
  color: #4297CF;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.14rem;
  background: #FFF;
  border-radius: 20px;
}
#fixed-cta .tel-box .a-02 {
  position: relative;
  padding: 0 0 0 27px;
  margin: 5px auto 3px;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 100%;
  letter-spacing: 0.152rem;
}
#fixed-cta .tel-box .a-02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: url('../images/common/icon_tel.svg');
  background-size: cover;
  transform: translatey(-50%);
}
#fixed-cta .tel-box .a-03 {
  color: #4297CF;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.14rem;
  text-align: center;
}
#fixed-cta .button-box-01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 90px;
  border-right: 1px solid rgba(66, 151, 207, 0.3);
}
#fixed-cta .button-box-01 .caption {
  padding: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: 1.95px;
  text-align: center;
}
#fixed-cta .button-box-01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  padding: 0 0 0 32px;
  background: #FFF;
  border: 1px solid rgba(66, 151, 207, 0.5);
  border-radius: 10px;
  transition: all 0.3s;
}
#fixed-cta .button-box-01 a span {
  position: relative;
  color: #4297CF;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-align: center;
}
#fixed-cta .button-box-01 a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  width: 24px;
  height: 24px;
  background: url('../images/common/icon_content.svg');
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #fixed-cta .button-box-01 a:hover {
    border: 1px solid rgb(66, 151, 207);
  }
}
#fixed-cta .button-box-02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 172px;
  height: 90px;
  border-right: 1px solid rgba(66, 151, 207, 0.3);
}
#fixed-cta .button-box-02 .a-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  background: #ADD059;
  border-radius: 30px;
  transition: all 0.3s;
}
#fixed-cta .button-box-02 .a-01 span {
  position: relative;
  padding: 0 0 0 14px;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 2.4px;
  text-align: center;
}
#fixed-cta .button-box-02 .a-01 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 24px;
  height: 24px;
  background: url('../images/common/icon_phone.svg');
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #fixed-cta .button-box-02 .a-01:hover {
    opacity: 0.7;
  }
}
#fixed-cta .button-box-02 .a-02 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  background: #EAABAB;
  border-radius: 30px;
  transition: all 0.3s;
}
#fixed-cta .button-box-02 .a-02 span {
  position: relative;
  padding: 0 0 0 14px;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 2.4px;
  text-align: center;
}
#fixed-cta .button-box-02 .a-02 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 24px;
  height: 24px;
  background: url('../images/common/icon_recruit.svg');
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #fixed-cta .button-box-02 .a-02:hover {
    opacity: 0.7;
  }
}
#fixed-cta .pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 0 20px 0 16px;
}
#fixed-cta .pagetop a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 90px;
  transition: all 0.3s;
}
#fixed-cta .pagetop a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 20px;
  height: 20px;
  background: url('../images/common/arrow_tate.svg');
  background-size: cover;
  transform: translateX(-50%);
  z-index: 1;
}
#fixed-cta .pagetop a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: #4297CF;
  border-radius: 50%;
  transform: translateX(-50%);
}
#fixed-cta .pagetop a span {
  padding: 6px 0 0;
  color: #4297CF;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: 1.1px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #fixed-cta .pagetop a:hover {
    opacity: 0.7;
  }
}


/* ページ下固定 CTA（SP）
************************************************************/
#sp-fixed-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  #sp-fixed-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 100;
  }
  #sp-fixed-cta .item {
    width: 33.3333333333%;
  }
  #sp-fixed-cta .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
  }
  #sp-fixed-cta .item a span {
    position: relative;
    padding: 0 0 0 16px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-align: center;
  }
  #sp-fixed-cta .item a span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
  }
  #sp-fixed-cta .item.-web a {
    background: #fff;
  }
  #sp-fixed-cta .item.-web a span {
    color: #4297CF;
  }
  #sp-fixed-cta .item.-web a span::before {
    background: url('../images/common/icon_content.svg');
    background-size: cover;
  }
  #sp-fixed-cta .item.-line a {
    background: #ADD059;
  }
  #sp-fixed-cta .item.-line a span::before {
    background: url('../images/common/icon_phone.svg');
    background-size: cover;
  }
  #sp-fixed-cta .item.-recruit a {
    background: #EAABAB;
  }
  #sp-fixed-cta .item.-recruit a span::before {
    background: url('../images/common/icon_recruit.svg');
    background-size: cover;
  }
}


/*===============================================================================

	パーツ・コンポーネント

===============================================================================*/

/* スケジュールテーブル
************************************************************/
.schedule-table table {
  position: relative;
}
.schedule-table table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
}
.schedule-table table tr th {
  position: relative;
  width: 51px;
  height: 50px;
  color: #FFF;
  font-size: 1.7rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 3.4px;
  text-align: center;
  vertical-align: middle;
}
.schedule-table table tr td {
  width: 51px;
  height: 60px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 1.8px;
  text-align: center;
  border-bottom: 1px solid rgba(66, 151, 207, 0.5);
  vertical-align: middle;
}
.schedule-table table tr th:first-child,
.schedule-table table tr td:first-child {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .schedule-table table {
    width: 100%;
  }
  .schedule-table table::before {
    height: 40px;
  }
  .schedule-table table tr th,
  .schedule-table table tr td {
    width: auto;
    height: 40px;
    font-size: 1.3rem;
    letter-spacing: 1.3px; 
  }
  .schedule-table table tr th {
    padding: 0 6px;
  }
  .schedule-table table tr th:first-child,
  .schedule-table table tr td:first-child {
    width: 100px;
  }
}

.schedule-table .circle,
.schedule-table .triangle,
.schedule-table .star {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 3.6px;
  text-align: center;
}
.schedule-table .circle {
  color: #4297CF;
}
.schedule-table .triangle {
  color: #61CDB8;
}
.schedule-table .star {
  color: #ADD059;
}
@media screen and (max-width: 768px) {
  .schedule-table .circle,
  .schedule-table .triangle,
  .schedule-table .star {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
  }
  .schedule-table .circle {
    letter-spacing: 2.6px;
  }
}
.schedule-table .note {
  margin: 20px 0 0;
}
.schedule-table .note p {
  line-height: 2;
  letter-spacing: 2.4px;
}
.schedule-table .note .last {
  color: #4297CF;
}


/* ボタン
************************************************************/
.more-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 250px;
  height: 56px;
  margin: 10px auto 0;
  color: #FFF;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 2.4px;
  text-align: center;
  border-radius: 50px;
  background: #4297CF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.more-button.-bg-green a {
  background: #ADD059;
}
.more-button a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background: url('../images/common/arrow_wh.svg');
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .more-button a {
    width: 250px;
    height: 46px;
    font-size: 1.3rem;
    letter-spacing: 1.95px;
  }
  .more-button a::before {
    right: 15px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 769px) {
  .more-button a:hover {
    top: 2px;
    left: 2px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  }
}