@charset "UTF-8";
/* =========================
   基本設定
========================= */
:root {
  --text-main: #707070;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --red-main: #C90101;

  --font-main: "M PLUS 1p", sans-serif;
  --font-strong: "Roboto", sans-serif;

  --space-s: 20px;
  --space-m: 40px;
  --space-l: 80px;
  --space-xl: 150px;
  --space-xxl: 200px;
}

html {
	overflow: auto;
	overflow-x: clip;
	width: 100%;
	height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  background: #fff;

  overflow: auto;
	overflow-x: clip;
}

@media screen and (min-width:1080px) {
	body { font-size: 18px;}
}
@media screen and (max-width:767px) {
	body { font-size: 14px;}
}

/* セクションタイトル画像（共通） */
.section-heading {
  text-align: center;
  /* margin-top: 150px; */
  margin-bottom: 4em;
  padding-inline: 1em;
  position: relative;
  z-index: 10;

  @media (max-width:767px) {
    margin-bottom: 2.5em;
  }
}
.section-title-img {
  max-height: 70px;
  width: auto;
  margin: 0 auto;

  @media(max-width:787px) {
    max-height: 50px;
  }
  @media(max-width:480px) {
    max-height: 25px;
  }
}
.section-subtext {
  display: block;
  margin-top: 20px;
  font-size: 1.6rem;
  font-size: clamp(1.08rem, 0.973rem + 0.533vw, 1.44rem);
  color: inherit;

  @media(max-width:480px) {
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

section {
  padding: 6em 0;

  @media(max-width:767px) {
    padding: 5em 0;
  }
  @media(max-width:480px) {
    padding: 4em 0;
  }
}
section section{  padding-bottom: 0;}

/* 中見出し（共通） */
.howto-heading,
.menu-heading,
.news-heading,
.access-heading {
  font-family: var(--font-strong);
  font-weight: 900;
  font-style: italic;
  font-size: 2.6em;
  font-size: clamp(1.866rem, 1.682rem + 0.921vw, 2.488rem);
  margin: 0;
}

/* その他画像のパディング */
.img-padding { padding: 50px 0;}

p {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (min-width:1080px) {
	p { font-size: 18px;}
}
@media screen and (max-width:767px) {
	p { font-size: 14px; line-height: 1.5;}
}

/* =========================
      TOP VISUAL
========================= */
#top-visual {
  position: relative;
  padding: 0;
}

/* .top-slider {
  position: relative;
  overflow: hidden;
}

.top-slide {
  display: none;
}

.top-slide.active {
  display: block;
}

.top-prev,
.top-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.top-prev { left: 20px; }
.top-next { right: 20px; }

.top-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.top-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.top-dots .dot.active {
  background: var(--white);
} */

/* =========================
      WELCOME
========================= */
#welcome {
  /* padding-top: 0; */
  padding-bottom: 0;
  position: relative;
  background: url("../img/sozai/background.jpg") center/cover no-repeat;
  /* z-index: -10; */
  overflow: hidden;
}
.welcome-bg-img { width: 100%;}

#welcome .layout {

  @media(max-width: 480px) {
    padding-inline: 0.5rem;
  }
}

/* 円 */
.welcome-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5em 0;
  /* margin-top: -380px; */
  /* background: url("../img/sozai/back_circle.svg") ;
  background-position: center;
  background-size: 600px;
  background-repeat: no-repeat;
  position: relative; */
  z-index: 10;

  @media(max-width:767px) {
    padding: 2.5em 0;
  }
   @media(max-width:480px) {
    padding: 0;
  }
}
.welcome-circle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 600px;
  opacity: 0.6;
  z-index: -1;
}
.welcome-inner {
  /* position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  text-align: center;
  /* padding-top: 80px; */
}

.gunbai-icon {
  width: 80px;
  margin: 0 auto;
  
  @media(max-width:767px) {
    width: 60px;
  }
}
.welcome-title {
  font-family: var(--font-strong);
  font-weight: 900;
  font-size: 3rem;
  font-size: clamp(1.866rem, 1.682rem + 0.921vw, 2.488rem);
  color: var(--black);
  /* margin-top: 40px; */
  margin-bottom: 40px;

  @media(max-width:767px) {
    margin-bottom: 20px;
    font-size: 1.6em;
  }
}
.welcome-banner {
  width: 100%;
  max-width: 1350px;
  max-height: 60px;
  margin-bottom: 3rem;

  @media(max-width:480px) {
    max-height: 40px;
    margin-bottom: 1.5rem;
  }
}
.welcome-text {
  font-size: 1.6rem;
  font-size: clamp(1.08rem, 0.973rem + 0.533vw, 1.44rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(--black);

  @media(max-width:480px) {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

/* 雲 */
.cloud-wraper { position: relative;}
.cloud {
  position: absolute;
  width: 350px;
  opacity: 0.9;
  z-index: 1;

  @media (max-width:767px) {
    width: 250px;
  }
  @media (max-width:480px) {
    width: 200px;
  }
}
.cloud.cloud-lt { top: -10px; left: -70px; }
.cloud.cloud-rt { top: 50px; right: 10px; }
.cloud.cloud-lb { bottom: 0; left: 50px; }
.cloud.cloud-rb { bottom: 120px; right: -30px; }



/* 動画 */
/* .welcome-video {
  margin-top: 150px;
  padding: 0 40px;
}

.video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
} */

/* =========================
      HOW TO ENJOY
========================= */
#howto {
  background: url("../img/sozai/background_red.jpg") center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
  /* z-index: -10; */
}
/* #howto .section-subtext { color: var(--white);} */

.howto-block {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  /* max-width: 1400px; */
  margin: 0 auto 6em;
  padding-left: 10vw;
  /* padding: 0 80px; */

  @media (max-width:767px) {
    flex-direction: column;
    gap: 1.5em;
    padding-left: 7vw;
  }
  @media (max-width:480px) {
    margin-bottom: 3em;
    gap: 1em;
  }
}
.howto-block:last-child { margin-bottom: 0;}
.howto-block > div { flex: 1;}

.howto-block.reverse {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 10vw;

  @media (max-width:767px) {
    flex-direction: column;
    padding-right: 7vw;
  }
}

.howto-block img {
  width: 100%;
  max-width: 840px;
  object-fit: cover;
}


/* .howto-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.howto-slide {
  display: none;
}

.howto-slide.active {
  display: block;
}

.howto-prev,
.howto-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.howto-prev { left: 10px; }
.howto-next { right: 10px; }

.howto-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.howto-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.howto-dots .dot.active {
  background: var(--white);
} */

/* 中見出し（共通） */
.howto-heading { padding-right: 10vw;}
.howto-block.reverse .howto-heading { 
  padding-right: 0;
  padding-left: 10vw;
  text-align: right;
}

.howto-desc {
  font-size: 1.2em;
  font-size: clamp(0.9rem, 0.811rem + 0.444vw, 1.2rem);
  padding-right: 10vw;
}
.howto-block.reverse .howto-desc { padding-right: 0; padding-left: 10vw;}

/* 白ライン */
.howto-line {
  height: 2px;
  background: var(--white);
  margin: 20px 0;

  @media(max-width:767px) {
    margin: 10px 0;
  }
}



/* HOW TO 背景素材 */
.howto-cloud {
  position: absolute;
  opacity: 0.8;
  z-index: 1;
}
.howto-cloud.cloud1 { width: 350px; top: 70px; left: -100px; }
.howto-cloud.cloud2 { width: 250px; top: 380px; right: -80px; }
.howto-cloud.cloud3 { width: 130px; bottom: 400px; left: -20px; }
.howto-cloud.cloud4 { width: 280px; bottom: 20px; right: 120px; }

@media (max-width:767px) {
  .howto-cloud.cloud1 { width: 300px; }
  .howto-cloud.cloud2 { width: 200px; }
  .howto-cloud.cloud3 { width: 80px; }
  .howto-cloud.cloud4 { width: 230px; right: 40px; }
}
@media (max-width:480px) {
  .howto-cloud.cloud1 { width: 250px; }
  .howto-cloud.cloud2 { width: 150px; }
  .howto-cloud.cloud3 { width: 50px; }
  .howto-cloud.cloud4 { width: 180px; right: 20px; }
}

.howto-circle {
  position: absolute;
  opacity: 0.6;
  z-index: 1;
}
.howto-circle.circle-rt { width: 350px; top: -100px; right: -100px; }
.howto-circle.circle-mid-l { width: 200px; top: 180px; left: -20px; }
.howto-circle.circle-mid-r { width: 250px; top: 700px; right: -30px; }
.howto-circle.circle-lb { width: 150px; bottom: 0; left: 20px; }

@media (max-width:767px) {
  .howto-circle.circle-rt { width: 300px; }
  .howto-circle.circle-mid-l { width: 150px; }
  .howto-circle.circle-mid-r { width: 200px; }
  .howto-circle.circle-lb { width: 100px; left: 10px; }
}
@media (max-width:480px) {
  .howto-circle.circle-rt { width: 250px; }
  .howto-circle.circle-mid-l { width: 120px; }
  .howto-circle.circle-mid-r { width: 180px; }
  .howto-circle.circle-lb { width: 80px; }
}

/* =========================
      MENU
========================= */
#menu {
  background: var(--black);
  color: var(--white);
  position: relative;
  /* z-index: -10; */
}
/* #menu .section-subtext {
  color: var(--white);
} */

.menu-layout {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  /* padding: 0 80px;
  margin-top: 100px; */

  @media (max-width:767px) {
    flex-direction: column;
  }
}

.menu-left, .menu-right { flex: 1;}
.menu-right {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menu-heading {
  margin-bottom: 0.5em;
  color: var(--red-main);
}
.menu-start {
  font-size: 1.4em;
  font-size: clamp(1.08rem, 0.973rem + 0.533vw, 1.44rem);
  font-weight: 600;
  margin-bottom: 0.7em;
}
/* .menu-line-strong {
  height: 3px;
  background: var(--white);
  margin-bottom: 20px;
}
.menu-line-thin {
  height: 2px;
  background: var(--white);
  margin: 6px 0 10px;
} */

.menu-item {
  border-top: 2px solid var(--white);
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8em 0 0.5em;
  font-size: 1rem;
  border-bottom: 1px solid var(--white);

  /* @media (max-width:767px) {
    flex-direction: column;
  } */
}
.menu-item-label::before {
  content: "■";
  margin-right: 2px;
}


.menu-reserve { margin-top: 2em;}


/* MENU 背景円 */
.menu-circle {
  position: absolute;
  opacity: 0.6;
  z-index: 1;
}
.menu-circle.circle-rt { width: 320px; top: 30px; right: -10px;}
.menu-circle.circle-lb { width: 250px; bottom: -80px; left: -100px;}

@media (max-width:767px) {
  .menu-circle.circle-rt { width: 270px; }
  .menu-circle.circle-lb { width: 200px; }
}
@media (max-width:480px) {
  .menu-circle.circle-rt { width: 220px; }
  .menu-circle.circle-lb { width: 150px; }
}

/* =========================
      NEWS
========================= */
#news {
  background: var(--white);
  color: var(--text-main);
  position: relative;
  /* z-index: -10; */
}

.news-wrapper {
  /* padding: 0 80px; */
}

.news-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0 0.2em;
  border-bottom: 1px solid #aaa;
  padding-bottom: 1em;
  margin-bottom: 2em;
  list-style: none;

  @media(max-width: 480px) {
     padding-bottom: 0.5em;
    margin-bottom: 1em;
  }
}

.news-item::before {
  content: "";
  display: inline-block;
  margin-top: 5px;
  width: 18px;
  height: 18px;
  background: var(--red-main);

  @media(max-width: 767px) {
    margin-top: 2px;
  }
}

.news-text {
  
}

/* .news-divider {
  margin-top: 10px;
  height: 1px;
  background: var(--text-main);
} */

/* NEWS 背景円 */
.news-circle {
  position: absolute;
  opacity: 0.6;
  z-index: 1;
}
.news-circle.circle-rt { width: 230px; top: -70px; right: -100px;}
.news-circle.circle-lb { width: 350px; bottom: -80px; left: -20px; opacity: 0.3;}

@media (max-width:767px) {
  .news-circle.circle-rt { width: 170px; }
  .news-circle.circle-lb { width: 300px; }
}
@media (max-width:480px) {
  .news-circle.circle-rt { width: 130px; }
  .news-circle.circle-lb { width: 200px; }
}

/* =========================
      INSTAGRAM
========================= */
#instagram {
  background: #f5f5f5;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 80px;
}

.insta-item {
  background: #ddd;
  padding-top: 125%; /* 4:5 */
}

.instagram-follow {
  text-align: center;
  padding: 50px 0;
}

.btn-insta {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-insta img {
  width: 20px;
}

/* =========================
      ACCESS
========================= */
#access {
  background: var(--black);
  color: var(--white);
  position: relative;
  /* z-index: -10; */
}

/* .access-wrapper {
  display: flex;
  gap: 40px;
  padding: 0 80px;
} */

/* .access-block {flex: 1;} */

/* .access-heading {
  font-family: var(--font-strong);
  font-weight: 900;
  font-style: italic;
  font-size: 52px;
  margin-bottom: 20px;
} */

/* .access-text { font-size: 16px;} */

.access-block + .access-block {
  margin-top: 4em;
  padding-top: 4em;
  border-top: 1px solid var(--white);
}

.access-map {
  margin-bottom: 5em;

  @media(max-width:480px) {
    margin-bottom: 3em;
  }
}
.access-map p {
  text-align: center;
  font-size: 1.2em;
  font-size: clamp(1.08rem, 0.973rem + 0.533vw, 1.44rem);
  font-weight: 600;
  margin-top: 0.5em;

  @media(max-width:480px) {
    line-height: 1.4;
  }
}
.access-map iframe {
  max-height: 400px;

  @media(max-width:767px) {
    max-height: 300px;
  }
  @media(max-width:480px) {
    max-height: 200px;
  }
}
.access-wraper{
  display: flex;
  gap: 3em;
  justify-content: space-between;
  align-items: flex-start;

  @media(max-width:787px) {
    gap: 1.5em;
  }
  @media(max-width:480px) {
    flex-direction: column;
    align-items: center;
  }
}
.access-left, .access-right { flex: 1;}
.access-left {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.access-image img {
  margin-bottom: 0.5em;
}

.pickup-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  padding: 0.3em 1em;
  border: 1px solid var(--red-main);
  font-weight: 600;

  @media(max-width:480px) {
  flex-direction: column;
  gap: 0.5em;
  padding: 0.7em;
  }
}
.pickup-info h3 {
  font-size: 1.4em;
  font-size: clamp(1.08rem, 0.973rem + 0.533vw, 1.44rem);
  margin: 0;
}
.pickup-info-start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pickup-info-pickup p{
  font-size: 1.2em;
  font-size: clamp(0.9rem, 0.811rem + 0.444vw, 1.2rem);

  @media(max-width:480px) {
    font-size: 1.1rem;
  }
}
@media (max-width:480px) {
  .pickup-arrow { transform: rotate(90deg);}
}

/* ACCESS 背景素材 */
.access-cloud {
  position: absolute;
  opacity: 0.8;
  z-index: 1;
}
.access-cloud.cloud1 { width: 350px; top: 70px; left: -100px; }
.access-cloud.cloud2 { width: 280px; top: 20px; right: -120px; }
.access-cloud.cloud3 { width: 150px; bottom: 400px; left: -10px; }
.access-cloud.cloud4 { width: 380px; bottom: 20px; right: -100px; }

@media (max-width:767px) {
  .access-cloud.cloud1 { width: 300px; }
  .access-cloud.cloud2 { width: 230px; }
  .access-cloud.cloud3 { width: 100px; }
  .access-cloud.cloud4 { width: 330px; }
}
@media (max-width:480px) {
  .access-cloud.cloud1 { width: 200px; }
  .access-cloud.cloud2 { width: 150px; }
  .access-cloud.cloud3 { width: 80px; }
  .access-cloud.cloud4 { width: 250px; }
}


/* =========================
      レスポンシブ
========================= */

/* 1920px 以下 */
@media (max-width: 1920px) {
  /* .welcome-center {
    margin-top: -320px;
  } */
}

/* 900px 以下 */
/* @media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 20px;
  }

  .header-nav {
    order: 3;
    width: 100%;
  }

  .header-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .howto-block,
  .menu-layout,
  .access-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .news-wrapper {
    padding: 0 20px;
  }

  .btn-footer {
    width: 90%;
  }
} */

/* 600px 以下 */
/* @media (max-width: 600px) {
  .section-heading {
    margin-top: 100px;
  }

  .howto-heading,
  .menu-heading,
  .access-heading {
    font-size: 32px;
  }

  .welcome-title {
    font-size: 32px;
  }

  .welcome-text {
    font-size: 22px;
    line-height: 36px;
  }

  .menu-start {
    font-size: 22px;
  }

  .news-text {
    font-size: 16px;
  }
} */
