@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;
}

#container h3{
  position: relative;
  font-size: 38px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.13em;
}
#container h3 span{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 23px;
  letter-spacing: 0.14em;
  color: #0077bf;
}
#container h3: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 h3{
    font-size: 6vw;
    letter-spacing: 0.05em;
  }
  #container h3 span{
    margin-bottom: 2vw;
    font-size: 4.53vw;
    letter-spacing: 0;
  }
  #container h3:before{
    top: -28vw;
  }
}

#container .btn-area{
  text-align: center;
}
#container .btn-area p{
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.16em;
  font-weight: bold;
}
#container .btn-area a{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 200px;
  width: 400px;
  height: 80px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s 0s ease;
}
#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-orange{
    background: -moz-linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
    background: -webkit-linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
    background: -ms-linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
    background: linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
}
@media screen and (max-width : 600px){
  #container .btn-area p{
    margin-bottom: 5vw;
    font-size: 3.73vw;
    letter-spacing: 0;
  }
  #container .btn-area a{
    width: 80vw;
    height: 18.67vw;
    font-size: 4vw;
  }
  #container .btn-area a:after{
    right: 5vw;
  }
}

/* ************************************************************************
*	#mv-area
************************************************************************ */
#mv-area{
  position: relative;
}
#mv-area .mv {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
#mv-area .mv h1 {
  position: absolute;
  bottom: 36px;
  left: 36px;
  width: 34vw;
  z-index: 2;
}
#mv-area .mv-btn-area{
  position: absolute;
  right: 32px;
  bottom: 27px;
  width: 15vw;
  max-width: 220px;
  height: auto;
  z-index: 2;
}
#mv-area .mv-btn-area a{
  transition: all 0.3s 0s ease;
}
.mv-slider {
  position:relative;
  z-index: 1;/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}
.mv-slider-item01 {
  background:url(../images/mv01_pc.jpg);
}
.mv-slider-item02 {
  background:url(../images/mv02_pc.jpg);
}
.mv-slider-item03 {
  background:url(../images/mv03_pc.jpg);
}
.mv-slider-item {
  width: 100%;
  height: 38.19vw;
  min-height: 400px;
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;
}

@media screen and (max-width : 600px){
  #mv-area .mv {
    margin-bottom: 0;
  }
  #mv-area .mv h1 {
    bottom: 6.13vw;
    left: 0;
    width: 70vw;
  }
  .mv-slider-item01 {
    background:url(../images/mv01_sp.jpg);
  }
  .mv-slider-item02 {
    background:url(../images/mv02_sp.jpg);
  }
  .mv-slider-item03 {
    background:url(../images/mv03_sp.jpg);
  }
  .mv-slider-item {
    height: 85vw;
    min-height: 130px;
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;
  }
  #mv-area .mv-btn-area{
    position: relative;
    right: 0;
    bottom: 0;
    padding: 2.67vw;
    width: 100vw;
    box-sizing: border-box;
    height: auto;
  }
  #mv-area .mv-btn{
    width: 94.67vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw;
    border-radius: 10px;
    background-color: #0177bf;
    /*background: -moz-linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
    background: -webkit-linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
    background: -ms-linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);
    background: linear-gradient(left, rgb(230,0,18) 0%,rgb(243,152,0) 100%);*/
  }
  #mv-area .mv-btn p{
    display: inline-block;
    width: 42%;
    box-sizing: border-box;
    padding-left: 3.47vw;
    font-size: 4vw;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
  }
  #mv-area .mv-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-right: 3%;
    border-radius: 5px;
    width: 58%;
    height: 13vw;
    background: #fff;
    font-size: 4.27vw;
    letter-spacing: 0.05em;
    color: #0177bf;
    font-weight: 500;
  }
  #mv-area .mv-btn a:after{
    content: "";
    position: absolute;
    display: block;
    top: 47%;
    right: 6%;
    transform: translateY(-50%) rotate(45deg);
    width: 3vw;
    height: 3vw;
    border-style: solid;
    border-width: 1px;
    border-color: transparent #0177bf #0177bf transparent;
  }
}

/* ************************************************************************
*	#anchor-area
************************************************************************ */
#anchor-area .inner{
  margin: 0 auto;
  padding: 38px 0;
  width: 94%;
  text-align: center;
}
#anchor-area h2{
  margin-bottom: 27px;
  font-size: 28px;
  letter-spacing: 0.15em;
  color: #ffe58a;
}
#anchor-area .anchor-box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
#anchor-area .anchor-box li{
  position: relative;
  border-radius: 15px;
  width: calc(25% - 10px);
  height: 77px;
  background-color: #fff;
  font-weight: bold;
  transition: all 0.3s 0s ease;
}
#anchor-area .anchor-box li:hover{
  opacity: 0.8;
}
#anchor-area .anchor-box li:not(:last-of-type){
  margin-right: 10px;
}
#anchor-area .anchor-box li:after{
  content: "";
  position: absolute;
  display: block;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: transparent #0077bf #0077bf transparent;
}
#anchor-area .anchor-box li a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  width: 100%;
  height: 100%;
  color: #0077bf;
}
#anchor-area .anchor-box li a:hover{
  opacity: 1;
}

@media screen and (max-width : 600px){
  #anchor-area .inner{
    padding: 8.4vw 0 7vw;
    width: 100%;
    max-width: none;
  }
  #anchor-area h2{
    margin-bottom: 6vw;
    font-size: 4.53vw;
    line-height: 1.4;
    letter-spacing: 0;
  }
  #anchor-area .anchor-box{
    justify-content: space-between;
    flex-wrap: wrap;
    width: 87%;
  }
  #anchor-area .anchor-box li{
    border-radius: 7px;
    width: 48%;
    height: 17.3vw;
  }
  #anchor-area .anchor-box li:not(:last-of-type){
    margin-right: 0;
  }
  #anchor-area .anchor-box li:nth-of-type(-n+2){
    margin-bottom: 4%;
  }
  #anchor-area .anchor-box li:after{
    border-width: 1px;
  }
  #anchor-area .anchor-box li a{
    padding-bottom: 3%;
    font-size: 3.73vw;
  }

}

/* ************************************************************************
*	#sec01
************************************************************************ */
#sec01{
  padding: 113px 0 42px;
}
#sec01 h3:before{
  width: 140px;
  height: 107px;
  background-image: url(../images/icon_seminar.svg);
}
#sec01 .row{
  justify-content: center;
  align-items: center;
  margin: 50px auto 0;
  width: 70%;
  max-width: 1000px;
  min-width: 590px;
}
#sec01 .row img{
  width: auto;
}
#sec01 .row p{
  text-align: justify;
  text-justify: inter-ideograph;
  margin-left: 40px;
  font-size: 16px;
}
#sec01 .btn-area{
  padding: 40px 0;
}

@media screen and (max-width : 600px){
  #sec01{
    padding: 29.7vw 6vw 6vw;
  }
  #sec01 h3:before{
    width: 37vw;
    height: 28vw;
  }
  #sec01 .row{
    margin-top: 6.2vw;
    width: 100%;
    min-width: 0;
  }
  #sec01 .row img{
    width: 50vw;
  }
  #sec01 .row p{
    margin:6.6vw 0 0 0;
    font-size: 3.73vw;
    line-height: 1.4;
  }
  #sec01 .btn-area{
    padding: 6.27vw 0 6.93vw;
  }
}

/* sec01-reservation */
#sec01 .sec01-reservation{
  margin: 0 auto;
  padding: 72px 40px 32px;
  width: 94%;
  background-color: #f0f8fc;
  text-align: center;
}
#sec01 .sec01-reservation h4{
  display: inline-block;
  position: relative;
  font-size: 29px;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: 0.15em;
  color: #0077bf;
}
#sec01 .sec01-reservation h4:before{
  content: "";
  position: absolute;
  top: 60%;
  left: -28px;
  transform: translateY(-50%) rotate(-35deg);
  width: 3px;
  height: 100%;
  background-color: #0077bf;
}
#sec01 .sec01-reservation h4:after{
  content: "";
  position: absolute;
  top: 60%;
  right: -21px;
  transform: translateY(-50%) rotate(35deg);
  width: 3px;
  height: 100%;
  background-color: #0077bf;
}
@media screen and (max-width : 600px){
  #sec01 .sec01-reservation{
    padding: 9.6vw 5vw 0;
    width: 100%;
  }
  #sec01 .sec01-reservation h4{
    font-size: 4.8vw;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
  #sec01 .sec01-reservation h4:before{
    top: 57%;
    left: -9%;
    transform: translateY(-50%) rotate(-28deg);
  }
  #sec01 .sec01-reservation h4:after{
    top: 57%;
    right: -8%;
    transform: translateY(-50%) rotate(28deg);
  }
}
/* .step */
#sec01 .step{
  display: inline-flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 70px;
  width: 100%;
  height: 100%;
  max-width: 1300px;
}
#sec01 .step li{
  display: block;
  position: relative;
  padding: 37px 24px 64px;
  border: 2px solid #0077bf;
  border-radius: 15px;
  width: calc(25% - 22px);
  height: 100%;
  background-color: #fff;
}
#sec01 .step li:not(:last-of-type):after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #0077bf;
}
#sec01 .step li img{
  position: absolute;
  top: -2.7vw;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: auto;
  max-width: 152px;
}
#sec01 .step li p{
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #0077bf;
}
#sec01 .step li p span{
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: normal;
  color: #333;
}
#sec01 .step li a{
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid #0077bf;
  border-radius: 0 0 13px 13px;
  background-color: #0077bf;
  padding: 10px 0;
  width: 101%;
  color: #fff;
  transition: all 0.3s 0s ease;
}
/*#sec01 .step li a:hover{
  background-color: #0077bf;
  color: #fff;
  opacity: 1;
}*/
#sec01 .step li a:after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%) rotate(45deg);
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s 0s ease;
}
/*#sec01 .step li a:hover:after{
  border-color: #fff;
}*/
@media screen and (max-width : 600px){
  #sec01 .step{
    margin-top: 13.6vw;
  }
  #sec01 .step li{
    padding: 7.87vw 7.33vw 7.47vw;
    width: 100%;
  }
  #sec01 .step li:first-of-type{
    padding-bottom: 18.13vw;
  }
  #sec01 .step li:not(:last-of-type){
    margin-bottom: 21.33vw;
  }
  #sec01 .step li:not(:last-of-type):after{
    top: 112%;
    right: 50%;
    transform: translate(50%, 0);
    border-width: 4vw 3.33vw 0 3.33vw;
    border-color: #0077bf transparent transparent transparent;
  }
  #sec01 .step li img{
    top: -10.7vw;
    max-width: none;
  }
  #sec01 .step li p{
    font-size: 4.27vw;
  }
  #sec01 .step li p span{
    margin-top: 2.67vw;
    font-size: 3.73vw;
  }
  #sec01 .step li a{
    padding: 3.2vw 0;
    font-size: 3.73vw;
  }
  #sec01 .step li a:after{
    top: 50%;
    right: 4.5vw;
    width: 2.5vw;
    height: 2.5vw;
  }
}
/* .merit */
#sec01 .ttl-merit{
  margin-top: 90px;
}
#sec01 .merit{
  width: clamp(730px,70vw,1000px);
  align-items: stretch;
}
#sec01 .merit li{
  padding: 5px 25px 0 25px;
}
#sec01 .merit li:first-of-type{
  padding-left: 0;
}
#sec01 .merit li:nth-of-type(3n){
  padding-right: 0;
}
#sec01 .merit li:not(:last-of-type){
  border-right: 1px dashed #cecece;
}
#sec01 .merit .merit-content img:first-of-type{
  display: block;
  margin: 0 auto 20px;
  width: 30%;
  height: auto;
}
#sec01 .merit .merit-content img:nth-of-type(2){
  width: 100%;
  max-width: 300px;
}
#sec01 .merit li p{
  margin: 15px 0 0 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width : 600px){
  #sec01 .ttl-merit{
    margin-top: 16vw;
  }
  #sec01 .merit{
    width: 100%;
  }
  #sec01 .merit li{
    padding: 6.67vw 0;
    border-bottom: 1px dashed #cecece;
  }
  #sec01 .merit li:not(:last-of-type){
    border-right: none;
  }
  #sec01 .merit .merit-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #sec01 .merit .merit-content img:first-of-type{
    margin: 0;
    width: 27%;
    height: auto;
  }
  #sec01 .merit .merit-content img:nth-of-type(2){
    width: 60%;
    max-width: none;
  }
  #sec01 .merit li p{
    margin: 6.67vw 0 0 0;
    font-size: 4.27vw;
  }
  #container #sec01 .sec01-reservation .btn-area a{
    width: 100%;
  }
}

/* ************************************************************************
*	#sec02
************************************************************************ */
#sec02{
  padding: 148px 0 100px;
  background-color: #f7f7f7;
}
#sec02 h3:before{
  width: 140px;
  height: 107px;
  background-image: url(../images/icon_information.svg);
}
#sec02 .row{
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 70px auto 0;
  width: 70vw;
  max-width: 1000px;
  min-width: 900px;
}
#sec02 .row li{
  position: relative;
  padding: 84px 23px 24px;
  border: 2px solid #0077bf;
  border-radius: 20px;
  width: calc(33.33% - 20px);
  background-color: #fff;
}
#sec02 .row li:nth-last-of-type(n+3){
  margin-bottom: 30px;
}
#sec02 .row li a{
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid #0077bf;
  border-radius: 20px 20px 0 0;
  padding: 15px 0 15px 20px;
  width: 101%;
  font-size: 18px;
  letter-spacing: 0.14em;
  font-weight: bold;
  color: #0077bf;
  transition: all 0.3s 0s ease;
}
#sec02 .row li:not(:nth-of-type(3)) a:hover{
  background-color: #0077bf;
  color: #fff;
  opacity: 1;
}
#sec02 .row li:nth-of-type(3) a:hover{
  opacity: 1;
}
#sec02 .row li:not(:nth-of-type(3)) a:before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border: 1px solid #0077bf;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transition: all 0.3s 0s ease;
}
#sec02 .row li:not(:nth-of-type(3)) a:after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(45deg);
  border-style: solid;
  border-width: 1px;
  border-color: #0077bf #0077bf transparent transparent;
  width: 6px;
  height: 6px;
}
#sec02 .row li p{
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.1em;
}
@media screen and (max-width : 600px){
  #sec02{
    padding: 33.33vw 6vw 7.73vw;
  }
  #sec02 h3:before{
    width: 37vw;
    height: 28vw;
  }
  #sec02 .row{
    margin-top: 8.53vw;
    width: 100%;
    min-width: 0;
  }
  #sec02 .row li{
    position: relative;
    padding: 20.67vw 6.27vw 6.27vw;
    border-radius: 15px;
    width: 100%;
  }
  #sec02 .row li:nth-last-of-type(n+3){
    margin-bottom: 0;
  }
  #sec02 .row li:not(:last-of-type){
    margin-bottom: 4vw;
  }
  #sec02 .row li a{
    padding: 4.33vw 0 4.33vw 5.33vw;
    border-radius: 15px 15px 0 0 ;
    font-size: 4.53vw;
    letter-spacing: 0.1em;
  }
  #sec02 .row li a:before{
    right: 3vw;
    width: 5.8vw;
    height: 5.8vw;
  }
  #sec02 .row li a:after{
    right: 5.3vw;
    width: 1.5vw;
    height: 1.5vw;
  }
  #sec02 .row li p{
    font-size: 3.47vw;
    letter-spacing: 0.03em;
  }
}
/* ************************************************************************
*	#sec03
************************************************************************ */
#sec03{
  padding: 148px 0 100px;
}
#sec03 h3:before{
  width: 140px;
  height: 107px;
  background-image: url(../images/icon_story.svg);
}
@media screen and (max-width : 600px){
  #sec03{
    padding: 33.33vw 6vw 11.2vw;
  }
  #sec03 h3:before{
    width: 37vw;
    height: 28vw;
  }
}

#sec03 .tab-area{
  margin: 50px auto;
  width: 70vw;
  max-width: 1000px;
  min-width: 900px;
}
#sec03 .tab{
	display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
#sec03 .tab li{
  width: calc(25% - 3px);
}
#sec03 .tab li a{
	display: inline-block;
  position: relative;
	padding: 28px 0 40px;
  width: 100%;
	background:#f3f3f3;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.15em;
  font-weight: bold;
  transition: all 0.3s 0s ease;
  opacity: 1;
}
#sec03 .tab li:first-of-type a{
  border-top: 6px solid #0077bf;
  color: #0077bf;
}
#sec03 .tab li:nth-of-type(2) a{
	border-top: 6px solid #f39600;
  color: #f39600;
}
#sec03 .tab li:nth-of-type(3) a{
	border-top: 6px solid #fc7070;
  color: #fc7070;
}
#sec03 .tab li:nth-of-type(4) a{
	border-top: 6px solid #00a73c;
  font-size: 16px;
  color: #00a73c;
}
#sec03 .tab li a:after{
  content: "";
  position: absolute;
  display: block;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px;
  transition: all 0.3s 0s ease;
}
#sec03 .tab li:first-of-type a:after{
  border-color: transparent #0077bf #0077bf transparent;
}
#sec03 .tab li:nth-of-type(2) a:after{
  border-color: transparent #f39600 #f39600 transparent;
}
#sec03 .tab li:nth-of-type(3) a:after{
  border-color: transparent #fc7070 #fc7070 transparent;
}
#sec03 .tab li:nth-of-type(4) a:after{
  border-color: transparent #00a73c #00a73c transparent;
}
/*liにactiveクラスがついた時*/
#sec03 .tab li.active a,#sec03 .tab li:hover a{
  color: #fff;
}
#sec03 .tab li.active:first-of-type a,#sec03 .tab li:hover:first-of-type a{
	background:#0077bf;
}
#sec03 .tab li.active:nth-of-type(2) a,#sec03 .tab li:hover:nth-of-type(2) a{
	background:#f39600;
}
#sec03 .tab li.active:nth-of-type(3) a,#sec03 .tab li:hover:nth-of-type(3) a{
	background:#fc7070;
}
#sec03 .tab li.active:nth-of-type(4) a,#sec03 .tab li:hover:nth-of-type(4) a{
	background:#00a73c;
}
#sec03 .tab li.active a:after,#sec03 .tab li:hover a:after{
  border-color: transparent #fff #fff transparent;
}

@media screen and (max-width : 600px){
  #sec03 .tab-area{
    margin: 7.6vw auto 6.27vw;
    width: 100%;
    min-width: 0;
  }
  #sec03 .tab{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #sec03 .tab li{
    margin-bottom: 0.67vw;
    width: calc(50% - 3px);
  }
  #sec03 .tab li a{
    padding: 6.4vw 0 7.07vw;
    width: 100%;
    font-size: 3.47vw;
    letter-spacing: 0;
  }
  #sec03 .tab li:nth-of-type(4) a{
    font-size: 3.47vw;
  }
  #sec03 .tab li a:after{
    bottom: 3vw;
    width: 3vw;
    height: 3vw;
    border-width: 1px;
  }
}

#sec03 .tab-contents{
	/*display: none;
	opacity: 0;*/
  display: block;
  margin-top:-100px;
  padding-top:100px;
  position: relative;
}
#sec03 .tab-contents .add-tab{
  position: relative;
	padding: 40px 40px 46px;
}
#sec03 .tab-contents.hide{
  display: none;
	opacity: 0;
}
#sec03 .tab-contents:first-of-type .add-tab{
  background-color: #0077bf;
}
#sec03 .tab-contents:nth-of-type(2) .add-tab{
  background-color: #f39600;
}
#sec03 .tab-contents:nth-of-type(3) .add-tab{
  background-color: #fc7070;
}
#sec03 .tab-contents:nth-of-type(4) .add-tab{
  background-color: #00a73c;
}
/*tab-contentsに.is-activeがついた時の形状*/
#sec03 .tab-contents.is-active {
  display: block;
  animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
#sec03 .tab-contents .row{
  justify-content: space-between;
}
#sec03 .tab-contents .story{
  position: relative;
  padding: 30px 30px 40px;
  border-radius: 15px;
  width: calc(50% - 20px);
  background-color: #fff;
  height: auto;
}
#sec03 .tab-contents .story h4{
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: bold;
}
#sec03 .tab-contents:first-of-type .story h4{
  color: #0077bf;
}
#sec03 .tab-contents:nth-of-type(2) .story h4{
  color: #f39600;
}
#sec03 .tab-contents:nth-of-type(3) .story h4{
  color: #fc7070;
}
#sec03 .tab-contents:nth-of-type(4) .story h4{
  color: #00a73c;
}
#sec03 .tab-contents .profile{
  padding: 20px 0;
  border-bottom: 1px dashed #d1d1d1;
}
#sec03 .tab-contents .profile img{
  margin: 0 auto 22px;
  width: 100%;
  max-width: 370px;
  height: auto;
}
#sec03 .tab-contents .profile p{
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
#sec03 .tab-contents .profile p .name{
  display: inline-block;
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
#sec03 .tab-contents .story-txt{
  margin-top: 24px;
  padding-bottom: 72px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
#sec03 .tab-contents .story-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  width: calc(100% - 30px * 2);
  height: 45px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s 0s ease;
}
#sec03 .tab-contents .story-btn:after{
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px;
  border-color: transparent #fff #fff transparent;
}
#sec03 .tab-contents:first-of-type .story-btn{
  background-color: #0077bf;
}
#sec03 .tab-contents:nth-of-type(2) .story-btn{
  background-color: #f39600;
}
#sec03 .tab-contents:nth-of-type(3) .story-btn{
  background-color: #fc7070;
}
#sec03 .tab-contents:nth-of-type(4) .story-btn{
  background-color: #00a73c;
}

@media screen and (max-width : 600px){
  #sec03 .tab-contents{
    display: block;
    margin-top:-43vw;
    padding-top:43vw;
    position: relative;
  }
  #sec03 .tab-contents .add-tab{

    padding: 7.47vw 0 5.6vw;
  }
  #sec03 .tab-contents .row{
    flex-direction: row;
  }
  #sec03 .tab-contents .story{
    display: inline-block;
    padding: 5.73vw 5.33vw 22.27vw;
    border-radius: 10px;
    /* width: calc(70% - 2vw); */
    height: auto;
  }
  #sec03 .tab-contents .story h4{
    white-space: normal;
    font-size: 3.73vw;
  }
  #sec03 .tab-contents .profile{
    display: flex;
    align-items: flex-start;
    padding: 4.4vw 0;
    border-bottom: none;
  }
  #sec03 .tab-contents .profile img{
    margin: 0;
    width: 21.33vw;
    max-width: 161px;
  }
  #sec03 .tab-contents .profile p{
    margin-left: 3.6vw;
    font-size: 3.2vw;
    line-height: 1.4;
    letter-spacing: 0;
  }
  #sec03 .tab-contents .profile p .name{
    margin-bottom: 2vw;
    font-size: 4vw;
    line-height: 1.4;
    font-weight: 500;
  }
  #sec03 .tab-contents .story-txt{
    /* display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    position: relative;
    margin-top: 0;
    padding-bottom: 0;
    /* height: 22vw; */
    font-size: 3.47vw;
    line-height: 1.57;
    letter-spacing: 0.05em;
    overflow: hidden;
  }
  /* @media all and (-ms-high-contrast:none){
    *::-ms-backdrop, #sec03 .tab-contents .story-txt{
      text-justify: inter-ideograph;
    }
    *::-ms-backdrop, #sec03 .tab-contents .story-txt:before{
      content: "";
      position: absolute;
      bottom: 0.8vw;
      right: 0;
      width: 1.2em;
      height: 1em;
      background: #fff;
    }
    *::-ms-backdrop, #sec03 .tab-contents .story-txt:after{
      content: "...";
      position: absolute;
      bottom: 1.3vw;
      right: 0;
      width: 1em;
    }
  } */
  #sec03 .swiper-container.tabSwiper{
    position: relative;
  }
  #sec03 .tab-contents .story-btn{
    bottom: 5.87vw;
    border-radius: 7px;
    width: calc(100% - 30px * 2);
    height: 11vw;
    font-size: 3.47vw;
    letter-spacing: 0.1em;
  }
  #sec03 .tab-contents .story-btn:after{
    right: 2.8vw;
    width: 2.2vw;
    height: 2.2vw;
    border-width: 1px;
  }
  /* 矢印 */
  .swiper-button-next{
    display: block;
    position: absolute;
    top: 50%;
    right: -2vw;
    border-radius: 50%;
    width: 8.5vw;
    height: 8.5vw;
    background-image: none;
    background-color: #003250;
  }
  .swiper-button-next:before{
    content: "";
    display: block;
    position: absolute;
    top: 2.7vw;
    right: 3.1vw;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    width: 2.8vw;
    height: 2.8vw;
    transform: rotate(45deg);
    cursor: pointer;
  }
  .swiper-button-prev{
    display: block;
    position: absolute;
    top: 50%;
    left: -2vw;
    border-radius: 50%;
    width: 8.5vw;
    height: 8.5vw;
    background-image: none;
    background-color: #003250;
  }
  .swiper-button-prev:before{
    content: "";
    display: block;
    position: absolute;
    top: 2.7vw;
    left: 3.1vw;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    width: 2.8vw;
    height: 2.8vw;
    transform: rotate(-135deg);
    cursor: pointer;
  }
  .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 0;
  }
    /* ページネーション */
  .swiper-container.tabSwiper01,
  .swiper-container.tabSwiper02,
  .swiper-container.tabSwiper03,
  .swiper-container.tabSwiper04{
    padding: 0 4.5% 16.13vw 4.5%;
  }
  .swiper-pagination-bullet {
    padding-top: 1.7vw;
    border: 1px solid #fff;
    width: 8.27vw;
    height: 8.27vw;
    font-size: 3.73vw;
    line-height: 1.2;
    opacity: 1;
  }
  #tab01 .swiper-pagination-bullet{
    background-color: #1984c5;
    color: #fff;
  }
  #tab02 .swiper-pagination-bullet{
    background-color: #f39600;
    color: #fff;
  }
  #tab03 .swiper-pagination-bullet{
    background-color: #fc7070;
    color: #fff;
  }
  #tab04 .swiper-pagination-bullet{
    background-color: #00a73c;
    color: #fff;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 2%;
  }
  /* ページネーション 現在のスライドのスタイル */
  #tab01 .swiper-pagination-bullet-active{
    background-color: #fff;
    color: #1984c5;
  }
  #tab02 .swiper-pagination-bullet-active{
    background-color: #fff;
    color: #f39600;
  }
  #tab03 .swiper-pagination-bullet-active{
    background-color: #fff;
    color: #fc7070;
  }
  #tab04 .swiper-pagination-bullet-active{
    background-color: #fff;
    color: #00a73c;
  }
}

#sec03 .btn-area > div:not(:first-of-type) {
  margin-top: 48px;
}
@media screen and (max-width : 600px){
  #sec03 .btn-area > div:not(:first-of-type) {
    margin-top: 8.93vw;
  }
}
/* ************************************************************************
*	#sec04
************************************************************************ */
#sec04{
  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 );
}
#sec04 h3:before{
  width: 140px;
  height: 107px;
  background-image: url(../images/icon_faq.svg);
}
#sec04 h3 span{
  margin: 47px 0 50px;
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: 0.18em;
  font-weight: normal;
  color: #333;
}
#sec04 dl{
  margin: 0 auto;
  width: 70%;
  max-width: 1000px;
  min-width: 590px;
}
#sec04 dt,#sec04 dd .row{
  align-items: center;
}
#sec04 dt p:first-of-type,#sec04 dd .row p:first-of-type{
  width: 6.3%;
  font-family: 'Roboto', sans-serif;
  font-size: 35px;
  text-align: center;
  font-weight: 700;
}
#sec04 dt p:last-of-type,#sec04 dd .row p:last-of-type{
  border-left: 1px solid #d4d4d4;
  padding: 0 27px 0;
  width: 93.7%;
}
#sec04 dt{
  padding: 9px 0;
  background-color: #fff;
  color: #0077bf;
  cursor: pointer;
  transition: all 0.3s 0s ease;
}
#sec04 dt:hover{
  opacity: 0.7;
}
#sec04 dt:not(:first-of-type){
  margin-top: 15px;
}
#sec04 dt p:last-of-type{
  position: relative;
  font-size: 20px;
  letter-spacing: 0.16em;
  font-weight: bold;
}
#sec04 dt p:last-of-type:before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background-color: #0077bf;
}
#sec04 dt p:last-of-type:after{
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 22px;
  transform: translateY(-50%) rotate(135deg);
  border-style: solid;
  border-width: 2px;
  border-color: #fff #fff transparent transparent;
  width: 9px;
  height: 9px;
}
#sec04 dt.active p:last-of-type:after{
  top: 58%;
  border-color:  transparent transparent#fff #fff;
}
#sec04 dd{
  display: none;
  border-top: 1px solid #d4d4d4;
}
#sec04 dd .row{
  padding: 9px 0;
  background-color: #fff;
}
#sec04 dd .row p:first-of-type{
  color: #ff6d1e;
}
#sec04 dd .row p:last-of-type{
  font-size: 16px;
  line-height: 1.56;
  letter-spacing: 0.16em;
}
#sec04 .btn-area{
  padding-top: 56px;
}
#sec04 .btn-area > div:not(:first-of-type){
  margin-top: 48px;
}

@media screen and (max-width : 600px){
  #sec04{
    padding: 37.47vw 6vw 22.4vw;
  }
  #sec04 h3:before{
    width: 37vw;
    height: 28vw;
  }
  #sec04 h3 span{
    margin: 5.87vw 0 6vw;
    font-size: 3.73vw;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }
  #sec04 dl{
    width: 100%;
    min-width: 0;
  }
  #sec04 dt.row,#sec04 dd .row{
    flex-direction: row;
  }
  #sec04 dt p:first-of-type,#sec04 dd .row p:first-of-type{
    width: 12%;
    font-size: 6.67vw;
  }
  #sec04 dt p:last-of-type,#sec04 dd .row p:last-of-type{
    padding-left: 3.73vw;
    width: 88%;
  }
  #sec04 dt{
    padding: 2vw 0;
  }
  #sec04 dt:not(:first-of-type){
    margin-top: 2.67vw;
  }
  #sec04 dt p:last-of-type{
    padding: 3.33vw 14.67vw 3.33vw 3.73vw;
    font-size: 4.27vw;
  }
  #sec04 dt p:last-of-type:before{
    right: 3.33vw;
    width: 5vw;
    height: 5vw;
  }
  #sec04 dt p:last-of-type:after{
    top: 47%;
    right: 4.8vw;
    border-width: 1px;
    width: 2vw;
    height: 2vw;
  }
  #sec04 dt.active p:last-of-type:after{
    top: 55%;
  }
  #sec04 dd .row{
    padding: 4vw 0;
  }
  #sec04 dd .row p:last-of-type{
    padding-right: 3.73vw;
    font-size: 3.47vw;
  }
  #sec04 .btn-area{
    padding-top: 9.33vw;
  }
  #sec04 .btn-area > div:not(:first-of-type){
    margin-top: 8.93vw;
  }
}


/* ************************************************************************
*	slider
************************************************************************ */
/* mv */
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
