@charset "UTF-8";
/* 設定用 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* TOP */
.kv-container {
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kv-container {
    position: relative;
  }
}

.kv-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100svh;
}

.kv-text-contents {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: "Noto Sans JP";
}

.kv-text {
  margin-bottom: 24px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.kv-text.hidden {
  opacity: 0;
  transform: translateY(-30px);
}
.kv-text span {
  display: block;
}
.kv-text .font-en {
  font-size: clamp(1rem, 0.765rem + 1.18vw, 1.5rem); /*16-24*/
  margin-bottom: 16px;
  padding-left: 5px;
  opacity: 0;
  animation-name: fadeBottomIn;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .kv-text .font-en {
    font-weight: unset;
  }
}
.kv-text .kv-text-ja {
  font-size: clamp(1.875rem, 0.875rem + 5vw, 4rem); /*30-64*/
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 0.1em;
  opacity: 0;
  animation-name: fadeBottomIn;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  transition: all 0.5s ease-in-out;
  font-family: "Noto Sans JP", sans-serif;
}
.kv-text .kv-text-ja small {
  font-size: clamp(1.75rem, 0.926rem + 4.12vw, 3.5rem); /*28-56*/
  font-weight: bold;
  vertical-align: baseline;
}

@keyframes fadeBottomIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.kv-btn {
  opacity: 0;
  animation-name: fadeBottomIn;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.kv-btn a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.kv-btn a.hidden {
  opacity: 0;
  transform: translateY(-30px);
}
.kv-btn a::before {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url(../../img/common/icon-play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .kv-btn a::before {
    width: 30px;
    height: 30px;
    margin-right: 16px;
  }
}

video {
  min-width: 100%;
  min-height: 100svh;
  position: absolute;
  left: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*モーダル*/
.modal-open {
  cursor: pointer;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #000;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 999;
}
.modal-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .kv-text {
    margin-bottom: 24px;
  }
}
.sec-top-intro {
  text-align: center;
  padding: 100px 0;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .sec-top-intro {
    text-align: left;
    padding: 40px 0 0;
    padding-top: 0;
  }
}
.sec-top-intro h2 {
  color: #2C2F77;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.sec-top-intro .area {
  overflow: hidden;
}
.sec-top-intro .area .wrap {
  display: flex;
  padding-left: 66%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap {
    padding-left: 0;
    display: block;
  }
}
.sec-top-intro .area .wrap .item {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item {
    height: auto;
    background: none;
    margin-bottom: 24px;
    height: auto;
  }
}
.sec-top-intro .area .wrap .item .intro-item-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: -15px 15px 0px 0px rgba(202, 186, 155, 0.5);
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item h2 {
    margin-bottom: 16px;
    padding: 0 24px;
    font-size: 24px;
    line-height: 1.7;
  }
}
.sec-top-intro .area .wrap .item h2.forsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item h2.forsp {
    display: block;
  }
}
.sec-top-intro .area .wrap .item h2.forpc {
  display: block;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item h2.forpc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item p {
    padding: 0 24px;
    font-size: 14px;
  }
}
.sec-top-intro .area .wrap .item p.forsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item p.forsp {
    display: block;
  }
}
.sec-top-intro .area .wrap .item p.forpc {
  display: block;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item p.forpc {
    display: none;
  }
}
.sec-top-intro .area .wrap .item01 {
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 {
    padding-top: 296px;
  }
}
.sec-top-intro .area .wrap .item01 .image-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: url(../../img/top/top-intro-line-left-01.webp);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 100% 90%;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0); /* 最初は非表示 */
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .image-container {
    background-image: url(../../img/top/line_mask_middle.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 100% 90%;
    height: 220px;
    bottom: -350px;
  }
}
.sec-top-intro .area .wrap .item01 .top-intro-line-left-02 {
  display: block;
  position: absolute;
  width: 57.7%;
  height: 46.1%;
  bottom: 17%;
  right: -14%;
  background-image: url(../../img/top/top-intro-line-left-02-90deg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0); /* 最初は非表示 */
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
}
.sec-top-intro .area .wrap .item01 .intro-img01 {
  width: 33%;
  left: 6%;
  top: 3%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img01 {
    width: 60%;
    left: 17px;
    top: 172px;
  }
}
.sec-top-intro .area .wrap .item01 .intro-img02 {
  width: 23%;
  left: 4%;
  bottom: 48px;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img02 {
    left: 17px;
    top: auto;
    bottom: 0;
    width: 170px;
    transform: translateY(150%);
  }
}
.sec-top-intro .area .wrap .item01 .intro-img03-left {
  width: 20%;
  right: 0;
  top: 10%;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img03-left {
    top: 54px;
    width: 90px;
    height: 90px;
    right: 116px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img03-left img {
    float: right;
    height: 117%;
    width: auto;
  }
}
.sec-top-intro .area .wrap .item01 .intro-img03-right.forsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img03-right.forsp {
    display: block;
    top: 54px;
    border-radius: 0 8px 8px 0;
    z-index: 9;
    width: 90px;
    right: 26px;
    height: 90px;
  }
}
.sec-top-intro .area .wrap .item01 .intro-img04 {
  width: 15%;
  right: 16%;
  bottom: 20%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img04 {
    width: 100px;
    right: 38px;
    bottom: 0;
    transform: translateY(200%);
  }
}
.sec-top-intro .area .wrap .item01 .intro-img10 {
  width: 25%;
  left: 45%;
  top: 0;
  box-shadow: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img10 {
    transform: rotate(-10deg);
    width: 70%;
    left: -10%;
    top: 7%;
  }
}
.sec-top-intro .area .wrap .item01 .intro-img09 {
  width: 18%;
  left: 24%;
  bottom: 70px;
  box-shadow: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item01 .intro-img09 {
    width: 200px;
    bottom: 0;
    left: auto;
    right: 20px;
    transform: translateY(115%);
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 {
    padding-top: 362px;
    padding-bottom: 298px;
  }
}
.sec-top-intro .area .wrap .item02 .image-container-hoge {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: url(../../img/top/top-intro-line-right.webp);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 100% 90%;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0); /* 最初は非表示 */
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .image-container-hoge {
    background-image: url(../../img/top/line_mask_bottom.webp);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 100% 90%;
    height: 200px;
    width: 100%;
    bottom: 50px;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img03-right {
  width: 16.15%;
  left: 0;
  top: 10%;
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img03-right {
    height: 90px;
    left: 56%;
    top: 54px;
    border-radius: 8px 8px 8px 8px;
    z-index: 1000;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img03-right.forpc {
    display: none;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img05 {
  width: 10%;
  left: 22%;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img05 {
    width: 70px;
    left: 89px;
    bottom: 39px;
    top: auto;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img06 {
  width: 23%;
  left: 0;
  bottom: 6%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img06 {
    width: 120px;
    left: 9px;
    bottom: 134px;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img07 {
  width: 32%;
  right: 5%;
  top: 5%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img07 {
    width: 240px;
    right: 22px;
    top: 250px;
    z-index: 10;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img08 {
  width: 24%;
  right: 0%;
  bottom: 5%;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img08 {
    width: 155px;
    right: 0;
    bottom: 67px;
    z-index: 2;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img09 {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .item02 .intro-img09 {
    display: block;
    width: 200px;
    bottom: 114px;
    left: 60px;
    box-shadow: unset;
    transform: rotate(190deg);
    z-index: 1;
  }
}
.sec-top-intro .area .wrap .item02 .intro-img11 {
  width: 24%;
  left: 21%;
  bottom: 2%;
  box-shadow: none;
  z-index: -1;
}
.sec-top-intro .area .wrap .tb-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .tb-block .tb-block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .intro-contents-img_sp {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .intro-contents-img_sp::before, .sec-top-intro .area .wrap .intro-contents-img_sp::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .top {
    background-image: url(../../img/top/top-intro-g-02.webp);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: left -60px top;
    width: 100%;
    padding-top: 50%;
    transform: rotate(-8deg);
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .top::before {
    background-image: url(../../img/top/top-intro-03.webp);
    width: 50%;
    aspect-ratio: 35/18;
    height: auto;
    top: 0;
    right: 16px;
    transform: rotate(8deg);
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .top::after {
    background-image: url(../../img/top/top-intro-01.webp);
    width: 60%;
    aspect-ratio: 220/93;
    height: auto;
    top: 46%;
    left: 16px;
    transform: rotate(8deg);
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .middle {
    background-image: url(../../img/top/line_mask_middle.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    padding-bottom: 52.5%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .middle::before {
    background-image: url(../../img/top/top-intro-07.webp);
    width: 60%;
    aspect-ratio: 529/176;
    height: auto;
    bottom: 0;
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .middle::after {
    background-image: url(../../img/top/top-intro-g-01.webp);
    width: 60%;
    height: 52%;
    top: -20%;
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .middle .intro-contents-img_sp {
    position: absolute;
    z-index: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .middle .intro-contents-img_sp::before {
    background-image: url(../../img/top/top-intro-02.webp);
    width: 30%;
    height: auto;
    aspect-ratio: 1/1;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .middle .intro-contents-img_sp::after {
    background-image: url(../../img/top/top-intro-04.webp);
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
    right: 20%;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .bottom {
    background-image: url(../../img/top/line_mask_bottom.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    width: 100%;
    padding-bottom: 50.6%;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .bottom::before {
    background-image: url(../../img/top/top-intro-08.webp);
    background-position: right;
    width: 40%;
    height: auto;
    aspect-ratio: 411/442;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .bottom::after {
    background-image: url(../../img/top/top-intro-05.webp);
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
    bottom: 0;
    left: 20%;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .bottom .intro-contents-img_sp {
    background-image: url(../../img/top/top-intro-06.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    width: 30%;
    aspect-ratio: 240/143;
    height: auto;
    border-radius: 8px;
    margin-left: 16px;
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .sec-top-intro .area .wrap .bottom .intro-contents-img_sp::after {
    background-image: url(../../img/top/top-intro-g-03.webp);
    width: 140%;
    height: 200%;
    top: -70%;
    left: 35%;
    z-index: -1;
  }
}

.sec-top-about {
  padding: 150px 0;
  overflow: hidden;
}
.sec-top-about .wrapper {
  z-index: 1;
}

.about-left-img {
  width: 400px;
  height: 400px;
  background-image: url(../../img/about/about-left.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: -20%;
  top: 12%;
}
@media screen and (max-width: 767px) {
  .about-left-img {
    width: 160px;
    height: 120px;
    left: -4%;
    top: 134px;
    z-index: -1;
  }
}

.about-right-img {
  width: 300px;
  height: 300px;
  background-image: url(../../img/about/about-right.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: -20%;
  top: 2%;
}
@media screen and (max-width: 767px) {
  .about-right-img {
    content: "";
    width: 144px;
    height: 119px;
    right: -4%;
    top: -23px;
    z-index: -1;
  }
}

.top-about-ttl {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 0.971rem + 2.65vw, 2.625rem); /*24-42*/
  font-weight: 700;
  letter-spacing: 2.1px;
  line-height: 150%; /* 36px */
  text-align: center;
  margin-bottom: 24px;
  text-shadow: 0px 0px 20px #6FA5B6;
}

.about-blowing {
  position: relative;
  background-color: #FFFFFF;
  padding: 8px 40px;
  border-radius: 50px;
  color: #2C85BB;
  font-size: clamp(1.125rem, 0.949rem + 0.88vw, 1.5rem); /*18-24*/
  font-weight: 700;
  text-align: center;
  line-height: 150%; /* 36px */
  width: 60%;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 20px #6FA5B6);
}
.about-blowing::after {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 26px;
  height: 20px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.about-count {
  color: #FFFFFF;
  font-size: clamp(2rem, 1.059rem + 4.71vw, 4rem); /*32-64*/
  font-weight: 700;
  text-shadow: 0px 0px 20px #6FA5B6;
  text-align: center;
  margin-bottom: 64px;
}
.about-count span {
  font-size: clamp(6rem, 2.941rem + 15.29vw, 12.5rem); /*96-200*/
}

.about-desc {
  position: relative;
  background-color: #FFFFFF;
  filter: drop-shadow(0px 0px 20px #6FA5B6);
  border-radius: 24px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-desc .about-desc-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
}
.about-desc .about-desc-text .about-desc-ttl {
  font-size: 1.5rem; /*24*/
  font-weight: 700;
  margin-bottom: 24px;
}
.about-desc .about-desc-text .about-desc-count {
  color: #2C85BB;
  font-size: 30px;
  font-weight: 900;
}
.about-desc .about-desc-text .about-desc-count span {
  font-size: 110px;
  padding: 0 8px;
}
.about-desc .about-desc-text .notice {
  color: #666666;
  font-size: 0.625rem; /*10px*/
  text-align: right;
  margin: 8px 0 40px;
  width: 80%;
}
.about-desc .about-desc-img {
  width: 40%;
}
.about-desc .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec-top-about {
    padding: 80px 0 96px;
  }
  .sec-top-about .wrapper::before {
    width: 145px;
    height: 145px;
    left: -4%;
    top: 14%;
    z-index: -1;
  }
  .sec-top-about .wrapper::after {
    content: "";
    width: 145px;
    height: 145px;
    right: -4%;
    top: -5%;
    z-index: -1;
  }
  .about-blowing {
    width: 100%;
    margin-bottom: 43px;
  }
  .about-count {
    margin-bottom: 48px;
  }
  .about-desc {
    border-radius: 24px;
    padding: 40px 16px 6rem;
    flex-direction: column;
  }
  .about-desc .about-desc-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .about-desc .about-desc-text .about-desc-ttl {
    text-align: center;
    line-height: 150%;
  }
  .about-desc .about-desc-text .about-desc-count {
    font-size: 24px;
  }
  .about-desc .about-desc-text .about-desc-count span {
    font-size: 80px;
  }
  .about-desc .about-desc-text .notice {
    margin-bottom: 0;
  }
  .about-desc .about-desc-text .text {
    font-size: 0.875rem;
    position: absolute;
    bottom: 40px;
    width: calc(100% - 48px);
  }
  .about-desc .about-desc-img {
    width: 80%;
    margin-bottom: 40%;
  }
}
.sec-top-servise {
  padding: 150px 0 200px;
  overflow: hidden;
}
.sec-top-servise .wrapper {
  z-index: 1;
}
.sec-top-servise .sectionTitle {
  margin-bottom: 40px;
  text-align: left;
}
.sec-top-servise .btn {
  display: block;
  text-align: left;
}

.top-business-img {
  position: absolute;
  width: 100vw;
  min-height: 590px;
  background-image: url(../../img/top/top-busisess.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  bottom: -100px;
  z-index: -1;
  right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .top-business-img {
    min-height: 220px;
    bottom: initial;
    right: 0;
    top: 10%;
  }
}

.top-servise-text {
  margin-bottom: 40px;
  width: 55%;
}

.top-servise-other {
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  padding: 16px 40px;
  display: inline-block;
  margin-bottom: 48px;
  width: 660px;
}
.top-servise-other .font-en {
  font-size: 1.25rem; /*20px*/
  margin-bottom: 16px;
  color: #2C2F77;
  text-align: left;
}
.top-servise-other li {
  text-align: left;
}
.top-servise-other li:not(:last-child) {
  margin-bottom: 8px;
}
.top-servise-other li .text-link {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .top-servise-other li .text-link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-servise-other li .text-link::before {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}
.top-servise-other li p {
  font-size: 0.875rem;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .top-servise-other li p {
    display: none;
  }
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec-top-servise {
    padding: 80px 0 96px;
  }
  .sec-top-servise .wrapper {
    text-align: center;
  }
  .sec-top-servise .top-servise-text {
    text-align: left;
    margin: auto;
    margin-top: 280px;
    width: 100%;
    font-size: 0.875rem;
  }
  .sec-top-servise .top-servise-other {
    padding: 16px;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    width: 100%;
  }
}
.sec-top-voice {
  background-image: url(../../img/common/bg-base.webp);
  background-color: #F3EDE2;
  padding: 150px 0 200px;
}
.sec-top-voice .wrapper {
  z-index: 1;
}
.sec-top-voice .btn {
  display: block;
  text-align: center;
}
.sec-top-voice .sectionTitle {
  text-align: center;
}
.sec-top-voice .top-voice-text {
  text-align: center;
  margin-bottom: 56px;
}
.sec-top-voice .voice__list {
  margin-bottom: 24px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec-top-voice {
    padding: 80px 0 96px;
  }
}
.sec-top-news {
  padding: 150px 0 200px;
  background-image: url("../../img/top/news-bg.svg");
  background-color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sec-top-news .wrapper {
  display: flex;
  gap: 120px;
}
.sec-top-news .wrapper .sectionTitle {
  width: 30%;
}
.sec-top-news .wrapper .btn {
  position: absolute;
  top: 200px;
  left: 20px;
}

.news-list {
  flex: 1;
  z-index: 1;
}

.news-item {
  border-bottom: 1px solid #999999;
  display: flex;
  padding-bottom: 16px;
}
.news-item:not(:last-child) {
  margin-bottom: 16px;
}
.news-item .news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
  color: #2C2F77;
  font-size: 0.875rem;
  margin-right: 24px;
}
.news-item .news-date span {
  font-size: 3.125rem; /*50px*/
}
.news-item .news-text {
  flex: 1;
  padding-top: 16px;
}
.news-item .news-text a {
  text-decoration: underline;
  color: #2C85BB;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec-top-news {
    padding: 80px 0 96px;
  }
  .sec-top-news .wrapper {
    flex-direction: column;
    gap: 48px;
    padding: 0 24px;
  }
  .sec-top-news .wrapper .sectionTitle {
    width: 100%;
  }
  .sec-top-news .wrapper .btn {
    position: unset;
    text-align: center;
    transform: translateY(-40%);
  }
  .news-list {
    margin-bottom: 0;
    z-index: 1;
  }
}
.sec-top-recruit {
  padding-bottom: 400px;
}
.sec-top-recruit .sectionTitle {
  position: absolute;
  top: -50px;
}
.sec-top-recruit .sectionTitle::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: #FAF6F0;
  filter: blur(30px);
}
.sec-top-recruit .wrapper {
  padding-top: 72px;
  display: flex;
  z-index: 1;
}
.sec-top-recruit .wrapper .recruit-text {
  margin-bottom: 30px;
  position: relative;
}
.sec-top-recruit .wrapper .recruit-text h3 {
  color: #2C2F77;
  font-size: clamp(1.5rem, 1.029rem + 2.35vw, 2.5rem); /*24-40*/
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 120px;
}
.sec-top-recruit .wrapper .recruit-text h3 span {
  font-family: "Bree Serif", serif;
}
.sec-top-recruit .wrapper .recruit-text p {
  margin-bottom: 50px;
  font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem); /*14-18*/
}
.sec-top-recruit .wrapper .recruit-img {
  flex: 1;
  width: 100vw;
  margin-right: calc(51% - 50vw);
  position: relative;
}
.sec-top-recruit .wrapper .recruit-img .recruit-item-img {
  position: absolute;
  box-shadow: -15px 15px 0px 0px rgba(202, 186, 155, 0.5);
}
.sec-top-recruit .wrapper .recruit-img .recruit-img01 {
  width: 42.5%;
  right: 0;
  top: 4%;
}
.sec-top-recruit .wrapper .recruit-img .recruit-img02 {
  width: 24.5%;
  right: 37%;
  top: 88%;
}
.sec-top-recruit .wrapper .recruit-img .recruit-img03 {
  width: 17%;
  left: 25%;
  top: 22%;
}
.sec-top-recruit .wrapper .recruit-img .recruit-img04 {
  width: 17%;
  right: 70%;
  top: 98%;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec-top-recruit {
    padding-bottom: 0;
  }
  .sec-top-recruit .sectionTitle {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec-top-recruit .wrapper {
    padding-top: 80px;
    flex-direction: column-reverse;
  }
  .sec-top-recruit .wrapper .recruit-text {
    text-align: center;
    padding-top: 270px;
    margin-bottom: 96px;
  }
  .sec-top-recruit .wrapper .recruit-text h3 {
    line-height: 150%;
    margin-bottom: 24px;
    margin-top: 0;
  }
  .sec-top-recruit .wrapper .recruit-text h3 span {
    font-size: 2rem;
  }
  .sec-top-recruit .wrapper .recruit-text p {
    margin-bottom: 24px;
  }
  .sec-top-recruit .wrapper .recruit-img {
    width: 100%;
    margin-right: 0;
  }
  .sec-top-recruit .wrapper .recruit-img .recruit-item-img {
    box-shadow: unset;
  }
  .sec-top-recruit .wrapper .recruit-img .recruit-img01 {
    width: 170px;
    right: 0;
    top: 0;
  }
  .sec-top-recruit .wrapper .recruit-img .recruit-img02 {
    width: 100px;
    right: auto;
    top: 120px;
    left: 90px;
  }
  .sec-top-recruit .wrapper .recruit-img .recruit-img03 {
    width: 68px;
    top: 37px;
    left: 27px;
  }
  .sec-top-recruit .wrapper .recruit-img .recruit-img04 {
    width: 68px;
    top: 150px;
    left: 0;
  }
}
/*======================== 
下層ページ
========================*/
/* 私たちについて */
#pageAbout .kv-sub {
  background-image: url(../../img/sub-bg/bg-about.webp);
}

/*===========================
sp
===========================*/
.about-desc.ly--column {
  flex-direction: column;
  z-index: 1;
}
.about-desc.ly--column .aboutDescText--top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 56px;
}
.about-desc.ly--column .aboutDescText--top .about-desc-text {
  position: relative;
  background-color: #2C85BB;
  width: 420px;
  height: 420px;
  border-radius: 210px;
  text-align: center;
  color: #FFFFFF;
  justify-content: center;
  margin-right: 56px;
}
.about-desc.ly--column .aboutDescText--top .about-desc-text::before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: -20px;
  border: 20px solid transparent;
  border-left: 60px solid #2C85BB;
  transform: rotate(35deg);
}
.about-desc.ly--column .aboutDescText--top .about-desc-text .about-desc-ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem); /*20-24px*/
}
.about-desc.ly--column .aboutDescText--top .about-desc-text .about-desc-count {
  color: #FFFFFF;
}
.about-desc.ly--column .aboutDescText--top .about-desc-text .notice {
  color: #FFFFFF;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .about-desc.ly--column {
    padding: 40px 16px;
  }
  .about-desc.ly--column .aboutDescText--top {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .about-desc.ly--column .aboutDescText--top .about-desc-text {
    width: 280px;
    height: 280px;
    margin-right: 0;
    margin-bottom: 56px;
  }
  .about-desc.ly--column .aboutDescText--top .about-desc-text::before {
    bottom: -40px;
    right: initial;
    left: 50%;
    border: 15px solid transparent;
    border-top: 35px solid #2C85BB;
    transform: translateX(-50%);
  }
  .about-desc.ly--column .aboutDescText--top .about-desc-text .notice {
    width: 70%;
  }
  .about-desc.ly--column .aboutDescText--top .about-desc-img {
    margin-bottom: 0;
  }
}
.logoDesc__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logoDesc__item:not(:last-child) {
  flex-direction: row-reverse;
  margin-bottom: 96px;
}
.logoDesc__item:not(:last-child) .pageSectionTitle {
  text-align: left;
  margin-bottom: 24px;
}
.logoDesc__item:not(:last-child) .pageSectionTitle .pageSectionTitle__en {
  color: #2C2F77;
}

.logoDesc__text {
  flex: 1;
}

.logoDesc__img {
  width: 470px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .logoDesc__item {
    flex-direction: column;
    position: relative;
  }
  .logoDesc__item:not(:last-child) {
    flex-direction: column;
    margin-bottom: 0;
  }
  .logoDesc__item:not(:last-child) .pageSectionTitle {
    position: absolute;
    top: 0;
  }
  .logoDesc__img {
    width: 80%;
    margin: 0 auto;
  }
  .logoDesc__img:first-child {
    width: 100%;
    margin-top: 16%;
  }
}
.sec__company .pageSectionTitle {
  margin-bottom: 56px;
}

.company__table {
  max-width: 800px;
}

.company__table--row {
  border-bottom: 1px solid #999999;
  padding: 24px 16px;
}
.company__table--row:first-child {
  border-top: 1px solid #999999;
}
.company__table--row:nth-child(2) .company__table--cell {
  display: flex;
}

.company__table--head {
  color: #2C2F77;
  font-size: 0.875rem; /*14px*/
  font-weight: 700;
  margin-bottom: 24px;
}

.pageSectionTitle__desc {
  font-size: 1rem;
}

.sec__company .icon-map {
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  background-color: #2C2F77;
  border-radius: 30px;
  padding: 2px 16px;
  margin-left: 16px;
}
.sec__company .icon-map::before {
  content: "";
  width: 15px;
  height: 18px;
  display: block;
  background-image: url(../../img/common/icon-map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 4px;
}
.sec__company .banner {
  margin-top: 56px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__company .pageSectionTitle {
    margin-bottom: 40px;
  }
  .company__table--row {
    padding: 24px 16px;
  }
  .company__table--row:nth-child(2) .company__table--cell {
    display: block;
  }
  .company__table--head {
    margin-bottom: 8px;
  }
  .sec__company .icon-map {
    margin-left: 0;
    margin-top: 8px;
  }
  .sec__company .banner {
    margin-top: 24px;
  }
}
/*ビジネス*/
#pageBusiness .kv-sub {
  background-image: url(../../img/sub-bg/bg-business.webp);
}

#pageBusinessAc .kv-sub {
  background-image: url(../../img/sub-bg/bg-acquisitions.webp);
}

#pageBusinessAs .kv-sub {
  background-image: url(../../img/sub-bg/bg-assignment.webp);
}

#pageBusinessMandA .kv-sub {
  background-image: url(../../img/sub-bg/bg-manda.webp);
}

/* ================================================
共通の3ビジネス
================================================ */
.commonBussiness .btn {
  display: block;
  margin: 60px auto 120px;
}
.commonBussiness .btn a {
  padding: 15px 50px;
  border-radius: 50px;
}

.commonBussiness .pageSectionTitle {
  margin-bottom: 80px;
}
.commonBussiness .pageSectionTitle .pageSectionTitle__en {
  margin-bottom: 30px;
}

.cando__item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 1;
}
.cando__item:not(:last-child) {
  margin-bottom: 30px;
}

.cando__title {
  color: #2C85BB;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cando__text {
  text-align: center;
}

.cando__notice {
  text-align: right;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .commonBussiness .btn {
    margin: 30px auto 50px;
  }
  .commonBussiness .pageSectionTitle {
    margin-bottom: 40px;
  }
  .commonBussiness .pageSectionTitle .pageSectionTitle__en {
    margin-bottom: 20px;
    font-size: 38px;
    letter-spacing: 0.05em;
  }
  .cando__item {
    padding: 20px;
    position: relative;
    z-index: 1;
  }
  .cando__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .cando__title {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: left;
  }
  .cando__text {
    text-align: left;
  }
}
section.business {
  padding-bottom: 200px;
  overflow: hidden;
}
section.business .contents--half {
  width: 50%;
}
section.business .contents--flex {
  display: flex;
}
section.business .contents--flex::after {
  content: "";
  width: 50%;
  height: 480px;
  background-image: url(../../img/business/business-intro.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  position: absolute;
  left: 55%;
  top: -30%;
}
section.business .business__intro .heading--main {
  color: #FFFFFF;
  font-size: 2rem; /*24px*/
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  z-index: 1;
}
section.business .business__intro .heading--main::before {
  content: "";
  width: 50vw;
  height: calc(2rem + 48px);
  background-color: #2C85BB;
  border-radius: 0 50px 50px 0;
  position: absolute;
  left: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
}
section.business .business__intro .heading--sub {
  color: #2C85BB;
  font-size: 1.25rem; /*20px*/
  margin-bottom: 24px;
}

.merit__list {
  display: flex;
  justify-content: space-between;
  margin-top: 160px;
}

.merit__item {
  width: 48%;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  z-index: 1;
}

.merit__title {
  color: #2C85BB;
  font-size: 1.5rem; /*24px*/
  margin-bottom: 8px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  section.business {
    padding-bottom: 96px;
    /*背景のあしらい*/
  }
  section.business .contents--half {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  section.business .contents--flex {
    flex-direction: column;
  }
  section.business .contents--flex::after {
    display: none;
  }
  section.business .business__intro .heading--main {
    font-size: 1.25rem; /*20px*/
    margin-bottom: 20px;
  }
  section.business .business__intro .heading--main::before {
    width: 80%;
    height: calc(1.25rem + 40px);
  }
  section.business .business__intro .contents--half {
    display: flex;
    flex-direction: column;
  }
  section.business .business__intro .contents--half::after {
    content: "";
    width: 100%;
    height: 210px;
    display: block;
    background-image: url(../../img/business/business-intro.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    order: 2;
    margin-bottom: 24px;
  }
  section.business .business__intro .heading--sub {
    font-size: 1.125rem; /*18px*/
    margin-bottom: 0;
    order: 1;
  }
  section.business .business__intro .business__intro__text {
    order: 3;
  }
  .merit__list {
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .merit__item {
    width: 100%;
    padding: 16px;
  }
  .merit__item:first-child {
    margin-bottom: 16px;
  }
  .merit__title {
    font-size: 1.125rem; /*18px*/
  }
}
/* ===========================
流れ
=========================== */
.flow .pageSectionTitle {
  margin-bottom: 56px;
}

.flow__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 40px;
  /*間のドット*/
}
.flow__item::before, .flow__item::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: 90px;
}
.flow__item::before {
  bottom: -70px;
}
.flow__item::after {
  bottom: -100px;
}
.flow__item:nth-child(1) {
  margin-bottom: 15%;
}
.flow__item:nth-child(1)::before, .flow__item:nth-child(1)::after {
  background-color: #2C85BB;
}
.flow__item:nth-child(1) .flow__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow__item:nth-child(2) {
  margin-bottom: 15%;
}
.flow__item:nth-child(2)::before, .flow__item:nth-child(2)::after {
  background-color: #2C2F77;
}
.flow__item:nth-child(2) .flow__ttl {
  background-color: #4672B5;
}
.flow__item:nth-child(3) .flow__ttl {
  background-color: #2C2F77;
}

.flow__ttl {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2C85BB;
  color: #FFFFFF;
  font-size: clamp(1.125rem, 0.713rem + 2.06vw, 2rem); /*18-24px*/
  position: absolute;
  left: 0;
}

.flow__inner {
  background-color: #FFFFFF;
  padding: 20px 40px 20px 140px;
  border-radius: 8px;
  width: 90%;
}
.flow__inner .notice {
  font-size: 0.75rem; /*12px*/
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.flow__inner .btn {
  width: 34%;
}
.flow__inner--left {
  flex: 1;
}
.flow__inner--left ul {
  display: flex;
  flex-wrap: wrap;
}
.flow__inner--left ul li {
  width: 10em;
}
.flow__inner--left ul li:nth-child(odd) {
  width: calc(100% - 10em);
}
.flow__inner--left ul li::before {
  content: "・";
}

.flow__innerList {
  display: flex;
  justify-content: space-between;
}
.flow__innerList .flow__innerItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 16px;
  background-color: #EDE2CD;
  text-align: center;
  border-radius: 8px;
  width: 30%;
  min-height: 5em;
}
.flow__innerList .flow__innerItem:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2C2F77;
  border-right: 2px solid #2C2F77;
  transform: rotate(45deg);
  position: absolute;
  right: -10%;
}

.textLink {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #2C85BB;
  text-decoration: underline;
  font-size: 0.875rem; /*14px*/
}
.textLink::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2C85BB;
  border-right: 2px solid #2C85BB;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .flow .pageSectionTitle {
    margin-bottom: 56px;
  }
  .flow__item {
    position: relative;
    align-items: flex-start;
    margin-bottom: 16px;
    /*間のドット*/
  }
  .flow__item::before, .flow__item::after {
    width: 8px;
    height: 8px;
    left: 55%;
  }
  .flow__item::before {
    bottom: -20px;
  }
  .flow__item::after {
    bottom: -35px;
  }
  .flow__item:nth-child(1) {
    margin-bottom: 15%;
  }
  .flow__item:nth-child(1) .flow__inner {
    flex-direction: column;
  }
  .flow__ttl {
    width: 40px;
    border-radius: 8px 0 0 8px;
    text-align: center;
  }
  .flow__inner {
    padding: 16px;
    border-radius: 0 8px 8px 0;
    width: calc(100% - 40px);
  }
  .flow__inner .btn {
    width: 100%;
  }
  .flow__inner--left {
    margin-bottom: 16px;
  }
  .flow__inner--left ul {
    margin-bottom: 8px;
  }
  .flow__inner--left ul li {
    width: 100%;
  }
  .flow__inner--left ul li:nth-child(odd) {
    width: 100%;
  }
  .flow__innerList {
    flex-direction: column;
  }
  .flow__innerList .flow__innerItem {
    width: 100%;
  }
  .flow__innerList .flow__innerItem:not(:last-child) {
    margin-bottom: 30px;
  }
  .flow__innerList .flow__innerItem:not(:last-child)::after {
    right: initial;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%) rotate(135deg);
  }
}
/* ===========================
強み
=========================== */
.strengths {
  overflow: hidden;
}

.strengths__item {
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.strengths__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 70%;
  padding-top: 53%;
  background-image: url(../../img/business/strengths-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) scale(-1, 1);
}
.strengths__item:nth-child(even) {
  flex-direction: row-reverse;
}
.strengths__item:nth-child(even)::before {
  top: 50%;
  right: initial;
  left: 0;
  transform: translateY(-50%);
}
.strengths__item:nth-child(even) .strengths__text {
  padding: 0 24px 0 60px;
}
.strengths__item .strengths__img {
  max-width: 460px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.strengths__item .strengths__text {
  padding: 0 60px 0 24px;
  flex: 1;
  position: relative;
}
.strengths__item .strengths__text .heading {
  font-size: 1.5rem; /*24px*/
  color: #2C85BB;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 150%;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .strengths__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 100px 0 24px;
  }
  .strengths__item::before {
    top: 0;
    right: 60%;
    width: 200%;
    padding-top: 170%;
    transform: translateX(50%) scale(-1, 1);
  }
  .strengths__item:nth-child(even) {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .strengths__item:nth-child(even)::before {
    top: 0;
    left: 50%;
    transform: translateX(-40%);
  }
  .strengths__item:nth-child(even) .strengths__text {
    padding: 0;
  }
  .strengths__item:nth-child(even) .strengths__text .heading {
    text-align: left;
  }
  .strengths__item:nth-child(3) .strengths__text {
    margin-top: 24px;
  }
  .strengths__item:nth-child(4) .strengths__text {
    margin-top: 24px;
  }
  .strengths__item .strengths__img {
    width: 80%;
  }
  .strengths__item .strengths__text {
    padding: 0;
    margin-bottom: 24px;
  }
  .strengths__item .strengths__text .heading {
    font-size: 1.125rem; /*18px*/
    margin-bottom: 16px;
    text-align: right;
  }
}
.sec__bussinessIntro {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}
.sec__bussinessIntro::before, .sec__bussinessIntro::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
.sec__bussinessIntro::after {
  width: 350px;
  height: 380px;
}
.sec__bussinessIntro::before {
  width: 400px;
  height: 380px;
}
.sec__bussinessIntro-ma::before {
  background-image: url(../../img/business/manda-left-bg.webp);
}
.sec__bussinessIntro-ma::after {
  background-image: url(../../img/business/manda-right-bg.webp);
}
.sec__bussinessIntro .inner {
  text-align: center;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem); /*18-24*/
  position: relative;
  color: #2C2F77;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.bussinessIntro__title {
  font-size: 36px;
  font-weight: 700;
}

.bussinessIntro__text {
  font-weight: 700;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__bussinessIntro {
    display: block;
    margin-top: 20px;
  }
  .sec__bussinessIntro::before, .sec__bussinessIntro::after {
    position: absolute;
  }
  .sec__bussinessIntro::after {
    height: 180px;
    width: 100%;
    background-position: right;
    top: 0;
  }
  .sec__bussinessIntro::before {
    height: 200px;
    width: 100%;
    bottom: 0;
  }
  .sec__bussinessIntro-ma::before {
    background-image: url(../../img/business/manda-left-bg_sp.webp);
  }
  .sec__bussinessIntro-ma::after {
    background-image: url(../../img/business/manda-right-bg_sp.webp);
  }
  .sec__bussinessIntro .inner {
    padding: 100px 20px;
    gap: 15px;
    z-index: 1;
  }
  .bussinessIntro__title {
    font-size: 24px;
  }
}
.business__message {
  margin-bottom: 100px;
}
.business__message .wrapper {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #2C85BB;
  border-radius: 10px;
  padding: 80px 50px 50px;
}
.business__message-ac .wrapper {
  max-width: 900px;
  padding-top: 50px;
}
.business__message-ac .bussinessMessage__title {
  font-size: 1.5rem;
  width: 70%;
  padding: 5px 30px;
}
.business__message-aq .wrapper {
  padding-top: 50px;
}
.business__message-aq .bussinessMessage__title {
  font-size: 1.25rem;
  width: 75%;
  padding: 5px 30px;
  top: -20px;
}
.business__message .bussinessMessage__img {
  margin-top: 30px;
}

.bussinessMessage__title {
  background-color: #2C85BB;
  color: #FFFFFF;
  text-align: center;
  border-radius: 50px;
  padding: 10px 40px;
  line-height: 1.6;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}

.bussinessMessage__list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #999999;
  margin-bottom: 20px;
}

.bussinessMessage__item {
  width: 50%;
  padding: 8px 1rem;
  border-top: 1px dotted #999999;
}
.bussinessMessage__item:nth-child(4) {
  border-bottom: 1px dotted #999999;
}

.bussinessMessage__text-center {
  text-align: center;
  color: #2C85BB;
  font-weight: 700;
  font-size: 1.5rem;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .business__message {
    margin-bottom: 0;
  }
  .business__message .wrapper {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 80px 20px 30px;
  }
  .business__message-ac .wrapper {
    padding-top: 50px;
  }
  .business__message-ac .bussinessMessage__title {
    font-size: 1rem;
    width: 90%;
    border-radius: 10px;
  }
  .business__message-aq .wrapper {
    padding-top: 90px;
  }
  .business__message-aq .bussinessMessage__title {
    font-size: 1rem;
    width: 90%;
    border-radius: 10px;
  }
  .bussinessMessage__title {
    padding: 10px 20px;
    width: 90%;
  }
  .bussinessMessage__list {
    flex-direction: column;
  }
  .bussinessMessage__item {
    width: 100%;
  }
  .bussinessMessage__item:nth-child(4) {
    border-bottom: none;
  }
  .bussinessMessage__text-center {
    font-size: 1rem;
  }
}
.business__price {
  margin-top: 100px;
}

.bussinessPrice__title {
  text-align: center;
  color: #2C85BB;
  border-top: 2px solid #2C85BB;
  border-bottom: 2px solid #2C85BB;
  padding: 15px;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 50px;
}
.bussinessPrice__title span {
  display: block;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  margin-bottom: 10px;
}

.bussinessPrice__text {
  text-align: center;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  margin-bottom: 50px;
}

.price__wrapper {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 40px;
}

.price__largeWrap {
  display: flex;
  gap: 4%;
  margin-bottom: 50px;
}
.price__largeWrap .priceLarge__item {
  width: 48%;
}
.price__largeWrap .priceLarge__item-full {
  width: 100%;
}
.price__largeWrap .priceLarge__title {
  color: #2C85BB;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 10px;
}

.priceLarge__table .priceLarge__tableRow {
  display: flex;
  border-bottom: 1px dotted #666666;
  padding: 5px 10px;
}
.priceLarge__table .priceLarge__tableRow-head {
  background-color: #2C85BB;
  color: #FFFFFF;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  padding: 2px 10px;
}
.priceLarge__table .priceLarge__tableRow dt {
  width: 30%;
}
.priceLarge__table .priceLarge__tableRow dd span {
  font-size: 0.6em;
  vertical-align: baseline;
}
.priceLarge__table .priceLarge__tableRow dd:nth-child(2) {
  width: 50%;
}
.priceLarge__table .priceLarge__tableRow dd:nth-child(3) {
  width: 20%;
}
.priceLarge__table p {
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  font-weight: 500;
  margin-top: 5px;
}
.priceLarge__table-v2 .priceLarge__tableRow dt {
  width: 40%;
}
.priceLarge__table-v2 .priceLarge__tableRow dd:nth-child(2) {
  width: 35%;
}
.priceLarge__table-v2 .priceLarge__tableRow dd:nth-child(3) {
  width: 35%;
}

.price__smallWrap {
  border: 1px solid #999999;
  padding: 20px;
  margin-bottom: 10px;
}

.priceSmall__contents {
  display: flex;
  align-items: flex-start;
}
.priceSmall__contents:first-child {
  margin-bottom: 30px;
}

.priceSmall__title {
  background-color: #999999;
  color: #FFFFFF;
  font-size: 12px;
  width: 6em;
  padding: 4px 6px;
  text-align: center;
  margin-right: 16px;
}

.priceSmall__list {
  flex: 1;
}

.priceSmall__item {
  display: flex;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.priceSmall__cell {
  width: 45%;
}

.priceSmall__cell-border {
  display: flex;
  align-items: center;
}
.priceSmall__cell-border::before {
  content: "";
  width: 30px;
  height: 1px;
  margin-right: 15px;
  background-color: #666666;
  display: block;
}

.priceSmall__cell-dotted::before {
  content: "・・・";
  margin-right: 15px;
}

.priceSmall__item-inner {
  display: flex;
  align-items: center;
}
.priceSmall__item-inner .inner {
  border-right: 1px solid #999999;
  padding: 5px 16px 5px 0;
  margin-right: 16px;
}

.price__noticeWrap {
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
  font-weight: 400;
}
.price__noticeWrap h5 {
  font-weight: 600;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  margin: 10px 0;
}
.price__noticeWrap p:last-of-type {
  text-align: right;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .business__price {
    margin-top: 60px;
  }
  .bussinessPrice__title {
    padding: 15px 0;
    margin-bottom: 30px;
  }
  .bussinessPrice__text {
    margin-bottom: 30px;
    text-align: left;
  }
  .price__wrapper {
    border-radius: 5px;
    padding: 20px 15px;
  }
  .price__largeWrap {
    flex-direction: column;
  }
  .price__largeWrap .priceLarge__item {
    width: 100%;
  }
  .price__largeWrap .priceLarge__item:first-child {
    margin-bottom: 20px;
  }
  .price__largeWrap .priceLarge__title {
    margin-bottom: 5px;
  }
  .priceLarge__table {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .priceLarge__table .priceLarge__tableRow-head {
    padding: 2px 5px;
  }
  .price__smallWrap {
    overflow-x: scroll;
  }
  .priceSmall__contents {
    flex-direction: column;
    overflow-x: scroll;
    width: -moz-max-content;
    width: max-content;
  }
  .priceSmall__title {
    padding: 2px 4px;
    margin-bottom: 5px;
  }
  .priceSmall__cell {
    width: initial;
  }
  .priceSmall__cell-border {
    font-size: 0.75rem;
  }
  .priceSmall__cell-borderLift {
    font-size: 0.75rem;
  }
  .price__noticeWrap p:last-of-type {
    margin-top: 15px;
  }
}
/*採用*/
#pageRecruit .kv-sub {
  background-image: url(../../img/sub-bg/bg-recruit.webp);
  min-height: 500px;
}
#pageRecruit .page-ttl {
  justify-content: flex-end;
  margin-bottom: 8%;
}
#pageRecruit .pageSectionTitle {
  margin-bottom: 64px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #pageRecruit .kv-sub {
    background-image: url(../../img/sub-bg/bg-recruit_sp.webp);
    min-height: 280px;
  }
  #pageRecruit .pageSectionTitle {
    margin-bottom: 48px;
  }
}
.sec__recruiIntro {
  text-align: center;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem); /*18-24*/
  margin: 80px 0;
  position: relative;
}
.sec__recruiIntro::before {
  content: "";
  width: 400px;
  height: 380px;
  background-image: url(../../img/recruit/recruit-intro-left-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  position: absolute;
  left: 0;
  top: 0;
}
.sec__recruiIntro::after {
  content: "";
  width: 350px;
  height: 380px;
  background-image: url(../../img/recruit/recruit-intro-right-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  position: absolute;
  right: 0;
  top: 0;
}
.sec__recruiIntro p {
  position: relative;
  padding: 115px 0 80px;
  color: #2C2F77;
  font-weight: 700;
  z-index: 1;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__recruiIntro {
    margin: 40px 0;
  }
  .sec__recruiIntro::before {
    content: "";
    width: 278px;
    height: 277px;
    background-image: url(../../img/recruit/recruit-intro-left-bg_sp.webp);
    top: initial;
    bottom: 0;
  }
  .sec__recruiIntro::after {
    width: 214px;
    height: 226px;
    background-image: url(../../img/recruit/recruit-intro-right-bg_sp.webp);
    background-position: top right;
  }
  .sec__recruiIntro p {
    padding: 90px 0 120px;
    letter-spacing: 0.05em;
  }
}
.value__item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.value__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.value__item:not(:last-child) {
  margin-bottom: 56px;
}

.value__img {
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
}

.value__text {
  flex: 1;
}
.value__text h3 {
  color: #2C85BB;
  font-size: 24px;
  margin-bottom: 16px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .value__item {
    flex-direction: column;
    gap: 16px;
  }
  .value__item:nth-child(odd) {
    flex-direction: column;
  }
  .value__text h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.sec__demand {
  position: relative;
}
.sec__demand::before {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 85.75%;
  top: 0;
  left: 0;
  background-image: url(../../img/recruit/recruit-demand-top-bg.webp);
  background-repeat: no-repeat;
  background-size: 60% auto;
  background-position: top left;
}
.sec__demand::after {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 80.08%;
  bottom: 0;
  right: 0;
  background-image: url(../../img/recruit/recruit-demand-bottom-bg.webp);
  background-repeat: no-repeat;
  background-size: 35% auto;
  background-position: bottom right;
}
.sec__demand .pageSectionTitle {
  margin-left: 0;
  text-align: left;
  color: #FFFFFF;
}
.sec__demand .pageSectionTitle .pageSectionTitle__en {
  color: #FFFFFF;
}

.demand__item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  width: 80%;
  margin-left: 20%;
  z-index: 1;
}
.demand__item::before {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 8px;
  width: 85%;
  height: 85%;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.demand__item:not(:nth-child(even)) {
  flex-direction: row;
  margin-left: 0;
}
.demand__item:not(:nth-child(even)) .demand__text {
  padding: 0 40px 20px 16px;
}
.demand__item:not(:nth-child(even))::before {
  left: initial;
  right: 0;
}
.demand__item:not(:last-child) {
  margin-bottom: 24px;
}

.demand__img {
  z-index: 1;
  max-width: 220px;
}

.demand__text {
  z-index: 1;
  flex: 1;
  padding: 0 0 24px 40px;
}
.demand__text h3 {
  color: #2C2F77;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem); /*20-24*/
  margin-bottom: 8px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__demand::before {
    background-size: 90% auto;
  }
  .sec__demand::after {
    background-size: 50% auto;
  }
  .sec__demand .pageSectionTitle {
    margin-bottom: 24px !important;
  }
  .demand__item {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
  .demand__item::before {
    width: 100%;
  }
  .demand__item:not(:nth-child(even)) {
    flex-direction: column;
    align-items: flex-start;
  }
  .demand__item:not(:nth-child(even)) .demand__img {
    margin-right: initial;
    margin-left: -20px;
  }
  .demand__item:not(:nth-child(even)) .demand__text {
    padding: 16px;
  }
  .demand__item:not(:nth-child(even)) .demand__text h3 {
    top: 28%;
    left: 45%;
  }
  .demand__img {
    max-width: 140px;
    margin-right: -20px;
  }
  .demand__text {
    padding: 16px;
  }
  .demand__text h3 {
    position: absolute;
    top: 28%;
    left: 20px;
  }
}
.dataByside__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dataByside__item {
  width: calc((100% - 40px) / 3);
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.dataByside__item .dataByside__item--heading {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem); /*14-18*/
  line-height: 150%;
}
.dataByside__item:nth-child(2) .dataByside__img {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.dataByside__item .dataByside__img {
  max-width: 140px;
  margin: 16px auto;
}
.dataByside__item .dataByside__item--data {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem); /*16-20*/
}
.dataByside__item .dataByside__item--data .font-en {
  font-size: clamp(2.5rem, 1.955rem + 2.73vw, 4rem); /*40-64*/
}
.dataByside__item .dataByside__item--data .font-en span {
  font-size: 0.75em;
  padding-right: 5px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__data .pageSectionTitle__en {
    letter-spacing: 0.05em;
  }
  .dataByside__item {
    width: 48%;
    padding: 16px;
  }
  .dataByside__item:nth-child(1), .dataByside__item:nth-child(2) {
    width: 100%;
  }
}
.sec__movie {
  background-image: url(../../img/recruit/recruit-movie-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.recruit__movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 8px solid #FFFFFF;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .recruit__movie iframe {
    border-width: 4px;
  }
}
.interview__item {
  display: flex;
}
.interview__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.interview__item:nth-child(odd) .interviewImg__item {
  margin-right: 0;
  margin-left: 64px;
  display: flex;
  justify-content: flex-end;
}
.interview__item:nth-child(odd) .interviewImg__text {
  left: 0;
  right: initial;
  top: 0;
}
.interview__item:not(:last-child) {
  margin-bottom: 96px;
}
.interview__item .interviewImg__item {
  max-width: 425px;
  width: 100%;
  margin-right: 64px;
  position: relative;
}

.interviewImg__img {
  max-width: 350px;
  width: 100%;
}

.interviewImg__text {
  background-color: #2C85BB;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  color: #FFFFFF;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.interviewImg__text .interviewText__team {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.interviewImg__text .interviewText__name {
  font-size: clamp(1.125rem, 0.949rem + 0.88vw, 1.5rem); /*18-24*/
}

.interviewFaq__list {
  flex: 1;
}

.interviewFaq__item {
  border-bottom: 1px solid #999999;
  font-size: 0.875rem; /*14px*/
  padding: 16px 0;
}
.interviewFaq__item .interviewFaq__item--question {
  color: #2C2F77;
  margin-bottom: 16px;
  font-weight: 600;
  display: flex;
}
.interviewFaq__item .interviewFaq__item--question::before {
  content: "Q.";
  font-family: "Bree Serif", serif;
  font-size: clamp(1.125rem, 1.066rem + 0.29vw, 1.25rem); /*18-20*/
  margin-right: 0.5em;
  line-height: 130%;
}
.interviewFaq__item .interviewFaq__item--answer {
  display: flex;
}
.interviewFaq__item .interviewFaq__item--answer::before {
  content: "A.";
  font-family: "Bree Serif", serif;
  font-size: clamp(1.125rem, 1.066rem + 0.29vw, 1.25rem); /*18-20*/
  margin-right: 0.5em;
  line-height: 130%;
}

/*===========================
tb
===========================*/
@media screen and (max-width: 768px) {
  .interview__item {
    flex-direction: column;
    align-items: center;
  }
  .interview__item:nth-child(odd) {
    flex-direction: column;
  }
  .interview__item:nth-child(odd) .interviewImg__item {
    margin-left: 0;
  }
  .interview__item .interviewImg__item {
    margin-right: 0;
  }
  .interviewImg__img {
    width: 240px;
    margin-bottom: 24px;
  }
  .interviewImg__text {
    width: 150px;
    height: 150px;
  }
  .interviewImg__text .interviewText__team {
    margin-bottom: 8px;
  }
}
.benefits__list {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 50px;
  z-index: 1;
}

.benefits__item {
  width: calc((100% - 100px) / 3);
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}
.benefits__item .benefits__item--heading {
  color: #2C85BB;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem); /*18-20*/
}
.benefits__item .benefits__img {
  max-width: 100px;
  margin: 16px 0;
}
.benefits__item .benefits__item--data {
  font-size: 0.875rem; /*14px*/
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .benefits__item {
    position: relative;
    width: 100%;
    padding: 24px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .benefits__item .benefits__item--heading {
    padding-left: 90px;
    line-height: 140%;
    margin-bottom: 8px;
  }
  .benefits__item .benefits__img {
    max-width: 70px;
    order: 1;
    position: absolute;
    left: 24px;
    top: 8px;
  }
  .benefits__item .benefits__item--data {
    padding-left: 90px;
  }
}
.sec__message .wrapper {
  display: flex;
  align-items: center;
  background-image: url(../../img/recruit/recruit-message-bg.webp);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: right;
}
.sec__message .message__img {
  max-width: 400px;
}
.sec__message .message__text {
  flex: 1;
  padding-left: 40px;
}
.sec__message .message__text .pageSectionTitle {
  margin-bottom: 24px !important;
  text-align: left;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__message .wrapper {
    flex-direction: column;
    background-image: url(../../img/recruit/recruit-message-bg_sp.webp);
    background-size: auto 85%;
    background-position: bottom left -70px;
  }
  .sec__message .message__img {
    width: 80%;
    margin-top: 40%;
    margin-bottom: 40px;
  }
  .sec__message .message__text {
    padding-left: 0;
  }
  .sec__message .message__text .pageSectionTitle {
    position: absolute;
    top: 0;
  }
}
.sec__entry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(206, 185, 147, 0.3);
}

.entry__table {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
}
.entry__table .table__row {
  border-top: 1px dashed #2C2F77;
  padding: 24px;
  display: flex;
}
.entry__table .table__row:last-child {
  border-bottom: 1px dashed #2C2F77;
}
.entry__table .table__head {
  color: #2C85BB;
  font-size: 0.875rem;
  width: 200px;
}
.entry__table .table__cell {
  flex: 1;
  padding-left: 24px;
}

#recruitBtn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3em;
  padding-top: 56px;
}
#recruitBtn .recruit__title {
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
#recruitBtn .recruit__title::before {
  content: "";
  width: 35%;
  height: 1px;
  background-color: #333;
  display: block;
}
#recruitBtn .recruit__title::after {
  content: "";
  width: 35%;
  height: 1px;
  background-color: #333;
  display: block;
}
#recruitBtn .send-btn {
  width: 40%;
}
#recruitBtn .send-btn a {
  display: block;
  color: #FFFFFF;
  background-color: #B9A459;
  line-height: 80px;
  border: none;
  font-size: 1.375rem; /*22px*/
  font-weight: bold;
  border-radius: 50px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .entry__table {
    padding: 16px;
  }
  .entry__table .table__row {
    padding: 16px 8px 24px;
    flex-direction: column;
  }
  .entry__table .table__row:first-child {
    border-top: none;
  }
  .entry__table .table__row:last-child {
    border-bottom: none;
  }
  .entry__table .table__head {
    font-size: 0.75rem;
    width: 100%;
    margin-bottom: 16px;
  }
  .entry__table .table__cell {
    padding-left: 0;
  }
  #recruitBtn {
    gap: initial;
    justify-content: space-around;
    padding-top: 20px;
  }
  #recruitBtn .recruit__title {
    font-size: 18px;
    padding: 0;
    margin-bottom: 15px;
  }
  #recruitBtn .recruit__title::before {
    content: "";
    width: 20%;
    height: 1px;
    background-color: #333;
    display: block;
  }
  #recruitBtn .recruit__title::after {
    content: "";
    width: 20%;
    height: 1px;
    background-color: #333;
    display: block;
  }
  #recruitBtn .send-btn {
    width: 45%;
  }
  #recruitBtn .send-btn a {
    line-height: 50px;
    font-size: 1rem;
  }
}
/*メンバー*/
#pageMember {
  overflow: hidden;
}
#pageMember .kv-sub {
  background-image: url(../../img/sub-bg/bg-member.webp);
}

.member__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 4%;
  margin-bottom: 80px;
}

.member__item {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.member__item a {
  display: block;
}
.member__item a:hover {
  opacity: 1;
}
.member__item:nth-child(2n) {
  margin-top: 96px;
}

.memberImage__inner {
  position: relative;
  width: 100%;
}

.memberImage__inner01 {
  transition: opacity 0.5s;
  position: relative;
  z-index: 1;
}

.memberImage__inner02 {
  z-index: 1;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.memberImage__inner:hover .memberImage__inner01 {
  opacity: 0;
}

.memberImage__inner:hover .memberImage__inner02 {
  opacity: 1;
}

.object__main {
  position: absolute;
  top: 0;
}

/*1つめ*/
.member__item:nth-child(3n+1) .object02,
.member__item:nth-child(3n+1) .object03 {
  display: none;
}

.member__item:nth-child(3n+1) .memberImage__inner--img {
  left: -12%;
}

.member__item:nth-child(3n+1) .memberImage__inner {
  -webkit-clip-path: url(#clip01);
          clip-path: url(#clip01);
}

/*2つめ*/
.member__item:nth-child(3n+2) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.member__item:nth-child(3n+2) .object01,
.member__item:nth-child(3n+2) .object03 {
  display: none;
}

.member__item:nth-child(3n+2) .memberImage__inner--img {
  left: 20%;
}

.member__item:nth-child(3n+2) .memberImage__inner {
  -webkit-clip-path: url(#clip02);
          clip-path: url(#clip02);
}

/*3つめ*/
.member__item:nth-child(3n+3) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.member__item:nth-child(3n+3) .object02,
.member__item:nth-child(3n+3) .object01 {
  display: none;
}

.member__item:nth-child(3n+3) .memberImage__inner--img {
  left: 20%;
}

.member__item:nth-child(3n+3) .memberImage__inner {
  -webkit-clip-path: url(#clip03);
          clip-path: url(#clip03); /* clipPath 要素の id を参照 */
}

/*名前*/
.member__item .member__name {
  color: #FFFFFF;
  padding: 2.8rem 25px;
  position: absolute;
  width: 280px;
  z-index: 1;
}
.member__item .member__name::before {
  content: "";
  width: 100%;
  padding-top: 52.5423%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.member__item .member__name::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  position: absolute;
  right: 6%;
  top: 45%;
}
.member__item .member__name dt {
  font-size: 0.75rem; /*12*/
  line-height: 1.5;
}
.member__item .member__name dd {
  font-size: clamp(1.125rem, 1.066rem + 0.29vw, 1.25rem); /*18-20*/
}
.member__item:nth-child(3n+1) .member__name {
  right: 0%;
  top: 70px;
}
.member__item:nth-child(3n+1) .member__name::before {
  background-image: url(../../img/member/name-blue.svg);
}
.member__item:nth-child(3n+2) .member__name {
  left: -16%;
  top: 80px;
}
.member__item:nth-child(3n+2) .member__name::before {
  background-image: url(../../img/member/name-lightblue.svg);
}
.member__item:nth-child(3n+3) .member__name {
  left: -16%;
  top: 80px;
}
.member__item:nth-child(3n+3) .member__name::before {
  background-image: url(../../img/member/name-navy.svg);
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #pageMember .wrapper {
    padding: 0 16px;
  }
  #pageMember svg {
    width: 100%;
    height: auto;
  }
  .member__list {
    margin-bottom: 24px;
  }
  .member__item {
    margin-bottom: 32px;
    overflow: hidden;
  }
  .member__item:nth-child(2n) {
    margin-top: 0;
  }
  .object__main {
    width: 80%;
  }
  .memberImage__inner--img {
    width: 80%;
  }
  /*2つめ*/
  .member__item:nth-child(3n+2) .memberImage__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  /*3つめ*/
  .member__item:nth-child(3n+3) .memberImage__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  /*名前*/
  .member__item {
    text-align: center;
  }
  .member__item .member__name {
    max-width: 190px;
    padding: 2.8rem 10px;
  }
  .member__item .member__name::before {
    border-radius: 50%;
    padding-top: 100%;
    background-image: none;
  }
  .member__item .member__name::after {
    position: absolute;
    right: initial;
    left: 50%;
    top: initial;
    bottom: 15px;
    transform: translateX(-50%) rotate(45deg);
  }
  .member__item:nth-child(3n+1) .member__name {
    top: 20px;
  }
  .member__item:nth-child(3n+1) .member__name::before {
    background-image: none;
    background-color: #2C85BB;
  }
  .member__item:nth-child(3n+2) .member__name {
    left: 0;
    top: 20px;
  }
  .member__item:nth-child(3n+2) .member__name::before {
    background-image: none;
    background-color: #4672B5;
  }
  .member__item:nth-child(3n+3) .member__name {
    left: 0;
    top: 20px;
  }
  .member__item:nth-child(3n+3) .member__name::before {
    background-image: none;
    background-color: #2C2F77;
  }
}
.kv__member .wrapper {
  display: flex;
  align-items: center;
  padding-top: 100px;
  justify-content: center;
}
.kv__member .memberKv__img {
  width: 30%;
  padding-top: 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 40% bottom;
  margin-right: 56px;
}
.kv__member .memberKv__text {
  color: #FFFFFF;
}
.kv__member .memberKv__text .memberKv__text--ttl {
  font-family: "Zen Kurenaido", sans-serif;
  line-height: 150%;
  font-size: clamp(1.125rem, 0.3rem + 3.52vw, 2.5rem); /*18-40*/
  -webkit-text-stroke: 1px #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: 0.025em;
}
.kv__member .memberKv__text .memberKv__text--name {
  font-size: clamp(1rem, 0.7rem + 1.28vw, 1.5rem); /*16-24*/
  margin-bottom: 8px;
}
.kv__member .memberKv__text .memberKv__text--en {
  font-size: clamp(0.625rem, 0.55rem + 0.32vw, 0.75rem); /*10-12*/
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .kv__member .wrapper {
    padding: 60px 8px 0;
    justify-content: flex-start;
  }
  .kv__member .memberKv__img {
    padding-top: 56%;
    width: 40%;
    background-position: left 70% bottom;
    margin-right: 0;
  }
  .kv__member .memberKv__text {
    flex: 1;
    position: absolute;
    width: 60%;
    top: 42%;
    left: 38%;
  }
  .kv__member .memberKv__text .memberKv__text--ttl {
    margin-bottom: 10px;
  }
  .kv__member .memberKv__text .memberKv__text--name {
    margin-bottom: 0;
  }
}
.memberInterview__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}
.memberInterview__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.memberInterview__item .memberInterview__img {
  width: 50%;
  max-width: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.memberInterview__item .memberInterview__text {
  flex: 1;
}
.memberInterview__item .memberInterview__text h3 {
  color: #2C2F77;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem); /*18-24*/
  border-left: 6px solid #2C2F77;
  padding: 8px 24px;
  margin-bottom: 32px;
  font-weight: 600;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .memberInterview__item {
    gap: 24px;
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .memberInterview__item:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
  .memberInterview__item .memberInterview__img {
    width: 100%;
  }
  .memberInterview__item .memberInterview__text h3 {
    border-width: 4px;
    padding: 4px 16px;
    margin-bottom: 16px;
  }
}
.otherInterview__heading {
  background: rgba(206, 185, 147, 0.3);
  display: inline-block;
  padding: 8px 32px 0 32px;
  border-radius: 8px 8px 0 0;
  color: #2C2F77;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem); /*14-18*/
}

.otherInterview__list {
  background: rgba(206, 185, 147, 0.3);
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  border-radius: 0 8px 8px 8px;
}
.otherInterview__list .otherInterview__item {
  width: 32%;
}
.otherInterview__list .otherInterview__item a {
  display: flex !important;
  color: #333333;
}
.otherInterview__list .otherInterview__item .otherInterview__img {
  width: 45%;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  background-color: #2C85BB;
  padding-top: 10px;
}
.otherInterview__list .otherInterview__item .otherInterview__text {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 0 8px 8px 0;
  padding: 16px;
}
.otherInterview__list .otherInterview__item .otherInterview__text dt {
  font-size: 0.75rem; /*2px*/
  color: #2C2F77;
}
.otherInterview__list .otherInterview__item .otherInterview__text dd {
  font-size: 1.125rem; /*18px*/
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .otherInterview__wrapper {
    padding: 0;
  }
  .otherInterview__heading {
    padding: 8px 16px 0 16px;
    border-radius: 0 8px 0 0;
  }
  .otherInterview__list {
    padding: 16px 0;
    border-radius: 0;
  }
}
.schedule__wrap {
  margin-bottom: 80px;
}
.schedule__wrap .wrapper {
  padding-top: 72px;
  padding-bottom: 72px;
  border-radius: 8px;
}
.schedule__wrap .schedule__heading {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 1.35rem + 0.64vw, 1.75rem); /*24-28*/
  text-align: center;
  margin-bottom: 40px;
}
.schedule__wrap .schedule__item {
  display: flex;
  border-radius: 8px;
  background-color: #FFFFFF;
  padding: 24px 24px;
}
.schedule__wrap .schedule__item:not(:last-child) {
  margin-bottom: 24px;
}
.schedule__wrap .schedule__time {
  color: #2C85BB;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.05rem + 1.92vw, 2.25rem); /*24-36*/
  width: 20%;
  margin-right: 24px;
}
.schedule__wrap .schedule__time span {
  font-family: "Zen Maru Gothic", serif !important;
  font-weight: 600;
  font-size: 0.75em;
  padding-bottom: 0.05em;
  padding-left: 0.2em;
  display: inline-block;
}
.schedule__wrap .schedule__inner {
  flex: 1;
}
.schedule__wrap .schedule__innerHeading {
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem); /*18-20*/
  margin-bottom: 8px;
  font-weight: 700;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .schedule__wrap {
    margin-bottom: 40px;
  }
  .schedule__wrap .wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
    border-radius: 0;
  }
  .schedule__wrap .schedule__heading {
    margin-bottom: 24px;
  }
  .schedule__wrap .schedule__item {
    padding: 24px 16px;
  }
  .schedule__wrap .schedule__item--leader {
    flex-direction: column;
  }
  .schedule__wrap .schedule__time {
    padding-top: 2px;
  }
  .schedule__wrap .schedule__time--leader {
    width: 100%;
    margin-bottom: 0.25em;
  }
  .schedule__wrap .schedule__innerHeading {
    margin-bottom: 10px;
  }
}
/*お客様の声*/
#pageVoice .kv-sub {
  background-image: url(../../img/sub-bg/bg-voice.webp);
}

.voiceTitle {
  color: #FFFFFF;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem); /*18-20*/
  padding: 8px 24px;
  border-radius: 8px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .voiceTitle {
    border-radius: 4px;
  }
}
.voice__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.voice__item {
  width: 32%;
  margin-bottom: 40px;
}
.voice__item a {
  display: block;
}
.voice__item:not(:nth-child(3n)) {
  margin-right: 2%;
}
.voice__item .voice__img {
  aspect-ratio: 32/21;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background-color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.voice__item .voice__inner {
  position: relative;
  background-color: #FFFFFF;
  padding: 30px 16px 16px;
  border-radius: 0 0 8px 8px;
}
.voice__item .voice__inner .voice__neme {
  color: #2C2F77;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}
.voice__item .voice__inner .voice__neme-small {
  color: #2C2F77;
  font-weight: 700;
  margin-bottom: 8px;
}
.voice__item .voice__inner .voice__row {
  font-size: 0.875rem; /*14px*/
}
.voice__item .voice__inner .voice__text {
  color: #333333;
  min-height: 5.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
}
.voice__item .voice__inner .voice__link {
  position: relative;
  color: #B9A459;
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem; /*12px*/
  padding-right: 1em;
}
.voice__item .voice__inner .voice__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #B9A459;
  border-right: 1px solid #B9A459;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 2px;
}
.voice__item .voice__inner .voice__label {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  top: -70px;
  right: 0;
  letter-spacing: 0;
  line-height: 60px;
}

/*===============================
共通
===============================*/
/*ラベル*/
.voice__label {
  color: #FFFFFF;
  font-size: 0.875rem; /*14px*/
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 0 16px;
  display: inline-block;
}
.voice__label--joto {
  background-color: #2C2F77;
}
.voice__label--kaitori {
  background-color: #2C85BB;
}

/*職業・株価*/
.voice__row dt {
  border-bottom: 2px solid #2C85BB;
  color: #2C85BB;
  margin-bottom: 0.5rem;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .voice__list {
    width: 100vw;
    margin: 24px calc(50% - 50vw) 0;
  }
}
.voice__movie {
  margin-bottom: 56px;
}
.voice__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  padding: 0 24px;
  border-radius: 8px;
}

.voiceInterview__item:not(:last-child) {
  margin-bottom: 56px;
}
.voiceInterview__item .voice__answer {
  padding: 24px 24px 0;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .voice__movie {
    margin-bottom: 40px;
  }
  .voice__movie iframe {
    padding: 0;
  }
  .voiceInterview__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .voiceInterview__item .voice__answer {
    padding: 16px 0 0;
  }
}
.voice__intro {
  display: flex;
  margin-bottom: 80px;
}
.voice__intro .voiceIntro__img {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 50/33;
  border-radius: 8px;
  margin-right: 56px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.voice__intro .voiceIntro__inner {
  flex: 1;
}
.voice__intro .voiceIntro__inner .voice__label {
  color: #FFFFFF;
  font-size: 0.875rem; /*14px*/
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 0 16px;
  display: inline-block;
}
.voice__intro .voiceIntro__inner .voice__label--joto {
  background-color: #2C2F77;
}
.voice__intro .voiceIntro__inner .voice__label--kaitori {
  background-color: #2C85BB;
}
.voice__intro .voiceIntro__inner .voice__neme {
  font-size: 1.5rem; /*24px*/
  font-weight: 700;
}
.voice__intro .voiceIntro__inner .voice__neme-small {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .voice__intro {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .voice__intro .voiceIntro__img {
    margin: 40px 0 16px;
  }
  .voice__intro .voiceIntro__inner .voice__label {
    position: absolute;
    top: 0;
    left: 24px;
  }
}
.voice__pager {
  border-top: 1px solid #2C2F77;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.voice__pager .voicePager__item a {
  position: relative;
  display: block;
  border: 1px solid #2C2F77;
  border-radius: 50px;
  min-width: 160px;
  color: #2C2F77;
  padding: 8px;
  text-align: center;
}
.voice__pager .voicePager__item--next {
  order: 3;
}
.voice__pager .voicePager__item--next a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #2C2F77;
  border-right: 2px solid #2C2F77;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 24px;
}
.voice__pager .voicePager__item--back {
  order: 1;
}
.voice__pager .voicePager__item--back a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #2C2F77;
  border-right: 2px solid #2C2F77;
  transform: translateY(-50%) rotate(225deg);
  position: absolute;
  top: 50%;
  left: 24px;
}
.voice__pager .voicePager__item--list {
  order: 2;
}
.voice__pager .voicePager__item--list a {
  background-color: #2C2F77;
  color: #FFFFFF;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .voice__pager {
    padding-top: 24px;
    gap: 8px;
  }
  .voice__pager .voicePager__item a {
    min-width: 100px;
    padding: 8px;
  }
  .voice__pager .voicePager__item--next a::before {
    width: 5px;
    height: 5px;
    left: 16px;
  }
  .voice__pager .voicePager__item--back a::before {
    width: 5px;
    height: 5px;
    top: 50%;
    right: 16px;
  }
}
/*他*/
#pageFaq .kv-sub {
  background-image: url(../../img/sub-bg/bg-faq.webp);
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem); /*14-18*/
}

.faq__item {
  border-radius: 8px;
  padding: 24px;
}
.faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.faq__item__question {
  position: relative;
  display: flex;
  color: #FFFFFF;
  padding: 0 2em;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem); /*16-18*/
  cursor: pointer;
}
.faq__item__question::before {
  content: "Q.";
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem); /*20-24px*/
  font-family: "Bree Serif", serif;
  position: absolute;
  top: -5px;
  left: 0;
}
.faq__item__question::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 5px;
}

.faq__item.active .faq__item__question::after {
  content: "ー";
}

.faq__item__answer {
  background-color: #FFFFFF;
  border-radius: 8px;
  font-size: 0.875rem; /*14px*/
  padding: 0 24px;
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

.faq__item.active .faq__item__answer {
  height: auto;
  padding: 24px 24px;
  margin-top: 24px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .faq__header {
    text-align: left;
    margin-bottom: 24px;
  }
  .faq__item {
    padding: 16px 8px 8px;
  }
  .faq__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
#pageFaq .kv-sub {
  background-image: url(../../img/sub-bg/bg-faq.webp);
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem); /*14-18*/
}

.faq__item {
  border-radius: 8px;
  padding: 24px;
}
.faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.faq__item__question {
  position: relative;
  display: flex;
  color: #FFFFFF;
  padding: 0 2em;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem); /*16-18*/
  cursor: pointer;
}
.faq__item__question::before {
  content: "Q.";
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem); /*20-24px*/
  font-family: "Bree Serif", serif;
  position: absolute;
  top: -5px;
  left: 0;
}
.faq__item__question::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 5px;
}

.faq__item.active .faq__item__question::after {
  content: "ー";
}

.faq__item__answer {
  background-color: #FFFFFF;
  border-radius: 8px;
  font-size: 0.875rem; /*14px*/
  padding: 0 24px;
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

.faq__item.active .faq__item__answer {
  height: auto;
  padding: 24px 24px;
  margin-top: 24px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .faq__header {
    text-align: left;
    margin-bottom: 24px;
  }
  .faq__item {
    padding: 16px 8px 8px;
  }
  .faq__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
#pageNews .kv-sub {
  background-image: url(../../img/sub-bg/bg-news.webp);
}

.news {
  display: flex;
  justify-content: space-between;
}

.news__main {
  max-width: 620px;
  width: 100%;
}

.news__list {
  border-top: 1px solid #999999;
  margin-bottom: 56px;
}

.news__item {
  padding: 16px;
  border-bottom: 1px solid #999999;
  display: flex;
}

.news__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
  color: #2C2F77;
  font-size: 14px;
  margin-right: 24px;
}
.news__date span {
  font-size: 50px;
}

.news__text {
  flex: 1;
  padding-top: 16px;
}
.news__text a {
  text-decoration: underline;
  color: #2C85BB;
}

.sidebar {
  width: 240px;
}
.sidebar__title {
  color: #FFFFFF;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  font-size: 1.25rem; /*20px*/
}
.sidebar li {
  border-bottom: 1px solid #999999;
}
.sidebar li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333333;
  padding: 16px;
}
.sidebar li a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2C2F77;
  border-right: 2px solid #2C2F77;
  transform: rotate(45deg);
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .news {
    flex-direction: column;
  }
  .news__list {
    margin-bottom: 24px;
  }
  .sidebar {
    width: 100%;
    margin-top: 56px;
  }
}
#contact .kv-sub {
  background-image: url(../../img/sub-bg/bg-contact.webp);
}
#contact .wrapper {
  width: min(100%, 800px);
}
#contact .list-flex {
  display: flex;
  border-bottom: 1px dotted #666666;
  padding: 2rem 0;
}
#contact .list-flex:first-child {
  border-top: 1px dotted #666666;
}
#contact .list-flex:not(:last-child) {
  margin-bottom: 0;
}
#contact .list-flex dt {
  width: 35%;
  padding-top: 0.3rem;
}
#contact .list-flex dd {
  flex: 1;
}
#contact .notice {
  font-size: 12px;
  font-weight: 400;
  padding: 40px 0;
}
#contact .notice a {
  color: #333333;
  text-decoration: underline;
  padding: 0 4px;
}

.intro-text {
  background-color: #FFFFFF;
  text-align: center;
  padding: 24px;
  margin-bottom: 56px;
  font-weight: 500;
}
.intro-text span {
  font-weight: 700;
}
.intro-text a {
  color: #2C85BB;
  text-decoration: underline;
  padding: 0 8px;
}

.icon-require {
  background-color: #E76C5B;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 1rem;
}

.icon-any {
  background-color: #666666;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 1rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.send-btn {
  text-align: center;
}

input[type=submit] {
  color: #FFFFFF;
  background-color: #B9A459;
  line-height: 80px;
  padding: 0 40px;
  border: none;
  font-size: 1.375rem; /*22px*/
  font-weight: bold;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #contact .list-flex {
    flex-direction: column;
    padding: 1rem 0;
  }
  #contact .list-flex dt {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  #contact .list-flex dd {
    width: 100%;
  }
  .intro-text {
    text-align: left;
    padding: 16px;
    margin-bottom: 24px;
  }
  .icon-require {
    border-radius: 4px;
    padding: 2px 8px;
  }
  .icon-any {
    border-radius: 4px;
    padding: 2px 8px;
  }
  input[type=submit] {
    line-height: 60px;
    font-size: 18px;
    border-radius: 50px;
  }
}
#thanks .kv-sub {
  background-image: url(../../img/sub-bg/bg-thanks.webp);
}
#thanks .wrapper {
  width: min(100%, 800px);
  text-align: center;
}
#thanks .wrapper p {
  font-size: 18px;
  font-weight: 700;
}
#thanks .btn {
  margin-top: 100px;
  width: 300px;
}
#thanks .btn a {
  display: block;
  text-align: center;
  line-height: 60px;
  padding: 0 40px;
  font-size: 1.375rem; /*22px*/
  border-radius: 50px;
}
#thanks .btn a::after {
  width: 10px;
  height: 10px;
  border-width: 3px;
  right: 36px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  #thanks .btn a {
    line-height: 60px;
    font-size: 18px;
    width: 100%;
  }
}
#privacy .kv-sub {
  background-image: url(../../img/sub-bg/bg-privacy.webp);
}

.privacypolicy_lead {
  margin-bottom: 5em;
}

.privacypolicy_contents:not(:last-child) {
  margin-bottom: 56px;
}

.privacypolicy_main-ttl {
  font-size: 20px;
  color: #2C2F77;
  padding-bottom: 8px;
  border-bottom: 2px solid #2C2F77;
  margin-bottom: 8px;
}

.privacypolicy_bracketsTitle {
  margin-bottom: 0.5em;
}

.privacypolicy_bracketsDescription {
  font-weight: 400;
  margin-bottom: 2em;
}

.privacypolicy_listDescription {
  font-weight: 400;
}

li.privacypolicy_item {
  list-style: none;
}
li.privacypolicy_item:not(:last-child) {
  margin-bottom: 2em;
}
li.privacypolicy_item .privacypolicy_bracketsList {
  padding-left: 1em;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .privacypolicy_lead {
    text-align: left;
    margin-bottom: 2em;
  }
}
#guidline .kv-sub {
  background-image: url(../../img/sub-bg/bg-privacy.webp);
}

.guidline-lead {
  margin-bottom: 5em;
  text-align: center;
}

.guidline-contents:not(:last-child) {
  margin-bottom: 80px;
}
.guidline-contents h2 {
  background-color: #2C85BB;
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 20px;
  margin-bottom: 24px;
}
.guidline-contents h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.guidline-contents .guidline-contents-desc {
  margin-bottom: 40px;
}
.guidline-contents a {
  color: #2C85BB;
  text-decoration: underline;
  word-wrap: break-word;
}

.attempt:not(:last-child) {
  margin-bottom: 16px;
}

.attempt__box {
  border-spacing: 6px 0px;
  border-collapse: separate;
}

.attempt__head {
  color: #FFFFFF;
  background-color: #2C85BB;
  padding: 8px 1em;
}

.attempt__data {
  width: 50%;
  font-weight: normal;
  border-bottom: 3px solid #FAF4E9;
  background-color: #FFFFFF;
  text-align: left;
  padding: 24px;
  vertical-align: baseline;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .guidline-lead {
    text-align: left;
    margin-bottom: 2em;
  }
  .attempt__data {
    width: 100%;
  }
  .guidline-contents:not(:last-child) {
    margin-bottom: 56px;
  }
  .guidline-contents h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .guidline-contents h3 {
    font-size: 16px;
  }
  .attempt__head {
    width: 50%;
    padding: 16px;
    line-height: 150%;
    text-align: left;
  }
  .attempt__data {
    width: 50%;
    font-size: 12px;
    padding: 8px 16px;
  }
  .attempt__box {
    border-spacing: 3px 0px;
  }
}/*# sourceMappingURL=style.css.map */