@charset "UTF-8";

html{
  font-size: 10px;
}
*{
  /* font-size: ; */
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 1.5px;
  scroll-behavior: smooth;
  color: var(--black);
}
a{
  text-decoration: none;
}
img{
  width: 100%;
  vertical-align: bottom;
}
ul{
  list-style: none;
}
h1{
  font-size: 3.6rem;
}
h2{
  font-size: 3.2rem;
}
h3{
  font-size: 2.4rem;
}
p{
  font-size: 1.8rem;
}
.annotation{
  font-size: 1.4rem;
}
sup{
  font-size: 1rem;
  vertical-align: top;
}
.copy{
  font-size: 1rem;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
:root{
  --main-blue: #508ef0;
  --sub-blue: #def1ff;
  --balloon-blue: #e8fdfb;
  --orange: #ed7321;
  --light-orange: #fe9659;
  --cta-btn-gradient: linear-gradient(#FE9659, #ED7321);
  --black: #2c2c2c;
  --white: #fff;
}
/* -------------------- */

/* ↓共通 */
.inner{
  max-width: 1000px;
  min-width: 1000px;
  margin: 0 auto;
}
/* ↓申し込みボタン */
.btn a{
  background: var(--cta-btn-gradient);
  padding: 28px 55px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  border-radius: 40px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);
}
.btn a::after{
  content: '';
  display: inline-block;
  background-image: url(../img/icon01.png);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.btn a:hover{
  background: var(--white);
  color: var(--orange);
  border: 3px solid var(--orange);
}
.btn a:hover::after{
  background-image: url(../img/icon02.png);
}
/* ↑申し込みボタン */
/* ↓共通_section */
section{
  padding: 80px 0 100px 0;
  /* min-width: 1000px; */
  min-width: 1040px;
}
.section-title{
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.section-title::before{
  position: absolute;
  background-color: var(--main-blue);
  bottom: -20px;
  content: '';
  height: 5px;
  width: 50px;
  transform: translateX(-50%);
  left: 50%;
}
/* ↑共通_section */
/* ↓ 共通_cta-arra */
.cta-area{
  padding: 80px 0 108px;
}
.cta-area .contents-wrapper{
  text-align: center;
}
.cta-area .contents-wrapper h2{
  margin-bottom: 42px;
  font-size: 1.8rem;
}
.cta-area .contents-wrapper h2 .small{
  font-size: 3rem;
}
.cta-area .contents-wrapper h2 .dots{
  background-image: radial-gradient(circle at center, var(--orange) 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  padding-top: .1em;
}
.cta-area .contents-wrapper h2 .orange{
  color: var(--orange);
}
/* ↑ 共通_cta-area */
/* ↑共通 */
/* ↓ヘッダー */
header{
  height: 100px;
  position: fixed;
  width: 100vw;
  min-width: 1040px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
}
.header-inner{
  max-width: 1000px;
  margin: 0 auto;
}

/* ↓pc */
header.pc .header-inner .header-right{
  display: flex;
  gap: 20px;
}
/* ↓tel */
header.pc .header-inner .btn-tel{
  background-color: var(--white);
  border-radius: 35px;
  height: 70px;
  width: 270px;
  display: flex;
  align-items: center;
}
header.pc .header-inner .btn-tel a{
  display: block;
  height: 70px;
  width: 270px;
  text-align: center;
  border-radius: 36px;
}
header.pc .header-inner .btn-tel p.num{
  font-size: 2.4rem;
  font-weight: bold;
  padding-top: 5px;
}
header.pc .header-inner .btn-tel p.num::before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 3px;
  vertical-align: middle;
}
header.pc .header-inner .btn-tel p.time{
  text-align: center;
  font-size: 1.4rem;
  color: #7E7B7A;
}
/* ↑tel */
/* ↓zoom */
header.pc .header-inner .btn-zoom{
  background: var(--cta-btn-gradient);
  border-radius: 35px;
  height: 70px;
  width: 270px;
  display: flex;
  align-items: center;
}
header.pc .header-inner .btn-zoom a{
  display: block;
  height: 70px;
  width: 270px;
  text-align: center;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.pc .header-inner .btn-zoom p{
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
  position: relative;
}
header.pc .header-inner .btn-zoom p::after{
  content: '';
  display: inline-block;
  width: 8px;
  height: 13px;
  background-image: url(../img/icon_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
/* ↑zoom */
/* ↑pc */

@media screen and (max-width:1080px){
  .header-inner{
    padding: 0 40px;
  }
}
.header-wrapper{
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left img{
  width: 325px;
}
/* ↑ヘッダー */
/* ↓メインビジュアル */
.mv{
  background-image: url(../img/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: min(14.454vw, 160px);
  padding-bottom: min(29.914vw, 312px);
  min-width: 1040px;
  box-shadow: 0 0px 25px 0 rgba(0, 0, 0, .2);
  background-position: bottom;
}
.mv h1{
  font-size: min(4.834vw, 35px);
  margin-bottom: min(1.511vw, 20px);
  letter-spacing: 2;
}
.mv .txt{
  /* font-size: min(3vw, 28px); */
  font-size: 28px;
  margin-bottom: min(0.4517vw, 5px);
}
.mv .name{
  font-size: min(2.1685vw, 24px);
  color: var(--main-blue);
}
/* ↑メインビジュアル */
/* ↓クリエイトアイ・プログラムのご紹介 */
.section_video{
  padding-bottom: 0;
}
.section_video iframe{
  width:60%;
  height:315px;
}
/* ↑クリエイトアイ・プログラムのご紹介 */
/* ↓こんな方におすすめ */
.section01{
  padding-bottom: 30px;
}
.section01 .contents-wrapper{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.section01 .bubble{
  background-color: var(--balloon-blue);
  border-radius: 46px;
  width: 350px;
  padding: 20px 0;
  text-align: center;
}
.section01 .content-left .bubble{
  position: relative;
}
.section01 .content-left .bubble::before{
  position: absolute;
  content: '';
  display: inline-block;
  width: 48px;
  height: 44px;
  background-image: url(../img/section01_img02.png);
  background-size: contain;
  bottom: -30px;
  right: 30px;
}
.section01 .content-right .bubble{
  position: relative;
}
.section01 .content-right .bubble::after{
  position: absolute;
  content: '';
  display: inline-block;
  width: 48px;
  height: 44px;
  background-image: url(../img/section01_img03.png);
  background-size: contain;
  bottom: -30px;
  left: 30px;
}
.section01 .content-left .bubble:first-child{
  margin-bottom: 40px;
  margin-left: 60px;
}
.section01 .content-left .bubble:first-child::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 48px;
  height: 44px;
  background-image: url(../img/section01_img02.png);
  background-size: contain;
  bottom: -30px;
  right: unset;
  left: 30px;
}
.section01 .content-right{
  display: flex;
  flex-flow: column;
  align-items: end;
}
.section01 .content-right .bubble:first-child{
  margin-bottom: 40px;
  margin-right: 60px;
}
.section01 .content-right .bubble:first-child::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 48px;
  height: 44px;
  background-image: url(../img/section01_img03.png);
  background-size: contain;
  bottom: -30px;
  left: unset;
  right: 30px;
}
.section01 .content-left .bubble:first-child,
.section01 .content-right .bubble:first-child {
    margin-bottom: 110px;
}
.section01 .img-box{
  width: 313px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -60%;
  z-index: 2;
}
.section01 .content-center{
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.section01 .content-center .bubble:first-child{
  margin: 10px 0 0!important;
}
.section01 .content-center .bubble::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 48px;
  height: 44px;
  background-image: url(../img/section01_img03.png);
  background-size: contain;
  bottom: -30px;
  right: 30px;
}
/* ↑こんな方におすすめ */
/* ↓クリエイトアイ・プログラムで解決できる5つのこと */
.section02{
  background-color: var(--sub-blue);
  min-width: 1040px;
  clip-path: polygon(50% 9%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding-top: 200px;
}
/* ↓contents 共通 */
.section02 .contents-wrapper .contents-top,
.section02 .contents-wrapper .contents-bottom{
  display: flex;
}
.section02 .content-item{
  background-color: var(--white);
  width: 320px;
  padding: 25px 30px 30px;
}
.section02 .content-item .item-head{
  display: flex;
  justify-content: space-between;
}
.section02 .content-item .item-head .number{
  color: var(--main-blue);
  position: relative;
}
.section02 .content-item .item-head .number::before{
  position: absolute;
  background-color: var(--main-blue);
  top: -26px;
  content: '';
  height: 5px;
  width: 80px;
  transform: translateX(-50%);
  left: 50%;
}
.section02 .content-item .item-head .number p{
  font-size: 7rem;
  line-height: 1;
  font-weight: bold;
  color: var(--main-blue);
}
.section02 .content-item .item-head .img-box{
  width: 150px;
  height: 150px;
}
.section02 .content-item h3{
  margin: 10px 0 20px;
}
/* ↑contents 共通 */
/* ↓content-top */
.section02 .contents-wrapper .contents-top{
  justify-content: space-between;
}
.section02 .contents-top .content-item{
  padding-bottom: 135px;
}
/* ↑contents-top */
/* ↓contents-bottom */
.section02 .contents-wrapper .contents-bottom{
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.section02 .contents-wrapper .contents-bottom .annotation{
  margin: 10px 0 11px;
}
/* ↑contents-bottom */
/* ↑クリエイトアイ・プログラムで解決できる5つのこと */
/* ↓講師紹介 */
.section03{
  padding-bottom: 80px;
  background-color: var(--sub-blue);
}
.section03 .img-box{
  width: 520px;
  margin: 0 auto;
}
.section03 .name{
  text-align: center;
  margin-top: 20px;
}
.section03 .txt{
  margin-top: 30px;
  letter-spacing: 0.6px;
}
.section03 ul{
  margin: 30px 0 20px;
}
.section03 ul li{
  font-size: 1.8rem;
}
.section03 .annotation{
  font-size: 1.8rem;
  color: var(--main-blue);
  font-weight: bold;
}
/* ↑講師紹介 */
/* ↓クリエイトアイ・プログラムをサポートする学術・思考 */
.section04 .subtitle{
  text-align: center;
  margin-bottom: 30px;
}
.section04 .grid-items{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section04 .grid-items .grid-item{
  width: 490px;
  padding: 30px;
  border-bottom: 1px solid var(--main-blue);
  border-right: 1px solid var(--main-blue);
}
.section04 .grid-items .grid-item h3{
  color: var(--main-blue);
  margin-bottom: 20px;
}
/* ↑クリエイトアイ・プログラムをサポートする学術・思考 */
/* ↓サービス内容 */
.section05{
  background-color: var(--sub-blue);
}
.section05 .contents-wrapper{
  text-align: center;
}
.section05 .contents-wrapper p{
  margin-bottom: 30px;
}
.section05 .contents-wrapper .img-box{
  width: 600px;
  height: auto;
  margin: 0 auto;
}
/* ↑サービス内容 */
/* ↓お客様の声 */
.section06{
  background-color: var(--sub-blue);
}
.section06 .contents-wrapper .content-item{
  background-color: var(--white);
  padding: 30px;
  margin-top: 20px;
}
.section06 .contents-wrapper .content-item:first-child{
  margin-top: 0;
}
.section06 .contents-wrapper .content-item .person{
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.section06 .contents-wrapper .content-item .person .img-box{
  width: 80px;
  position: relative;
}
.section06 .contents-wrapper .content-item .person .img-box::before{
  position: absolute;
  background-color: var(--main-blue);
  top: -30px;
  content: '';
  height: 5px;
  width: 80px;
  transform: translateX(-50%);
  left: 50%;
}
.section06 .contents-wrapper .content-item .comment{
  margin: 0 30px;
}
/* ↑お客様の声 */
/* ↓プログラム受講費用 */
.section07 .section-title span{
  font-size: 2rem;
}
.section07 .subtitle{
  text-align: center;
}
.section07 .contents-wrapper{
  margin-top: 60px;
  margin-top: 30px;
  padding: 30px 0 0;
  border: 1px solid var(--main-blue);
}
.section07 .contents-wrapper .total-area{
  display: flex;
  justify-content: center;
  gap: 60px;
}
.section07 .contents-wrapper .total-area .total-list ul li{
  font-size: 1.8rem;
  font-weight: bold;
}
.section07 .contents-wrapper .total-area .total-list ul li span{
  color: var(--main-blue);
  font-size: 2rem
}
.section07 .contents-wrapper .total-area .total-amount h3 .amount{
  font-size: 4rem;
  line-height: 1.1;
}
.section07 .contents-wrapper .total-area .total-amount h3 .amount span{
  font-size: 6.4rem;
  line-height: 1.1;
}
.section07 .contents-wrapper .program-area{
  margin: 30px 0;
}
.section07 .contents-wrapper .program-area .program-title{
  background-color: var(--main-blue);
  text-align: center;
  padding: 15px 0;
  position: relative
}
.section07 .contents-wrapper .program-area .program-title::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: var(--main-blue) transparent transparent transparent;
  border-width: 25px 20px 0 20px;
}
.section07 .contents-wrapper .program-area .program-title h3{
  color: var(--white);
}
.section07 .contents-wrapper .program-area .program-title h3 span{
  font-size: 3.2rem;
  line-height: 1;
  color: var(--white);
}
.section07 .contents-wrapper .program-area .program-amount{
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}
.section07 .contents-wrapper .program-area .program-amount::before{
  position: absolute;
  background-color: var(--light-orange);
  bottom: 9px;
  content: '';
  height: 20px;
  width: 400px;
  transform: translateX(-50%);
  left: 50%;
  z-index: -1;
}
.section07 .contents-wrapper .program-area .program-amount .amount-left p{
  font-size: 8rem;
  font-weight: bold;
}
.section07 .contents-wrapper .program-area .program-amount .amount-right{
  text-align: center;
  display: flex;
  align-items: end;
  padding-bottom: 20px;
}
.section07 .contents-wrapper .program-area .program-amount .amount-right p{
  line-height: 1;
  font-weight: bold;
}
.section07 .contents-wrapper .program-area .program-amount .amount-right p span{
  font-size: 4rem;
  line-height: 1;
}
.section07 .contents-wrapper .program-area .txt-box{
  margin: 25px auto 0;
  width: fit-content;
}
.section07 .contents-wrapper .program-area .txt{
  margin-top: 25px;
  font-weight: bold;
  background:linear-gradient(transparent 87%, var(--light-orange) 13%);
  display: inline;
  padding: 0 2px 0px;
}
/* ↑プログラム受講費用 */
/* ↓cta-area-bg-blue */
.cta-area-bg-blue{
  background-color: var(--sub-blue);
}
/* ↑cta-area-bg-blue */
/* ↓よくある質問 */
.section08{
  background-color: var(--sub-white);
/*  background-color: var(--white);  */
}
/*アコーディオン全体*/
.section08 .accordion-area{
  list-style: none;
}
.section08 .accordion-area li{
  margin-top: 20px;
}
.section08 .accordion-area li:first-child{
  margin-top: 0;
}
.section08 .accordion-area section {
  border: 1px solid var(--main-blue);
  padding: 0;
  min-width: unset;
}
.section08 .accordion-area .title {
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  background-color: #fff;
}
.section08 .accordion-area .title::before,
.section08 .accordion-area .title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: var(--main-blue);
}
.section08 .accordion-area .title::before{
  top:50%;
  transform: translateY(-50%);
  right: 30px;
  transform: rotate(0deg);
}
.section08 .accordion-area .title::after{
  top:50%;
  transform: translateY(-50%);
  right: 30px;
  transform: rotate(90deg);
}
.section08 .accordion-area .title.close::before{
  transform: rotate(0deg);
}
.section08 .accordion-area .title.close::after{
  display: none;
}
.section08 .accordion-area .title span.q{
  background-color: var(--main-blue);
  font-size: 3.2rem;
  width: 80px;
  height: auto;
  color: var(--white);
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  margin-right: 30px;
}
.section08 .accordion-area .title span.title-txt{
  padding: 25px 0;
}

.section08 .accordion-area .box {
  display: none;
  padding: 15px 0 30px;
  border-top: 1px solid var(--main-blue);
  background-color: #fff;
}
.section08 .accordion-area .a-box{
  display: flex;
}
.section08 .accordion-area .box h2{
  color: var(--main-blue);
  width: 80px;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  text-align: center;
  margin-right: 30px;
}
.section08 .accordion-area .box p{
  padding-top: 15px;
  width: 83.8%;
  letter-spacing: 1.2px;
}
/* ↑よくある質問 */
/* ↓ctaバナー */
.cta-area-banner{
  padding: 80px 0;
}
.cta-banner{
  width: 640px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);
}
.cta-banner:hover{
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/* ↑ctaバナー */
/* ↓フッター */
footer{
  background-color: var(--black);
  min-width: 1040px;
}
footer .contents-wrapper{
  text-align: center;
  padding: 30px 0;
}
footer .contents-wrapper .nav-wrapper{
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-bottom: 25px;
}
footer .contents-wrapper .nav-wrapper a{
  color: var(--white);
  font-size: 1.6rem;
}
footer .contents-wrapper small{
  color: var(--white);
}
/* ↑フッター */