/* ==========================================
全体
========================================== */
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
	scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body{
    position: relative;
    margin: 0;
    background: #fff;
    color: #222;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .05em;
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
}
*,
*::before,
*::after{
    box-sizing: border-box;
}
button{
font-family: "Zen Maru Gothic", sans-serif;
}
section{
    width:100%;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}
p{
font-size: 1.5rem;
        line-height: 1.8;    
}
a{
    color: inherit;
    text-decoration: none;
}
ul,
ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
.br-sp{
    display: none;
}
.br-pc{
    display: block; 
}
.inner{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}
@media (max-width:768px){
    body{
        min-width: auto;
    }
    .br-sp{
        display: block;
    }

    .br-pc{
        display: none;
    }
    .inner {
    width: min(1200px, calc(100% - 25px));
    margin: 0 auto;
}
}
/* ==========================================
Header
========================================== */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header__inner{
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo img{
    display: block;
    height: 50px;
}
.header__list{
    display: flex;
    gap: 32px;
    list-style: none;
}
.header__list a{
    text-decoration: none;
    color: #333;
    font-weight: 700;
}
.header__toggle{
    display: none;
}
.header__entry{
    margin-left: 24px;
}
.header__entry{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
        background-color: #fbd533;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    white-space: nowrap;
    margin-left: 24px;
    transition: opacity 0.2s;
}
.header__entry:hover{
    opacity: 0.8;
}
.header__entry-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #fff;
    color: #2e6b3e;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
}
@media (max-width:768px){
	.header__inner {
    	height: 60px;
	}
	.header__toggle{
    	width: 40px;
    	height: 40px;
    	display:flex;
    	flex-direction:column;
    	justify-content:center;
    	gap:6px;
    	background:none;
    	border:none;
    	cursor:pointer;
    	z-index:1001;
	}
	.header__toggle span{
    	width:28px;
    	height:2px;
    	background:#333;
    	transition:.3s;
	}
	.header__nav{
    	position:fixed;
    	top:60px;
    	left:0;
    	width:100%;
    	background:#fff;
    	max-height:0;
    	overflow:hidden;
    	transition:max-height .3s ease;
	}
	.header__nav.is-open{
    	max-height:500px;
	}
	.header__list{
    	flex-direction:column;
    	gap:0;
	}
	.header__list li{
    	border-bottom:1px solid #eee;
	}
	.header__list a{
    	display:block;
    	padding:18px 20px;
	}
	.header__entry{
        display: none;
    }
}
/*==============================
FV
==============================*/
.fv{
    padding-top: 80px;
}
.fv__inner{
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.fv__inner > img:first-child{
    display: block;
    width: 100%;
    height: auto;
}
.fv__deco{
    position: absolute;
    bottom: -7%;
    left: 12%;
    width: 300px;
    z-index: 1;
}
@media (max-width:768px){
	.fv{
        padding-top: 60px;
    }
    .fv__deco{
        width: 35%;
        bottom: -19%;
        left: 3%;
    }
}
/*==============================
about
==============================*/
.c-about{
  position: relative;
  padding: 80px 0px 0px;
  overflow: hidden;
}

.c-about__inner{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* ABOUT 吹き出し */
.c-about__badge{
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.c-about__badge-text{
  display: block;
  background: #09b4b5;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 60px;
  border-radius: 999px;
  border: 3px solid #000;
}

.c-about__badge-arrow{
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid #1a1a1a;
}

.c-about__badge-arrow::before{
  content: "";
  position: absolute;
  top: -19px;
  left: -9px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
      border-top: 0px solid #000;
}

/* タイトル */
.c-about__title{
  text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin: 10px 0 40px;
}

/* 金色キャッチコピー画像 */
.c-about__catch{
  text-align: center;
    max-width: 50%;
    margin: 0 auto 40px;
}

.c-about__catch img{
  width: 100%;
}

/* 本文 */
.c-about__text{
  max-width: 640px;
  margin: 0 auto;
  font-weight: bold;
 text-align: center;
    line-height: 4rem;
}

/* 周囲の装飾画像 */
.c-about__deco{
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c-about__deco.is-show{
  opacity: 1;
  transform: translateY(0);
}

.c-about__deco--01{ top: 40px;   right: 0px;    width: 140px; }
.c-about__deco--02{ top: 100px;   left: 40px;  width: 160px; }
.c-about__deco--03{ top: 350px;  right: -20px; width: 120px; }
.c-about__deco--04{ bottom: 0px;  left: -40px;  width: 160px; }
.c-about__deco--05{ bottom: 0px;  right: 40px;  width: 180px; }
.c-about__deco--06{ top: 180px; right: 100px;   width: 65px; }
.c-about__deco--07{ top: 400px;  right: 150px;   width: 80px; }
.c-about__deco--08{     top: 0px;    left: 200px;    width: 80px; }
.c-about__deco--09{ bottom: 120px;    left: 200px;    width: 80px; }

.c-about__city{
  width: 100%;
  height: 120px; 
  background-image: url(https://www.tokyo.akademeia21.com/tokyo-summit/greater-tokyo/img/about.png);
  background-repeat: repeat-x;  
  background-position: bottom left;
  background-size: auto 100%;   
}

@media (max-width: 768px){
    .c-about{
  padding: 60px 20px 0px;
  overflow: hidden;
}
.c-about__badge-text {
    font-size: 2rem;
}
.c-about__title {
    font-size: 3rem;
}
.c-about__catch {
      max-width: 100%;
    margin: 0 auto 20px;
}
.c-about__text {
    max-width: 640px;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
    line-height: 4rem;
}
  .c-about__deco--01{ top: -45px;   right: -37px;    width: 100px; }
.c-about__deco--02{ display: none; }
.c-about__deco--03{ top: -33px;  left: -34px; width: 100px; }
.c-about__deco--04{ bottom: -72px;  left: -40px;  width: 100px; }
.c-about__deco--05{ bottom: -68px;  right: -33px;  width: 100px; }
.c-about__deco--06{ top: 400px; right: -14px;   width: 50px; }
.c-about__deco--07{ top: 600px;  right: 0px;   width: 50px; }
.c-about__deco--08{     top: 86px;    left: -14px;    width: 44px; }
.c-about__deco--09{ bottom: 100px;    left: -9px;    width: 50px; }
}
/*==========================================
テーマ
==========================================*/
.c-thema {
    width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 36px 48px;
  box-sizing: border-box;
      text-align: center;
}

/* テーマ バッジ */
.c-thema__badge {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  background: #ff7178;
  color: #fff;
  font-weight: bold;
      font-size: 2rem;
  padding: 5px 80px;
  border-radius: 999px;
}

/* タイトル */
.c-thema__title {
  display: inline;
  background: linear-gradient(transparent 60%, #ffe100 60%);
      font-size: 3.4rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.5;
}

/* 説明文 */
.c-thema__description {
  font-size: 1.7rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.9;
      margin: 32px;
}
.c-thema__description p {
  margin: 0;
}

/* アイコンリスト */
.c-thema__icon-list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.c-thema__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.c-thema__icon-img{
    width: 80%;
    margin: 0 auto;

}
.c-thema__icon-img img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.c-thema__icon-label {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width:768px){
    .c-thema{
    padding: 40px 20px;
}
.c-thema__title {
    font-size: 3rem;
}
.c-thema__badge {
    margin: 0 auto 15px;
}
.c-thema__description {
   margin: 20px 0;
}
.c-thema__icon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .c-thema__icon-item {
    flex: none;
  }
}
/*==========================================
背景の丸装飾
==========================================*/
.entry-bg{
    position: relative;
    overflow: hidden; 
    z-index: 0;
}
.entry-bg::before,
.entry-bg::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
/* 左上の大きい丸 */
.entry-bg::before{
    width: 700px;
    height: 700px;
    top: 0;
	 background-color: #ffe8ee; 
    left: -250px;
}
/* 右下の大きい丸 */
.entry-bg::after{
    width: 600px;
    height: 600px;
    bottom: 100px;
    left: -250px;
	background-color: #e3ffce;
}
.c-category{
    position: relative;
    z-index: 0;
}
.c-category::after{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: #bef8ff;
        bottom: -16px;
    right: -180px;
    z-index: -1;
}
@media (max-width:768px){
	 .entry-bg::before{
        width: 300px;
        height: 300px;
        left: -150px;
    }
    .entry-bg::after{
        width: 250px;
        height: 250px;
        left: -150px;
    }
    .category::after{
        width: 250px;
        height: 250px;
        right: -100px;
    }
}
/*==========================================
応募の部分
==========================================*/
.box{
    padding: 30px 50px 40px;
  
}
@media (max-width:768px){
	.box{
       padding: 15px 0px 40px;
    }

    .box__title{
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
}
.outline{
    padding: 80px 0 60px;
}
.outline__top{
    display:flex;
    gap:30px;
}
.outline__box{
    flex:1;
    text-align:center;
}
.outline__date{
    font-weight:700;
    line-height:1;
}
.outline__date span{
    font-size:5rem;
}
.outline__date strong{
    font-size:7rem;
    font-weight:700;
}
.outline__date small{
    font-size:2rem;
}
.outline__target{
    margin-bottom:15px;
    font-size:6rem;
    font-weight:700;
    line-height:1.2;
}
.outline__note{
    font-size:1.4rem;
    line-height:1.8;
}
@media (max-width:768px){
	 .outline{
        padding: 50px 0 40px;
    }
    .outline__top{
        flex-direction: column;
        gap: 20px;
    }
    .outline__target{
        font-size: 3.6rem;
    }
    .outline__note{
        font-size: 1.3rem;
    }
}
/*==========================================
部門紹介
==========================================*/
.c-category {
  padding: 0px 20px;
    margin: 40px 0;
}

.c-category__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #bdbdbd;
  border-radius: 24px;
  padding: 40px;
  box-sizing: border-box;
}

/* タイトル */
.c-category__title {
  position: relative;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  margin: 0 0 24px;
}

.c-category__title::after {
  content: "";
  display: block;
  width: 240px;
  height: 0;
  margin: 16px auto 0;
  border-bottom: 3px dashed #000;
}

/* 部門リスト */
.c-category__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.c-category__item {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.c-category__item--blue {
  border: 2px solid #5db3f4;
}

.c-category__item--red {
  border: 2px solid #ff7178;
}

.c-category__item-title {
  margin: 0;
  padding: 16px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffffff;
}

.c-category__item--blue .c-category__item-title {
  background: #5db3f4;
}

.c-category__item--red .c-category__item-title {
  background: #ff7178;
}

.c-category__item-body {
  padding: 24px;
}

.c-category__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.c-category__row:last-child {
  margin-bottom: 0;
}

.c-category__label {
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.6rem;
  white-space: nowrap;
}

.c-category__text {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.7;
}

/* 副賞カード */
.c-category__prizes {
  display: flex;
  gap: 12px;
  width: 100%;
}

.c-category__prize {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.c-category__item--blue .c-category__prize {
  border: 2px solid #5db3f4;
}

.c-category__item--red .c-category__prize {
  border: 2px solid #ff7178;
}

.c-category__prize-head {
  padding: 10px 8px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.c-category__item--blue .c-category__prize-head {
  background: #5db3f4;
}

.c-category__item--red .c-category__prize-head {
  background: #ff7178;
}

.c-category__crown {
  margin-right: 6px;
  color: #f3e94a; /* 金色 */
}

.c-category__crown--silver {
  color: #d9d9d9; /* 銀色 */
}

.c-category__prize-body {
  padding: 16px 8px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
}

.c-category__prize--wide {
  width: 100%;
}
@media (max-width:768px){
.c-category__inner {
        padding: 20px;
}
.c-category__item {
    width: 100%;
    flex-basis: 100%;
}
.c-category__row {
    display: block;
}
}
/*==========================================
スケジュール
==========================================*/
.c-flow {
  padding: 0px 20px;
    margin: 40px 0;
}

.c-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #bdbdbd;
  border-radius: 24px;
  padding: 40px;
  box-sizing: border-box;
}

/* タイトル */
.c-flow__title {
  position: relative;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  margin: 0 0 24px;
}

.c-flow__title::after {
  content: "";
  display: block;
  width: 240px;
  height: 0;
  margin: 16px auto 0;
  border-bottom: 3px dashed #000;
}

/* ステップリスト（PC：横並び） */
.c-flow__list {
  display: flex;
  align-items: flex-start;
}

.c-flow__item {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 12px;
  box-sizing: border-box;
}

/* アイコン間をつなぐ線（PC：横線） */
.c-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 70px; /* アイコン画像の高さの半分に合わせて調整 */
  left: 50%;
  width: 100%;
  height: 2px;
  background: #000;
  z-index: 0;
}

.c-flow__icon {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
}

.c-flow__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-flow__step-title {
  margin: 0 0 12px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #2e2e6e;
}

.c-flow__text {
  margin: 0;
  line-height: 1.6;
}

@media (max-width:768px){
    .c-flow__inner {
    padding: 20px;
}

  /* ステップリスト（SP：縦並び） */
  .c-flow__list {
    flex-direction: column;
    align-items: stretch;
  }

  .c-flow__item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 15px;
  }

  .c-flow__item:not(:last-child) {
    padding-bottom: 30px;
  }

  /* アイコン間をつなぐ線（SP：縦線） */
  .c-flow__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 90px; /* アイコン下端あたりから */
    left: 45px; /* アイコン幅90pxの中央に合わせる */
    width: 2px;
    height: calc(100% - 90px);
    background: #000;
    z-index: 0;
  }

  .c-flow__icon {
    width: 90px;
    height: 90px;
    margin: 0;
    flex-shrink: 0;
  }

  .c-flow__body {
    flex: 1;
    padding-top: 8px;
  }

  .c-flow__step-title {
    margin: 0 0 6px;
    font-size: 2rem;
  }

  .c-flow__text {
    font-size: 1.4rem;
  }
}
/*==========================================
注意
==========================================*/
.c-notice {
  background: #ffffff;
  padding: 0 20px;
    margin: 40px 0;
}

.c-notice__inner {
  max-width: 900px;
  margin: 0 auto;
}

/* タイトル */
.c-notice__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 40px;
}

.c-notice__warning-icon {
  font-size: 2.8rem;
  color: #f3d13e;
  -webkit-text-stroke: 1.5px #1a1a1a;
}

/* リスト */
.c-notice__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-notice__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.c-notice__item:last-child {
  margin-bottom: 0;
}

.c-notice__check {
  flex-shrink: 0;
  font-size: 2.4rem;
  color: #4caf50;
  margin-top: 2px;
}

.c-notice__text {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.8;
}
/*==========================================
ボタン
==========================================*/
.entry-section{
    width: 100%;
    background-color: #5db3f4;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.entry-section__heading{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
}
.entry-section__highlight{
    color: #ffff00;
}
.entry-section__arrow{
    -webkit-text-stroke: 0;
    color: #ffffff;
    font-weight: 900;
}
.btn-entry{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
     background-color: #fbd533;
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 32px;
    border-radius: 999px;
    transition: opacity 0.2s;
}
.btn-entry:hover{
    opacity: 0.8;
}
.btn-entry__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #3a2b1a;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}
@media (max-width:768px){
    .entry-section{
        padding: 30px 0;
        gap: 16px;
    }
    .entry-section__heading{
        font-size: 1.8rem;
    }
    .btn-entry{
        padding: 16px 24px;
        gap: 12px;
    }
    .btn-entry__icon{
        width: 32px;
        height: 32px;
        font-size: 1.6rem;
    }
}
/*==========================================
FAQ
==========================================*/
.faq{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 60px;
}
.faq .box__title{
    width: fit-content;
    margin: 0 auto 30px;
    font-size: 4rem;
    font-weight: 700;
    padding-bottom: 1rem;
    text-align: center;
}
.faq .box__title::after {
  content: "";
  display: block;
  width: 240px;
  height: 0;
  margin: 16px auto 0;
  border-bottom: 3px dashed #000;
}
.faq__list{
    display:flex;
    flex-direction:column;
    gap:24px;
}
.faq__item{
    border-radius:16px;
}

/* 質問部分:枠線+右側の太い枠でアイコン背景を作る */
.faq__question{
    position:relative;
    width:100%;
    margin:0;
    display:flex;
    align-items:center;
    gap:20px;
    cursor:pointer;
    text-align:left;
    padding:20px 30px;
    background:#fff;
    border:3px solid #5db3f4;
    border-right:60px solid #5db3f4;
    border-radius:16px;
    box-sizing:border-box;
}
.faq__item.is-open .faq__question{
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
}

.faq__q{
    color:#5db3f4;
    font-size:3rem;
    font-weight:700;
    line-height:1;
    flex-shrink:0;
}
.faq__text{
    flex:1;
    font-size:1.9rem;
    font-weight:700;
    color:#1a1a1a;
}

/* +/- アイコン(質問の右側の太枠の中に配置) */
.faq__icon{
    position:absolute;
    top:50%;
    right:-45px;
    width:30px;
    height:30px;
    transform:translateY(-50%);
}
.faq__icon::before,
.faq__icon::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    background:#fff;
    transform:translate(-50%,-50%);
}
.faq__icon::before{
    width:24px;
    height:4px;
}
.faq__icon::after{
    width:4px;
    height:24px;
    transition:.3s;
}
.faq__item.is-open .faq__icon::after{
    transform:translate(-50%,-50%) rotate(90deg);
    opacity:0;
}

/* 回答部分:左右下に枠線をつけて質問部分と連結させる */
.faq__answer{
    max-height:0;
    overflow:hidden;
    background:#fff;
    transition:max-height .3s ease;
}
.faq__item.is-open .faq__answer{
    border-left:3px solid #5db3f4;
    border-right:3px solid #5db3f4;
    border-bottom:3px solid #5db3f4;
    border-bottom-left-radius:16px;
    border-bottom-right-radius:16px;
    box-sizing:border-box;
}
.faq__answer p{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin:0;
    padding:20px 35px 25px 30px;
    line-height:1.8;
}
.faq__answer-text{
    flex:1;
    font-weight:700;
}
.faq__a{
    color:#f85899;
    font-size:3rem;
    font-weight:700;
    line-height:1;
    flex-shrink:0;
}

@media (max-width:768px){
    .bottom{
        padding: 50px 0 0;
    }
    .faq{
        padding: 30px 0px;
    }
    .faq .box__title{
        font-size: 2.4rem;
    }
    .faq__question{
        padding: 15px 20px;
        border-right-width:44px;
        gap: 15px;
    }
    .faq__icon{
        right:-32px;
        width:22px;
        height:22px;
    }
    .faq__icon::before{
        width:18px;
    }
    .faq__icon::after{
        height:18px;
    }
    .faq__q,
    .faq__a{
        font-size: 2rem;
    }
    .faq__text{
        font-size: 1.5rem;
    }
    .faq__answer p{
        gap: 15px;
        padding: 15px 20px 20px;
    }
}
/*==========================================
お問い合わせ
==========================================*/
.c-contact{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #5db3f4 100%);
  padding: 60px 20px 0;
  overflow: hidden;
}

.c-contact__inner{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* タイトル */
.c-contact__title{
  position: relative;
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 24px;
}

.c-contact__title::after{
  content: "";
  display: block;
  width: 240px;
  height: 0;
  margin: 16px auto 0;
  border-bottom: 3px dashed #1a1a1a;
}

/* ボタン */
.c-contact__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 999px;
}

.c-contact__btn:hover{
  opacity: .8;
}

.c-contact__btn-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #3a2b1a;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
}

/* 街並み画像 */
.c-contact__city{
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60px;
}

@media (max-width: 768px){
  .c-contact{
    padding: 40px 16px 0;
  }
  .c-contact__title{
    font-size: 2.4rem;
  }
  .c-contact__btn{
    font-size: 1.6rem;
    padding: 16px 28px;
    gap: 16px;
  }
  .c-contact__btn-icon{
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }
  .c-contact__city{
    margin-top: 40px;
  }
}
/*==========================================
footer
==========================================*/
.footer{
    position: relative;
}
.footer__visual{
    width: 1200px;
    margin: 0 auto;
}
.footer__visual img{
    display: block;
    width: 100%;
    height: auto;
}
.footer__content{
    width: 100%;
    background-color: #5db3f4;
    padding: 40px 0;
}
.footer .inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__logo{
    width: 400px;
    margin-bottom: 15px;
}
.footer__logo img{
    display: block;
    width: 100%;
    height: auto;
}
.footer__school{
    width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}
.footer__school a{
    display: block;
}
.footer__school img{
    display: block;
    width: 100%;
    height: auto;
}
.footer__info {
    margin-top: 20px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8;
}
.footer__info p {
    display: flex;
    align-items: center;
    margin: 6px 0;
}
.footer__info span {
    margin-right: 15px;
}
.footer__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}
.footer__banner-item img {
    display: block;
    height: 60px; 
    width: auto;
}
@media (max-width:768px){
	  .footer__visual{
        width: 100%;
    }
    .footer__content{
        padding: 30px 0;
    }
    .footer__logo{
        width: 200px;
        margin-bottom: 15px;
    }
    .footer__school{
        width: 100%;
        max-width: 320px;
       display: block;
    }
}
/*==========================================
SP固定フッターボタン
==========================================*/
.fixed-entry{
    display: none;
}
@media (max-width:768px){
    .fixed-entry{
        display: flex;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px 0;
        background-color: #fbd533;
        z-index: 999;
    }
    .fixed-entry__btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        background-color: #000;
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        text-decoration: none;
        padding: 10px 25px;
        border-radius: 999px;
        transition: opacity 0.2s;
    }
    .fixed-entry__btn:hover{
        opacity: 0.8;
    }
    .fixed-entry__btn-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #fff;
        color: #000;
        border-radius: 50%;
        font-size: 2rem;
        line-height: 1;
    }
    .footer{
        padding-bottom: 90px;
    }
}