@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

body.fixed {
  overflow: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 62.5%;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media (min-width: 900px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.6;
}

/* img */
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catch {
  font-family: "Outfit", sans-serif;
}

/*
-----------------------------------
共通
-----------------------------------
*/
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.inner {
  padding: 0 20px;
}

.flex {
  display: flex;
}

.flex.one {
  justify-content: center;
}

/*アニメーション*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.--delay200 {
  animation-delay: 0.2s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeUp {
  opacity: 0;
}

/*ボタン*/
.btn {
  width: 100%;
  max-width: 335px;
  height: 100px;
}

@media (max-width: 375px) {
  .btn {
    max-width: 300px;
  }
}
.btn a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: #EDA23B;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.7777777778;
  font-weight: bold;
  position: relative;
}
.btn a span {
  width: 18px;
  height: 12px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.btn a span:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center/contain url(../images/ico_arrow.svg);
}

.plus {
  width: 34px;
  height: 34px;
  position: relative;
  margin: 20px auto;
}

.plus::before,
.plus::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.plus::before {
  top: 50%;
  left: 0;
}

.plus::after {
  top: 50%;
  left: 0;
  transform: rotate(90deg);
}

.appeal {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  margin: auto;
  font-weight: bold;
}

.appeal::before,
.appeal::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.2rem;
  width: 1px;
  height: 1.8em;
  background-color: #fff;
}

.appeal::before {
  left: 0;
  transform: rotate(-30deg);
}

.appeal::after {
  right: 0;
  transform: rotate(30deg);
}

.attention {
  color: #8c8c8c;
}

.flex__item {
  width: 100%;
}

.flex__img {
  aspect-ratio: 158/158;
  border-radius: 10px;
  margin-bottom: 10px;
}

.flex__name {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flex__name span {
  font-size: 0.625rem;
}

.flex__item .attention {
  font-size: 0.625rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.flex__detail {
  font-size: 0.625rem;
  line-height: 2;
  font-weight: 500;
}

.bigImg {
  aspect-ratio: 375/250;
}

/*
-----------------------------------
LP本体
-----------------------------------
*/
main {
  display: flex;
}

.pcMv {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #EFCFDE;
}
.pcMv:before {
  content: "";
  width: 100%;
  height: 71%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: repeat-x left bottom/contain url(../images/bg_mv.png);
}
.pcMv .btn {
  max-width: 460px;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pcMv .btn a {
  font-size: 1.8rem;
  border-radius: 10px 10px 0 0;
}
.pcMv--logo {
  width: 165px;
  height: 30px;
  position: absolute;
  top: 4%;
  left: 6%;
}
.pcMv--catch {
  position: relative;
}
.pcMv--catch img {
  width: 83.33%;
  height: 43%;
  margin: 12% auto 40px;
}
@media (max-height: 768px) {
  .pcMv--catch img {
    width: 70%;
    height: auto;
    margin: 5% auto 40px;
  }
}
.pcMv__catch02 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 9.722vw;
  position: relative;
  background-color: #fff;
}
@media (max-height: 768px) {
  .pcMv__catch02 {
    height: 8vw;
  }
}
.pcMv__catch02--image01 {
  width: 15.104vw;
  height: 15.104vw;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}
@media (max-height: 768px) {
  .pcMv__catch02--image01 {
    width: 10.875vw;
    height: 10.875vw;
  }
}
.pcMv__catch02--image01 .text {
  width: 15.104vw;
  height: 15.104vw;
  animation: rotation 30s linear infinite;
}
@media (max-height: 768px) {
  .pcMv__catch02--image01 .text {
    width: 10.875vw;
    height: 10.875vw;
  }
}
@keyframes rotation {
  to {
    transform: rotate(1turn);
  }
}
.pcMv__catch02--image01 .image {
  width: 11.806vw;
  height: 11.806vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-height: 768px) {
  .pcMv__catch02--image01 .image {
    width: 8.5vw;
    height: 8.5vw;
  }
}
.pcMv__catch02--image02 {
  width: 18.056vw;
  height: 5.903vw;
  margin-left: 23%;
}
@media (max-width: 900px) {
  .pcMv {
    display: none;
  }
}

/*
-----------------------------------
SPコンテンツ
-----------------------------------
*/
.main__content {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 1;
  background-color: #399FCF;
  overflow: hidden;
}
.main__content:before, .main__content:after {
  content: "";
  width: 1.9rem;
  height: 100%;
  position: fixed;
  top: 40px;
  left: 52.8%;
  background: repeat-y center top/contain url(../images/line_fair.png);
}
.main__content:after {
  top: -40px;
  left: auto;
  right: 2.8%;
}
@media (max-width: 900px) {
  .main__content:before, .main__content:after {
    display: none;
  }
}
.main__content--inner {
  width: 38rem;
  margin: auto;
  padding: 3.4375rem 0;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  position: relative;
  z-index: 100;
}
.main__content--frame {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}
.main__content--frame:before, .main__content--frame:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 38rem;
  height: 3.4375rem;
  background-color: #399FCF;
  transition: background-color 500ms;
}
.main__content--frame:before {
  top: 0;
  border-bottom: 2px solid #fff;
}
.main__content--frame:after {
  bottom: 0;
  border-top: 2px solid #fff;
}

@media (max-width: 1440px) {
  .main__content {
    min-width: 375px;
  }
}
@media (max-width: 900px) {
  .main__content {
    width: 100%;
    min-width: auto;
    margin: 0;
    overflow-x: hidden;
  }
  .main__content--inner {
    width: 100%;
    padding: 0;
    border-left: none;
    border-right: none;
  }
  .main__content--frame {
    width: 100%;
  }
  .main__content--frame:before, .main__content--frame:after {
    display: none;
  }
}
.loop--text {
  display: flex;
}
.loop--text span {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 6.4rem;
  line-height: 1;
  padding-right: 0.4em;
}
.loop--text span:nth-child(odd) {
  animation: loop 24s -12s infinite linear;
}
.loop--text span:nth-child(even) {
  animation: loop2 24s infinite linear;
}

@keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*
-----------------------------------
mv
-----------------------------------
*/
.mv {
  height: 670px;
  padding: 20px;
  background: no-repeat center top/cover url(../images/bg_spmv.png);
  overflow: hidden;
  position: relative;
}
@media (max-width: 900px) {
  .mv {
    height: 176.316vw;
  }
}
.mv--logo {
  width: 90px;
  height: 16px;
}
@media (max-width: 900px) {
  .mv--logo {
    width: 23.684vw;
    height: 4.211vw;
  }
}
.mv--image {
  width: 310px;
  height: 272px;
  margin: 24px auto 0;
  animation: mvimg01 both 1s;
  animation-delay: 0.4s;
}
@media (max-width: 900px) {
  .mv--image {
    width: 81.579vw;
    height: 71.579vw;
  }
}
@keyframes mvimg01 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv__text {
  animation: mvimg02 both 1s;
  animation-delay: 1.8s;
}
.mv__text img {
  width: 10px;
  height: 191px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mv__text--01 {
  left: 10px;
}
.mv__text--02 {
  right: 10px;
}
@keyframes mvimg02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv__photo {
  position: relative;
  margin: 0 auto;
}
.mv__photo .animated {
  width: 230px;
  height: 160px;
  position: absolute;
}
@media (max-width: 900px) {
  .mv__photo .animated {
    width: 60.526vw;
    height: 42.105vw;
  }
}
.mv__photo .animated.--01 {
  animation: fadein01 0.8s ease-in-out 1.2s both;
  transform-origin: center center;
  top: 50px;
  left: 50px;
  z-index: 3;
}
@media (max-width: 900px) {
  .mv__photo .animated.--01 {
    top: 13.158vw;
    left: 13.158vw;
  }
}
.mv__photo .animated.--02 {
  animation: fadein02 0.8s ease-in-out 1.2s both;
  transform-origin: center center;
  top: 105px;
  left: -20px;
  z-index: 2;
}
@media (max-width: 900px) {
  .mv__photo .animated.--02 {
    top: 27.632vw;
    left: -5.263vw;
  }
}
.mv__photo .animated.--03 {
  animation: fadein03 0.8s ease-in-out 1.2s both;
  transform-origin: center center;
  top: 135px;
  right: -20px;
  z-index: 1;
}
@media (max-width: 900px) {
  .mv__photo .animated.--03 {
    top: 35.526vw;
    right: -5.263vw;
  }
}
@keyframes animation01 {
  0% {
    animation-timing-function: linear;
    transform: translate(0px, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(0px, 0px) scale(1, 1) rotate(7deg) skew(0deg, 0deg);
  }
}
@keyframes animation02 {
  0% {
    animation-timing-function: linear;
    transform: translate(0px, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(0px, 0px) scale(1, 1) rotate(-8deg) skew(0deg, 0deg);
  }
}
@keyframes animation03 {
  0% {
    animation-timing-function: linear;
    transform: translate(0px, 0px) scale(1, 1) rotate(0deg) skew(0deg, 0deg);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(0px, 0px) scale(1, 1) rotate(15deg) skew(0deg, 0deg);
  }
}
@keyframes fadein01 {
  0% {
    opacity: 0;
    transform: translateY(80px) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(7deg);
  }
}
@keyframes fadein02 {
  0% {
    opacity: 0;
    transform: translateY(80px) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-8deg);
  }
}
@keyframes fadein03 {
  0% {
    opacity: 0;
    transform: translateY(80px) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(15deg);
  }
}

/*
-----------------------------------
special
-----------------------------------
*/
.special {
  background-color: #E4B5CB;
  padding: 25px 0 20px;
}
.special .inner {
  padding: 0 10px;
}
.special .special__title {
  color: #fff;
  padding: 1.125rem;
  text-align: center;
}
.special .special__box.--01 {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 20px 45px;
  margin: 0 auto 40px;
}
.special .special__box.--02 {
  width: 100%;
  height: auto;
  padding: 20px 20px 30px;
  margin-bottom: 30px;
  border: 2px #fff solid;
  border-radius: 10px;
  position: relative;
}
.special .special__box--item.--02 {
  margin: 15px auto 20px;
}
.special .special__box--title {
  width: 55%;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  background-color: #E4B5CB;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.special .special__box--title:before, .special .special__box--title:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
}
.special .special__box--title:after {
  left: auto;
  right: 0;
}
.special .special__box--image {
  margin: 0 auto 15px;
}
.special .special__box--image img {
  border-radius: 10px;
}
.special .special__box--text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.special .btn {
  margin: auto;
}
.special .btn a {
  color: #292929;
  font-size: 1.6rem;
  background-color: #fff;
  border-radius: 10px;
  height: 60px;
}
.special .btn a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
  width: 30px;
  height: 30px;
  background: no-repeat center/contain url(../images/question.png);
}
.special .btn a span:before {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
}

/*
-----------------------------------
cv
-----------------------------------
*/
.cv {
  padding: 45px 0 60px;
  background: #399ECF no-repeat center 142px/contain url(../images/bg_cv.png);
  overflow-x: hidden;
}
.cv--title {
  width: 301px;
  margin-left: 20px;
  padding-bottom: 35px;
}
.cv--title img {
  height: auto;
}
@media (max-width: 900px) {
  .cv--title {
    width: 79.211vw;
    margin-left: 5.263vw;
  }
}
.cv .swiper-container {
  width: 100%;
  margin: 40px 0 75px;
  padding: 45px 0;
}
.cv .swiper-slide {
  overflow: hidden;
  transition: 0.7s;
}
.cv .swiper-slide img {
  width: 100%;
  border-radius: 10px;
}
.cv .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.5);
}
.cv .btn {
  width: 340px;
  height: 60px;
  margin: 0 auto;
}
.cv .btn a {
  border-radius: 10px;
  box-shadow: 10px 10px 0px rgb(29, 136, 187);
}

/*
-----------------------------------
契約
-----------------------------------
*/
.contruct {
  background-color: #fff;
  padding: 50px 10px;
  overflow: hidden;
}
.contruct .loop--text {
  color: #399FCF;
  margin-bottom: 30px;
}
.contruct__free {
  width: 95%;
  margin: 0 auto 20px;
}
.contruct__top {
  width: 100%;
  height: auto;
  padding: 40px 20px 20px;
  margin-bottom: 30px;
  border: 2px #DADADA solid;
  border-radius: 10px;
  position: relative;
}
.contruct__top--title {
  width: 55%;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  background-color: #fff;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.contruct__top--title:before, .contruct__top--title:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #DADADA;
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
}
.contruct__top--title:after {
  left: auto;
  right: 0;
}
.contruct__top .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
.contruct__top .flex > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 90px;
  text-align: center;
  background-color: #399ECF;
  border-radius: 10px;
}
.contruct__top .flex > div p {
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.contruct__top .flex > div:nth-child(1) {
  margin-bottom: 54px;
  position: relative;
}
.contruct__top .flex > div:nth-child(1) p {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  padding-left: 42px;
  position: relative;
}
.contruct__top .flex > div:nth-child(1) p:before {
  content: "1";
  width: 32px;
  height: 32px;
  color: #399ECF;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  background-color: #fff;
  border: 1px #399ECF solid;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contruct__top .flex > div:nth-child(1):after {
  content: "";
  width: 26px;
  height: 26px;
  background: no-repeat center/contain url(../images/plus.png);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.contruct__top .flex > div:nth-child(2), .contruct__top .flex > div:nth-child(3) {
  width: 47%;
  height: 70px;
  position: relative;
}
.contruct__top .flex > div:nth-child(2):before, .contruct__top .flex > div:nth-child(3):before {
  width: 24px;
  height: 24px;
  color: #3975CF;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  background-color: #fff;
  border: 1px #3975CF solid;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 10px;
}
.contruct__top .flex > div:nth-child(2) p, .contruct__top .flex > div:nth-child(3) p {
  font-size: 1.4rem;
}
.contruct__top .flex > div:nth-child(2) {
  background-color: #3975CF;
}
.contruct__top .flex > div:nth-child(2):before {
  content: "2";
  border: 1px #3975CF solid;
}
.contruct__top .flex > div:nth-child(2):after {
  content: "or";
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}
.contruct__top .flex > div:nth-child(3) {
  background-color: #57BAE9;
}
.contruct__top .flex > div:nth-child(3):before {
  content: "3";
  color: #57BAE9;
  border: 1px #57BAE9 solid;
}
.contruct__top .flex > div:nth-child(3) span {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  margin-top: 10px;
}
.contruct .contruct__item {
  padding: 20px;
  background-color: #BEE3F4;
  border-radius: 10px;
  position: relative;
}
.contruct .contruct__item:before {
  display: block;
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 60px;
  height: 60px;
  background: no-repeat center/contain url(../images/01.png);
  z-index: 10;
}
.contruct .contruct__item.--02 {
  margin-bottom: 40px;
}
.contruct .contruct__item.--02:before {
  background: no-repeat center/contain url(../images/02.png);
}
.contruct .contruct__item.--02:after {
  content: "or";
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.contruct .contruct__item.--02 .contruct__item--desc span.free {
  background-color: #3975CF;
}
.contruct .contruct__item.--02 .contruct__box--title span {
  color: #3975CF;
}
.contruct .contruct__item.--03:before {
  background: no-repeat center/contain url(../images/03.png);
}
.contruct .contruct__item.--plus {
  margin: 15px 0 50px;
  background-color: inherit;
}
.contruct .contruct__item.--plus:before {
  top: auto;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: no-repeat center/contain url(../images/plus.png);
}
.contruct .contruct__item.--plus .plus--title {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 20px;
}
.contruct .contruct__item.--plus .plus--title span {
  color: #399ECF;
}
.contruct .contruct__item--image {
  margin-bottom: 15px;
}
.contruct .contruct__item--image img {
  border-radius: 10px;
}
.contruct .contruct__item--desc {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: bold;
}
.contruct .contruct__item--desc span.free {
  background-color: #2D99D7;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  display: inline-block;
  padding: 5px;
  margin-right: 10px;
}
.contruct .contruct__item--desc span.sub {
  color: #8C8C8C;
  font-size: 1.2rem;
}
.contruct .contruct__item--sub {
  color: #8C8C8C;
  font-size: 1.3rem;
  text-align: center;
  margin: 5px auto 15px;
}
.contruct .contruct__item .contruct__box {
  padding: 30px 20px;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
  letter-spacing: 0.1em;
}
.contruct .contruct__item .contruct__box--title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contruct .contruct__item .contruct__box--title span {
  color: #57BAE9;
}
.contruct .contruct__item .contruct__box--text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
.contruct .contruct__item .contruct__box--sub {
  color: #8C8C8C;
  line-height: 2;
  text-align: left;
  margin: 10px 0 0;
}

/*
-----------------------------------
voice
-----------------------------------
*/
.voice {
  padding: 50px 0 20px;
  background-color: #F6F6F6;
  overflow: hidden;
}
.voice .loop--text {
  color: #EDA23B;
  margin-bottom: 30px;
}
.voice .voice__lead {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
}
.voice .voice__lead span {
  color: #EDA23B;
}
.voice .voice__item {
  margin-bottom: 20px;
}
.voice .voice__item--image {
  position: relative;
}
.voice .voice__item--image .text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.9;
  position: absolute;
  bottom: 30px;
  left: 20px;
}
.voice .voice__item--image:before {
  content: "01";
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 10;
}
.voice .voice__item--image.--02:before {
  content: "02";
}
.voice .voice__item--text {
  font-size: 1.4rem;
  line-height: 2;
  padding: 20px;
}

/*
-----------------------------------
modelhouse
-----------------------------------
*/
.modelhouse {
  padding: 50px 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.modelhouse .loop--text {
  color: #E4B5CB;
  margin-bottom: 30px;
}
.modelhouse .modelhouse__lead {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5vw;
}
.modelhouse .modelhouse__lead span {
  color: #E4B5CB;
}
.modelhouse--title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.modelhouse .movie {
  position: relative;
  margin-bottom: 40px;
}
.modelhouse .movie iframe {
  aspect-ratio: 335/188;
  width: 100%;
  height: auto;
}

.modelhouse::before,
.modelhouse::after {
  display: block;
  content: "";
  position: absolute;
  width: 90%;
  height: 50%;
  z-index: -1;
}

.modelhouse::before {
  top: 6.5vw;
  left: 1.5vw;
  background: no-repeat left top/contain url(../images/bg-leaf02.png);
}
@media (max-width: 900px) {
  .modelhouse::before {
    top: 10%;
  }
}

.modelhouse::after {
  bottom: 0;
  right: 0;
  background: no-repeat right bottom/contain url(../images/bg-leaf03.png);
}

.modelhouse__list {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.modelhouse__list li a {
  display: block;
  color: #fff;
  background-color: #E2A8C3;
  padding: 13px;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*
-----------------------------------
works
-----------------------------------
*/
.works {
  padding: 60px 0 40px;
  background-color: #F6F6F6;
}
.works .works__title {
  color: #399FCF;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 20px;
}
.works .works__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
}
.works .works__fade {
  margin-bottom: 20px;
  position: relative;
}
.works .works__fade:before {
  content: "";
  display: block;
  width: 100px;
  height: 65.5px;
  background: no-repeat center center/contain url(../images/look01.png);
  position: absolute;
  top: -40px;
  left: 20px;
  z-index: 10;
}
.works .works__fade.--02 {
  margin-top: 70px;
}
.works .works__fade.--02:before {
  background: no-repeat center center/contain url(../images/look02.png);
}
.works .works--image {
  margin: 20px;
}
.works .look--title {
  color: #399FCF;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
.works .look--text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}
.works .look--image {
  width: 218px;
  height: auto;
  margin: 20px auto;
}
.works .look--image figure {
  padding: 34px;
  opacity: 0;
  background-color: #399FCF;
}
.works .look--image figure span {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.works .look--image figure span img {
  transform: scale(1.5);
}
.works .look--image.fadeUp figure {
  opacity: 1;
  transition: opacity 800ms;
}
.works .look--image.fadeUp figure span img {
  transform: scale(1);
  transition: transform 3000ms cubic-bezier(0.12, 0, 0.51, 0.94);
}
.works .look--image.--02 {
  display: flex;
  width: 100%;
}
.works .look--image.--02 figure {
  padding: 30px 5px 30px 20px;
}
.works .look--image.--02 figure:nth-child(2) {
  padding: 30px 20px 30px 5px;
}

/*
-----------------------------------
modal
-----------------------------------
*/
.modal-contact {
  position: fixed;
  z-index: 20;
  width: 100%;
  max-width: 560px;
  height: 80vh;
  background: #fff;
  bottom: 0;
  left: 50%;
  color: #242121;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  transition: all 0.4s linear;
  transform: translate(-50%, 100%);
}

.modal-contact.open {
  top: 50%;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
  transform: translate(-50%, -50%);
}

.modal-contact-head {
  height: 70px;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.modal-contact-head_text.blue {
  color: #3674b8;
}

.modal-contact-button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 21px;
  width: 21px;
  height: 21px;
  transition: all 0.4s linear;
}

.modal-contact-button:hover {
  transform: rotate(180deg);
}

.modal-contact-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-contact-content {
  padding: 20px 20px 0px;
  height: calc(80vh - 70px);
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}

.modal-contact-content_inner {
  overflow-y: scroll;
  height: 100%;
}

.modal_title {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 10px;
}

.modal_title span.blue {
  color: #3674b8;
}

.modal_title span.orange {
  color: #f89500;
}

.modal_title em {
  font-style: normal;
  font-family: "Outfit", sans-serif;
}

.modal_text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 30px;
}

.modal_img {
  margin: 20px 0;
}

.modal-contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.modal-contact-background.open {
  opacity: 1;
  visibility: visible;
}

.floating {
  display: block;
  width: 38rem;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.4375rem;
  margin: auto;
  z-index: 10;
  opacity: 0;
  transition: all 0.6s;
}
@media (max-width: 900px) {
  .floating {
    width: 100%;
    bottom: 0;
    right: auto;
  }
}
.floating.btn {
  max-width: 100%;
}
.floating.btn a {
  font-size: 1.8rem;
  pointer-events: auto;
}
.floating.btn a:hover {
  opacity: 1;
}
.floating.active {
  opacity: 1;
}

/*
-----------------------------------
footer
-----------------------------------
*/
#footer {
  background-color: #fff;
}
#footer .f-con-Box {
  text-align: center;
  padding: 50px 0;
  background: #f1f9fb;
}
#footer .f-con-Box .f-logo {
  width: 50%;
  margin: 0 auto 30px;
}
#footer .f-con-Box .f-ttl {
  letter-spacing: 0.2vw;
  font-weight: 700;
  margin-bottom: 0.3vw;
}
#footer .f-con-Box .f-ttl1 {
  font-size: 0.875rem;
  letter-spacing: 0.2vw;
  line-height: 1.8;
}
#footer .copyright {
  font-size: 1.2rem;
  text-align: center;
  padding: 40px 0 60px;
}/*# sourceMappingURL=style.css.map */