@charset "utf-8";
/* ============================================================================
CSS information
 style info :  ホームページ（トップページ）
/* ============================================================================


/* ============================================================================
目次
　common / ページ内共通
  header footer / ヘッダー・フッター
  top / メインビジュアル
  read / リード文
  program / プログラム
  benefits / 得られるもの
  flow / 応募の流れ
  REVIEW / 参加者の声
============================================================================*/



/* ============================================================================

 common / ページ内共通

=============================================================================== */
:root {
  --max-width: 1000px;
  --font-en: 'Times New Roman', Times, serif;
  --font-gothic: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body{
  background-image:linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(185,200,204,1) 100%);
  background-repeat: no-repeat;
}
main{
  background-image:url(../images/main.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-fill-mode:both;
  animation-duration:2s;
  animation-name: main-bg;
  visibility: visible !important;
}
@keyframes main-bg {
  0% {
    transform : translate(0, -50px);
    filter: brightness(1.2) contrast(150%);
    opacity: 0;
  }
  99.9%, to {
    transform : translate(0, 0);
    filter: brightness(1) contrast(100%);
    opacity: 1;
  }
 }

header, section, footer {
  width: 100%;
}

.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner > * {
  width: 100%;
}

.full-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  transition: none !important;
}
.blue-bg {
  background-color: var(--common_B);
  color: white;
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2em;
}

.col2 li {
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  .col2 {
    margin-top: 0;
  }
  .col2 li {
    width: 100%;
  }
}

/* h2中央揃え */
section h2,
footer h2 {
  font-family: var(--font-en);
  font-size: clamp(3rem, 10vw, 12.8rem);
  font-weight: 900;
  text-align: center;
  color: var(--common_B);
}
section h2 span,
footer h2 span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
/* h2のSCHEDULE、GUIDE、FAQは色反転 */
section#schedule h2,
section#guide h2,
section#faq h2 {
  color: #fff;
}

/* テキスト要素は左揃え */
p, ul, ol, table, div.faq-item, div.review-box {
  text-align: left;
}

/*注意書き*/
.notice{
  border: var(--common_O) 10px solid;
  padding: 2em;
  width: 85%;
}
@media (max-width: 768px) {
  .notice{
    width: 100%;
  }
}


/* ============================================================================

 header,footer / ヘッダー、フッター

=============================================================================== */
header #logo_header{
  position: absolute;
  max-width: 250px;
  padding: 10px;
}
header #entry {
  font-size: 1.5em;
  color: #fff;
  display: block;
  position: fixed;
  max-width: 200px;
  right: 20px;
  top: -20px;
  background: var(--common_R);
  border-radius: 20px;
  z-index: 1;
}
header #entry a{
  padding: 35px 40px 25px 40px;
}
header #entry a:hover{
  text-decoration: none;
}

#logo_footer{max-width: 600px; margin-top: 70px;}
footer .inner{
    padding-bottom: 50px;
}
footer .inner p{
  width: auto;
}

small{
  text-align: center;
  color: #333;
}

/* ---------------------------
SP */
@media only screen and (max-width: 768px){
  header #entry {
    font-size: 1.2em;
    right: 10px;
    top: -20px;
  }
  header #entry a{
    padding: 30px 25px 15px 25px;
  }
}


/* ============================================================================

 top / メインビジュアル

=============================================================================== */

#main_visual .inner{
  position: relative;
  min-height: 90vh;
}

@media (max-width: 900px) {
  #main_visual .inner{
    min-height: 450px;
  }
}
h1{
  display: inline-block;
  color: var(--common_B);
  line-height: 1.2;
  font-size: clamp(2rem, 8vw, 8rem);
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: 0;
  letter-spacing: -.05em;
}
h1 span{/*強調文字は少し大きく*/
  font-size: 110%;
}


/*メインキャッチコピーが遅れてフェードイン*/
h1{
  animation-fill-mode:both;
  animation-name: maincatch_anime;
  animation-duration:3s;
  animation-delay:.5s;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
}
@keyframes maincatch_anime {
  0% {
    opacity: 0;
    transform :scale(1.2);
  }
  99.9%, to {
    opacity: 1;
    transform :scale(1.0);
  }
}


/* ---------------------------
SP */
@media only screen and (max-width: 768px){
  @keyframes maincatch_anime {
    /*スマホではタイトルの縮小アニメをしない*/
    0% {
      opacity: 0;
      transform :scale(1.0);
    }
    99.9%, to {
      opacity: 1;
      transform :scale(1.0);
    }
  }

  #main_visual{
    /*position: relative;*/
    min-height: auto;
  }
}


/* ============================================================================

 read / リード文

=============================================================================== */
.read{
  text-align: left;
  font-size: clamp(1em, 4vw, 1.25em);
  line-height: 2.5;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
}
.read strong{
  font-size:1.2em;
  color: var(--common_B);
}

.read_bg{
  margin-top: 100px;
  width: 100vw;
  min-height: 70vh;
  background: url(../images/read_bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
  padding-bottom: 30px;
}
.read_bg li{
  width: 28%;
} 
.read_bg img {
  width: 90%;
  height: auto;
  display: block;
  animation-fill-mode:both;
  animation-name: read-delay-anime;
  animation-duration:2s;
  filter:drop-shadow(0 0 10px rgba(0,0,0,0.5));
}
.read_bg .delay-01{
  animation-delay: 0s;
  margin-top: 100px;
}
.read_bg .delay-02{
  animation-delay: .5s;
  margin-top: -100px;
}
.read_bg .delay-03{ 
  animation-delay: 1s;
  margin-top: 100px;
}
@keyframes read-delay-anime {
  0% {
    transform :translateY(-40px);
  }
  99.9%, to {
    transform :translateY(0);
  }
}

/* ---------------------------
SP */
@media only screen and (max-width: 768px){
  .read{
    line-height: 2;
  }
  .read_bg{
    min-height: 30vh;
  }
  .read_bg li{
    width: 38%;
  } 
  .read_bg img {
    width: 100%;
  }
}


/* ============================================================================

 program / プログラム
 benefits / 得られるもの
 共通

 =============================================================================== */
#program li,
#benefits li,
#benefits li p{text-align: center;}

#program li,
#benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#program li img,
#benefits li img{
  max-width:300px;
  height: 300px;
}
#program li h3,
#benefits li h3{
  font-size: 2em;
  line-height: 1.2;
  margin: 20px auto;
}
#program li p,
#benefits li p{
  line-height: 1.5;
  margin-bottom: 20px;
}

/*プログラムの目玉と黄色い注意事項の間の余白*/
#program .col2{margin-bottom: 50px;}

/* ---------------------------
SP */
@media only screen and (max-width: 768px){
  #program li h3,
  #benefits li h3{
  font-size: 1.7em;
  }
}

/* ============================================================================

 schedule / スケジュール

=============================================================================== */
.schedule_chart{margin-bottom: 50px;}


/* ============================================================================

 benefits / 得られるもの

=============================================================================== */
#benefits .col2 li{
  border-radius: 10px;
  padding: 20px;
}
#benefits .col2 li.be01{ background: #e0d9c7;}
#benefits .col2 li.be02{ background: #e0c7d2;}
#benefits .col2 li.be03{ background: #d0dbc7;}
#benefits .col2 li.be04{ background: #c7d4e0;}

#benefits li img{
  max-width:200px;
  height: 200px;
}




/* ============================================================================

 flow / 応募の流れ

=============================================================================== */
@media (min-width: 769px) {
  .process_wrap{
    display: flex;
    gap: 5%;
    margin-bottom: 50px;
  }
  .process_wrap img.city{
    margin-left: -40vw;
  }
}
.process_wrap img.city{
  max-height: 800px;
  width: 100%;
}


.process {
  color: var(--common_B);
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 2em;

  position: relative;
  padding: 20px 0;
  margin-bottom: 0.2rem;
  border-bottom: 2px solid;/*左右の線の太さ*/
  color: var(--common_O);
}
.step:before,
.step:after {
  position: absolute;
  top: 100%;
  left: 10%;
  content: "";
  height: 0;
  width: 0;
}
.step:before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: var(--common_O);
  margin-left: -16px;
}
.step:after {/*山型（三角形）の太さ*/
  border: 13px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -13px;
}
.step.step_last,
.step.step_last:before,
.step.step_last:after{
  border: none;
}



.step-label {
  font-family: var(--font-en);
  color: var(--common_B);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  line-height: 1;
}

.step-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.step-num {
  font-size: 8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.step-content h3 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: bold;
  color: var(--common_B);
  display: flex;
  align-items: center;
  border-left: var(--common_B) 5px solid;
  line-height: 1;
  margin-top: 45px;
  margin-bottom: 12px;
  padding-left: 20px;
}

.step-content p {
  line-height: 1.8;
  color: #333;
  margin-left: 20px;
}



/* ============================================================================

 REVIEW / 参加者の声

 =============================================================================== */
 #review li{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#review li .txt_wrap{
  padding: 1.5em;
  border-radius: 10px;
}
#review li.review01 .txt_wrap{background: var(--common_B); color: #fff;}
#review li.review02 .txt_wrap{background: var(--common_O);}
#review li .illst{
  height: clamp(200px, 30vw, 300px);
  margin-bottom: -70px;
  z-index: 0;
}
#review h3{
  margin-top: .2em;
  margin-bottom: 1em;
}




/* ============================================================================

 gallery / ギャラリー

 =============================================================================== */
.gallery {
  /*overflow: hidden;*/
  position: relative;
  width: 100%;
}

.gallery .inner {
  width: 100%;
  max-width: none;
  padding: 0;
}

.gallery ul {
  display: flex;
  justify-content: center;
  width: 400%;
  animation: scrollGallery 120s linear infinite;
  transform: translateX(0);
}

.gallery li {
  flex: 0 0 10%;
  width: 10%;
  height: 100%;
}

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

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* FAQ装飾 */
.faq-item {
  margin-bottom: 2em;
}
.faq-item q {
  font-weight: bold;
}

/* モーダル基本スタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.modal img {
  max-width: 90%;
  max-height: 80%;
}
