@charset "UTF-8";
/* ************************************************************************
*	#container
************************************************************************ */
#container {
    min-width: 1000px;
}

@media screen and (max-width : 600px){
    #container {
        min-width: 100%;
        background-size: 10%;
    }

}

/* ************************************************************************
*	#common parts
************************************************************************ */
#container .row{
  display: flex;
}
@media screen and (max-width : 600px){
  #container .row{
    flex-direction: column;
  }
}

/* #container a:hover{
  opacity: 0.8;
} */
#sec01 a:hover,
#sec02 a:hover,
#sec04 a:hover,
#sec04 a:hover,
#sec05 a:hover{
  opacity: 0.8;
}

#container h2{
  position: relative;
  font-size: 40px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

#container h2 span{
  display: block;
  font-size: 24px;
}
#container h2 span.space {
  display: inline-block;
  width: 1em;
}
#container h2:before{
  content: "";
  display: block;
  position: absolute;
  top: -93px;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width : 600px){
  #container h2{
    font-size: 6.67vw;
    letter-spacing: 0.05em;
  }
  #container h2 span{
    margin-bottom: 2vw;
    font-size: 4.53vw;
    letter-spacing: 0.1;
  }
  #container h2 span.space {
    display: none;
  }
  #container h2:before{
    top: -28vw;
  }
}

#container .btn-area{
  text-align: center;
}
#container .btn-area a{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  margin: 0 auto;
  border-radius: 15px;
  width: 480px;
  height: 78px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s 0s ease;
}
#container .btn-area a:hover{
  opacity: 0.7;
}
#container .btn-area a span{
  font-size: 14px;
  letter-spacing: 0.05em;
}
#container .btn-area a:after{
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: transparent #fff #fff transparent;
}
#container .btn-area a.btn-blue{
  background-color: #0077bf;
}
#container .btn-area a.btn-pink{
  background-color: #e7327a;
}
#container .btn-area a.btn-white{
  border: 2px solid #0077bf;
  background-color: #fff;
  color: #0077bf;
}
#container .btn-area a.btn-white:after{
  border-color: transparent #0077bf #0077bf transparent;
}
@media screen and (max-width : 600px){
  #container .btn-area a{
    width: 100%;
    height: 21.33vw;
    font-size: 4.27vw;
  }
  #container .btn-area a:after{
    right: 5vw;
  }
  #container .btn-area a span{
    font-size: 3.47vw;
  }
}

/* ************************************************************************
*	#mv-area
************************************************************************ */
#mv-area{
  position: relative;
}
#mv-area h1 {
  position: absolute;
  bottom: 36px;
  left: 36px;
  width: 34vw;
  z-index: 2;
}
#mv-area img{
  margin: 0 auto;
}
#mv-area .mv_slider{
  background-color: #FFFFFF;
}
#mv-area .mv-btn{
  position: absolute;
  right: -20px;
  bottom: 30px;
  padding: 21px 24px 24px;
  border-radius: 20px;
  background-color: #e7327a;
  z-index: 2;
}
#mv-area .mv-btn .mv-btn-text{
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
}
#mv-area .mv-btn .mv-btn-date{
  margin-top: 5px;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}
#mv-area .mv-btn .mv-btn-date span{
  position: relative;
  display: inline-block;
  margin-right: 23px;
  padding: 0 6px 0 13px;
  height: 30px;
  background-color: #fff;
  font-size: 16px;
  color: #e7327a;
}
#mv-area .mv-btn .mv-btn-date span:after{
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #fff;
}

@media screen and (max-width : 600px){
  #mv-area{
    background-color: #f0f8fc;
  }
  #mv-area h1 {
    bottom: 5.13vw;
    left: 4.5vw;
    width: 67vw;
  }
  #mv-area .mv-btn{
    position: relative;
    right: 0;
    top: 0;
    padding: 4.53vw 4.07vw 5.07vw;
    border-radius: 0;
    width: 100%;
  }
  #mv-area .mv-btn .mv-btn-text{
    font-size: 4.71vw;
    letter-spacing: 0;
  }
  #mv-area .mv-btn .mv-btn-date{
    margin-top: 1.67vw;
    font-size: 4.28vw;
  }
  #mv-area .mv-btn .mv-btn-date span{
    margin-right: 6vw;
    padding: 0.5vw 2vw 0 1.93vw;
    height: 6.66vw;
    font-size: 3.53vw;
  }
  #mv-area .mv-btn .mv-btn-date span:after{
    right: -3.36vw;
    border-width: 3.33vw 0 3.33vw 3.33vw;
  }
}

#mv-area .floating-btn{
  position: fixed;
  bottom: 140px;
  right: -300px;
  padding: 18px 80px 18px 39px;
  border: 4px solid #ffa4ab;
  border-radius: 80px;
  background-color: #e7327a;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  z-index: 4;
  transition: all 0.3s 0s ease;
}
#mv-area .floating-btn + .floating-btn{
  bottom: 30px;
}
#mv-area .floating-btn.active{
  right: -73px;
}
#mv-area .floating-btn:hover{
  right: -53px;
  opacity: 1;
}

@media screen and (max-width : 600px){
  #mv-area .floating-btn{
    position: relative;
    bottom: 0;
    right: 0;
    display: block;
    margin: 3.6vw auto 0;
    padding: 4.57vw 0;
    width: 90.67%;
    border: 3px solid #ffa4ab;
    border-radius: 100px;
    font-size: 4vw;
    text-align: center;
    font-weight: bold;
  }
  #mv-area .floating-btn:hover{
    right: 0;
  }
  #mv-area .floating-btn.active{
    right: 0;
  }
}

/* ************************************************************************
*	#anchor-area
************************************************************************ */
#anchor-area{
  background-color: #0078c0;
}
#anchor-area .inner{
  margin: 0 auto;
  padding: 20px 0;
  width: 70%;
  max-width: 997px;
  text-align: center;
}
#anchor-area .anchor-box{
  display: flex;
  justify-content: center;
  align-items: center;
}
#anchor-area .anchor-box li{
  position: relative;
  border-left: 1px solid #fff;
  width: calc(33.333% - 4px);
  font-size: 16px;
  letter-spacing: 0.12em;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s 0s ease;
}
#anchor-area .anchor-box li:last-of-type{
  border-right: 1px solid #fff;
}
#anchor-area .anchor-box li:hover{
  opacity: 0.8;
}
#anchor-area .anchor-box li:after{
  content: "";
  position: absolute;
  display: block;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: transparent #fff #fff transparent;
}
#anchor-area .anchor-box li a{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 12px 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#anchor-area .anchor-box li a:hover{
  opacity: 1;
}
#anchor-area .anchor-box li span{
  margin: 0 3px -12px 0;
  font-size: 12px;
}

@media screen and (max-width : 600px){
  #anchor-area{
    background-color: #f0f8fc;
  }
  #anchor-area .inner{
    padding: 5.33vw 0;
    width: 90.67vw;
    max-width: none;
  }
  #anchor-area .anchor-box{
    display: flex;
    flex-direction: column;
  }
  #anchor-area .anchor-box li{
    margin-bottom: 1.47vw;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 13.33vw;
    font-size: 3.58vw;
    letter-spacing: 0.05em;
    background-color: #0077bf;
  }
  #anchor-area .anchor-box li:last-of-type{
    margin: 0;
    border: none
  }
  #anchor-area .anchor-box li:hover{
    opacity: 1;
  }
  #anchor-area .anchor-box li:after{
    top: 50%;
    left: unset;
    right: 3vw;
    bottom: unset;
    transform: translate(0 ,-50%) rotate(45deg);
    width: 2.7vw;
    height: 2.7vw;
    border-width: 1px;
  }
  #anchor-area .anchor-box li a{
    flex-direction: row;
    padding: 3vw 0;
  }
  #anchor-area .anchor-box li span{
    margin-top: -3vw;
    font-size: 3.58vw;
  }

}

/* ************************************************************************
*	#sec01
************************************************************************ */
#sec01{
  padding: 178px 0 74px;
  background-color: #f0f8fc;
}
#sec01 h2:before{
  width: 84px;
  height: 79px;
  background-image: url(../images/icon_pre_entry.svg);
}
#sec01 .ttl{
  text-align: center;
}
#sec01 h3{
  display: inline-block;
  margin-top: 27px;
  padding-bottom: 10px;
  border-bottom: 3px solid #0078c0;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: 700;
}
#sec01 .merit-box{
  justify-content: center;
  align-items: stretch;
  margin: 63px auto 0;
  width: 70%;
  max-width: 1000px;
}
#sec01 .merit-box li{
  position: relative;
  padding: 50px 10px 40px;
  border-radius: 20px;
  width: 32%;
  background-color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}
#sec01 .merit-box li:not(:first-of-type){
  margin-left: 20px;
}
#sec01 .merit-box li:after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}
#sec01 .merit-box li:first-of-type:after{
  background-image: url(../images/merit_01.svg);
}
#sec01 .merit-box li:nth-of-type(2):after{
  background-image: url(../images/merit_02.svg);
}
#sec01 .merit-box li:nth-of-type(3):after{
  background-image: url(../images/merit_03.svg);
}
#sec01 .merit-box li span{
  color: #0078c0;
}

@media screen and (max-width : 600px){
  #sec01{
    padding: 22.7vw 6vw 11.73vw;
  }
  #sec01 h2:before{
    top: -19vw;
    width: 18.13vw;
    height: 16.93vw;
  }
  #sec01 h3{
    margin-top: 6.13vw;
    padding-bottom: 1.3vw;
    border-width: 2px;
    font-size: 3.58vw;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
  #sec01 .merit-box{
    flex-direction: column;
    align-items: center;
    margin: 16vw auto 0;
    width: 100%;
    max-width: none;
  }
  #sec01 .merit-box li{
    padding: 11.6vw 2vw 8.13vw;
    border-radius: 10px;
    width: 100%;
    font-size: 4.53vw;
    line-height: 1.4;
  }
  #sec01 .merit-box li:not(:first-of-type){
    margin: 12.67vw 0 0;
  }
  #sec01 .merit-box li:after{
    width: 17.6vw;
    height: 17.6vw;
  }
}

/* ************************************************************************
*	#sec02
************************************************************************ */
#sec02{
  padding: 120px 0 65px;
}
#sec02 h2:before{
  top: -55px;
  width: 124px;
  height: 57px;
  background-image: url(../images/icon_flow.svg);
}
#sec02 h2 span{
  display: inline-block;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid #0078c0;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: 700;
}
@media screen and (max-width : 600px){
  #sec02{
    padding: 21.33vw 6vw 9.47vw;
  }
  #sec02 h2:before{
    top: -12vw;
    width: 26.8vw;
    height: 12.27vw;
  }
}

/* flow */
#sec02 .box {
  display:-webkit-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#sec02 .box .box-inner {
  width: 23%;
  display: -webkit-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #f0f8fc;
  border-radius: 10px;
  position: relative;
}
#sec02 .box .box-inner:after {
  content: "";
  width: 0;
  height: 0;
  border-width: 15px 0 15px 18px;
  border-width: clamp(1.2rem, 1.5vw, 1.5rem) 0 clamp(1.2rem, 1.5vw, 1.5rem) clamp(1.5rem, 1.8vw, 1.8rem);
  border-color: transparent transparent transparent #ff9600;
  border-style: solid;
  position: absolute;
  bottom: 42%;
  right: -9%;
}
#sec02 .box .box-inner:last-child:after {
  display: none;
}
#sec02 .box .box-inner h3 {
  display: -webkit-box;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 74px;
  padding: 13px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}
#sec02 .box .box-inner h3 span.big {
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  color: #0075be;
  font-size: 28px;
  position: relative;
  z-index: 0;
}
#sec02 .box .box-inner h3 span.big:after {
  content: "";
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50px;
  position: absolute;
  left: 0;
  z-index: -1;
}
#sec02 .box .box-inner h3 p {
  width: 85%;
  margin-left: 15px;
  font-size: 1.8rem;
  font-size: clamp(1.7rem, 1.2vw, 1.8rem);
  line-height: 1.2;
  text-align: left;
  position: relative;
}
#sec02 .text-box {
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#sec02 .text-box .icon {
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 25%;
  max-width: 60px;
  margin: 0 auto;
  padding: 0 5px;
}
#sec02 .text-box .txt {
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 75%;
  padding: 14px 0 15px;
  color: #0075be;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 1.5;
  border-left: 1px dashed #d6d6d6;
}
#sec02 .text-box .txt p {
  padding: 0 8%;
  letter-spacing: 0.1rem;
  font-weight: 700;
}
#sec02 .btn-area{
  margin-top: 48px;
}
#sec02 .btn-area a{
  margin-top: 12px;
}

@media screen and (max-width : 1123px){

  #sec02 .box .box-inner h3 p br.pc {
      display: none;
  }
  #sec02 .box .box-inner:after {
      right: -2.1vw;
  }

}
@media all and (-ms-high-contrast: none) {
  #sec02 .box .box-inner h3 span.big:after {
      top: -23%;
  }
}
@media screen and (max-width : 600px){

  #sec02 .inner {
      max-width: 100%;
      padding: 8vw 0 13vw;
  }
  #main-ss02 #sec02 .inner {
      max-width: 100%;
      padding: 8vw 0 18vw;
  }
  #sec02 .box {
      flex-wrap: wrap;
      width: 100%;
      max-width: 100%;
      padding: 30px 0 0;
  }
  #sec02 .box .box-inner {
      width: 100%;
      margin-bottom: 45px;
  }
  #sec02 .box .box-inner:last-child {
      margin-bottom: 0;
  }
  #sec02 .box .box-inner:after {
      margin: 0 auto;
      border-width: 15px 10px 0 10px;
      border-color: #ff9600 transparent transparent transparent;
      border-style: solid;
      bottom: -30px;
      right: 0;
      left: 0;
  }
  #sec02 .box .box-inner h3 {
      height: 19vw;
      max-height: 70px;
      padding: 15px 3.5vw;
  }
  #sec02 .box .box-inner h3 p {
      margin-left: 8vw;
      line-height: 1.4;
  }
  #sec02 .box .box-inner h3 span.big {
      width: 13vw;
      max-width: 42px;
      min-width: 38px;
  }
  #sec02 .box .box-inner h3 span.big:after {
      width: 42px;
      height: 42px;
  }
  #sec02 .text-box .txt {
      align-items: center;
      width: 83%;
      min-height: 80px;
  }
  #sec02 .btn-area{
    margin-top: 7.33vw;
  }
  #sec02 .btn-area a{
    margin-top: 2.67vw;
  }
}


/* ************************************************************************
*	#sec03
************************************************************************ */
#sec03{
  padding: 160px 0 83px;
  background-color: #f0f8fc;
}
#sec03 h2:before{
  width: 54px;
  height: 82px;
  background-image: url(../images/icon_check.svg);
}
#sec03 .lead{
  margin: 48px 0 4px;
  font-size: 16px;
  text-align: center;
  line-height: 1.87;
  letter-spacing: 0.18em;
}
@media screen and (max-width : 600px){
  #sec03{
    padding: 33.33vw 6vw 11.2vw;
  }
  #sec03 h3:before{
    width: 11.87vw;
    height: 17.73vw;
  }
  #sec03 .lead{
    margin: 7.07vw 0 7.87vw;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.42;
  }
}


#sec03 .btn-area  div{
  margin-top: 22px;
}
#sec03 .btn-area .btn-blue{
  font-size: 16px;
}
@media screen and (max-width : 600px){

  #sec03 .btn-area  div{
    margin-top: 4vw;
  }
  #sec03 .btn-area .btn-blue{
    font-size: 3.73vw;
  }
}

/* card */
#sec03 .card-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 90%;
  height: 73vw;
  /* max-width: 1300px; */
}
#sec03 .card{
  display: inline-block;
  position: absolute;
  width: 37.6%;
  /* height: 342px; */
  height: 24vw;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  /* transform: translateZ(-100px); */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  perspective: 1000px;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: scale(0.76, 0.76);
}
#sec03 .card01{
  top: 0;
  left: 0;
}
#sec03 .card02{
  top: 0;
  left: 31.25%;
}
#sec03 .card03{
  top: 0;
  right: 0;
}
#sec03 .card04{
  top: 13vw;
  left: 0;
  height: 35vw;
}
#sec03 .card05{
  top: 18.5vw;
  left:  31.25%;
}
#sec03 .card06{
  top: 18.5vw;
  right: 0;
}
#sec03 .card07{
  top: 38vw;
  left: 0;
}
#sec03 .card08{
  top: 38vw;
  left:  31.25%;
}
#sec03 .card09{
  top: 38vw;
  right: 0;
}
#sec03 .card:not(:nth-of-type(3n)){
  margin-right: 17px;
}
#sec03 .card.active{
  transform: scale(1, 1);
  z-index: 3;
}
#sec03 .card:hover{
  z-index: 2;
}
#sec03 .card .side{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 6.2vw;
  border-radius: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#sec03 .card04 .side{
  padding-top: 11.2vw;
}
#sec03 .card .front{
  /* border: 8px solid #0077bf; */
  transform: rotateY(0deg);
  /* background-color: #f0f8fc; */
  background-color: transparent;
  transition: all 0.3s 0s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#sec03 .card01 .front{
  background-image: url(../images/card_01.png);
}
#sec03 .card02 .front{
  background-image: url(../images/card_02.png);
}
#sec03 .card03 .front{
  background-image: url(../images/card_03.png);
}
#sec03 .card04 .front{
  background-image: url(../images/card_04.png);
}
#sec03 .card05 .front{
  background-image: url(../images/card_05.png);
}
#sec03 .card06 .front{
  background-image: url(../images/card_06.png);
}
#sec03 .card07 .front{
  background-image: url(../images/card_07.png);
}
#sec03 .card08 .front{
  background-image: url(../images/card_08.png);
}
#sec03 .card09 .front{
  background-image: url(../images/card_09.png);
}
#sec03 .card .front:hover:before{
  /* box-shadow: 0 0 14px rgba(18,84,122,0.4); */
  -webkit-filter:inherit;
}
#sec03 .card.active .front{
  transform: rotateY(-180deg);
}
#sec03 .card .ttl{
  font-size: 2vw;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
}
#sec03 .card .front p{
  margin-top: 3.9vw;
  font-size: 1.7vw;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
#sec03 .card .front p.lines{
  margin-top: 4.3vw;
}
#sec03 .card .back{
  position: relative;
  transform: rotateY(180deg);
  /* box-shadow: 0 0 16px rgba(18,84,122,0.6); */
  -webkit-filter:drop-shadow(2px 2px 2px rgba(18,84,122,0.6));
  padding: 2vw 2vw 0;
  /* background-color: #0077bf; */
  background-color: transparent;
  background-image: url(../images/balloon_01-bgr.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#sec03 .card01 .back{
  background-image: url(../images/card_01_bg.png);
}
#sec03 .card02 .back{
  background-image: url(../images/card_02_bg.png);
}
#sec03 .card03 .back{
  background-image: url(../images/card_03_bg.png);
}
#sec03 .card04 .back{
  background-image: url(../images/card_04_bg.png);
  padding-top: 23px;
}
#sec03 .card05 .back{
  background-image: url(../images/card_05_bg.png);
}
#sec03 .card06 .back{
  background-image: url(../images/card_06_bg.png);
}
#sec03 .card07 .back{
  background-image: url(../images/card_07_bg.png);
}
#sec03 .card08 .back{
  background-image: url(../images/card_08_bg.png);
}
#sec03 .card09 .back{
  background-image: url(../images/card_09_bg.png);
}
#sec03 .card.active .back{
  transform: rotateY(0deg);
}
#sec03 .card .back p{
  margin-top: 4.9vw;
  width: 100%;
  font-size: 1.4vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  word-break: break-all;
}
#sec03 .card04 .back p{
  margin-top: 3.2vw;
}
#sec03 .card .back ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.8vw 2vw 0;
  width: 89%;
}
#sec03 .card .back ul li{
  padding: 0.4vw;
  width: 48%;
  border-radius: 50px;
  background-color: #f0f8fc;
  text-align: center;
  font-size: 1.1vw;
  line-height: 1;
  color: #3ca7e4;
}
#sec03 .card .back ul li:nth-of-type(n+3){
  margin-top: 0.7vw;
}
#sec03 .card .back p span{
  display: block;
  margin-top: 10px;
  font-size: 0.8em;
  line-height: 1.7;
}
#sec03 .card .back .card-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 10px;
  padding: 6px 0;
  border-radius: 100px;
  border: 2px solid #fff;
  width: 256px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.3s 0s ease;
}
#sec03 .card09 .back .card-btn{
  margin-top: 14px;
}
#sec03 .card:nth-of-type(odd) .back .card-btn:hover{
  background-color: #fff;
  color: #3ca7e4;
  opacity: 1;
}
#sec03 .card:nth-of-type(even) .back .card-btn:hover{
  background-color: #fff;
  color: #0077bf;
  opacity: 1;
}
#sec03 .card .back .card-btn:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#sec03 .card:nth-of-type(odd) .back .card-btn:hover:after{
  border-color: #3ca7e4;
}
#sec03 .card:nth-of-type(even) .back .card-btn:hover:after{
  border-color: #0077bf;
}
#sec03 .btn-area{
  margin-top: -106px;
}
#sec03 .btn-area a{
  margin-top: 12px;
  font-size: 16px;
}

@media screen and (max-width : 600px){
  #sec03 .card-area{
    padding: 0;
  }
  #sec03 .card-area h3{
    font-size: 6.67vw;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }
  #sec03 .card-area .lead{
    margin: 8vw auto 7.33vw;
    width: 88%;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.18em;
  }
  #sec03 .card-box{
    flex-wrap: wrap;
    margin: -12vw 0 0 -5vw;
    width: 98vw;
    height: 313vw;
  }
  #sec03 .card{
    position: relative;
    width: 100%;
    height: 48.9vw;
    perspective: 1000px;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
  #sec03 .card02{
    top: -14vw;
    left: 0;
  }
  #sec03 .card03{
    top: -28vw;
  }
  #sec03 .card04{
    top: -62vw;
    left: 0;
    height: 88vw;
  }
  #sec03 .card05{
    top: -95vw;
    left:  0;
  }
  #sec03 .card06{
    top: -111vw;
    right: 0;
  }
  #sec03 .card07{
    top: -127vw;
    left: 0;
  }
  #sec03 .card08{
    top: -143vw;
    left:  0;
  }
  #sec03 .card09{
    top: -159vw;
    right: 0;
  }
  #sec03 .card:not(:last-of-type){
    margin-right: 0;
  }
  #sec03 .card .side{
    padding-top: 6.4vw;
    border-radius: 25px;
    box-shadow: none;
  }
  #sec03 .card:hover .side{
    box-shadow: none;
  }
  #sec03 .card01 .front{
    background-image: url(../images/card_01_sp.png);
  }
  #sec03 .card02 .front{
    background-image: url(../images/card_02_sp.png);
  }
  #sec03 .card03 .front{
    background-image: url(../images/card_03_sp.png);
  }
  #sec03 .card04 .front{
    background-image: url(../images/card_04_sp.png);
  }
  #sec03 .card05 .front{
    background-image: url(../images/card_05_sp.png);
  }
  #sec03 .card06 .front{
    background-image: url(../images/card_06_sp.png);
  }
  #sec03 .card07 .front{
    background-image: url(../images/card_07_sp.png);
  }
  #sec03 .card08 .front{
    background-image: url(../images/card_08_sp.png);
  }
  #sec03 .card09 .front{
    background-image: url(../images/card_09_sp.png);
  }
  #sec03 .card .ttl{
    font-size: 6.4vw;
  }
  #sec03 .card p{
    margin-top: 5.07vw;
    text-align: center;
  }
  #sec03 .card .front{
    padding-top: 12.4vw;
    background-position: center;
  }
  #sec03 .card04 .front{
    padding-top: 32vw;
  }
  #sec03 .card .front p{
    font-size: 5.1vw;
    line-height: 1.3;
    margin-top: 12vw;
  }
  #sec03 .card .front p.lines{
    margin-top: 11vw;
  }
  #sec03 .card07 .front p.lines{
    margin-top: 9vw;
  }
  #sec03 .card .back:before{
    right: 5.8vw;
    bottom: 14.7vw;
    width: 7.67vw;
    height: 7.67vw;
    border: 1px solid #0077bf;
  }
  #sec03 .card01 .back{
    background-image: url(../images/card_01_bg_sp.png);
  }
  #sec03 .card02 .back{
    background-image: url(../images/card_02_bg_sp.png);
  }
  #sec03 .card03 .back{
    background-image: url(../images/card_03_bg_sp.png);
  }
  #sec03 .card04 .back{
    background-image: url(../images/card_04_bg_sp.png);
  }
  #sec03 .card05 .back{
    background-image: url(../images/card_05_bg_sp.png);
  }
  #sec03 .card06 .back{
    background-image: url(../images/card_06_bg_sp.png);
  }
  #sec03 .card07 .back{
    background-image: url(../images/card_07_bg_sp.png);
  }
  #sec03 .card08 .back{
    background-image: url(../images/card_08_bg_sp.png);
  }
  #sec03 .card09 .back{
    background-image: url(../images/card_09_bg_sp.png);
  }
  #sec03 .card03 .back .side{
    padding: 4.5vw 26px 0;
  }
  #sec03 .card .back .qa{
    width: 13.33vw;
    height: 13.33vw;
    font-size: 5.52vw;
  }
  #sec03 .card .back p{
    margin-top: 5.47vw;
    font-size: 4vw;
  }
  #sec03 .card .back p .marker{
    letter-spacing: 0.01em;
    background-color: #fff;
  }
  #sec03 .card .back ul{
    margin-top: 1.8vw;
    width: 96%;
  }
  #sec03 .card .back ul li{
    padding: 1.4vw 0;
    font-size: 3.5vw;
  }
  #sec03 .card .back ul li:nth-of-type(n+3){
    margin-top: 1.1vw;
  }
  #sec03 .card .back .card-btn{
    margin-top: 3vw;
  }
  #sec03 .btn-area{
    margin-top: 7.2vw;
  }
  #sec03 .btn-area a{
    margin-top: 2.67vw;
    font-size: 3.73vw;
  }
  #sec03 .btn-area a span{
    font-size: 3.73vw;
  }
}

/* ************************************************************************
*	#sec04
************************************************************************ */
#sec04{
  padding: 160px 0 83px;
}
#sec04 h2:before{
  width: 142px;
  height: 109px;
  background-image: url(../images/icon_story.svg);
}
#sec04 .lead{
  margin: 35px 0 70px;
  font-size: 16px;
  text-align: center;
  line-height: 1.87;
  letter-spacing: 0.1em;
}
@media screen and (max-width : 600px){
  #sec04{
    padding: 33.33vw 6vw 11.2vw;
  }
  #sec04 h2:before{
    width: 37vw;
    height: 28vw;
  }
  #sec04 .lead{
    margin: 5.87vw 0 7.2vw;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.42;
  }
}

#sec04 .knowledge-area{
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  padding:87px 0 0;
  width: 94%;
  background-color: #0077bf;
}
#sec04 .knowledge-area.world{
  padding: 0 0 100px;
}
#sec04 .knowledge-content{
  padding-bottom: 20px;
  width: 280px;
  border-radius: 15px;
  background: #fff;
}
#sec04 .knowledge-content:not(:first-of-type){
  margin-left: 20px;
}
#sec04 .top-area .name{
  margin: 20px 15px;
  font-size: 17px;
  /* letter-spacing: 0.08em; */
  font-weight: 500;
}
#sec04 .top-area .profile{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 15px;
}
#sec04 .top-area .profile:not(:first-of-type){
  margin-top: 3px;
}
#sec04 .top-area .profile p{
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
#sec04 .top-area .profile .tit{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  border: 1px solid #0077bf;
  width: 60px;
  height: 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
#sec04 .bottom-area{
  margin: 20px 15px 0;
  padding: 9px 0 0;
  /* border-top: 1px dashed #0077bf; */
}
#sec04 .bottom-area h4{
  margin-bottom: 20px;
  font-size: 19px;
  text-align: center;
  line-height: 1.36;
  letter-spacing: 0.18em;
  color: #0077bf;
}
#sec04 .bottom-area .img-box{
  /* height: 170px; */
  overflow: hidden;
}
#sec04 .bottom-area .img-box img{
  margin: 0 auto;
  /* width: auto; */
  height: 170px;
  object-fit: contain;
}
#sec04 .bottom-area p{
  margin: 21px 0 14px;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  /* letter-spacing: 0.08em; */
  font-weight: 500;
}
#sec04 .bottom-area .btn-sec03,
#sec04 .world-diary .btn-sec03{
  display: inline-block;
  position: relative;
  padding-top: 4px;
  width: 100%;
  height: 80px;
  border-radius: 10px;
  background-color: #0077bf;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s 0s ease;
}
#sec04 .bottom-area .btn-sec03 span,
#sec04 .world-diary .btn-sec03 span{
  display: inline-block;
  margin-bottom: -3px;
  font-size: 15px;
  letter-spacing: 0.1em;
}
#sec04 .bottom-area .btn-sec03 :after,
#sec04 .world-diary .btn-sec03 :after{
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: transparent #fff #fff transparent;
}
#sec04 .world-diary{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0 !important;
  padding: 36px 0;
  width: 880px;
}
#sec04 .world-diary > div:not(:first-of-type){
  margin-left: 26px;
}
#sec04 .world-diary h4{
  margin-bottom: 17px;
  font-size: 19px;
  text-align: center;
  line-height: 1.36;
  letter-spacing: 0.18em;
  color: #0077bf;
}
#sec04 .world-diary p{
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
#sec04 .btn-area{
  margin-top: 38px;
}

@media screen and (max-width : 600px){
  #sec04 .knowledge-area{
    display: inline-block;
    padding: 7.73vw 6vw 0;
    width: 100%;
  }
  #sec04 .knowledge-area.world{
    padding: 0 6vw 6.93vw;
  }
  #sec04 .knowledge-content{
    padding-bottom: 7.2vw;
    width: 100%;
    border-radius: 13px;
  }
  #sec04 .knowledge-content:not(:first-of-type){
    margin: 5.33vw 0 0;
  }
  #sec04 .top-area .name{
    margin: 5.33vw 5.33vw 4.93vw;
    font-size: 4.53vw;
    letter-spacing: 0.08em;
  }
  #sec04 .top-area .profile{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 5.33vw;
  }
  #sec04 .top-area .profile:not(:first-of-type){
    margin-top: 1vw;
  }
  #sec04 .top-area .profile p{
    font-size: 3.47vw;
    letter-spacing: 0.1em;
  }
  #sec04 .top-area .profile .tit{
    margin-right: 2.67vw;
    width: 20%;
    height: 8.2vw;
    font-size: 3.33vw;
  }
  #sec04 .bottom-area{
    margin: 5.33vw 5.33vw 0;
    padding: 5.33vw 0 0;
  }
  #sec04 .bottom-area h4{
    margin-bottom: 5.07vw;
    font-size: 4.53vw;
    text-align: center;
    line-height: 1.47;
    letter-spacing: 0.15em;
  }
  #sec04 .knowledge-content:first-of-type .bottom-area .img-box img{
    height: 35.33vw;
  }
  #sec04 .knowledge-content:nth-of-type(2) .bottom-area .img-box img{
    height: 43.47vw;
  }
  #sec04 .knowledge-content:nth-of-type(3) .bottom-area .img-box img{
    height: 40.93vw;
  }
  #sec04 .bottom-area p{
    margin: 4.07vw 0 3.73vw;
    font-size: 3.47vw;
    line-height: 1.53;
  }
  #sec04 .bottom-area .btn-sec03,
  #sec04 .world-diary .btn-sec03{
    padding-top: 1.8vw;
    height: 14.67vw;
    border-radius: 7px;
    font-size: 4vw;
    line-height: 1.3;
  }
  #sec04 .bottom-area .btn-sec03 span,
  #sec04 .world-diary .btn-sec03 span{
    margin-bottom: 1px;
    font-size: 3.47vw;
  }
  #sec04 .bottom-area .btn-sec03 :after,
  #sec04 .world-diary .btn-sec03 :after{
    right: 3.33vw;
  }
  #sec04 .world-diary{
    display: inline-block;
    padding: 7.2vw 5.33vw;
  }
  #sec04 .world-diary > div:not(:first-of-type){
    margin-left: 0;
  }
  #sec04 .world-diary h4{
    margin-bottom: 5.07vw;
    font-size: 4.53vw;
    line-height: 1.47;
    letter-spacing: 0.15em;
  }
  #sec04 .world-diary img{
    margin: 0 auto;
    width: 53.33vw;
  }
  #sec04 .world-diary p{
    margin: 4.07vw 0 3.73vw;
    font-size: 3.47vw;
    text-align: center;
    line-height: 1.53;
  }
}


/* ************************************************************************
*	#sec05
************************************************************************ */
#sec05{
  padding: 148px 3% 100px;
  /* border-top: 1px solid #c4c4c4; */
  background-size: auto auto;
}
#sec05 h2:before{
  width: 80px;
  height: 75px;
  background-image: url(../images/icon_schedule.svg);
}

@media screen and (max-width : 600px){
  #sec05{
    padding: 37.47vw 6vw 22.4vw;
  }
  #sec05 h2:before{
    width: 17.47vw;
    height: 16.13vw;
  }
}

#sec05 .schedule-area{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 49px auto 0;
  max-width: 1380px;
}
#sec05 .schedule{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border: 3px solid #0078c0;
  padding: 20px 0;
  width: 18%;
}
#sec05 .schedule:not(:first-of-type):after{
  content: "";
  position: absolute;
  top: 50%;
  left: -11.3%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 11px;
  border-color: transparent transparent transparent #0078c0;
}
#sec05 .schedule p{
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #0077bf;
}
#sec05 .schedule p span.small{
  display: inline-block;
  margin-top: 4px;
  font-size: 0.7em;
  letter-spacing: 0;
  color: #e7327a;
}
#sec05 .schedule-text{
  margin: 35px 0 50px;
  font-size: 16px;
  text-align: center;
  line-height: 1.87;
  letter-spacing: 0.18em;
}
#sec05 .schedule-note{
  margin: 5px auto 0;
  max-width: 1380px;
  font-size: 14px;
  text-align: right;
}

@media screen and (max-width : 600px){
  #sec05 .schedule-area{
  flex-direction: column;
  margin-top: 7.2vw;
  }
  #sec05 .schedule{
    border: 2px solid #0078c0;
    width: 100%;
    height: 25.33vw;
  }
  #sec05 .schedule:not(:first-of-type){
    margin-top: 8vw;
  }
  #sec05 .schedule:not(:first-of-type):after{
    top: -25%;
    left: 50%;
    transform: translate(-50%, 0);
    border-width: 3.33vw 3.07vw 0 3.07vw;
    border-color: #0078c0 transparent transparent transparent;
  }
  #sec05 .schedule p{
    font-size: 4.53vw;
    line-height: 1.47;
  }
  #sec05 .schedule-text{
    margin: 5.87vw 0 6.67vw;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.42;
    letter-spacing: 0.18em;
  }
  #sec05 .schedule-note{
    font-size: 2.8vw;
    letter-spacing: 0;
  }
}


/* ************************************************************************
*	#sec06
************************************************************************ */
#sec06{
  padding: 148px 0 100px;
  background-size: auto auto;
  background-color: rgba(240, 248, 252, 1);
  background-image: repeating-linear-gradient(-67deg, transparent, transparent 10px, rgba(255, 255, 255, 1) 10px, rgba(255, 255, 255, 1) 12px );
}
#sec06 h2:before{
  width: 140px;
  height: 107px;
  background-image: url(../images/icon_faq.svg);
}
#sec06 h2 span{
  margin: 47px 0 0;
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: 0.18em;
  font-weight: normal;
  color: #333;
}

@media screen and (max-width : 600px){
  #sec06{
    padding: 37.47vw 6vw 11.47vw;
  }
  #sec06 h3:before{
    width: 37vw;
    height: 28vw;
  }
  #sec06 h3 span{
    margin: 5.87vw 0 6vw;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }
}


/* card */
#sec06 .card-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 90%;
  height: 73vw;
  /* max-width: 1300px; */
}
#sec06 .card{
  display: inline-block;
  position: absolute;
  width: 37.6%;
  /* height: 342px; */
  height: 28vw;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  /* transform: translateZ(-100px); */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  perspective: 1000px;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: scale(0.76, 0.76);
}
#sec06 .card01{
  top: 0;
  left: 0;
}
#sec06 .card02{
  top: 0;
  left: 31.25%;
}
#sec06 .card03{
  top: 0;
  right: 0;
}
#sec06 .card04{
  top: 24vw;
  left: 0;
}
#sec06 .card05{
  top: 24vw;
  left:  31.25%;
}
#sec06 .card06{
  top: 24vw;
  right: 0;
}
#sec06 .card07{
  top: 48vw;
  left: 0;
}
#sec06 .card08{
  top: 48vw;
  left:  31.25%;
}
#sec06 .card09{
  top: 48vw;
  right: 0;
}
#sec06 .card:not(:nth-of-type(3n)){
  margin-right: 17px;
}
#sec06 .card.active{
  transform: scale(1, 1);
  z-index: 3;
}
#sec06 .card:hover{
  z-index: 2;
}
#sec06 .card .side{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 4.5vw;
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#sec06 .card .qa{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.06em;
  color: #fff;
}
#sec06 .card:nth-of-type(odd) .qa{
  background-color: #3ca7e4;
}
#sec06 .card:nth-of-type(even) .qa{
  background-color: #0077bf;
}
#sec06 .card:hover .side{
  /* box-shadow: 0 0 14px rgba(18,84,122,0.6); */
  /* -webkit-filter:drop-shadow(0 0 8px rgba(18,84,122,0.6)); */
}
#sec06 .card .front{
  /* border: 8px solid #0077bf; */
  transform: rotateY(0deg);
  /* background-color: #f0f8fc; */
  background-color: transparent;
  transition: all 0.3s 0s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#sec06 .card01 .front{
  background-image: url(../images/balloon_01-r.png);
}
#sec06 .card02 .front{
  background-image: url(../images/balloon_02-l.png);
}
#sec06 .card03 .front{
  background-image: url(../images/balloon_01-c.png);
}
#sec06 .card04 .front{
  background-image: url(../images/balloon_02-l.png);
}
#sec06 .card05 .front{
  background-image: url(../images/balloon_01-l.png);
}
#sec06 .card06 .front{
  background-image: url(../images/balloon_02-l.png);
}
#sec06 .card07 .front{
  background-image: url(../images/balloon_01-r.png);
}
#sec06 .card08 .front{
  background-image: url(../images/balloon_02-c.png);
}
#sec06 .card09 .front{
  background-image: url(../images/balloon_01-r.png);
}
/* #sec06 .card .front:before{
  content: "";
  position: absolute;
  left: 60%;
  bottom: -55px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 55px 55px 0;
  border-color: transparent #3ca7e4 transparent transparent;
}
#sec06 .card .front:after{
  content: "";
  position: absolute;
  left: 59%;
  bottom: -39px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 54px 54px 0;
  border-color: transparent #f0f8fc transparent transparent;
  transition: all 0.3s 0s ease;
  display: inline-block;
} */
#sec06 .card .front:hover:before{
  /* box-shadow: 0 0 14px rgba(18,84,122,0.4); */
  -webkit-filter:inherit;
}
#sec06 .card:nth-of-type(odd) .front{
  border-color: #3ca7e4;
}
#sec06 .card.active .front{
  transform: rotateY(-180deg);
}
/* #sec06 .card .front .open{
  content: "";
  position: absolute;
  right: 3vw;
  bottom: 6vw;
  width: 4vw;
  height: 4vw;
  border: 4px solid #0077bf;
  border-radius: 50%;
} */
/* #sec06 .card:nth-of-type(odd) .front .open{
  border-color: #3ca7e4;
} */
/* #sec06 .card .front .open:before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-65%,-50%) rotate(45deg);
  border-top: 4px solid #0077bf;
  border-right: 4px solid #0077bf;
  width: 1.5vw;
  height: 1.5vw;
} */
/* #sec06 .card:nth-of-type(odd) .front .open:before{
  border-color: #3ca7e4;
} */
#sec06 .card .front p{
  margin-top: 3.1vw;
  font-size: 1.7vw;
  text-align: center;
  line-height: 1.5;
  /* letter-spacing: 0.05em; */
  font-weight: bold;
  color: #0077bf;
}
#sec06 .card .front p.lines{
  margin-top: 1.4vw;
}
#sec06 .card:nth-of-type(odd) .front p{
  color: #3ca7e4;
}
#sec06 .card .front .qa{
  width: 6vw;
  height: 6vw;
  font-size: 2.8vw;
}
#sec06 .card .back{
  position: relative;
  transform: rotateY(180deg);
  /* box-shadow: 0 0 16px rgba(18,84,122,0.6); */
  -webkit-filter:drop-shadow(2px 2px 2px rgba(18,84,122,0.6));
  padding: 33px 34px 0;
  /* background-color: #0077bf; */
  background-color: transparent;
  background-image: url(../images/balloon_01-bgr.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#sec06 .card01 .back{
  background-image: url(../images/balloon_01-bgl.png);
}
#sec06 .card02 .back{
  background-image: url(../images/balloon_02-bgr.png);
}
#sec06 .card03 .back{
  background-image: url(../images/balloon_01-bgc.png);
}
#sec06 .card04 .back{
  background-image: url(../images/balloon_02-bgr.png);
}
#sec06 .card05 .back{
  background-image: url(../images/balloon_01-bgr.png);
  padding-top: 16px;
}
#sec06 .card06 .back{
  background-image: url(../images/balloon_02-bgr.png);
  padding-top: 23px;
  padding-top: 21px;
}
#sec06 .card07 .back{
  background-image: url(../images/balloon_01-bgl.png);
}
#sec06 .card08 .back{
  background-image: url(../images/balloon_02-bgc.png);
  padding: 17px 34px 0;
}
#sec06 .card09 .back{
  background-image: url(../images/balloon_01-bgl.png);
  padding: 22px 34px 0;
}
/* #sec06 .card .back:after{
  content: "";
  position: absolute;
  right: 58.5%;
  bottom: -56px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 58px 58px 0 0;
  border-color: #3ca7e4 transparent transparent transparent;
  box-shadow: 0 0 16px rgba(18,84,122,0.6);
  -webkit-filter:drop-shadow(2px 2px 2px rgba(18,84,122,0.6));
} */
/* #sec06 .card:nth-of-type(odd) .back{
  background-color: #3ca7e4;
} */
#sec06 .card.active .back{
  transform: rotateY(0deg);
}
/* #sec06 .card .back:before{
  content: "";
  position: absolute;
  right: 1.5vw;
  bottom: 5.5vw;
  width: 2.8vw;
  height: 2.8vw;
  border: 2px solid #0077bf;
  border-radius: 50%;
  background-color: #fff;
} */
/* #sec06 .card:nth-of-type(odd) .back:before{
  border-color: #3ca7e4;
} */
/* #sec06 .card .back .close:before{
  content: "";
  position: absolute;
  right: 2.6vw;
  bottom: 6.3vw;
  transform: rotate(45deg);
  width: 3px;
  height: 1.3vw;
  background-color: #0077bf;
} */
/* #sec06 .card:nth-of-type(odd) .back .close:before{
  background-color: #3ca7e4;
} */
/* #sec06 .card .back .close:after{
  content: "";
  position: absolute;
  right: 2.6vw;
  bottom: 6.3vw;
  transform: rotate(-45deg);
  width: 3px;
  height: 1.3vw;
  background-color: #0077bf;
} */
/* #sec06 .card:nth-of-type(odd) .back .close:after{
  background-color: #3ca7e4;
} */
#sec06 .card .back .qa{
  width: 4vw;
  height: 4vw;
  background-color: #fff;
  font-size: 2.1vw;
  color: #0077bf;
}
#sec06 .card:nth-of-type(odd) .back .qa{
  color: #3ca7e4;
}
#sec06 .card .back p{
  margin-top: 1vw;
  width: 100%;
  font-size: 1.4vw;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #fff;
  word-break: break-all;
}
#sec06 .card02 .back p{
  font-size: 1.3vw;
}
#sec06 .card .back p span{
  display: block;
  margin-top: 10px;
  font-size: 0.8em;
  line-height: 1.7;
}
#sec06 .card .back .card-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 10px;
  padding: 6px 0;
  border-radius: 100px;
  border: 2px solid #fff;
  width: 256px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.3s 0s ease;
}
#sec06 .card09 .back .card-btn{
  margin-top: 14px;
}
#sec06 .card:nth-of-type(odd) .back .card-btn:hover{
  background-color: #fff;
  color: #3ca7e4;
  opacity: 1;
}
#sec06 .card:nth-of-type(even) .back .card-btn:hover{
  background-color: #fff;
  color: #0077bf;
  opacity: 1;
}
#sec06 .card .back .card-btn:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#sec06 .card:nth-of-type(odd) .back .card-btn:hover:after{
  border-color: #3ca7e4;
}
#sec06 .card:nth-of-type(even) .back .card-btn:hover:after{
  border-color: #0077bf;
}

@media screen and (max-width : 600px){
  #sec06 .card-area{
    padding: 0;
  }
  #sec06 .card-area h3{
    font-size: 6.67vw;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }
  #sec06 .card-area .lead{
    margin: 8vw auto 7.33vw;
    width: 88%;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.18em;
  }
  #sec06 .card-box{
    flex-wrap: wrap;
    margin: -12vw 0 0 -5vw;
    width: 98vw;
    height: 440vw;
  }
  #sec06 .card{
    position: relative;
    width: 100%;
    height: 80.9vw;
    perspective: 1000px;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
  #sec06 .card02{
    top: -35vw;
    left: 0;
  }
  #sec06 .card03{
    top: -70vw;
  }
  #sec06 .card04{
    top: -105vw;
    left: 0;
  }
  #sec06 .card05{
    top: -140vw;
    left:  0;
  }
  #sec06 .card06{
    top: -175vw;
    right: 0;
  }
  #sec06 .card07{
    top: -210vw;
    left: 0;
  }
  #sec06 .card08{
    top: -245vw;
    left:  0;
  }
  #sec06 .card09{
    top: -280vw;
    right: 0;
  }
  #sec06 .card:not(:last-of-type){
    margin-right: 0;
  }
  #sec06 .card .side{
    padding-top: 6.4vw;
    border-radius: 25px;
    box-shadow: none;
  }
  #sec06 .card:hover .side{
    box-shadow: none;
  }
  #sec06 .card01 .front{
    background-image: url(../images/balloon_01-c_sp.png);
  }
  #sec06 .card02 .front{
    background-image: url(../images/balloon_02-c_sp.png);
  }
  #sec06 .card03 .front{
    background-image: url(../images/balloon_01-c_sp.png);
  }
  #sec06 .card04 .front{
    background-image: url(../images/balloon_02-c_sp.png);
  }
  #sec06 .card05 .front{
    background-image: url(../images/balloon_01-c_sp.png);
  }
  #sec06 .card06 .front{
    background-image: url(../images/balloon_02-c_sp.png);
  }
  #sec06 .card07 .front{
    background-image: url(../images/balloon_01-c_sp.png);
  }
  #sec06 .card08 .front{
    background-image: url(../images/balloon_02-c_sp.png);
  }
  #sec06 .card09 .front{
    background-image: url(../images/balloon_01-c_sp.png);
  }
  /* #sec06 .card .front .open{
    right: 3.6vw;
    bottom: 24.2vw;
    width: 8vw;
    height: 8vw;
    border: 2px solid #0077bf;
  } */
  /* #sec06 .card .front .open:before{
    right: 0.5vw;
    bottom: 0.3vw;
    border-top: 2px solid #0077bf;
    border-right: 2px solid #0077bf;
    width: 3vw;
    height: 3vw;
  } */
  #sec06 .card p{
    margin-top: 5.07vw;
    text-align: center;
  }
  #sec06 .card .front{
    padding-top: 20.4vw;
    background-position: center;
  }
  #sec06 .card01 .front,
  #sec06 .card05 .front,
  #sec06 .card06 .front{
    padding-top: 16.4vw;
  }
  #sec06 .card .front .qa{
    width: 11vw;
    height: 11vw;
    font-size: 6vw;
  }
  #sec06 .card .front p{
    font-size: 5.39vw;
    line-height: 1.3;
    margin-top: 3vw;
  }
  #sec06 .card .front p.lines{
    margin-top: 2vw;
  }
  #sec06 .card .back:before{
    right: 5.8vw;
    bottom: 14.7vw;
    width: 7.67vw;
    height: 7.67vw;
    border: 1px solid #0077bf;
  }
  #sec06 .card01 .back{
    background-image: url(../images/balloon_01-bgc.png);
  }
  #sec06 .card02 .back{
    background-image: url(../images/balloon_02-bgc.png);
  }
  #sec06 .card03 .back{
    background-image: url(../images/balloon_01-bgc.png);
  }
  #sec06 .card04 .back{
    background-image: url(../images/balloon_02-bgc.png);
  }
  #sec06 .card05 .back{
    background-image: url(../images/balloon_01-bgc.png);
  }
  #sec06 .card06 .back{
    background-image: url(../images/balloon_02-bgc.png);
  }
  #sec06 .card07 .back{
    background-image: url(../images/balloon_01-bgc.png);
  }
  #sec06 .card08 .back{
    background-image: url(../images/balloon_02-bgc.png);
  }
  #sec06 .card09 .back{
    background-image: url(../images/balloon_01-bgc.png);
  }
  #sec06 .card03 .back .side{
    padding: 4.5vw 26px 0;
  }
  #sec06 .card .back .qa{
    width: 13.33vw;
    height: 13.33vw;
    font-size: 5.52vw;
  }
  #sec06 .card .back p{
    margin-top: 3.47vw;
    font-size: 4vw;
  }
  #sec06 .card02 .back p{
    font-size: 3.6vw;
  }
  #sec06 .card05 .back p{
    font-size: 3.8vw;
  }
  #sec06 .card .back p .marker{
    letter-spacing: 0.01em;
    background-color: #fff;
  }
  #sec06 .card .back .card-btn{
    margin-top: 3vw;
  }
}


#sec06 .btn-area{
  margin-top: 52px;
}
#container #sec06 .btn-area .btn-white{
  margin-bottom: 32px;
  border: 5px solid #006fbc;
  width: 560px;
  height: 100px;
  background-color: transparent;
  border-radius: 100px;
}
#sec06 .btn-area .btn-white:after{
  content: "";
  width: 15px;
  height: 15px;
  border-color: transparent #006fbc #006fbc transparent;
  border-width: 3px;
}
#container #sec06 .btn-area .btn-blue{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 200px;
  width: 400px;
  height: 80px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s 0s ease;
}
@media screen and (max-width : 600px){
  #sec06 .btn-area{
    margin-top:10vw ;
  }
  #container #sec06 .btn-area .btn-white{
    border-width: 3px;
    width: 100%;
    height: 22.67vw;
    font-size: 4.1vw;
    letter-spacing: 0;
  }
  #sec06 .btn-area .btn-white:after{
    border-width: 2px;
    width: 12px;
    height: 12px;
  }
  #container #sec06 .btn-area .btn-blue{
    width: 80vw;
    height: 18.67vw;
    font-size: 4.27vw;
  }
}

/* ************************************************************************
*	#sec07
************************************************************************ */
#sec07{
  padding: 148px 0 100px;
}
#sec07 h2:before{
  width: 116px;
  height: 78px;
  background-image: url(../images/icon_check-02.svg);
}
#sec07 .registration-text{
  margin: 58px 0 52px;
  font-size: 16px;
  text-align: center;
  line-height: 1.87;
  letter-spacing: 0.18em;
}
#sec07 .registration-text .marker{
  background-color: #ffe58a;
}
#sec07 .registration_lead {
  text-align: center;
}
#sec07 .btn_list_container {
  width: 460px;
  margin: 0 auto;
  padding: 20px 0 40px;
  display: flex;
}
#sec07 .btn_list_container .btn_list_item {
  width: 50%;
  text-align: center;
}
#sec07 .btn_list_container .btn_list_item a {
  display: inline-block;
  border-radius: 200px;
  width: 200px;
  height: 40px;
  background-color: #0077bf;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 40px;
  position: relative;
}
#sec07 .btn_list_container .btn_list_item a:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent #fff #fff transparent;
}
#sec07 .btn_list_container .btn_list_item:last-child a {
  background-color: #14a83a;
}
#sec07 .btn_list_container .btn_list_item a:hover {
  opacity: .7;
}
#container #sec07 .btn-area > * + *{
  margin-top: 20px;
}
#container #sec07 .btn-area a.btn{
  border-radius: 200px;
  width: 532px;
  background-color: #0077bf;
  color: #fff;
}
#container #sec07 .btn-area a.job_info{
  justify-content: space-between;
  flex-direction: row;
  border: 1px solid #888;
  border-radius: 0;
  width: 532px;
  color: #333;
}
#container #sec07 .btn-area a.job_info:after{
  display: none;
}
#container #sec07 .btn-area .job_info div{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  text-align: center;
}
#container #sec07 .btn-area .job_info div:first-of-type{
  flex-grow: 1;
}
#container #sec07 .btn-area .job_info div img{
  height: 100%;
  width: auto;
}
#container #sec07 .btn-area .job_info div:nth-of-type(2):after{
  content: "シゴトを知る\A【一般案件】";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  white-space: pre;
}

@media screen and (max-width : 600px){
  #sec07{
    padding: 29.47vw 6vw 11.07vw;
  }
  #sec07 h2:before{
    top: -22vw;
    width: 28.13vw;
    height: 18.8vw;
  }
  #sec07 .registration-text{
    margin: 9.2vw 0 7.2vw;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.42;
    letter-spacing: 0.16em;
  }
  #sec07 .registration_lead {
    font-size: 4.27vw;
    line-height: 1.42;
  }
  #sec07 .btn_list_container {
    width: 90vw;
    padding: 4vw 0 8vw;
  }
  #sec07 .btn_list_container .btn_list_item a {
    width: 90%;
    height: 9.66vw;
    font-size: 4.27vw;
    line-height: 9.66vw;
  }
  #sec07 .btn_list_container .btn_list_item a:after {
    right: 5vw;
  }
  #container #sec07 .btn-area > * + *{
    margin-top: 4vw;
  }
  #container #sec07 .btn-area a.btn{
    width: 100%;
  }
  #container #sec07 .btn-area a.job_info{
    width: 100%;
  }
  #container #sec07 .btn-area .job_info div{
    overflow: hidden;
  }
  #container #sec07 .btn-area .job_info div:first-of-type{
    flex-grow: 1;
    width: 70%;
    font-size: 3.8vw;
  }
  #container #sec07 .btn-area .job_info div:nth-of-type(2){
    flex-shrink: 2;
  }
  #container #sec07 .btn-area .job_info div:nth-of-type(2):after{
    left: 2vw;
    font-size: 2vw;
  }
}


/* ************************************************************************
*	#sec08
************************************************************************ */
#sec08{
  padding: 128px 0 97px;
  background-image: url(../images/bg_bottom.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#sec08 p{
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 119, 191, 0.5);
}
#sec08 .btn-area{
  display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    max-width: 958px;
    margin: 56px auto 0;
}
#sec08 .btn-area a{
  width: calc(50% - 30px);
}


@media screen and (max-width : 600px){
  #sec08{
    padding: 13.87vw 6vw 13.6vw;
  }
  #sec08 p{
    font-size: 6.67vw;
    line-height: 1.6;
  }
  #sec08 .btn-area{
    display: block;
    margin-top: 7.73vw;
  }
  #sec08 .btn-area a{
    width: auto;
  }
  #sec08 .btn-area a + a{
    margin-top: 20px;
  }
}

/* ************************************************************************
*	#entry-info
************************************************************************ */
#entry-info{
  padding: 120px 0 122px;
  background-color: #f0f8fc;
}
#entry-info h2:before{
  width: 56px;
  height: 78px;
  background-image: url(../images/icon_check.svg);
}
#entry-info .lead{
  margin: 30px 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.18em;
}
#entry-info .sec-ttl{
  text-align: center;
}
#entry-info .sec-ttl span{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0;
  padding: 0 10px 2px 15px;
  color: #fff;
  font-size: 30px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.74;
  letter-spacing: 0.12rem;
  background: #0078c0;
  position: relative;
}
#entry-info .sec-ttl span:after{
  content: "";
  border-right: 5px solid #b7e5ff;
  border-bottom: 5px solid #b7e5ff;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
}
#entry-info .box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#entry-info .box .box-inner {
  display: -webkit-box;
  display: flex;
  align-items: center;
  width: 285px;
  margin: 0 30px;
  padding: 0;
  position: relative;
}
#entry-info .box .box-inner:first-child {
  margin: 0 30px 0 0;
  justify-content: start;
}
#entry-info .box .box-inner:last-child {
  margin: 0 0 0 30px;
  justify-content: start;
}
#entry-info .text-box {
  margin: 0;
  text-align: left;
  line-height: 1;
  box-sizing: border-box;
}
#entry-info .box .box-inner:before {
  content: "";
  width: 1px;
  height: 100%;
  border-left: 1px solid #b6b6b6;
  position: absolute;
  bottom: 0;
  left: -30px;
}
#entry-info .box .box-inner:first-child:before {
  display: none;
}
#entry-info .text-box h3 {
  padding-bottom: 14px;
  color: #ce2f35;
  font-size: 16px;
}
#entry-info .text-box .txt {
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.15rem;
  font-feature-settings: "palt";
}
#entry-info .text-box .link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 0 2px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.12rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background-image: none;
}
#entry-info .text-box .link-button.bg_green {
  background-color: #3caf4c;
}
#entry-info .text-box .link-button:not(:first-of-type){
  margin-top: 20px;
}
#entry-info .text-box .link-button:hover {
  opacity: 0.7;
}
.link-button.arrow span{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.link-button.arrow span i{
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(225deg);
}

@media screen and (max-width : 600px){
  #entry-info{
    padding: 29.47vw 6vw 16.13vw;
  }
  #entry-info h2:before{
    top: -22vw;
    width: 13.13vw;
    height: 18.8vw;
  }
  #entry-info h2 .space{
    margin-right: 4vw;
  }

  #entry-info .lead{
    margin: 5.33vw 0 6vw;
    /*text-align: center;*/
    font-size: 3.73vw;
    letter-spacing: 0.18em;
  }
  #entry-info .box {
      flex-wrap: wrap;
      width: 100%;
      max-width: 100%;
      padding: 30px 0 0;
  }
  #entry-info .box .box-inner {
      width: 90%;
      max-width: 90%;
      margin: 0 auto;
      padding: 30px 0;
  }
  #entry-info .box .box-inner:first-child {
      margin: 0 auto;
      padding: 25px 0;
  }
  #entry-info .box .box-inner:last-child {
      margin: 0 auto;
      padding: 25px 0 0;
  }
  #entry-info .box .box-inner:before {
      content: "";
      width: 100%;
      height: 1px;
      margin: 0 auto;
      border-left: 0;
      border-top: 1px solid #b6b6b6;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
  }
  #entry-info .text-box .txt{
    margin-bottom: 4.53vw;
  }
  #entry-info .box .box-inner:first-child:before {
      display: block;
  }
  #entry-info .text-box .link-button:not(:first-of-type){
    margin-top: 2.67vw;
  }
}



/* ************************************************************************
*	#snsarea
************************************************************************ */
#snsarea{
  padding: 120px 0 70px;
  background-color: #f0f8fc;
}
#snsarea h2:before{
  width: 56px;
  height: 78px;
  background-image: url(../images/icon_check.svg);
}
#snsarea .lead{
  margin: 30px 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.18em;
}
#snsarea .sec-ttl{
  text-align: center;
}
#snsarea .sec-ttl span{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0;
  padding: 0 10px 2px 15px;
  color: #fff;
  font-size: 30px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.74;
  letter-spacing: 0.12rem;
  background: #0078c0;
  position: relative;
}
#snsarea .sec-ttl span:after{
  content: "";
  border-right: 5px solid #b7e5ff;
  border-bottom: 5px solid #b7e5ff;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
}
#snsarea .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: 200px;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
}
#snsarea .box .box-inner {
  display: -webkit-box;
  display: flex;
  align-items: center;
  width: 285px;
  margin: 0 25px;
  padding: 0;
  position: relative;
}
#snsarea .box .box-inner a {
  width: 100%;
}
/* #snsarea .box .box-inner:first-child {
  margin: 0 30px 0 0;
  justify-content: start;
}
#snsarea .box .box-inner:last-child {
  margin: 0 0 0 0px;
  justify-content: start;
} */
#snsarea .text-box {
  margin: 0;
  text-align: left;
  line-height: 1;
  box-sizing: border-box;
}
#snsarea .text-box h3 {
  padding-bottom: 14px;
  color: #ce2f35;
  font-size: 16px;
}
#snsarea .text-box .txt {
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.15rem;
  font-feature-settings: "palt";
}
#snsarea .text-box .link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 0 2px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.12rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background-image: none;
}
#snsarea .text-box .link-button.bg_green {
  background-color: #3caf4c;
}
#snsarea .text-box .link-button:not(:first-of-type){
  margin-top: 20px;
}
#snsarea .text-box .link-button:hover {
  opacity: 0.7;
}
.link-button.arrow span{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.link-button.arrow span i{
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(225deg);
}

@media screen and (max-width : 600px){
  #snsarea{
    padding: 29.47vw 6vw 11vw;
  }
  #snsarea h2:before{
    top: -22vw;
    width: 13.13vw;
    height: 18.8vw;
  }
  #snsarea h2 .space{
    margin-right: 4vw;
  }

  #snsarea .lead{
    margin: 5.33vw 0 3vw;
    /*text-align: center;*/
    font-size: 3.73vw;
    letter-spacing: 0.18em;
  }

    #snsarea .box {
      width: 90%;
      padding-top: 1rem;
}

  
  #snsarea .box .box-inner {
      width: 16%;
      max-width: none;
      min-width: none;
      margin: 0 2%;
      padding: 0px 0;
  }
  
  #snsarea .box .box-inner:first-child {
      margin: 0;
      padding: 0px 0;
  }
  #snsarea .box .box-inner:last-child {
        margin: 0 0 0 3%;  
  }
  }



/* ************************************************************************
*	0520更新
************************************************************************ */
.mv-btn_0520 a{
    display: block;
    text-align: center;
    font-weight: bold;
    color: #fff !important;
    background-color: #e7327a;
}
.mv-btn_0520 a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 10px;
  height: 10px;
}
.mv-btn_0520 a:hover{
  color: #fff;
  opacity: 0.7;
}
@media screen and (min-width : 600px){
  .mv-btn_0520{
    position: absolute; 
    bottom: 0;
    left: 0;
  }
  .mv-btn_0520 a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 220px;
    border: 4px solid #ffa4ab;
    border-radius: 50%;
    width: 15vw;
    height: 15vw;
    max-width: 190px;
    max-height: 190px;
    
    font-size: 1.3vw;
    padding-top: 6px;
    letter-spacing: 0.07em;
    color: #fff;
    text-align: center;
    transition: all 0.5s 0s ease;
  }
  .mv-btn_0520 a + a{
    padding-top: 0;
    left: 20px;
  } 
  .mv-btn_0520 a:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 10px;
    height: 10px;
  }
  .mv-btn_0520 a:hover{
    color: #fff;
    opacity: 0.7;
  }
}

@media screen and (max-width : 599px){
  .mv-btn_0520 a{
    position: relative;
    bottom: 0;
    right: 0;
    display: block;
    margin: 3.6vw auto 0;
    padding: 4.57vw 0;
    width: 90.67%;
    border: 3px solid #ffa4ab;
    border-radius: 100px;
    font-size: 4vw;
    text-align: center;
    font-weight: bold;
  }
  .mv-btn_0520 a + a{
    margin-top: 15px;
    margin-bottom: 3.6vw;
  } 
  .mv-btn_0520 a:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
    width: 2.67vw;
    height: 2.67vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

@media screen and (min-width : 1400px){
  .mv-btn_0520 a{
    padding-top: 15px;
    font-size: 1.7rem;
  }
  .mv-btn_0520 a + a{
    padding-top: 0;
  }
}


#mv-entry-bnr div {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  background-color: #e7327a;
  align-items: center;
}
#mv-entry-bnr .left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 5px 5px 5px 11px;
  color: #e7327a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12rem;
  background: #fff;
}
#mv-entry-bnr .left:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 19.4px solid transparent;
  border-bottom: 19.4px solid transparent;
  position: absolute;
  top: 0;
  right: -16px;
  z-index: 1;
}
#mv-entry-bnr .right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 34px;
  font-size: 20px;
  letter-spacing: 0.12rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width : 599px){
  #mv-area .floating-btn{
    display: none;
  }
  .floating-btn{
    display: none;
    position: relative;
    bottom: 0;
    right: 0;
    margin: 5.6vw auto;
    padding: 2.5vw 0;
    width: 90.67%;
    border: 3px solid #ffa4ab;
    border-radius: 100px;
    background-color: #e7327a;
    font-size: 4vw;
    text-align: center;
    font-weight: bold;
    color: #fff !important;
  }
  .floating-btn:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
    width: 2.67vw;
    height: 2.67vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .floating-btn.active{
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 50%;
    margin: 0;
    border-radius: 0;
    border-width: 1px;
  }
  .floating-btn+.floating-btn.active{
    left: auto;
    right: 0;
  }
  #mv-entry-bnr div {
    padding: 2.67vw 0;
  }
  #mv-entry-bnr .left {
    padding: 1.33vw 1.33vw 1.33vw 2.27vw;
    height: 8.3vw;
    font-size: 3vw;
    width: 38vw;
  }
  #mv-entry-bnr .left:after {
    border-left: 3.29vw solid #fff;
    border-top: 4.21vw solid transparent;
    border-bottom: 4.21vw solid transparent;
    right: -3.16vw;
  }
  #mv-entry-bnr .right {
    padding-left: 5vw;
    font-size: 4.53vw;
    letter-spacing: 0.02rem;
    line-height: 1.25;
    text-align: left;
  }
}
@media screen and (min-width : 600px){
  .floating-btn{
    position: fixed;
    bottom: 135px;
    right: -350px;
    padding: 18px 80px 18px 39px;
    border: 4px solid #ffa4ab;
    border-radius: 80px;
    background-color: #e7327a;
    font-size: 18px;
    /* text-align: center; */
    text-align: right;
    line-height: 1.3;
    color: #fff;
    z-index: 4;
    transition: all 0.3s 0s ease;
  }
  .floating-btn.active {
    right: -73px;
  }
  .floating-btn + .floating-btn{
    bottom: 30px;
  }
  .floating-btn:visited {
    color: #fff;
  }
  .floating-btn:hover span{
    color: #fff;
  }
  .floating-btn:hover {
    color: #fff;
    opacity: 0.7;
  }
}



.add_0520{
  padding: 78px 0;
}
.register-area{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 52px 0;
  width: 100%;
  max-width: 960px;
}
.register-area .img-box{
  width: 48%;
}
.register-area .img-box img{
  margin-bottom: 12px;
  width: 100%;
  height: auto;
}
.add_0520 .register-link{
  padding-bottom: 4px;
  border-bottom: 1px solid #1984c5;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #1984c5;
  transition: all 0.3s 0s ease;
}
.add_0520 .register-link:hover{
  opacity: 0.7;
}
.add_0520 .register-link span{
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: 2px;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #1984c5;
}
.add_0520 .register-link span:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid #fff;
}
.add_0520 .login{
  margin-top: 37px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.18em;
}

.add_2023_btn-txt{
  margin-top: 80px;
  text-align: center;
}
.add_2023_btn-txt + .btn-area{
  margin-top: 20px;
}

.schedule-btn{
  display: flex;
  justify-content: space-between;
  margin: 60px auto 0;
  width: 100%;
  max-width: 960px;
}
.schedule-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 49%;
  height: 50px;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s 0s ease;
}
.schedule-btn a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 7px;
  height: 7px;
}
.schedule-btn a:hover{
  opacity: 0.7;
  color: #fff;
}
.schedule-btn a:first-of-type{
  background-color: #0078c0;
}
.schedule-btn a:nth-of-type(2){
  background-color: #3caf4c;
}

@media screen and (max-width : 600px){
  .add_0520{
    padding: 10.4vw 6vw 12.8vw;
  }
  .register-area{
    display: block;
    margin: 0 auto;
    padding: 9.07vw 0 9.87vw;
    max-width: none;
  }
  .register-area .img-box{
    width: 100%;
  }
  .register-area .img-box:not(:first-of-type){
    margin-top: 12vw;
  }
  .register-area .img-box img{
    margin-bottom: 4vw;
  }
  .add_0520 .register-link{
    padding-bottom: 1.33vw;
    font-size: 3.73vw;
  }
  .add_0520 .register-link:hover{
    opacity: 1;
  }
  .add_0520 .register-link span{
    top: 0.3vw;
    margin-left: 1vw;
    border-radius: 50%;
    width: 3.3vw;
    height: 3.3vw;
  }
  .add_0520 .register-link span:after{
    left: 35%;
    border-top: 0.94vw solid transparent;
    border-right: 1.33vw solid transparent;
    border-bottom: 0.94vw solid transparent;
    border-left: 1.33vw solid #fff;
  }
  .add_0520 .login{
    margin-top: 6.13vw;
    padding-left: 3.75vw;
    text-indent: -3.75vw;
    font-size: 3.73vw;
    text-align: left;
  }

  .schedule-btn{
    display: block;
    margin: 12vw auto 0;
    max-width: none;
  }
  .schedule-btn a{
    width: 100%;
    height: 13.33vw;
    font-size: 3.73vw;
    letter-spacing: 0.12em;
  }
  .schedule-btn a:not(:first-of-type){
    margin-top: 4vw;
  }
  .schedule-btn a:after{
    right: 2.5vw;
    width: 2vw;
    height: 2vw;
  }
  /* フッターpadding追加 */
  #footer{
    padding-bottom: 60px;
  }
}





.add_2023{
  padding: 78px 0;
  background-color: #f0f8fc;
}
.add_2023_list_container {
  width: 1000px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
}
.add_2023_list_item {
  width: 635px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
}
.add_2023_period_ttl {
  width: 126px;
  height: 39px;
  border: 1px solid #0078c0;
  box-sizing: border-box;
  margin: 0 auto 10px;
  font-size: 20px;
  font-weight: 700;
  color: #0078c0;
  text-align: center;
  line-height: 37px;
  letter-spacing: .1em;
}
.add_2023_period_lead {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .1em;
  padding-bottom: 10px;
}
.add_2023_period_txt {
  width: 100%;
  background-color: #0078c0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 36px;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.add_2023_featured_ttl {
  font-size: 18px;
  font-weight: 700;
  color: #0078c0;
  letter-spacing: .1em;
  padding-bottom: 10px;
}
.add_2023_feature_lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625em;
  letter-spacing: .1em;
}

@media screen and (max-width : 600px){
  .add_2023{
    padding: 10.4vw 6vw 12.8vw;
  }
  .add_2023_list_container {
    width: 100%;
    margin: 5.33vw auto 0;
    display: block;
  }
  .add_2023_list_item {
    width: 100%;
    border-radius: 2.67vw;
    padding: 5.33vw;
  }
  .add_2023_list_item + .add_2023_list_item {
    margin-top: 4vw;
  }
  .add_2023_period_ttl {
    width: 28.67vw;
    height: 8.67vw;
    margin: 0 auto 2.67vw;
    font-size: 4.8vw;
    line-height: 8.4vw;
  }
  .add_2023_period_lead {
    font-size: 4vw;
    padding-bottom: 2.67vw;
  }
  .add_2023_period_txt {
    font-size: 3.73vw;
    line-height: 7.33vw;
    margin-bottom: 4vw;
    padding: 0 10px;
  }
  .add_2023_featured_ttl {
    font-size: 4vw;
    padding-bottom: 1.33vw;
  }
  .add_2023_feature_lead {
    font-size: 3.73vw;
    line-height: 1.5em;
  }
}
.bnr-line{
  width: 630px;
  margin: 0 auto 30px;
}
.bnr-line a:hover{
  opacity: 0.7;
}
@media screen and (max-width : 600px){
  .bnr-line{
    width: 100%;
    margin: 5vw auto; 
  } 
}