@charset "UTF-8";

/* ====================================
   LP独自スタイル (lp.css)
==================================== */

/* 基盤設定 (common.cssのrem指定を有効にするため) */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
  scroll-behavior: smooth;
}

/* 変数定義 (LP専用カラー) */
:root {
  --lp-red: #e63946;
  --lp-blue: #0056b3;
  --lp-white: #fff;
  --lp-blue-dark: #003366;
  --lp-yellow: #ffe79a;
  --lp-text: #464646;
}

/* ====================================
   Header
==================================== */
.p-lp-header__inner {
  position: relative;
  width: 100%;
  z-index: 100;
}

.p-lp-header__logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  max-width: 250px;
}

.p-lp-header__logo__child {
  min-width: 250px;
}

.logo__child {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  color: #464646;
}

.flex__child {
  font-size: 3rem;
  color: #464646;
}

.flex__child2 {
  font-size: 1.8rem;
  color: #464646;
}

@media (max-width: 767px) {
  .flex__child {
    font-size: 1.8rem;
  }

  .p-lp-header__logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 180px;
  }
}

/* ====================================
   Button Component
==================================== */
.p-lp-btn {
  display: inline-block;
  padding: 1.2em 4em;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.p-lp-btn:hover {
  opacity: 0.85;
  transform: translateY(6px);
}

.p-lp-btn--sm {
  padding: 0.8em 3em;
}

.p-lp-btn--red {
  background-color: var(--lp-red);
  color: #fff;
  width: 100%;
  max-width: 300px;
  padding: 0.8em 3em;
}

.p-lp-btn--blue {
  background-color: var(--lp-blue);
  color: #fff;
  width: 100%;
  max-width: 300px;
}

.p-lp-btn--outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.8em 3em;
  display: none;
}

@media (max-width: 767px) {
  .p-lp-btn {
    width: 100%;
    max-width: 320px;
  }
  .p-lp-btn--outline {
  display: block;
}
}

/* ====================================
   KV (ヒーローエリア)
==================================== */

.p-lp-kv {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("../images/photo_01.jpg") no-repeat center center / cover;
  width: 100%;
  padding: 0 20px;
}

.p-lp-kv__copy {
  position: absolute;
  top: 25%;
  bottom: 0;
  left: 280px;
}

.p-lp-kv__copy img {
  width: 100%;
  min-width: 550px;
}

.p-lp-kv__badge {
  position: absolute;
  right: 10%;
  bottom: 30px;
  max-width: 180px;
  width: 100%;
  /* border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
  z-index: 10;
  transition: transform 0.3s;
}

.p-lp-kv__badge:hover {
  transform: scale(1.05);
}

.p-lp-kv__badge span {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.p-lp-kv__badge strong {
  font-size: 1.8rem;
}

@media (max-width: 1366px) {

  .p-lp-kv__copy {
    left: 5%;
  }
}

@media (max-width: 767px) {
  .p-lp-kv {
    height: 70vh;
  }

  .p-lp-kv__copy {
    left: 5%;
    top: 22%;
    width: 70%;
  }

  .p-lp-kv__badge {
    bottom: 30px;
    right: 10px;
    width: 130px;
    height: 100px;
  }

  .p-lp-kv__badge span {
    font-size: 1rem;
  }

  .p-lp-kv__badge strong {
    font-size: 1.4rem;
  }

  .p-lp-kv__copy img {
    min-width: 325px;
  }
}

/* ====================================
   Section 共通
==================================== */

.p-lp-about {
  width: 100%;
  position: relative;
  &::before {
    background-color: #fff;
    /* 波の設定 */
    --wave-w: 540px;
    /* 波の間隔 */
    --wave-h: 100px;
    /* position: relative; */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    height: var(--wave-h);
    /* 波型SVGをマスクとして適用 */
    -webkit-mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 28' preserveAspectRatio='none'>\<path d='M0,14 C43,0 87,28 130,14 C173,0 217,28 260,14 L260,28 L0,28 Z' fill='black'/>\</svg>") top / var(--wave-w) var(--wave-h) repeat-x;
    mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 28' preserveAspectRatio='none'>\<path d='M0,14 C43,0 87,28 130,14 C173,0 217,28 260,14 L260,28 L0,28 Z' fill='black'/>\</svg>") top / var(--wave-w) var(--wave-h) repeat-x;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .p-lp-about {
    &::before {
      bottom: 29%;
      min-width: 375px;
    }
  }
}

.p-lp-section__header {
  text-align: center;
}

.p-lp-section__title {
  display: inline-block;
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  color: var(--lp-text);
  z-index: 1;
}

/* タイトル下の黄色マーカー */
.p-lp-section__title::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -5%;
  width: 110%;
  height: 12px;
  background-color: var(--lp-yellow);
  z-index: -1;
  border-radius: 6px;
  transform: skewX(-15deg);
}

.p-lp-section__lead {
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .p-lp-section__title {
    font-size: 2.8rem;
  }

  .p-lp-section__lead {
    font-size: 1.6rem;
  }
}

.p-lp-feature__img {
  width: 100%;
}

.p-lp-feature__img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.p-lp-feature__subtitle {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lp-blue);
  border-left: 5px solid var(--lp-blue);
  padding-left: 12px;
}

.p-lp-feature__subtitle--center {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lp-blue);
  text-align: center;
}

.p-lp-feature__item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.p-lp-feature__item--reverse--special {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .p-lp-feature__item--reverse--special {
        flex-direction: column-reverse;
  }
}

.p-lp-feature__item--reverse {
  flex-direction: row-reverse;
}

.p-lp-feature__img,
.p-lp-feature__body {
  width: 100%;
}

@media (max-width: 767px) {

  .p-lp-feature__subtitle,
  .p-lp-feature__subtitle--center {
    font-size: 2.2rem;
  }

  .p-lp-feature__item {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .p-lp-feature__item--reverse {
    flex-direction: row-reverse;
  }
}

/* ====================================
   Recommend セクション (背景透かし文字)
==================================== */
.p-lp-recommend {
  position: relative;
  /* overflow: hidden; */
}

.p-lp-recommend::after {
  content: "WATARI";
  position: absolute;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(240, 244, 248, 0.6);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}

.p-lp-recommend::after {
  bottom: 0%;
  right: -5%;
}

/* ====================================
   Access セクション
==================================== */
.p-lp-access__lead {
  color: var(--lp-text);
}

.p-lp-access__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-lp-access__map iframe {
  width: 100%;
  border-radius: 12px;
}

.p-lp-access__list li {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 16px;
  background: #f7f9fc;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  margin-top: 16px;

}

.p-lp-access__list .icon {
  font-size: 2.4rem;
}

.p-lp-access__list strong {
  display: block;
  font-size: 1.8rem;
  color: var(--lp-blue);
  margin-bottom: 8px;
}

.p-lp-access__list p {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .p-lp-access__content {
    flex-direction: row;
    align-items: center;
  }

  .p-lp-access__map {
    width: 60%;
  }

  .p-lp-access__info {
    width: 40%;
  }
}

.p-lp-banner img {
  width: 75%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.p-lp-banner:hover img {
  transform: translateY(6px);
}

.icon-img {
  width: 15%;
  max-width: 200px;
}

/* ====================================
   Contact セクション
==================================== */
.p-lp-contact {
  position: relative;
  background: linear-gradient(180deg, var(--lp-blue) 0%, var(--lp-blue-dark) 100%);
  color: #fff;
}

.p-lp-contact__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.p-lp-contact__copy {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
}

.p-lp-contact__desc {
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.p-lp-contact__box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 40px 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-lp-contact__box-title {
  font-size: 2.4rem;
  font-weight: bold;
}

.p-lp-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .p-lp-contact__actions {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .p-lp-contact__copy {
    font-size: 2.8rem;
  }

  .p-lp-contact__box {
    padding: 30px 15px;
  }

  .p-lp-banner img {
  width: 100%;
}
}

/* ====================================
   Footer
==================================== */
.p-lp-footer {
  background: var(--lp-blue-dark);
  color: #fff;
  padding: 20px 0;
  font-size: 1.2rem;
}

/* 波形ディバイダー */

.wave--bottom {
  width: 100%;
  background-color: #fff;
  /* 波の設定 */
  --wave-w: 540px;
  /* 波の間隔 */
  --wave-h: 100px;
  position: relative;
  top: 70px;

  /* 波の高さ */
  &::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: var(--wave-h);
    /* ページ背景と同じ色を塗る */
    background: var(--lp-blue);
    /* 波型SVGをマスクとして適用 */
    -webkit-mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 28' preserveAspectRatio='none'>\<path d='M0,14 C43,0 87,28 130,14 C173,0 217,28 260,14 L260,28 L0,28 Z' fill='black'/>\</svg>") top / var(--wave-w) var(--wave-h) repeat-x;
    mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 28' preserveAspectRatio='none'>\<path d='M0,14 C43,0 87,28 130,14 C173,0 217,28 260,14 L260,28 L0,28 Z' fill='black'/>\</svg>") top / var(--wave-w) var(--wave-h) repeat-x;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .wave--bottom {
    top: 0;
  }
}