@charset "utf-8";

/* ========================================
   Reset
======================================== */
*,
*::before,
*::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body{
  min-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #574241;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

a{
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

ul,
ol{
  list-style: none;
}

table{
  border-collapse: collapse;
  border-spacing: 0;
}




.flex{
  display: flex;
  flex-wrap: wrap;
}

.pc-only-flex{
  display: block;
}

.pc-only{
  display: none;
}

.sp-only{
  display: block;
}


@media screen and (min-width: 1024px){
  body{
    font-size: 16px;
  }

  .pc-only-flex{
    display: flex;
  }

  .pc-only{
    display: block;
  }

  .sp-only{
    display: none;
  }
}

/* ========================================
   TOP
======================================== */
/*全体*/
.inner {
    max-width: 1120px;
    padding: 0 24px;
    margin: 75px auto;
}

h2.c-section-title {
    font-family: ivymode, sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 24px;
}

/*全体アニメーション*/
.fadein {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s;
}

/* ========================================
   HEADER
======================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 35px 24px 20px; 
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

/* 出現時 */
.l-header.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.l-header__logo {
  line-height: 1;
}

.l-header__logo a {
  display: block;
}

.l-header__logo img {
  display: block;
  width: 86px;
  height: auto;
}

/* ========================================
   HAMBURGER
======================================== */

.c-hamburger {
  position: relative;
  width: 45px;
  height: 26px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: none;
  z-index: 9999;
}

.c-hamburger__line {
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background: #272828;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.35s ease;
}

.c-hamburger__line--top {
  top: 6px;
}

.c-hamburger__line--bottom {
  top: 17px;
}

/* 開いた時はバツ */
.c-hamburger.is-open .c-hamburger__line--top {
  top: 13px;
  transform: rotate(45deg);
}

.c-hamburger.is-open .c-hamburger__line--bottom {
  top: 13px;
  transform: rotate(-45deg);
}

/* ========================================
   DRAWER NAV
======================================== */

.c-drawer-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(78vw, 420px);
  height: 100vh;
  padding: 120px 32px 40px;
  background: #f9f9f9;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.c-drawer-nav.is-open {
  transform: translateX(0);
}

.c-drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-drawer-nav__item a {
  font-size: 18px;
  font-family: "ivymode", sans-serif;
	font-weight: 300;
	font-style: italic;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-drawer-nav__item a:hover {
  opacity: 0.7;
}


.c-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


/* ========================================
   PC
======================================== */

@media screen and (min-width: 768px) {
  .l-header {
    padding: 35px 40px 20px;
  }

  .l-header__logo img {
    width: 150px;
  }

  .c-drawer-nav {
    width: min(40vw, 460px);
    padding: 130px 48px 48px;
  }

  .c-drawer-nav__item a {
    font-size: 24px;
  }
}



/*ボタン*/
.btn-wrap {
    text-align: right;
	padding-top: 30px;
}

.c-link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
    font-family: ivymode, sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 18px;
    line-height: 1;
  color: #574241;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.c-link-arrow:hover{
  opacity: 0.7;
}

/* テキスト */
.c-link-arrow__text{
  display: inline-block;
}

/* ========================================
   矢印（共通）
======================================== */

.c-link-btn-arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 1px;
  top: 2px;
  background-color: #574241; 
}

/* 上の斜め線 */
.c-link-btn-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #574241;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}
.arrow--white.c-link-btn-arrow,
.arrow--white.c-link-btn-arrow::before{
	background-color: #fff; 
}


@media screen and (min-width: 1024px){
.inner {
    max-width: 1200px;
    /* padding: 0 24px; */
    margin: 110px auto 0;
}
h2.c-section-title {
    font-size: 74px;
}

.c-link-arrow{
    font-size: 20px;
}


}

/* ========================================
   MV
======================================== */
.mv__logo {
    display: block;
    width: 60%;
    margin: 60px 15px 50px auto;
}

p.mv-txt{
	padding: 0 25px;
}

p.mv__lead{
	font-size: 24px;
}
p.mv__sublead {
    margin-bottom: 10px;
}
.mv__image {
    width: 95%;
    margin: 0 auto;
}

/* ===============================
   PC
=============================== */

@media screen and (min-width: 1024px){

.mv__logo {
    width: 100%;
    margin: 60px 0 50px auto;
}
.mv__logo img {
    margin: 0 60px 0 auto;
}
p.mv-txt {
    padding: 0 60px;
}
p.mv__lead {
    font-size: 50px;
	font-family: sans-serif;
}
p.mv__sublead.mv-txt {
    font-size: 18px;
}
.mv__image {
    margin: 0 auto;
	width: calc(100% - 120px);
}

}

/* ========================================
   MV スライダー
======================================== */

.mv-slider {
  width: 100%;
  overflow: hidden;
}

.mv-slider .swiper-slide {
  width: 100%;
}

.mv-slider img {
  display: block;
  width: 100%;
  height: auto;
}

/* PCは高さ揃えるなら（任意） */
@media screen and (min-width: 1024px) {
  .mv-slider {
    height: auto;
  }
}


/* ========================================
   MV animation（1回のみ発火）
======================================== */

/* 初期状態 */
.mv__logo,
.mv-txt,
.mv__image {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}

/* 表示後（.mv にクラスが付いた時だけ発火） */
.mv.is-animated .mv__logo,
.mv.is-animated .mv-txt,
.mv.is-animated .mv__image {
  animation: mvFadeUp 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ロゴ */
.mv.is-animated .mv__logo {
  animation-delay: 0.3s;
}

/* テキスト1 */
.mv.is-animated .mv__lead {
  animation-delay: 1.2s;
}

/* テキスト2 */
.mv.is-animated .mv__sublead {
  animation-delay: 1.8s;
}

/* 画像 */
.mv.is-animated .mv__image {
  animation-delay: 2.6s;
}

/* アニメーション完了後は固定（再発火防止） */
.mv.is-animation-done .mv__logo,
.mv.is-animation-done .mv-txt,
.mv.is-animation-done .mv__image {
  animation: none;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* キーフレーム */
@keyframes mvFadeUp {
  0% {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
  }

  70% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


/* ========================================
   SERVICE
======================================== */
.top-service{
  margin-top: 80px;
}

/* ===============================
   正方形：画像エリア
=============================== */
.top-service__image{
  aspect-ratio: 1 / 1;
}

.top-service__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   正方形：テキストエリア
=============================== */
.top-service__content{
  background: #a8a8a8;
  color: #ffffff;

  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.top-service__content-inner{
  width: calc(100% - 28px);
  margin: 0 auto;
  padding: 78px 0 84px;
  text-align: center;
}

.top-service__title{
  font-family: "ivymode", serif;
  font-size: 50px;
  font-weight: 200;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.top-service__lead{
  margin-top: 26px;
  font-family: "ivymode", serif;
  font-size: 15px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.top-service__link-wrap{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* 白文字版の矢印リンク */
.c-link-arrow--white{
  color: #ffffff;
}

.c-link-arrow--white .c-link-arrow__icon{
  filter: brightness(0) invert(1);
}

/* ===============================
   PC
=============================== */

@media screen and (min-width: 1024px){

  .top-service{
    display: flex;
    align-items: stretch;
    margin-top: 120px;
  }

  .top-service__image,
  .top-service__content{
    width: 50%;
    aspect-ratio: 1 / 1; /* ← ここが一番重要 */
  }

  .top-service__image img{
    height: 100%;
    object-fit: cover;
  }

  .top-service__content{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-service__content-inner{
    width: calc(100% - 80px);
    max-width: 520px;
    padding: 80px 0;
  }

  .top-service__title{
    font-size: 72px;
  }

  .top-service__lead{
    margin-top: 30px;
    font-size: 18px;
  }

  .top-service__link-wrap{
    margin-top: 34px;
  }
}


.top-gallery .btn-wrap{
	text-align: center;
}


/* ===============================
 アクセス
=============================== */

.top-access{
  margin-top: 80px;
}

.top-access h2.c-section-title{
	padding: 0 24px;
}
.top-access__image-wrap{
  margin-top: 10px;
}

.top-access__image{
  width: 95%;
  margin-left: auto;
}

.top-access__image img{
  width: 100%;
  display: block;
}

.top-access__content{
  margin-top: 30px;
}

.top-access__list{
  display: grid;
  gap: 22px;
}

.top-access__row{
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.top-access__label{
  width: 80px;
  flex-shrink: 0;
  font-family: "ivymode", sans-serif;
  font-size: 16px;
	font-weight: 300;
	font-style: italic;
}

.top-access__value{
  flex: 1;
}

.top-access__text{
  font-size: 14px;
  line-height: 1.7;
}
.top-access__text a{
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-access__map-link {
    margin-top: 10px;
    text-align: right;
}

.top-access__map-link .c-link-arrow{
  font-family: "ivymode", sans-serif;
  font-size: 16px;
	font-weight: 300;
	font-style: italic;
}

/* ===============================
   PC
=============================== */
@media screen and (min-width: 1024px){
  .top-access{
    margin-top: 120px;
  }
	
.top-access h2.c-section-title {
    max-width: 1200px;
    margin: 110px auto 0;
}

  .top-access__title{
    font-size: 72px;
  }

    .top-access__image-wrap {
        width: 100%;
        margin-top: 20px;
    }

	.top-access__image {
	width: 92%;
	}
	
.top-access__image img {
    width: 100%;
    height: 615px;
}

  .top-access__content{
    width: min(100% - 80px, 1200px);
    margin: 38px auto 0;
  }

  .top-access__list{
    gap: 26px;
  }

  .top-access__row{
    gap: 34px;
  }

  .top-access__label{
    width: 120px;
    font-size: 21px;
  }

  .top-access__value{
    display: flex;
    align-items: flex-end;
    gap: 28px;
  }

  .top-access__text{
    font-size: 16px;
    line-height: 1.9;
  }

  .top-access__map-link{
    margin-top: 0;
    padding-top: 2px;
    flex-shrink: 0;
  }

  .top-access__map-link .c-link-arrow{
    font-size: 18px;
  }
}

/* ========================================
CONTACT
======================================== */

.top-contact{
  margin-top: 80px;
  background: #a8a8a8;
  color: #ffffff;

  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.top-contact__inner{
  width: calc(100% - 28px);
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.top-contact__title{
  font-family: "ivymode", serif;
  font-size: 50px;
  font-weight: 200;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* 本文 */
.top-contact__text{
  margin-top: 28px;
  font-size: 14px;
}

/* ボタン */
.top-contact__link-wrap{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ========================================
   PC
======================================== */

@media screen and (min-width: 1024px){

.top-contact {
	margin-top: 120px;
	aspect-ratio: unset;
	height: 510px;
}

  .top-contact__inner{
    width: calc(100% - 80px);
    max-width: 600px;
  }

  .top-contact__title{
    font-size: 72px;
  }

  .top-contact__lead{
    margin-top: 48px;
    font-size: 18px;
  }

  .top-contact__text{
    margin-top: 34px;
    font-size: 18px;
  }

  .top-contact__link-wrap{
    margin-top: 48px;
  }
}

/* ========================================
   Footer
======================================== */

.footer{
  padding: 75px 24px 10px;
}

.footer__inner{
  width: calc(100% - 28px);
  margin: 0 auto;
}

.footer__logo{
  width: 62.5%;
  max-width: 240px;
  margin: 0 auto;
}

.footer__logo img{
  width: 100%;
  display: block;
}

.footer-nav{
  margin-top: 64px;
}

.footer-nav__list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav__item a{
  font-size: 18px;
  line-height: 1.4;
  color: #574241;
  transition: opacity 0.3s ease;
}

.footer-nav__item a:hover{
  opacity: 0.7;
}

.footer__copyright {
    margin-top: 75px;
    text-align: center;
    font-size: 14px;
}

@media screen and (min-width: 1024px){
    .footer {
        padding: 140px 0 48px;
        max-width: 1200px;
        margin: 0 auto;
    }

  .footer__inner{
    width: min(100% - 80px, 1200px);
  }

.footer__logo {
	width: 360px;
	max-width: none;
	margin: 0 auto 0 0;
}

  .footer-nav{
    margin-top: 72px;
    width: 220px;
  }

  .footer-nav__list{
    gap: 20px;
  }

  .footer-nav__item a{
    font-size: 20px;
  }

  .footer__copyright{
    margin-top: 120px;
    font-size: 16px;
  }
}

/* ========================================
   Contact notice
======================================== */
.contact-form-notice {
  margin-bottom: 28px;
  padding: 14px 16px;
  border: 1px solid #a8a8a8;
  font-size: 14px;
  line-height: 1.8;
}

.contact-form-notice--success {
  background: #f7f7f7;
}

.contact-form-notice--error {
  background: #fffafa;
}
