@charset "UTF-8";
/*
GENERAL STYLING
================================================ */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
@media (1100px <= width) {
  html {
    scroll-padding-top: clamp(7rem, 6.6vw + 4rem, 8rem);
  }
}

body {
  position: relative;
  width: 100%;
  color: #063E70;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  background-color: #FAF8F7;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
}

/*
COMMON
================================================ */
main {
  padding-top: clamp(5rem, 6.6vw + 2rem, 6rem);
  width: 100%;
  z-index: 0;
}
@media (600px <= width) {
  main {
    padding-top: clamp(7rem, 6.6vw + 4rem, 8rem);
  }
}

/* コンテンツ幅 */
.container {
  margin: 0 auto 4rem;
  width: 80vw;
}
@media (600px <= width) {
  .container {
    margin: 0 auto 7rem;
    width: 80vw;
  }
}
@media (1100px <= width) {
  .container {
    margin: 0 auto 10rem;
  }
}

.container-solid {
  position: relative;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 4rem;
  margin-left: 0;
  padding: clamp(5rem, 20vw, 10rem) 10vw clamp(5rem, 20vw, 10rem);
  background-color: #F8E7E4;
  border-radius: clamp(5rem, 20vw, 10rem) 0 0 clamp(5rem, 20vw, 10rem);
}
@media (600px <= width) {
  .container-solid {
    margin-bottom: 7rem;
    margin-left: 10vw;
    padding-bottom: 7rem;
  }
}
@media (1100px <= width) {
  .container-solid {
    margin-bottom: 10rem;
    padding-bottom: 10rem;
  }
}

a {
  text-decoration-line: none;
}

/* コンテンツ見出し */
.ttl-wrap {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  place-items: end start;
}
@media (1100px <= width) {
  .ttl-wrap {
    margin-bottom: 3rem;
    grid-template-columns: auto 1fr;
  }
}
.ttl-wrap .ttl-info {
  word-break: break-all;
}
@media (1100px <= width) {
  .ttl-wrap .ttl-info {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
  }
}

.wave-txt {
  margin: 0 auto 1rem 0;
  position: relative;
  overflow: hidden;
  opacity: 0; /* 初期状態では透明 */
  animation: fadeIn 0.4s ease forwards; /* フェードインアニメーションを適用 */
}
@media (600px <= width) {
  .wave-txt {
    margin: 0 auto 1rem 0;
  }
}
@media (1100px <= width) {
  .wave-txt {
    margin: 0 auto 0 0;
  }
}
.wave-txt span {
  opacity: 0;
  display: inline-block;
  font-size: 4rem;
  line-height: 1;
  color: #EE4037;
  font-family: "Lalezar", serif;
  font-weight: 400;
}
@media (600px <= width) {
  .wave-txt span {
    margin-right: 0.1em;
    font-size: 5rem;
  }
}
@media (1100px <= width) {
  .wave-txt span {
    font-size: 5rem;
  }
}

/*
リンクボタン
================================================ */
.link-btn {
  margin-right: 0;
  margin-left: auto;
  height: 4rem;
  display: grid;
  place-content: end;
  text-decoration-line: none;
}
.link-btn-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #EE4037;
  font-family: "Lalezar", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
.link-btn-inner .link-circle {
  content: "";
  margin-bottom: 0.3rem;
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  background-color: #EE4037;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.link-btn-inner .link-circle::after {
  content: "";
  display: block;
  height: 0.6rem;
  width: 1.2rem;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  object-fit: contain;
}
.link-btn:hover .link-circle {
  transform: translateX(1rem);
}

/*
画像保存禁止
================================================ */
.scroll-in {
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  padding: 1rem 1rem;
  width: 100%;
  height: auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (600px <= width) {
  .header {
    padding: 2rem 2rem;
  }
}
@media (1100px <= width) {
  .header.is-show {
    background-color: rgba(250, 248, 247, 0.9);
  }
}

.header-logo-inner {
  display: block;
  width: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.header-logo-inner:hover {
  transform: scale(0.98);
}
.header-logo-inner > img {
  width: auto;
  height: clamp(3rem, 6.6vw, 4rem);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: clamp(3rem, 6.6vw, 4rem);
}

.pc-nav {
  display: none;
}
@media (1100px <= width) {
  .pc-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
}
.pc-nav-list {
  height: 100%;
}
.pc-nav-list a {
  display: grid;
  place-items: center;
  width: max-content;
  height: 100%;
  padding: 0 1rem;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  font-size: 1.5rem;
  text-decoration-line: none;
  font-family: "Lalezar", serif;
  font-weight: 400;
}
.pc-nav-list a:hover {
  color: #EE4037;
}

/*
ハンバーガー
================================================ */
.hamburger {
  position: relative;
  width: 100%;
}

/* ハンバーガーアイコン */
.menu-toggle {
  margin-left: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(3rem, 6.6vw, 4rem);
  height: clamp(3rem, 6.6vw, 4rem);
  border-radius: 50%;
  z-index: 5000;
  background-color: #EE4037;
  transition: all 0.3s ease-in-out;
}
.menu-toggle:hover {
  transform: scale(0.9);
}
.menu-toggle span,
.menu-toggle span::after {
  display: block;
  position: absolute;
  content: "";
  width: clamp(1.4rem, 6vw, 1.8rem);
  height: 2px;
  background-color: #FAF8F7;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.menu-toggle span {
  transform: translateY(-0.3rem);
}
.menu-toggle span::after {
  transform: translateY(0.6rem);
}

/* ハンバーガーメニュー */
.hamburger-nav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  inset: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger-nav.is-active {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease-in-out;
}

.hamburger-nav-wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 900;
  background-color: #EE4037;
  color: #FAF8F7;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
}
@media (600px <= width) {
  .hamburger-nav-wrap {
    width: 50%;
  }
}
@media (1100px <= width) {
  .hamburger-nav-wrap {
    width: 30%;
  }
}

.hamburger-nav-wrap .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
@media (600px <= width) {
  .hamburger-nav-wrap .menu {
    gap: 1.5em;
  }
}
.hamburger-nav-wrap .menu .nav-list-link {
  letter-spacing: 0.1em;
  text-align: center;
  color: #FAF8F7;
  font-size: 1.5rem;
  font-family: "Lalezar", serif;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.hamburger-nav-wrap .menu .nav-list-link a {
  color: #FAF8F7;
  text-decoration-line: none;
}
.hamburger-nav-wrap .menu .nav-list-link:hover {
  color: #063E70;
}

.hamburger-nav-logo {
  position: absolute;
  bottom: 80px;
  width: min(50%, 200px);
}
.hamburger-nav-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.hamburger-nav-logo a img {
  width: 100%;
  height: 100%;
}

/* メニューが開くと閉じるボタンに変形 */
.menu-toggle.is-active span {
  background-color: #FAF8F7;
  transform: rotate(30deg);
}

.menu-toggle.is-active span::after {
  background-color: #FAF8F7;
  transform: rotate(-60deg);
  top: 0;
}

/* メニュー画面の外をクリックしても閉じる */
.menu-back.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(238, 64, 55, 0.7);
  z-index: 500;
}

/* =================================
キービジュアル
==================================== */
.key {
  margin-bottom: calc(10svh + 2rem);
  width: 100%;
  position: relative;
  height: clamp(100svh - 5rem, 100svh - 6.6vw + 2rem, 100svh - 6rem);
}
@media (600px <= width) {
  .key {
    margin-bottom: calc(10svh + 6rem);
    height: clamp(100svh - 7rem, 100svh - 6.6vw + 4rem, 100svh - 8rem);
  }
}
@media (1100px <= width) {
  .key {
    margin-bottom: calc(10svh + 12rem);
  }
}

/*
キャッチコピー
==================================== */
.key-ttl {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  transition: all 0.3s ease-in-out;
}

.key-ttl-inner {
  position: relative;
  overflow: hidden;
  opacity: 0; /* 初期状態では透明 */
  animation: fadeIn 0.4s ease forwards; /* フェードインアニメーションを適用 */
}
.key-ttl-inner span {
  display: inline-block;
  margin-right: 0.04em;
  transform: translateY(100%);
  font-size: clamp(4rem, 20vw, 10rem);
  line-height: 1;
  font-family: "Lalezar", serif;
  font-weight: 400;
  color: #063E70;
  animation: bounce 0.6s ease forwards;
}
@media (600px <= width) {
  .key-ttl-inner span {
    margin-right: 0.1em;
    font-size: clamp(4rem, 18vw, 10rem);
  }
}
@media (1100px <= width) {
  .key-ttl-inner span {
    font-size: clamp(8rem, 12vw, 10rem);
  }
}

/* 各div要素に異なるアニメーション遅延を設定 */
.key-ttl-inner:nth-child(1) {
  z-index: 10;
  animation-delay: 0s; /* 1番目のdivはすぐに表示 */
}
.key-ttl-inner:nth-child(1) span:nth-child(1) {
  animation-delay: 0.5s;
}
.key-ttl-inner:nth-child(1) span:nth-child(2) {
  animation-delay: 0.6s;
}
.key-ttl-inner:nth-child(1) span:nth-child(3) {
  animation-delay: 0.7s;
}

.key-ttl-inner:nth-child(2) {
  z-index: 20;
  animation-delay: 0.6s; /* 2番目のdivの遅延を短く */
}
.key-ttl-inner:nth-child(2) span:nth-child(1) {
  animation-delay: 1s;
}
.key-ttl-inner:nth-child(2) span:nth-child(2) {
  animation-delay: 1.1s;
}
.key-ttl-inner:nth-child(2) span:nth-child(3) {
  animation-delay: 1.2s;
}
.key-ttl-inner:nth-child(2) span:nth-child(4) {
  animation-delay: 1.3s;
}
.key-ttl-inner:nth-child(2) span:nth-child(5) {
  animation-delay: 1.4s;
}
.key-ttl-inner:nth-child(2) span:nth-child(6) {
  animation-delay: 1.5s;
}
.key-ttl-inner:nth-child(2) span:nth-child(7) {
  animation-delay: 1.6s;
}
.key-ttl-inner:nth-child(2) span:nth-child(8) {
  animation-delay: 1.7s;
}

.key-ttl-inner:nth-child(3) {
  z-index: 30;
  animation-delay: 1.6s; /* 3番目のdivの遅延を短く */
}
.key-ttl-inner:nth-child(3) span:nth-child(1) {
  animation-delay: 2s;
}
.key-ttl-inner:nth-child(3) span:nth-child(2) {
  animation-delay: 2.1s;
}
.key-ttl-inner:nth-child(3) span:nth-child(3) {
  animation-delay: 2.2s;
}
.key-ttl-inner:nth-child(3) span:nth-child(4) {
  animation-delay: 2.3s;
}
.key-ttl-inner:nth-child(3) span:nth-child(5) {
  animation-delay: 2.4s;
}
.key-ttl-inner:nth-child(3) span:nth-child(6) {
  animation-delay: 2.5s;
}
.key-ttl-inner:nth-child(3) span:nth-child(7) {
  animation-delay: 2.6s;
}
.key-ttl-inner:nth-child(3) span:nth-child(8) {
  animation-delay: 2.7s;
}

/* フェードインアニメーションの定義 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* バウンドアニメーションの定義 */
@keyframes bounce {
  0% {
    transform: translateY(100%);
  }
  60% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(10%);
  }
}
/*
スライド画像
==================================== */
.key-bg {
  position: absolute;
  margin-top: 6svh;
  margin-bottom: 29svh;
  width: 100%;
  height: 60svh;
  display: grid;
  grid-template-columns: 1fr 5fr;
  overflow: hidden;
  gap: 4vw;
}
@media (600px <= width) {
  .key-bg {
    grid-template-columns: 1fr 2fr;
    margin-top: 1svh;
    margin-bottom: 29svh;
    gap: 0;
    height: 70svh;
  }
}
@media (1100px <= width) {
  .key-bg {
    grid-template-columns: 1fr 1.5fr;
    margin-top: 10svh;
    margin-bottom: 0;
    gap: 10vw;
    height: 100svh;
  }
}
.key-bg-left {
  position: relative;
  display: block;
  width: 7svh;
  height: 100%;
}
@media (600px <= width) {
  .key-bg-left {
    display: block;
    width: 14svh;
  }
}
@media (1100px <= width) {
  .key-bg-left {
    width: 35svh;
  }
}
.key-bg-right {
  width: 100%;
  height: 100%;
}

.left-circle {
  position: absolute;
  right: 0;
  height: 100%;
  width: auto;
  border-radius: 1000px;
  background-color: #F8E7E4;
  aspect-ratio: 7/10;
}

.slide-wrap {
  position: relative;
  height: 100%;
  gap: 5vw;
}
@media (1100px <= width) {
  .slide-wrap {
    gap: 0;
  }
}
.slide-wrap-box {
  height: 100%;
  width: auto !important;
  display: grid;
  place-items: center;
  aspect-ratio: 7/10 !important;
  border-radius: 1000px;
  background-color: #F8E7E4;
}
@media (1100px <= width) {
  .slide-wrap-box {
    margin-right: 4vw;
  }
}
.slide-wrap-box-inner {
  width: 56%;
  height: auto;
  margin: 0 auto 2rem;
}

.swiper-slide-active {
  opacity: 1;
  transition: transform 1s ease 0.4s, opacity 0.6s ease 0.6s;
}

.swiper-slide-prev {
  opacity: 0;
  transform: scale(0.8) !important;
}

/* =================================
コンセプト
==================================== */
.concept {
  margin: 0 auto;
  position: relative;
  width: 90%;
}
@media (600px <= width) {
  .concept {
    width: 80%;
  }
}
@media (1100px <= width) {
  .concept {
    width: 90%;
  }
}
.concept::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -5rem;
  right: -5vw;
  background-image: url(../images/logo_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  width: 80vw;
  height: 60vh;
  min-height: 530px;
  z-index: -10;
}
@media (600px <= width) {
  .concept::before {
    bottom: -8rem;
    right: -5vw;
    width: 70vw;
  }
}
@media (1100px <= width) {
  .concept::before {
    bottom: -11rem;
    right: 40%;
    width: 40vw;
  }
}

.concept-wrap {
  margin-left: 4vw;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10vw;
}
@media (600px <= width) {
  .concept-wrap {
    margin-left: 0;
    margin-bottom: 7rem;
  }
}
@media (1100px <= width) {
  .concept-wrap {
    gap: 0;
    margin-bottom: 10rem;
    grid-template-columns: 50% 50%;
  }
}
.concept-wrap-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: clamp(2rem, 11vw, 5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  font-weight: 900;
  color: #EE4037;
  letter-spacing: 0.1em;
}
@media (600px <= width) {
  .concept-wrap-ttl {
    font-size: clamp(2rem, 10vw, 10rem);
  }
}
@media (1100px <= width) {
  .concept-wrap-ttl {
    margin-bottom: 4vw;
    font-size: clamp(2rem, 5.5vw, 10rem);
  }
}
.concept-wrap-txt {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-left: 0;
}
@media (600px <= width) {
  .concept-wrap-txt {
    margin-left: 11vw;
  }
}
@media (1100px <= width) {
  .concept-wrap-txt {
    margin-left: 8vw;
    margin-top: 16vw;
    align-self: end;
  }
}
.concept-wrap-txt p {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  line-height: 2.2;
}
@media (600px <= width) {
  .concept-wrap-txt p {
    font-size: clamp(1rem, 3.2vw, 3rem);
    line-height: 2.4;
  }
}
@media (1100px <= width) {
  .concept-wrap-txt p {
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    letter-spacing: 0;
  }
}

/* =================================
サービス
==================================== */
.service-wrap {
  width: 96%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6vw;
}
@media (600px <= width) {
  .service-wrap {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
  }
}
@media (1100px <= width) {
  .service-wrap {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2vw;
  }
}
.service-wrap-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
  padding: 14vw 10vw 21vw;
  border-radius: 40vw;
  background-color: #FAF8F7;
  box-shadow: 1px 1px 5px rgba(238, 64, 55, 0.1);
}
@media (600px <= width) {
  .service-wrap-inner {
    padding: 8vw 4vw 12vw;
  }
}
@media (1100px <= width) {
  .service-wrap-inner {
    grid-template-columns: 1fr;
    padding: 4vw 3vw 6vw;
  }
}

.service-image {
  margin: 0 auto;
  width: 80%;
  height: auto;
  display: grid;
  place-items: center;
}
@media (1100px <= width) {
  .service-image {
    width: 100%;
  }
}
.service-image > img {
  width: 100%;
  height: auto;
}

.service-ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  word-break: keep-all;
}
@media (600px <= width) {
  .service-ttl {
    font-size: 1.25rem;
  }
}
@media (1100px <= width) {
  .service-ttl {
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
  }
}

.service-txt {
  word-break: break-all;
  margin: 0 1rem;
}
@media (1100px <= width) {
  .service-txt {
    margin: 0 0;
  }
}

/* =================================
アバウト
==================================== */
.about.container {
  width: 100%;
}
@media (600px <= width) {
  .about.container {
    width: 100%;
  }
}

.about-head {
  grid-template-columns: 1fr;
}
.about-head > .wave-txt {
  margin: 0 auto !important;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (1100px <= width) {
  .about-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.about-wrap-image {
  display: grid;
  place-content: center;
  width: 100%;
}
.about-wrap-image > img {
  width: clamp(300px, 60vw, 800px);
  height: auto;
}
@media (1100px <= width) {
  .about-wrap-image > img {
    width: clamp(300px, 34vw, 800px);
  }
}
.about-wrap-info {
  margin-bottom: 0;
}
@media (600px <= width) {
  .about-wrap-info {
    margin-bottom: 0;
  }
}
@media (1100px <= width) {
  .about-wrap-info {
    margin-bottom: 0;
    margin-left: 0;
  }
}

.about-name {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #EE4037;
  font-family: "Lalezar", serif;
  font-weight: 400;
}
.about-name-job {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: rgba(238, 64, 55, 0.6);
}

.about-txt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.about-txt-inner {
  line-height: 2;
}

/* =================================
ワークス
==================================== */
.works-lists {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}
@media (600px <= width) {
  .works-lists {
    grid-template-columns: 1fr 1fr;
  }
}
@media (1100px <= width) {
  .works-lists {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.works-lists-box {
  position: relative;
}
.works-lists-box-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-decoration-line: none;
  transition: all 0.3s ease-in-out;
}
.works-lists-box-inner:hover {
  transform: translateY(-1rem);
}

.works-img {
  width: 100%;
}
.works-img-inner {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 7/5;
  border-radius: 1rem;
  box-shadow: 1px 1px 4px rgba(6, 62, 112, 0.1);
}

.works-info {
  margin-left: 0.5rem;
}

.works-ttl {
  font-size: 1.125rem;
  color: #063E70;
}

.works-category {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1;
  color: #EE4037;
}
.works-category-inner {
  color: #EE4037;
}

/* =================================
ブログ
==================================== */
.blog-lists {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (1100px <= width) {
  .blog-lists {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.blog-lists-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media (600px <= width) {
  .blog-lists-box {
    width: 80%;
  }
}
@media (1100px <= width) {
  .blog-lists-box {
    width: 100%;
  }
}
.blog-lists-box-inner {
  display: grid;
  grid-template-columns: 1fr;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 1px 5px rgba(238, 64, 55, 0.1);
  border-radius: 1rem;
  text-decoration-line: none;
}
.blog-lists-box-inner:hover {
  transform: translateY(-1rem);
}

.blog-img {
  width: 100%;
}
.blog-img-inner {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 7/5;
  border-radius: 1rem 1rem 0 0;
}

.blog-info {
  padding: 1rem 1.2rem;
  min-height: 7rem;
  background-color: #FAF8F7;
  border-radius: 0 0 1rem 1rem;
}
.blog-info-head {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.blog-info-head .blog-date {
  font-size: 0.875rem;
  font-weight: 300;
}
.blog-info-head .blog-category {
  display: grid;
  font-size: 0.875rem;
  font-weight: 300;
}
.blog-info-head .blog-category-inner {
  color: rgba(238, 64, 55, 0.8);
}
.blog-info .blog-ttl {
  line-height: 1;
  color: #063E70;
}

/* =================================
コンタクト
==================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (1100px <= width) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.contact > .ttl-wrap {
  margin: 0 auto !important;
  grid-template-columns: 1fr !important;
  place-items: end center !important;
}
@media (1100px <= width) {
  .contact > .ttl-wrap {
    margin-left: 0 !important;
    margin-right: auto !important;
    place-items: end start !important;
  }
}
.contact > .ttl-wrap > .wave-txt {
  margin: 0 auto 1rem;
}
@media (1100px <= width) {
  .contact > .ttl-wrap > .wave-txt {
    margin: 0 auto 1rem 0;
  }
}
.contact > .ttl-wrap > .ttl-info {
  align-self: start;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}

.form-link {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background-color: #F8E7E4;
  border-radius: 999px;
}
.form-link > .link-btn-inner {
  width: 100%;
  height: 100%;
  padding: 5vw 0 !important;
}

/* =================================
セクション区切り
==================================== */
.partition {
  margin-top: -3rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (600px <= width) {
  .partition {
    margin-top: -6rem;
    margin-bottom: 3rem;
  }
}
@media (1100px <= width) {
  .partition {
    margin-top: -9rem;
    margin-bottom: 5rem;
  }
}

.partition-txt-loop {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  line-height: 1.3;
  z-index: -10;
}
.partition-txt-loop-list {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 0.5em;
  padding-left: 0.5em;
  font-family: "Lalezar", serif;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(100px, 30vw, 300px);
  color: #F8E7E4;
}
.partition-txt-loop-list:nth-child(odd) {
  animation: loop 100s -50s linear infinite;
}
.partition-txt-loop-list:nth-child(even) {
  animation: loop2 100s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* =================================
TOPに戻る
==================================== */
.page-top {
  display: none;
}
@media (600px <= width) {
  .page-top {
    display: block;
    position: fixed;
    right: 20px;
    bottom: -100px;
    z-index: 100;
    transition: all 0.3s ease-in-out;
  }
}
.page-top-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  width: 60px;
  height: 60px;
  background-color: #EE4037;
  border-radius: 80px 80px 0 0;
  transition: all 0.3s ease-in-out;
}
.page-top-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #FAF8F7;
  border-right: 2px solid #FAF8F7;
  transform: translateX(-50%) rotate(-45deg);
}
.page-top-inner:hover {
  transform: translateY(-10px);
}

/* =================================
フッター
==================================== */
.footer {
  height: 100vh;
  padding: 4rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #EE4037;
}
@media (600px <= width) {
  .footer {
    padding: 5rem 2rem 2rem;
  }
}
@media (1100px <= width) {
  .footer {
    padding: 8rem 2rem 2rem;
  }
}

.footer-message {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: clamp(2rem, 16vw, 20rem);
  word-break: keep-all;
  color: #F8E7E4;
  letter-spacing: 0.2rem;
  font-family: "Lalezar", serif;
  font-weight: 400;
  line-height: 1;
}
@media (1100px <= width) {
  .footer-message {
    letter-spacing: 0.4rem;
  }
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  line-height: 1;
}
@media (600px <= width) {
  .footer-wrap {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-logo {
  width: fit-content;
}
.footer-logo-inner {
  display: block;
  width: clamp(100px, 10vw, 200px);
  height: auto;
}
.footer-logo-inner > img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.copyright {
  font-size: 0.875rem;
  color: #F8E7E4;
}/*# sourceMappingURL=editor-style.css.map */