@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* Reset
- デフォルトスタイルの初期化
  - reset用cssはCDNを利用。ress.cssなら box-sizing: border-box; を含む
----------------------------------------------------------------- */
/* 変数
----------------------------------------------------------------- */
/* Function
----------------------------------------------------------------- */
/* Mixin
----------------------------------------------------------------- */
/* --------------------
ブレークポイントを指定
-------------------- */
/* --------------------
mixin
-------------------- */
/* --------------------
media query 使い方
-------------------- */
/* Base
- プロジェクトにおける基本スタイル
----------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

a {
  transition: all 0.3s;
}
a:link, a:visited, a:active {
  color: #003cff;
}
a:hover {
  color: #003cff;
  opacity: 0.85;
}

a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* ==========================================================================
Layout
- header、main、sub、footerなどプロジェクト共通のコンテナブロックを定義
- ページで唯一なので、IDセレクタを使用してもOK
- 大枠のスタイル、構造上のスタイルだけ指定
- max-width、width、position、float、box-sizing…etc.
========================================================================== */
/* Header
----------------------------------------------------------------- */
/* Main
----------------------------------------------------------------- */
/* Sidebar
----------------------------------------------------------------- */
/* Footer
----------------------------------------------------------------- */
/* コンテンツ幅
基本は幅100%だが、大きいモニターだと広すぎなのでmax-widthで制限
----------------------------------------------------------------- */
.l-container {
  width: 100%;
  max-width: 900px;
}

.l-header-container {
  width: 100%;
  max-width: 900px;
}

.l-footer-container {
  width: 100%;
  max-width: 900px;
}

/* ==========================================================================
Object
========================================================================== */
/* Component 
- 再利用できる最低限の機能を持ったコンポーネント
- componentの参考：https://getbootstrap.jp/docs/5.0/components/accordion/
- 見出し、ボタン、表組み、注釈コメント、強調テキスト etc.
- 再利用しやすいように、なるべく固有のサイズや色を持たせないこと
----------------------------------------------------------------- */
/* Button */
/* Media */
/* Project
- プロジェクト固有のスタイルを書いていく
- Block、Elementで構成される（Componentを含むこともある）
- ページを構成する要素はだいたいここに書く
- 繰り返し使うパーツは切り出してComponentに書く
- Componentを少し変更して使いたい場合はここで上書き
----------------------------------------------------------------- */
/* Articles */
/* ヒーローエリア */
.hero {
  background-color: #D70C18;
  position: relative;
  width: 100%;
  height: 226.6vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .hero {
    height: 63vw;
  }
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 226.6vw;
  background-image: url("../img/hero_bg_sp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}
@media screen and (min-width: 1025px) {
  .hero__background {
    background-image: url("../img/hero_bg.png");
    height: 63vw;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 94.9vw;
  position: absolute;
  top: 36.9vw;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: titleFadeIn 0.6s ease-out forwards;
}
@media screen and (min-width: 768px) {
  .hero__title {
    width: 42.3vw;
    top: 4.5vw;
  }
}

.hero__description {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .hero__description {
    font-size: 1.5rem;
  }
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
@keyframes iesaFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-150%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(-150%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateX(-150%) scale(1);
  }
}
@keyframes iesaFadeInPc {
  0% {
    opacity: 0;
    transform: translateX(-223%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(-223%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateX(-223%) scale(1);
  }
}
@keyframes otokuFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-3%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(-3%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateX(-3%) scale(1);
  }
}
@keyframes otokuFadeInPc {
  0% {
    opacity: 0;
    transform: translateX(49%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(49%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateX(49%) scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__present {
  width: 92vw;
  position: absolute;
  top: 142vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .hero__present {
    width: 45vw;
    top: 43.5vw;
    transform: translateX(-50%);
  }
}

.hero__present-inner {
  position: relative;
}

.hero__present-iesai {
  width: 21.8vw;
  position: absolute;
  top: -1vw;
  right: 1vw;
  opacity: 0;
  animation: presentIesaiFadeIn 0.8s ease-out 1s forwards;
}
@media screen and (min-width: 1025px) {
  .hero__present-iesai {
    width: 6.6vw;
    top: -2.5vw;
    right: 1vw;
  }
}

.hero__iesa {
  width: 31.3vw;
  position: absolute;
  top: 4vw;
  left: 50%;
  transform: translateX(-150%);
  opacity: 0;
  animation: iesaFadeIn 0.8s ease-out 0.3s forwards;
}
@media screen and (min-width: 1025px) {
  .hero__iesa {
    width: 11vw;
    top: -1.3vw;
    transform: translateX(-223%);
    animation: iesaFadeInPc 0.8s ease-out 0.3s forwards;
  }
}

.hero__otoku {
  width: 58.6vw;
  position: absolute;
  top: -1vw;
  left: 50%;
  transform: translateX(-3%);
  opacity: 0;
  animation: otokuFadeIn 0.8s ease-out 0.5s forwards;
}
@media screen and (min-width: 1025px) {
  .hero__otoku {
    width: 17.6vw;
    top: -1.8vw;
    transform: translateX(49%);
    animation: otokuFadeInPc 0.8s ease-out 0.5s forwards;
  }
}

/* -----------------------------------
.flow
----------------------------------- */
.flow__inner {
  padding: 12vw 5.33vw;
}
@media screen and (min-width: 1025px) {
  .flow__inner {
    width: 1000px;
    margin: 0 auto;
    padding: 125px 0 0;
  }
}

@media screen and (min-width: 1025px) {
  .flow__ttl {
    width: 100%;
    margin: 0 auto;
  }
}

.flow__body {
  margin-top: 5.33vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.33vw;
  padding: 0 4.66vw 0 2vw;
}
@media screen and (min-width: 1025px) {
  .flow__body {
    margin: 2vw auto 0;
    padding: 0;
    align-items: flex-start;
    width: fit-content;
    gap: 1.35vw;
  }
}

@media screen and (min-width: 1025px) {
  .flow__item-img--1 {
    width: 700px;
  }
}

@media screen and (min-width: 1025px) {
  .flow__item-img--2 {
    width: 800px;
  }
}

@media screen and (min-width: 1025px) {
  .flow__item-img--3 {
    width: 804px;
  }
}

/* -----------------------------------
.area
----------------------------------- */
.area__inner {
  padding: 12vw 5.33vw;
}
@media screen and (min-width: 1025px) {
  .area__inner {
    padding: 125px 0;
    width: 1000px;
    margin: 0 auto;
  }
}

.area__body {
  margin-top: 4.66vw;
  display: flex;
  flex-direction: column;
  gap: 13.3vw;
}
@media screen and (min-width: 1025px) {
  .area__body {
    margin: 35px auto 0;
    width: 850px;
    gap: 80px;
  }
}

.area__item-title {
  background: #D20021;
  color: #fff;
  padding: 8px;
  text-align: center;
  border-radius: 100px;
  font-size: 4.8vw;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .area__item-title {
    font-size: 22px;
    padding: 8px 8px 12px;
  }
}

@media screen and (min-width: 1025px) {
  .model-house {
    margin-top: 30px;
  }
}

.model-house__item-info {
  margin-top: 2vw;
}
@media screen and (min-width: 1025px) {
  .model-house__item-info {
    width: 335px;
    margin-top: 10px;
  }
}

.model-house__item-info-item {
  display: flex;
  font-size: 3.73vw;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .model-house__item-info-item {
    font-size: 17px;
  }
}
.model-house__item-info-item:not(:first-child) {
  margin-top: 2vw;
}
@media screen and (min-width: 1025px) {
  .model-house__item-info-item:not(:first-child) {
    margin-top: 10px;
  }
}

.model-house__item {
  padding: 0 2vw;
}
@media screen and (min-width: 1025px) {
  .model-house__item {
    padding: 0 30px;
    display: flex;
    margin: 0 20px;
  }
}
.model-house__item:not(:first-child) {
  margin-top: 3vw;
  padding-top: 3vw;
  background: url(../img/border-dot_sp.png) no-repeat left top;
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  .model-house__item:not(:first-child) {
    margin-top: 20px;
    padding-top: 15px;
    background: url(../img/border-dot.png) no-repeat left top;
    background-size: contain;
  }
}

@media screen and (min-width: 1025px) {
  .model-house__item-title {
    flex: 1;
  }
}

.model-house__item-title-link {
  font-size: 4.4vw;
  font-weight: 900;
  transition: all 0.3s;
  background: url(../img/icon_arrow.svg) no-repeat left center;
  background-size: 4vw;
  padding-left: 5vw;
}
@media screen and (min-width: 1025px) {
  .model-house__item-title-link {
    font-size: 20px;
    background-size: 18px;
    padding-left: 25px;
  }
}
.model-house__item-title-link:link, .model-house__item-title-link:visited, .model-house__item-title-link:active {
  color: #000;
}
.model-house__item-title-link:hover {
  color: #000;
  opacity: 0.85;
}

.model-info-title {
  width: 16vw;
  border-right: 1px solid #000;
  padding-right: 3vw;
  box-sizing: border-box;
}
@media screen and (min-width: 1025px) {
  .model-info-title {
    width: 70px;
    padding-right: 10px;
  }
}

.model-info-text {
  flex: 1;
  padding-left: 20px;
}

/* -----------------------------------
.cta
----------------------------------- */
.cta {
  text-align: center;
  padding: 8vw 0 16vw;
}
@media screen and (min-width: 1025px) {
  .cta {
    padding: 100px 0;
  }
}

.cta__comment {
  width: 73vw;
}
@media screen and (min-width: 1025px) {
  .cta__comment {
    width: 440px;
  }
}

.cta__btn-link {
  position: relative;
}

.cta__btn {
  width: 82.6vw;
  margin: 3vw auto 0;
}
@media screen and (min-width: 1025px) {
  .cta__btn {
    width: 660px;
    margin-top: 10px;
  }
}

.cta__btn-iesai {
  width: 17.7vw;
  position: absolute;
  top: 1vw;
  left: -1vw;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
@media screen and (min-width: 1025px) {
  .cta__btn-iesai {
    width: 112px;
    top: -7px;
    left: 12px;
  }
}
.cta__btn-iesai.is-visible {
  opacity: 1;
}

/* -----------------------------------
.memo
----------------------------------- */
.memo {
  padding: 7.3vw;
  background: #7E1C00;
  color: #fff;
  font-size: 2.6vw;
}
@media screen and (min-width: 1025px) {
  .memo {
    padding: 50px 0;
  }
}

@media screen and (min-width: 1025px) {
  .memo__list {
    width: fit-content;
    margin: 0 auto;
  }
}

.memo__item {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8;
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  .memo__item {
    font-size: 15px;
  }
}

/* -----------------------------------
.footer
----------------------------------- */
.footer {
  padding: 20px 5vw 20px;
  text-align: center;
  background-color: #E5E5E5;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo-img {
  width: 125px;
}

.footer__text {
  font-size: 10px;
}

.footer__icon {
  width: 13px;
  vertical-align: middle;
  margin-left: 5px;
}

.footer__copyright {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 10px;
}

.btn-link-header {
  width: 50px;
  position: fixed;
  right: 15px;
  bottom: 25vw;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .btn-link-header {
    bottom: 23vw;
  }
}
@media screen and (min-width: 1025px) {
  .btn-link-header {
    right: 35px;
    bottom: 15px;
  }
}
.btn-link-header.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Utility
- ComponentとProjectで解決できないもの
- ちょっとした調整用のスタイル
----------------------------------------------------------------- */
/* clearfix */
/* margin */
.u-mb10 {
  margin-bottom: 10px;
}

/* display */
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
.u-liststyle-none {
  list-style: none;
}

@keyframes presentIesaiFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */