@charset "UTF-8";

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 600px) {
.sp_only {
  display: inline;
}
}
.marker {
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.6) 60%);
  padding: 0 4px;
}


body{
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333;
  background-color: #F9FEE4;


.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;
}
}

.header {
  background: #F9FEE4;
  width: 100%;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo{
  width: 54px;
  height: 49px;
  margin-left: 28px;
}
.gakko{
  font-size: 1.4rem;  
}

.name{
  font-size: 2.4rem;
  font-weight: bold;
}

.name_english{
  display: flex;
  flex-direction: column;
  height: 77px;
  font-size: 1.6rem;
  margin-top: auto;
  margin-bottom: 13px;
}
.english{
  font-size: 1.6rem;
  margin-top: auto;
  margin-bottom: 13px;
}


.header-center {
  display: flex;
  flex-direction: column;
  height: 77px;
  margin-left: auto;
}

.address {
  font-size: 1.6rem;
  margin-top: auto;
  margin-bottom: 13px;
  margin-right: 40px;
}

.header-right {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 80px;
}


.contact {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}


.insta {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.tel {
  font-size: 3rem;
  font-weight: bold;
  color: #187028;
}

.time {
  font-size: 1.4rem;
  font-weight: bold;
  color: #187028;
  margin-bottom: 13px;
}

.insta img {
  width: 36px;
  height: 36px;
  margin-right: 50px;
}

.navi1 {
  display: none;
}

.hamburger {
  display: none;
}




@media screen and (max-width: 1060px) {

  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .name_english {
    display: none;
  }

  .header-center {
    display: none;
  }

  .header-right {
    display: none;
  }

  .header-right {
    display: none;
  }
  .hamburger {
    width: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1001;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 35px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .navi1 {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #F9FEE4;
    padding-top: 80px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 1000;
  }

  .navi1.active {
    right: 0;
  }

  .navi1 .menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navi1 .menu li {
    border-bottom: 1px solid #eee;
  }

 .navi1 .menu li:last-child {
    border-bottom: none;
  }

  .navi1 .menu li a {
    display: block;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    font-size: 2rem;
  }

  .navi1 .menu li a:hover {
    background: #fff;
  }

}


.first_button {
  background-color: #30A545;
  height: 54px;
  display: flex;
  align-items: center;
}

.nav {
  width: 100%;
}


.first_button ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 0;
  padding: 0;
}

.first_button a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: normal;
}

.first_button a:hover {
  opacity: 0.8;
  color: orange;
}


.first-view {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 25s infinite;
  z-index: 1;
}

.bg1 { background-image: url("../photo/fv/fv1.jpg"); animation-delay: 0s; }
.bg2 { background-image: url("../photo/fv/fv2.jpg"); animation-delay: 5s; }
.bg3 { background-image: url("../photo/fv/fv3.jpg"); animation-delay: 10s; }
.bg4 { background-image: url("../photo/fv/fv4.jpg"); animation-delay: 15s; }
.bg5 { background-image: url("../photo/fv/fv5.jpg"); animation-delay: 20s; }


@keyframes fadeSlide {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  20%  { opacity: 1; }
  28%  { opacity: 0; }
  100% { opacity: 0; }
}
@media screen and (max-width: 1060px) {
  .first_button {
    display: none;
  }
}


@media screen and (max-width: 480px) {
  .first-view {
    height: 390px;
  }
}

.fv-copy {
  position: relative;
  top: 20%;
  left: 0;
  transform: translateY(-50%);
  width: 60%;
  text-align: right;
  color: #333;
  font-size: 3.2rem;
  line-height: 1.6;
  z-index: 10;
} 


.fv-copy p {
  margin: 0;
  font-weight: bold;
  text-shadow: 2px 2px 3px rgba(255,255,255,1);
}

.fv-copy .big {
  display: block;
  padding: 5px 40px;
  letter-spacing: 0.8rem;
  background: linear-gradient(
    to right,
    rgba(88,207,102,0.5),
    rgba(255,255,255,0.5)
  );

  box-sizing: border-box;
  text-align: right;
}

.fv-copy .big span {
  font-size: 4.8rem;
}

.fv-copy .space {
  display: block;
  padding: 15px 40px;
  width: 65%;             
  letter-spacing: 0.8rem;
  margin-top: 30px;
  background: linear-gradient(
    to right,
    rgba(88,207,102,0.5),
    rgba(255,255,255,0.5)
  );
  box-sizing: border-box;
  text-align: right;
}


@media screen and (max-width: 1171px) {
  .fv-copy {
    font-size: 2.4rem;
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    transform: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90%;
    padding: 0 0;
  }
  .fv-copy .big span {
    font-size: 3.6rem;

  }
  .fv-copy .big {
    width: 100%;
    padding: 0 5px;
    letter-spacing: 0.1rem;
    text-align: center;
  }

  .fv-copy .space {
    width: 100%;
    padding: 10px 5px;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-top: 10px;
  }
}

.fv-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  padding: 10px 20px;
  font-size: 2rem;
  font-weight: normal;
  color: #1060FF;
  width: 60%;
  max-width: 800px;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 1171px) {
.fv-label {
  font-size: 1.6rem;
  width: 100%;
  }
}

.fv-tour {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 200px;
  height: 200px;
  z-index: 9999;
 animation: fuwafuwa 2.4s ease-in-out infinite;
}


.fv-tour img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fuwafuwa {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.spfv-tour {
  display: none;
}


.fv-information {
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  padding: 35px 20px;
  font-size: 2rem;
  font-weight: normal;
  color: #1060FF;
  text-align: center;
  z-index: 9999;
  box-sizing: border-box;
}

.minori-section {
  background-color: #F9FEE4;
  overflow: hidden;
}

.tree-box {
  background: url("../illustration/treetop.png") no-repeat center top / contain;
  background-size: 100% 514px;
  background-color: #F9FEE4;
  padding: 230px 0 0;
  text-align: center;
  position: relative;
  text-align: center;
}

.bird-left-top,
.bird-right-top {
  opacity: 0;
}


.animate {
  opacity: 1;
}

.bird-left-top.animate {
  animation: fly-in-left 1.8s ease-out forwards 0s,
             float 3.5s ease-in-out infinite 1.8s;
}

.bird-right-top.animate {
  animation: fly-in-right 1.8s ease-out forwards 0.4s,
             float 3.5s ease-in-out infinite 2.2s;
}


.bird-left-top {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 120px;
  pointer-events: none;
}

.bird-right-top {
  position: absolute;
  top: 130px;
  right: 150px;
  width: 120px;
  pointer-events: none;
  pointer-events: none;
}

@keyframes fly-in-left {
  0% {
    transform: translateX(-150px) translateY(-20px) scale(0.9);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes fly-in-right {
  0% {
    transform: translateX(150px) translateY(-20px) scale(0.9);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}



.treetyoutyo {
  position: absolute;
  top: 40px;
  right: 100px;
  width: 40px;
  pointer-events: none;
  pointer-events: none;
  animation: flutter 2.5s ease-in-out infinite;
}

@keyframes flutter {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(10px, -15px) rotate(3deg); }
  50%  { transform: translate(20px, 0) rotate(-3deg); }
  75%  { transform: translate(10px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}






.tree-text {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 3px rgba(103,94,80,0.25);
}

.minori-section .lead {
  font-size: 3.2rem;
  font-weight: normal;
  text-shadow: 2px 2px 3px rgba(103,94,80,0.25);
}



.tree-box p {
  margin-top: 40px;
  padding: 0 0;
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(103,94,80,0.25);

}

@media (max-width: 1171px) {
  .fv-tour {
  right: 20px;
  bottom: 15px; 
  width: 150px;
  height: 150px;
  }

  .bird-left-top {
    left: 50px;
    top: 50px;
    width: 97px;
  }

  .bird-right-top {
    right: 50px;
    width: 98px;
  }

  .treetyoutyo {
    top: 29px;
    width: 28px;
  }




  .tree-text {
    font-size: 2.4rem;
  }
  .minori-section .lead {
    font-size: 2.4rem;
  }
  .tree-box p {
    font-size: 1.6rem;
  }
  
  .tree-box {
  background: url(../illustration/sptree.png) no-repeat center top / contain;
  background-color: #F9FEE4;
  background-size: auto 105%;
  overflow: hidden;
  }

  .tree-box p {
    font-size: 1.6rem;
  }
}

.points-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  width: 100%;
  background-color: #5DD272;
  padding-top: 40px;
 }



.points-wrapper li.point {
  text-align: center;
  width: 300px;
  height: 300px;
  background-color: #F9FEE4;
  border-radius: 50%;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 10px;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}
.motto {
  font-size: 4rem;
  font-weight: bold;
}
.point1 .circle { 
  background: #EF6FC4;
}
.point2 .circle {
  background: #6FA0EF;
}
.point3 .circle { 
  background: #E8A256;
}

.point1 .motto { 
  color: #EF6FC4;
}

.point2 .motto { 
  color: #6FA0EF;
}
.point3 .motto {
  color: #E8A256;
}
.points-wrapper .point:nth-child(1) p:last-of-type {
  color: #EF6FC4;
  font-size: 2.4rem;
  padding-top: 10px;
}

.points-wrapper .point:nth-child(2) p:last-of-type {
  color: #6FA0EF;
  font-size: 2.4rem;
  padding-top: 10px;
}

.points-wrapper .point:nth-child(3) p:last-of-type {
  color: #E8A256;
  font-size: 2.4rem;
  padding-top: 10px;
}


@media (max-width: 800px) {
  .fv-tour {
    display: none;
  }

  .points-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .point {
    width: 100%;
    max-width: 260px;
  }

  .circle {
    width: 50px;
    height: 50px;
    font-size: 4rem;
  }
  .points-wrapper {
  gap: 10px;
}
.spfv-tour {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #50B4E7;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  width: 100%;
  margin: 0 auto 0;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  animation: fuwafuwa 2.4s ease-in-out infinite;
}

@keyframes fuwafuwa {
  0%   { scale: 1; }
  50%  { scale: 1.08; }
  100% { scale: 1; }
}


.spfv-tour p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
}
.spfv-tour img {
  width: 40px;
  height: auto;
}
}


@media screen and (max-width: 1171px) {
.points-wrapper li.point {
  text-align: center;
  width: 232px;
  height: 232px;
}
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 29px auto 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
.motto {
  font-size: 3.2rem;
  font-weight: bold;
}

.points-wrapper .point:nth-child(1) p:last-of-type {
  font-size: 1.6rem;
}

.points-wrapper .point:nth-child(2) p:last-of-type {
  font-size: 1.6rem;
}

.points-wrapper .point:nth-child(3) p:last-of-type {
  font-size: 1.6rem;
}

}


.tree_bottom {
  position: relative;
  background: url("../illustration/tree_bottom.png") no-repeat center top / contain;
  background-size: 100% 751px;
  background-color: #F9FEE4;
  padding: 200px 0 500px;
  text-align: center;
  position: relative;
  text-align: center;
}
.treetyoutyo1 {
  position: absolute;
  top: 160px;
  left: 100px;
  width: 20px;
  pointer-events: none;
  pointer-events: none;
  animation: flutter 3.5s ease-in-out infinite;
}

@keyframes flutter {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(10px, -15px) rotate(3deg); }
  50%  { transform: translate(20px, 0) rotate(-3deg); }
  75%  { transform: translate(10px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.treetyoutyo2 {
  position: absolute;
  top: 15px;
  right: 150px;
  width: 15px;
  pointer-events: none;
  pointer-events: none;
  animation: flutter 2.5s ease-in-out infinite;
}

@keyframes flutter {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(10px, -15px) rotate(3deg); }
  50%  { transform: translate(20px, 0) rotate(-3deg); }
  75%  { transform: translate(10px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.treetyoutyo3 {
  position: absolute;
  top: 30px;
  right: 100px;
  width: 30px;
  pointer-events: none;
  pointer-events: none;
  animation: flutter 3s ease-in-out infinite;
}

@keyframes flutter {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(10px, -15px) rotate(3deg); }
  50%  { transform: translate(20px, 0) rotate(-3deg); }
  75%  { transform: translate(10px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}



.tree_bottom .girl1 {
 position: relative;
 top: 20px;
 right: 50px;
}

.tree_bottom .girl_boy {
  position: relative;
  top: 160px;
  left: 220px;
}

.tree_bottom .boy1 {
 position: relative;
 left: 70px;
 bottom: 40px;
}

 .motto_syousai {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  gap: 30px;                 
  background: #E86D0A;       
  color: #fff;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 90px;       
  width: auto;
  margin: 0 auto 0;
  box-shadow: 0 6px 12px rgba(103,94,80,0.25);
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.motto_syousai:hover {
  transform: translateX(-50%) scale(1.08);
  background-color: #f29d4a;
}


.motto_syousai p {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
}
.tree_button img {
  width: 40px;
  height: auto;
}

@media screen and (max-width: 1171px) {
  .tree_bottom {
    background-size: 100% 350px;
    padding: 200px 0 200px;
  }
  
  
  .tree_bottom .girl1 {
    width: 167px;
    right: 210px;
    top: -60px;
  }
  .tree_bottom .girl_boy {
    display: none;
  }
  .tree_bottom .boy1 {
    width: 167px;
    left: 20px;
    bottom: 40px;
  }
  .motto_syousai {
    top: 60px;
  }
}

@media screen and (max-width: 800px) {
  .tree_bottom {
    background-size: 100% 330px;
    padding: 200px 0 60px;
  }
.treetyoutyo1 {
  display: none;
}
  .motto_syousai {
  width: 300px;
  padding: 20px 10px;
  top: 60px;    
  }

  .girl1 {
    left: 30px;
    top: 60px;
  }
}  

.youtube-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60%;
  height: 0;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}



.itiniti {
  box-sizing: border-box;
  position: relative;
  background: url("../illustration/topitinitinonagare.png") no-repeat center top / cover;
  width: 100%;
  max-width: 1440px;
  min-height: 2000px;
  padding: 60px 20px;
  text-align: center;
  font-size: 2.4rem;
  color: #675E50;
  font-weight: bold;
  margin: 200px auto 0;
}
.itiniti_text {
  position: absolute;
  bottom: 260px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.itiniti_text p {
  margin: 0;
  padding: 0;
}



.azukari_button {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #E86D0A;
  padding: 20px 30px;
  border-radius: 90px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  box-shadow: 0 4px 10px rgba(103,94,80,0.25);
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.azukari_button:hover {
  transform: translateX(-50%) scale(1.08);
  background-color: #f29d4a;
}


@media screen and (max-width: 1340px) {
  .itiniti{
  width: 100%;
  max-width: 900px;
  min-height: 1400px;
  padding: 60px 20px;
  text-align: center;
  font-size: 1.6rem;
  color: #675E50;
  font-weight: bold;
  margin: 200px auto 0;
  
  }

  .itiniti_text {
    bottom: 200px;
  }

  .azukari_button {
    bottom: 100px;
    padding: 20px 20px;
  }
}


.illust-img {
    width: 150px;
    display: block;
    margin: 0 auto -80px;
}


.half-size {
    display: block;
    margin: 0 auto;
    width: 250px;
}


.timeline-item-wrapper {
    background-image: url("../illustration/spdouro.png");
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

.youtiennseikatu {
    width: 280px;
    position: relative;
    display: block;
    margin: 80px auto 0;
    font-size: 2.4rem;
    font-weight: bold;
    color: #675E50;
    border: 6px dashed #D9AD29;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}


.youtiennseikatu::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background-image: url("../illustration/tentoumusi.png");
  background-size: contain;
  background-repeat: no-repeat;
 
}

.timeline-photo {
    margin: 0;
}


.timeline-item:last-child .timeline-row {
      margin: 30px auto 0;
}
.timeline-row {
    width: 345px;
    height: 120px;
    border-radius: 90px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px auto;
}

.timeline-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100px;
}

.text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-label {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.event {
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #675E50;
}

.sub {
    color: #333;
    font-size: 1.4rem;
}

@media screen and (max-width: 940px) {
  .itiniti {
    display: none;
  }
}

.spitiniti {
  position: relative;
  background-color: #F5F0AA;
  border-radius: 20px;
  width: 270px;
  height: 200px;
  text-align: center;
  font-size: 2rem;
  color: #675E50;
  font-weight: bold;
  margin: 0 auto;
  padding: 20px 0;
}
.spitiniti_text {
  margin-top: 10px;
  margin-bottom: 10px;
}

.spazukari_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #E86D0A;
  padding: 20px 20px;
  border-radius: 90px;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(103,94,80,0.25);
  transition: transform 0.75s ease;
}
.spazukari_button:active {
    transform: scale(1.05);
}


@media screen and (min-width: 939px) {
    .youtiennseikatu {
      display: none;
    }
    .timeline-item-wrapper {
      display: none;
    }
    .half-size {
      display: none;
    }
    .spitiniti {
      display: none;
    }
    .spazukari_bottom {
      display: none;
    }
}

.flow-section1 {
  width: 100%;
  max-width: 960px;
  margin: 60px auto;
}

.row {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.row.reverse {
  margin-top: 100px;
}
.column {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: 500px;
  height: 200px;

  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;

  padding: 0 40px;

  text-decoration: none;
  color: inherit;
}


.text-box--green {
  background-image: url(../illustration/button1niti.png);
  transition: transform 0.4s ease, opacity 0.3s ease;

}


.text-box--orange {
  background-image: url(../illustration/buttonnennkanngyouzi.png);
  transition: transform 0.3s ease, opacity 0.3s ease;

}

.text-box:hover {
  transform: scale(1.10);
  opacity: 0.85;
}


.label {
  margin: 50px 20px 0;
  font-size: 2.4rem;
  font-weight: bold;
  color: #675E50;
  white-space: nowrap;
}

.arrow {
  margin-top: 50px;
  margin-right: 100px;
  width: 60px;
  height: auto;
}

.side-image {
  width: 36%;
  max-width: 334px;
}
.coment {
  width: 500px;
  height: auto;
}

.spcoment {
  display: none;
}

.middle-text {
  text-align: center;
  font-size: 2,4rem;
  font-weight: 500;
  color: #675E50;
  margin: 0 0 50px;
}

@media (max-width: 1010px) {
  .row,
  .row.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .text-box {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 5 / 2;
    height: auto;
    justify-content: center;
    text-align: center;
  }
  
  .side-image {
    display: none;
  }
  .text-box {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 5 / 2;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;     
    gap: 10px;           
    text-align: center;
    padding: 0 70px;
  }

  .label {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 50px 10px 0;
}
  .coment {
  display: none;
}
    .spcoment {
    display: block;
    width: 100%;
    width: 350px;
    height: auto;
  }
  .arrow {
    width: 40px;
  }
}

@media (max-width: 490px) {
  .text-box {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 3 / 1;
    height: auto;
  }

  .text-box--green {
  padding: 0 10px;
  background-image: url(../illustration/spnagare.png);
  transition: transform 0.4s ease, opacity 0.3s ease;

}


.text-box--orange {
  padding: 0 10px;
  background-image: url(../illustration/spnennkanngyouzi.png);
  transition: transform 0.3s ease, opacity 0.3s ease;

}

.label {
    margin: 20px 10px 0;
}
.arrow {
  margin-top: 20px;
  margin-right: 50px;
  width: 40px;
  height: auto;
}
}



.info {
    max-width: 280px;
    position: relative;
    display: block;
    margin: 100px auto 0; 
    font-size: 3.6rem;
    font-weight: bold;
    color: #333;
    border: 6px dashed #DDF160;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 200px;
}


.info::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background-image: url("../illustration/tentoumusi.png");
  background-size: contain;
  background-repeat: no-repeat;
 }

.info-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.info-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 48%;
  max-width: 660px;
}

.info-ribbon {
  margin: 0 auto;
}


.info-ribbon img {
  width: 100%;
  max-width: 330px;
  display: block;
  margin-top: 60px;
}


.info-text h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 20px;
}

.info-circle {
  background-image: url("../illustration/circle.png");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: relative;
  width: 570px;
  height: 570px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 20px;
}

.circle-content {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}

.circle-heading {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #F88446;
}

.sub_circle-heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 10px;
  color: #675E50;
}

.circle-list {
  font-size: 1.6rem;
  color: #333;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.6;
}

.circle-list.dots li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dot-icon {
  width: 10px;
  height: 10px;
  margin-top: 8px;
}


@media (max-width: 1440px) {
  .info-wrapper {
    gap: 20px;
  }

  .info-block {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 660px) {
.info-wrapper {
  gap: 20px;
}
.info-ribbon img {
  max-width: 250px;
}
.info-text h3 {
  font-size: 1.6rem;
}

.info-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
}

.info-circle {
  width: 373px;
  height: 373px;
  margin: 0;
}
.circle-content {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.circle-heading {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 10px;
  margin-bottom: 5px;
}

.sub_circle-heading {
  font-size: 1.6rem;
  margin-bottom: 5px;
  }

.circle-list {
  font-size: 1.4rem;
  margin-left: 30;
  padding-left: 0;
  list-style: none;
  line-height: 1.6;
}
}


.flow-section2 {
  width: 100%;
  max-width: 960px;
  margin: 60px auto;
  margin-bottom: 200px;
}

.row {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.row.reverse {
  margin-top: 100px;
}
.column {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}


.text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: 500px;
  height: 200px;

  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;

  padding: 0 40px;

  text-decoration: none;
  color: inherit;
}


.text-box--left {
  background-image: url(../illustration/buttonhiyou.png);
  transition: transform 0.4s ease, opacity 0.3s ease;

}


.text-box--right {
  background-image: url(../illustration/buttonazukari.png);
  transition: transform 0.3s ease, opacity 0.3s ease;

}


.text-box--left2 {
  background-image: url(../illustration/buttonentyousensei.png);
  transition: transform 0.4s ease, opacity 0.3s ease;

}
.text-box:hover {
  transform: scale(1.10);
  opacity: 0.85;  
}


.label {
  margin: 50px 20px 0;
  font-size: 2.4rem;
  color: #675E50;
  font-weight: bold;
  white-space: nowrap;
}

.arrow {
  margin-top: 50px;
  margin-right: 100px;
  width: 60px;
  height: auto;
}

.side-image {
  width: 25%;
  max-width: 334px;
}

.middle-text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: #675E50;
  margin: 0 0 50px;
}

@media (max-width: 1010px) {
  .row,
  .row.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .text-box {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 5 / 2;
    height: auto;
    justify-content: center;
    text-align: center;
  }
  
  .side-image {
    display: none;
  }
  .text-box {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 5 / 2;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;     
    gap: 10px;                
    text-align: center;
    padding: 0 70px;
  }

  .label {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 50px 10px 0;
}
  .arrow {
    width: 40px; 
  }
}

@media (max-width: 490px) {
.text-box {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 3 / 1;
    height: auto;
  }

.text-box--green {
  padding: 0 10px;
  background-image: url(../illustration/spnagare.png);
  transition: transform 0.4s ease, opacity 0.3s ease;

}


.text-box--orange {
  padding: 0 10px;
  background-image: url(../illustration/spnennkanngyouzi.png);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.text-box--left {
  padding: 0 10px;
  background-image: url(../illustration/sphiyou.png);
  transition: transform 0.4s ease, opacity 0.3s ease;

  }


.text-box--right {
  padding: 0 10px;
  background-image: url(../illustration/spazukari.png);
  transition: transform 0.3s ease, opacity 0.3s ease;

}
.text-box--left2 {
  padding: 0 10px;
  background-image: url(../illustration/spenntyousennsei.png);
  transition: transform 0.3s ease, opacity 0.3s ease;

}
.label {
    margin: 30px 10px 0;
}
.arrow {
  margin-top: 20px;
  margin-right: 40px;
  width: 40px;
  height: auto;
}
}


.faq-section {
  background: #AAF5AC;
  padding: 60px 80px 100px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
 }

.faq-title {
    max-width: 280px;
    position: relative;
    display: block;   
    margin: 40px auto 0;
    font-size: 3.6rem;
    font-weight: bold;
    color: #333;
    border: 6px dashed #548F23;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}


.faq-title::after {
  content: "";
  position: absolute;
  top: -14px;   
  right: -14px;
  width: 32px;
  height: 32px;
  background-image: url("../illustration/tentoumusi.png");
  background-size: contain;
  background-repeat: no-repeat;
 }


.faq-item {
  background: #ffffff;
  padding: 20px;
  margin-top: 60px;
  border-radius: 20px;
}

.question {
  display: flex;
  align-items: center;
  gap: 10px;           
  font-size: 2rem;
  font-weight: bold;
  color: #F88446;
  margin-bottom: 10px;
}

.q-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0; 
}



.answer {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-left: 50px;
}

.note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  color: #333;
  font-size: 16px;
}

.bus-text {
  margin-left: 50px;
  position: relative;
  display: inline-block;
  padding: 20px;
  border: 6px dashed #E1F03D;
  border-radius: 20px;
}

.bus-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-image: url("../illustration/q-bus.png");
  background-size: contain;
  background-repeat: no-repeat;
  offset-path: path("M 6 6 H 318 V 94 H 6 Z");
  animation: moveAround 6s linear infinite;
}

@keyframes moveAround {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}


.busko-su-img {
  width: 250px;
  height: auto;
  margin-left: 50px;
}

@media (max-width: 980px) {
.faq-section {
  padding: 40px 10px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 60px;
}
.faq-item {
  background: #ffffff;
  padding: 20px;
  margin-top: 40px;
}

.question {
  font-size: 2rem;
  margin-bottom: 10px;
}

.answer {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-left: 50px;
}

.note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  color: #333;
  font-size: 1.6rem;
}

.bus-text {
  margin-left: 50px;
  position: relative;
  display: inline-block;
  padding: 20px;
  border: 6px dashed #E1F03D;
  border-radius: 20px;
}


.busko-su-img {
  width: 250px;  
  height: auto;
  margin-left: 50px;
}
.bus-text::after {
    display: none;
  }

}
@media (max-width: 940px) {
  .info {
    font-size: 2.4rem;
  }
  .faq-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
.faq-item {
  margin-top: 20px;
}

.question {
  gap: 10px;       
  font-size: 1.8rem;
}

.q-icon {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}
.answer {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-left: 10px;
}
.note {
  gap: 0;
}

.bus-text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-left: 10px;
  padding: 10px;
}

.busko-su-img {
  width: 150px;
  height: auto;
  margin-left: 10px;
}

}

.contact-section {
  background: #f5f9f4;
  padding: 100px 20px;
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  max-width: 280px;
    position: relative;
    display: block;   
    margin: 200px auto 0; 
    font-size: 3.6rem;
    font-weight: bold;
    color: #333;
    border: 6px dashed #51D968;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.contact-title::after {
  content: "";
  position: absolute;
  top: -14px;     
  right: -14px;
  width: 32px;
  height: 32px;
  background-image: url("../illustration/tentoumusi.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-top: 40px;
}

.contact-button-wrap {
  max-width: 530px;
  background-color: #2D9340;
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 20px;
  margin: 60px auto;
  border-radius: 100px;
  padding: 40px 0;
  transition: 0.3s;
}

.contact-icon {
  width: 40px; 
  height: auto;
  display: block;
}

.contact-button {
  display: inline-block;
  color: white;
  font-size: 3.6rem;
  font-weight: 500px;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s;
}

.contact-button-wrap:hover {
  background: #6ac77a;
  transform: scale(1.10); 
  opacity: 0.85;      
}

.contact-phone-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; 
  gap: 20px;
  position: static;
}


.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}


.tellicon {
  height: 40px;
  width: auto;
}

.contact-phone {
  color: #675E50;
  font-size: 3.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-hours {
  font-size: 2.4rem;
  color: #675E50;
}


.kokoronone {
  position: static;
  height: 150px;
  width: auto;
}

.map-section {
  width: 100%;
  max-width: 700px;
  margin: 100px auto;
  margin-bottom: 200px;
}

.map-title {
  max-width: 280px;
  display: block;
  margin: 0 auto;
  font-size: 3.6rem;
  font-weight: bold;
  color: #333;
  border: 6px dashed #F0AE20;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.map-title::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background-image: url("../illustration/tentoumusi.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.address-row {
  display: flex;
  justify-content: center; 
  align-items: center;
  margin-top: 40px;
}

.addressicon {
  width: 28px;
  margin-right: 10px;
}

.address-text {
  font-size: 1.6rem;
}

.bus-area {
  margin-top: 20px;
  height: 80px;    
  position: relative;
}

.addressbus {
  width: 120px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: busVibration 0.12s infinite alternate ease-in-out;
}

@keyframes busVibration {
  0% {
    transform: translateX(-0.3px) rotate(-0.2deg);
  }
  100% {
    transform: translateX(0.3px) rotate(0.2deg);
  }
}

.smoke {
  width: 22px;
  position: absolute;
  left: 55%;
  transform: translateX(-10px); 
  bottom: 18px;
  opacity: 0;
  animation: smokeMove 2.8s infinite ease-out;
}

.smoke1 { animation-delay: 0.2s; }
.smoke2 { animation-delay: 1.0s; }
.smoke3 { animation-delay: 1.8s; }

@keyframes smokeMove {
  0% {
    transform: translate(-10px, 0) scale(0.6);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translate(15px, -45px) scale(1.3);
    opacity: 0;
  }
}


.map-wrap {
  width: 100%;
  max-width: none; 
  margin: -20px auto 0; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}



.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.gaiyou-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  background: url(../photo/other/ensyagaiyou.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.gaiyou-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.gaiyou-box {
  position: relative;
  z-index: 2; 
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 500px;
  width: 100%;
  text-align: left;
}

.gaiyou-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gaiyou-box li {
  display: grid;
  grid-template-columns: 120px 1fr; 
  column-gap: 8px;
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

.gaiyou-box li span {
  font-weight: bold;
}




.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.school-info {
  display: flex;
  flex-direction: column;
}

.name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-right {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 80px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.copyright {
  background-color: #2D9340;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  padding-bottom: 70px;
}

@media (max-width: 940px) {
  .contact-title {
    font-size: 2.4rem;
  }
  .contact-button-wrap {
    margin-top: 40px;
    padding: 20px 0;
    gap: 5px;
  }
  .contact-button {
    font-size: 2.4rem;
  }

 .contact-phone-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: static; 
  }

  .contact-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
.contact-icon {
  width: 35px; 
  }
  .kokoronone {
    position: static !important;
    height: 100px;
    width: auto;
    margin-top: 30px;
  }

.tellicon {
  width: 25px;
  height: auto;
}

.map-title {
  font-size: 2.4rem;
}

.smoke {
  left: 60%;
  transform: translateX(-10px); 
  opacity: 0;
  animation: smokeMove 2.8s infinite ease-out;
}

.smoke1 { animation-delay: 0.2s; }
.smoke2 { animation-delay: 1.0s; }
.smoke3 { animation-delay: 1.8s; }

}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}


.h_name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-right {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 80px;
}
.h_tell {
  font-size: 3rem;
  font-weight: bold;
  color: #187028;
}

@media (max-width: 800px) {

  .footer {
    flex-direction: column;
    padding: 20px 0;
  }

  .footer-left {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding-left: calc(60px); 
    position: static;
    padding-right: 0;
  }

  .h_english-name {
    display: none;
  }

  .h_tell,
  .time {
    white-space: nowrap;
  }

  .h_tell {
    font-size: 1.8rem;
  }

  .time {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .insta {
    position: static;
    margin-top: 4px;
  }

  .insta img {
    width: 22px;
    height: auto;
  }
}

.title-wrap {
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    margin-top: 70px;
    padding: 20px 20px;
}

.section-title {
    font-size: 3.6rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    letter-spacing: 2px;
}


.title-butterfly {
    width: 60px;
    height: auto;
}


.about-section {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;           
  padding: 40px 40px;       
  background-color: #FFF;
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
}

.warau, .nizi, .suki {
    display: flex;
    flex-direction: row; 
    align-items: flex-start;
    gap: 32px;
}

.content-box {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}


.top {
    display: flex;
    align-items: center;
    gap: 12px;
}


.mark {
 width: 68px;
 height: auto;
}
.warau {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}


.main_warau {
  color: #EF6FC4;
  font-size: 4.5rem;
  font-weight: bold;
}


.sub_warau {
  color: #EF6FC4;
  font-size: 2.4rem;
}

.motto_photo {
  width: 36%;
  max-width: 334px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);

  transform: rotate(2deg);

  opacity: 0;
  filter: blur(10px);

  transition:
    opacity 1.2s ease,
    filter 1.2s ease;
}

.motto_photo.animate {
  opacity: 1;
  filter: blur(0);
}


.nizi {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  }

.main_nizi {
  color: #6FA0EF;
  font-size: 4.5rem;
  font-weight: bold;
}

.sub_nizi {
  color: #6FA0EF;
  font-size: 2.4rem;
} 

.nizi .motto_photo {
  transform: rotate(-2deg);
}




.suki {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}


.main_suki {
  color: #E9A256;
  font-size: 4.5rem;
  font-weight: bold;
} 

.sub_suki {
  color: #E9A256;
  font-size: 2.4rem;
}

@media (max-width: 1171px) {

.title-wrap {
  gap: 5px;
}

.about-section {
  padding: 0;
  gap: 0;
}

.section-title {
  font-size: 2.4rem;
}


.title-butterfly {
  width: 25px;
  height: auto;
}


.warau, .nizi, .suki {
  flex-direction: column;
  align-items: center; 
  text-align: center;
  margin-top: 60px;
}
    
.top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 390px; 
  margin: 0 auto;     
  text-align: center; 
}

.top .mark {
  margin: 0 auto;
}


.content-box {
  order: 1;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
}

.motto_photo {
  order: 2;
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
  transform: rotate(0deg);
}
.nizi .motto_photo {
  transform: none;
}

.content-box {
  order: 1;
  width: 100%;
}

.main_warau, .main_nizi, .main_suki {
  font-size: 2.6rem;
}

.sub_warau, .sub_nizi, .sub_suki {
  font-size: 2rem;
  }
}

.aisatsu-wrap {
  background-color: #F3FFC0;
  padding: 100px 0;
  margin-top: 100px;
}

.greeting_wrap {
  background-color: #FFF;
  padding: 20px;
  margin-top: 60px;
}
.greeting-section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.left-box,
.right-box {
    display: flex;
    flex-direction: column;
}

.hello-img {
  width: 200px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hello-img.animate {
  opacity: 1;
  transform: translateY(0);
}

.entyo-img {
    width: 400px;
    height:500px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 20px;
}

.left-text {
    font-size: 1.6rem;
    line-height: 1.8;
}

.principal {
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #675E50;
    margin-top: 40px;
}

.green-title {
    color: #129D10;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.8;
}

.right-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 40px;
}

.tyuripu-repeat {
    width: 100%;
    height: 100px;
    background-image: url("../illustration/tyuripu.png");
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 100%;
}

@media (max-width: 900px) {
    .aisatsu-wrap {
      padding: 20px 0;
    }



    .greeting-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px;
    }

    .left-box,
    .right-box {
      width: 100%;
      max-width: 390px;
      text-align: left;
    }

    .hello-img {
      width: 120px;
    }
    .entyo-img {
      width: 300px;
      height: 350px;
      margin: 0 auto;
    }

    .green-title {
      font-size: 1.6rem;
    }
    .tyuripu-repeat {
    width: 100%;
    height: 50px;
}

}
.cost-section {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px 200px;
  border-radius: 20px;
}


.cost-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 1;
}


.cost-illust {
  position: absolute;
  width: 90px;
  z-index: 0;
}

.cost-illust img {
  width: 100%;
  height: auto;
}

.illust-1 { top: 20%; left: -10%;}
.illust-2 { top: 20%; right: -10%; }
.illust-3 { top: 50%; left: -10%; transform: translateY(-50%); }
.illust-4 { top: 50%; right: -10%; transform: translateY(-50%); }
.illust-5 { bottom: 20%; left: -10%; }
.illust-6 { bottom: 20%; right: -10%; }


.cost-illust img {
  animation: slow-rotate 12s linear infinite;
}

@keyframes slow-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@media (max-width: 1060px) {
  .cost-section {
    padding: 20px 10px;
    overflow: hidden;
  }
  .cost-illust {
    width: 50px;
    opacity: 0.8;
  }
  .illust-1 { top: 10px; left: 0; }
  .illust-2 { top: 10px; right: 0; }
  .illust-3 { display: none; }
  .illust-4 { display: none; }
  .illust-5 { bottom: -10px; left: 10px; }
  .illust-6 { bottom: -10px; right: 10px; }
}
.cost-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 0 10px;
}


.cost-row {
  padding-bottom: 16px;
  border-bottom: 3px dashed;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.cost_label {
  font-size: 2rem;
  font-weight: bold;
  width: 200px;
  flex-shrink: 0; 
  margin: 0 20px;
  color: #675E50;
}

.cost-row .value {
  font-size: 1.6rem;
  line-height: 1.6;
  flex: 1; 
}


.color-1 { border-color: rgba(232, 180, 107, 0.5); }
.color-2 { border-color: rgba(210, 190, 93, 0.5); }
.color-3 { border-color: rgba(192, 182, 90, 0.5); }
.color-4 { border-color: rgba(136, 162, 74, 0.5); }
.color-5 { border-color: rgba(74, 179, 93, 0.5); }
.color-6 { border-color: rgba(58, 162, 97, 0.5); }
.color-7 { border-color: rgba(60, 203, 86, 0.5); }
.color-8 { border-color: rgba(77, 223, 103, 0.5); }
.color-9 { border-color: rgba(103, 226, 153, 0.5); }
.color-10 { border: none; }


@media (max-width: 600px) {
  .cost-row {
    flex-direction: column;
    gap: 6px;
  }

  .cost-label {
    width: auto;
  }

  .value {
    padding: 0 20px;
  }
}


.azukarisetsumei {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 60px;
}

.notice {
  max-width: 870px;
  margin: 60px auto;
  font-size: 1.6rem;
}

.notice strong {
  font-weight: bold;
  color: #675E50;
}
.notice h3 {
  margin-top: 10px;
  font-size: 2.4rem;
  color: #F88446;
}

.notice p {
  line-height: 1.8;
  margin-top: 20px;
}

.notice1 {
  background-color: #FFF;
  padding: 40px 20px;
  border-radius: 20px;
}

.notice2 {
  background-color: #FFF;
  padding: 20px 20px;
  border-radius: 20px;
  margin-top: 40px;
}
.notice3 {
  background-color: #FFF;
  padding: 20px 20px;
  border-radius: 20px;
  margin-top: 40px;
}


.notice .note {
  margin-top: 30px;
  padding: 0 10px;
}


.azukari-wrapper {
  position: relative;
  max-width: 870px;
  margin: 60px auto;
  text-align: center;
}
.azukari-wrapper p {
  font-size: 1.6rem;
  margin-top: 100px;
}

.azukari-img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin-top: 20px;
  }


.deco {
  position: absolute;
  width: 170px;
  height: 170px;
  opacity: 0.9;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.deco.animate {
  opacity: 1;
  transform: translateY(0);
}

.deco-left {
  left: -70px;
  top: 50%;
}
.deco-right {
  right: -70px;
  top: -5%;
}


@media (max-width: 1060px) {
.azukarisetsumei {
  margin-top: 40px;
}

.azukari-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.azukari-wrapper p {
  margin-top: 0;
}

  .deco {
    position: static;
    width: 130px;
    height: 130px;
    margin: 10px;
    opacity: 0.8;
  }

  .deco-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
}



.routine-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 60px auto 0;
  max-width: 1150px; 
  width: 100%;
}

.routine-block__icon img {
  width: 160px;
  height: auto;
}

.routine-block__right {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 0 30px 20px 0;

  max-width: 950px;
  width: 100%;      
}


.routine-block__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.title-with-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.star-icon {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin: 0;
}
.routine-block__time {
  background-color: #259F3B;
  color: #fff;
  padding: 20px 40px;
  border-radius: 20px 0 50px 0;
  font-size: 4rem;
  font-weight: bold;
  display: inline-block;
}

.routine-block__title {
  color: #675E50;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  padding: 20px 0;
}
 
.routine-block__desc {
  line-height: 1.8;
  margin-top: 30px;
}

.desc-large {
  font-size: 2.4rem;
  font-weight: 500;
  color: #675E50;
}

.desc-small {
  font-size: 1.6rem;
}

.highlight {
  color: #F88446;
}


@media (max-width: 1200px) {
  .routine-block {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .routine-block__icon img {
    width: 80px;
    margin: 0 auto;
    display: block;
  }

  .routine-block__right {
    flex-direction: column; 
    align-items: center;
    width: 95%;
    gap: 20px;
    padding: 0;
  }

  .routine-block__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
  }

  .routine-block__desc {
    max-width: 95%;
    width: fit-content;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 20px;
 }
  .routine-block__time {
    font-size: 2.6rem;
    padding: 20px 20px;
  }

  .routine-block__title {
    font-size: 2rem;
    padding: 0;
  }
  .desc-large {
    font-size: 2rem;
    
    }
}

.desc-flame {
  font-size: 1.6rem;
  display: inline-block;
  border: 3px dotted #F5BDBF;
  padding: 6px 10px;
  border-radius: 20px;
}

.routineimage-row {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.routineimage-group {
  display: flex;
  position: relative;
}


.routineimage-group img {
  position: relative;
}

.routineimage-group .watageimg1 {
  width: 90px;
  height: 90px;
  top: 10px;   
}

.routineimage-group .watageimg2 {
  width: 140px;
  height: 130px;
  top: 90px;   
}

.routineimage-group .watageimg3 {
  width: 90px;
  height: 90px;
  top: 70px;   
}

.routineimage-group img[alt="coment"] {
  width: 190px;
  height: 138px;
  position: relative;
  z-index: 2;      
  margin-right: -40px;
}


.routineimage-group img[alt="coment"] + img {
  width: 180px;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.routine-coment {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.routine-coment.animate {
  opacity: 1;
  transform: translateY(0);
}

.watageimg3 , .watageimg4 {
  animation: fuwafuwa2 6s ease-in-out infinite;
  display: inline-block;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(8px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}


@media (max-width: 1200px) {
  .watageimg1 , .watageimg2 , .watageimg3 {
    display: none;
  }
 .routineimage-row {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
  }
}

.routine-column_wrap {
  width: 1150px;
  margin: 0 auto;
  margin-top: 40px;
}


.routine-column {
 display: flex;
  gap: 80px;
  align-items: center;
  max-width: 970px;
  margin-left: 180px;
  border: 3px dotted #F5BDBF;
  border-radius: 20px;
  padding: 40px 40px;
}

.routineleft-box {
  text-align: center;
}

.track {
  font-size: 2.4rem;
  color: #675E50;
  margin-bottom: 16px;
}

.track_text {
  font-size: 1.6rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.track_image-group {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}


.track_img1 {
  position: relative;
  z-index: 2;
  width: 180px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.track_img1.animate {
  opacity: 1;
  transform: translateY(0);
}

.track_img2 {
  position: absolute;
  left: 150px; 
  z-index: 1;
  border-radius: 50%;

}

.track-photo {
  width: 325px;
  border-radius: 16px;
  object-fit: cover;
  opacity: 0;
  transform: rotateY(90deg);
  transition: transform 1s ease, opacity 1s ease;
  transform-origin: center;
}

.track-photo.animate {
  opacity: 1;
  transform: rotateY(0deg);
}


@media (max-width: 1200px) {

.routine-column_wrap {
  width: 95%;
  margin: 0 auto;
  margin-top: 40px;
}

.routine-column {
  max-width: 100%;
  margin-left: 0; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 20px;
}

.routineleft-box,
.track_right-box {
  width: 100%;
}

.track_img1 , .track_img2 {
  display: none;
}

.track_right-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

}


.azukari_button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #E86D0A;
  padding: 20px 20px;
  border-radius: 90px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 10px rgba(103,94,80,0.25);
  transform: scale(1);
  transition: transform 0.4s ease, background-color 0.4s ease;
  margin: 20px auto 0;
}

.azukari_button2:hover {
  transform: scale(1.08);
  background-color: #f29d4a;
}

.azukari_button2 p {
  font-size: 1.6rem;
}

.routine_bottom_image {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  max-width: 1150px;
  padding: 40px 0 80px;
  margin: 0 auto;
}

.routine_bottom_image img {
  width: 135px;
  height: auto;
}

@media (max-width: 1200px) {
.routine_bottom_image img {
  width: 80px; 
  height: auto;
}
}



.asobisetumei {
  position: relative;
  padding: 80px 20px;
  background: #5DD272;
  overflow: hidden;
}


.snow-area {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}


.snow-area span {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: fall linear infinite;
}


@keyframes fall {
  0% {
    transform: translateY(-10vh);
  }
  100% {
    transform: translateY(110vh);
  }
}
.cloud-wrap {
  position: relative;
  background-image: url("../illustration/snow.png");
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center top;
  padding: 160px 20px;
}

.asobi_main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  text-align: center;
  color: #675E50;
  line-height: 1.8;
  font-size: 2.4rem;
  font-weight: bold;
}

.snow_only {
  display: none;
}
.asobi_sub-text {
  max-width: 800px;   
  margin: 60px auto 0;
  text-align: left;
  color: #fff;
  line-height: 1.8;
  font-size: 2rem;
}

.asobi_photo {
  display: flex;
  justify-content: center;
  gap: 330px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.asobi-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
}
.asobi-img:nth-child(1) {
  
  transform: translateY(-80px);
}

.asobi-img:nth-child(2) {
  transform: translateY(50px);
  width: 150px;
  height: 150px;
}

.asobi-img:nth-child(3) {
  transform: translateY(-250px);
}

.snowman-area {
  position: absolute;
  right: 100px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.snowman {
  width: 350px;
}

@media (max-width: 1320px) {

  .asobi-img:nth-child(2) {
    display: none;
  }

  
  .asobi_photo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }

  .asobi-img:nth-child(1),
  .asobi-img:nth-child(3) {
    transform: translateY(0);
    width: 180px;
    height: 180px;
  }

  .snowman-area {
    position: static;
    display: flex;
    align-items: center;
  }

  .snowman {
    width: 280px;
  }
}


@media (max-width: 980px) {
  .cloud-wrap{
  background-image: url(..//illustration/sp_snow.png);
  padding: 140px 10px;
  margin-top: 40px;
  
}
  .snow_only {
    display: block;
  }
  .asobi_main-text {
    top: 40%;
    font-size: 2rem;
  }
  .asobi_sub-text {
     margin: 0 auto;
     font-size: 1.6rem;
  }

  .asobi_photo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0; 
    position: relative;
  }


  .asobi-img {
    width: 110px;
    height: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .asobi-img:nth-child(1),
  .asobi-img:nth-child(3) {
    transform: translateY(0);
    width: 100px;
    height: 100px;
  }

  .asobi-img:nth-child(1) {
    transform: translate(70px, 20px);
  }

  .asobi-img:nth-child(3) {
    transform: translate(70px, 20px);
  }

  .snowman-area {
    position: relative;
    z-index: 3;
  }

  .snowman {
    height: auto;
    position: relative;
    top: 10px;
    margin-left: 30px;
  }
}

.gyouzi_wrap {
  background-color: #EEFFA4;
  padding: 60px 0 100px;
  overflow: hidden;

}


.gyouzi_p {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.title-block {
  width: 160px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.month-title {
  color: #675E50;
  font-size: 2.4rem;
  text-align: center;
  margin: 0;
}


.gyouzi-schedule {
  display: flex;
  justify-content: center;
  background-color: #F9FEE4;
  padding-top: 20px;

}
.gyouzi-schedule:nth-of-type(3) {
  padding-bottom: 40px;
}
.months {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;   
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


.month {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
}

.month > img,
.month-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.month_event {
  background-color: #FFF;
  padding: 5px 10px;
  border-radius: 20px;
  width: 150px;
  height: 120px;
  list-style: none;
  margin: 0;
  overflow: hidden;
}

.month_event li {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.month_event li:last-child {
  margin-bottom: 0;
}

.green_star {
  width: 12px;
  height: auto;
  margin-right: 6px;
  flex-shrink: 0;
}
.big-crayon1 {
  display: none;
}


.gyouzi_line {
  margin: 0 auto;
}

.line-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F9FEE4;
}

.dashed-line {
  width: 100%;
  max-width: 1100px;
  height: auto;
}

.crayon {
  position: absolute;
  right: calc(44% - 500px);
  top: 50%;
  transform: translateY(-48%);
  width: 110px;
}
.big-crayon2 {
  width: 300px;
  margin-top: 90px;
  margin-left: 80px;
}

@media (max-width: 1110px) {
  .gyouzi_wrap {
    padding: 40px 0 60px;
  }

  .gyouzi-schedule {
    display: block;
    padding-top: 40px;
  }

  .title-block {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .month-title {
    font-size: 2.4rem;
    text-align: center;
  }

  .months {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  .month {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

 .month > img,
.month-img {
  width: 65%;
  height: auto;
  margin-bottom: 10px;
}

  .month_event {
    width: 90%;

}

.crayon {
  display: none;
}
.big-crayon1 {
  display: block;
  width: 170px;
  margin-top: 130px;
}
.big-crayon2 {
  display: none;
}
}