@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.h1 {
  color: #999;
  margin: 1vw 2vw;
  font-size: 0.6vw;
  letter-spacing: 0.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .h1 {
    font-size: 1vw;
    letter-spacing: 0.4vw;
  }
}
@media screen and (max-width: 768px) {
  .h1 {
    font-size: 2vw;
    letter-spacing: 0.8vw;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

.header.change-color {
  background-color: #67B8B6;
  transition: 0.3s;
}

.header02.change-color {
  background-color: #fff;
  transition: 0.3s;
}

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 2.5vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#news .news_contents {
  width: 60%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #news .news_contents {
    width: 90%;
    margin-bottom: 16vw;
  }
}
#news .news_contents ul {
  list-style: none;
}
#news .news_contents .thumb {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #news .news_contents .thumb {
    margin-bottom: 4vw;
  }
}
#news .news_contents .date {
  margin-bottom: 0.4vw;
}
#news .news_contents .title {
  font-size: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents .title {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents .title {
    font-size: 7vw;
    margin-bottom: 4vw;
  }
}
#news .news_contents .descn {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents .descn {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents .descn {
    font-size: 3.4vw;
  }
}

/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff; /* 背景色 */
  z-index: 9999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #loading {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #loading {
    flex-flow: column;
  }
}
#loading .loading_inner {
  width: 100vw;
  height: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #loading .loading_inner .pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  #loading .loading_inner .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #loading .loading_inner .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #loading .loading_inner .sp {
    display: none !important;
  }
}
#loading .loading_inner .loading_links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #loading .loading_inner .loading_links {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #loading .loading_inner .loading_links {
    flex-flow: column;
  }
}
#loading .loading_inner .loading_links a {
  text-decoration: none;
  display: block;
  width: 33.3333333333%;
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #loading .loading_inner .loading_links a {
    width: 100% !important;
    height: 33.3333333333vh;
  }
}
@media screen and (max-width: 768px) {
  #loading .loading_inner .loading_links a {
    width: 100% !important;
    height: 33.3333333333vh;
  }
}
#loading .loading_inner .loading_links a .loading_bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #loading .loading_inner .loading_links a .loading_bg {
    background-position: top left !important;
  }
}
@media screen and (max-width: 768px) {
  #loading .loading_inner .loading_links a .loading_bg {
    background-position: top left !important;
  }
}
#loading .loading_inner .loading_links a .loading_bg .loading_text {
  position: absolute;
  z-index: 200;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  top: 50%;
  left: 50%;
  width: 90%;
  margin: auto;
  transform: translate(-50%, -20%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
#loading .loading_inner .loading_links a .loading_bg .loading_text h5 {
  font-weight: 500;
}
#loading .loading_inner .loading_links a .loading_bg .loading_text.is-show {
  opacity: 1;
  transform: translate(-50%, -50%);
}
#loading .loading_inner .loading_links a .loading_bg .loading_btns {
  position: absolute;
  bottom: 5%;
  right: 5%;
}
@media screen and (max-width: 768px) {
  #loading .loading_inner .loading_links a .loading_bg .loading_btns {
    right: 0 !important;
  }
}
#loading .loading_inner .loading_links a .loading_bg .loading_btns .loading_btn {
  position: relative;
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #loading .loading_inner .loading_links a .loading_bg .loading_btns .loading_btn {
    width: 55%;
  }
}
#loading .loading_inner .loading_links a .loading_bg .loading_btns .loading_btn img {
  display: block;
  width: 100%;
  height: auto;
}
#loading .loading_inner .loading_links a .loading_bg .loading_btns .loading_btn .img_hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#loading .loading_inner .loading_links a .loading_bg .loading_btns .loading_btn:hover .img_hover {
  opacity: 1;
}
#loading .loading_inner .loading_links a .loading_bg .loading_btns .loading_btn:hover .img_default {
  opacity: 0;
}

/* ローディング非表示 */
#loading.is-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .site-header .header-inner {
    padding: 14px 20px;
  }
}

.header-sns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-sns .sns-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-sns .sns-line img {
  width: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header-sns .sns-line img {
    width: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .header-sns .sns-line img {
    width: 8vw;
  }
}
.header-sns .sns-instagram img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header-sns {
    gap: 8px;
  }
  .header-sns .sns-instagram img {
    width: 30px;
    height: 30px;
  }
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.header-logo a {
  display: block;
  text-decoration: none;
}
.header-logo .logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-logo .logo-hook {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-logo .logo-hook .hook-top {
  width: 7px;
  height: 11px;
  background: #444343;
  border-radius: 10px 10px 0 0;
}
.header-logo .logo-hook .hook-mid {
  width: 29px;
  height: 12px;
  background: linear-gradient(#FCCACE, #F0A8AE);
  border-radius: 14px 14px 4px 4px;
}
.header-logo .logo-hook .hook-base {
  width: 50px;
  height: 12px;
  background: linear-gradient(#FCCACE, #F0A8AE);
  border-radius: 4px;
}
.header-logo .logo-orb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 67px;
  height: 67px;
}
.header-logo .logo-orb img {
  width: 100%;
}
.header-logo .logo-orb .logo-glow {
  position: absolute;
  top: -6%;
  left: -6%;
  width: 112%;
  height: 112%;
  pointer-events: none;
}
.header-logo .logo-orb .logo-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header-logo .logo-orb {
    width: 30px;
    height: 30px;
  }
  .header-logo .logo-hook .hook-base {
    width: 40px;
  }
  .header-logo .logo-hook .hook-mid {
    width: 22px;
  }
  .header-logo .logo-hook .hook-top {
    width: 6px;
    height: 9px;
  }
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.hamburger-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    width: 42px;
    height: 42px;
  }
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 35%;
  height: 100vh;
  background: linear-gradient(#FCCACE, #F0A8AE);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 200;
  display: flex;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .nav-panel {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .nav-panel {
    width: 100%;
  }
}
.nav-panel.is-open {
  transform: translateX(0);
}
.nav-panel .nav-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  z-index: 1;
  transition: opacity 0.2s;
}
.nav-panel .nav-close svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-panel .nav-close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .nav-panel .nav-close {
    width: 42px;
    height: 42px;
  }
}
.nav-panel .nav-logo {
  position: absolute;
  right: 18px;
  top: 20%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.nav-panel .nav-logo img {
  height: 120px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .nav-panel .nav-logo {
    right: 14px;
  }
  .nav-panel .nav-logo img {
    height: 100px;
  }
}
.nav-panel .nav-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 8vw 4vw;
  padding-right: 8vw;
  padding-top: 16vw;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .nav-panel .nav-body {
    padding: 80px 80px 50px 30px;
  }
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.nav-links .nav-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links .nav-row a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-links .nav-row a:hover {
  opacity: 0.7;
}
.nav-links .nav-row .nav-sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .nav-links {
    gap: 14px;
  }
  .nav-links .nav-row a {
    font-size: 1.8rem;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 0 8px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
}
.nav-phone img {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
}
.nav-phone a {
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  white-space: nowrap;
}
.nav-phone a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .nav-phone a {
    font-size: 2rem;
  }
}

.nav-panel .nav-sns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.nav-panel .nav-sns .sns-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-panel .nav-sns .sns-link:hover {
  opacity: 0.7;
}
.nav-panel .nav-sns .sns-line img {
  width: 50px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav-panel .nav-sns .sns-line span {
  font-size: 1.4rem;
  color: #f4b5ba;
  margin-left: 6px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.nav-panel .nav-sns .sns-instagram img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

#fv {
  position: relative;
  width: 100%;
  height: 45.42vw;
  max-height: 654px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #fv {
    height: 50vw;
    max-height: none;
  }
}
@media screen and (max-width: 768px) {
  #fv {
    height: 60vw;
    padding-top: 15vw;
    max-height: none;
    background-color: #86D2D0;
  }
}

.fv-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.fv-slide.is-active {
  opacity: 1;
}
.fv-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fv-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  display: none !important;
}

.fv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.fv-dot.is-active {
  background: #fff;
}

#top_news .top_news {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 90%;
  margin: 4vw auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    margin: 8vw auto;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_headline {
    width: 45%;
  }
  #top_news .top_news .top_news_headline img {
    width: 100%;
  }
}
#top_news .top_news .top_news_contents ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul {
    flex-flow: column;
  }
}
#top_news .top_news .top_news_contents ul a {
  width: 30%;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#top_news .top_news .top_news_contents ul a li {
  width: 100%;
  color: #647C7B;
  text-align: center;
}
#top_news .top_news .top_news_contents ul a li .thumb {
  margin-bottom: 0.5vw;
  width: 100%;
}
#top_news .top_news .top_news_contents ul a li .thumb img {
  width: 100%;
}
#top_news .top_news .top_news_contents ul a li .date {
  margin-bottom: 0.5vw;
}

.about {
  position: relative;
  width: 100%;
  padding: 80px 0 120px;
  background: #fff;
  overflow-x: hidden;
}

.about-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.about-bg img {
  display: block;
  width: 100%;
  height: 100%;
}
.about-bg--left {
  left: -6%;
  top: 20%;
  width: 48%;
  aspect-ratio: 628/624;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-bg--left {
    width: 60%;
    left: -12%;
  }
}
@media screen and (max-width: 768px) {
  .about-bg--left {
    width: 90%;
    left: -25%;
    top: 20%;
  }
}
.about-bg--right {
  right: -4%;
  bottom: 20%;
  width: 36%;
  aspect-ratio: 718/695;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-bg--right {
    width: 48%;
    right: -12%;
  }
}
@media screen and (max-width: 768px) {
  .about-bg--right {
    bottom: 25%;
    width: 60%;
  }
}

.about-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .about-inner {
    padding: 0 24px;
  }
}

.about-title {
  margin-bottom: 16px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .about-title {
    width: 45%;
  }
}
.about-title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 56px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-block {
    gap: 3%;
    margin-bottom: 40px;
  }
}
.about-block--1 {
  padding-top: 40vw;
}
@media screen and (max-width: 768px) {
  .about-block--1 {
    flex-direction: column-reverse !important;
    padding-top: 8vw;
  }
}
.about-block--1 .about-block__photo {
  top: 10%;
  right: 0%;
}
@media screen and (max-width: 768px) {
  .about-block--1 .about-block__photo {
    width: 140%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.about-block--2 {
  justify-content: flex-end;
  padding-bottom: 40vw;
}
@media screen and (max-width: 768px) {
  .about-block--2 {
    padding-bottom: 8vw;
  }
}
.about-block--2 .about-block__photo {
  bottom: 0%;
  left: 0%;
  top: auto;
  right: auto;
}
@media screen and (max-width: 768px) {
  .about-block--2 .about-block__photo {
    width: 140%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 768px) {
  .about-block {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
  }
}
.about-block__text {
  min-width: 0;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-block__text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .about-block__text {
    width: 100%;
  }
}
.about-block__subtitle {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #647c7b;
  letter-spacing: 0.17em;
  line-height: 1.2;
  margin-bottom: 12px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-block__subtitle {
    font-size: 2rem;
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .about-block__subtitle {
    font-size: 1.8rem;
    white-space: normal;
  }
}
.about-block__wave {
  width: 14vw;
  max-width: 200px;
  min-width: 100px;
  margin-bottom: 20px;
}
.about-block__wave img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-block__wave {
    width: 130px;
  }
}
.about-block__body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #647c7b;
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-block__body p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .about-block__body p {
    font-size: 1.4rem;
  }
}
.about-block--2 .about-block__body p {
  line-height: 2.6;
}
.about-block__photo {
  flex: 0 0 42%;
  width: 80%;
  position: absolute;
  top: 0;
  right: 5%;
}
.about-block__photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-block__photo {
    flex: 0 0 46%;
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .about-block__photo {
    flex: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: static;
  }
}

.studio-b {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  .studio-b {
    margin-bottom: 16vw;
  }
}

.studio-b-content {
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-content {
    min-height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-content {
    flex-direction: column;
    min-height: 0;
    width: 95%;
    margin: auto;
    gap: 8vw;
  }
}

.studio-b-panel {
  position: relative;
  flex: 0 0 55%;
  width: 55%;
  background: linear-gradient(219.601deg, #f0a8ae 57.016%, #f2d5d8 95.156%);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-panel {
    flex: 0 0 55%;
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-panel {
    flex: none;
    width: 100%;
    border-radius: 20px;
  }
}
.studio-b-panel__texture {
  position: absolute;
  inset: 0;
  background-image: url("../img/studio-b-floral.png");
  background-size: 400px 320px;
  background-position: top left;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.studio-b-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 56px 56px 60px;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-panel__inner {
    padding: 48px 40px 48px 48px;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-panel__inner {
    padding: 48px 24px 48px 24px;
  }
}
.studio-b-panel__catch {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1.6;
  margin-bottom: 6px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-panel__catch {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-panel__catch {
    font-size: 2.4rem;
  }
}
.studio-b-panel__sub {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-panel__sub {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-panel__sub {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.studio-b-panel__body {
  flex: 1;
}
.studio-b-panel__body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-panel__body p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-panel__body p {
    font-size: 1.4rem;
  }
}

.studio-b-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 30px;
  border: 1px solid #fff;
  border-radius: 70px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 32px;
  align-self: flex-end;
  transition: opacity 0.2s;
}
.studio-b-btn:hover {
  opacity: 0.7;
}
.studio-b-btn__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 2vw;
  height: 4px;
}
.studio-b-btn__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .studio-b-btn {
    font-size: 1.4rem;
    padding: 9px 24px;
    margin-top: 24px;
  }
}

.studio-b-photos {
  position: relative;
  flex: 1 1 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-photos {
    min-height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-photos {
    width: 100%;
    min-height: 320px;
  }
}

.studio-b-watermark {
  position: absolute;
  bottom: 12px;
  left: -8%;
  width: 28vw;
  z-index: 50;
  pointer-events: none;
}
.studio-b-watermark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-watermark {
    bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-watermark {
    bottom: -18px;
    left: 50%;
    width: 70vw;
    transform: translate(-50%, 0);
  }
}

.studio-b-photo {
  overflow: hidden;
}
.studio-b-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.studio-b-photo--photographer {
  inset: 0;
  border-radius: 20px 0 0 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .studio-b-photo--photographer {
    border-radius: 20px 20px 0 0;
  }
}
.studio-b-photo--photographer img {
  -o-object-position: center top;
     object-position: center top;
}
.studio-b-photo--kimono {
  position: absolute;
  bottom: 60px;
  left: -20%;
  width: 105%;
  border-radius: 20px;
  z-index: 2;
  height: 52vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-b-photo--kimono {
    height: 70vw;
    bottom: 48px;
  }
}
@media screen and (max-width: 768px) {
  .studio-b-photo--kimono {
    width: 100%;
    bottom: 0;
    left: 0;
    height: 80vw;
  }
}

.gallery {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  background: #fff;
  overflow: hidden;
}

.gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery-inner {
    padding: 0 24px;
  }
}

.gallery-title {
  margin-bottom: 40px;
  line-height: 0;
}
.gallery-title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .gallery-title {
    margin-bottom: 28px;
  }
}

.gallery-slider {
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .gallery-slider {
    padding-bottom: 48px;
  }
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
  animation: gallery-scroll 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .gallery-track {
    gap: 16px;
    animation-duration: 14s;
  }
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.gallery-item {
  flex-shrink: 0;
  width: 10%;
}
@media screen and (max-width: 768px) {
  .gallery-item {
    width: 5%;
  }
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 270px;
}

.menu {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  background: #fff;
  overflow-x: hidden;
  padding-bottom: 15vw;
}
@media screen and (max-width: 768px) {
  .menu {
    overflow: visible;
    padding-bottom: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .menu .pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  .menu .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .menu .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu .sp {
    display: none;
  }
}

.menu-bg-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  pointer-events: none;
  z-index: 0;
}
.menu-bg-watermark img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .menu-bg-watermark {
    width: 100%;
    opacity: 0.7;
    top: -15%;
  }
}

.menu-bg-blob {
  position: absolute;
  right: -4%;
  top: 5%;
  width: 34%;
  aspect-ratio: 433.997/481.035;
  pointer-events: none;
  z-index: 0;
}
.menu-bg-blob img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-bg-blob {
    width: 46%;
    right: -8%;
  }
}
@media screen and (max-width: 768px) {
  .menu-bg-blob {
    width: 45%;
    top: 60%;
    right: 0;
  }
}

.menu-bg-blob02 {
  position: absolute;
  left: 0%;
  top: 45%;
  width: 20%;
  aspect-ratio: 433.997/481.035;
  pointer-events: none;
  z-index: 0;
}
.menu-bg-blob02 img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-bg-blob02 {
    width: 46%;
    right: -8%;
  }
}
@media screen and (max-width: 768px) {
  .menu-bg-blob02 {
    width: 45%;
    top: 70%;
  }
}

.menu-bg-floral {
  position: absolute;
  right: 0;
  bottom: 0%;
  width: 30%;
  pointer-events: none;
  z-index: 0;
}
.menu-bg-floral img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-bg-floral {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .menu-bg-floral {
    width: 70%;
    bottom: 0%;
    left: auto;
    right: 0;
    opacity: 0.6;
  }
}

.menu-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu-inner {
    padding: 0 24px;
  }
}

.menu-title {
  margin-bottom: 20px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .menu-title {
    width: 45%;
  }
}
.menu-title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.menu-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .menu-intro {
    margin-bottom: 32px;
  }
}

.menu-intro__text {
  text-align: right;
  margin-bottom: 20px;
}
.menu-intro__text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #647c7b;
  letter-spacing: 0.1em;
  line-height: 2.6;
  margin-bottom: 0;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-intro__text p {
    font-size: 1.5rem;
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .menu-intro__text p {
    font-size: 1.4rem;
    white-space: normal;
    text-align: end;
  }
}
@media screen and (max-width: 768px) {
  .menu-intro__text {
    text-align: left;
  }
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 30px;
  border: 1px solid #647c7b;
  border-radius: 70px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #647c7b;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: opacity 0.2s;
}
.menu-btn:hover {
  opacity: 0.7;
}
.menu-btn__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 21px;
  height: 4px;
}
.menu-btn__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .menu-btn {
    font-size: 1.4rem;
    padding: 9px 24px;
  }
}

.menu-cards {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-cards {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .menu-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.menu-cards .menu-card_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: auto;
  gap: 2vw;
}
.menu-cards .menu-card_flex .menu-card {
  width: 50%;
}
.menu-cards .menu-card_flex .menu-card img {
  width: 100%;
}

.menu-card {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-card--arch {
  flex: 0 0 26%;
  width: 26%;
  aspect-ratio: 380/520;
  border-radius: 500px 500px 20px 20px;
}
.menu-card--arch img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-card--arch {
    flex: 0 0 28%;
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  .menu-card--arch {
    flex: none;
    width: 60%;
    max-width: 280px;
  }
}

.menu-card--kimono {
  flex: 1 1 0;
  border-radius: 330px 330px 20px 20px;
}
.menu-card--kimono img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-card--kimono {
    flex: 1 1 0;
  }
}
@media screen and (max-width: 768px) {
  .menu-card--kimono {
    flex: none;
    width: 90%;
    max-width: 400px;
  }
}

#lower {
  overflow: hidden;
}
#lower .lower_concept {
  width: 100%;
  height: 40vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lower .lower_concept {
    height: 60vw;
  }
}
#lower .lower_concept .lower_point01 {
  position: absolute;
  top: -2vw;
  left: 2vw;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #lower .lower_concept .lower_point01 {
    width: 35%;
  }
}
#lower .lower_concept .lower_point01 img {
  width: 100%;
}
#lower .lower_concept .lower_point02 {
  position: absolute;
  top: 10vw;
  right: -2vw;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #lower .lower_concept .lower_point02 {
    width: 30%;
    top: 25vw;
  }
}
#lower .lower_concept .lower_point02 img {
  width: 100%;
}
#lower .lower_concept .lower_headline {
  background-image: url("./img/lower_bg01.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 65%;
  height: 30vw;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#lower .lower_concept .lower_headline img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5vw;
}
@media screen and (max-width: 768px) {
  #lower .lower_concept .lower_headline img {
    width: auto;
    height: 10vw;
  }
}

#concept-intro {
  overflow: hidden;
}
#concept-intro .concept-intro {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #concept-intro .concept-intro {
    flex-direction: column;
  }
}
#concept-intro .concept-intro__image {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-intro .concept-intro__image {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #concept-intro .concept-intro__image {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
#concept-intro .concept-intro__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#concept-intro .concept-intro__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-intro .concept-intro__text {
    width: 55%;
    padding: 60px 50px 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  #concept-intro .concept-intro__text {
    width: 100%;
    padding: 48px 24px;
  }
}
#concept-intro .concept-intro__headline {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.408em;
  line-height: 2;
  color: #647c7b;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-intro .concept-intro__headline {
    font-size: 2rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 768px) {
  #concept-intro .concept-intro__headline {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
  }
}
#concept-intro .concept-intro__body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2.6;
  color: #647c7b;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-intro .concept-intro__body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #concept-intro .concept-intro__body {
    font-size: 1.3rem;
    line-height: 2.2;
  }
}

#concept-gallery {
  padding: 80px 0 100px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-gallery {
    padding: 60px 0 80px;
  }
}
@media screen and (max-width: 768px) {
  #concept-gallery {
    padding: 48px 0 64px;
  }
}
#concept-gallery .concept-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-gallery .concept-gallery {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  #concept-gallery .concept-gallery {
    padding: 0 16px;
  }
}
#concept-gallery .concept-gallery__title {
  font-family: "mendl-sans-dusk", sans-serif;
  font-weight: 800;
  font-size: 9.6rem;
  line-height: 1;
  color: #70bab8;
  text-align: center;
  letter-spacing: 0.02em;
  width: 40%;
  margin: auto;
  margin-bottom: 48px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-gallery .concept-gallery__title {
    font-size: 7rem;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 768px) {
  #concept-gallery .concept-gallery__title {
    width: 80%;
    margin: auto;
    font-size: 5rem;
    margin-bottom: 28px;
  }
}
#concept-gallery .concept-gallery__title img {
  width: 100%;
}
#concept-gallery .concept-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept-gallery .concept-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  #concept-gallery .concept-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
#concept-gallery .concept-gallery__item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 768px) {
  #concept-gallery .concept-gallery__item {
    border-radius: 12px;
  }
}
#concept-gallery .concept-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#concept-gallery .concept-gallery__item--crop-mid img {
  -o-object-position: center 33%;
     object-position: center 33%;
}
#concept-gallery .concept-gallery__item--crop-bottom img {
  -o-object-position: center bottom;
     object-position: center bottom;
}

#about-info {
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  #about-info {
    padding: 40px 0 60px;
  }
}

#about-info .menu-card--teal {
  background: linear-gradient(230.65deg, rgb(112, 186, 184) 29.7%, rgb(177, 226, 225) 97.5%);
}

.menu-row--payment {
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .menu-row--payment {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.menu-row--payment .menu-row__payment-list {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.menu-row--payment .menu-row__payment-list p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.6;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .menu-row--payment .menu-row__payment-list p {
    font-size: 1.2rem;
  }
}

#lower .lower_about {
  width: 100%;
  height: 40vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lower .lower_about {
    height: 60vw;
  }
}
#lower .lower_about .lower_point01 {
  position: absolute;
  top: -2vw;
  left: 2vw;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #lower .lower_about .lower_point01 {
    width: 35%;
  }
}
#lower .lower_about .lower_point01 img {
  width: 100%;
}
#lower .lower_about .lower_point02 {
  position: absolute;
  top: 10vw;
  right: -2vw;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #lower .lower_about .lower_point02 {
    width: 30%;
    top: 25vw;
  }
}
#lower .lower_about .lower_point02 img {
  width: 100%;
}
#lower .lower_about .lower_headline {
  background-image: url("./img/about_headline_bg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 65%;
  height: 30vw;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#lower .lower_about .lower_headline img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #lower .lower_about .lower_headline img {
    width: auto;
    height: 10vw;
  }
}

#menu-list {
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  #menu-list {
    padding: 40px 0 60px;
  }
}

.menu-photo {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 30vw;
  overflow: hidden;
}
.menu-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.menu-photo--top {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  .menu-photo--top {
    margin-bottom: 16vw;
  }
}
.menu-photo--top img {
  border-radius: 999px 0 0 999px;
}
.menu-photo--bottom {
  margin-right: auto;
  margin-left: 0;
  margin-top: 8vw;
}
@media screen and (max-width: 768px) {
  .menu-photo--bottom {
    margin-top: 16vw;
  }
}
.menu-photo--bottom img {
  border-radius: 0 999px 999px 0;
}

.menu-card {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(236deg, #f0a8ae 57%, #f2d5d8 95%);
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./img/menu-card-texture.png");
  background-size: 400px 320px;
  background-position: top left;
  mix-blend-mode: multiply;
  opacity: 0.1;
  pointer-events: none;
}
.menu-card__rows {
  padding: 80px 0 80px;
}
@media screen and (max-width: 768px) {
  .menu-card__rows {
    padding: 60px 0 60px;
  }
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.menu-row span {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-row span {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .menu-row span {
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 768px) {
  .menu-row {
    padding: 14px 28px;
  }
}
.menu-row--last {
  border-bottom: none;
}
.menu-row__name {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .menu-row__name {
    font-size: 1.2rem;
  }
}
.menu-row__price {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .menu-row__price {
    font-size: 1.1rem;
  }
}
.menu-row--multi {
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .menu-row--multi {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.menu-row--multi .menu-row__sub-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-row--multi .menu-row__sub {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .menu-row--multi .menu-row__sub {
    gap: 16px;
    font-size: 1.1rem;
  }
}

#lower {
  overflow: hidden;
}
#lower .lower_menu {
  width: 100%;
  height: 40vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lower .lower_menu {
    height: 60vw;
  }
}
#lower .lower_menu .lower_point01 {
  position: absolute;
  top: -2vw;
  left: 2vw;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #lower .lower_menu .lower_point01 {
    width: 35%;
  }
}
#lower .lower_menu .lower_point01 img {
  width: 100%;
}
#lower .lower_menu .lower_point02 {
  position: absolute;
  top: 10vw;
  right: -2vw;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #lower .lower_menu .lower_point02 {
    width: 30%;
    top: 25vw;
  }
}
#lower .lower_menu .lower_point02 img {
  width: 100%;
}
#lower .lower_menu .lower_headline {
  background-image: url("./img/lower_bg02 .png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 65%;
  height: 30vw;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#lower .lower_menu .lower_headline img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #lower .lower_menu .lower_headline img {
    width: auto;
    height: 10vw;
  }
}

#lower .lower_studio {
  width: 100%;
  height: 40vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lower .lower_studio {
    height: 60vw;
  }
}
#lower .lower_studio .lower_point01 {
  position: absolute;
  top: -2vw;
  left: 2vw;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #lower .lower_studio .lower_point01 {
    width: 35%;
  }
}
#lower .lower_studio .lower_point01 img {
  width: 100%;
}
#lower .lower_studio .lower_point02 {
  position: absolute;
  top: 10vw;
  right: -2vw;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #lower .lower_studio .lower_point02 {
    width: 30%;
    top: 25vw;
  }
}
#lower .lower_studio .lower_point02 img {
  width: 100%;
}
#lower .lower_studio .lower_headline {
  background-image: url("./img/studio_headline_bg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 65%;
  height: 30vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#lower .lower_studio .lower_headline img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #lower .lower_studio .lower_headline img {
    width: 80%;
  }
}

.studio-hero .fv {
  background-color: rgba(0, 0, 0, 0) !important;
}

#studio-hero {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #studio-hero {
    flex-flow: column;
  }
}
#studio-hero .studio-hero__img {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #studio-hero .studio-hero__img {
    width: 90%;
  }
}
#studio-hero .studio-hero__img img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  #studio-hero .studio-hero__img img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  #studio-hero {
    padding: 40px 0;
  }
}
#studio-hero .studio-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #studio-hero .studio-hero {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  #studio-hero .studio-hero {
    padding: 0 20px;
  }
}
#studio-hero__images {
  display: flex;
  height: 40vw;
  max-height: 520px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #studio-hero__images {
    height: 52vw;
    margin-bottom: 36px;
  }
}
#studio-hero__img {
  flex: 1;
  position: relative;
  overflow: hidden;
}
#studio-hero__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#studio-hero__img--left {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
#studio-hero__img--right {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
#studio-hero .studio-catch {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #studio-hero .studio-catch {
    margin-bottom: 20px;
  }
}
#studio-hero .studio-catch p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.17em;
  line-height: 2;
  color: #647c7b;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #studio-hero .studio-catch p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #studio-hero .studio-catch p {
    font-size: 1.6rem;
    white-space: normal;
  }
}
#studio-hero .studio-body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2.6;
  color: #647c7b;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #studio-hero .studio-body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #studio-hero .studio-body {
    font-size: 1.3rem;
    line-height: 2.2;
  }
}

.studio-display-heading {
  height: 6vw;
  margin: auto;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .studio-display-heading {
    height: 12vw;
  }
}
.studio-display-heading img {
  height: 100%;
}

#studio-menu {
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  #studio-menu {
    padding: 40px 0 60px;
  }
}
#studio-menu .studio-menu {
  width: 100%;
}
#studio-menu .studio-menu #studio-hero {
  align-items: flex-start;
  justify-content: flex-start;
}
#studio-menu .studio-menu .studio-hero__img {
  width: 50%;
  height: 40vw;
}
@media screen and (max-width: 768px) {
  #studio-menu .studio-menu .studio-hero__img {
    width: 90%;
    height: 80vw;
    margin: auto;
  }
}
#studio-menu .studio-menu .studio-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  #studio-menu .studio-menu .studio-hero__img img {
    border-radius: 20px;
  }
}
#studio-menu .studio-menu__intro {
  margin-bottom: 20px;
}
#studio-menu .studio-menu__intro p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.17em;
  line-height: 2;
  color: #647c7b;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #studio-menu .studio-menu__intro p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #studio-menu .studio-menu__intro p {
    font-size: 1.6rem;
    white-space: normal;
  }
}
#studio-menu .studio-menu__note {
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.17em;
  line-height: 2;
  color: #647c7b;
  margin-bottom: 60px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #studio-menu .studio-menu__note {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #studio-menu .studio-menu__note {
    width: 90%;
    margin: auto;
    font-size: 1.4rem;
    white-space: normal;
    margin-bottom: 40px;
  }
}

.studio-section {
  padding: 0 10%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .studio-section {
    margin-bottom: 40px;
  }
}
.studio-section__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .studio-section__heading {
    margin-bottom: 20px;
  }
}
.studio-section__heading p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.17em;
  line-height: 1.2;
  color: #647c7b;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-section__heading p {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-section__heading p {
    font-size: 2.2rem;
  }
}
.studio-section__heading img {
  width: 40%;
}
.studio-section__wave {
  width: 100%;
  height: 8px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.studio-plan {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .studio-plan {
    margin-bottom: 28px;
  }
}
.studio-plan__label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.17em;
  line-height: 2;
  color: #647c7b;
  margin-bottom: 8px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-plan__label {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-plan__label {
    font-size: 1.6rem;
    white-space: normal;
  }
}
.studio-plan__sub {
  font-size: 1.6rem;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 768px) {
  .studio-plan__sub {
    font-size: 1.3rem;
  }
}

.studio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #647c7b;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .studio-row {
    padding: 14px 0;
    gap: 12px;
  }
}
.studio-row--last {
  border-bottom: none;
  margin-bottom: 16px;
}
.studio-row__label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #647c7b;
  flex: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-row__label {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-row__label {
    font-size: 1.3rem;
  }
}
.studio-row__price {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #647c7b;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .studio-row__price {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .studio-row__price {
    font-size: 1.3rem;
  }
}

#studio-gallery {
  padding: 60px 0 100px;
}
@media screen and (max-width: 768px) {
  #studio-gallery {
    padding: 40px 0 60px;
  }
}
#studio-gallery .studio-gallery__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  flex-wrap: wrap;
  gap: 16px;
  width: 90%;
  margin: auto;
}
#studio-gallery .studio-gallery__item {
  border-radius: 20px;
  overflow: hidden;
  width: 30%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  #studio-gallery .studio-gallery__item {
    border-radius: 12px;
    width: 45%;
    height: 40vw;
  }
}
#studio-gallery .studio-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.site-footer {
  background: linear-gradient(-135deg, #70BAB8, #B1E2E1);
  width: 100%;
  border-radius: 50px 50px 0 0;
}
@media screen and (max-width: 768px) {
  .site-footer {
    border-radius: 25px 25px 0 0;
  }
}

.footer-main {
  padding: 8vw 6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-main {
    padding: 50px 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-main {
    padding: 40px 24px 0;
  }
}

.footer-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-inner {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}

.footer-col--salon {
  flex: 0 0 auto;
  width: 45%;
  text-align: end;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-col--salon {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .footer-col--salon {
    width: 100%;
  }
}

.footer-col--instagram {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .footer-col--instagram {
    width: 100%;
  }
}

.footer-heading {
  margin: 0 0 20px;
  line-height: 1;
  width: 80%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .footer-heading {
    margin-bottom: 5vw;
  }
}
.footer-heading img {
  height: 4vw;
  margin: auto;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-heading img {
    height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .footer-heading img {
    height: 28px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .info-row {
    gap: 12px;
  }
}

.info-sep {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.info-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
  min-width: 80px;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .info-label {
    font-size: 1.3rem;
    min-width: 70px;
  }
}

.info-value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .info-value {
    font-size: 1.3rem;
  }
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.footer-btn:hover {
  opacity: 0.7;
}
.footer-btn .btn-arrow {
  letter-spacing: 0;
}

.footer-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer-insta-grid {
    gap: 6px;
  }
}

.insta-photo {
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.footer-map {
  width: 100%;
  height: 30vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer-map {
    height: 100vw;
  }
}
.footer-map iframe {
  filter: grayscale(100%);
}

.footer-copyright {
  text-align: center;
  padding: 16px;
}
.footer-copyright p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=style.css.map */