@charset "utf-8";


/* ==========================
   splash
========================== */

body.is-lock{
  overflow:hidden;
}

.splash{
  position:fixed;
  inset:0;

  display:flex;
  justify-content:center;
  align-items:center;

  background:#0048ab url("../img/bg_sp.png") center/cover no-repeat;

  z-index:9999;
}

#logo{
  width:1000px;
  max-width:95vw;
  height:auto;
  position:relative;
  z-index:2;
}

/* ==========================
   Base
========================== */

/* Font */

:root{

  --font-title: "fot-tsukubrdgothic-std", sans-serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;

}

h1,
h2,
h3,
h4,
.title{
  font-family: var(--font-title);
  font-weight:700;
}

body{
  font-family: var(--font-body);
  font-weight:400;
  line-height:1.9;
}

strong{
  font-weight:500;
}

/* Link */
.linkBtn a{
  display: inline-block;
  border-radius: 100px;
  transition: .3s;
}


/* ==============================================================================
   SP（ベース）
============================================================================== */
section{
  scroll-margin-top:70px;
}

main{
  padding-top: 70px;
}

/* ==========================
   header
========================== */
#header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 70px;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 30px;
  box-sizing:border-box;
  background: #0048ab;
  align-items: center;
}

#header h1{
  width:35px;
}

#headerInner{
  display:flex;
  align-items:center;
}

.pcNav{
  display: none;
}

/* ハンバーガー（70×22の枠） */
.hamburger {
  position: relative;
  width: 50px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

/* 共通ライン */
.hamburger span {
  position: absolute;
  width: 50px; 
  height: 2px;
  background: #ffe660;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

/* 3本線の位置 */
.hamburger span:nth-child(1) {
  top: 0; /* 上 */
}
.hamburger span:nth-child(2) {
  top: 50%; /* 中央 */
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0; /* 下 */
}

/* 「×」に変形 */
.hamburger.open span:nth-child(1) {
  top: 50%;
  transform: rotate(27deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: rotate(-27deg);
}

/* フルスクリーンオーバーレイ */
.nav-overlay {
  position:fixed;
  inset:0;

  background:#0048ab;

  opacity:0;
  visibility:hidden;

  transition:
    opacity .5s ease,
    visibility .5s ease;

  display:flex;
  justify-content:center;
  align-items:center;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.overlay-logo {
  width:65%;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

ul.nav-links li{
  
  font-family:var(--font-title);
  font-weight:700;
}

ul.nav-links li a{
  font-size:1.6rem;
  color:#ffe660;
}

ul.nav-links li a:hover{
  opacity:.5;
}


#btnContact{
  font-size:1.6rem;
  font-family:var(--font-title);
  font-weight:700;
}

#btnContact a{
  padding:8px 25px;
  background:#ffe660;
  color:#0048ab;
}

/* ==========================
   mv
========================== */
#mv{
  display: flex;
  justify-content: space-between;
}

/* ==========================
   messageArea
========================== */
#messageArea{
  background: #0048ab;
}

#messageMain{
  position:relative;
  overflow:hidden;
  padding:40px 0 110px;
}

#messageMain::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    url("../img/top/bg_message_sp.png")
    center center / cover
    no-repeat;
  z-index:0;
  animation:bgFloat 8s cubic-bezier(.45,.05,.55,.95) infinite;
}

@keyframes bgFloat{
  0%{
      transform:translate(0,0) scale(1);
  }
  25%{
      transform:translate(-10px,-6px) scale(1.035);
  }
  50%{
      transform:translate(8px,5px) scale(1.05);
  }
  75%{
      transform:translate(-6px,8px) scale(1.03);
  }
  100%{
      transform:translate(0,0) scale(1);
  }
}

#messageMain .inner{
  z-index: 2;
  position: relative;
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

#messageMain .inner h2{
  font-size: 2.2rem;
  color: #ffe660;
  margin-bottom: 30px;
  line-height:1.8;
}

#messageMain .inner p{
  font-size: 1.4rem;
  color: #ffe660;
  line-height:2.2;
  text-align: left;
}

#messageMain .inner p br.spNone{
  display: none;
}

#messageMain .messageBg{
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events:none;
}

.objWrap{
  position:absolute;
  animation:objFloat 4.5s ease-in-out infinite;
}

.objFloat{
  animation:objBounce 3.2s ease-in-out infinite;
}

.objWrap img{
  display:block;
  width:100%;
  height: auto;
}

.obj1{
  left: 15px;
  top: 25px;
  width: 40px;
  animation:
    objFloat 4.8s ease-in-out infinite,
    objBounce 3.1s ease-in-out infinite;
}

.obj2{
  right: 15px;
  top: 20px;
  width: 50px;
  animation:
    objFloat 5.1s ease-in-out infinite,
    objBounce 3.4s ease-in-out infinite;
}

.obj3{
  left: 15px;
  bottom: 25px;
  width: 50px;
  animation:
    objFloat 4.6s ease-in-out infinite,
    objBounce 3.0s ease-in-out infinite;
}

.obj4{
  right: 15px;
  bottom: 25px;
  width: 30px;
  animation:
    objFloat 5.3s ease-in-out infinite,
    objBounce 3.3s ease-in-out infinite;
}

@keyframes objFloat{
  0%,100%{
    transform:translateY(0px);
  }
  25%{
    transform:translateY(-6px);
  }
  50%{
    transform:translateY(-2px);
  }
  75%{
    transform:translateY(-8px);
  }
}

@keyframes objBounce{
  0%,100%{
    scale:1;
  }
  10%{
    scale:.95 1.07;
  }
  20%{
    scale:1.08 .93;
  }
  28%{
    scale:.98 1.02;
  }
  36%{
    scale:1;
  }
}

.messageInner{
  padding:30px;
}

.messageInner:nth-child(2){
  padding-top: 60px;
}

.messageInner:nth-child(odd){
  background:#ff8fbc;
}

.messageInner:nth-child(even){
  background:#ffe660;
}

.messageInner h2{
  color: #0048ab;
  font-size:1.8rem;
  line-height:1.2;
  margin-bottom:25px;
}

.messageInner p{
  font-size:1.4rem;
  line-height:1.6;
  color: #0048ab;
}

.messageInner p.osusume{
  margin-bottom: 30px;
}

#messageList{
  position:relative;
}

.centerLogo{
  position:absolute;
  left:50%;
  top:0;
  transform:translate(-50%,-50%);
  z-index:20;
  pointer-events:none;

  width:clamp(90px, 10vw, 130px);
  aspect-ratio:1 / 1;

  border-radius:50%;
  background:#ffe660;

  display:flex;
  justify-content:center;
  align-items:center;
}

.centerLogo img{
  width:42px;
  display:block;
  transform-origin:50% 50%;
  animation:boyoyonSlow 5s infinite;
}

@keyframes boyoyonSlow{
  /* ほぼ静止（長い） */
  0%   { transform: scale(1); }

  78%  { transform: scale(1); }

  /* 一瞬だけボヨン */
  82%  { transform: scale(1.18, 0.85); }

  86%  { transform: scale(0.92, 1.08); }

  90%  { transform: scale(1.05, 0.95); }

  94%  { transform: scale(0.99, 1.01); }

  /* 収束して終了 */
  100% { transform: scale(1); }
}

/* ==========================
   entryArea
========================== */

#entryArea{
  position:relative;
  overflow:hidden;
  padding:40px 0;
}

#entryArea::before{
  content:"";
  position:absolute;
  inset:0;
  background:
      #0048ab
      url("../img/top/bg_entry_sp.png")
      center center / cover
      no-repeat;
  z-index:0;
  animation:bgBreath 8s cubic-bezier(.45,.05,.55,.95) infinite;
}

@keyframes bgBreath{
  0%{
      transform:translate(0,0) scale(1);
  }
  25%{
      transform:translate(-10px,-6px) scale(1.035);
  }
  50%{
      transform:translate(8px,5px) scale(1.05);
  }
  75%{
      transform:translate(-6px,8px) scale(1.03);
  }
  100%{
      transform:translate(0,0) scale(1);
  }
}

#entryArea .inner{
  width:90%;
  margin:0 auto;
  background:#fff;
  border-radius:16px;
  padding:20px;
  position:relative;
  z-index:2;
  box-sizing: border-box;
}

.secHead{
  
}

.secHead h2{
  color: #0048ab;
  font-size:2.2rem;
  margin-bottom:25px;
  text-align:center;
}

.secHead h3{
  color: #0048ab;
  font-size:1.6rem;
  margin-bottom:20px;
  text-align:center;
}

.secHead h3 span{
  border-bottom: 1px solid #0048ab;
  padding-bottom: 5px;
}

.btnPdf{
  margin-bottom:30px;
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight:700;
}

.btnPdf a{
  color: #0048ab;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: #ff8fbc;
  border-radius:999px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
}

.targetInner{
  border: 1px solid #0048ab;
  padding: 20px;
  border-radius: 10px;
}

.secHead dl{
  color: #0048ab;
  font-size: 1.4rem;
}

.secHead dl .targetIn{
  border-bottom: 1px dotted #0048ab;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.secHead dl .targetIn:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.secHead dl dt{
  font-weight:500;
}

.secHead dl dt br{
  display: none;
}

.secHead dl dd{
  margin-bottom: 15px;
}

.secHead dl dd:last-child{
  margin-bottom: 0;
}

.lead{
  line-height:1.6;
  font-size: 1.4rem;
  color: #0048ab;
  margin-bottom: 20px;
}



/* Scroll Hint 調整 */
.scroll-hint-icon-wrap{
  transform:translateY(-14px);
}

.tableWrap {
  overflow-x: scroll;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
}

.tableWrap table{
  min-width:700px;
}

table{
  font-size: 1.4rem;
  color: #0048ab;
  width:100%;
  border-collapse:collapse;
  border:1px solid #1952a4;
}

th,
td{
  padding:10px;
  vertical-align:top;
  border-right: 1px solid #1952a4;
  border-bottom: 1px solid #1952a4;
}

th.vaC,
td.vaC{
  vertical-align:middle;
}


th.brD{
  border-right:1px solid #1952a4;
  border-bottom:1px dashed #1952a4;
}

td.brD{
  border-bottom:1px dashed #1952a4;
  border-left:1px solid #1952a4;
}

th{
  background:#dce6f4;
}

th.bgW{
  background:#fff;
}

.entryBox{
  margin-top:25px;
}

.entryTable td{
  text-align: center;
}

.courseArea{
  margin-top:35px;
}

.courseArea h3{
  font-size: 1.8rem;
  color: #0048ab;
  text-align: center;
  margin-bottom: 25px;
}

tr.brT{
  border-top:1px solid #1952a4;
}

.courseTable th.rowP,
.courseTable td.rowP{
  padding: 5px 14px;
  border-bottom: none;
}

.courseTable th.pdT,
.courseTable td.pdT{
  padding-top: 14px;
}

.courseTable th.pdB,
.courseTable td.pdB{
  padding-bottom: 14px;
}


.courseName{
  width:90px;
  vertical-align: top;
}

.item{
  width:60px;
}

.courseTable td{
  line-height:2.1;
}

.scheduleArea{
  margin-top:50px;
  display:grid;
  justify-content:center;
}

.scheduleArea dl{
  display:grid;
  grid-template-columns:130px 1fr;
  row-gap:5px;
  color: #1952a4;
  font-size: 1.6rem;
}

.scheduleArea dt{
  line-height: 1.6;
}

.scheduleArea dd{
  margin:0;
  line-height: 1.6;
}

.scheduleArea dd span{
  font-size: 1.2rem;
  display: block;
}

.notes{
  margin-top:10px;
}

.notes li{
  margin-top:5px;
  color: #1952a4;
  font-size: 1.4rem;
}

/* ==========================
   dateArea
========================== */
#dateArea{
  position:relative;
  overflow:hidden;
  padding:40px 0;
}

#dateArea::before{
  content:"";
  position:absolute;
  inset:0;
  background:
      #ffe660
      url("../img/top/bg_date_sp.png")
      center center / cover
      no-repeat;
  z-index:0;
  animation:bgFloat 8s cubic-bezier(.45,.05,.55,.95) infinite;
}

@keyframes bgFloat{
  0%{
      transform:translate(0,0) scale(1);
  }
  25%{
      transform:translate(-10px,-6px) scale(1.035);
  }
  50%{
      transform:translate(8px,5px) scale(1.05);
  }
  75%{
      transform:translate(-6px,8px) scale(1.03);
  }
  100%{
      transform:translate(0,0) scale(1);
  }
}

#dateArea .inner{
  width:90%;
  margin:0 auto;
  position:relative;
    z-index:2;
}

.dateHead{
  text-align:center;
}

.dateHead h2{
  color: #0048ab;
  font-size:2.2rem;
  margin-bottom:20px;
}

.dateHead h3{
  color: #0048ab;
  font-size: 1.8rem;
  font-family: var(--font-title);
  margin-bottom:30px;
}

.btnDate{
  margin-bottom:30px;
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight:700;
}

.btnDate a{
  width: 100%;
  color: #ffe660;
  background: #0048ab;
  border-radius:999px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  padding: 10px;
  box-sizing: border-box;
}

#phaseArea{
  border-top: 1px solid #0048ab;
  border-bottom: 1px solid #0048ab;
  background: #fff;
}

.phaseInner{
  display: flex;
  border-bottom: 1px solid #0048ab;
  flex-wrap:wrap;
  align-items:flex-start;
  position:relative;
}

.phaseInner:last-child{
  border-bottom: none;
}

.phaseTtl{
  width:100%;
  writing-mode:horizontal-tb;
  margin:0;
  padding:6px 0;
  
  font-size: 1.2rem;
  color: #0048ab;
  text-align: center;
  border-bottom: 1px dashed #0048ab;
}

.phase{
  font-size: 1.4rem;
  border-radius: 100px;
  width: 100px;
  padding: 6px 0;
  text-align: center;
  color:#0048ab;
  font-family: var(--font-title);
  font-weight:700;
  margin:20px 15px;
    flex-shrink:0;
}

.phaseY{
  background: #ffd71e;
}

.phaseP{
  background: #ff8fbc;
}

.phaseTxt{
   flex:1;
  padding: 20px 20px 20px 0;
}

.phaseTxt p{
  font-size: 1.6rem;
  color:#0048ab;
}

h2.projectTtl{
  color: #0048ab;
  font-size:2.2rem;
  margin-bottom:20px;
  text-align: center;
  margin: 50px 0 20px;
}

#osekkaiArea{
  background: #fff;
  width: 100%;
  margin: 0 auto;
}

.osekkaiInner{
  padding: 30px;
}

.osekkaiInner h3{
  width: 90%;
  margin: 0 auto 25px;
}

.btnProject{
  margin-bottom:30px;
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight:700;
}

.btnProject a{
  width: 100%;
  color: #0048ab;
  background: #ff8fbc;
  border-radius:999px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  padding: 10px;
  box-sizing: border-box;
}

.osekkaiInner p{
  color: #0048ab;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.osekkaiInner p br{
  display: none;
}

.osekkaiPhoto{
  display: flex;
  justify-content: space-between;
}

.osekkaiPhoto img{
  width: 25%;
}

#osekkaiMovie iframe{
  width: 100%;
  aspect-ratio:16 / 9;
  height:auto;
  display:block;
}

/* ==========================
   memberArea
========================== */
#memberArea{
  background:#ff8fbc;
  padding:40px 0;
}

.secTitle{
  text-align:center;
  color:#0048ab;
  font-size:2.2rem;
  margin-bottom:30px;
}

/*memberTop*/
.memberTop{
  width: 95%;
  margin: 0 auto 40px;
  padding: 60px 20px 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
}

.photoTopWrap{
  margin-bottom: 40px;
}

.photoTop{
  width: 65%;
  margin: 0 auto 15px;
}

.photoTopWrap .nameTop{
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:0;
}

.photoTopWrap .nameTop p{
  font-size:1.4rem;
  color:#0048ab;
  margin:0;
  font-weight:700;
}

.photoTopWrap .nameTop h3{
  margin:0;
  font-size:1.8rem;
  color:#0048ab;
  line-height:1;
}

.topInner{
  border-top: 1px dashed #0048ab;
  padding-top: 40px;
}

.topInner h3{
  margin:0 0 20px;
  font-size:1.7rem;
  color:#0048ab;
  line-height:1;
  text-align: center;
}

.topInner h4{
  margin:0 0 25px;
  font-size:1.6rem;
  color:#0048ab;
  letter-spacing: 0.1em;
}

.topInner h4 br.nonBr{
  display: none;
}

.topInner p{
  font-size:1.4rem;
  color:#0048ab;
  line-height: 1.8;
}

/*memberSwiper*/
.memberSwiper{
  width:90%;
  margin:0 auto;
  overflow:visible;
}

.memberCard{
  background:#fff;
}

.photo{
  aspect-ratio:1 / 0.75;
  overflow:hidden;
  position:relative;
  background:#fff;
}

/* 写真 */
.memberCard .photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* 青い三角 */
.photo::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:0;
  height:0;
  border-top:40px solid #1952a4;
  border-left:40px solid transparent;
}

.memberInfo{
  background:#ffe660;
  padding:20px;
  color:#0048ab;
  text-align:center;
}

.memberHead{
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:0;
  margin-bottom:15px;
}

.memberHead .position{
  font-size:1.4rem;
  color:#0048ab;
  margin:0;
  font-weight:700;
}

.memberHead h3{
  margin:0;
  font-size:1.8rem;
  color:#0048ab;
  line-height:1;
}

.job{
  line-height:1.5;
  margin-bottom:15px;
  font-size: 1.4rem;
}

.text{
  line-height:1.7;
  text-align:left;
  font-size: 1.4rem;
}

/*　Member Swiper　*/
.memberWrap{
  position:relative;
  width:min(1500px,80%);
  margin:0 auto;
}

.memberSwiper{
  width:100%;
  overflow:hidden;
}

/* 高さを揃える */
.memberSwiper .swiper-wrapper{
  align-items:stretch;
}

.memberSwiper .swiper-slide{
  height:auto;
  display:flex;
}

.memberCard{
  width:100%;
  display:flex;
  flex-direction:column;
}

.memberInfo{
  flex:1;
}

/*　Navigation　*/
.memberPrev,
.memberNext{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  background:#0048ab;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:.25s;
  z-index:100;
}

.memberPrev{
  left:-18px;
}

.memberNext{
  right:-18px;
}

.memberPrev:hover,
.memberNext:hover{
  transform:translateY(-50%) scale(1.08);
}

.memberPrev:active,
.memberNext:active{
  transform:translateY(-50%) scale(.95);
}

.swiper-button-disabled{
  opacity:.3;
  pointer-events:none;
}

/*　Arrow　*/
.memberPrev::after,
.memberNext::after{
  display:none;
}

.memberPrev span,
.memberNext span{
  width:10px;
  height:10px;
  border-top:3px solid #ffe660;
  border-right:3px solid #ffe660;
}

.memberPrev span{
  transform:rotate(-135deg);
  margin-left:4px;
}

.memberNext span{
  transform:rotate(45deg);
  margin-right:4px;
}

/* スライド不要時はナビを消す */
.memberPrev.swiper-button-lock,
.memberNext.swiper-button-lock{
  display:none;
}

/* ==========================
   bottomArea
========================== */
#bottomArea{
  position:relative;
  overflow:hidden;
  padding:40px 0 60px;
}

#bottomArea > *{
  position:relative;
  z-index:2;
}

#bottomArea::before{
  content:"";
  position:absolute;
  inset:0;
  background:
      #0048ab
      url("../img/top/bg_footer_sp.png")
      center center / cover
      no-repeat;
  z-index:0;
  animation:bgFloat 9s cubic-bezier(.45,.05,.55,.95) -2s infinite;
}

#bottomArea .inner{
  position:relative;
  z-index:2;
  width:90%;
  margin:0 auto;
  background:#fff;
  border-radius:16px;
  padding:30px;
  position:relative;
  box-sizing: border-box;
  margin-bottom: 30px;
}

#bottomArea h2{
  color: #0048ab;
  font-size:2.2rem;
  margin-bottom:30px;
  text-align: center;
}

#bottomArea h3{
  color: #0048ab;
  font-size:1.8rem;
  margin-bottom:10px;
  text-align: center;
}

/* youtubeArea */
.youtubeArea{
  
}

.youtubeArea .youtube{
  margin-bottom: 30px;
  text-align: center;
}

.youtubeArea .youtube:last-child{
  margin-bottom: 0;
}

.youtubeArea .youtube iframe{
  width: 100%;
  aspect-ratio:16 / 9;
  height:auto;
  display:block;
}

/*maboroshi*/
.maboroshiWrap{
  margin-bottom: 50px;
}

.maboroshiWrap:last-child{
  margin-bottom: 0;
}

.maboroshiHead{
  margin-bottom: 25px;
}

.maboroshiLogo{
  width: 80%;
  margin: 0 auto 20px;
}

.maboroshiHeadInner p{
  font-size: 1.2rem;
}

.maboroshiInner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.itemWrap{
  width: 45%;
  margin-bottom: 20px;
}


.itemWrap p{
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
}


/* contactArea */
.contactArea{
  
}

.contactInner{
  width: 100%;
  margin: 0 auto 30px;
}

.btnOpcvs{
  margin-bottom: 20px;
}

p.openTxt{
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 35px;
  color: #0048ab;
}

.btnOpcvs,
.contactInner .btnContact01,
.contactInner .btnContact02,
.contactInner .btnContact03,
.btnContact04{
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight:700;
}

.contactInner .btnContact01,
.contactInner .btnContact02{
  margin-bottom: 15px;
}

.btnOpcvs a,
.contactInner .btnContact01 a,
.contactInner .btnContact02 a,
.contactInner .btnContact03 a,
.btnContact04 a{
  width:100%;
  border-radius:999px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  padding: 10px;
  box-sizing: border-box;
}

.contactInner .btnContact01 a{
  color: #0048ab;
  background: #ff8fbc;
}

.contactInner .btnContact02 a{
  color: #fff;
  background: #0048ab;
}

.contactInner .btnContact03 a{
  color: #0048ab;
  background: #ffe660;
}

.btnOpcvs a,
.btnContact04 a{
  color: #0048ab;
  background: #ffe660;
  border: 2px solid #0048ab;
  box-sizing: border-box;
}

.methodArea{
  margin-bottom:50px;
}

.methodArea dl{
  color: #1952a4;
  font-size: 1.6rem;
}

.methodArea dt{
  
}

.methodArea dt br{
  display: none;
}

.methodArea dd{
  margin:0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px dotted #1952a4;
}

.methodArea dd span{
  font-size: 1.4rem;
  line-height: 1.6;
  display: inline-block;
}

/* footer */
#footer{
  margin-top: 80px;
}

#footer ul{
  width: 90%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer li.romantist{
  width: 45%;
}

#footer li.community{
  width: 40%;
}

#footer p{
  text-align: left;
  font-size: 1.3rem;
  color: #fff;
  width: 90%;
  margin: 0 auto;
}

#footer p.sponsorTxt{
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
}

#footer p.sponsorTxt br{
  display: block;
}

#footer p br{
  display: none;
}


/* ==============================================================================
   Tablet（768px〜）
============================================================================== */
@media screen and (min-width:768px){

.splash{
  background:#0048ab url("../img/bg.png") center/cover no-repeat;
}

#logo{
  width:1000px;
  max-width:60vw;
}

.linkBtn a:hover{
  transform: scale(1.05);
}

/* ==========================
   messageArea
========================== */

#messageMain{
  padding: 80px 0;
}

#messageMain::before{
  background:
    url("../img/top/bg_message.png")
    center center / cover
    no-repeat;
}

#messageMain h2 br{
  display: none;
}

#messageMain .inner p{
  text-align: center;
}

#messageMain .inner p br.spNone{
  display: block;
}

.obj1{
  left: 35px;
  top: 45px;
  width: 60px;
}

.obj2{
  right: 35px;
  top: 40px;
  width: 70px;
}

.obj3{
  left: 35px;
  bottom: 35px;
  width: 70px;
}

.obj4{
  right: 35px;
  bottom: 45px;
  width: 50px;
}

.messageInner{
  padding:40px;
  min-height:400px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.messageInner:nth-child(2){
  padding: 40px;
}

.bgY{
  background:#ffe660 !important;
}

.bgP{
  background:#ff8fbc !important;
}

.messageInner h2{
  font-size:2.6rem;
  line-height:1.5;
  min-height:3em;
  margin-bottom:20px;
}

.messageInner p{
  font-size:1.6rem;
  line-height:2.2;
}

.messageInner p.osusume{
  margin-bottom: 30px;
}

#messageList{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.centerLogo{
  top:50%;
  background: none;
}

.centerLogo img{
  width:45px;
}

/* ==========================
   entryArea
========================== */
#entryArea{
  padding:80px 0;
}

#entryArea::before{
  background:
    #0048ab
    url("../img/top/bg_entry.png")
    center center / cover
    no-repeat;
}

#entryArea .inner{
  padding: 40px 60px;
}

.btnPdf{
  font-size: 1.6rem;
}

.btnPdf a{
  width: 60%;
  padding: 15px;
}


.targetInner{
  padding: 30px 40px;
}



.entryBox{
  margin-top: 35px;
}

.scheduleArea dd span{
  display: inline;
  padding-left: 15px;
}

/* ==========================
   dateArea
========================== */
#dateArea{
  padding:80px 0;
}

#dateArea::before{
  background:
      #ffe660
      url("../img/top/bg_date.png")
      center center / cover
      no-repeat;
}

.btnDate{
  font-size: 1.6rem;
}

.btnDate a{
  width: 60%;
  padding: 15px;
}

.phaseInner{
  align-items:center;
}

.phaseInner:last-child{
  border-bottom: none;
}

.phaseTtl{
  align-self:stretch;
  display: flex;
  align-items: center;
  justify-content: center;

  writing-mode: vertical-rl;
  text-orientation: mixed;
  
  width: 30px;

  font-size: 1.4rem;
  margin-right: 20px;
  border-bottom: none;
}

.phase{
  font-size: 1.8rem;
  width: 120px;
  padding: 10px 0;
  margin: 0 20px 0 0;
}

.phaseTxt p{
  font-size: 1.8rem;
  color:#0048ab;
}

.osekkaiInner h3{
  width: 60%;
}

.osekkaiInner p{
  text-align: center;
  font-size: 1.6rem;
}

.osekkaiInner p br {
    display: block;
}

.btnProject{
  font-size: 1.6rem;
}

.btnProject a{
  width: 60%;
  padding: 15px;
}

#osekkaiMovie iframe{
  width: 80%;
  aspect-ratio:16 / 9;
  height:auto;
  display:block;
  margin: 0 auto;
}

/* ==========================
   memberArea
========================== */




/*memberTop*/
.memberTop{
  width: 80%;
  padding: 50px;
  margin: 0 auto 40px;
  border-radius: 16px;
}

.memberTop article{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.photoTopWrap{
  margin-bottom: 0;
  width: 35%;
}

.photoTop{
  width: 100%;
  margin: 0 auto 15px;
}

.topInner {
  width: 55%;
  padding: 0;
  border-top: none;
}

.topInner h3{
  text-align: left;
  font-size: 2.0rem;
}

.topInner h4 br.nonBr{
  display: block;
}

/* ==========================
   bottomArea
========================== */
#bottomArea::before{
  background:
      #0048ab
      url("../img/top/bg_footer.png")
      center center / cover
      no-repeat;
}


#bottomArea .inner{
  padding: 40px 60px;
}

.youtubeArea .youtube{
  margin-bottom: 50px;
}

/*maboroshi*/
.maboroshiWrap{
  margin-bottom: 50px;
}

.maboroshiHead{
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.maboroshiLogo{
  width: 25%;
  margin: 0;
}

.maboroshiHeadInner{
  width: 70%;
}

#bottomArea .maboroshiHeadInner h3{
  text-align: left;
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.maboroshiInner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.itemWrap{
  width: 23%;
  margin-bottom: 0;
}

.itemWrap .itemInner{
  margin-bottom: 15px;
}

.itemWrap p{
  font-size: 1.2rem;
  text-align: center;
}




.btnOpcvs{
  margin-bottom: 35px;
}

p.openTxt{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
}

p.openTxt br.brNone{
  display: none;
}

.contactInner{
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
}

.contactInner .btnContact01,
.contactInner .btnContact02,
.contactInner .btnContact03{
   width: 32%;
}

.btnOpcvs,
.contactInner .btnContact01,
.contactInner .btnContact02,
.contactInner .btnContact03,
.btnContact04{
  font-size: 1.6rem;
}

.contactInner .btnContact01{
  margin-bottom: 0;
}

.btnOpcvs a,
.contactInner .btnContact01 a,
.contactInner .btnContact02 a,
.contactInner .btnContact03 a,
.btnContact04 a{
  padding: 15px;
}

.btnOpcvs a,
.btnContact04 a{
  width: 60%;
}

.methodArea{
  margin-bottom:50px;
  width: 100%;
}

.methodArea dl{
  color: #1952a4;
  font-size: 1.6rem;
  border-top: 1px solid #0048ab;
}

.methodInner{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:15px;
  padding:15px 0;
  border-bottom:1px solid #0048ab;
}

.methodArea dd{
  margin:0;
  padding: 0;
  border-bottom: none;
}


#footer ul{
  width: 70%;
  margin: 0 auto 50px;
}

#footer p{
  text-align: center;
}

#footer p.sponsorTxt span{
  padding-left: 15px;
}

#footer p.sponsorTxt br.brNone{
  display: none;
}

}

/* ==============================================================================
   PC（1200px〜）
============================================================================== */
@media screen and (min-width:1200px){

#logo{
  max-width:50vw;
}

/* ==========================
   header
========================== */

section{
  scroll-margin-top:78px;
}

#header{
  padding:20px 50px;
  height: auto;
}

#header h1{
  width:52px;
}

.hamburger {
  display: none;
}

.nav-overlay{
  display: none;
}

.pcNav{
  display: block;
}

.pcNavInner{
  display: flex;
  align-items: center;
}

.pcNavInner ul{
  display:flex;
  flex-direction: row;
  gap: 0;
}

.pcNavInner ul li{
  font-size:1.6rem;
  margin-right:35px;
  font-family:var(--font-title);
  font-weight:700;
}

.pcNavInner ul li a{
  color:#ffe660;
  transition:.3s;
}

.pcNavInner ul li a:hover{
  opacity:.5;
}

.pcNavInner #btnContact{
  font-size:1.9rem;
  font-family:var(--font-title);
  font-weight:700;
}

.pcNavInner #btnContact a{
  padding:12px 25px;
  background:#ffe660;
  color:#0048ab;
}



/* ==========================
   messageArea
========================== */
#messageMain{
  padding:130px 0;
}

#messageMain .inner h2{
  font-size: 3.2rem;
  margin-bottom: 65px;
}

#messageMain .inner p{
  font-size: 1.6rem;
  line-height:2.4;
}


.obj1{
  left: 80px;
  top: 117px;
  width: 80px;
}

.obj2{
  right: 105px;
  top: 57px;
  width: 88px;
}

.obj3{
  left: 92px;
  bottom: 65px;
  width: 132px;
}

.obj4{
  right: 106px;
  bottom: 93px;
  width: 73px;
}

.messageInner{
  padding:90px 70px;
  min-height:400px;
}

.messageInner:nth-child(2){
  padding:90px 70px;
}

#messageList{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.centerLogo img{
  width: 78px;
}

/* ==========================
   entryArea
========================== */
#entryArea{
  position:relative;
  overflow:hidden;
  padding:120px 0;
}

#entryArea .inner{
  width:1100px;
  border-radius:32px;
  padding:90px 100px;
}

.secHead{
  text-align:center;
}

.secHead h2{
  font-size:2.8rem;
  margin-bottom:45px;
}

.secHead h3{
  font-size:1.8rem;
  margin-bottom:30px;
}

.btnPdf{
  margin-bottom:60px;
  font-size: 1.8rem;
}

.btnPdf a{
  width:360px;
  height:72px;
  padding: 0;
}

.lead{
  line-height:2.2;
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.targetInner{
  padding: 40px 50px;
}

.secHead dl{
  grid-template-columns:160px 1fr;
  row-gap:25px;
  text-align: left;
  font-size: 1.6rem;
}

table{
  font-size: 1.6rem;
}

th,
td{
  padding:24px;
}

.entryBox{
  margin-top:50px;
}

.courseArea{
  margin-top:45px;
}

.courseArea h3{
  font-size: 2.6rem;
  margin-bottom: 35px;
}

.courseTable th.rowP,
.courseTable td.rowP{
  padding: 5px 24px;
}

.courseTable th.pdT,
.courseTable td.pdT{
  padding-top: 24px;
}

.courseTable th.pdB,
.courseTable td.pdB{
  padding-bottom: 24px;
}

.courseName{
  width:120px;
}

.item{
  width:80px;
}

.scheduleArea{
  margin-top:50px;
}

.scheduleArea dl{
  grid-template-columns:140px 1fr;
  row-gap:9px;
  font-size: 1.8rem;
}

.scheduleArea dd span{
  font-size: 1.5rem;
}

.notes{
  margin-top:20px;
}

/* ==========================
   dateArea
========================== */
#dateArea{
  padding:120px 0;
}

#dateArea .inner{
  width:800px;
}

.dateHead{
  text-align:center;
}

.dateHead h2{
  font-size:2.8rem;
  margin-bottom:40px;
}

.dateHead h3{
  font-size: 2.6rem;
  margin-bottom:50px;
}

.btnDate{
  font-size: 1.8rem;
}

.btnDate a{
  width:360px;
  height:72px;
  padding: 0;
}


.projectTtl{
  font-size: 2.6rem;
}

#osekkaiArea{
  width: 800px;
}

.osekkaiInner h3{
  width: 440px;
  margin: 0 auto 35px;
}

.btnProject{
  font-size: 1.8rem;
}

.btnProject a{
  width:360px;
  height:72px;
  padding: 0;
}

.osekkaiInner p{
  margin-bottom: 35px;
}

#osekkaiMovie iframe{
  width: 640px;
  height: 340px;
  margin: 0 auto;
}

/* ==========================
   memberArea
========================== */
#memberArea{
  padding:60px 0;
}

/*memberTop*/
.memberTop{
  width: 850px;
  padding: 50px;
  margin-bottom: 75px;
}

.photoTop{
  margin-bottom: 30px;
}

.photoTopWrap{
  margin-bottom: 0;
  width: 200px;
}

.photoTopWrap .nameTop p{
  font-size: 1.4rem;
}

.photoTopWrap .nameTop h3{
  font-size: 2.2rem;
}

.topInner {
  width: 500px;
}

.topInner h3{
  text-align: left;
  font-size: 2.2rem;
}

.topInner h4{
  font-size: 1.7rem;
}

.topInner h4 br.nonBr{
  display: block;
}


.secTitle{
  font-size:2.8rem;
  margin-bottom:60px;
}

.memberInfo{
  padding:30px 15px 15px;
}

.memberHead{
  margin-bottom:18px;
}

.memberHead h3{
  font-size:2.2rem;
}

.job{
  line-height:1.8;
  margin-bottom:25px;
}

/*　Member Swiper　*/

.memberWrap{
  width:min(1500px,90%);
}

.memberSwiper{
  width:100%;
  overflow:hidden;
}

/* ==========================
   bottomArea
========================== */
#bottomArea{
  padding:50px 0 70px;
}

#bottomArea .inner{
  width:1060px;
  border-radius:32px;
  padding:55px 50px;
  margin-bottom: 50px;
}

#bottomArea h2{
  font-size:2.6rem;
  margin-bottom:40px;
}

/* youtubeArea */
.youtubeArea .youtube{
  margin-bottom: 75px;
}

.youtubeArea .youtube iframe{
  width: 640px;
  height: 340px;
  display: inline-block;
}

/*maboroshi*/
.maboroshiWrap{
  margin-bottom: 100px;
}

.maboroshiHead{
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.maboroshiLogo{
  width: 250px;
  margin: 0;
}

.maboroshiHeadInner{
  width: 670px;
}

#bottomArea .maboroshiHeadInner h3{
  font-size: 2.0rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.maboroshiInner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.itemWrap{
  width: 210px;
  margin-bottom: 0;
}

.itemWrap .itemInner{
  margin-bottom: 15px;
}

.itemWrap p{
  font-size: 1.2rem;
  text-align: center;
}


/* contactArea */
.contactInner{
  width: 930px;
  margin: 0 auto 50px;
}

.btnOpcvs,
.contactInner .btnContact01,
.contactInner .btnContact02,
.contactInner .btnContact03,
.btnContact04{
  font-size: 2.2rem;
}

.contactInner .btnContact01 a,
.contactInner .btnContact02 a,
.contactInner .btnContact03 a{
  width:280px;
}

.btnOpcvs a,
.btnContact04 a{
  width:360px;
}

.methodArea{
  margin: 0 auto 50px;
  width: 680px;
}

.methodArea dl{
  font-size: 1.8rem;
}

.methodArea dl .methodInner{
  grid-template-columns:155px 1fr;
}

.methodArea dl dt{
  padding-left: 15px;
}

/* footer */
#footer{
  margin-top: 170px;
}

#footer ul{
  width: 690px;
}

#footer li.romantist{
  width: 340px;
}

#footer li.community{
  width: 260px;
}

#footer p{
  font-size: 1.5rem;
  text-align: center;
}


#footer p:not([class]) br{
  display: block;
}

#footer p.sponsorTxt{
  font-size: 1.8rem;
}

#footer p.sponsorTxt span{
  display: inline;
  padding-left: 10px;
}


}