@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "游明朝体", "Hiragino Mincho ProN", serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  background-image: url("../img/bg-main.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    zoom: 0.9;
    background-attachment: scroll;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  color: #931414;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #931414;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

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

.btn-primary {
  display: inline-block;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.btn-primary {
  padding: 20px 60px;
  background: #931414;
  color: #fff;
  font-size: 1.2rem;
}
.btn-primary:hover {
  background: #931414;
}

.btn-secondary {
  display: inline-block;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.btn-secondary {
  padding: 15px 50px;
  background: transparent;
  color: #931414;
  font-size: 1.1rem;
  border: 2px solid #931414;
}
.btn-secondary:hover {
  background: #931414;
  color: #fff;
}

.btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }
}

.header-left {
  flex-shrink: 0;
}

.logo-link {
  display: block;
}

.logo-img {
  height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 768px) {
  .header-right {
    display: none;
  }
}

.header-tel-wrap {
  display: flex;
  align-items: center;
}

.header-tel {
  display: block;
}

.header-main-nav {
  display: flex;
}

.main-nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 6px;
}
.main-nav-list a {
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 5px;
}
.main-nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #931414;
  transition: width 0.3s;
}
.main-nav-list a:hover {
  color: #931414;
  opacity: 1;
}
.main-nav-list a:hover::after {
  width: 100%;
}
.main-nav-list a.active {
  color: #931414;
}
.main-nav-list a.active::after {
  width: 100%;
}

.header-icon-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.icon-nav-link span {
  font-size: 0.7rem;
  font-weight: bold;
  color: #333;
}

.icon-nav-icon {
  width: 24px;
  height: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger span:not(:last-child) {
  margin-bottom: 6px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s;
  z-index: 1005;
  overflow-y: auto;
}
.sp-menu.active {
  right: 0;
}
@media (max-width: 768px) {
  .sp-menu {
    display: block;
  }
}

.sp-nav {
  padding: 80px 30px 40px;
}

.sp-nav-list {
  margin-bottom: 40px;
}
.sp-nav-list li {
  border-bottom: 1px solid #e0e0e0;
}
.sp-nav-list li:first-child {
  border-top: 1px solid #e0e0e0;
}

.sp-nav-link {
  display: block;
  padding: 18px 10px;
  color: #333;
  font-size: 1.1rem;
  font-weight: bold;
  position: relative;
}
.sp-nav-link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 0;
  height: 2px;
  background: #931414;
  transition: width 0.3s;
}
.sp-nav-link:hover::after {
  width: calc(100% - 20px);
}
.sp-nav-link.active {
  color: #931414;
}

.sp-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.sp-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sp-icon-link img {
  width: 32px;
  height: 32px;
}
.sp-icon-link span {
  font-size: 0.85rem;
  font-weight: bold;
  color: #333;
}

.sp-tel {
  text-align: center;
}
.sp-tel a {
  display: inline-block;
}
.sp-tel a img {
  max-width: 100%;
  height: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1004;
}
@media (max-width: 768px) {
  body.menu-open body::before {
    opacity: 1;
    visibility: visible;
  }
}

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 130px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
  }
}
.hero-image {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  height: calc(100% - 130px);
  z-index: -1;
}
@media (max-width: 768px) {
  .hero-image {
    top: 70px;
    height: calc(100% - 70px);
  }
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-content {
  text-align: center;
  height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content.fade-up {
  transition-delay: 0.5s;
}
@media (max-width: 768px) {
  .hero-content {
    height: calc(100vh - 70px);
  }
}
@media (max-width: 768px) {
  .hero-content {
    max-width: 75%;
    margin: 0 auto;
  }
}
.hero-logo {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero-logo {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.hero-kodawari {
  height: 60vh;
  min-height: 400px;
}

.top-intro {
  background: transparent;
  position: relative;
  overflow: hidden;
}
.top-intro::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 6.7%;
  width: min(87vw, 1720px);
  aspect-ratio: 1720/938;
  background-image: url("../img/deco-01.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-25%);
}
@media (max-width: 768px) {
  .top-intro::before {
    width: min(120vw, 1720px);
    top: 26%;
    left: -20%;
  }
}
.top-intro-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6%;
  margin-bottom: 160px;
  position: relative;
  aspect-ratio: 71/36;
}
@media (max-width: 768px) {
  .top-intro-images {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 120px;
  }
}
.top-intro .intro-image-left {
  margin-bottom: auto;
  width: 80%;
  margin-right: auto;
}
.top-intro .intro-image-right {
  margin-top: auto;
  width: 80%;
  margin-left: auto;
}
.top-intro-content {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .top-intro-content {
    margin-bottom: 80px;
  }
}

.intro-center-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .intro-center-image img {
    max-width: 90%;
  }
}

.intro-text-vertical {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .intro-text-vertical {
    max-width: 100%;
  }
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.6em;
  line-height: 2.1;
  color: #333;
  text-align: justify;
  max-height: 460px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .vertical-text {
    font-size: clamp(1.1rem, 3.6vw, 1.6rem);
    line-height: 1.9;
    max-height: 380px;
  }
}

.interior {
  background: transparent;
  position: relative;
  overflow: hidden;
}
.interior-row {
  margin-bottom: 80px;
}
.interior-row:last-of-type {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .interior-row {
    margin-bottom: 60px;
  }
  .interior-row:last-of-type {
    margin-bottom: 40px;
  }
}
.interior-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6%;
}
@media (max-width: 768px) {
  .interior-item {
    gap: 20px;
  }
}
.interior-tatami .interior-image {
  width: 500px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .interior-tatami .interior-image {
    width: 70%;
    min-width: 260px;
  }
}
.interior-tatami .interior-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}
.interior-tatami .interior-text::before {
  content: "";
  position: absolute;
  left: 30%;
  top: -10%;
  transform: translate(-50%);
  width: min(54.58vw, 500px);
  aspect-ratio: 1/1;
  background-image: url("../img/deco-02.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .interior-tatami .interior-text::before {
    width: min(90vw, 500px);
  }
}
.interior-tatami .interior-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.interior-tatami .interior-deco img {
  width: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .interior-tatami .interior-deco img {
    width: clamp(150px, 30vw, 250px);
  }
}
.interior-counter .interior-image {
  width: 500px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .interior-counter .interior-image {
    width: 70%;
    min-width: 260px;
  }
}
.interior-counter .interior-text {
  flex-shrink: 1;
}
.interior-image img {
  width: 100%;
  height: auto;
  display: block;
}
.interior-vertical {
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  aspect-ratio: 9/26;
}
@media (max-width: 768px) {
  .interior-vertical {
    gap: 0;
  }
}
.interior .vertical-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.3rem;
  color: #333;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .interior .vertical-label {
    font-size: clamp(1rem, 3vw, 1.4rem);
  }
}
.interior .vertical-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
  margin-top: auto;
}
@media (max-width: 768px) {
  .interior .vertical-title {
    font-size: clamp(2rem, 6vw, 2.7rem);
  }
}
.interior-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}
.interior-btn {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
.interior-btn img {
  display: block;
  max-width: 550px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .interior-btn img {
    max-width: 370px;
  }
}
.interior-btn::after {
  content: "›";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  transition: transform 0.3s;
  font-family: sans-serif;
}
@media (max-width: 768px) {
  .interior-btn::after {
    right: 30px;
    font-size: 2rem;
  }
}
.interior-btn:hover {
  opacity: 0.9;
}
.interior-btn:hover::after {
  transform: translateY(-50%) translateX(5px);
}

.banquet {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
}
@media (max-width: 768px) {
  .banquet {
    padding-bottom: 160px;
  }
}
.banquet::before {
  content: "";
  position: absolute;
  left: 83%;
  top: 14%;
  width: min(133.58vw, 2546px);
  aspect-ratio: 2546/581;
  background-image: url("../img/deco-03.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .banquet::before {
    top: 22%;
  }
}
.banquet::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 25%;
  width: min(135.58vw, 2585px);
  aspect-ratio: 2585/787;
  background-image: url("../img/deco-04.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .banquet::after {
    bottom: 15%;
  }
}
.banquet-title {
  text-align: center;
  margin-bottom: 60px;
}
.banquet-title img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .banquet-title img {
    max-width: 300px;
  }
}
.banquet-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}
.banquet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 180px;
  background: #931414;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  transition: opacity 0.3s;
}
.banquet-btn .arrow {
  font-size: 2rem;
  font-weight: normal;
  display: inline-block;
  transition: transform 0.3s;
  font-family: sans-serif;
}
.banquet-btn:hover {
  opacity: 0.9;
}
.banquet-btn:hover .arrow {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .banquet-btn {
    padding: 18px 80px;
    font-size: 1.1rem;
  }
}
.banquet .annot {
  text-align: center;
}
@media (max-width: 768px) {
  .banquet .annot {
    font-size: 0.9rem;
  }
}

.course-block {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  margin-bottom: 80px;
}
.course-block:nth-of-type(3) {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .course-block {
    width: min(94%, 600px);
    margin: 0 auto 60px;
  }
  .course-block:nth-of-type(3) {
    margin-bottom: 20px;
  }
}
.course-left {
  width: 48%;
}
@media (max-width: 768px) {
  .course-left {
    width: 100%;
  }
}
.course-right {
  width: 48%;
  text-align: center;
}
@media (max-width: 768px) {
  .course-right {
    width: 100%;
  }
}
.course-image {
  position: relative;
  margin-bottom: 20px;
}
.course-image img {
  width: 100%;
  height: auto;
  display: block;
}
.course-note {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .course-note {
    font-size: 0.7rem;
    margin: -10px 0 15px;
  }
}
.course-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .course-name {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.course-items {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .course-items {
    display: inline-block;
  }
}
.course-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.course-price .price-unit {
  font-size: 1.5rem;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .course-price {
    font-size: 2rem;
    display: inline-block;
  }
  .course-price .price-unit {
    font-size: 1.2rem;
  }
}
.course-example-btn {
  display: inline-block;
  padding: 10px 40px;
  background: #931414;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 30px;
  width: 100%;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .course-example-btn {
    font-size: 0.9rem;
    padding: 8px 30px;
  }
}
.course-menu {
  list-style: none;
  padding: 0;
  text-align: left;
}
.course-menu li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.course-menu li:first-child {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .course-menu li {
    font-size: 0.85rem;
    padding: 10px 0;
  }
}
.course-info-box {
  background: #d9d9d9;
  padding: 30px 40px;
  margin-top: 30px;
  width: 100%;
  clear: both;
}
@media (max-width: 768px) {
  .course-info-box {
    padding: 20px 25px;
    margin-top: 20px;
  }
}
.course-info-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.course-info-list li {
  font-size: 0.95rem;
  color: #333;
}
@media (max-width: 768px) {
  .course-info-list li {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .course-info-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.specialties {
  background-image: url("../img/bg-specialties.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1920/2380;
  width: 1920px;
  height: 100%;
  margin: auto;
  max-width: 100%;
  min-width: 100%;
}
@media (max-width: 768px) {
  .specialties {
    aspect-ratio: unset;
    width: 100%;
    height: auto;
  }
  .specialties::before {
    content: "";
    display: block;
    padding-top: calc(195% - (100vw - 370px) * 1.6736);
  }
}
.specialties .container {
  position: relative;
  z-index: 1;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1600px;
  min-width: 100%;
}

.specialty-item {
  margin-bottom: 0;
}
.specialty-item:last-child {
  margin-bottom: 0;
}
.specialty-content {
  position: relative;
  min-height: clamp(500px, 36.46vw, 700px);
}
@media (max-width: 768px) {
  .specialty-content {
    min-height: clamp(500px, 36.46vw, 700px);
  }
}
.specialty-gyutan .specialty-text-left {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 400px;
}
.specialty-gyutan .specialty-image-right {
  position: absolute;
  right: 0;
  top: 25%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 3;
}
.specialty-gyutan .specialty-image-right img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .specialty-gyutan .specialty-image-right {
    right: -3%;
    width: 60%;
  }
}
.specialty-sashimi .specialty-image-left {
  position: absolute;
  left: 0;
  top: 40%;
  top: 5%;
  /*transform: translateY(-50%);*/
  width: 50%;
  z-index: 3;
}
.specialty-sashimi .specialty-image-left img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .specialty-sashimi .specialty-image-left {
    top: -8%;
    left: -3%;
    width: 55%;
  }
}
@media (max-width: 480px) {
  .specialty-sashimi .specialty-image-left {
    top: -10%;
  }
}
.specialty-sashimi .specialty-text-right {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  width: min(41%, 510px);
}
@media (max-width: 768px) {
  .specialty-sashimi .specialty-text-right {
    width: clamp(310px, 52vw, 90%);
    top: 50%;
    right: 0;
  }
}
.specialty-title-main {
  margin-bottom: 20px;
  line-height: 1;
}
.specialty-title-main img {
  width: clamp(200px, 20.83vw, 400px);
  height: auto;
  display: block;
  filter: drop-shadow(0px 1px 1.5px #999);
}
@media (max-width: 768px) {
  .specialty-title-main img {
    width: clamp(120px, 33vw, 200px);
  }
}
.specialty-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .specialty-name {
    font-size: 1.6rem;
  }
}
.specialty-name-large {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .specialty-name-large {
    font-size: 2rem;
    text-align: right;
  }
}
.specialty-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.specialty-price .price-unit {
  font-size: 1.2rem;
  margin-left: 5px;
}
.specialty-price .tax-note {
  font-size: 1rem;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .specialty-price {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.specialty-description {
  font-size: 0.9rem;
  line-height: 1.8;
  text-shadow: 0.8px 0.8px 1.2px #333;
}
@media (max-width: 768px) {
  .specialty-description {
    font-size: 0.85rem;
  }
}
.specialty-note {
  font-size: 0.8rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .specialty-note {
    font-size: 0.75rem;
    text-align: right;
  }
}
.specialty-price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.specialty-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.specialty-price-list .portion {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .specialty-price-list .portion {
    font-size: 1rem;
  }
}
.specialty-price-list .price {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .specialty-price-list .price {
    font-size: 1.3rem;
  }
}
.specialty-price-list .price .unit {
  font-size: 1rem;
  margin-left: 3px;
}
.specialty-price-list .price .tax {
  font-size: 0.8rem;
  margin-left: 5px;
}
.specialty-footer-note {
  font-size: 0.75rem;
  margin-top: 20px;
  text-shadow: 0.8px 0.8px 1.2px #333;
}
@media (max-width: 768px) {
  .specialty-footer-note {
    font-size: 0.7rem;
  }
}

.products {
  background: transparent;
}
.products-title {
  text-align: center;
  margin-bottom: 60px;
}
.products-title img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .products-title img {
    max-width: 300px;
  }
}
.products-slider {
  max-width: 1000px;
  margin: 0 auto;
}
.products-main {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .products-main {
    flex-direction: column;
    gap: 30px;
  }
}
.products-main-left {
  flex: 1;
  position: relative;
}
.products-main-right {
  flex: 1;
  position: relative;
}
.products-thumbs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .products-thumbs {
    gap: 10px;
  }
}
.products-slider-note {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .products-slider-note {
    font-size: 0.85rem;
  }
}
.products-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .products-indicators {
    gap: 6px;
    margin-bottom: 40px;
  }
}

.product-main-image {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 809/607;
}
.product-image-note {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 768px) {
  .product-image-note {
    font-size: 0.8rem;
  }
}
.product-info {
  display: none;
}
.product-info.active {
  display: block;
}
.product-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
@media (max-width: 768px) {
  .product-name {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.product-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.product-price .price-unit {
  font-size: 1.5rem;
  margin-left: 5px;
}
.product-price .tax-note {
  font-size: 1rem;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .product-price {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .product-price .price-unit {
    font-size: 1.2rem;
  }
}
.product-description .desc-title {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.product-description .desc-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 768px) {
  .product-description .desc-text {
    font-size: 0.85rem;
  }
}
.product-thumb {
  width: 150px;
  height: 150px;
  cursor: pointer;
  border: 3px solid transparent;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0.6;
}
.product-thumb.active {
  border-color: #333;
  opacity: 1;
}
.product-thumb:hover {
  opacity: 1;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .product-thumb {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }
}

.main-dish-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
}
.main-dish-image.active {
  opacity: 1;
}

.product-info {
  display: none;
}
.product-info.active {
  display: block;
}

.indicator {
  width: 40px;
  height: 4px;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.indicator.active {
  background: #333;
}
.indicator:hover {
  background: #999;
}
@media (max-width: 768px) {
  .indicator {
    width: 30px;
    height: 3px;
  }
}

.sake {
  background: transparent;
  background-image: url("../img/bg-sake.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: auto;
  margin-bottom: 80px;
  width: 1920px;
  aspect-ratio: 1920/1669;
  max-width: 100%;
  min-width: 100%;
}
@media (max-width: 768px) {
  .sake {
    aspect-ratio: unset;
    height: auto;
  }
  .sake::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 86.93%;
  }
}
.sake .container {
  position: relative;
  z-index: 1;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  max-width: 1400px;
}
@media (max-width: 768px) {
  .sake .container {
    padding: 0 10px;
  }
}
.sake-content {
  display: flex;
  gap: 7%;
  align-items: center;
  justify-self: center;
  margin-bottom: 7%;
}
.sake-left {
  /*flex: 1;*/
}
.sake-right {
  /*flex: 1;*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.sake-image {
  margin-bottom: 30px;
}
.sake-image img {
  width: 100%;
  height: auto;
  display: block;
}
.sake-image-note {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .sake-image-note {
    font-size: 0.8rem;
  }
}
.sake-description .sake-desc-text {
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sake-description .sake-desc-text {
    font-size: 0.85rem;
  }
}
.sake-vertical-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sake-vertical-text img {
  display: block;
}
.sake-btn-wrapper {
  text-align: center;
}
.sake-btn {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  width: min(52%, 550px);
}
@media (max-width: 768px) {
  .sake-btn {
    max-width: 400px;
  }
}
.sake-btn::after {
  content: "›";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  transition: transform 0.3s;
  font-family: sans-serif;
}
@media (max-width: 768px) {
  .sake-btn::after {
    right: 30px;
    font-size: 2rem;
  }
}
.sake-btn:hover {
  opacity: 0.9;
}
.sake-btn:hover::after {
  transform: translateY(-50%) translateX(5px);
}
@media (max-width: 768px) {
  .sake-btn {
    padding: 0;
  }
}

.contact {
  background: transparent;
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -15%;
  width: min(82.5vw, 1573px);
  aspect-ratio: 1573/429;
  background-image: url("../img/deco-05.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .contact::before {
    content: unset;
  }
}
.contact-bg {
  max-width: 800px;
  margin: 0 auto;
  background-image: url("../img/contact-bg.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
  position: relative;
  padding: 80px 40px;
}
.contact-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-bg {
    padding: 60px 30px;
    margin: 0 20px;
  }
}
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.contact-title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 1.6rem;
  }
}
.contact-phone {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  transition: color 0.3s;
}
.contact-phone:hover {
  color: #e0e0e0;
  opacity: 1;
}
.contact-phone .icon-phone:before {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .contact-phone {
    font-size: 1.8rem;
  }
  .contact-phone .icon-phone:before {
    font-size: 1.5rem;
  }
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 60px;
  background: #931414;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 600px;
}
.contact-btn .arrow {
  font-size: 2rem;
  font-weight: normal;
  display: inline-block;
  transition: transform 0.3s;
  font-family: sans-serif;
}
.contact-btn:hover {
  opacity: 0.9;
}
.contact-btn:hover .arrow {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .contact-btn {
    padding: 15px 25px;
    font-size: min(3.6vw, 1.1rem);
  }
}

.shop-info {
  background: transparent;
}
.shop-info-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .shop-info-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.shop-info-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.shop-info-logo {
  width: 200px;
}
.shop-info-logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .shop-info-logo {
    width: 160px;
  }
}
.shop-info-name {
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.6;
}
.shop-info-right {
  display: flex;
  flex-direction: column;
}
.shop-info-list {
  display: flex;
  flex-direction: column;
}
.shop-info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.shop-info-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.shop-info-item dt {
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}
.shop-info-item dd {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}
.shop-info-item dd .note {
  font-size: 0.85rem;
  color: #666;
}
@media (max-width: 768px) {
  .shop-info-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 0;
  }
}

.cancel-policy {
  background: rgba(191, 191, 191, 0.6);
  padding: 20px 35px;
  margin-top: 20px;
  text-align: center;
  max-width: 300px;
}
.cancel-policy-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.cancel-policy p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.cancel-policy p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cancel-policy {
    max-width: 100%;
  }
}

.map {
  position: relative;
  z-index: 0;
}
.map::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(62vw, 1496px);
  aspect-ratio: 1496/1043;
  background-image: url("../img/deco-06.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .map::before {
    width: min(100vw, 990px);
  }
}
.map-container {
  margin-bottom: 30px;
  overflow: hidden;
}

.footer {
  background: #2a2a2a;
  background-image: url("../img/bg-footer.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 0 10px;
  position: relative;
  font-weight: 500;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 42, 42, 0.2);
  z-index: 0;
}
.footer > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 5px;
  }
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4%;
  align-items: start;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 30px;
  }
}
.footer-left {
  display: flex;
  justify-content: center;
}
.footer-logo-link {
  display: block;
}
.footer-logo {
  width: 180px;
  height: auto;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 150px;
  }
}
.footer-center {
  display: flex;
  flex-direction: column;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-info-item {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer-info-item {
    flex-direction: column;
  }
}
.footer-label {
  font-weight: bold;
  color: #fff;
  margin-right: 20px;
  min-width: 80px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-label {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.footer-text {
  flex: 1;
}
.footer-note {
  font-size: 0.85rem;
  color: #ccc;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.footer-right-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .footer-right-top {
    align-items: center;
  }
}
.footer-right-top::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 100%;
  height: 1px;
  background: #fff;
}
.footer-banner {
  background: #931414;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer-banner {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
.footer-tel {
  display: block;
}
.footer-icons {
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer-icon-link {
  display: block;
}
.footer-nav-vertical {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer-nav-vertical {
    justify-content: center;
    gap: 40px;
  }
}
.footer-nav-vertical-link {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 10px 0;
  transition: color 0.3s;
}
.footer-nav-vertical-link:hover {
  color: #931414;
  opacity: 1;
}
@media (max-width: 768px) {
  .footer-nav-vertical-link {
    font-size: 0.85rem;
  }
}

.copyright {
  text-align: center;
  font-size: 0.65rem;
  color: #999;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.55rem;
    padding-top: 20px;
  }
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.page-top::after {
  content: "";
  border: solid 0.9px #333;
  width: 86%;
  aspect-ratio: 1/1;
  left: 50%;
  right: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.page-top.show {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .page-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}
.modal-close:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .modal-close {
    top: 15px;
    right: 25px;
    font-size: 40px;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s, transform 0.9s;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.seasonal-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .seasonal-section {
    padding-bottom: 26px;
  }
}

.seasonal-hero-image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.seasonal-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.seasonal-hero-image .annot {
  font-size: 0.6rem;
  position: absolute;
  bottom: 0;
  text-align: left;
  left: 1.5%;
  font-weight: 600;
}
@media (max-width: 768px) {
  .seasonal-hero-image {
    width: 110%;
    max-width: 110%;
  }
  .seasonal-hero-image .annot {
    font-size: min(1.8vw, 0.6rem);
  }
}

.dedication-section {
  padding: 100px 0;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .dedication-section {
    padding: 60px 0;
  }
}

.dedication-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-dedication.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.dedication-content {
  position: relative;
  display: flex;
  gap: 5%;
  z-index: 1;
  justify-content: center;
}

.dedication-left-column {
  /*flex: 1;*/
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 75%;
}

.dedication-image-overflow {
  position: relative;
  margin-top: min(-17%, -150px);
}
.dedication-image-overflow img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .dedication-image-overflow {
    margin-top: min(-20%, -90px);
  }
}

.dedication-description {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.dedication-description .desc-text {
  line-height: 2;
  font-weight: 700;
  font-size: min(1.37rem, 1.7vw);
  letter-spacing: 1.2px;
  text-align: justify;
}
.dedication-description .desc-text .signature {
  display: block;
  text-align: right;
}
@media (max-width: 768px) {
  .dedication-description .desc-text {
    font-size: min(1.5rem, 3.3vw);
  }
}

.dedication-right-column {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.dedication-vertical-title {
  writing-mode: vertical-rl;
  font-size: 2.6rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.dedication-vertical-title span {
  display: block;
  font-size: 3.4rem;
}
@media (max-width: 768px) {
  .dedication-vertical-title {
    font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  }
  .dedication-vertical-title span {
    font-size: clamp(2.2rem, 7.1vw, 3.4rem);
  }
}

.back-to-top-section {
  padding: 150px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.back-to-top-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10%;
  width: min(78vw, 1496px);
  aspect-ratio: 1496/1043;
  background-image: url("../img/deco-06.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .back-to-top-section::before {
    width: min(120vw, 1200px);
    bottom: -5%;
  }
}
@media (max-width: 768px) {
  .back-to-top-section {
    padding: 90px 0;
  }
}

.back-to-top-wrapper {
  text-align: center;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 180px;
  background: #931414;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: opacity 0.3s;
}
.back-to-top-btn .arrow {
  font-size: 2rem;
  font-weight: normal;
  display: inline-block;
  transition: transform 0.3s;
  font-family: sans-serif;
}
.back-to-top-btn:hover {
  opacity: 0.9;
}
.back-to-top-btn:hover .arrow {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .back-to-top-btn {
    padding: 18px 80px;
    font-size: 1.2rem;
  }
}

.kodawari-content {
  background: transparent;
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .kodawari-content {
    padding: 100px 0;
  }
}
.kodawari-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .kodawari-title-wrapper {
    margin-bottom: 50px;
  }
}
.kodawari-main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.kodawari-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c30d23;
}
@media (max-width: 768px) {
  .kodawari-main-title {
    font-size: 1.9rem;
    padding-bottom: 8px;
  }
}
.kodawari-block {
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .kodawari-block {
    margin-bottom: 80px;
  }
}
.kodawari-block:last-of-type {
  margin-bottom: 60px;
}
.kodawari-block-1 {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .kodawari-block-1 {
    flex-direction: column;
    gap: 30px;
  }
}
.kodawari-text-left {
  flex: 1;
  position: relative;
}
.kodawari-text-left::before {
  content: "";
  position: absolute;
  right: 65%;
  top: -70%;
  transform: translateY(-50%);
  width: min(77vw, 750px);
  aspect-ratio: 1/1;
  background-image: url("../img/deco-02.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  pointer-events: none;
  transform: scaleX(-1) translate(-50%);
}
@media (max-width: 768px) {
  .kodawari-text-left::before {
    width: min(90vw, 550px);
    top: -40%;
  }
}
@media (max-width: 768px) {
  .kodawari-text-left {
    width: 100%;
  }
}
.kodawari-title-image {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .kodawari-title-image {
    margin-bottom: 15px;
  }
}
.kodawari-title-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .kodawari-title-image img {
    max-width: 84%;
  }
}
.kodawari-image-right {
  flex: 1;
}
@media (max-width: 768px) {
  .kodawari-image-right {
    width: 80%;
    margin-left: auto;
  }
}
.kodawari-image-right img {
  width: 100%;
  height: auto;
  display: block;
}
.kodawari-block-2 {
  display: flex;
  justify-content: center;
}
.kodawari-block-3 {
  display: flex;
  justify-content: center;
  position: relative;
}
.kodawari-block-3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60%;
  transform: translateX(-50%);
  width: min(132.6vw, 2546px);
  aspect-ratio: 2546/581;
  background-image: url("../img/deco-04.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%);
}
.kodawari-integrated-image {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.kodawari-integrated-image img {
  width: 100%;
  height: auto;
  display: block;
}
.kodawari-heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}
.kodawari-heading .accent {
  color: #c30d23;
}
@media (max-width: 768px) {
  .kodawari-heading {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.kodawari-description .desc-title {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.kodawari-description .desc-text {
  line-height: 1.8;
  color: #333;
  font-weight: 700;
  text-align: justify;
}
@media (max-width: 768px) {
  .kodawari-description .desc-text {
    font-size: min(1.5rem, 3.4vw);
    width: 85%;
  }
}

.vertical-text-wrapper {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.vertical-text-wrapper .char {
  display: block;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #333;
}
.vertical-text-wrapper .char.accent {
  color: #c30d23;
  font-weight: bold;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .vertical-text-wrapper .char.accent {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .vertical-text-wrapper .char {
    font-size: 2rem;
  }
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .container-wide {
    padding: 0 20px;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?rx1h58");
  src: url("../fonts/icomoon.eot?rx1h58#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?rx1h58") format("truetype"), url("../fonts/icomoon.woff?rx1h58") format("woff"), url("../fonts/icomoon.svg?rx1h58#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icn-tel:before {
  content: "\e901";
  font-size: 42px;
}

.footer .icon-icn-tel:before {
  font-size: 52px;
}

.icon-icn_map:before {
  content: "\e900";
}

.footer .icon-icn_map:before {
  font-size: 30px;
}

.icon-icn_insta:before {
  content: "\ea92";
}

.footer .icon-icn_insta:before {
  font-size: 30px;
}

.icon-phone:before {
  content: "\e942";
}