@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap');

/* common
------------------------------------*/
.grade_bg {
    position: relative;
    line-height: 2.5;
}
.grade_bg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient( 90deg, rgb(207,245,255) 0%, rgb(240,255,231) 100%);
    transform: skewY(-5deg);
    z-index: -1;
}
.grade_bg.rev::after {
    transform: skewY(5deg);
}
.features_cassette .title01 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 30px;
}
.features_cassette .title01 .en {
    display: block;
    font-size: 0.9rem;
    color: #8bd7bb;
    margin-bottom: 10px;
}
.features_cassette .flex {
    align-items: center;
}
.grade_bg.features_cassette .title01 .en {
    color: #57b9f7;
}
.line {
  display: inline-block;
  position: relative;
    z-index: 1;
    font-size: 1.2rem;
  font-weight: bold;
  color: #6ec6ff;
}

/* アンダーライン用の疑似要素 */
.line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 8px;
  background: #ffea55;
  transition: width 0.8s ease;
    z-index: -1;
}

/* クラスが付いたらアニメーションでアンダーライン */
.line.underline::after {
  width: 100%;
}
.indexLayout .common_h2 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 40px;
}
.indexLayout .common_h2 .en {
    color: #6ec6ff;
    display: block;
    font-size: 0.9rem;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .grade_bg .flex_box01:first-child {
                width: 55%;
            }
            .grade_bg .flex_box01:last-child {
                width: 41%;
            }
            .indexLayout .common_h2 {
                font-size: 2rem;
            }
            .indexLayout .common_h2 .en {
                font-size: 1.1rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .features_cassette .title01 {
                font-size: 2.6rem;
            }
            .features_cassette .title01 .en {
                font-size: 1.3rem;
            }
            .indexLayout .common_h2 {
                font-size: 2.3rem;
                margin-bottom: 60px;
            }
            .indexLayout .common_h2 .en {
                font-size: 1.3rem;
            }
        }


/* loading
------------------------------------*/
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background:#fff;
	text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 90%;
}
#splash_logo p {
    font-size: 1.8rem;
}
#splash_logo span {
    background: linear-gradient(0deg, rgb(110, 198, 255) 0%, rgb(166, 231, 125) 100%);
  -webkit-background-clip: text;
  background-clip: text; /* これもあった方がよい */
  -webkit-text-fill-color: transparent;
  color: transparent; /* 念のため */
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #splash_logo p {
                font-size: 2.5rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            #splash_logo p {
                font-size: 3rem;
            }
        }



/* mainImg
------------------------------------*/
#mainImg { 
	width: 100%;
	height: 80vh;
    background: url("../img/index/main01_sp.jpg")no-repeat center center/cover;
    position: relative;
}
#mainTxt {
    position: absolute;
    z-index: 1;
    top: 70%;
    left: 0;
  transform: translateY(-40%);
    font-size: 1.4rem;
    font-family: "Klee One", cursive;
  font-weight: 600;
    line-height: 1;
}

/*全共通*/

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgb(110,198,255) 0%, rgb(166,231,125) 100%);/*伸びる背景色の設定*/
    top: 0;
  left: 0;
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
  padding: 20px;
}
.bgappearTrigger {
    background-color: rgba(255, 255, 255, 0.8);
    display: table;
}
.bgappearTrigger:not(:last-child) {
    margin-bottom: 10px;
}




        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #mainImg {
               background-image: url("../img/index/main01.jpg");
            }
            #mainTxt {
                font-size: 2.4rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            #mainImg { 
                height: 90vh;
            }
            #mainTxt {
                left: 10%;
            }
        }
        


/* news_cassette
------------------------------------*/
.news_cassette {
    position: relative;
}
.news_cassette > div {
    position: absolute;
    z-index: 100;
    padding: 20px;
    top: -60px;
    right: 20px;
    background-color: #fff;
    width: calc(100% - 80px);
    border-radius: 80px;
    max-width: 720px;
    display: flex;
    align-items: center;
    gap: 0 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.news_cassette .ttl01 {
    color: #fff;
    background-color: #efd75a;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}
.news_cassette ul {
    width: calc(100% - 70px);
    font-size: 0.8rem;
}
.news_cassette a {
    display: block;
    padding-right: 30px;
    position: relative;
}
.news_cassette a:hover {
    color: #57b9f7;
}
.news_cassette a::after {
    position: absolute;
    content: "→";
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #57b9f7;
    transition: all 0.3s;
}
.news_cassette a:hover::after {
    right: 0;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .news_cassette > div {
                padding: 20px 40px;
                width: calc(100% - 130px);
            }
            .news_cassette ul, .news_cassette .ttl01 {
                font-size: 0.9rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .news_cassette ul {
                font-size: 1rem;
                width: calc(100% - 110px);
            }
            .news_cassette .ttl01 {
                width: 80px;
                height: 80px;
                font-size: 1rem;
            }
        }




 /* c01
------------------------------------*/
.indexLayout #c01 {
    text-align: center;
    padding: 150px 0 100px;
}
.indexLayout #c01 h2 {
    background: linear-gradient( 90deg, rgb(110,198,255) 0%, rgb(166,231,125) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  font-size: 3rem;
    text-align: center;
    letter-spacing: 4px;
    line-height: 1.5;
}
.indexLayout #c01 p {
    font-weight: bold;
    font-size: 1.2rem;
}





        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c01 {
                padding: 160px 0;
            }
            .indexLayout #c01 h2 {
              font-size: 4rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .indexLayout #c01 {
                padding: 220px 0;
            }
            .indexLayout #c01 h2 {
              font-size: 5.5rem;
            }
            .indexLayout #c01 p {
                font-size: 1.6rem;
            }
        }


/* c02
------------------------------------*/




        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c02 {
                padding: 100px 0 120px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .indexLayout #c02 {
                padding: 100px 0 140px;
            }
        }
        


 /* c03
------------------------------------*/




        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c03 {
                padding: 140px 0;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .indexLayout #c03 {
                padding: 150px 0 170px;
            }
        }


/* c04
------------------------------------*/




        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c04 {
                padding: 100px 0 110px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .indexLayout #c04 {
                padding: 140px 0 120px;
            }
        }
        


 /* c05
------------------------------------*/




        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }


/* c06
------------------------------------*/
.indexLayout #c06 {
    background-color: #d7f5fd;
    position: relative;
    
    padding: 220px 0 100px;
}
.indexLayout #c06::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    clip-path: polygon(100% 0%, 0 100%, 100% 100%);
    background-color: #d7f5fd;
    top: -49px;
    left: 0;
}
.indexLayout #c06::after {
    position: absolute;
    content: "Customer Care";
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
    top: 40px;
    right: 0;
    font-size: 5.5rem;
    text-align: right;
    line-height: 1;
    color: #fff;
}
.indexLayout #c06 .w_bg {
    background-color: #fff;
    padding: 40px 0;
    box-shadow: 0px 0px 42px 0px rgba(0, 134, 205, 0.1);
    border-radius: 20px;
}
.indexLayout #c06 .w_bg > div {
    width: 92%;
    margin: 0 auto;
    max-width: 960px;
}
.indexLayout #c06 h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 40px;
}
.indexLayout #c06 h2 .s {
    font-size: 1.2rem;
}
.indexLayout #c06 h2 .sub_ttl {
    color: #6ec6ff;
    display: block;
    font-size: 0.9rem;
}
.indexLayout #c06 .flex_box01 img {
    max-width: 280px;
    width: 60%;
}

        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c06 .w_bg {
                padding: 60px 0;
                border-radius: 30px;
            }
            .indexLayout #c06 {
                margin-top: 100px;
                padding: 170px 0;
            }
            .indexLayout #c06::before {
                height: 110px;
                top: -109px;
            }
            .indexLayout #c06::after {
                font-size: 7.5rem;
            }
            .indexLayout #c06 h2 {
                font-size: 2rem;
            }
            .indexLayout #c06 h2 .s {
                font-size: 1.4rem;
            }
            .indexLayout #c06 h2 .sub_ttl {
                font-size: 0.9rem;
            }
            .indexLayout #c06 .flex_box01:first-child {
                width: 55%;
            }
            .indexLayout #c06 .flex_box01:last-child {
                width: 41%;
            }
            .indexLayout #c06 .w_bg > div {
                align-items: center;
            }
            .indexLayout #c06 .flex_box01 img {
                width: 100%;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .indexLayout #c06 {
                padding: 250px 0 200px;
            }
            .indexLayout #c06::before {
                height: 150px;
                top: -149px;
            }
            .indexLayout #c06::after {
                top: 90px;
                font-size: 10rem;
            }
            .indexLayout #c06 h2 {
                font-size: 2.5rem;
            }
            .indexLayout #c06 h2 .s {
                font-size: 1.6rem;
            }
            .indexLayout #c06 h2 .sub_ttl {
                font-size: 0.9rem;
            }
        }


/* c07
------------------------------------*/
.indexLayout #c07 {
    background: url("../img/index/index_c07_bg01.png")no-repeat bottom center/contain;
}
.indexLayout #c07 .voice_li {
    gap: 90px 4%;
    margin-top: 90px;
}
.indexLayout #c07 .flex_box02 {
    position: relative;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 24px 0px rgba(0, 134, 205, 0.25);
}
.indexLayout #c07 .flex_box02 a {
    display: block;
    padding: 60px 20px 70px;
}
.indexLayout #c07 .flex_box02 .img_box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    text-align: center;
}
.indexLayout #c07 .flex_box02 .img_box img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
}
.indexLayout #c07 .hyoka_li {
    color: #efd75a;
    text-align: center;
    font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.indexLayout #c07 .cat_icon {
    margin: 0 auto;
    text-align: center;
    color: #6ec6ff;
    font-size: 0.9rem;
    display: table;
    padding: 7px 10px;
  border-radius: 5px;
    border: 1px solid #6ec6ff;
    line-height: 1;
    margin-bottom: 10px;
}
.indexLayout #c07 .ttl {
    color: #6ec6ff;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
}
.indexLayout #c07 .link_t {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
}
.indexLayout #c07 .link_t span {
    display: inline-block;
    padding-right: 30px;
    color: #6ec6ff;
    font-weight: bold;
}
.indexLayout #c07 .link_t span::after {
    position: absolute;
    content: "＞";
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all 0.3s;
}
.indexLayout #c07 .flex_box02 a {
    height: calc(100% - 130px);
    border-radius: 20px;
}
.indexLayout #c07 .flex_box02 a:hover {
    background-color: #eef8ff;
}
.indexLayout #c07 .flex_box02 a:hover .link_t span::after {
    right: 0;
}
.indexLayout #c07 .btn01 {
    margin-top: 70px;
}
.indexLayout #c07 .bnr_box a {
    display: block;
    margin: 60px auto 0;
    max-width: 980px;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.indexLayout #c07 .bnr_box a::before, .indexLayout #c07 .bnr_box a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    top: 0;
    left: 0;
    border-radius: 20px;
}
.indexLayout #c07 .bnr_box a::before {
    background: linear-gradient( 90deg, rgb(110,198,255), rgb(166,231,125));
    z-index: -1;
}
.indexLayout #c07 .bnr_box a::after {
    background: linear-gradient( -90deg, rgb(110,198,255), rgb(166,231,125));
    z-index: -2;
}
.indexLayout #c07 .bnr_box a:hover::before {
    opacity: 0;
}
.indexLayout #c07 .bnr_box a > div {
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 20px 130px;
    background: url("../img/index/index_c07_img01_sp.png")no-repeat center bottom/cover;
}
.indexLayout #c07 .bnr_box a > div .ttl_box {
    max-width: 375px;
}
.indexLayout #c07 .bnr_box a > div .ttl {
    background: linear-gradient( 90deg, rgb(110,198,255) 0%, rgb(166,231,125) 100%);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexLayout #c07 .bnr_box a > div .ttl_box .en {
    color: #818181;
    display: table;
    padding-right: 30px;
    position: relative;
    font-size: 0.9rem;
    margin: 0 auto;
}
.indexLayout #c07 .bnr_box a > div .en::after {
    position: absolute;
    content: "＞";
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all 0.3s;
}
.indexLayout #c07 .bnr_box a:hover > div .en::after {
    right: 0;
}

        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c07 {
                padding-bottom: 220px;
            }
            
            .indexLayout #c07 .flex_box02 a {
                padding: 60px 40px 70px;
            }
            .indexLayout #c07 .flex_box02 a::before, .indexLayout #c07 .flex_box02 a::after {
                border-radius: 30px;
            }
            .indexLayout #c07 .voice_li {
                margin-top: 120px;
            }
            .indexLayout #c07 .bnr_box a > div {
                padding: 40px;
                border-radius: 20px;
                background-image: url("../img/index/index_c07_img01.png");
            }
            .indexLayout #c07 .bnr_box a > div .ttl {
                font-size: 2rem;
                text-align: left;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }


/* c08
------------------------------------*/
.indexLayout #c08 .inner {
    max-width: 980px;
}
.indexLayout #c08 .flow_box {
    position: relative;
    padding-top: 40px;
}
.indexLayout #c08 .flow_box:not(:last-child) {
    padding-bottom: 40px;
}
.indexLayout #c08 .flow_box:not(:last-child)::after {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
  height: 25px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color: #d7f5fd;
}
.indexLayout #c08 .step {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient( 90deg, rgb(110,198,255), rgb(166,231,125));
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
    line-height: 1;
    font-size: 0.8rem;
}
.indexLayout #c08 .step span {
    display: block;
    font-size: 1.6rem;
}
.indexLayout #c08 .flow_t {
    margin-left: 30px;
    padding: 40px 30px 30px;
    background-color: #ecfbff;
    border-radius: 20px;
}
.indexLayout #c08 .flow_t .ttl {
    color: #6ec6ff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.indexLayout #c08 .flow_t p span {
    font-weight: bold;
}
.indexLayout #c08 .flow_t p > a {
    color: #6ec6ff;
    font-weight: bold;
    text-decoration: underline;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c08 .flow_box {
                padding-top: 0;
            }
            .indexLayout #c08 .step {
                top: 0;
                left: 0;
                width: 100px;
                height: 100px;
                font-size: 1rem;
            }
            .indexLayout #c08 .step span {
                font-size: 2rem;
            }
            .indexLayout #c08 .flow_t {
                margin-left: 60px;
                padding: 30px 40px 30px 60px;
            }
            .indexLayout #c08 .flow_box:not(:last-child) {
                padding-bottom: 60px;
            }
            .indexLayout #c08 .flow_box:not(:last-child)::after {
                bottom: 20px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }


/* c09
------------------------------------*/
.indexLayout #c09, .indexLayout #c11 {
    background: linear-gradient( 90deg, rgb(207,245,255) 0%, rgb(240,255,231) 100%);
}
.indexLayout #c09 .common_h2, .indexLayout #c11 .common_h2 {
    color: #666;
}
.indexLayout #c09 .flex_box02 {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    border: 1px solid #ddd;
}
.indexLayout #c09 .flex_box02:nth-child(2) {
    border: 2px solid #70c8fa;
}
.indexLayout #c09 .flex_box02::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 10px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 5px 5px;
}
.indexLayout #c09 .flex_box02 .ttl {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}
.indexLayout #c09 .flex_box02 .ttl span {
    display: table;
  text-align: center;
  margin: 0 auto 6px;
  font-size: 1rem;
  background-color: #70c8fa;
  padding: 4px 5px 5px;
  border-radius: 5px;
  color: #fff;
}
.indexLayout #c09 .flex_box02:nth-child(1)::before {
    background-color: #a4e684;
}
.indexLayout #c09 .flex_box02:nth-child(1) .ttl {
    color: #95cd7a;
}
.indexLayout #c09 .flex_box02:nth-child(2)::before {
    background-color: #70c8fa;
}
.indexLayout #c09 .flex_box02:nth-child(2) .ttl {
    color: #70c8fa;
}
.indexLayout #c09 .flex_box02:nth-child(3)::before {
    background-color: #ffd34e;
}
.indexLayout #c09 .flex_box02:nth-child(3) .ttl {
    color: #f4c024;
}
.indexLayout #c09 .flex_box02 .appeal_t {
    padding-top: 30px;
    border-top: 3px dotted #ccc;
    margin-top: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}
.indexLayout #c09 .flex_box02 .price {
    text-align: center;
    font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 10px;
}
.indexLayout #c09 .flex_box02 .price span {
    font-size: 1.5rem;
}
.indexLayout #c09 .caution_t {
    font-size: 0.8rem;
    margin-top: 20px;
}
.indexLayout #c09 .w_box, .indexLayout #c11 .w_box {
    margin-top: 100px;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
}
.indexLayout #c09 .w_box img {
    max-width: 540px;
    width: 100%;
}
.indexLayout #c09 .w_box .caution_t {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.indexLayout #c09 .w_box a:hover {
    opacity: 0.6;
}
.indexLayout #c09 .t_center {
    text-align: center;
    font-size: 0.8rem;
    margin: 0 auto 20px;
    max-width: 800px;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c09 .flex {
                flex-direction: column;
            }
            .indexLayout #c09 .flex_box02 {
                width: calc(80% - 40px);
                margin: 0 auto;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            .indexLayout #c09 .flex {
                gap: 0 2%;
                align-items: center;
                flex-direction: row;
            }
            .indexLayout #c09 .flex_box02 {
                border-radius: 30px;
                padding: 40px 30px;
            }
            .indexLayout #c09 .flex_box02:nth-child(2) {
                width: calc(35% - 64px);
                display: flex;
                flex-direction: column;
                align-items: center;
                min-height: 340px;
                justify-content: center;
            }
            .indexLayout #c09 .flex_box02:nth-child(1), .indexLayout #c09 .flex_box02:nth-child(3) {
                width: calc(63% / 2 - 60px);
            }
            .indexLayout #c09 .w_box, .indexLayout #c11 .w_box {
                border-radius: 30px;
                padding: 80px 40px;
            }
        }



/* c10
------------------------------------*/
.indexLayout #c10 h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #6ec6ff;
    font-size: 1.3rem;
}
.indexLayout #c10 .accordion_area {
    max-width: 980px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.indexLayout #c10 .accordion_area li:not(:last-child) {
    margin-bottom: 30px;
}
.indexLayout #c10 .title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 20px 60px 20px 20px;
    transition: all .5s ease;
    box-shadow: 0px 0px 24px 0px rgba(0, 134, 205, 0.25);
    background-color: #fff;
    border-radius: 50px;
}
.indexLayout #c10 .title::before,
.indexLayout #c10 .title::after {
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #6ec6ff;
    transition: all 0.3s;
}
.indexLayout #c10 .title::before {
    top:48%;
    right: 35px;
    transform: rotate(0deg);
}
.indexLayout #c10 .title::after {    
    top:48%;
    right: 35px;
    transform: rotate(90deg);
}
.indexLayout #c10 .title.close::before {
	transform: rotate(45deg);
}
.indexLayout #c10 .title.close::after {
	transform: rotate(-45deg);
}
.indexLayout #c10 .box {
    display: none;
    background-color: #ecfbff;
    padding: 30px 20px;
    margin-top: 20px;
    border-radius: 20px;
}
.indexLayout #c10 .title span, .indexLayout #c10 .box p {
    display: block;
    position: relative;
    padding-left: 40px;
}
.indexLayout #c10 .title span::before, .indexLayout #c10 .box p::before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    line-height: 1;
}
.indexLayout #c10 .title span::before {
    content: "Q";
    color: #6ec6ff;
}
.indexLayout #c10 .box p::before {
    content: "A";
    color: #f8a8a8;
}
.indexLayout #c10 .box p span {
    font-weight: bold;
    font-size: 1.1rem;
}
.indexLayout #c10 .box .caution_li {
    margin-left: 37px;
}
.indexLayout #c10 .box .caution_li > li {
    position: relative;
    padding-left: 20px;
    font-size: 0.8rem;
}
.indexLayout #c10 .box .caution_li > li::before {
    position: absolute;
    content: "※";
    top: 0;
    left: 0;
}
.indexLayout #c10 .t_center {
    text-align: center;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c10 .box {
                padding: 30px;
            }
            .indexLayout #c10 .title {
                padding: 20px 60px 20px 30px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }


/* c11
------------------------------------*/
.indexLayout #c11 h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #666;
}
.indexLayout #c11 h3 span {
    display: inline-block;
    padding: 0 40px;
    position: relative;
}
.indexLayout #c11 h3 span::before, .indexLayout #c11 h3 span::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #666;
    top: 50%;
    transform: translateY(-50%);
}
.indexLayout #c11 h3 span::before {
    left: 0;
}
.indexLayout #c11 h3 span::after {
    right: 0;
}
.indexLayout #c11 .prof_flex {
    max-width: 980px;
    margin: 0 auto;
}
.indexLayout #c11 .prof_flex .name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #70c8fa;
    text-align: center;
}
.indexLayout #c11 .w_box {
    margin-top: 0;
    margin-bottom: 60px;
}
.indexLayout #c11 .prof_flex > div:first-child img {
    max-width: 60%;
}
.indexLayout #c11 .keireki {
    background-color: #ecfbff;
    border-radius: 20px;
    padding: 20px;
    margin-top: 30px;
}
.indexLayout #c11 .keireki th {
    padding: 5px 10px 0;
    text-align: left;
    color: #70c8fa;
}
.indexLayout #c11 .keireki td {
    padding: 0 10px 5px;
}
.indexLayout #c11 .snsLi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px 2%;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.indexLayout #c11 .note_flex {
    margin-top: 40px;
}
.indexLayout #c11 .note_flex .flex_box02 {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
}
.indexLayout #c11 .note_flex .flex_box02 img {
    border: 1px solid #ddd;
    margin-bottom: 5px;
}
.indexLayout #c11 .note_flex .flex_box02 time {
    font-weight: bold;
    color: #888;
}
.indexLayout #c11 .column {
    text-align: center;
}
.indexLayout #c11 .column:not(:last-of-type) {
    margin-bottom: 60px;
}
.indexLayout #c11 .movie_box {
    max-width: 980px;
    margin: 0 auto;
}
.indexLayout #c11 .movie_box iframe {
    height: 230px;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .indexLayout #c11 .prof_flex {
                align-items: center;
            }
            .indexLayout #c11 .prof_flex > div:first-child {
                width: 30%;
            }
            .indexLayout #c11 .prof_flex > div:last-child {
                width: 66%;
            }
            .indexLayout #c11 .prof_flex > div:first-child img {
                max-width: 100%;
            }
            .indexLayout #c11 .prof_flex .name {
                text-align: left;
            }
            .indexLayout #c11 .keireki {
                border-radius: 30px;
                padding: 20px 40px;
            }
            .indexLayout #c11 .keireki th, .indexLayout #c11 .keireki td {
                padding: 5px 10px;
            }
            .indexLayout #c11 .keireki th {
                width: 25%;
            }
            .indexLayout #c11 .keireki td {
                width: 75%;
            }
            .indexLayout #c11 .snsLi {
                justify-content: flex-start;
            }
            .indexLayout #c11 .snsLi img {
                width: 23px;
            }
            .indexLayout #c11 .note_flex .flex_box02 {
                padding: 30px;
                width: calc(92% / 3 - 60px);
            }
            .indexLayout #c11 .movie_box iframe {
                height: 430px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
            .indexLayout #c11 .keireki th {
                width: 20%;
            }
            .indexLayout #c11 .keireki td {
                width: 80%;
            }
            .indexLayout #c11 .movie_box iframe {
                height: 540px;
            }
        }