@charset "UTF-8";
/*========================= 
共通 
=========================*/
.yusei-magic-regular {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.yomogi-regular {
  font-family: "Yomogi", cursive;
  font-weight: 400;
  font-style: normal;
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

img{
    width: 100%;
}

a{
  text-decoration: none;
  color: #353535;
  }

  ul{
    list-style: none;
  }

  body{
    max-width: 100%;
    height: 100%;
  }

 
 /* =========================
 ハンバーガーメニュー設定ここから
 ========================= */
.hbgmenu {
  visibility:hidden;
   border: none;
    width: 60px;
    height: 60px;
    background-color: #ffd413;
    border-radius: 50px;
    position: fixed;
    top: 3%;
    right: 3%;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s;
    transform: translateY(0px);
}

.hbgmenu img{
  width: 30px;
  display: block;
  margin: -8px auto 0;
}

.hbgmenu:hover{
  transition: transform 0.3s;
  transform: translateY(-8px);
}

.hbgmenu p{
  position: absolute;
  bottom: 6.5px;
  left: 23%;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #353535;
}

.hbg_contents{
  width: 100%;
  height: 100vh;
  background-color: #fdeb9b;
  position: fixed;
  display: inline-block;
  top: 0;
  right: -100%;
  transition: right 0.5s;
  z-index: 998;
 }
 
 .hbg_contents > a img {
  display: block;
  margin: 40px auto 0;
}

 .hbg_contents.active{
   right: 0;
 }

 .hbg_contents img{
  width: 130px;
  height: auto;
  text-align: center;
}
 
 .hbg_lists{
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   margin-top: 120px;
  }

.hbg_lists li {
width: 30%;
margin: 1%;
background-color: #fff;
border-radius: 10px;
padding: 20px 0;
text-align: center;
}

 .hbg_lists li a{
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
 }

 .hbg_lists li .hbg_img{
  width: 40px;
  height: auto;
  display: block;
 }

 /* ハンバーガーメニューの設定ここまで */

 /*=========================
  topへ戻るボタン 
  =========================*/
 .go_top{
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #353535;
  color: #fff;
  text-align: center;
  line-height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  user-select: none;
  z-index: 1000;
}

.go_top::after{
  content: '';
  position: absolute;
  left:37%;
  top: 43%;
  width: 12px;
  height: 12px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: rotate(45deg);
}

.go_top:hover::after {
  animation: bounce_arrow 0.6s ease-in-out;
}

@keyframes bounce_arrow {
  0%   { transform: translateY(0) rotate(45deg); }
  25%  { transform: translateY(-5px) rotate(45deg); }
  50%  { transform: translateY(0) rotate(45deg); }
  75%  { transform: translateY(-5px) rotate(45deg); }
  100% { transform: translateY(0) rotate(45deg); }
}
 /* topへ戻るボタンここまで */

/*=========================
 header画像の設定ここから 
 =========================*/
  .slick_bg{
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 100vh;
    width: 100%;
    z-index: 900;
}

.slick_bg01{
  background-image: url(../images/top_girl.jpg);
} 
.slick_bg02{
  background-image: url(../images/top_boys_play.webp);
}
.slick_bg03{
  background-image: url(../images/top_boy.webp);
}
 /* header画像の設定ここまで */

 /*=========================
  キャッチコピーの設定ここから 
  =========================*/
 .main_text h1{
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 6.2rem;
  top: 48%;
  left: 7%;
  color: #fff;
  z-index: 910;
}
 /* キャッチコピーの設定ここまで */

 /*=========================
  右横の資料請求ボタン
  ========================= */
 .main_contact{
  width: 50px;
  height: 120px;
  background-color: #fb8506;
  border-radius: 15px;
  position: fixed;
  top: 200px;
  right: -10px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
 }

 .main_contact img{
   width: 60%;
   margin-left: 7px;
   margin-top: 7px;
 }

 .main_contact p{
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  letter-spacing:0.2em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-left: 11px;
  color: #fff;
 }

 .main_contact:hover {
  transform: translateX(-3px);
}

 /*=========================
  ナビゲーションの設定ここから
  =========================*/
.main_nav {
  position: fixed;
  max-width: 980px;
  height: 110px;
  top: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
}

.main_nav nav ul {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.mainN_items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; 
}

.mainN_items a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mainN_icon {
  width: 50px;
  transition: transform 0.3s;
  transform: rotate(0deg);
}

.mainN_sv {
  width: 70px;
}

.mainN_item {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #353535;
  font-size: 1.3rem;
  text-align: center;
}

.mainN_text {
  font-family: "Yomogi", cursive;
  font-weight: bold;
  color: #ffd413;
  letter-spacing: 0.2rem;
  font-size: 1rem;
  text-align: center;
}

.mainN_items:hover .mainN_icon {
  transform: rotate(-13deg);
}

.mainN_logo {
  width: 110px;
  transition: transform 0.3s;
  transform: translateY(0px);
}

.mainN_logo:hover {
  transform: translateY(-8px);
}

/* ナビゲーション設定ここまで */

/*=========================
 footerナビゲーションの設定ここから 
 =========================*/
.footer{
  background-color: #ffd413;
  max-width: 100%;
}

.footer_nav img{
  position: relative;
  margin-top: -80px;
}

.footer_nav{
  position: relative;
  width: 100%;
}

.footer_lists{
  display: flex;
  position: relative;
  gap: 10px;
  top: 20px;
  justify-content: center;
  z-index: 2;
}

.footer_lists li{
  width: 150px;
  height: 32px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.3rem;
}

.footer_lists img{
  width: 70px;
  transition: transform 0.3s;
  transform: translateY(0px);
}

.footer_lists img:hover{
  transform: translateY(-8px);
}

.footer_lists a:link {
  color: #353535;
}

.footer_lists a:visited {
  color: #353535;
}
.footer_lists a:hover{
  color: #fff;
}


/* footerナビゲーションの設定ここまで */

/*=========================
 footerコンテンツの設定ここから
 =========================*/

.foote_contact{
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: #ffd413;
}

.foote_left{
  width: 300px;
  position: relative;
  align-items: center;
  text-align: center;
  margin: 100px 0;
}

.foote_left img{
  width: 100px;
}

.name{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #353535;
  margin-bottom: 5px;
}

.add{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: #353535;
}

.foote_right{
  width: 300px;
  margin: 100px 0;
}

.mail{
  margin: 10px auto;
}

.mail a {
  background: #fff;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 200px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #353535;
}

.mail a:after {
content: "";
position: absolute;
top: 50%;
bottom: 0;
right: 2rem;
font-size: 90%;
display: flex;
justify-content: center;
align-items: center;
transition: right 0.3s;
}

.mail a:hover {
background: #353535;
color: #FFF;
}

.number{
  margin: 2px auto; 
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #353535;
}

.number .time{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: #353535;
  margin-top: 5px;
}

/* footerの設定ここまで */

/*=========================
 下部画像スライドの設定ここから
 ========================= */
.roop{
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}
.roop_contents{
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.roop_content{
  display: flex;
  animation: scroll 20s linear infinite;
}
.s_item{
flex: 0 0 auto;
width: 260px;
height: auto;
margin: 0 10px;
overflow: hidden;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}
/* 画像スライドの設定ここまで */

/*=========================
 下部お問い合わせスペース設定ここから
 ========================= */
.under_contact{
  width: 750px;
  height: 200px;
  position: relative;
  margin: 0 auto;
}

.under_bd{
  border-bottom: 2px solid #ffd413;
  flex: 1;
}

.under_text{
  display: flex;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.under001{
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #353535;
}

.under002{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: #353535;
}

  .under003 a{
    background: #ffd413;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    padding: 10px 40px;
    transition: 0.3s ease-in-out;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #353535;
  }

  .under003 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.7rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
  }
  
  .under003 a:hover {
  background: #353535;
  color: #FFF;
  }

  .under003 a:hover:after {
  right: 1.4rem;
  }
  /* お問い合わせスペース設定ここまで */


/* =========================
indexの設定ここから
========================= */
/* スクロールダウンの位置 */
.container_06 {
  position: relative;
}

.scroll-down_06 {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.circle-arrow {
  width: 35px;
  height: 35px;
  border: 3px solid #ffd413;
  border-radius: 50%;
  position: relative;
  margin-bottom:5px;
  margin-inline: auto;
  animation: pulse 2s infinite;
  background-color: #ffd413;
}

.circle-arrow::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.slick.bd {
  position: relative;
  overflow: hidden;   
}

.slick:before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: #ffd413;
  left: 0;
  bottom: 0;
  border: none;
  z-index: 100;
  line-height: 1.0em;
  vertical-align: bottom;
}

.concept {
  background-color: #ffd413;
  position: relative;
  overflow: hidden;
  line-height: 1.0em;
  vertical-align: bottom; /* 波の高さ分だけ余白を確保 */

  /* 波画像を下端に配置 */
  background-repeat: no-repeat;
  background-size: 100% auto; /* 横幅いっぱい、高さは自動 */
  background-position: bottom center;
  float:bottom;
}

/* コンセプト上側設定ここから */
.concept h2 {
  width: 400px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
  color: #353535;
  text-align: center;
  padding-top: 40px;
  margin: 0 auto;
}

.concept p {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #353535;
  text-align: center;
  width: 300px;
  margin: 30px auto;
}
/*  コンテンツ001エリア全体 */
.concept001 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; 
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 80px;
  box-sizing: border-box;
}

/* 左側の画像エリア */
.con001_img {
  position: relative;
  flex: 1 1 400px;
  margin-top: 40px;
}

.bg_circleY {
  width: 85%;
  margin: 0 auto;
  display: block;
}

.con001_main {
  position: absolute;
  width: 70%;
  top: 10%;
  left: 10%;
  clip-path: polygon(
    50% 0%, 89% 4%, 100% 36%, 96% 73%, 
    84% 91%, 40% 100%, 11% 92%, 
    0 57%, 0 37%, 15% 8%
  );
}

/* 右側のテキストエリア */
.con001_text {
  flex: 1 1 500px;
  max-width: 510px;
  margin: 0; 
}

.concept_txt h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 4.5rem;
  color: #fb8506;
  margin-top: 20px;
}

.concept_txt p {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #353535;
  margin-bottom: 30px;
}
/* コンセプト上側の設定ここまで */


/* コンセプト2の設定ここから */
/* メインコンテナ */
.concept002 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: #fff;
  padding: 15px 0;
  margin-bottom: 80px;
}

/* テキストエリア */
.concept002 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin:80px auto;
  box-sizing: border-box;
}

.con002_maintext {
  flex: 1 1 500px; 
  max-width: 510px; 
  min-width: 300px; 
  margin: 0;
  z-index: 2;
}

/* 画像エリア */
.con002_mainimg {
  position: relative;
  flex: 1 1 200px;
}

.bg_circleO {
  max-width: 85%;
  margin: 0 auto;
  display: block;
}

.con002_main {
  position: absolute;
  max-width: 70%;
  top: 0;
  right: 15%;
  clip-path: polygon(
    40% 12%, 89% 17%, 100% 40%, 100% 70%, 
    83% 84%, 39% 87%, 10% 79%, 3% 61%, 
    0 40%, 21% 21%
  );
}
/* コンセプト2の設定ここまで */

/* コンセプトボタン設定ここから */
.btn_con001 a {
  background: #ffd413;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 230px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #353535;
}
.btn_con001 a:after {
content: "";
position: absolute;
top: 50%;
bottom: 0;
right: 2rem;
font-size: 90%;
display: flex;
justify-content: center;
align-items: center;
transition: right 0.3s;
width: 6px;
height: 6px;
border-top: solid 2px currentColor;
border-right: solid 2px currentColor;
transform: translateY(-50%) rotate(45deg);
}
.btn_con001 a:hover {
background: #353535;
color: #FFF;
}
.btn_con001 a:hover:after {
right: 1.4rem;
}
/* コンセプトボタン設定ここまで */


/* 装飾の設定ここから */
.ornament{
  position: relative;
  width: 100%;
}
.pentagon{
  position: absolute;
  width: 10%;
  top:-20px;
  right: 10%;
  z-index: 900;
  animation: rotation 2.3s linear infinite;
}

.circle{
  position: absolute;
  width: 5%;
  top:30px;
  right: 3%;
  z-index: 900;
  animation: rotation 1.5s linear infinite;
}

.triangle{
  position: absolute;
  width: 10%;
  top: -80px;
  left: 5%;
  z-index: 900;
  transform: rotate(-8deg);
  animation: rotation 2.3s linear infinite;
}

.square{
  position: absolute;
  width: 5%;
  top:-30px;
  left: 30%;
  z-index: 900;
  transform: rotate(20deg);
  animation: rotation 1.5s linear infinite;
}

.pentagon02{
  position: absolute;
  width: 13%;
  top: 300px;
  left: 50%;
  z-index: 900;
  transform: rotate(13deg);
  animation: rotation 2s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(-5deg);
  }
  25%{
    transform: rotate(-15deg);
  }
  50%{
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100%{
    transform: rotate(-5deg);
  }
}

/* 装飾の設定ここまで */

/* お知らせの設定ここから */
.news{
  display: flex;
  background-color: #fff8d8;
  width: 100%;
  height: auto;
  padding: 40px 0 10px;
}

.news_left{
  width: 30%;
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
}

.news_left h3{
  font-size: 1.6rem;
  color: #353535;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.news_left p{
  font-family: "Yomogi", cursive;
  font-weight: bold;
  color: #353535;
  letter-spacing:0.2rem;
  font-size: 1.5rem;
  padding-bottom: 3px;
}

.news_img{
width: 55px;
}

.news_light{
  display: flex;
  flex-direction: column;
 width: 100%;
 margin:20px 0;
 justify-content: center;
}

.news_list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.news_list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #353535;
  border-bottom: 2px dotted #353535;
  width: 75%;
  padding: 10px 20px;
}
.news_list .item:first-child a{
  width: 75%;
  border-top: 2px dotted #353535;
}
.news_list .item .date{
  margin: 0;
  min-width: 100px;
  font-size: 1.5rem;
  color: #353535;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  padding: 0 10px 0 0;
}
.news_list .item .category{
  margin: 0;
  min-width: 100px;
  padding: 0 10px 0 0;
}
.news_list .item .category span{
  background: #999;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 1rem;
  line-height: 1;
}
.news_list .item .title{
  margin: 0;
  font-size: 1.5rem;
  color: #353535;
  font-family: "Zen Maru Gothic", sans-serif;
  
}
.news_list .item a:hover .title{
  color: #ffd413;
}

/* お知らせボタン設定ここから */

.btn_news a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px 0;
  max-width: 150px;
  padding: 13px 0 13px 15px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.btn_news a:before, .btn_news a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.btn_news a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.btn_news a:after {
  left: 0;
  background: #353535;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.btn_news a span {
  font-size: 1.4rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #353535;
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.btn_news a:hover span {
  color: #fff;
}

.btn_news a:hover:before {
  left: 2rem;
}

.btn_news a:hover:after {
  right: 0;
  width: 100%;
}

.btn_news a:before, .btn_news a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.btn_news a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.btn_news a:after {
  left: 0;
  background: #353535;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.btn_news a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.btn_news a:hover span {
  color: #fff;
}
.btn_news a:hover:before {
  left: 2rem;
}
.btn_news a:hover:after {
  right: 0;
  width: 100%;
}

/* お知らせボタン設定ここまで */
/* お知らせ設定ここまで */

/* indexの設定ここまで */

/*=========================
 aboutの設定ここから
 ========================= */
.about_main{
  background-image: url(../images/about_top.jpg);
  background-size:cover;
  height: 45vh;
  width: 100%;
  background-position: center center;
  position: relative;
}

.about_main:before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: #ffd413;
  left: 0;
  bottom: -0.5px;
  border: none;
  z-index: 100;
  line-height: 1.0em;
  vertical-align: bottom;
}

.a_concept{
  background-color: #ffd413;
}

.a_concept h2{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #353535;
  text-align: center;
  padding-top: 40px;
}

.a_concept p{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing:0.3rem;
  color: #fff;
  text-align: center;
  width: 30%;
  margin:  5px auto 20px auto; 
}

.about_text{
  background-color: #ffd413;
  padding-bottom: 20px;
}

.about_text p{
  display: block;
  width: 600px;
  height: auto;
  text-align: left;
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #353535;
}

.a_back_nami{
  width: 100%;
  border: none;
  background-color: #ffd413;
}

.a_back_nami img{
  width: 100%;
  position: relative;
  bottom: -33px;
  z-index: 100; 
}

/* neukのサービス図の設定ここから */
.tell{
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
  url(../images/background_dot.png);
  width: 100%;
  margin-top: 0;
  background-repeat: repeat;
}

.tell_img{
  max-width: 650px;
  min-width: 375px;
  margin: 0 auto;
}

.tell_img img{
  margin: 100px auto 30px;
  vertical-align: top;
}

.ans{  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #353535;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 50px;
}

/* neukのサービスサービス図の設定ここまで */

/* 3つの特徴の設定ここから */
.chara_title{
position: relative;
text-align: center;
margin: 100px auto 20px;
} 

.chara_title h2{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #353535;
}

.chara_title p{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing:0.3rem;
  color: #ffd413;
  margin:  5px auto; 
}

.characteristic{
  width: 100%;
  display: flex;
  gap:50px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 100px;
}

.character_orange{
  background-image: url(../images/orange.webp);
  border-radius: 50% 50% 7% 9% / 30% 30% 9% 7% ;
  max-width: 300px;
  min-width: 200px;
  max-height: 430px;
  min-height: 350px;
  margin-top: 70px;
}
.character_orange h3{
  padding:60px 40px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3rem;
  color: #fff;
  text-align: center;
}

.character_orange p{
  padding: 20px 50px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #fff;
  text-align: left;
}


.character_pink{
  background-image: url(../images/pink.png);
  border-radius: 50% 50% 7% 9% / 30% 30% 9% 7% ;
  max-width: 300px;
  min-width: 200px;
  max-height: 430px;
  min-height: 350px;
  margin-top: 0;
}

.character_pink h3{
  padding:60px 20px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3rem;
  color: #fff;
  text-align: center;
}

.character_pink p{
  padding: 15px 50px;
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #fff;
  text-align: left;
}

.character_green{
  background-image: url(../images/green.jpg);
  border-radius: 50% 50% 7% 9% / 30% 30% 9% 7% ;
  max-width: 300px;
  min-width: 200px;
  max-height: 430px;
  min-height: 350px;
  margin-top: 70px;
}
.character_green h3{
  padding:60px 40px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3rem;
  color: #fff;
  text-align: center;
}

.character_green p{
  padding: 10px 50px;
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #fff;
  text-align: left;
}

/* 3つの特徴の設定ここまで */
/* aboutの設定ここまで */

/*=========================
 serviceの設定ここから
 ========================= */
.service_main{
  background-image: url(../images/service.jpg);
  background-size:cover;
  height: 45vh;
  width: 100%;
  background-position: center center;
  position: relative;
}

.service_main:before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: #fff;
  left: 0;
  bottom: -0.5px;
  border: none;
  z-index: 100;
  line-height: 1.0em;
  vertical-align: bottom;
}

.w_title{
  background-color: #fff;
}

.w_title h1{
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #353535;
  text-align: center;
  padding-top: 40px;
}

.w_title p{
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing:0.3rem;
  color: #ffd413;
  text-align: center;
  margin:  5px auto 20px auto; 
}

.s_items {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 100px; 
  margin: 20px auto;
  position: relative;
}

.s_items a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #353535;
  display: flex; 
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-bottom: 2px dotted #ffd413;
  padding-bottom: 4px;
  transition: 0.3s ease-in-out;
}

.circle_btn{
width: 25px;
height: 25px;
border-radius: 50%;
background-color: #ffd413;
position: relative;
}

.circle_btn::after{
content: '';
position: absolute;
left:30%;
top: 26%;
width: 6px;
height: 6px;
border-bottom: 3px solid #fff;
border-right: 3px solid #fff;
transform: rotate(45deg);
}

.s_items a:hover .circle_btn::after {
  animation: bounce_yellow 0.6s ease-in-out;
}

@keyframes bounce_yellow {
  0%   { transform: translateY(0) rotate(45deg); }
  25%  { transform: translateY(-3px) rotate(45deg); }
  50%  { transform: translateY(0) rotate(45deg); }
  75%  { transform: translateY(-3px) rotate(45deg); }
  100% { transform: translateY(0) rotate(45deg); }
}

.s_items a:hover{
  color: #ffd413;
}

.explain{
  background-color: #fff;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  margin: 100px auto 50px;
}
.explain h2{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fb8506;
  text-align: center;
  width: 300px;
}

.explain p{
  width: 760px;
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing:0.3rem;
  line-height: 2.1rem;
  color: #353535;
}

.examples{
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffd413;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.examples h3{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #353535;
  margin: 15px 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.examples h3::after{
  content: "";
  display: inline-block;
  width: 25px;
  aspect-ratio: 1 / 1;
  background-image: url(../images/icon_light.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.example {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.example ul {
  display: flex;
  flex-direction: column;
  align-items:center;
  list-style: none;
  width: 25%;
  padding: 0;
  margin: 0;
  min-width: 200px;
  line-height: 2.1rem;
}

.example ul img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.example ul li{
  width: 100%; 
  margin-bottom: 5px;
  text-align: left; 
  font-size: clamp(1.4rem, 2.8vw, 1.6rem);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #353535;
  text-indent: -1em;
  padding-left: 1em
}

.example ul li::before {
  content: "●";
}

.case_study{
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url(../images/background_dot.png);
  background-repeat: repeat;
  padding: 80px 0;
  text-align: center;
}

.case_study h3 {
 position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #353535;
  margin-bottom: 10px;
}

.case_study > p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  color: #ffd413;
  margin-bottom: 50px;
}

.cases {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 80%;
    margin: 0 auto;
  }

/* case全体を横並び */
.case {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  gap: 50px;
}

/* 各ケースの枠 */
.case_container {
  flex: 1; /* 均等に幅を分ける */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* case_item 内の横並び */
.case_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  padding: 0 60px;
}

.case_items{
  text-align: left;
  padding-top: 30px;
  background: #fffbe8;
  margin-bottom: 25px;
  border-radius: 30px;
}

.case_item img {
  text-align: left;
  width: 60px;
  height: auto;
}

/* case番号とタイトルを縦並び・左揃え */
.case_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case_text div {
  display: block;
  min-width: 120px;
  height: 40px;
  background-color: #ffd413;
  border-radius: 30px;
  text-align: center;
  padding: 4px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #353535;
  margin-bottom: 8px;
}

.case_text h4 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #353535;
  margin: 0;
  padding-right:30px;
  text-align: left;
}

.arrow{
margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ffd413;
}

/* 課題・サポート・成長の縦並び */
.challenge {
  text-align: left;
  margin-top: 15px;
  margin-bottom: 25px;
  background: #fffbe8;
  padding: 0 60px;
  border-radius: 30px;
}

.challenge h5 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #f95300;
  margin-bottom: 8px;
}

.challenge p {
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #353535;
}

.group {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 25px;
    background: #fffbe8;
    padding: 30px 60px;
    border-radius: 30px;
}

.group:last-child {
  margin-bottom: 0;
}

.group h5 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #f95300;
  margin-bottom: 8px;
}

.group p {
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #353535;
}

.teachers{
  width: 100%;
  background-color: #fff;
  margin: 100px auto;
}

.teachers h3{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #353535;
  text-align: center;
  margin-bottom: 20px;
}

.teacher_text{
  display: flex;
  background-color: #ffd413;
  margin: 0 auto;
  width: 65%;
  padding: 40px 80px;
  border-radius: 50px;
}

.teacher_text img{
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-right: 20px;
}

.teacher_text p{
   font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #353535;
}

.faq_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
}

.faq_btn a{
  background: #ffd413;
  border-radius: 30px;
  position: relative;
  display: flex;
  max-width: 300px;
  padding: 10px 60px;
  transition: 0.3s ease-in-out;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #353535;
}

.faq_btn a:after {
content: "";
position: absolute;
top: 50%;
bottom: 0;
right: 1.7rem;
font-size: 90%;
display: flex;
justify-content: center;
align-items: center;
transition: right 0.3s;
width: 6px;
height: 6px;
border-top: solid 2px currentColor;
border-right: solid 2px currentColor;
transform: translateY(-50%) rotate(45deg);
}

.faq_btn a:hover {
background: #353535;
color: #FFF;
}

.faq_btn a:hover:after {
right: 1.4rem;
}

/*=========================
 how to useのページ設定
 ========================= */

.howto_main{
  background-image: url(../images/howto_top.webp);
  background-size:cover;
  height: 45vh;
  width: 100%;
  background-position: center top;
  position: relative;
}

.howto_main:before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: #fff;
  left: 0;
  bottom: -0.5px;
  border: none;
  z-index: 100;
  line-height: 1.0em;
  vertical-align: bottom;
}

.howto_all{
  background-color: #fff;
  max-width: 700px;
  min-width: 500px;
  height: auto;
  display: flex;
  border-spacing: 30px 0;
  gap: 30px;
  margin: 50px auto;
}

.step{
  display: flex;
  width: 100px;
  height: 100px;
  background-color: #ffd413;
  border-radius: 44% 52% 41% 55% / 43% 49% 41% 51%;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.step p{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.3rem;
  color: #353535;
  text-align: center;
}

.caption{
  width: 100%;
  margin-bottom: 25px;
}
.caption h2{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fb8506;
  max-width: 550px;
  min-width: 400px;
  text-align: left;
  padding: 0.2rem 0;
  margin-bottom: 1rem;
  border-bottom: 2px dotted #ffd413;
}

.caption p{
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing:0.2rem;
  line-height: 2.3rem;
  margin-bottom: 10px;
  color: #353535;
}

.caption div{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing:0.2rem;
  line-height: 2.3rem;
  margin-bottom: 10px;
  color: #353535;
}

.caption .tel{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing:0.2rem;
  line-height: 1.6rem;
  color: #353535;
}

.how_mail a:hover{
  color: #ffd413;
}


.how_mail a{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing:0.2rem;
  line-height: 2rem;
  color: #353535;
  margin-top: 6px;
}

.how_mail a img{
  width: 25px;
  aspect-ratio: 1 / 1;
  margin: 0 5px -5px 0;
}

.caption div{
  margin-top: 5px;
  font-size: 1.2rem;
  text-indent: -1em;
}

.caption span{
  font-size: 1.3rem;
  color: #fb8506;
}

.cap_text{
  margin: 15px auto 100px;
}

.caption p .cap_title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fb8506;
  width: 480px;
  text-align: left;
}


.arrow_howto{
  margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #353535;
  }

.need_area{
  width: 100%;
  background-color:#fffbe8;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 100px;
}

.need_area img{
  width: 30px;
  margin-bottom: 10px;
}

.need_area p{
  margin: 0 auto;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  color: #353535;
  min-width: 400px;
}

.s_faq_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 50px;
}

.s_faq_btn a{
  background: #ffd413;
  border-radius: 30px;
  position: relative;
  display: flex;
  max-width: 300px;
  padding: 10px 60px;
  transition: 0.3s ease-in-out;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #353535;
}

.s_faq_btn a:after {
content: "";
position: absolute;
top: 50%;
bottom: 0;
right: 1.7rem;
font-size: 90%;
display: flex;
justify-content: center;
align-items: center;
transition: right 0.3s;
width: 6px;
height: 6px;
border-top: solid 2px currentColor;
border-right: solid 2px currentColor;
transform: translateY(-50%) rotate(45deg);
}

.s_faq_btn a:hover {
background: #353535;
color: #FFF;
}

.s_faq_btn a:hover:after {
right: 1.4rem;
}

/*  =========================
companyの設定ここから
 ========================= */
 .company_main{
  background-image: url(../images/office.jpg);
  background-size:cover;
  height: 45vh;
  width: 100%;
  background-position: center center;
  position: relative;
}

.company_main:before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: #fff;
  left: 0;
  bottom: -0.5px;
  border: none;
  z-index: 100;
  line-height: 1.0em;
  vertical-align: bottom;
}

/* 会社概要 */
.company {
  display: flex;
  justify-content: center;   /* 横方向中央寄せ */
  align-items: center;       /* 縦方向も中央揃え */
  gap: 20px;                 /* テーブルと地図の間隔 */
  width: 80%;
  margin: 80px auto;
}

.company_info {
  flex: 1;                   /* 横並び時にバランスよく伸縮 */
  max-width: 500px;          /* 最大幅を制御 */
}

.company_info th,
.company_info td {
  padding: 20px 0;
  border-bottom: 2px dotted #ffd413;
}

.company_info th {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #353535;
  text-align: left;
  padding-right: 10px;
  width: 30%;
}

.company_info td {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 2.3rem;
}

.map {
  flex: 1;
  max-width: 500px; 
}

.map iframe {
  width: 100%;
  height: 500px;
  border: none;
}
/*=========================
 FAQの設定ここから
 ========================= */
.faq_main{
 background-image: url(../images/runnung_girl.webp);
  background-size:cover;
  height: 45vh;
  width: 100%;
  background-position: center -50px;
  position: relative;
}

.faq_main:before{
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: #fff;
  left: 0;
  bottom: -0.5px;
  border: none;
  z-index: 100;
  line-height: 1.0em;
  vertical-align: bottom;
}

 .accordion_area {
  width: 750px;
  margin: 50px auto 100px;
 }

 .accordion_one{
  margin-bottom: 30px;
 }

.accordion_area .accordion_one .ac_header {
  background-color: #ffe053;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 10px;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #fdeb9b;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #353535;
  width: 15px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #353535;
  width: 0;
  height: 15px;
  top: 0;
  bottom: 0;
  right: 6px;
  transition: 0.3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 15px 40px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #fffff0;
  margin-top: 10px;
}

@media screen and (max-width: 736px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/*=========
faq
=========*/

.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: #000d86;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 1.6rem;
 font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #353535;
}

.p-faq__a-txt img{
  width: 80%;
  margin: 10px auto 0 ;
}
@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 1.5rem;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 1.5rem;
  }
}

.p-faq__bodyinner {
  display: block;
  position: relative;
  line-height: 1.5;
}

.p-faq__bodyinner p.p-faq__a-txt {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing:0.2rem;
  color: #353535;
}

hr{
border-width: 2px 0 0 0;
border-style: dotted;
border-color: #ffd413;
}

.p-faq__a-txt small{
  font-size: 1.4rem;
  color: #f95300;
  line-height: 1.5rem;
}

.p-faq__bodyinner ul li{
    width: 100%; 
    margin-bottom: 10px;
    text-align: left; 
    font-size: 1.5rem;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #353535;
    text-indent: -1em;
    padding-left: 1em
  }
  
  .p-faq__bodyinner ul li::before {
    content: "●";
    color: #fb8506;
    margin-right: 3px;
  }

  .p-faq__a-txt span{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    color: #fb8506;
    font-size: 1.6rem
  }

@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }
  .p-faq__bodyinner::before {
    font-size: 1.5rem;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 1.5rem;
  }
}


/*==================
contactの設定ここから
==================*/
.contact_main{
  background-image: url(../images/playing_boy.jpg);
   background-size:cover;
   height: 45vh;
   width: 100%;
   background-position: center -100px;
   position: relative;
 }
 
 .contact_main:before{
   content: "";
   position: absolute;
   height: 60px;
   width: 100%;
   clip-path: polygon(50% 0,100% 100%,0 100%);
   background-color: #fff;
   left: 0;
   bottom: -0.5px;
   border: none;
   z-index: 100;
   line-height: 1.0em;
   vertical-align: bottom;
 }

 .contact_tell{
  display: flex;
  max-width: 700px;
  min-width: 400px;
  background-color: #fff8d8;
  margin: 50px auto;
  border-radius: 20px;
  padding: 20px 50px;
  align-items: center;
 }

 .tell_title{
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #353535;
  padding-right: 10px;
  width: 50%;
  text-align: center;
 }

 .contact_tellnum{
  font-size: 3.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #353535;
  line-height: 2.5rem;
 }
.contact_tellnum span{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: #353535;
  line-height: 2em;
}

.form{
  display: flex;
  max-width: 700px;
  background-color: #fff8d8;
  margin: 70px auto 200px;
  padding: 50px 0;
  border-radius: 20px;
  justify-content: center;
}

label{
  display: flex;
  align-items: center;
}

.label{
margin-top: 10px;
color: #353535;
font-family: "Zen Maru Gothic", sans-serif;
font-weight: 700;
font-size: 1.6rem;
padding-bottom: 6px;
}

.essential{
margin-left: 5px;
padding: 2px;
background-color: #f95300;
border-radius: 5px;
color: #fff;
font-size: 1.2rem;
}

.label small{
  color: #353535;
  margin-left: 8px;
  font-family: "Kosugi Maru", sans-serif;
font-weight: 400;
font-size: 1.3rem;
}

input{
  border:none;
  outline:none
}

.name_area,
.email_area,
.tel_area{
width: 450px;
height: 30px;
font-size: 1.6rem;
color: #353535;
font-family: "Kosugi Maru", sans-serif;
font-weight: 400;
font-style: normal;
padding: 5px;
margin-bottom: 20px;
}

.post_code{
width: 200px;
height: 30px;
font-size: 1.6rem;
color: #353535;
font-family: "Kosugi Maru", sans-serif;
font-weight: 400;
font-style: normal;
padding: 5px;
margin-bottom: 20px;
}

.address_area{
  width: 450px;
  height: 30px;
font-size: 1.6rem;
color: #353535;
font-family: "Kosugi Maru", sans-serif;
font-weight: 400;
font-style: normal;
padding: 5px;
margin-bottom: 20px;
}

.certificate_field {
  display: flex;
  margin-bottom: 23px;
  gap: 30px;
}

.certificate_field_text{
  gap: 5px;
  align-items: center;
  font-size: 1.5rem;
  color: #353535;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.radio_btn {
  display: flex;
  flex-direction: column; 
  margin-bottom: 23px;
}

.radio_row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.radio_label {
  margin-right: 20px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #353535;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  gap: 5px;
}

@media (max-width: 768px) {
  .radio_row,
  .certificate_field {
    flex-direction: column;
    align-items: flex-start; 
    gap: 10px;
  }
}

.message{
  width: 450px;
  height: 150px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #353535;
  border:none;
  margin-bottom: 20px;
  outline:none
}

.form_btn {
  display: block;
  width: 200px;
  height: 40px;
  border-radius: 30px;
  background-color: #ffd413;
  border: none;
  margin: 30px auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #353535;
  transition: 0.3s ease-in-out;
}

.form_btn:hover {
  background-color: #353535;
  color: #fff;
}

/* =========================
   レスポンシブ対応（768px以下）
   ========================= */
   
  /* =========================
  共通の箇所のレスポンシブ設定
  ========================= */
@media screen and (max-width: 768px) {
.slick{
  height: 70vh;
}

.main_text h1{
  position: absolute;
  width: fit-content;
  top:20%;
  font-size: 3.5rem;
  line-height: 4.3rem;
}
  .footer_lists{
visibility: hidden;
   }
  
.hbgmenu{
 visibility: visible;
  }

.main_nav,
.main_contact{
  visibility: hidden;
}

.roop{
  margin-bottom: 30px;
}

.under_contact{
  width: 90%;
}

.under_text{
  flex-direction: column;
}

.foote_contact,
.foote_right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.foote_left,
.foote_right{
  margin: 10px auto;
}

.number{
text-align: center;
}

.number,
.mail{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 10px 0;
}
}

/*  =========================
indexページ設定
 ========================= */

 @media screen and (max-width: 768px) {
  .concept h2 {
    font-size: 2rem;
    line-height: 2.6rem;
    width: 65%;
  }
  .concept001,
  .concept002{
    flex-direction: column;
    gap:10px;
    margin-bottom: 10px;
  }

  .concept002{
    margin-top: 20px;
  }

  .con001_img,
  .con002_maintext 
  {
flex: 1 1 30px;
  }

.con001_text,
.con002_maintext{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

  .con001_text h3,
  .con002_maintext h3 {
font-size: 2rem;
margin: 0 10px;
  }

  .con002_mainimg{
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .con001_text p,
  .con002_maintext p {
    width: 90%;
  }

  .ornament{
    visibility: hidden;
  }

  .btn_con001 a{
    padding: 10px 50px;
  }

.news{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news_list .item a {
    width: calc(100% - 10px);
    max-width: 500px;
    margin: 0 auto;
  }

 .news_list .item:first-child a {
    width: calc(100% - 10px);
    max-width: 500px;
    margin: 0 auto;
  }

  .btn_news {
    width: 200px;
    margin: 20px auto 0; 
  }

.go_top{
  visibility: hidden;
}
 }

/*  =========================
aboutページ設定
 ========================= */

@media screen and (max-width: 960px) {
  .characteristic {
     flex-direction: column;
     align-items: center;
     gap: 30px;
    }
  
.character_orange{
  margin-top: 20px;
}

    .character_orange,
    .character_pink,
    .character_green {
      width: 95%;
      max-width: 300px;
      min-width: auto;
    }
  
    .character_green{
      margin-top: 0;
    }

    .character_orange p,
    .character_pink p,
    .character_green p {
      padding: 20px 40px;
      font-size: 1.6rem; 
      line-height: 2.2rem;
      word-break: break-word;    /* 英単語などで改行 */
      overflow-wrap: break-word; /* 日本語でも安全に折り返し */
    }
  }

  @media screen and (max-width: 768px) {
    .about_main{
      height: 20vh;
      background-position: center center;
    }
    .about_text p{
      width: 90%;
      min-width: 300px;
      font-size: 1.4rem;
      line-height: 2.5rem;
    }
    .a_back_nami img{
      visibility: hidden;
  }

  .chara_title{
    margin-top: 20px;
  }
}


/*  =========================
 serviceページ設定
 ========================= */

 @media screen and (max-width: 768px) {
  .service_main{
    height: 20vh;
    background-position: center center;
  }

  .s_items{
    display: block;
  }
  .s_items a{
    margin: 10px auto;
    width: 300px;
  }

  .explain{
    flex-direction: column;
    padding: 0 25px;
  }

  .explain h2{
    text-align: start;
    margin-bottom: 5px;
  }
  .explain p{
    width: 100%;
  }
  .example{
    flex-direction: column;
    gap:20px;
    justify-content: center;
    align-items: center;
  }

  .example ul{
    width: 80%;
  }

  .cases{
    flex-direction: column;
    width: 100%;
  }
  .case_study > p {
    margin-bottom: 20px;
  }

  .case_item{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .case_text{
    align-items: center;
  }
  .case_text h4{
    padding-right: 0;
  }


  .teacher_text{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 30px;
    width: 90%;
  }

  .teacher_text img{
    width: 60px;
    margin-right: 0;
  }
}


/*  =========================
how to useページ設定
 ========================= */

 @media screen and (max-width: 768px) {
  .howto_main{
    height: 20vh;
    background-position: center center;
  }

  .howto_all {
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    margin: 20px auto;
    min-width: auto;
  }

  .step {
    width: 70px;
    height: 70px;
    margin-left: 10px;
  }

  .step p {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }

  .caption {
    width: 90%;
    margin-bottom: 20px;
    margin-right: 10px;
  }

  .caption h2 {
    font-size: 1.7rem;
    min-width: auto; 
    max-width: 90%;
  }

  .caption p {
    font-size: 1.5rem;
    min-width: auto;
  }

  .caption div {
    font-size: 1.4rem;
  }

  .cap_text {
    margin: 10px auto 40px;
  }

  .need_area p {
    min-width: auto;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 0 10px;
  }
}

/*  =========================
contactページ設定
 ========================= */

  @media screen and (max-width: 768px) {
    .contact_main{
      height: 20vh;
      background-position: center center;
    }

  .contact_tell {
    flex-direction: column;
    gap:5px;
    width: 95%;
  }
  .tell_title {
    padding-right: 0;
    width: 90%;

  }
  .contact_tellnum{
    font-size: 3rem;
    text-align: center;
  }

  .form{
    width: 95%;
  }
  form{
    width: 90%;
  }
  .name_area, 
  .email_area, 
  .tel_area,
  .address_area,
  .message {
    width: 98%;}
 }

 /*  =========================
faqページ設定
 ========================= */
 @media screen and (max-width: 768px) {
  .faq_main{
      height: 20vh;
      background-position: center center;
    }
  .accordion_area{
    width: 85%;
  } 

  .accordion_area .accordion_one .ac_header .i_box{
    right: 1rem;
  }

  .p-faq__a-txt img{
    width: 100%;
    margin: 10px auto 0 ;
  }
}

 /*  =========================
campanyページ設定
 ========================= */
  @media screen and (max-width: 768px) {
    .company_main{
      height: 20vh;
      background-position: center center;
    }

    .company {
      flex-direction: column;  /* 縦並びに切り替え */
      align-items: center;
      gap: 20px;
      width: 95%;
      margin: 20px auto;
    }
  
    .company_info {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }
  
    .map {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }
  
    .map iframe {
      height: 400px;
    }
  }