@charset "UTF-8";

/* =========================================================
   Foundation
   ========================================================= */
:root {
  /* Fonts */
  --font-en: 'Bellefair', serif;
  --font-ja-mincho: 'Noto Serif JP', serif;
  --font-ja-gothic: 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  
  /* Colors */
  --color-text: #333333;
  --color-bg: #FFFFFF;
  --color-footer-bg: #33322f;
  --color-border: #745539;
  --color-deco-brown: #e2ceb7;
  --color-deco-red: #5b2e22;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-ja-mincho);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

img, picture, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
  margin: 0;
  padding: 0;
}

/* =========================================================
   Layout
   ========================================================= */
.l-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.l-footer {
  background-color: var(--color-footer-bg);
  color: #ffffff;
  padding: 60px 24px 30px;
}

.l-footer__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.l-footer__logo {
  width: 100%;
  max-width: 707px;
  text-align: center;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.l-footer__sns a {
  display: inline-flex;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}
.l-footer__sns a:hover {
  color: #e2ceb7;
  transform: translateY(-2px);
}

.l-footer__bottom {
  text-align: center;
}

.l-footer__copy {
  font-family: var(--font-ja-gothic);
  font-size: clamp(0.5625rem, 0.44vw + 0.46rem, 0.8125rem);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 60px 100px 30px;
  }

  .l-footer__inner {
    gap: 20px;
  }

  .l-footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .l-footer__bottom {
    text-align: right;
  }
}

/* =========================================================
   Object - Component
   ========================================================= */
/* Definition List (Information用) */
.c-def-list {
  width: 100%;
  font-family: var(--font-ja-gothic);
  font-size: clamp(0.875rem, 0.22vw + 0.82rem, 1rem);
  border-top: 1px solid var(--color-deco-brown);
}

.c-def-list__row {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-deco-brown);
}

.c-def-list dt {
  margin-bottom: 8px;
  line-height: 1.6;
}

.c-def-list dd {
  margin: 0;
  line-height: 1.8;
}
.c-def-list dd a {
  text-decoration: underline;
}
.c-def-list dd a:hover {
  text-decoration: none;
}

/* =========================================================
   Object - Project
   ========================================================= */
/* Hero Section */
.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.p-hero__slider,
.p-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hero__slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.p-hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.p-hero__content {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 80%;
}
.p-hero__subtitle {
  font-size: clamp(1.2rem, 3.96vw + 0.27rem, 3.4375rem);
  font-family: var(--font-en);
  margin-top: 30px;
  color: var(--color-text);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 1s ease;
}
.p-hero.is-dark-bg .p-hero__subtitle {
  color: #ffffff;
}
.p-hero__logo img {
  transition: filter 1s ease;
}
.p-hero.is-dark-bg .p-hero__logo img {
  filter: brightness(0) invert(1);
}

.p-hero__credit {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 10;
  color: #ffffff;
  font-family: var(--font-ja-gothic);
  letter-spacing: 0.05em;
  font-size: clamp(0.5rem, 0.66vw + 0.34rem, 0.875rem);
}

@keyframes heroFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes heroFadeInUp {
  0% { 
    opacity: 0; 
    transform: translateY(20px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
  }
}

.p-hero__slide:first-child picture {
  animation: heroFadeIn 2s ease-out 0s backwards;
}
.p-hero__logo {
  animation: heroFadeInUp 1.5s ease-out 0.4s backwards;
}
.p-hero__subtitle {
  animation: heroFadeInUp 1.5s ease-out 0.8s backwards;
}


/* Intro Section */
.p-intro {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.p-intro__catch {
  font-size: clamp(1.125rem, 1.1vw + 0.87rem, 1.75rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
}
.p-intro__text {
  font-size: clamp(0.875rem, 0.44vw + 0.77rem, 1.125rem);
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.p-intro__text p {
  margin-bottom: 24px;
}
.p-intro__text p.p-intro__att {
  color: #ca9e72;
}
.p-intro__deco {
  position: absolute;
  z-index: -1;
}
.p-intro__deco--brown {
  background-color: var(--color-deco-brown);
  top: 0;
  right: 0;
  width: 60vw;
  height: 50px;
}
.p-intro__deco--red {
  background-color: var(--color-deco-red);
  bottom: 3%;
  left: 0;
  width: 8vw;
  height: 220px;
}

/* Info Section */
.p-info {
  padding: 0 0 100px;
}
.p-info__content {
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-info__heading {
  font-size: clamp(1.6rem, 2.21vw + 0.73rem, 2.5rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.08em;
  margin: 0;
  margin-bottom: 30px;
}
.p-info__map {
  width: 100%;
  height: 300px;
  margin-top: 80px;
  background-color: #eee;
}
.p-info__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================================================
   Object - Utility
   ========================================================= */
.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.u-font-en {
  font-family: var(--font-en);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.u-text-large {
  font-size: clamp(1.5rem, 3.98vw + 0.57rem, 3.75rem);
}
.u-text-small {
  font-size: clamp(0.625rem, 0.44vw + 0.52rem, 0.875rem);
}

/* =========================================================
   Media Queries (PC用スタイル上書き)
   ========================================================= */
@media screen and (min-width: 768px) {
  .p-hero {
    height: 100vh;
  }
  .p-hero__credit {
    right: 20px;
    bottom: 20px;
  }  
  .p-intro {
    padding: 150px 0;
  }
  .p-intro__catch {
    margin-bottom: 80px;
  }
  .p-intro__deco--brown {
    width: 25vw;
    height: 150px;
  }
  .p-intro__deco--red {
    width: 12vw;
    height: 480px;
    bottom: 0px;
  }
    
  .p-info {
    padding: 100px 0 300px;
  }

  .p-info__inner {
    display: flex;
    align-items: stretch;
    gap: 0;
  }

  .p-info__content {
    width: 50%;
  }

  .p-info__map {
    width: 50%;
    height: auto;
    margin-top: 0;
    display: flex;
  }
  .p-info__map iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
    
  .c-def-list__row {
    flex-direction: row;
  }
  .c-def-list dt {
    width: 120px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .c-def-list dd {
    width: calc(100% - 120px);
  }
}


/*------------------------------------*/
.p-info__contact {
    text-align: center;
    margin-top: 100px;
    font-size: clamp(0.875rem, 0.22vw + 0.82rem, 1rem);
    font-family: var(--font-ja-gothic);
}
.p-info__contact a {
    text-decoration: underline;
}
.p-info__contact a:hover {
    text-decoration: none;
}

.l-footer__sns02 {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.f_contact {
    margin-bottom: 20px;
    font-size: clamp(0.625rem, 0.44vw + 0.52rem, 0.875rem);
}
@media screen and (min-width: 768px) {
    .l-footer__sns02 {
      text-align: right;
    }
}

/*------------------------------------*/



.u-m-xs { display: none; }
.u-p-xs { display: block; }
@media screen and (max-width: 500px) {
	.u-m-xs { display: block; } .u-p-xs { display: none; }
}


