/*
Theme Name:
Author:   
Description:test
Version:    1.0
*/
@media screen and (min-width:769px) {
body{
    background-color: #fff2f2;
    color: #411515;
    font-family: 'Kosugi Maru', sans-serif;
}

    /* ----------------------*
 * ヘッダー
 * ----------------------*/
 #fixed-sp-btn{
  display: none;
}
 header{
    width: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
     background-color: rgba(255, 255, 255, 0.7);
 }
 #logo{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#logo img{
  width: 200px;
}
#oubo{
    display: flex;
    align-items: center;
    gap: 30px; 
}
#telnumber a,
#formbtn a{
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}
#telnumber a{
    flex-direction: column;
    align-items: flex-start; 
    padding-left: 35px;      
    color: #FF00C8;          
}

#telnumber p{
    margin: 0;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.1;
}

#telnumber p:last-child{
    font-size: 20px;         
    margin: auto;
}    

/* 電話アイコン（擬似要素） */
#telnumber a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;             
    width: 30px;
    height: 30px;
    background-image: url("../../images/tel-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- 応募フォームボタン --- */
#formbtn a {
    background: linear-gradient(to bottom, #FF8FA3, #FF5DA2);
    color: #fff;
    padding: 12px 25px 12px 50px; 
    border-radius: 8px;     
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 0 #d1407a;
    transition: 0.2s;
}

/* メールアイコン（擬似要素） */
#formbtn a::before {
    content: "";
    position: absolute;
    left: 15px;             
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url("../../images/mail-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- 応募フォームボタン --- */
#formbtn a {
    position: relative;
    display: inline-flex;
    align-items: center;

    background: linear-gradient(to bottom, #FF8FA3, #FF5DA2);
    color: #fff;
    padding: 12px 25px 12px 50px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 0 #d1407a;
    transition: all 0.2s ease;
    overflow: hidden; /* ← キラッ用 */
}

/* --- キラッ演出 --- */
#formbtn a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

/* --- ホバー時（キラッ＋少し浮く） --- */
#formbtn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #d1407a;
}
#formbtn a:hover::after {
    left: 125%;
}

/* --- クリック時（ふわっと沈む） --- */
#formbtn a:active {
    transform: translateY(2px); /* ↓沈む */
    box-shadow: 0 2px 0 #d1407a; /* 影を短く */
}

/* ----------------------*
 * メイン
 * ----------------------*/
 #main-sp{
  display: none;
 }
#main-pc img{
  width: 100%;
  height: 100vh;
  object-fit: cover; 
  padding-top: 120px;
}

/* ----------------------*
 * お悩み
 * ----------------------*/
 #fukidasi-sp{
  display: none;
 }
#nayami{
    position: relative;
    padding: 150px 0;
    max-width: 1000px;
    margin: 0 auto;
    transition: 2s;
    opacity: 0;
}
#nayami.activ{
  opacity: 1;
  transform: translateY(-50px);
}

#nayami h2{
    font-size: 40px;
    text-align: center;
}

.blue {
  color: #3ba7ff;
  background: linear-gradient(transparent 70%, #FFEE05 60%);
}

#onayami-girl {
  width: 250px;
  margin: 0 auto;
  margin-top: 100px;
}

#onayami-girl img {
  width: 100%;
}

#nayami p{
    font-size: 28px;
}

#nayami div[id^="fukidasi"] {
  position: absolute;
  width: 250px;
}

#nayami div[id^="fukidasi"] img {
  width: 100%;
}

#nayami div[id^="fukidasi"] p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}  

#fukidasi-1 {
  top: 260px;
  left: 50px;
}

#fukidasi-2 {
  top: 260px;
  right: 50px;
}

#fukidasi-3 {
  bottom: 60px;
  left: 50px;
}

#fukidasi-4 {
  bottom: 60px;
  right: 50px;
}
/* ----------------------*
 * 解決
 * ----------------------*/
#kaiketu{
     position: relative;
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
    transition: 2s;
    opacity: 0;
    transform: translateX(-100px);
}
#kaiketu.activ{
  opacity: 1;
  transform: translateX(0);
}
#kaiketu h2{
    font-size: 40px;
    text-align: center;
}
.pink {
  color: #FF00C8;
  background: linear-gradient(transparent 70%, #FFEE05 60%);
}
#kaiketu ul{
    margin: 30px auto;
    display: flex;
    gap: 20px;
}
#kaiketu li {
  text-align: center;
  background-color: #fff;
  width: 350px;
  padding: 10px 10px 20px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
#kaiketu li img {
  display: block;
  margin: 0 auto;
}

#kaiketu li:nth-child(1) {
  background-color: #FFFEEF;
}

#kaiketu li:nth-child(2) {
  background-color: #EFFFF2;
}

#kaiketu li:nth-child(3) {
  background-color: #FEF2FF;
}
.kaiketu{
    height: 50px;
    color: #FF00C8;
    font-size: 28px;
}
/* ----------------------*
 * 1日
 * ----------------------*/
 #day-sp{
  display: none;
 }
 #day{
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    transition: 2s;
    opacity: 0;
}
#day.activ{
  opacity: 1;
  transform: translateY(-50px);
}
#day h2{
    font-size: 40px;
    text-align: center;
    position: absolute;
    transform: translate(80%,70%);
}
#day-img img {
  width: 100%;
  height: 90vh;
}
 /* ----------------------*
 * 教育体制
 * ----------------------*/
 #kyouiku{
    margin: 150px auto;
    width: 100%;
 }
 #kyouiku h2{
    font-size: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: 2s;
 }
 #kyouiku h2.activ{
  opacity: 1;
  transform: translateX(0);
 }
 #kyouiku-1{
    max-width: 1200px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 60px;
    margin-top: 30px;
    opacity: 0;
    transform: translateX(-100px);
    transition: 2s;
 }
 #kyouiku-1.activ{
  opacity: 1;
  transform: translateX(0);
 }
 #kyouiku-text p{
    margin-bottom: 20px;
 }
#kyouiku ul{
    margin: 30px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
}
#kyouiku li {
  text-align: center;
  background-color: #fff;
  width: 350px;
  padding: 10px 10px 20px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
#kyouiku li img {
  display: block;
  margin: 20px auto;
}
.kyouiku-card{
    height: 50px;
    color: #FF00C8;
    font-size: 24px;
    margin-top: 20px;
}
/* 順番に横スクロール */
.scroll li{
  opacity: 0;
  transform: translateX(-80px);
  transition: 2s;
}
.scroll.activ li{
    opacity: 1;
    transform: translateX(0);
}
/* 1枚目 */
.scroll.activ li:nth-child(1){
    transition-delay: 0s;
}

/* 2枚目 */
.scroll.activ li:nth-child(2){
    transition-delay: 0.8s;
}

/* 3枚目 */
.scroll.activ li:nth-child(3){
    transition-delay: 1.6s;
}
/* ----------------------*
 * スタッフの声
 * ----------------------*/
 #staff-voice h2{
    font-size: 40px;
    text-align: center;
 }
#voice{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    gap: 50px;
    background-color: #fff;
    width: 800px;
    padding: 50px 20px 30px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
#staff-text p{
    margin-bottom: 20px;
}
#staff-voice{
  transition: 2s;
    opacity: 0;
}
#staff-voice.activ{
  opacity: 1;
  transform: translateY(-50px);
}
/* ----------------------*
 * よくあるご質問
 * ----------------------*/
#question{
    width: 100%;
    max-width: 1000px;
    margin: 150px auto;
}
#question h2{
    font-size: 40px;
    text-align: center;
}
details {
  margin: 15px;
  border-radius: 10px;
  background: #fff;
  padding: 20px 25px;
}
summary {
    font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #F27A8A;
}
.answer-text p {
  margin-top: 20px;
}
summary::after {
  content: "＋";
  float: right;
}
.answer{
    font-size: 20px;
  font-weight: bold;
}
details[open] summary::after {
  content: "－";
}
/* フェードイン */
#question h2,
#question details{
    opacity: 0;
    transform: translateX(-80px);
    transition: 2s;
}
#question.scroll.activ h2,
#question.scroll.activ details{
    opacity: 1;
    transform: translateX(0);
}

/* 時間差 */
#question.scroll.activ h2{
    transition-delay: 0s;
}
#question.scroll.activ details:nth-of-type(1){
    transition-delay: 0.6s;
}
#question.scroll.activ details:nth-of-type(2){
    transition-delay: 1.2s;
}
#question.scroll.activ details:nth-of-type(3){
    transition-delay: 1.8s;
}
/* ----------------------*
 * 募集要項
 * ----------------------*/
 #bosyu{
    background-color: #fff;
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    padding: 50px 20px 30px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
}
#bosyu h2{
    font-size: 40px;
    text-align: center;
}
 .recruit {
  border-collapse: collapse;
}
/* 行ごとの横線 */
.recruit tr {
  border-bottom: 1px solid #ccc;
}
/* 左側（項目） */
.recruit th {
  width: 30%;
  text-align: left;
  padding: 20px 50px;
  vertical-align: top;
  font-weight: bold;
}
/* 右側（内容） */
.recruit td {
  width: 70%;
  padding: 20px 10px;
  line-height: 1.8;
}
#voice-text {
    font-size: 20px;
  text-align: center;
  margin-top: 30px;
}
/* ----------------------*
 * 応募フォーム
 * ----------------------*/
#form{
  margin: 150px auto 30px;
  background: white;
  padding: 50px;
}
#form h2{
  font-size: 40px;
  text-align: center;
}
#form-container{
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
}
.form-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.form-group label {
  width: 250px;
  font-size: 16px;
}
/* 必須 */
.form-group span {
  background: hotpink;
  color: white;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 10px;
  margin-left: 5px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 450px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
textarea {
  height: 120px;
  resize: none;
}
/* ラジオボタン */
.radio-group {
  display: flex;
  gap: 20px;
  padding-top: 5px;
}
#button-area {
  text-align: center;
  margin-top: 30px;
}
button {
   background: linear-gradient(to bottom, #FF8FA3, #FF5DA2);
  color: white;
  border: none;
  padding: 15px 80px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 4px 0 #d1407a;
  transition: 0.2s;
}
button:hover {
  opacity: 0.8;
}
/* ----------------------*
 * フッター
 * ----------------------*/
 #footer-area{
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
 }
#footer-logo img{
    width: 200px;
    margin: 0 auto;
}
#footer-text{
    font-size: 20px;
    text-align: center;
    margin-top: 150px;
}
.footer-info{
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-icon img{
    width: 50px;
}
#footer-area p{
    padding-bottom: 20px;
}
#copyright{
    font-size: 12px;
    text-align: center;
    display: block;
    margin: 50px auto;
}
}