@charset "UTF-8";

/* =========================================================
   PC/SP 切り替え
========================================================= */
.only_pc {
  display: inline-block;
}
.only_sp {
  display: none;
}
.media_pc {
  display: inline-block;
}
.media_sp {
  display: none;
}

/*スマホ*/
@media screen and (max-width: 896px) {
  .only_pc {
    display: none;
  }
  .only_sp {
    display: inline-block;
  }
  .media_pc {
    display: none;
  }
  .media_sp {
    display: inline-block;
  }
  .br-sp {
    display: none;
  }
}

body {
  width: 100%;
}

.area-container {
  background: #7cbbe7;
}

/*
    .area-wrapper
=========================================*/
.area-wrapper {
  line-height: 1.8;
  text-align: center;
  color: #333;
  background: #7cbbe7;
  font-size: 14px;
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}
.area-wrapper a {
  color: #333;
  text-decoration: none;
}
.area-wrapper a:hover {
  opacity: 0.7 !important;
  transition: all 0.6s ease;
}
.area-wrapper .bodyWrap {
  position: relative;
  z-index: 1;
  padding: 0;
}

a:focus,
*:focus {
  outline: none;
}

/*
    area-header
=========================================*/
.area-header {
  padding: 0;
  margin: 0;
}
.area-header .mainvisual {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* ------------------------------
   area-result（ここが今回の肝）
------------------------------ */
.area-header .area-result {
  padding: 80px 0;
}
.area-header .area-result h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 40px;
}
.area-header .area-result .back {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;

  /* 重なりが欠けるのを防ぐ（SP側でoverflow:hiddenを入れてるのでPCはvisible推奨） */
  overflow: visible;
}

/* 4枚の“土台”を固定して破綻を防ぐ */
.area-header .area-result .back .result-img {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-header .area-result .back .result-img li {
  position: relative; /* z-indexを効かせる */
  flex: 0 0 35%; /* 4枚の置き場を作る（これが超重要） */
}
.area-header .area-result .back .result-img li img {
  display: block;
  width: 100%;
  height: auto;
}

/* コラージュ重なり（既存の感じを維持しつつ 04 を揃える） */
.area-header .area-result .back .result-img li:nth-child(1) {
  margin: 10% -18% 0 0;
  z-index: 2;
}
.area-header .area-result .back .result-img li:nth-child(2) {
  margin: 2% 0 0 5%;
  z-index: 0;
}
.area-header .area-result .back .result-img li:nth-child(3) {
  margin: 10% 0 0 -13%;
  z-index: 2;
}
/* 04だけ -10% がズレやすいので、基本は -18% に揃える */
.area-header .area-result .back .result-img li:nth-child(4) {
  margin: 0% 0px 0px -15%;
  z-index: 1;
}

.area-header .area-result .result-text {
  text-align: center;
  margin-top: 0vw;
}
.area-header .area-result .result-text p {
  line-height: 1.7;
  font-size: 1.6vw;
  margin: 0 0 10px;
}
.area-header .area-result .result-text span {
  font-size: 1.3vw;
}
.area-header .area-result .result-text span span {
  display: inline-block;
  padding-top: 25px;
  padding-bottom: 5px;
  font-size: 1.15vw;
  border-bottom: 1px solid #333;
}

/* ------------------------------
   SP
------------------------------ */
@media screen and (max-width: 896px) {
  .area-header {
    width: auto;
    padding: 0 0 40px;
  }
  .area-header .mainvisual {
    width: auto;
    margin: 0 auto;
    border-bottom: none;
    flex-flow: column;
  }
  .area-header .mainvisual .logo {
    width: auto;
    margin: 0 120px;
  }
  .area-header .mainvisual .main-title {
    margin: 20px 0 40px;
  }
  .area-header .mainvisual .main-title h3 {
    font-size: 32px;
  }
  .area-header .mainvisual .main-title .main-subtitle {
    margin: 0 10px;
  }
  .area-header .mainvisual .main-title .main-subtitle .line {
    width: 18px;
    height: 1px;
  }
  .area-header .mainvisual .main-title .main-subtitle h5 {
    font-size: 14px;
  }

  .area-header .area-result {
    padding: 30px 0;
    overflow: hidden; /* ここは既存のまま */
  }
  .area-header .area-result h2 {
    font-size: 1.4rem;
    margin: 0 0 20px;
  }
  .area-header .area-result .back {
    width: 100%;
    margin: 0 auto;
  }

  /* SPは4枚横が厳しいので2×2にして破綻防止（コラージュ感はmarginで残す） */
  .area-header .area-result .back .result-img {
    margin: 0% auto;
    width: 90%;
    flex-wrap: wrap;
  }
  .area-header .area-result .back .result-img li {
    flex: 0 0 50%;
  }
  /* SPではPC用の強いマイナスマージンを弱める（破綻しにくい） */
  .area-header .area-result .back .result-img li:nth-child(1),
  .area-header .area-result .back .result-img li:nth-child(2),
  .area-header .area-result .back .result-img li:nth-child(3),
  .area-header .area-result .back .result-img li:nth-child(4) {
    margin: 3% 0 0 0%;
  }

  .area-header .area-result .result-text {
    text-align: left;
    margin: 0 auto;
  }
  .area-header .area-result .result-text p {
    font-weight: 500;
    line-height: 1.7;
    font-size: 1.3rem;
    margin: 20px 0 10px;
  }
  .area-header .area-result .result-text span {
    font-size: 13px;
  }
  .area-header .area-result .result-text span span {
    display: inline-block;
    padding-top: 25px;
    padding-bottom: 5px;
    font-size: 1rem;
    border-bottom: none;
    text-decoration: underline;
  }
}

/*
    area-body
=========================================*/
.area-body {
  min-width: 1120px;
  margin: 0 auto;
  padding: 80px 0 0;
  font-weight: normal;
  background: #7cbbe7;
  overflow: hidden;
}
.area-body section {
  max-width: 1300px;
  width: calc(100% - 180px);
  margin: 0 auto;
  padding: 40px 0;
  border-bottom: 1px solid #ffffff;
}
.area-body section:last-child {
  border-bottom: none;
}
.area-body section .sec-title {
  align-items: flex-end;
  width: 92%;
  margin: 0 4% 40px;
}

.result-text {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .area-body section .sec-title {
    width: 94%;
    margin: 0 3% 40px;
  }
}
.area-body section .sec-title .area-no {
  color: #df4442;
  font-weight: 600;
  position: relative;
}
.area-body section .sec-title .area-no .no {
  display: block;
}
.area-body section .sec-title .area-no p {
  position: absolute;
  bottom: -30%;
  left: 27%;
  font-size: 24px;
}
.area-body section .sec-title .area-no p span {
  font-size: 40px;
  position: relative;
  top: 8px;
}
.area-body section .sec-title .area-text {
  text-align: left;
  font-size: 3.5vw;
  font-weight: 600;
  padding-left: 35px;
  line-height: 1.2;
}
.area-body section .sec-title .area-text span {
  font-size: 2.3vw;
  display: block;
  line-height: 1;
}
.area-body section .sec-img {
  margin: 0 0 40px;
}
.area-body section .massege-btn {
  font-size: 1.4vw;
  width: calc(100% - 180px);
  max-width: 1300px;
  display: block;
  margin: 60px auto 120px;
  padding: 30px 0;
  line-height: 1.6;
  position: relative;
  background: #333333;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .area-body {
    min-width: auto;
  }
  .area-body section {
    width: auto;
    margin: 0 auto;
    padding: 20px 0;
  }
  .area-body section:last-child {
    border-bottom: none;
  }
  .area-body section .sec-title {
    align-items: center;
    flex-flow: column;
    width: 100%;
    margin: 0 0 40px;
  }
  .area-body section .sec-title .area-no {
    font-weight: 600;
    position: relative;
  }
  .area-body section .sec-title .area-no .no {
    display: block;
  }
  .area-body section .sec-title .area-no .no img {
    zoom: 0.6;
  }
  .area-body section .sec-title .area-no p {
    position: absolute;
    bottom: -34%;
    left: 27%;
    font-size: 14px;
  }
  .area-body section .sec-title .area-no p span {
    font-size: 24px;
    position: relative;
    top: 6px;
  }
  .area-body section .sec-title .area-text {
    width: calc(100% - 60px);
    text-align: left;
    font-size: 20px;
    padding-left: 0;
    line-height: 1.2;
    margin: 40px 30px 0;
  }
  .area-body section .sec-title .area-text span {
    font-size: 13px;
    display: block;
    line-height: 1;
  }
  .area-body section .sec-img {
    margin: 0 0 40px;
  }
  .area-body section .massege-btn {
    font-size: 13px;
    width: calc(100% - 70px);
    margin: 60px auto 120px;
    padding: 20px 0;
    line-height: 1.8;
    font-weight: 500;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* =========================================================
   inview animation
   04追加対応：up4 を追加（遅延はCSSでも可能）
========================================================= */
.inview {
  opacity: 0;
}

.up {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both 1 normal;
}

.up1 {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both 1 normal;
}
.up2 {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both 1 normal;
}
.up3 {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both 1 normal;
}
/* 04用：これを追加 */
.up4 {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both 1 normal;
}

/* 既存の他アニメ（そのまま残し） */
.image-fade {
  opacity: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.is-show {
  opacity: 1;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  transition:
    opacity 1s ease 0s,
    -webkit-clip-path 0.6s ease 0s;
  transition:
    opacity 1s ease 0s,
    clip-path 0.6s ease 0s;
  transition:
    opacity 1s ease 0s,
    clip-path 0.6s ease 0s,
    -webkit-clip-path 0.6s ease 0s;
}

.fade {
  opacity: 0;
}

.fadeup {
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 1;
}

.imagefade {
  opacity: 0;
}

.imageup {
  webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  opacity: 1;
}

/*VisualImage*/
@-webkit-keyframes VisualImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes VisualImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.VisualImage {
  -webkit-animation-name: VisualImage;
  animation-name: VisualImage;
}
