@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
:root {
  --color-black: #000;
  --color-pink: #FF65E2;
  --color-yellow: #FFFF54;
  --color-lightblue: #EAF7FF;
  --color-blue: #0099FF;
  --color-white: #FFF;
  --color-gray: #F0F0F0;
  --fontSize-title: 2rem;
  --fontSize-lead: 1.8rem;
  --fontSize-lead02: 1.5rem;
  --fontSize-note: 0.812rem;
  --gap30: 30px;
  --gap40: 40px;
  --lineHeight01: 1;
  --lineHeight02: 1.3;
}

@media screen and (max-width: 767px) {
  :root {
    --fontSize-title: 1.75rem;
    --fontSize-lead: 1.5rem;
    --fontSize-lead02: 1rem;
    --fontSize-note: 0.75rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}

img {
  /*chome画像ぼやけ回避処理*/
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
/* TO TOP */
.page-top {
  margin: 0;
  padding: 0;
}

.page-top p {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.move-page-top {
  transition: all 0.3s;
}

/* COMMON */
.flex {
  display: flex;
}

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

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.justify-center {
  justify-content: center;
}

.justify-spaceAround {
  justify-content: space-around;
}

.justify-spaceBetween {
  justify-content: space-between;
}

.justify-flexStart {
  justify-content: flex-start;
}

.justify-flexEnd {
  justify-content: flex-end;
}

.section .align-c {
  text-align: center;
}

.section .align-l {
  text-align: left;
}

.main .mt10 {
  margin-top: 10px;
}

.main .mt20 {
  margin-top: 20px;
}

.main .mt30 {
  margin-top: 30px;
}

.main .mt40 {
  margin-top: 40px;
}

.main .mt50 {
  margin-top: 50px;
}

.main .mt60 {
  margin-top: 60px;
}

.main .mt70 {
  margin-top: 70px;
}

.main .mt80 {
  margin-top: 80px;
}

.l-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

body .u-sp {
  display: none !important;
}

.c-blue {
  color: var(--color-blue);
}

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

@media screen and (max-width: 767px) {
  .main .mt10 {
    margin-top: 5px;
  }
  .main .mt20 {
    margin-top: 10px;
  }
  .main .mt30 {
    margin-top: 15px;
  }
  .main .mt40 {
    margin-top: 20px;
  }
  .main .mt50 {
    margin-top: 25px;
  }
  .main .mt60 {
    margin-top: 30px;
  }
  .main .mt70 {
    margin-top: 35px;
  }
  .main .mt80 {
    margin-top: 40px;
  }
  body .u-pc {
    display: none !important;
  }
  body .u-sp {
    display: block !important;
  }
}
.section {
  margin-top: 100px;
}

.box {
  border: 4px solid var(--color-black);
  border-radius: 22px;
  padding: 90px 60px 60px;
  position: relative;
}

.c-box02 {
  background: var(--color-gray);
  border-radius: 16px;
  padding: 32px;
}
.c-box02__title {
  font-size: 1.5rem;
  font-weight: 700;
}
.c-box02__title02 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 1em auto;
}
.c-box02__sub {
  font-size: 1.25rem;
}
.c-box02__lead {
  height: 70px;
  margin: 0 auto;
  text-align: center;
}
.c-box02__lead02 {
  height: 98px;
  margin: 0 auto;
  text-align: center;
}

.c-box02 + .c-box02 {
  margin-top: 24px;
}

.c-box02__title + .c-box02__sub {
  margin-left: 1.5rem;
}

.c-title + .c-box02__lead {
  margin: 30px auto 0;
}

.c-btn + .c-box02__lead {
  margin-top: 50px;
}

.c-box03 {
  background: var(--color-white);
  border-radius: 15px;
  padding: 32px;
}

.c-box03 + .c-box03 {
  margin-top: 20px;
}

.c-title + .c-box03 {
  margin-top: 40px;
}

.c-box02__lead + .c-box03 {
  margin-top: 30px;
}

.c-box02__heading + .c-box03 {
  margin-top: 16px;
}

.c-btn + .c-box03 {
  margin-top: 30px;
}

.c-box04 {
  border: 4px solid var(--color-blue);
  border-radius: 18px;
  font-size: var(--fontSize-lead02);
}
.c-box04__title {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.c-box04__desc {
  padding: 20px 30px;
}

.c-box05 {
  border: 4px solid var(--color-gray);
  border-radius: 16px;
}
.c-box05__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: var(--lineHeight02);
  background: var(--color-gray);
  padding: 14px;
}
.c-box05__content {
  padding: 20px 32px;
}
.c-box05__image {
  max-width: 90px;
}
.c-box05__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--lineHeight02);
  letter-spacing: -0.0375em;
}
.c-box05__emphasise {
  font-size: 3rem;
  letter-spacing: -0.05em;
}
.c-box05__dl ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-box05__dl ul li::before {
  content: "・";
}

.c-box05 + .c-box05 {
  margin-top: 24px;
}

.c-box05__image + .c-box05__text {
  margin-left: 24px;
}

.c-box05__emphasise {
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.c-box05 + .c-box05__dl {
  margin-top: 20px;
}

.c-title {
  font-size: var(--fontSize-title);
  color: var(--color-white);
  text-align: center;
  background: var(--color-black);
  padding: 0.812rem 3.8rem;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1004px) {
  .c-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .c-title.top1 {
    padding: 0.812rem 1.6rem;
  }
}
.c-title--top {
  position: absolute;
  right: 0;
  left: 0;
  top: -1.1em;
  margin: 0 auto;
}
.c-title--small {
  font-size: 1.875rem;
  font-weight: bold;
  padding: 0.812rem 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-title--small {
    font-size: 0.937rem;
    padding: 0.5rem 1rem;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-top: 60px;
  }
  .box {
    border: 3px solid var(--color-black);
    border-radius: 16px;
    padding: 54px 20px 20px;
  }
  .c-box02 {
    padding: 16px;
  }
  .c-box02__lead {
    height: 32px;
  }
  .c-box02__lead02 {
    height: auto;
  }
  .c-title + .c-box02__lead {
    margin: 20px auto 0;
  }
  .c-box02__title {
    font-size: 1rem;
  }
  .c-box02__sub {
    font-size: 0.812rem;
  }
  .c-box02__title + .c-box02__sub {
    margin: 6px 0 0;
  }
  .c-box02__title02 {
    font-size: 0.812rem;
  }
  .c-box02__heading.items-end {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-box03 {
    padding: 16px;
  }
  .c-box03 + .c-box03 {
    margin-top: 16px;
  }
  .c-box02__lead + .c-box03 {
    margin-top: 20px;
  }
  .c-box04__title {
    font-size: 0.625rem;
    padding: 10px;
  }
  .c-box04__desc {
    padding: 10px 20px;
  }
  .c-box05 {
    border: 3px solid var(--color-gray);
  }
  .c-box05 + .c-box05 {
    margin-top: 16px;
  }
  .accordion__title02.u-pc + .c-box05 {
    margin-top: 16px;
  }
  .c-box05__title {
    font-size: 1rem;
    padding: 8px;
  }
  .c-box05__content {
    padding: 16px 12px;
  }
  .c-box05__text {
    font-size: 0.812rem;
    letter-spacing: -0.01em;
  }
  .c-box05__image + .c-box05__text {
    margin-left: 10px;
  }
  .c-box05__emphasise {
    font-size: 1.5rem;
  }
  .c-box05__image {
    max-width: 40px;
  }
  .c-title + .c-box03 {
    margin-top: 30px;
  }
  .c-note {
    font-size: 0.75rem;
  }
}
.c-title02 {
  font-size: var(--fontSize-lead);
  color: var(--color-blue);
  line-height: var(--lineHeight02);
}

.c-lead {
  font-size: var(--fontSize-lead);
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 1.125rem;
  }
}
.c-lead02 {
  font-size: var(--fontSize-lead02);
  text-align: center;
}

.c-box02 + .c-lead02 {
  margin-top: 40px;
}

.c-list {
  list-style: none;
  font-size: var(--fontSize-lead02);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-list {
    font-size: 0.812rem;
  }
}
.c-list li::before {
  content: "・";
}
.c-list small {
  font-size: 1.125rem;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .c-list small {
    font-size: 0.687rem;
    padding-left: 0.75em;
  }
}

.c-title02 + .c-list {
  margin-top: 16px;
}

.c-list02 {
  font-weight: 700;
}
.c-list02 > li {
  padding-left: 2em;
  text-indent: -1em;
  position: relative;
}
.c-list02 > li::before {
  background: var(--color-blue);
  border-radius: 0.562rem;
  content: "";
  height: 0.562rem;
  width: 0.562rem;
  position: absolute;
  left: 0;
  top: 0.3em;
}
@media screen and (max-width: 767px) {
  .c-list02 > li::before {
    border-radius: 0.4rem;
    height: 0.4rem;
    width: 0.4rem;
    top: 0.35em;
  }
}
.c-list02 > li li::before {
  content: "・";
}

.c-btn {
  background: var(--color-blue);
  border: 3px solid var(--color-white);
  border-radius: 55px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.062rem;
  font-weight: bold;
  min-width: 347px;
  min-height: 61px;
  padding: 4px 24px;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-btn {
    border-radius: 40px;
    font-size: 0.875rem;
    min-width: 160px;
    min-height: 40px;
    padding: 4px 12px;
  }
}
.c-btn--pink {
  background: var(--color-pink);
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  max-width: 335px;
  width: 90%;
}
.c-btn--yellow {
  background: var(--color-yellow);
  border: none;
  color: var(--color-black);
  font-size: 1.25rem;
  min-width: 286px;
}
.c-btn--right {
  margin-right: 0;
}

.c-box03 + .c-btn {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .c-title02 + .c-list {
    margin-top: 8px;
  }
  .c-box03 + .c-btn {
    margin-top: 20px;
  }
  .modal__content-wrap .c-btn {
    font-size: 1rem;
  }
}
/* HEADER */
.header {
  background: var(--color-blue);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 16px 16px;
  }
}
.header__logo {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 80px;
  }
}

/* MAIN VISUAL */
.mainvisual {
  background: var(--color-blue);
  padding: 0 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainvisual__title {
  max-width: 450px;
  margin: 0 auto 20px;
  padding-right: 85px;
}
@media screen and (max-width: 767px) {
  .mainvisual__title {
    margin: 0 auto;
    padding-right: 0px;
    width: 90%;
  }
}
@media screen and (max-width: 375px) {
  .mainvisual__title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 376px) {
  .mainvisual__title--pc {
    display: none;
  }
}
.mainvisual__title--sp {
  display: none;
}
@media screen and (max-width: 375px) {
  .mainvisual__title--sp {
    display: block;
  }
}
.mainvisual__card {
  max-width: auto;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .mainvisual__card {
    margin: 0 auto;
    padding-left: 24px;
    width: 90%;
  }
}
@media screen and (max-width: 375px) {
  .mainvisual__card {
    max-width: 217px;
  }
}
.mainvisual__left {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .mainvisual__left {
    margin-bottom: 40px;
  }
}
.mainvisual .l-inner {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .mainvisual .l-inner {
    text-align: center;
  }
}
.mainvisual .c-btn {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .mainvisual .c-btn {
    margin: 24px auto 0;
  }
}
.mainvisual__pg {
  display: flex;
  justify-content: space-around;
  position: relative;
}
.mainvisual__pg img {
  width: 7%;
  position: absolute;
  top: 35%;
}
@media screen and (max-width: 767px) {
  .mainvisual__pg img {
    width: 7%;
    position: absolute;
    top: 35%;
  }
}
.mainvisual__pglist {
  background-color: #fff;
  border-radius: 9px;
  margin: 10px;
  max-width: 280px;
  padding: 18px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mainvisual__pglist {
    max-width: 300px;
    margin: 0px 0 10px 0;
    padding: 18px 5px;
  }
}
.mainvisual__pglist p {
  font-size: 1.2em;
}
@media screen and (max-width: 767px) {
  .mainvisual__pglist p {
    font-size: 0.8em;
  }
}
.mainvisual__pglist .cb {
  background: linear-gradient(transparent 70%, #FFFF54 0%);
  color: #0099FF;
  display: inline;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .mainvisual__pglist .cb {
    background: linear-gradient(transparent 70%, #FFFF54 0%);
    color: #0099FF;
    display: inline;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.2;
  }
}

.icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
}

.icon::before,
.icon--plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-top: 4px solid #fff;
  transform: translateX(-50%);
}

.icon--plus:after {
  top: 5px;
  left: -4px;
  transform: rotate(90deg);
}

.attencion_words {
  color: #fff;
  text-align: center;
}

/* SLASH*/
.slash {
  color: #FFFF54;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slash {
    font-size: 1.2em;
    margin-bottom: 11.5px;
  }
}
.slash::before, .slash::after {
  background-color: #FFFF54;
  content: "";
  height: 3px;
  margin: 0px 4px;
  width: 25px;
}
.slash::before {
  transform: rotate(60deg);
}
.slash::after {
  transform: rotate(-60deg);
}

/* REASON */
.reason .box {
  padding: 90px 50px 40px;
}
@media screen and (max-width: 767px) {
  .reason .box {
    padding: 54px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .reason .c-note {
    margin-top: 20px;
  }
}
.reason__list {
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 1004px) {
  .reason__list {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__list {
    -moz-column-gap: 12px;
    column-gap: 12px;
    flex-direction: column;
    margin-top: 20px;
  }
}
.reason__item {
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 250px;
  min-height: 250px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1004px) {
  .reason__item {
    max-width: 190px;
    min-height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .reason__item {
    border-radius: 8px;
    display: block;
    height: auto;
    max-width: none;
    min-height: auto;
    width: 100%;
  }
}
.reason__desc {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 1004px) {
  .reason__desc {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .reason__desc {
    margin: 0 0 0 1rem;
  }
}
.reason__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 6px;
  vertical-align: middle;
  width: 92px;
}
@media screen and (max-width: 1004px) {
  .reason__image {
    width: 86px;
  }
}
@media screen and (max-width: 767px) {
  .reason__image {
    margin: 0;
    width: 78px;
  }
}
.reason__tag {
  background: var(--color-white);
  border-radius: 1.4em;
  display: block;
  font-size: 1.25rem;
  height: 1.4em;
  line-height: 1;
  margin: 6px auto 0;
  padding: 4px;
}
@media screen and (max-width: 1004px) {
  .reason__tag {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__tag {
    display: inline-block;
    font-size: 0.937rem;
    margin: 4px auto 0 0;
    max-width: none;
    padding: 4px 1em;
  }
}
@media screen and (max-width: 767px) {
  .reason__tag .c-note {
    padding-left: 0.2em;
    text-indent: 0;
  }
}
.reason__tag small {
  font-size: 0.75em;
  padding-left: 0.25em;
}
@media screen and (max-width: 767px) {
  .reason__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 767px) {
  .reason .c-title {
    top: -2.1em;
  }
}

@media screen and (max-width: 767px) {
  .reason__item + .reason__item {
    margin-top: 12px;
  }
  .reason__item:nth-of-type(1) .reason__parts--sp {
    font-size: 2.1rem;
    padding-left: 0.2rem;
  }
  .reason__item:nth-of-type(2) .reason__parts--sp {
    display: table;
  }
  .reason__item:nth-of-type(2) .reason__parts--sp {
    display: table-cell;
    vertical-align: middle;
    font-size: 1.125rem;
  }
  .reason__item:nth-of-type(2) .reason__parts--sp:nth-of-type(2) {
    font-size: 2.875rem;
    padding-left: 0.2rem;
  }
  .reason__item:nth-of-type(2) .reason__parts--sp:nth-of-type(2) span {
    font-size: 1.5rem;
  }
}
/* RECOMMEND */
.recommend__lead {
  font-weight: 700;
}
.recommend__title {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
}
.recommend__title img:nth-child(1) {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .recommend__title {
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 767px) {
  .recommend__title img {
    margin: 0 auto;
    width: 220px;
    height: auto;
  }
}
.recommend__title + .pg {
  position: relative;
}
.recommend__title + .pg::before {
  background: #0099FF;
  content: "";
  height: 100%;
  width: 4px;
  position: absolute;
  top: 0;
  left: 58px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .recommend__title + .pg::before {
    left: 40px;
  }
}
.recommend__subtitle {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recommend__subtitle {
    font-size: 1.25rem;
  }
}

/* PROGRAM_CIRCLE */
.circle {
  background-color: #0099FF;
  border-radius: 50%;
  color: #FFF;
  height: 120px;
  margin: 0 auto;
  text-align: center;
  width: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .circle {
    height: 80px;
    width: 80px;
  }
}
.circle__inner {
  position: absolute;
  display: inline-block;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .circle__inner {
    font-size: 0.8em;
    width: 80px;
    top: 50%;
    left: 1%;
  }
}
.circle__inner span {
  font-size: 0.8em;
}

/* PROGRAM */
#program {
  margin-top: 60px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  #program {
    margin-top: 36px;
    padding-top: 24px;
  }
}

.pg {
  display: flex;
}
.pg__detail {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .pg__detail {
    margin-left: -20px;
  }
}
.pg__title {
  display: inline-block;
  font-size: 1.5em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .pg__title {
    font-size: 1.2em;
    text-align: left;
  }
}
.pg__title img {
  margin-bottom: -22px;
  padding: 0 2px;
  width: 200px;
}

.program__list {
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1004px) {
  .program__list {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .program__list {
    display: block;
    margin-top: 24px;
  }
}
.program__item {
  background: var(--color-gray);
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  padding: 50px 24px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .program__item {
    border-radius: 16px;
    flex-wrap: nowrap;
    padding: 12px 12px 12px 30px;
  }
}
@media screen and (max-width: 767px) {
  .program__item + .program__item {
    margin-top: 10px;
  }
}
.program__image, .program__desc {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.program__num {
  border-radius: 90px;
  border: 4px solid var(--color-white);
  background: var(--color-yellow);
  display: block;
  font-weight: 700;
  height: 90px;
  margin: 0 auto;
  padding-top: 1rem;
  text-align: center;
  width: 90px;
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
}
@media screen and (max-width: 767px) {
  .program__num {
    font-size: 0.812rem;
    line-height: 1.05;
    height: 50px;
    margin: auto 0;
    padding: 0.65em 0 0;
    width: 50px;
    top: 0;
    right: auto;
    bottom: 0;
    left: -25px;
  }
}
.program__num span {
  font-size: 1.75rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .program__num span {
    font-size: 0.812rem;
  }
}
.program__image {
  height: 90px;
  margin: 0 auto 6px;
}
@media screen and (max-width: 767px) {
  .program__image {
    height: auto;
    width: 72px;
  }
}
.program__image img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .program__image img {
    height: auto;
  }
}
.program__desc {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .program__desc {
    display: block;
    font-size: 1rem;
    margin: 0 0 0 10px;
    text-align: left;
  }
}
.program__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--lineHeight02);
}
.program__price {
  background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
  color: var(--color-blue);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1rem;
  padding: 0 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .program__price {
    display: inline-block;
    font-size: 1.75rem;
    margin-top: 4px;
  }
}
.program__price, .program__sup {
  color: var(--color-black);
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
}
.program__cashBack {
  color: var(--color-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .program__cashBack {
    font-size: 0.9rem;
    margin-top: 2px;
  }
}
.program__sub01 {
  font-size: 1.5rem;
}
.program__sub02 {
  font-size: 0.875rem;
}
.program__point {
  font-size: 0.625rem;
}

.program-detail {
  margin: 16px auto 50px;
  max-width: 608px;
}
.program-detail__item {
  margin-bottom: 27px;
}
.program-detail__item:last-child {
  margin-bottom: 0;
}
.program-detail__ttl {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .program-schedule img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .new_pg {
    padding-top: 10px;
    width: 70%;
  }
}

.foot-note {
  color: #686868;
  padding: 0 0 20px 1em;
  position: relative;
}
.foot-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* ACCORDION */
.toggle {
  display: none;
}

.Label {
  /*タイトル*/
  display: block;
}
.Label::before {
  /*タイトル横の矢印*/
  content: "";
  width: 32px;
  height: 22px;
  background: url(../image/arw.svg) center/cover no-repeat;
  position: absolute;
  top: calc(50% - 11px);
  right: 48px;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .Label::before {
    height: 14px;
    width: 18px;
    top: calc(50% - 7px);
    right: 20px;
  }
}
.Label:nth-of-type(n + 2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .Label:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}

.Label,
.content.accordion__content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content.accordion__content {
  /*本文*/
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

.toggle:checked + .Label + .content.accordion__content {
  /*開閉時*/
  height: auto;
  max-height: 5000px;
  padding: 0;
  transition: all 0.3s;
  margin-top: -4px;
}

.toggle:checked + .Label::before {
  transform: rotate(0) !important;
}

.accordion {
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .accordion {
    margin: 60px auto 0;
  }
}
.accordion__title {
  border: 4px solid var(--color-black);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: var(--fontSize-lead);
  font-weight: bold;
  padding: 20px 110px 20px 48px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion__title {
    border: 3px solid var(--color-black);
    font-size: 1.125rem;
    padding: 16px 32px;
  }
}
.accordion__title02 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .accordion__title02 {
    font-size: 1rem;
  }
}
.accordion__inner {
  border: 4px solid var(--color-black);
  border-radius: 16px;
  padding: 40px 60px;
}
@media screen and (max-width: 767px) {
  .accordion__inner {
    border: 3px solid var(--color-black);
    padding: 20px;
  }
}

* + .accordion__title02 {
  margin-top: 1.25em;
}

.moreover {
  height: 32px;
  margin-bottom: 8px;
}

.stage__image {
  max-width: 580px;
  margin: 0 auto;
}

.birthday__image {
  max-width: 580px;
  margin: 0 auto;
}

.point__list {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__item {
    width: 48%;
  }
}
.point__image {
  height: 70px;
  margin: 10px auto 24px;
}
@media screen and (max-width: 767px) {
  .point__image {
    height: 40px;
    margin: 10px auto;
  }
}
.point__note {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .point__note {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: 1rem;
  }
}

.card__list {
  margin: 20px auto 80px;
}
@media screen and (max-width: 767px) {
  .card__list {
    margin: 0 auto 20px;
  }
}

.use__list {
  font-weight: bold;
}

.other__list {
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .other__list {
    flex-direction: column;
  }
}
.other__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  background: var(--color-white);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other__item {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .other__item + .other__item {
    margin-top: 10px;
  }
}
.other__image {
  height: 90px;
  max-width: 110px;
  margin: 0 auto 6px;
}
@media screen and (max-width: 767px) {
  .other__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .other__image img {
    max-height: 60px;
  }
}
.other__image sup {
  font-size: 0.75rem;
  padding-left: 0.4em;
}
@media screen and (max-width: 767px) {
  .other__title {
    flex: 1;
    font-size: 1rem;
    margin-left: 0.75em;
    line-height: 1.3;
    text-align: left;
  }
}

/* CONTACT */
.contact {
  padding: 32px 0;
  background: var(--color-gray);
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 24px 0;
  }
}
.contact__title {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1rem;
  }
}
.contact__linkArea {
  display: flex;
  justify-content: center;
}
.contact__linkArea li {
  padding-right: 2%;
}
.contact__linkArea li:last-child {
  padding-right: 0;
}
.contact__link {
  color: var(--color-blue);
  font-size: 20px;
}
.contact__tel {
  color: var(--color-blue);
  display: inline-block;
  font-weight: bold;
  font-size: var(--fontSize-lead);
  line-height: var(--lineHeight01);
  margin: 20px auto;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__tel {
    margin: 10px auto 16px;
  }
}
.contact__tel::before {
  background: url(../image/tel.svg) center/cover no-repeat;
  content: "";
  height: 0.9em;
  width: 0.9em;
  position: absolute;
  left: 0;
  top: calc(50% - 0.45em);
}
@media screen and (max-width: 767px) {
  .contact__info {
    font-size: 0.75rem;
  }
}

/* FOOTER */
.footer {
  padding: 64px 0 110px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 120px;
  }
}
.footer__logo {
  height: 26px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    height: 22px;
    text-align: center;
  }
}
.footer__logo + p {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .footer__logo + p {
    font-size: 0.75rem;
    text-align: center;
  }
}
.footer__list {
  margin: 12px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__list {
    font-size: 0.75rem;
    justify-content: center;
    margin: 20px auto 0;
  }
}
.footer__item a {
  color: inherit;
  text-decoration: none;
}
.footer__item a:hover {
  color: var(--color-blue);
  opacity: 1;
}
.footer__item + .footer__item {
  padding-left: 1em;
  margin-left: 1em;
  position: relative;
}
.footer__item + .footer__item::before {
  background: #F0F0F0;
  border-radius: 2px;
  content: "";
  height: 1em;
  width: 2px;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
}
.footer__copyright {
  margin-top: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.687rem;
    text-align: center;
  }
}

.outline-list__item {
  border-top: 1px solid #DDD;
  display: flex;
  padding: 11.5px 0 16.5px;
}
@media screen and (max-width: 767px) {
  .outline-list__item {
    flex-direction: column;
  }
}
.outline-list__item:first-child {
  border-top: none;
}
.outline-list__item:last-child {
  border-bottom: 1px solid #DDD;
}
.outline-list__ttl {
  padding-right: 20px;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .outline-list__ttl {
    margin-bottom: 12px;
    width: 100%;
  }
}
.outline-list__desc {
  width: 570px;
}
@media screen and (max-width: 767px) {
  .outline-list__desc {
    width: 100%;
  }
}
.outline-list__desc span {
  color: #686868;
  font-size: var(--fontSize-note);
}
.outline-list__link {
  color: var(--color-black);
  position: relative;
}
.outline-list__arw {
  display: inline-block;
  padding-left: 10px;
}
.outline-list__notes {
  color: #686868;
}

.list-01__item {
  margin-bottom: 12px;
  padding-left: 1em;
  position: relative;
}
.list-01__item::before {
  background: var(--color-blue);
  border-radius: 50px;
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.list-01__item:last-child {
  margin-bottom: 0;
}
.list-01 .dotList {
  padding-top: 4px;
}

.dotList__item {
  padding-left: 1em;
  position: relative;
}
.dotList__item::before {
  background: #000;
  border-radius: 50px;
  content: "";
  height: 4px;
  width: 4px;
  position: absolute;
  top: 0.7em;
  left: 0;
}

/* PAGETOP */
.page-top a {
  background: #fff;
  border: solid 3px var(--color-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  width: 64px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-top a {
    height: 54px;
    width: 54px;
    right: 24px;
    bottom: 24px;
  }
}
.page-top a .pagetop__arrow {
  background: url(../image/arw.svg) center/cover no-repeat;
  height: 16px;
  width: 22px;
}

/* TUIBI */
.tuibi {
  margin: 0 auto;
  padding: 0;
  z-index: 100;
}

.tuibi .modal__open-label {
  margin: 0 auto;
  padding: 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 100;
  width: 70%;
  max-width: 580px;
  height: 74px;
  display: block;
  margin: 0 auto;
  background: var(--color-pink);
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  text-decoration: none;
  padding: 0.4em;
  border-radius: 74px;
}

/* MODAL */
.modal__wrap input {
  display: none;
}

.modal__open-label,
.modal__close-label {
  cursor: pointer;
}

.modal__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: 0.8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #2589d0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1em;
  position: relative;
}

.modal__open-label::before {
  content: "";
  position: absolute;
  left: 0.4em;
  top: -1.2em;
  width: 72px;
  height: 72px;
  background: url(../image/balloon.svg) center/cover no-repeat;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal__open-input:checked + label + input + .modal {
  display: block;
  -webkit-animation: modal-animation 0.6s;
  animation: modal-animation 0.6s;
}

@-webkit-keyframes modal-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .modal__open-label {
    max-width: 90%;
    padding: 0.94em 2.1em 0.94em 2.6em;
  }
  .modal__close-label {
    top: 10px;
    right: 10px;
  }
  .tuibi .modal__open-label {
    font-size: 1.25rem;
    height: 64px;
    padding: 0.6em;
    left: 24px;
    right: auto;
    bottom: 20px;
    line-height: 1.9;
    width: calc(100% - 120px);
  }
  .modal__open-label::before {
    width: 54px;
    height: 54px;
    left: 0;
  }
}
/* 注意事項部分追加 */
.attencion_words {
  text-align: center;
  color: white !important;
}

@media screen and (max-width: 767px) {
  .attencion_words {
    font-size: 0.75em;
  }
}
/* インデント調整 */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}/*# sourceMappingURL=style.css.map */