@charset "UTF-8";
/* CSS変数カスタムプロパティ */
:root {
  --header-height: 90px; /* PCでのヘッダーの高さ */
}
@media screen and (max-width: 1280px) {
  :root {
    --header-height: 80px;
  }
}
@media screen and (max-width: 960px) {
  :root {
    --header-height: 70px;
  }
}

/* 色の変数 */
:root {
  /* ベース（背景） */
  --bg-main: #eae3d0; /* 薄茶色（メインの背景） */
  --bg-white: #ffffff; /* 白（サブの背景） */
  --bg-sub: #ffefa4; /* 薄黄色の背景 */
  --bg-accent: #ff8e8f; /* ピンクの背景 */

  /* アクセント */
  --accent-1: #ffe33f; /* 濃い黄色 */
  --accent-2: #8d6938; /* 茶色 */
  --accent-3: #e34f50; /* 赤 */
  --accent-4: #a77e45; /* 薄茶色 */

  /* その他 */
  --sub-1: #4cc764; /* 緑 */
  --sub-2: #2a97ff; /* 水色 */

  /* テキスト */
  --text-main: #333333; /* 基本の文字色 */
  --text-sub: #8d6938; /* テキスト用茶色 */
  --text-white: #ffffff;
}

/* 全体的な設定 */
html {
  height: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 16px × 0.625 = 10px */
  /* visibility: hidden; */
}
/* html.wf-active {
    visibility: visible;
  } */
body,
input,
select,
textarea {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 2px;
  color: var(--text-main);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
body {
  height: 100%;
  min-height: 100dvh;
  background-color: var(--bg-main);
}
/* モバイルメニュー開閉時の背面スクロール防止 */
body.is-fixed {
  overflow: hidden;
  height: 100%;
}
/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
.font-century {
  font-family:
    "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
/* リンク */
a {
  text-decoration: none;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  body,
  input,
  select,
  textarea {
    font-size: 1.4rem;
  }
}

/* 問い合わせフォームで非表示にするclass */
.wpcf7-spinner {
  display: none !important;
}

/*---------------------*/
/* ヘッダー */
.l-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
}
.p-header {
  display: block;
  background: var(--bg-main);
}
.p-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 15px 100px 15px 20px;
}
.p-header .header-title-a {
  position: relative;
  z-index: 100;
}
.p-header .header-title {
  max-width: 400px;
  margin-bottom: 0;
}
.p-nav.header-box {
  display: flex;
  align-items: center;
  background-color: var(--bg-main);
  transition:
    right 0.6s,
    opacity 0.6s;
  position: static;
  opacity: 1;
  height: inherit;
  background: transparent;
  width: auto;
  padding: 0;
  column-gap: 50px;
}
.p-nav .nav-inner {
  display: flex;
}
.p-nav .nav-list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 40px;
}
.p-nav .nav-item {
  position: relative;
  width: auto;
}
.p-nav .nav-link {
  color: #000;
  font-weight: 400;
  display: block;
  width: 100%;
}
.p-nav .link-area ul {
  display: flex;
  column-gap: 10px;
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--accent-3);
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
@media screen and (max-width: 1280px) {
  .p-header .header-inner {
    padding: 15px 20px 15px 20px;
  }
  .p-header .header-title {
    max-width: 300px;
  }
  .p-nav.header-box {
    column-gap: 20px;
  }
  .p-nav .nav-list {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-header .header-inner {
    padding: 15px 20px 15px 20px;
  }
  .p-header .header-title {
    max-width: 270px;
  }
  .p-nav .link-area ul li {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 960px) {
  .p-header .header-inner {
    padding: 10px;
  }
  .p-header .header-title {
    max-width: 240px;
  }
  .p-nav.header-box {
    column-gap: 10px;
  }
  .p-nav .nav-list {
    column-gap: 10px;
  }
  .p-nav .nav-link {
    font-size: 1.4rem;
  }
  .p-nav .link-area ul li {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-nav.header-box {
    position: fixed;
    top: 0;
    right: -100%; /* 画面の外に隠す */
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(234, 227, 208, 0.9);
    backdrop-filter: blur(5px);
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .p-nav.header-box.is-active {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    opacity: 1;
  }
  .p-nav .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .p-nav .nav-list {
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
  }
  .p-nav .nav-link {
    font-size: 1.8rem;
    position: relative;
  }
  .p-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--accent-3);
    border-radius: 50%;
  }
  .p-nav .link-area ul {
    column-gap: 20px;
  }
  .p-nav .link-area ul li {
    width: 40px;
    height: 40px;
  }
  .p-hamburger {
    display: block;
    width: 55px;
  }
}
@media screen and (max-width: 600px) {
  .p-header .header-title {
    max-width: 200px;
  }
}
@media screen and (max-width: 430px) {
  .p-nav .nav-link {
    font-size: 1.6rem;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 30px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  margin-bottom: 80px;
}
.footer-nav ul li a {
  font-size: 1.6rem;
  font-weight: 400;
}
footer .content {
  position: relative;
}
footer .map-area {
  position: absolute;
  width: 50%;
  height: 500px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
footer .info-area {
  max-width: 550px;
  padding-top: 20px;
  margin: 0 0 0 auto;
}
footer .logo-area {
  max-width: 450px;
  margin: 0 auto 50px;
}
footer .logo-area .address {
  text-align: center;
}
footer .caption {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-3);
  margin-bottom: 10px;
}
footer .caption-lp {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
footer .link-area {
  max-width: 550px;
  margin: 0 auto 60px;
}
footer .link-area .bottom {
  display: flex;
  column-gap: 30px;
  padding-top: 20px;
}
footer .copy-area {
  padding-top: 60px;
}
footer small {
  font-size: 1.4rem;
}
@media screen and (max-width: 1280px) {
  footer .info-area {
    max-width: 43vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav ul {
    margin-bottom: 50px;
  }
  footer .map-area {
    height: 430px;
  }
  footer .logo-area {
    margin: 0 auto 30px;
    max-width: 400px;
  }

  footer .copy-area {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  footer .link-area {
    margin: 0 auto 20px;
  }
  .footer-nav ul {
    margin-bottom: 30px;
    column-gap: 30px;
  }
  .footer-nav ul li a {
    font-size: 1.4rem;
  }
  footer .map-area {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 0;
  }
  footer .info-area {
    max-width: 430px;
    margin: 0 auto;
    padding-top: 30px;
  }
  footer .logo-area {
    margin: 0 auto 20px;
    max-width: 360px;
  }
  footer small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul {
    column-gap: 15px;
  }
}
@media screen and (max-width: 430px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 330px;
    margin: 0 auto 30px;
    row-gap: 10px;
  }
  footer .info-area {
    max-width: 350px;
  }
  footer .logo-area {
    max-width: 280px;
  }
  footer .link-area .bottom {
    column-gap: 10px;
    padding-top: 10px;
  }
  footer .caption {
    font-size: 1.6rem;
  }
}

/*---------------------*/
/* 全体共通 */
.page-top {
  margin-top: var(--header-height);
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.rounded-adjust {
  padding-bottom: 170px;
}
.rounded {
  border-radius: 100px 0 0 0;
  margin-top: -100px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .rounded-adjust {
    padding-bottom: 100px;
  }
  .rounded {
    border-radius: 60px 0 0 0;
    margin-top: -50px;
  }
}
@media screen and (max-width: 600px) {
  .section-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 430px) {
  .section-inner {
    padding: 0 15px;
  }
}

/*---------------------*/
/* タイトル */
.c-title-area {
  text-align: center;
  margin-bottom: 40px;
}
.c-title-area .c-t-main {
  font-size: 4rem;
  color: var(--text-sub);
}
.c-title-area .c-t-main .small {
  font-size: 2.8rem;
  line-height: 1;
}
.c-title-area .c-t-main-second {
  color: var(--accent-3);
}
.c-title-area .c-t-en {
  display: block;
  font-size: 2rem;
  color: var(--text-main);
}
.c-title-area .c-t-sub {
  font-size: 3.6rem;
  color: var(--text-sub);
  text-align: left;
}
.c-title-area .c-t-lead {
  font-size: 3rem;
  color: var(--text-sub);
}
/* タイトルの前の飾り文字 */
.c-title-area .deco {
  display: inline-block;
  position: relative;
  padding: 0 1em;
  margin: 0 auto 10px;
  font-size: 2rem;
  font-weight: bold;
}
.c-title-area .deco::before,
.c-title-area .deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 1.2em;
  background-color: var(--text-main);
}
.c-title-area .deco::before {
  left: 0;
  transform: translateY(-50%) rotate(-20deg);
}
.c-title-area .deco::after {
  right: 0;
  transform: translateY(-50%) rotate(20deg);
}
@media screen and (max-width: 1280px) {
  .c-title-area {
    margin-bottom: 30px;
  }
  .c-title-area .c-t-main {
    font-size: 3.6rem;
  }
  .c-title-area .c-t-sub {
    font-size: 3.2rem;
  }
  .c-title-area .c-t-lead {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title-area {
    margin-bottom: 20px;
  }
  .c-title-area .c-t-main {
    font-size: 3.2rem;
  }
  .c-title-area .c-t-main .small {
    font-size: 2.4rem;
  }
  .c-title-area .c-t-en {
    font-size: 1.8rem;
  }
  .c-title-area .c-t-sub {
    font-size: 2.8rem;
  }
  .c-title-area .c-t-lead {
    font-size: 2.6rem;
  }
  .c-title-area .deco {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .c-title-area .c-t-main {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  .c-title-area .c-t-main .small {
    font-size: 2.2rem;
  }
  .c-title-area .c-t-sub {
    font-size: 2.6rem;
  }
  .c-title-area .c-t-lead {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 430px) {
  .c-title-area .c-t-main {
    font-size: 2.4rem;
  }
  .c-title-area .c-t-en {
    font-size: 1.6rem;
  }
  .c-title-area .c-t-sub {
    font-size: 2.2rem;
  }
  .c-title-area .c-t-lead {
    font-size: 2rem;
  }
  .c-title-area .deco::before,
  .c-title-area .deco::after {
    height: 4rem;
  }
}

/*---------------------*/
/* 共通ボタン */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 450px;
  border-radius: 50px;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: none;
  padding: 15px;
  transition: opacity 0.3s;
  color: var(--text-main);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.c-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/* 共通ボタン 矢印 */
.c-btn--pink {
  position: relative;
  background-color: var(--accent-3);
  color: var(--text-white);
  margin: 50px auto;
}
.c-btn--pink::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
}
.c-btn--pink::before {
  content: "";
  position: absolute;
  right: 27px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--accent-3);
  border-right: 3px solid var(--accent-3);
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}
.c-btn--pink .arrow-line {
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 3px;
  background-color: var(--accent-3);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .c-btn {
    width: 350px;
    font-size: 2rem;
    padding: 14px;
  }
  .c-btn--pink::after {
    width: 30px;
    height: 30px;
    right: 14px;
  }
  .c-btn--pink .arrow-line {
    width: 16px;
    right: 21px;
  }
  .c-btn--pink::before {
    right: 21px;
  }
}
@media screen and (max-width: 600px) {
  .c-btn {
    width: 300px;
    font-size: 1.8rem;
    padding: 8px;
  }
  .c-btn--pink {
    margin: 30px auto;
  }
}
@media screen and (max-width: 430px) {
  .c-btn {
    font-size: 1.6rem;
    width: 280px;
    padding: 6px;
  }
  .cs-ctr .c-btn__icon {
    width: 35px;
    height: 35px;
  }
}

/*---------------------*/
/* 共通レイアウト */
.c-layout {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.c-layout .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.c-layout .img-area {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.c-layout .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-layout .text-area {
  padding-left: 50px;
}
.c-layout .list.reverse .img-area {
  order: 2; /* 入れ替え */
}
.c-layout .list.reverse .text-area {
  order: 1; /* 入れ替え */
  padding-left: 0;
  padding-right: 50px; /* 余白を右側に付け替える */
}
@media screen and (max-width: 1280px) {
  .c-layout .text-area {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .c-layout .list {
    grid-template-columns: 40% 60%;
  }
  .c-layout .list.reverse {
    grid-template-columns: 60% 40%;
  }
  .c-layout .list.reverse .text-area {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-layout .list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  .c-layout .list.reverse {
    flex-direction: column-reverse;
  }
  .c-layout .text-area {
    padding-left: 0;
  }
  .c-layout .list.reverse .text-area {
    padding-right: 0;
  }
}

/* 共通セクション　ctr */
.cs-ctr {
  background-color: var(--bg-white);
}
.cs-ctr .p-btn-area {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cs-ctr .c-btn--line {
  background-color: var(--accent-1);
  border: 4px solid var(--sub-1);
}
.cs-ctr .c-btn--mail {
  background-color: var(--bg-white);
  border: 4px solid var(--accent-3);
}
.cs-ctr .c-btn__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .cs-ctr .p-btn-area {
    flex-direction: column;
    align-items: center;
  }
}

/*---------------------*/
/* 共通改行 */
.br-1280,
.br-1024,
.br-767,
.br-600,
.br-430 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-1280 {
    display: block;
  }
  .br-none1280 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .br-1024 {
    display: block;
  }
  .br-none1024 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br-767 {
    display: block;
  }
  .br-none767 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .br-600 {
    display: block;
  }
  .br-none600 {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .br-430 {
    display: block;
  }
  .br-none430 {
    display: none;
  }
}

/*---------------------*/
/* アニメーション */
/* テキストアンダーライン */
.t-li {
  background-image: linear-gradient(#e34f50, #e34f50);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 3px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}
.t-li:hover {
  background-position: bottom left;
  background-size: 100% 3px;
}
