@charset "UTF-8";
/**
 * @ main.css
 *
 * 
 */

/* ==============================
  Default
============================== */
html {
  font-size: 62.5%;
  overflow: auto;
}
body {
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  font-display: swap;
  line-height: 1.6;
  font-family: "Comfortaa", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "YuGothic", "Yu Gothic Medium", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  /* opacity: 0.8; */
  transition: 0.3s;
}
figure {
  margin: 0;
}
dl dt,
dl dd {
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
li:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
li:last-child {
  margin-bottom: 0;
}
input,
textarea,
select,
button,
pre {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "YuGothic", "Yu Gothic Medium", "Yu Gothic", sans-serif;
  line-height: 1.6;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex.aiC {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex.aiFs {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex.aiFe {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex.jcC {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex.jcFs {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex.jcFe {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex.jcSb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex.jcSa {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex.fwW {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.taC {
  text-align: center;
}
.taR {
  text-align: right;
}
.taL {
  text-align: left;
}

.fwR {
  font-weight: 400;
}
.fwM {
  font-weight: 500;
}
.fwB {
  font-weight: 700;
}

@media screen and (max-width: 990px) {
  main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 3.2rem !important;
  }
}
/* ==============================
  Base
============================== */
.inner {
  width: 1160px;
  max-width: 93%;
  margin: auto;
}

/* ==============================
  button
============================== */
.button {
  width: fit-content;
}
.button a {
  display: block;
  width: fit-content;
  min-width: 357px;
  max-width: 100%;
  background: #a4cdf6;
  border-radius: 40px;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 15px 40px 11px;
  text-align: center;
  box-shadow: 0 2px 2px 0px rgb(0 0 0 / 35%);
  position: relative;
}
.button a::before {
  content: "";
  background: url(../img/arrow_white.svg) no-repeat center;
  width: 11px;
  height: 18px;
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}
.button:hover a {
  box-shadow: none;
  transform: translate3d(0, 2px, 0);
}

.button.preparation a {
  background-color: #cccfd3;
  pointer-events: none;
}
.button.preparation:hover a {
  box-shadow: 0 2px 2px 0px rgb(0 0 0 / 35%);
  transform: none;
}
.button.back a::before {
  transform: translateY(-50%) rotate(-180deg);
  right: auto;
  left: 19px;
}
@media screen and (max-width: 768px) {
  .button a {
    min-width: 290px;
  }
}
/* ==============================
  header
============================== */
header {
  padding: 13px 0 40px;
}
header .inner {
  width: 1200px;
  max-width: 98%;
  position: relative;
}
header .catch {
  margin: 0 auto 17px;
  font-size: 1.2rem;
  width: 1160px;
  max-width: 98%;
  position: relative;
}
header .header_top.flex {
  justify-content: space-between;
  align-items: center;
  width: 1160px;
  max-width: 98%;
  margin: 0 auto 17px;
}
header h1 a:hover {
  opacity: 0.7;
}
header h1 img {
  width: 224px;
  height: 35px;
}
header .menu_top {
  display: flex;
  gap: 25px;
}
header .header_top a:hover {
  color: #2d75c1;
}
header .menu_top li a img {
  width: 76px;
  height: auto;
  margin: 2px 2px 0;
  transition: 0.3s;
}
header .menu_top li a:hover img {
  opacity: 0.8;
  transition: 0.3s;
}
header .menu_top.sp {
  display: none;
}
/* 旧KURURUサイト */
header .kururu_old {
  position: absolute;
  top: 0;
  right: 0;
}
header .kururu_old a {
  border: 1px solid #cdcdce;
  background: #f8f8f8;
  color: #767676;
  font-size: 1.4rem;
  padding: 4px 13px 1px;
  border-radius: 25px;
}
header .kururu_old a:hover {
  background: #e7e7e7;
  color: #767676;
  transition: 0.3s;
}
header .kururu_old img {
  width: 71px;
  height: auto;
  margin-right: 2px;
}
/* グローバルメニュー */
header nav {
  background: #a4cdf6;
  border-radius: 50px;
  box-shadow: 0 2px 2px 0px rgb(0 0 0 / 35%);
  position: relative;
  z-index: 10;
}
header nav .sp {
  display: none;
}
header nav .scroll_area > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .scroll_area > ul > li {
  padding: 8px;
}
header nav .scroll_area > ul > li > :is(p, a) {
  display: block;
  padding: 5px 15px 3px;
  transition: background 0.3s;
  border-radius: 32px;
  font-weight: 500;
  position: relative;
}
header nav ul li.has_sub a {
  position: relative;
  padding: 5px 35px 3px 15px;
}
header nav ul li.has_sub > a::after {
  content: "";
  background: url(../img/arrow_white.svg) no-repeat center / contain;
  transform: translateY(0) rotate(90deg);
  position: absolute;
  top: 10px;
  display: inline-block;
  width: 8px;
  height: 12px;
  right: 15px;
  transition: 0.3s;
}
header nav .sub {
  position: absolute;
  left: 0;
  top: calc(100% + 11px);
  display: none;
  width: 100%;
  z-index: 3;
  background: #fff;
  border: 6px solid #e5e5e6;
  border-radius: 20px;
  padding: 22px 36px;
  box-shadow: 0 2px 2px 0px rgb(0 0 0 / 35%);
  box-sizing: border-box;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  /* position: relative; */
}
header nav .sub::before {
  content: "";
  width: 100%;
  height: 22px;
  display: block;
  position: absolute !important;
  bottom: 100%;
  left: 0;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header nav .has_sub,
header nav .has_sub > * {
  cursor: pointer;
}
header nav .has_sub .sub li {
  display: inline-block;
  width: fit-content;
}
header nav .has_sub .sub li:not(:last-child) {
  margin-right: 50px;
}
header nav .has_sub .sub li a {
  color: #2d75c1;
  padding: 12px 0 9px;
  display: block;
}
header nav .has_sub .sub li a {
  color: #2d75c1;
}
header nav .has_sub .sub li a:hover {
  color: #85b1df;
}
@media screen and (min-width: 991px) {
  header nav .scroll_area > ul > li:hover > :is(p, a) {
    background: #4688cd;
    color: #fff;
    transition: background 0.3s;
  }
}
@media screen and (max-width: 990px) {
  /* レイアウト変更 */
  header {
    padding: 24px 15px 21px;
    position: fixed;
    background: #fff;
    z-index: 99;
    max-width: 100%;
  }
  header .inner {
    margin: 0;
  }
  header .catch {
    display: none;
  }
  header .menu_top.sp {
    display: block;
    margin-top: 27px;
  }
  header .menu_top.sp li img {
    margin: -1px 3px 0px 0;
  }
  header .menu_top.pc {
    display: none;
  }
  header .header_top.flex {
    margin-bottom: 0;
  }
  header nav .sp {
    display: block;
  }
  header .kururu_old {
    position: relative;
    padding: 14px 0 12px 16px;
    right: auto;
    top: auto;
    margin-top: 0 !important;
    padding-bottom: 100px;
  }
  header .kururu_old a {
    padding: 6px 13px;
  }
  /* ハンバーガーメニュー */
  header .nav_open-button {
    position: fixed;
    z-index: 9999;
    top: 29px;
    right: 15px;
    cursor: pointer;
    width: 40px;
    height: 22px;
  }

  /*×に変化*/
  header .nav_open-button span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    height: 4px;
    border-radius: 2px;
    background-color: #73adea;
    width: 100%;
  }
  header .nav_open-button span:nth-of-type(1) {
    top: 0;
  }
  header .nav_open-button span:nth-of-type(2) {
    top: 9px;
  }
  header .nav_open-button span:nth-of-type(3) {
    top: 18px;
  }
  header .nav_open-button.active span:nth-of-type(1) {
    top: 8px;
    left: 0;
    transform: translateY(0px) rotate(-26.33deg);
    width: 100%;
  }
  header .nav_open-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .nav_open-button.active span:nth-of-type(3) {
    top: 8px;
    left: 0;
    transform: translateY(0px) rotate(26.33deg);
    width: 100%;
  }
  header nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.3s;
    border-radius: 0;
  }
  header nav.panel-active {
    right: 0;
    background: #f5f5f5;
  }
  header nav .sp h1 {
    padding: 24px 15px 21px;
  }
  header nav.panel-active .scroll_area {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* メニューの中身 */
  header nav.panel-active .scroll_area a {
    font-weight: 500;
  }
  header nav.panel-active .scroll_area > ul:first-of-type {
    flex-direction: column;
    background: #a4cdf6;
    width: calc(100% - 30px);
    margin: auto;
    border-radius: 20px;
    padding: 5px 15px;
  }
  header nav.panel-active ul li {
    padding: 0;
    width: 100%;
  }
  header nav .has_sub .sub li {
    width: 100%;
  }
  header nav.panel-active ul:first-of-type li:not(:last-of-type) {
    border-bottom: 1px solid #e5e5e6;
    width: 100%;
    margin-right: 0;
  }
  header nav.panel-active ul li.has_sub {
    position: relative;
  }
  header nav ul li.has_sub > a::after {
    content: none;
  }
  header nav.panel-active ul li.has_sub::after {
    content: "";
    padding-right: 30px;
    background: url(../img/arrow_white.svg) no-repeat center;
    transform: translateY(0) rotate(90deg);
    position: absolute;
    top: 16px;
    display: inline-block;
    width: 12px;
    height: 18px;
    right: 0;
    transition: 0.3s;
  }
  header nav.panel-active ul li.has_sub.panel-active::after {
    transform: translateY(0) rotate(-90deg);
    transition: 0.3s;
  }
  header nav.panel-active ul li.has_sub .sub {
    position: relative;
    background: #fff;
    border: none;
    box-shadow: none;
    padding: 8px 15px;
    margin-bottom: 16px;
  }
  header nav .sub::before {
    content: none;
  }
  header nav .scroll_area > ul > li > :is(p, a) {
    padding: 14px 0 12px 16px;
    margin-right: 40px;
    display: block;
  }
  header nav .scroll_area .menu_top.sp li a {
    margin-right: 0;
  }
}
/* ==============================
  footer
============================== */
footer {
  background: #767676;
  padding: 73px 0 119px;
}
footer * {
  color: #fff;
}
footer .logo {
  margin-bottom: 51px;
}
footer .logo img {
  width: 238px;
  height: 38px;
}
footer .footer_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 41px;
  border-bottom: 1px solid #fff;
  margin-bottom: 34px;
  justify-content: space-between;
}
footer .footer_menu .menu_list {
  width: fit-content;
  max-width: 224px;
}
footer .footer_menu .menu_list a {
  font-weight: 500;
}
footer .footer_menu .menu_list :is(a, li) {
  line-height: 2.3;
}
footer .footer_menu .menu_list li a {
  font-size: 1.4rem;
  margin-bottom: 6px;
  padding-left: 19px;
  position: relative;
  display: block;
}
footer .footer_menu .menu_list li a::before {
  content: "";
  background: url(../img/arrow_footer.svg) no-repeat center / 100%;
  width: 11px;
  height: 6px;
  transform: rotate(90deg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 11px;
}
footer .footer_menu .menu_list .expansion_link a {
  line-height: 1.7 !important;
  margin: 5px 0 10px;
}
footer .footer_menu .menu_list .expansion_link a::before {
  top: 8px;
}
footer .footer_menu a:hover {
  opacity: 0.7;
}
footer .operation {
  font-size: 1.8rem;
  margin-bottom: 25px;
}
footer .contact {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .footer_bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
footer .footer_bottom .sns ul {
  display: flex;
  gap: 11px;
}
footer .footer_bottom .registration p {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 51px 0 100px;
  }
  footer .logo {
    margin-bottom: 47px;
  }
  footer .logo img {
    width: 202px;
    height: auto;
  }
  footer .footer_menu {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
  }
  footer .footer_menu .menu_list {
    width: calc((100% - 30px) / 2);
    display: block;
  }
  footer .footer_menu .menu_list li a {
    font-size: 1.2rem;
    font-weight: 400;
  }
  footer .operation {
    font-size: 1.6rem;
  }
  footer .operation .comfortaa{
    font-size: 1.2rem;
  }
  footer .contact {
    font-size: 1.2rem;
    margin-bottom: 22px;
  }
  footer .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer_bottom .sns {
    margin-bottom: 22px;
  }
  footer .footer_bottom .registration {
    width: 100%;
  }
  footer .footer_bottom .registration p {
    text-align: right;
  }
}
/* ==============================
  page-top
============================== */
#page-top {
  background: #80b6ef;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0px 0px 0px;
  cursor: pointer;
  position: fixed;
  right: 0;
  bottom: 0;
}
#page-top img {
  width: 27px;
  height: 15px;
}
