@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: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #322424;
}

.inner {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .inner {
    max-width: 100%;
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

@media (max-width: 375px) {
  .btn {
    max-width: 300px;
  }
}
.btn a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: #28334d;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.7777777778;
  font-weight: 600;
  position: relative;
  border-radius: 50px;
}
.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: -webkit-fit-content;
  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: 56.25%;
  height: 100%;
  background: repeat left top/contain url(../images/mv_back.png);
  z-index: 1;
}
.pcMv:before {
  content: "";
  width: 100%;
  height: 264px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: no-repeat left bottom/contain url(../images/mizuhiki-bottom.png);
}
.pcMv:after {
  content: "";
  width: 100%;
  height: 312px;
  position: absolute;
  right: 0;
  top: 0;
  background: no-repeat right top/contain url(../images/mizuhiki-up.png);
  z-index: -1;
}
.pcMv .redBack {
  display: block;
  width: 50%;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  background: no-repeat center/cover url(../images/mv_redBack.png);
}
.pcMv .btn {
  max-width: 330px;
  height: 50px;
  margin: 0 auto;
}
.pcMv .btn a {
  font-size: 1.8rem;
}
.pcMv--logo {
  width: 165px;
  height: 30px;
  position: absolute;
  top: 4%;
  left: 6%;
  z-index: 10;
}
.pcMv--catch {
  width: 100%;
  position: relative;
}
.pcMv--catch img {
  margin: 5% auto 40px;
}
@media (max-height: 768px) {
  .pcMv--catch img {
    margin: 5% auto 40px;
  }
}
.pcMv__catch02 {
  position: relative;
  max-width: 530px;
  width: 71%;
  margin: 0 auto 2vw;
}
.pcMv__catch02 .flower {
  width: 41%;
  position: absolute;
  bottom: -68%;
  right: -17%;
  z-index: 2;
}
@media (max-height: 768px) {
  .pcMv__catch02 .flower {
    width: 10.875vw;
  }
}
@media (max-width: 900px) {
  .pcMv {
    display: none;
  }
}

/*
-----------------------------------
SPコンテンツ
-----------------------------------
*/
.main__content {
  width: 43.75%;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: repeat left top/contain url(../images/mv_back.png);
}
.main__content--inner {
  max-width: 50rem;
  padding: 1.25rem 0;
  position: relative;
  z-index: 100;
}
@media (max-width: 900px) {
  .main__content--inner {
    max-width: 100%;
  }
}
.main__content--frame {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}

@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) {
  -webkit-animation: loop 24s -12s infinite linear;
          animation: loop 24s -12s infinite linear;
}
.loop--text span:nth-child(even) {
  -webkit-animation: loop2 24s infinite linear;
          animation: loop2 24s infinite linear;
}

@-webkit-keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*
-----------------------------------
mv
-----------------------------------
*/
.mv {
  overflow: hidden;
  position: relative;
}
/*
-----------------------------------
special
-----------------------------------
*/
.special {
  background-color: #9c000d;
}
.special .special__title {
  width: 100%;
}
.special .special__box.--01 {
  padding: 40px 20px 45px;
  margin: 0 auto 40px;
}
@media (max-width: 900px) {
  .special .special__box.--01 {
    padding: 30px 0px 13px;
  }
}
.special .special__box.--01 .wrap {
  background-color: #78000a;
  padding: 1px 10px 20px;
  position: relative;
}
.special .special__box.--01 .wrap::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -12px;
  left: -52px;
  width: 151px;
  height: 31px;
  background: no-repeat center/contain url(../images/special-cloud02.png);
}
.special .special__box.--02 {
  width: 100%;
  height: auto;
  padding: 30px 20px 13px;
  margin-bottom: 30px;
  border: 1px rgba(255, 255, 255, 0.3) solid;
  position: relative;
}
.special .special__box--item.--01 {
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}
.special .special__box--item.--01::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -50px;
  right: -58px;
  width: 154px;
  height: 50px;
  background: no-repeat center/contain url(../images/special-cloud.png);
  z-index: 1;
}
.special .special__box--item.--02 {
  margin: 8px auto 20px;
}
.special .special__box--title {
  width: 65%;
  color: #fff;
  background-color: #9c000d;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .special .special__box--title {
    width: 71%;
  }
}
.special .special__box--image {
  margin: 0 auto 13px;
}
.special .special__box--text {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.special .btn {
  margin: auto;
}
.special .btn a {
  color: #9c000d;
  font-size: 1.6rem;
  background-color: #fff;
  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 {
  background-color: #c59d79;
  padding: 0;
  overflow-x: hidden;
}
.cv .cv__top {
  margin-bottom: 40px;
}
.cv .cv__en {
  width: 70%;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .cv .cv__en {
    width: 87%;
  }
}
.cv--title {
  padding: 20px 0 35px;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
.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 70px;
  padding: 45px 0;
}
.cv .swiper-slide {
  overflow: hidden;
  transition: 0.7s;
}
.cv .swiper-slide img {
  width: 94%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cv .swiper-slide img {
    width: 100%;
  }
}
.cv .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.5);
}
.cv .btn {
  width: 340px;
  height: 60px;
  margin: 0 auto 60px;
}
.cv .btn a {
  background-color: #322424;
}

/*
-----------------------------------
契約
-----------------------------------
*/
.contruct {
  background-color: #fff;
  overflow: hidden;
}
.contruct .inner {
  max-width: 36rem;
  padding: 0 10px;
}
@media (max-width: 900px) {
  .contruct .inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
.contruct .contruct-up {
  margin-bottom: 20px;
}
.contruct__free {
  width: 80%;
  margin: 0 auto 20px;
}
@media (max-width: 900px) {
  .contruct__free {
    width: 97%;
  }
}
.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__garaxyz {
  background-color: #C59D79;
  border-top: 4px solid #BE3D3E;
  border-bottom: 4px solid #BE3D3E;
  padding: 10px 0 40px;
  position: relative;
  margin-bottom: 60px;
}
.contruct__garaxyz .inner {
  max-width: 38rem;
}
@media (max-width: 900px) {
  .contruct__garaxyz .inner {
    max-width: 100%;
  }
}
.contruct__garaxyz::before {
  display: block;
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: no-repeat center/cover url(../images/red-flower.png);
}
.contruct .contruct__item {
  padding: 20px 0;
  position: relative;
  margin: 0 auto;
}
.contruct .contruct__item.--02 {
  padding: 20px 20px 30px;
  border: 1px solid #be3d3e;
  width: 98%;
  margin: 0 auto 65px;
}
.contruct .contruct__item.--02:before {
  background: no-repeat center/contain url(../images/02.png);
}
.contruct .contruct__item.--02 .contruct__item--desc span.free {
  color: #be3d3e;
  border: 1px solid #be3d3e;
}
.contruct .contruct__item.--03 .contruct__item--main {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}
.contruct .contruct__item.--03 .contruct__item--point {
  text-align: center;
  padding: 6px 7px;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #A8825F;
  margin-bottom: 20px;
}
.contruct .contruct__item.--03 .contruct__box {
  padding: 20px 20px 30px 20px;
  background-color: #fff;
}
.contruct .contruct__item.--03 .contruct__item--desc span.free {
  display: inline;
  color: #C59D79;
  border: 1px solid #C59D79;
}
.contruct .contruct__item.--03 .contruct__item--sub {
  display: inline;
  padding-left: 0;
  font-size: 1rem;
}
.contruct .contruct__item.--plus {
  margin: 0px auto 50px;
  background-color: inherit;
  position: relative;
}
.contruct .contruct__item.--plus:before {
  content: "";
  position: absolute;
  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;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}
.contruct .contruct__item--image {
  margin-bottom: 15px;
}
.contruct .contruct__item--desc {
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 10px;
}
.contruct .contruct__item--desc span.free {
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  padding: 5px;
  margin-right: 10px;
  color: #be3d3e;
  border: 1px solid #be3d3e;
}
.contruct .contruct__item--desc span.sub {
  color: #8c8c8c;
  font-size: 1.2rem;
}
.contruct .contruct__item--sub {
  color: #8c8c8c;
  font-size: 1.3rem;
  margin: 5px auto 20px;
  padding-left: 6.3rem;
}
.contruct .contruct__item .contruct__box {
  background-color: #fff;
}
.contruct .contruct__item .contruct__box--title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.contruct .contruct__item .contruct__box--text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.contruct .contruct__item .contruct__box--sub {
  color: #8c8c8c;
  line-height: 2;
  text-align: left;
  margin: 10px 0 0;
  letter-spacing: 0.1em;
}

/*
-----------------------------------
voice
-----------------------------------
*/
.voice {
  padding: 0;
  background-color: #f6f6f6;
  overflow: hidden;
}
.voice .voice-title {
  width: 70%;
  margin: 20px auto 10px;
}
@media (max-width: 900px) {
  .voice .voice-title {
    width: 52%;
  }
}
.voice .inner {
  max-width: 41.5rem;
}
@media (max-width: 900px) {
  .voice .inner {
    max-width: 100%;
    padding: 0;
  }
}
.voice .voice__lead {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1vw;
  padding: 10px 0 20px;
}
.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--text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 20px;
}

/*
-----------------------------------
modelhouse
-----------------------------------
*/
.modelhouse {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #f6f6f6;
}
.modelhouse-top {
  width: 81%;
  margin: 0 auto 20px;
}
.modelhouse-top img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.modelhouse .modelhouse__lead {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5vw;
}
.modelhouse--title {
  font-size: 1.6rem;
  font-weight: 600;
  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);
  margin-bottom: 60px;
}
.modelhouse__list li a {
  display: block;
  background-color: #fff;
  border: 1px solid #aaaaaa;
  padding: 13px;
  border-radius: 20px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modelhouse__new .img {
  position: relative;
}
.modelhouse__new .img::before, .modelhouse__new .img::after {
  display: block;
  content: "";
  position: absolute;
}
.modelhouse__new .img::before {
  top: -22px;
  right: -83px;
  width: 154px;
  height: 50px;
  background: no-repeat center/contain url(../images/brown-cloud01.png);
}
@media (max-width: 900px) {
  .modelhouse__new .img::before {
    top: -21px;
    right: -59px;
  }
}
.modelhouse__new .img::after {
  bottom: -22px;
  left: -72px;
  width: 151px;
  height: 31px;
  background: no-repeat center/contain url(../images/brown-cloud02.png);
  z-index: 1;
}
.modelhouse__new .text {
  padding: 30px 20px 40px;
  background-color: #fff;
  position: relative;
}
.modelhouse__new .text::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -17px;
  right: -72px;
  width: 154px;
  height: 50px;
  background: no-repeat center/contain url(../images/brown-cloud03.png);
  z-index: 1;
}
.modelhouse__new .text .title-sub {
  font-size: 14px;
  line-height: 3.1428571429;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-top: 1px solid #322424;
  border-bottom: 1px solid #322424;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.modelhouse__new .text .title {
  font-size: 24px;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.modelhouse__new .text .desc {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

/*
-----------------------------------
works
-----------------------------------
*/
.works {
  padding: 0 0 40px;
  background-color: #fff;
}
@media (max-width: 900px) {
  .works .inner {
    padding: 0;
  }
}
.works .works__title {
  margin: 45px auto 20px;
  width: 77%;
  max-width: 338px;
}
@media (max-width: 900px) {
  .works .works__title {
    width: 62%;
  }
}
.works .works__lead {
  font-size: 2rem;
  font-weight: 600;
  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: 270px;
  height: 50px;
  background: no-repeat center center/contain url(../images/works01.png);
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.works .works__fade.--02 {
  margin-top: 70px;
}
.works .works__fade.--02:before {
  background: no-repeat center center/contain url(../images/works02.png);
}
.works .works--image {
  margin: 20px;
}
.works .look--title {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  color: #5a733a;
  font-weight: 600;
}
.works .look--text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  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: #f6f6f6;
}
.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: 600;
  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: 600;
  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: 21%;
  bottom: 3.4375rem;
  margin: auto;
  z-index: 10;
  opacity: 0;
  transition: all 0.6s;
}
@media (max-width: 900px) {
  .floating {
    width: 100%;
    bottom: 10px;
    left: 0%;
    right: 0;
  }
}
.floating.btn {
  max-width: 90%;
}
.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;
  font-family: "Noto Sans JP", serif !important;
}
#footer .f-con-Box .f-logo {
  width: 40%;
  margin: 0 auto 30px;
}
#footer .f-con-Box .f-ttl {
  letter-spacing: 0.2vw;
  font-weight: 700;
  margin-bottom: 0.3vw;
  font-size: 1.5rem;
}
#footer .f-con-Box .f-ttl1 {
  font-size: 1rem;
  letter-spacing: 0.2vw;
  line-height: 1.5;
  font-weight: bold;
}
#footer .copyright {
  font-family: "Noto Sans JP", serif !important;
  font-size: 1.2rem;
  text-align: center;
  padding: 40px 0 90px;
}/*# sourceMappingURL=style.css.map */