@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #4D4D4D;
  --color-white: #ffffff;

  --color-primary: #51B1BF;
  /* --color-bg: rgb(243 197 23 / 15%); */
  --color-bg: #fdf7e3;
  --color-sec-bg: #FCEFC0;

  --noto: "Noto Sans JP", sans-serif;


  --header: 14rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto);
  font-weight: 500;
  /* background: var(--color-bg); */
  color: var(--color-black);
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

p {
  font-size: 1.6rem;
  line-height: 1.875;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* wrap */
.wrap {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* hd */
h2.hd {
  width: 30rem;
  height: 13rem;
  display: grid;
  place-content: center;
  background: #CEE9ED;
  border-radius: 0.5rem;
  margin: 0 auto;
}

h2.hd.wt {
  background: var(--color-white);
}

h2.hd img {
  width: auto;
  max-width: unset;
  height: 7rem;
  margin: 0 auto;
}

h2.hd.single img {
  height: 3.3rem;
}

@media screen and (max-width:767px) {
  html {
    /* 375px 10px */
    font-size: 2.666666vw;
  }

}

/*================================================
 *  section / カラム
 ================================================*/

/* main_bg */
#main_bg {
  position: relative;
}

#main_bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  z-index: -1;
}


main#clm_contents {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

#pc_left,
#pc_right {
  width: calc((100% - 375px) / 2);
  position: relative;
  height: 100vh;
}

/* pc_left */
#pc_left {
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pc_left h1 {
  width: 27rem;
}

.pc_left-inner {
  position: fixed;
  height: auto;
}

#pc_left .nav_menu {
  display: none;
}

/* pc_right */
#pc_right {
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pc_right .nav_menu {
  position: fixed;
}

/* .nav_menu */
.nav_menu li img {
  width: auto;
  max-width: unset;
  height: 10rem;
  margin: 0 auto;
}

.nav_menu li:not(:last-child) {
  margin-bottom: 2rem;
}

.nav_menu li:first-child {
  margin-bottom: 5.5rem;
}

.nav_menu li:first-child img {
  height: 3rem;
}

.nav_menu li a {
  position: relative;
  display: block;
  width: auto;
  height: auto;
}

.nav_menu li img.hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .4s;
}

.nav_menu li a:hover img.hover {
  opacity: 1;
}


/* contents */
#contents {
  background: #fff;
  width: 375px;
  height: 100%;
  min-height: 100vh;
  z-index: 10;
  overflow: hidden;
  /* margin: 0 auto; */
}

section {
  position: relative;
  padding-bottom: 4rem;
}

.section {
  padding-top: 4rem;
}

@media screen and (max-width:1023px) {

  main#clm_contents {
    max-width: 790px;
  }

  #pc_left {
    width: calc(100% - 375px);
    position: relative;
    height: 100vh;
  }


  #pc_right {
    display: none;
  }

  #pc_left .nav_menu {
    display: block;
  }
}

@media screen and (max-width:767px) {
  #pc_left {
    display: none;
  }

  #contents {
    width: 100%;
  }
}

/*================================================
 *  btnArea
 ================================================*/
.btnArea a {
  width: 11.5rem;
  height: 11.5rem;
  background: var(--color-primary);
  border-radius: 100000px;
  margin: 0 auto;
  display: grid;
  place-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  text-align: center;
  font-weight: 900;
}

.btnArea a:hover {
  background: #2D89B2;
  color: var(--color-primary);
}

@media screen and (max-width:767px) {}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  /* left: 0; */
  width: 100%;
  z-index: 100;

  left: 50%;
  transform: translateX(-50%);
}


.nav_inner {
  position: relative;
  width: 375px;
  background: var(--color-white);
  padding: 2rem 2rem 2.5rem;
  margin: 0 auto;
}

.nav_inner::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/yellow_line.png);
  width: 100%;
  height: 1.45rem;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

/* nav_left */
.nav_left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem 0;
}

.nav_left p {
  font-size: 1.4rem;
  color: var(--color-primary);
}

.nav_left h1 {
  width: 18.8rem;
}

.nav_left .navBtn {
  width: 11rem;
}

/* btn */
.navBtn a {
  position: relative;
  display: block;
  width: auto;
  height: auto;
}

.navBtn a img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .4s;
}

.navBtn a:hover img.hover {
  opacity: 1;
}

.nav_right ul {
  display: none;
}

@media screen and (max-width:1023px) {
  header {
    max-width: 790px;
    margin: 0 auto;
  }

  .nav_inner {
    margin: 0;
    margin-left: calc(100% - 375px);
  }

  #pc_left h1 {
    margin-bottom: 6rem;
  }

  .nav_menu li:first-child {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width:767px) {

  .nav_inner {
    margin: 0;
    width: 100%;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #fdf7e3;
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    padding: 10rem 0 0;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  nav.gnav.global__nav ul {
    display: block;
    text-align: center;
  }



  .hamburger {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    width: 3rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 300;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    /* left: 50%; */
    left: 0;
    width: 100%;
    height: 0.4rem;
    border-radius: 1000px;
    background-color: var(--color-primary);
    transition: all .2s ease-out;
    /* transform: translateX(-50%); */
  }

  .hamburger__line--1 {
    top: 20%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 80%;
    width: 66%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: rotate(35deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: rotate(-35deg);
    top: 50%;
    width: 100%;
  }

}

/*================================================
 *  mainVisual
 ================================================*/
#mainVisual {
  background: var(--color-sec-bg);
  z-index: 1;
  margin-top: 14rem;
  padding-bottom: 3rem;
  padding-top: 27rem;
}

#mainVisual::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/mv.jpg);
  width: 100%;
  height: 40rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#mainVisual::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/yellow_line.png);
  width: 100%;
  height: 1.45rem;
  bottom: -0.725rem;
  left: 50%;
  transform: translateX(-50%);
}

#mainVisual h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 3rem;
  position: relative;
  bottom: -3rem;
}

.mv_catch {
  display: block;
}

.mv_catch01 {
  position: absolute;
  left: 42%;
  top: -4rem;
  transform: translateX(-50%);
  z-index: 1;
  width: 28rem;
}

.mv_catch02 {
  width: 30.4rem;
  background: var(--color-white);
  height: 13rem;
  display: grid;
  place-content: center;
  border-radius: 0.5rem;
}

.mv_catch02 img {
  display: block;
  width: 22rem;
  margin: 0 auto;
}

#mainVisual p {
  text-align: center;
  margin: 3rem 0 2.4rem;
}

.mv_ill {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/mv_ill.png);
  width: 11.3rem;
  height: 16rem;
  left: 2rem;
  top: 4rem;
}

@media screen and (max-width:767px) {}

/*================================================
* about
================================================*/
#about .read {
  text-align: center;
  margin: 3rem 0;
}

#about dt h3 {
  display: flex;
  align-items: center;

  gap: 1rem;
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

#about dt .num {
  font-size: 1.6rem;
  text-align: center;
  background: #F3C517;
  color: var(--color-white);
  width: 7.3rem;
  height: 7.3rem;
  min-width: 7.3rem;
  border-radius: 10000px;
  display: grid;
  place-content: center;
}

#about dt .num span {
  font-size: 2rem;
}

#about dd {
  margin-bottom: 3rem;
}

#about dd h4 {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}

#about dd h4 img {
  width: auto;
  max-width: unset;
  height: 2rem;
  margin: 0 auto;
  display: block;
}

#about dd h4.middle img {
  height: 2.2rem;
}

#about dd ul {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 1.5rem;
}

#about dd ul li {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 1.9rem;
  height: 9rem;
  display: grid;
  place-content: center;
  border-radius: 0.5rem;
}

#about dd .about_txt02 {
  position: relative;
  height: 26.2rem;
  z-index: 1;
  margin-top: 1rem;
}

#about dd .about_txt02::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/about_bg.jpg);

  width: calc(100% + 4rem);
  left: -2rem;
  top: 0;
  height: 100%;
  z-index: -1;
}

#about dd .about_txt02 p {
  text-align: center;
  padding-top: 2.5rem;
  padding-left: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width:767px) {}

/*================================================
* flow
================================================*/
#flow {
  background: var(--color-sec-bg);
}

#flow::before,
#flow::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/yellow_line.png);
  width: 100%;
  height: 1.45rem;
  bottom: -0.725rem;
  left: 50%;
  transform: translateX(-50%);
}

#flow::before {
  top: -0.25rem;
  bottom: auto;
}

.flow_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
  position: relative;
}

.flow_list-side {
  position: absolute;
  width: 2.8rem;
  height: 23.5rem;
  top: 0;
  right: -4rem;
}

.flow_list li {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 4rem;
}

.flow_list li:last-child {
  margin-top: 6rem;
}

.flow_list li:not(:last-child):before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/flow_arrow01.png);
  width: 1.7rem;
  height: 1.65rem;
  bottom: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.flow_list li:nth-child(2):before {
  background-image: url(../images/flow_arrow02.png);
}

.flow_list li:nth-child(3):before {
  background-image: url(../images/flow_arrow03.png);
}

.flow_list li:nth-child(4):before {
  background-image: url(../images/flow_arrow04.png);
  width: 2.2rem;
  height: 2.15rem;
  bottom: -4rem;
}



.flow_list li .num {
  display: grid;
  place-content: center;
  color: var(--color-white);
  background: var(--color-primary);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1000px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2rem;
}

.flow_list li:last-child p {
  width: 17rem;
  margin: 0 auto;
  position: relative;
}

.flow_list li:last-child p::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/flow_kira.png);
  width: 5.8rem;
  height: 5rem;
  top: -2rem;
  right: -7rem;
}

@media screen and (max-width:767px) {}

/*================================================
* plan
================================================*/
.plan_list {
  position: relative;
}

.plan_list-side {
  position: absolute;
  width: 10rem;
  height: 32.5rem;
  top: 0;
  right: -1rem;
}

.plan_item {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  margin-top: 3rem;
  position: relative;
}

.plan_item:not(:last-of-type):after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/blue_line.png);
  width: 26.5rem;
  height: 0.4rem;
  bottom: -1.725rem;
  left: 50%;
  transform: translateX(-50%);
}

.plan_item h3 {
  background: var(--color-primary);
  color: var(--color-white);
  width: 5.3rem;
  height: 5.3rem;
  min-height: 5.3rem;
  border-radius: 1000px;
  display: grid;
  place-content: center;
}

.plan_item div {
  width: 10rem;
}

.plan_item div span {
  font-size: 1.4rem;
}

.plan_item div img {
  max-width: unset;
  width: auto;
  height: 4.5rem;
  margin: 0 auto;
}

.plan_notes {
  margin-top: 11rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}

.plan_notes div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.plan_notes p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  font-weight: 400;
}

@media screen and (max-width:767px) {}

/*================================================
* ft
================================================*/
.ft_intro {
  position: relative;
  height: 30rem;
  z-index: 1;
}

.ft_intro::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/ft_bg.jpg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.ft_intro h2 {
  width: 32.6rem;
  margin: 0 auto;
  position: relative;
  top: -2.5rem;
}

footer h3 {
  width: 28rem;
  margin: 3rem auto;
}

footer h1 {
  width: 14rem;
  margin: 3rem auto;
}

.ft_link {
  text-align: center;
  padding: 2rem 0 6rem;
}

.ft_link a {
  display: inline-block;
  font-size: 1.4rem;
  margin: 1.5rem;
  font-weight: 400;
  border-bottom: 1px solid transparent;
}

.ft_link a:hover {
  border-bottom: 1px solid var(--color-black);
}

footer .copy {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 6rem;
  font-weight: 400;
}

@media screen and (max-width:767px) {}

/*================================================
* form
================================================*/
#form,
#policy {
  margin-top: 14rem;
}

#form::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/yellow_line.png);
  width: 100%;
  height: 1.45rem;
  bottom: -0.725rem;
  left: 50%;
  transform: translateX(-50%);
}

#form h2 img {
  width: auto;
  max-width: unset;
  height: 3rem;
  margin: 0 auto;
}

#form .read {
  margin: 2rem 0;
  text-align: center;
}

.form_list {
  font-size: 1.6rem;
}

.form_list dt {
  margin-bottom: 1rem;
  margin-top: 2rem;
}


.form_list dt sup {
  background: #FF0042;
  color: var(--color-white);
  font-size: 1.4rem;
  margin-left: 2rem;
  padding: 0 1rem;
  border-radius: 2px;
}

.form_list select,
.form_list input,
.form_list textarea {
  display: block;
  background: #BDE1E7;
  border-radius: 0.5rem;
  width: 100%;
  height: 5rem;
  padding: 0.5rem 1.5rem;

  font-weight: 400;
  font-size: 1em;
  font-family: var(--noto);
  color: var(--color-black);
}

.form_list select {
  padding-right: 0;
}

.form_list textarea {
  height: 16rem;
  padding: 1rem;
}

.form_list input::placeholder {
  color: var(--color-white);
}

.form_list .select-box {
  position: relative;
}

.form_list .select-box::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/select_arrow.png);
  width: 1.5rem;
  height: 0.7rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.form_list .policy_ttl {
  margin-top: 5rem;
}

.policyArea .policy_inner {
  height: 13rem;
  overflow-y: scroll;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #BCBCBC;
  margin-bottom: 2rem;
}

.policyArea .policy_inner h3,
.policyArea p {
  font-size: 1.4rem;
}

.policyArea p {
  margin-bottom: 2rem;
}

.policyArea .policy_inner ul li {
  font-size: 1.4rem;
  position: relative;
  padding-left: 1em;
}

.policyArea .policy_inner ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.policyArea .policy_inner p a {
  color: var(--color-primary);
}

.form_list input[type="radio"] {
  display: inline-block;
  width: 1.5rem;
  margin-right: 1rem;
}

.form_list label:not(:first-of-type) {
  margin-left: 2rem;
}

.form_list label {
  cursor: pointer;
}

.form_list .submitBtn {
  width: 11.5rem;
  height: 11.5rem;
  background: var(--color-primary);
  border-radius: 100000px;
  margin: 3rem auto 0;
  display: grid;
  place-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  text-align: center;
  font-weight: 900;
  transition: .4s;
}

.form_list .submitBtn:hover {
  background: #2D89B2;
  color: var(--color-primary);
}

p.error {
  color: #FF0042;
  font-weight: bold;
  margin: 0.5em 0 0 0;
  font-size: 1.4rem;
}

@media screen and (max-width:767px) {

  .form_list select,
  .form_list input,
  .form_list textarea {
    font-size: 16px;
    min-height: 50px;
  }
}

/*================================================
* 
================================================*/
#policy ul {
  margin: 2rem 0;

}

#policy ul li {
  font-size: 1.6rem;
  padding-left: 1em;
  position: relative;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#policy ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

#policy ul li a:hover {
  color: var(--color-primary);
}

@media screen and (max-width:767px) {}

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

@media screen and (max-width:767px) {}

/*================================================
* ani
================================================*/





/* fadeup */
.fadeup {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 0.6s ease;
  transition-delay: 0.4s;
}

.fadeup.on,
.on .fadeup {
  opacity: 1;
  transform: translateY(0px);
}


.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}

.delay04 {
  transition-delay: 0.4s;
}

.delay05 {
  transition-delay: 0.5s;
}

.delay06 {
  transition-delay: 0.6s;
}

.delay07 {
  transition-delay: 0.7s;
}

.delay08 {
  transition-delay: 0.8s;
}

.delay08 {
  transition-delay: 0.8s;
}

.delay09 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.delay11 {
  transition-delay: 1.1s;
}



/* fadeLeft-width */
.fadeTop-height span {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 1s ease;
  /* transition-delay: .3s; */
  transition-delay: 1.6s;
}

.fadeTop-height.on span {
  height: 100%;
}

.fadeTop-height span img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width:767px) {}