@charset "UTF-8";

/* ========================================
	style
======================================== */

html {
	/* scroll-behavior: smooth;  */
}

.visible {
  opacity: 1; 
}



article {
  overflow: hidden; 
}


.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mt-100 { margin-top: 100px; }




/* --------- MV --------- */

.main-img-box {
  height: clamp(600px, 50vw, 1000px);
  overflow: hidden;
  position: relative; 
}

.main-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: max(320px, 42%);
}

.main-catch img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-img {
  z-index:10;
  opacity: 0;
  width: 100%;
  height: clamp(600px, 50vw, 1000px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite; 
}
.img01 {
  background-image: url(/assets/index/images/main-visual02.jpg);
}
.img02 {
  background-image: url(/assets/index/images/main-visual03.jpg);
}
.img03 {
  background-image: url(/assets/index/images/main-visual04.jpg);
}
.img04 {
  background-image: url(/assets/index/images/main-visual05.jpg);
}
.img05 {
  background-image: url(/assets/index/images/main-visual01.jpg);
}

.main-img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s; }

.main-img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s; }

.main-img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s; }

.main-img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s; }

@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: scale(1.1) ;
          z-index:9;
    }
    100% { opacity: 0 }
}



/* --------- メッセージ --------- */

.message_inner {
  display: flex;
  position: relative;
  padding-block: 200px 240px;
}

.box_text {
  position: relative;
  z-index: 1;
  width: 50%;
}

.box_text .title {
  margin-left: 4rem;
  display: inline-block;
  position: relative;
  color:var(--primary-blue);  
  font-size: 3.6rem;
  font-weight: 600;
}

.box_text .title::before,
.box_text .title::after {
  position: absolute;
  font-size: 4.6rem;
  color: var(--primary-blue); 
}

.box_text .title::before {
  content: '“';
  left: -3.6rem;
  top: -1.8rem;
}

.box_text .title::after {
  content: '”';
  right: -3rem;
  bottom: -3.4rem;
}

.box_text::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -30vw;
  width: min(90vw, 1600px);
  height: min(145%, 1100px);
  border-radius: 20px;
  background-color: #F0F7FF;
  z-index: -1;
}

.box_text_inner {
  display: flex;
  flex-direction: column; 
  z-index: 2;
}

.box_text_inner p {
  position: relative;
  z-index: 2;
  margin-bottom: 2.4rem;
}

.box_img {
  position: absolute;
  width: 45%;
  right: 20px;
  top: 13%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}

.box_img img {
  border-radius: 10px;
  overflow: hidden;
}

.box_img .box_img01 {
  transform: translateX(6vw);
}

.box_img .box_img02 {
width: 90%;
}

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 32px;
  background-color: var(--primary-blue);
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  width: fit-content;
  overflow: hidden;
}


/*波紋*/
.ripple::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}

.ripple:active::before {
  transform: scale(0, 0);
  transition: 0s;
  opacity: 0.3;
}

.btn-round::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/assets/common/images/btn-arrow.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.btn-round:hover::after {
  transform: translateX(6px); /* ← 右に4px動く */
}

/* --------- 大切なもの --------- */

#section02 {
  padding-bottom: min(20vw, 300px);
}

.point_inner {
  text-align: center;
}

.point_inner .title {
  color:var(--primary-blue);  
  font-size: 3.6rem;
  font-weight: 600;
  }

.point-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 60px;
}

.point {
  flex: 1 1 360px;
  max-width: 360px;
  background-color: #fff;
  border: 4px solid var(--primary-blue);
  border-radius: 10px;
  padding: 30px 20px 40px;
  box-sizing: border-box;
  text-align: left;
}

.point-number {
  font-size: 5rem;
  font-family: var(--font-en);
  color: #B3E7EF;
  text-align: left;
  line-height: 1;
}

.point-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-block: -16px 30px;
  text-align: center;
  line-height: 1;
}

.point-lead {
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-block: 0px 16px;
  line-height: 1.6;

}

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

/* --------- SURVICE --------- */

#section03 {
  background-color: #F0F7FF;
  position: relative;
  padding-block: 30px 100px;
}

.wave-blue::before {
  content: '';
  position: absolute;
  top: -8.49vw;
  left: 0;
  width: 100%;
  height: 8.5vw;
  background: url(/assets/common/images/wave-blue_t.svg) no-repeat center bottom;
  background-size: cover;
  z-index: -10;
}


.wave-blue::after {
  content: '';
  position: absolute;
  bottom: -8.49vw;
  left: 0;
  width: 100%;
  height: 8.5vw;
  background: url(/assets/common/images/wave-blue_b.svg) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}


.sec-title {
  font-size: 6rem;
  font-family: var(--font-en-b);
  line-height: 0.8;
  color: var(--primary-blue);  
  padding-bottom: 60px;

}

.sub-title {
  font-size: 1.8rem;
  font-family: var(--font-jp);
  font-weight: normal;
  line-height: 1;
}

.service_inner {
  position: relative;
  text-align: center;
  width: 66%;
  margin-inline: auto;
}

.service-container {
  position: relative;
  display: flex;
  gap: 24px;
  z-index: 2;
}

.service-img {
  flex: 1;
  border-radius: 200px 200px 5px 5px;
  width: 30%;
  height: auto;
  object-fit: cover;
}

.service_inner::before {
  content: '';
  position: absolute;
  top: -45%;
  left: -30%;
  width: min(20vw, 280px);
  aspect-ratio: 1 / 1;
  background: url(/assets/index/images/illust01.png) no-repeat center;
  background-size: contain;
  z-index: 10;
}

.service-container::before {
  content: '';
  position: absolute;
  top: -380px;
  right: -5%;
  width: min(18vw, 230px);
  aspect-ratio: 1/1;
  background: url(/assets/index/images/illust02.png) no-repeat center;
  background-size: contain;
  z-index: 10;
}

.service-container::after {
  content: '';
  position: absolute;
  bottom: -37%;
  left: -11%;
  width: min(18vw, 230px);
  aspect-ratio: 1 / 1;
  background: url(/assets/index/images/illust03.png) no-repeat center;
  background-size: contain;
  z-index: 10;
}

/* --------- ACCESS --------- */

#section04 {
  position: relative; 
  padding-top: 180px;
  padding-bottom: max(100px, 16vw);
  background-image: url("/assets/common/images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* #section04::after {
  content: '';
  position: absolute;
  top: 420px;
  right: 0;
  width: 50vw;
  border-radius: 10px 0 0 10px;
  height: clamp(400px, 30vw, 520px);
  background: url(/assets/index/images/access.jpg) no-repeat center center;
  background-size: cover;
} */

.access_inner {
  position: relative;
  text-align: center;
}

.access_wrapper {
  display: flex;
  gap: 8%;
}

.access-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  font-size: 1.6rem;
}

.access-name {
  color: var(--primary-blue);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}

/* .access-name span {
  font-size: 1.8rem;
} */

  .access-img {
    border-radius: 6px;
  }

.border-t {
  padding-top: 20px;
  border-top: 1px dashed #C3D1D3;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 18px;
  background-color: #ffffff;
  border: solid 1px var(--text-base-color);
  color: var(--text-base-color);
  font-weight: normal;
  font-size: 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  width: fit-content;
  overflow: hidden;
}


.btn-map::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(/assets/common/images/btn-arrow-g.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.btn-map:hover::after {
  transform: translateX(4px);
}

/* --------- VOICE --------- */

#section05 {
  padding-block: 40px 100px;
  position: relative;
  background-color: #EFF0F0;
}

.wave-glay::before {
  content: '';
  position: absolute;
  top: -8.49vw;
  left: 0;
  width: 100%;
  height: 8.5vw;
  background: url(/assets/common/images/wave-glay_t.svg) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列に */
  gap: 20px 30px;
}


.voice-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
}

.voice-img {
  margin-block: auto;
}

.voice-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.voice-content {
  margin-left: 24px;
  flex: 1;
}

.voice-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #C3D1D3;
}

.voice-name {
  font-size: 1.8rem;

}

.voice-meta {
  font-size: 1.4rem;
}

.voice-text {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* --------- リクルート --------- */

#section06 {
  position: relative; 
  padding-block: calc(22vw + 100px) calc(10vw + 60px);
  text-align: center;
  background-image: url(/assets/index/images/recruit.jpg); /* ← お好みの画像パスに */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recruit_inner .title {
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.6;
}

.recruit_inner p {
  font-size: 2.4rem;
  color: #ffffff;
}



/* ========================================
	1024px以上専用スタイル（PC）    
======================================== */
@media print,
screen and (1024px <=width) {

  /* --------- header --------- */
  #header_main {
    position: absolute; /* 固定せず、MVの上に被せる */
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0px 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }

  #header_main .header-container {
    /* display: flex; */
    /* align-items: center; */
  }

  #header_main .logo {
    margin-right: auto; 
  }
  #header_main .logo img {
    width: 200px;
  }

  #header_main .nav-box {
    margin-left: auto;
    display: flex;
    gap: min(4vw, 60px);
    align-items: center;
    background: #fff;
    border-radius: 50px 0 0 50px; /* 左側のみ角丸 */
    padding: 14px 100px 14px 80px;
  }

  .nav-box a {
    color: var(--text-base-color);
    font-size: 1.8rem;
    line-height: 1.1;
    text-align: center;
  }
  .nav-box a span {
    color: var(--primary-blue);
    font-family: var(--font-en);
    font-size: 1.4rem;
  }

  /* インスタアイコン */
  .insta-icon img {
    height: 36px;
    width: 36px;
  }

  #header_sub {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateY(-90px);
    background: #ffffff;
    width: 100%;
    padding: 8px 0px 6px 30px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header_sub.scrolled {
    transform: translateY(0);
  }


  #header_sub .header-container {
    display: flex;
    justify-content: space-between; /* 左右両端に配置 */
    align-items: center;
    width: 100%;
  }

  #header_sub .logo {
    margin-right: auto; 
  }
  #header_sub .logo img {
    width: 200px;
  }

  #header_sub .nav-box {
    margin-left: auto;
    display: flex;
    gap: min(4vw, 60px);
    align-items: center;
    background: #fff;
    padding: 14px 100px 14px 80px;
  }

}


/* ========================================
	768px以上専用スタイル（PC）    
======================================== */
@media print,
screen and (768px <=width) {

}

/* ========================================
	1024px未満専用スタイル（TAB & SP）
======================================== */
@media screen and (width < 1024px) {


  /* --------- MV --------- */

  .main-catch {
    top: 64%;
  }

  /* --------- メッセージ --------- */

  #section01 {
    background-color: #F0F7FF;
  }
  
  .message_inner {
    flex-direction: column; /* ← これで縦積みに */
    align-items: center;
    height: auto;
    padding-block: 40px 0px;
  }

  .box_text {
    width: 100%;
  }
  
  .box_text  p {
    font-size: 1.5rem;

  }

  .box_text .title {
    margin-left: 3rem;  
    font-size: 2.4rem;
    line-height: 1.6;
  }
  
  .box_text .title::before,
  .box_text .title::after {
    font-size: 3.6rem;
  }
  
  .box_text .title::before {
    left: -3rem;
    top: -1.4rem;
  }
  
  .box_text .title::after {
    right: 0.6rem;
    bottom: -2.4rem;
  }
  
  .box_text::before {
    display: none;
  }
  
  .box_img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    gap: 24px;
    padding-top: 40px;
    margin-bottom: -100px;
  }
  
  .box_img .box_img01 {
    width: min(85%, 540px);
    margin-left: auto;
    transform: translateX(0vw);
  }
  
  .box_img .box_img02 {
    width: min(80%, 500px);
  }
  
  .btn-round {
    margin-inline: auto;
    display: inline-flex;
    padding: 6px 22px;
    font-size: 1.5rem;
  }

/* --------- 大切なもの --------- */

  #section02 {
    padding-top: 140px;
    padding-bottom: min(26vw, 300px);
    background-image: url("/assets/common/images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .point_inner {
    text-align: left;
  }
  
  .point_inner .title {
    font-size: 2.4rem;
    }
  
  .point-container {
    padding-top: 40px;
  }
  
  .point {
    padding: 20px 20px 40px;
  }
  
  .point-number {
    font-size: 4.2rem;
  }
  
  .point-title {
    font-size: 2.4rem;
    margin-block: -3rem 20px;
    text-align: left;
    margin-left: 6rem;
  }
  
  .point-lead {
    margin-block: 0px 12px;  
  }
  
  .point-text {
    font-size: 1.4rem;
  }

  /* --------- SURVICE --------- */

  #section03 {
    margin-bottom: 60px;
  }
  
  .sec-title {
    font-size: 3.8rem;
    padding-bottom: 30px;
  
  }
  
  .sub-title {
    font-size: 1.4rem;
  }
  
  .service_inner {
    width: 100%;
  }

  .service-text {
    text-align: left;
  }
  
  .service-container {
    width: min(70%, 400px);
    margin-inline: auto;
  }
  
  .service-img {
    flex: initial;
    width: 100%;
  }

  .service-img:nth-child(2),
  .service-img:nth-child(3) {
    display: none;
  }

  .service_inner::before {
    top: -29%;
    left: -3%;
    width: min(25vw, 160px);
  }
  
  .service-container::before {
    top: 0%;
    right: -13%;
    width: min(24vw, 150px);
  }
  
  .service-container::after {
    bottom: -18%;
    left: -25%;
    width: min(24vw, 160px);
  }

  /* --------- ACCESS --------- */

  #section04 {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  
  #section04::after {
    display: none;
  }
  
  .access_wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .access-text {
    width: 100%;
    font-size: 1.4rem;
  }
  
  .access-name {
    font-size: 2.4rem;
  }
  
  .access-name span {
    font-size: 1.6rem;
  }
  
  .btn-map {
    padding: 2px 16px;
  }

/* --------- VOICE --------- */

  #section05 .sec-title {
    text-align: center;
  }
  
  .voice-grid {
    grid-template-columns: repeat(1, 1fr); /* 1列に */
  }
  
  
  .voice-item {
    padding: 20px 30px;
  }
  
  .voice-img img {
    width: 60px;
    height: 60px;
  }
  
  .voice-content {
    margin-left: 20px;
  }
  
  .voice-name {
    font-size: 1.6rem;
  
  }
  
  .voice-meta {
    font-size: 1.3rem;
  }
  
  .voice-text {
    font-size: 1.3rem;
  }

  /* --------- リクルート --------- */

  #section06 {
    padding-block: calc(67vw + 30px) 15vw;
    background-image: url(/assets/common/images/bg.png);
    background-position: center;
    background-attachment: scroll;
  }


  #section06::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 67vw; 
    background-image: url(/assets/index/images/recruit_sp.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  .recruit_inner .title {
    font-size:2rem;
    color: var(--primary-blue);
    font-weight: bold;
    line-height: 1.6;
  }
  
  .recruit_inner p {
    font-size: 1.4rem;
    color: var(--primary-blue);
  }
  

}

/* ========================================
	768px以上1024px未満専用スタイル（TAB）
======================================== */
@media screen and (768px <=width < 1024px) {}

/* ========================================
	768px未満専用スタイル（SP）
======================================== */
@media screen and (width < 768px) {

  .img01 {
    background-image: url(/assets/index/images/main-visual02_sp.jpg);
  }
  .img02 {
    background-image: url(/assets/index/images/main-visual03_sp.jpg);
  }
  .img03 {
    background-image: url(/assets/index/images/main-visual04_sp.jpg);
  }
  .img04 {
    background-image: url(/assets/index/images/main-visual05_sp.jpg);
  }
  .img05 {
    background-image: url(/assets/index/images/main-visual01_sp.jpg);
  }

}