@charset "utf-8";

/* ==============================
  Foundation
============================== */

:root {
  --color-text: #333333;
  --color-sub: #666666;
  --color-white: #ffffff;

  --color-bg: #ffffff;
  --color-bg-light: #f8f6f2;
  --color-bg-beige: #eee9e2;

  --color-main: #f4b3c2;
  --color-main-light: #fbe3ea;
  --color-brown: #8a6f5a;
  --color-gold: #b89b5e;
  --color-border: rgba(138, 111, 90, 0.18);

  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.04);

  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*font*/
.font_min{
  font-family: "fot-tsukumin-pr6n", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x:hidden;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background: var(--color-bg);
  overflow-x:hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

/* ==============================
  Layout
============================== */

.section {
  padding: 100px 20px;
}

.section-light {
  background: var(--color-bg-light);
}

.section-beige {
  background: var(--color-bg-beige);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.section-btn {
  margin-top: 40px;
  text-align: center;
}

/* ==============================
  Header
============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 111, 90, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  line-height: 1.3;
}

.header__logo a {
  display: block;
  font-family: "fot-tsukumin-pr6n", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.header__logo-sub {
  display: block;
  margin-top: 4px;
  color: var(--color-sub);
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ==============================
  Navigation
============================== */

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list a {
  position: relative;
  display: block;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav__list a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
}

/* ==============================
  Heading
============================== */

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading-left {
  text-align: left;
}

.section-heading__en {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.section-heading__ja {
  margin: 0;
  font-family: "fot-tsukumin-pr6n", sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
}

.section-heading__lead {
  margin: 20px auto 0;
  max-width: 720px;
  color: var(--color-sub);
  font-size: 15px;
}

/* ==============================
  Button
============================== */

.btn-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-brown);
}

.btn-primary:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--color-brown);
  background: var(--color-white);
  border: 1px solid #d9c8b6;
}

.btn-secondary:hover {
  background: #faf8f4;
  transform: translateY(-2px);
}

/* ==============================
  Card
============================== */

.card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.card-title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.card-text {
  margin: 0;
  color: var(--color-sub);
  font-size: 15px;
}

/* ==============================
  Image
============================== */

.img-rounded {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-shadow {
  box-shadow: var(--shadow-soft);
}

/* ==============================
  Footer
============================== */

.footer {
  padding: 80px 20px 24px;
  color: var(--color-white);
  background: var(--color-brown);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.footer__address {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.86;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 14px;
}

.footer__nav a {
  line-height: 1.8;
}

.footer__sns {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-sns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-sns a {
  transition: .3s;
}

.footer-sns a:hover {
  opacity: .7;
}

.footer-sns img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  opacity: 0.72;
}


/* ==============================
  Animation
============================== */

.js-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll.is-active {
  opacity: 1;
  transform: translateY(0);
}

.js-delay-1 {
  transition-delay: 0.12s;
}

.js-delay-2 {
  transition-delay: 0.24s;
}

.js-delay-3 {
  transition-delay: 0.36s;
}

/* ==============================
  Responsive
============================== */

@media screen and (max-width: 900px) {
  .nav {
    position: fixed;
    top: 82px;
    right: -100%;
    width: 82%;
    height: calc(100vh - 82px);
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.97);
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav.is-active {
    right: 0;
  }

  .nav__list {
    display: grid;
    gap: 22px;
  }

  .hamburger {
    display: grid;
    gap: 6px;
    width: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition);
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(35deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-35deg);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__top {
    display: grid;
  }

  .footer__nav {
    display: grid;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 70px 20px;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading__ja {
    font-size: 26px;
  }

  .btn-wrap {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }

  .card {
    padding: 24px;
  }
}

@media screen and (max-width: 600px) {
  .header__inner {
    height: 72px;
  }

  .header__logo a {
    font-size: 19px;
  }

  .header__logo-sub {
    font-size: 10px;
  }

  .nav {
    top: 72px;
    height: calc(100vh - 72px);
  }
}

/* ========================================
SP FIXED CONTACT
======================================== */

.sp-fixed-contact{
  display:none;
}

@media(max-width:768px){

  body{
    padding-bottom:70px;
  }

  .sp-fixed-contact{
    display:flex;
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:72px;
  background:#fff;
  border-top:1px solid rgba(111,87,69,.18);
    z-index:9999;
    box-shadow:0 -4px 15px rgba(0,0,0,.08);
  }

  .sp-fixed-contact__item{
    gap:4px;
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    text-decoration:none;
    line-height:1.2;
  }

  .sp-fixed-contact__icon{
    font-size:1.2rem;
    margin-bottom:4px;
  }

  .sp-fixed-contact__text{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.04em;
  }

  .is-general{
    background:var(--color-bg-light);
    color:#333;
  }

  .is-special{
    background:#f7eef0;
    color:#333;
  }

  .is-special i{
  color:var(--color-main);
}

  .is-form{
    background:var(--color-bg-light);
    color:#333;
  }

}


/* ========================================
マーカー
======================================== */
.marker-pink {
  background: linear-gradient(transparent 55%, rgb(255 179 210 / 57%) 55%);
  font-weight: 600;
}