/* ==========================================================================
   Base
   ========================================================================== */

:root {
  --color-bg: #f9f6ef;
  --color-bg-section: #f1ebe4;
  --color-brown: #6a4432;
  --color-orange: #fb9f00;
  --color-green: #75b828;
  --color-line: #06c755;
  --color-white: #ffffff;
  --color-red: #cc3e45;
  --color-badge: #a68d7d;
  --color-emphasis: #cc3e45;
  --font-sans: "Zen Kaku Gothic New", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --container-max: 1060px;
  --header-btn-pc: 80px;
  --header-btn-sp: 60px;
  --shadow-card: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-menu: 0 4px 10px rgba(0, 0, 0, 0.25);
  --shadow-header-btn: 0 0 10px rgba(0, 0, 0, 0.1);
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.67;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 30px;
}

/* ==========================================================================
   Fade-in
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 {
  transition-delay: 0s;
}

.fade-in--delay-2 {
  transition-delay: 0.25s;
}

.fade-in--delay-3 {
  transition-delay: 0.65s;
}

.fade-in--from-top {
  transform: translateY(-16px);
}

.fade-in--from-top.is-visible {
  transform: translateY(0);
}

.fade-in--from-right {
  transform: translateX(16px);
}

.fade-in--from-right.is-visible {
  transform: translateX(0);
}

@media (min-width: 1200px) {
  html {
    scrollbar-gutter: stable;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  transition: opacity var(--transition);
}

.btn:hover {
  opacity: 0.85;
}

.btn--lg {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 80px;
  padding-inline: 40px;
  font-size: 24px;
}

.btn--lg .btn__arrow {
  position: absolute;
  right: 40px;
}

.btn--primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn--green {
  background-color: var(--color-green);
  color: var(--color-white);
}

.btn--line {
  background-color: var(--color-white);
  color: #000;
  border: 3px solid var(--color-line);
}

.btn--line .btn__text {
  font-weight: 500;
}

.btn--outline {
  display: flex;
  width: 100%;
  max-width: 360px;
  height: 40px;
  background-color: var(--color-brown);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  box-shadow: none;
}

.btn__arrow {
  flex-shrink: 0;
}

.btn__icon--line {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
}

/* ==========================================================================
   Section title
   ========================================================================== */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title__sub {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 15px;
}

.section-title__main {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-orange);
}

/* ==========================================================================
   Header / Menu
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 10px 30px 0;
  pointer-events: none;
}

.header__inner {
  pointer-events: auto;
}

.menu {
  position: relative;
  width: 260px;
  --menu-btn-size: var(--header-btn-pc);
  --menu-panel-top: calc(var(--menu-btn-size) / 2 + 1px);
  --menu-panel-padding-top: 70px;
  --menu-panel-padding-x: 40px;
  --menu-panel-padding-bottom: 70px;
  --menu-list-gap: 20px;
}

.menu__toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--menu-btn-size);
  height: var(--menu-btn-size);
  margin: 0 20px 0 auto;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-bg);
  cursor: pointer;
  transition: background-color var(--transition);
  box-shadow: var(--shadow-header-btn);
}

.menu.is-open .menu__toggle {
  background-color: var(--color-brown);
}

@media (min-width: 1200px) {
  .menu__toggle:hover {
    background-color: var(--color-brown);
  }

  .menu__toggle:hover .menu__toggle-icon img {
    filter: brightness(0) invert(1);
  }
}

.menu__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__toggle-icon--close {
  display: none;
}

.menu.is-open .menu__toggle-icon--open {
  display: none;
}

.menu.is-open .menu__toggle-icon--close {
  display: flex;
}

.menu__panel {
  position: absolute;
  top: var(--menu-panel-top);
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: var(--menu-panel-padding-top) var(--menu-panel-padding-x) var(--menu-panel-padding-bottom);
  box-sizing: border-box;
  background-color: rgba(249, 246, 239, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-menu);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.menu.is-open .menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--menu-list-gap);
}

.menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color var(--transition);
}

.menu__link:hover {
  color: var(--color-orange);
}

.menu__dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-orange);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--color-bg);
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__annotation {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  padding: 3px 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  background-color: rgba(255, 255, 255, 0.6);
}

.hero__copy {
  position: absolute;
  top: 0;
  left: 80px;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}

.hero__copy::before {
  content: none;
}

.hero__copy img {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 152px;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(1px 1px 2px rgba(76, 41, 18, 0.35));
}

.hero__logo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 550px;
  height: 327px;
  padding: 100px 50px 50px 100px;
  background-image: url("../img/hero-logo-bg.png");
  background-size: 100% 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.hero__logo img {
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Welcome
   ========================================================================== */

.welcome {
  position: relative;
  min-height: 763px;
  padding: 161px 0 122px;
  background-color: var(--color-bg);
}

.welcome__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 720px;
  max-width: 50%;
  height: 763px;
  background-image: url("../img/welcome-bg.png");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}

.welcome__inner {
  display: flex;
  align-items: center;
  gap: 76px;
  position: relative;
  z-index: 1;
}

.welcome__visual {
  flex: 0 0 400px;
  max-width: 400px;
  text-align: center;
}

.welcome__logo {
  margin: 0 auto 20px;
}
.welcome__logo img {
	width: 100%;
	max-width: 400px;
}

.welcome__open {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.welcome__text {
  flex: 1;
  min-width: 0;
  max-width: 524px;
}

.welcome__quotes {
  margin-bottom: 40px;
}

.welcome__quotes li {
  font-size: 22px;
	font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.welcome__lead {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.2em;
}

.welcome__desc {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.2em;
}

/* ==========================================================================
   Imagephoto
   ========================================================================== */

.imagephoto {
  position: relative;
  padding-bottom: 80px;
  z-index: 2;
}

.imagephoto__gallery {
  position: relative;
}

.imagephoto__item {
  margin: 0;
}

.imagephoto__item img {
  display: block;
  width: 100%;
  height: auto;
}

.imagephoto__item.fade-in {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (min-width: 768px) {
  .imagephoto__gallery {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    aspect-ratio: 1000 / 633;
    min-height: 0;
  }

  .imagephoto__cluster {
    position: absolute;
    inset: 0;
  }

  .imagephoto__item {
    position: absolute;
  }

  .imagephoto__item--kagayaki {
    top: 0;
    left: 0;
    z-index: 1;
    width: 32%;
  }

  .imagephoto__item--sai {
    top: 52.606%;
    left: 11%;
    z-index: 2;
    width: 26%;
  }

  .imagephoto__item--kanade {
    top: 14.218%;
    right: 0;
    left: auto;
    z-index: 0;
    width: 59%;
  }
}

/* ==========================================================================
   Features
   ========================================================================== */

.features {
  position: relative;
  padding: 98px 0 220px;
  background-color: var(--color-bg-section);
}

.features__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.features__bg-image {
  position: absolute;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: min(500px, 28vw);
  max-height: 55%;
  object-fit: contain;
  object-position: bottom;
}

.features__bg-image--left {
  left: 0;
  object-position: left bottom;
}

.features__bg-image--right {
  right: 0;
  object-position: right bottom;
  transform: scaleX(-1);
}

.features__inner {
  position: relative;
  z-index: 1;
}

.features .section-title {
  margin-top: 100px;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  min-height: 175px;
  background-color: var(--color-white);
	padding: 0 30px 0 55px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 100px;
  margin-bottom: 0;
  align-self: flex-end;
  line-height: 0;
}

.feature-card__icon img {
  display: block;
  width: 100px;
  height: auto;
}

.feature-card__body {
  flex: 1;
  min-width: 0;
  margin-left: 55px;
  padding: 25px 0;
  text-align: left;
  align-self: flex-start;
}

.feature-card__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.feature-card__title br {
  display: none;
}

.feature-card__num {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-orange);
}

.feature-card__text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}

/* ==========================================================================
   Product
   ========================================================================== */

.product {
  padding: 120px 0 100px;
  background-color: var(--color-bg);
}

.product__section {
  margin-bottom: 80px;
}

.product__section-title,
.product__price-title,
.product__stone-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}

.product__price-note {
  font-size: 20px;
}

.product__overview {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  padding: 0;
  border: 1px solid var(--color-brown);
  box-sizing: border-box;
}

.product__overview img {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0;
}

.product__price {
  margin-bottom: 40px;
}

.product-table-wrap {
  overflow-x: auto;
}

.product-table {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 18px;
  table-layout: fixed;
}

.product-table col.product-table__col-year {
  width: 60px;
}

.product-table col.product-table__col-name {
  width: 300px;
}

.product-table col.product-table__col-count {
  width: 95px;
}

.product-table col.product-table__col-people {
  width: 130px;
}

.product-table col.product-table__col-type {
  width: 130px;
}

.product-table col.product-table__col-price {
  width: 175px;
}

.product-table th,
.product-table td {
  padding: 5px 15px;
  border: 1px solid var(--color-brown);
  text-align: center;
  vertical-align: middle;
}

.product-table thead th {
  background-color: var(--color-brown);
  color: var(--color-white);
  font-weight: 500;
  font-size: 18px;
  white-space: nowrap;
}

.product-table thead th:not(:last-child) {
  border-right: 1px solid #fff;
}

.product-table td.product-table__name,
.product-table td.product-table__price {
  text-align: left;
}

.product-table__head-year {
  width: 60px;
}

.product-table__head-year-text {
  display: inline-block;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

.product-table__year {
  width: 60px;
  font-size: 18px;
  line-height: 2;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  color: var(--color-white);
  background-color: var(--color-badge);
  vertical-align: middle;
}

.product-table tbody tr {
  background-color: var(--color-white);
}

.price-cards {
  display: none;
  flex-direction: column;
  gap: 30px;
}

.price-card {
  padding: 30px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.price-card__title {
  display: inline-block;
  margin-bottom: 20px;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
	font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-brown);
  border-radius: 30px;
}

.price-card__image {
  margin-bottom: 20px;
  border: 1px solid var(--color-brown);
}

.price-card__image img {
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
}

.price-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 16px;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-badge);
  border-radius: 2px;
}

.price-card__detail {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.86;
}

.price-card__price {
  font-size: 18px;
  font-weight: 700;
}

.price-card__price-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product__stone-section {
  margin-bottom: 0;
}

.product__stone {
  max-width: 1000px;
  margin-inline: auto;
  padding: 50px;
  border: 1px solid var(--color-brown);
  background-color: var(--color-white);
  box-sizing: border-box;
}

.stone-group {
  margin-bottom: 80px;
}

.stone-group__title {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 5px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-brown);
  border-radius: var(--radius-pill);
}

.stone-list {
  display: grid;
  gap: 30px;
  justify-content: center;
}

.stone-list--three {
  grid-template-columns: repeat(3, 280px);
  max-width: 900px;
  margin-inline: auto;
}

.stone-list--three .stone-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stone-list--three .stone-list__item img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: calc(280px * 628 / 580);
  margin-inline: auto;
  margin-bottom: 5px;
  object-fit: contain;
  object-position: bottom center;
}

.stone-list--five {
  grid-template-columns: repeat(3, 280px);
  max-width: 900px;
  margin-inline: auto;
  row-gap: 55px;
}

.stone-list__item {
  text-align: center;
}

.stone-list__item img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 5px;
}

.stone-list__name {
  font-size: 16px;
	font-weight: 500;
  line-height: 1.5;
}

.stone-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  height: 76px;
  margin-inline: auto;
  padding: 10px 50px;
  background-color: var(--color-red);
  border-radius: 10px;
  color: var(--color-white);
}

.stone-point__icon {
  flex-shrink: 0;
  width: 24px;
  height: 56px;
  object-fit: contain;
}

.stone-point__text {
  font-size: 22px;
  line-height: 30px;
  text-align: left;
}

/* ==========================================================================
   Section wave dividers
   ========================================================================== */

.section-wave {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 99px;
  margin-top: -99px;
  line-height: 0;
  pointer-events: none;
}

.section-wave__svg {
  display: block;
  width: 100%;
  height: 99px;
  color: var(--color-bg);
}

.section-wave--fill-bg .section-wave__svg {
  color: var(--color-bg);
}

.section-wave--fill-beige .section-wave__svg {
  color: var(--color-bg-section);
}

/* ==========================================================================
   Point
   ========================================================================== */

.point {
  position: relative;
  padding: 98px 0 120px;
  background-color: var(--color-white);
  --point-bg-top: 240px;
  --point-section-padding-top: 98px;
  --point-lead-margin-top: 100px;
  --point-lead-height: 140px;
  --point-lead-margin-bottom: 60px;
  --point-list-height: 680px;
  --point-illus-overlap: 50px;
  --point-illus-half-height: 245px;
}

.point__bg {
  position: absolute;
  top: var(--point-bg-top);
  left: 0;
  width: 100%;
  height: calc(
    var(--point-section-padding-top) + var(--point-lead-margin-top) + var(--point-lead-height) +
      var(--point-lead-margin-bottom) + var(--point-list-height) - var(--point-illus-overlap) +
      var(--point-illus-half-height) - var(--point-bg-top)
  );
  pointer-events: none;
}

.point__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.point__inner {
  position: relative;
  z-index: 1;
}

.point .point__inner.container {
  max-width: 1200px;
}

@media (min-width: 1200px) {
  .point .point__inner.container {
    padding-inline: 0;
  }
}

.point__lead {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.point__lead-quote {
  display: block;
  font-size: 50px;
  line-height: 70px;
	letter-spacing: 0.05em;
  margin-bottom: 0;
}

.point__lead-em {
  color: var(--color-emphasis);
  font-size: 60px;
}

.point__lead-sub {
  display: block;
  font-size: 40px;
  line-height: 70px;
}

.point__list {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 680px;
  margin: 0 auto;
}

.point__item {
  position: absolute;
  width: 270px;
  height: 270px;
}

.point__item--pos-1 {
  left: 600px;
  top: 0;
}

.point__item--pos-2 {
  left: 290px;
  top: 0;
}

.point__item--pos-3 {
  left: 890px;
  top: 100px;
}

.point__item--pos-4 {
  left: 0;
  top: 100px;
}

.point__item--pos-5 {
  left: 600px;
  top: 310px;
}

.point__item--pos-6 {
  left: 290px;
  top: 310px;
}

.point__item--pos-7 {
  left: 890px;
  top: 410px;
}

.point__item--pos-8 {
  left: 0;
  top: 410px;
}

.point-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 270px;
  padding: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(204, 62, 69, 0.5);
}

.point-card__line {
  display: block;
  line-height: 42px;
}

.point-card__em {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-emphasis);
}

.point-card__md {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  color: var(--color-brown);
}

.point__illustration {
  position: relative;
  z-index: 3;
  margin-top: -50px;
  text-align: center;
}

.point__illustration img {
  display: block;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

/* ==========================================================================
   Access
   ========================================================================== */

.access {
  position: relative;
  padding: 120px 0 120px;
  background-color: var(--color-bg-section);
  background-image: url("../img/access-bg-left.png"), url("../img/access-bg-right.png");
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 400px 880px, 400px 880px;
}

.access__content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.access__map {
  flex: 0 0 400px;
  width: 400px;
  max-width: 400px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid var(--color-brown);
}

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

.access__info {
  flex: 1 1 570px;
  min-width: 0;
  max-width: 570px;
  height: 321px;
  padding: 45px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border-radius: 10px;
}

.access__name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 15px;
}

.access__address {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
}

.access__note {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  border: 1px solid var(--color-brown);
  border-radius: 5px;
}

.access__note strong {
  font-weight: 700;
}

.access__iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 1px solid var(--color-brown);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding: 98px 0 120px;
  background-color: var(--color-bg);
}

.contact__inner {
  margin-top: 100px;
}

.contact__lead {
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}

.contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  height: 100px;
  margin: 0 auto 50px;
  padding: 25px 40px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.contact__tel-icon {
  flex-shrink: 0;
  width: 70px;
  height: 40px;
}

.contact__tel-number {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

@media (min-width: 768px) {
  .contact__tel {
    cursor: default;
  }
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 120px;
}

.contact__actions .btn--lg {
  flex: 0 0 480px;
  width: 480px;
  max-width: 480px;
}

.contact__company {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1000px;
  min-height: 433px;
  margin-inline: auto;
  padding: 50px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact__company-text {
  flex: 0 0 360px;
  max-width: 360px;
  min-width: 0;
}

.contact__company-name {
  margin-bottom: 40px;
}

.contact__company-name img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.contact__company-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 0 10px;
  font-size: 16px;
  color: #000;
  border: 1px solid #000;
  border-radius: 2px;
}

.contact__company-block {
  margin-bottom: 15px;
}

.contact__company-block:last-child {
  margin-bottom: 0;
}

.contact__company-detail {
  margin: 0;
  font-size: 16px;
  line-height: 1.67;
  color: #000;
}

.contact__company-detail a,
.contact__company-detail a[href^="tel:"],
.contact__company-detail a[x-apple-data-detectors] {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}

.contact__company-text .btn--outline {
  margin-top: 20px;
}

.contact__company-image {
  flex: 0 0 500px;
  max-width: 500px;
  margin: 0;
}

.contact__company-image img {
  width: 100%;
  border-radius: 4px;
}

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

.footer {
  min-height: 110px;
  box-sizing: border-box;
  background-color: var(--color-bg);
  color: var(--color-brown);
  border-top: 1px solid #6a4432;
}

.footer__inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
  padding: 40px 50px;
  box-sizing: border-box;
  min-height: 110px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05em;
}

.footer__name {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 18px;
}

.footer__address {
  flex-shrink: 0;
  margin-left: 30px;
  text-align: left;
}

.footer__copyright {
  flex-shrink: 0;
  margin-left: auto;
  text-align: left;
}

/* ==========================================================================
   Tablet (768px – 1199px)
   ========================================================================== */

@media (max-width: 1199px) {
  .section-title__main {
    font-size: clamp(36px, 5vw, 60px);
  }

  .section-title__sub {
    font-size: clamp(24px, 3vw, 32px);
  }

  .menu {
    --menu-panel-padding-top: 70px;
    --menu-panel-padding-x: 36px;
    --menu-panel-padding-bottom: 60px;
    --menu-list-gap: 15px;
  }

  .hero__logo {
    --hero-logo-width: clamp(340px, 50vw, 550px);
    width: var(--hero-logo-width);
    height: calc(var(--hero-logo-width) * 327 / 550);
    padding: calc(var(--hero-logo-width) * 100 / 550) calc(var(--hero-logo-width) * 50 / 550)
      calc(var(--hero-logo-width) * 50 / 550) calc(var(--hero-logo-width) * 100 / 550);
  }

  .hero__logo img {
    width: calc(var(--hero-logo-width) * 400 / 550);
    max-width: 100%;
  }

  .hero__photo {
    object-position: 62% 50%;
  }

  .hero__copy {
    left: clamp(30px, 6vw, 80px);
    --hero-copy-width: clamp(110px, 17vw, 152px);
  }

  .hero__copy img {
    max-width: var(--hero-copy-width);
  }

  .point .point__inner {
    container-type: inline-size;
  }

  .point__list {
    container-type: inline-size;
    width: 100%;
    max-width: 900px;
    height: auto;
    aspect-ratio: 1160 / 680;
    margin-inline: auto;
  }

  .point {
    --point-list-height: calc(900px * 680 / 1160);
    --point-illus-half-height: 245px;
		padding: 60px 0 100px;
  }

	.point__lead-quote {
    font-size: 42px;
  }

  .point__lead-em {
    font-size: 48px;
  }

  .point__lead-sub {
    font-size: clamp(30px, 2.5vw, 40px);
		line-height: 1.3;
		letter-spacing: 0.08em;
  }

  .point__illustration {
    margin-top: calc(-100cqw * 50 / 1160);
  }

  .point__illustration img {
    max-width: 400px;
  }

  .point__bg {
    overflow: hidden;
  }

  .point__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .point__item {
    container-type: inline-size;
    width: calc(100% * 270 / 1160);
    height: auto;
    aspect-ratio: 1;
  }

  .point__item--pos-1 {
    left: calc(100% * 600 / 1160);
    top: 0;
  }

  .point__item--pos-2 {
    left: calc(100% * 290 / 1160);
    top: 0;
  }

  .point__item--pos-3 {
    left: calc(100% * 890 / 1160);
    top: calc(100cqw * 100 / 1160);
  }

  .point__item--pos-4 {
    left: 0;
    top: calc(100cqw * 100 / 1160);
  }

  .point__item--pos-5 {
    left: calc(100% * 600 / 1160);
    top: calc(100cqw * 310 / 1160);
  }

  .point__item--pos-6 {
    left: calc(100% * 290 / 1160);
    top: calc(100cqw * 310 / 1160);
  }

  .point__item--pos-7 {
    left: calc(100% * 890 / 1160);
    top: calc(100cqw * 410 / 1160);
  }

  .point__item--pos-8 {
    left: 0;
    top: calc(100cqw * 410 / 1160);
  }

  .point-card {
    width: 100%;
    height: 100%;
    padding: 7.41cqi;
    font-size: 11.11cqi;
    line-height: 1.4;
    letter-spacing: 0;
    overflow: hidden;
  }

  .point-card__line {
    line-height: 1.4;
  }

  .point-card__em {
    font-size: 13.33cqi;
    line-height: 1.4;
  }

  .point-card__md {
    font-size: 11.11cqi;
    line-height: 1.4;
  }

  .welcome {
    min-height: auto;
    padding: 200px 0 120px;
  }

  .welcome__bg {
    inset: 0;
    width: auto;
    max-width: none;
    height: auto;
    background-image: url("../img/welcome-gradation.png"), url("../img/welcome-bg.png");
    background-size: 100% auto, contain;
    background-position: top center, left top;
    background-repeat: no-repeat, no-repeat;
  }

  .welcome__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 80px;
  }

  .welcome__visual {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

	.welcome__text {
		max-width: 100%;
	}

	.welcome__quotes {
		margin-bottom: 40px;
	}

	.welcome__quotes li {
		text-align: center;
		font-size: 18px;
		line-height: 1.8;
		letter-spacing: 0.2em;
	}

	.welcome__lead {
		text-align: center;
		font-size: 16px;
		line-height: 1.8;
		letter-spacing: 0.2em;
	}

	.welcome__desc {
		text-align: center;
		font-size: 16px;
		line-height: 1.8;
		letter-spacing: 0.2em;
	}

	.features {
    padding: 60px 0 130px;
  }

  .features__bg-image {
    max-width: min(320px, 26vw);
    max-height: 50%;
  }

  .feature-card__text br {
    display: none;
  }

  .feature-card__title {
    font-size: 30px;
  }

  .stone-list--three,
  .stone-list--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  /* .stone-list__item img {
    max-width: 280%;
  } */

  .product-table-wrap {
    overflow-x: visible;
  }

  .product-table {
    width: 100%;
    max-width: 100%;
    font-size: clamp(13px, 1.5vw, 18px);
  }

  .product-table col.product-table__col-year {
    width: 7%;
  }

  .product-table col.product-table__col-name {
    width: 30%;
  }

  .product-table col.product-table__col-count {
    width: 10%;
  }

  .product-table col.product-table__col-people {
    width: 14%;
  }

  .product-table col.product-table__col-type {
    width: 14%;
  }

  .product-table col.product-table__col-price {
    width: 27%;
  }

  .product-table th,
  .product-table td {
    padding: 5px 8px;
  }

  .product-table thead th {
    font-size: clamp(13px, 1.5vw, 18px);
  }

  .product-table__year {
    font-size: clamp(13px, 1.5vw, 18px);
    letter-spacing: 0.35em;
    width: auto;
  }

  .product-table__head-year {
    width: auto;
  }

  .access__info {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .access__content {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .access__map {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .access {
    background-size: 280px auto, 280px auto;
  }

  .contact {
    padding: 60px 0 100px;
  }

	/* .contact__actions {
		gap: 30px;
	} */

  .contact__company {
    flex-direction: column;
  }

  .contact__company-text {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .contact__company-image {
    order: -1;
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .contact__company-text .btn--outline {
      width: 100%;
      max-width: 100%;
      height: 40px;
      min-height: 40px;
      box-sizing: border-box;
    }
  }

  .contact__actions .btn--lg {
    flex: 0 0 min(480px, calc(50% - 20px));
    width: min(480px, calc(50% - 20px));
    max-width: min(480px, calc(50% - 20px));
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    padding-inline: 18px;
    font-size: clamp(16px, 1.9vw, 24px);
    gap: 20px;
    box-sizing: border-box;
  }

  .contact__actions .btn--lg .btn__text {
    white-space: nowrap;
  }

  .contact__actions .btn--lg .btn__arrow {
    right: 16px;
    width: 20px;
    height: 20px;
  }

  .contact__actions .btn--line.btn--lg {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    padding-inline: 12px;
    gap: 10px;
    box-sizing: border-box;
  }

  .contact__actions .btn--line {
    border: none;
    background-color: #06c755;
    color: var(--color-white);
  }

  .section-wave {
    height: 60px;
    margin-top: -60px;
  }

  .section-wave__svg {
    height: 60px;
  }
}

/* ==========================================================================
   SP (max 767px)
   ========================================================================== */

@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.86;
  }

  .container {
    padding-inline: 30px;
  }

  .header {
    padding: 10px;
  }

	.menu__toggle {
		margin: 0 0 0 auto;
	}

  .menu__toggle-icon--open img {
    width: 22px;
    height: auto;
  }

	.menu__toggle-icon--close img {
		width: 18px;
    height: auto;
	}

  .menu {
    width: 220px;
    --menu-btn-size: var(--header-btn-sp);
    --menu-panel-padding-top: 40px;
    --menu-panel-padding-x: 30px;
    --menu-panel-padding-bottom: 40px;
    --menu-list-gap: 10px;
  }

  .menu__link {
    font-size: 16px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title__sub {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .section-title__main {
    font-size: 32px;
  }

  .btn--lg {
    height: 60px;
    font-size: 16px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero__image {
    height: 100svh;
  }

  .hero__photo {
    height: 100svh;
    max-height: 100svh;
    object-position: 65.5% 42%;
  }

  .hero__copy {
    top: 0;
    left: clamp(20px, 5vw, 30px);
    --hero-copy-width: clamp(72px, 24vw, 112px);
    height: calc(100svh - 72px);
    margin-top: 0;
  }

  .hero__copy img {
    max-width: var(--hero-copy-width);
    max-height: calc(100svh - 72px);
  }

  .hero__logo {
    --hero-logo-width: clamp(230px, 77vw, 340px);
    width: var(--hero-logo-width);
    height: calc(var(--hero-logo-width) * 327 / 550);
    padding: calc(var(--hero-logo-width) * 100 / 550) calc(var(--hero-logo-width) * 50 / 550)
      calc(var(--hero-logo-width) * 50 / 550) calc(var(--hero-logo-width) * 100 / 550);
    right: 0;
    left: auto;
    bottom: 0;
    transform: none;
  }

  .hero__logo img {
    width: calc(var(--hero-logo-width) * 400 / 550);
    max-width: 100%;
  }

  .hero__annotation {
    left: 10px;
    bottom: 10px;
    font-size: 10px;
  }

  .welcome {
    padding: 100px 0 60px;
  }

  .welcome__inner {
    flex-direction: column;
    gap: 50px;
  }

  .welcome__visual {
    flex: none;
    width: 96%;
  }

  .welcome__open {
    width: 80%;
		max-width: 300px;
    margin-bottom: 16px;
  }

	.welcome__quotes {
		margin-bottom: 20px;
	}

  .welcome__quotes li {
    font-size: 15px;
		line-height: 2;
		text-align: left;
  }

	.welcome__lead,
  .welcome__desc {
    font-size: 14px;
		text-align: left;
  }

	.welcome__lead {
		margin-bottom: 20px;
	}

	.welcome__lead br,
  .welcome__desc br {
    display: none;
  }

  .imagephoto {
    padding-bottom: 60px;
  }

  .imagephoto__gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    min-height: 0;
  }

  .imagephoto__cluster {
    position: relative;
    width: 100%;
    aspect-ratio: 370 / 633;
  }

  .imagephoto__item--kagayaki {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    z-index: 1;
  }

  .imagephoto__item--sai {
    position: absolute;
    top: 52.606%;
    left: 29.73%;
    width: 70.27%;
    z-index: 2;
  }

  .imagephoto__item--kanade {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .features {
    padding: 30px 0 130px;
  }

  .features__bg-image {
    max-width: min(190px, 50vw);
    max-height: 48%;
  }

	.features .section-title {
		margin-top: 40px;
	}

  .feature-card {
    flex-direction: column;
    height: auto;
    gap: 0;
    padding: 20px 25px 0;
    text-align: center;
    overflow: hidden;
  }

  .feature-card__icon {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: auto;
    align-self: center;
    order: 2;
    line-height: 0;
  }

  .feature-card__body {
    margin-left: 0;
    padding: 0 0 10px;
    text-align: center;
    order: 1;
  }

  .feature-card__title {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    font-size: 20px;
		line-height: 1.3;
		margin-bottom: 5px;
    text-align: left;
  }

  .feature-card__title br {
    display: inline;
  }

  .feature-card__num {
    font-size: 54px;
  }

  .feature-card__text {
    font-size: 14px;
  }

  .product {
    padding: 60px 0 50px;
  }

  .product__section-title,
  .product__price-title,
  .product__stone-title {
    font-size: 20px;
  }

  .product-table-wrap {
    display: none;
  }

  .price-cards {
    display: flex;
    gap: 20px;
  }

  .product__section {
    margin-bottom: 30px;
  }

  .price-card {
    padding: 20px 30px;
  }

  .price-card__title {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    padding: 0;
    box-sizing: border-box;
  }

  .price-card__image {
    margin: 0 0 20px;
    border: none;
  }

  .price-card__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-inline: 0;
    display: block;
  }

  .price-card__badge {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .price-card__detail {
    text-align: left;
  }

  .price-card__price-label {
    margin-bottom: 0;
  }

  .price-card__price {
    font-weight: 500;
    line-height: 1.5;
    border-top: 1px dashed var(--color-brown);
    padding-top: 20px;
  }

  .product__stone {
    padding: 30px;
  }

  .stone-list {
    gap: 10px;
  }

  .stone-list--five {
    row-gap: 10px;
  }

  .stone-list--three,
  .stone-list--five {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 340px;
  }

  .stone-list--three .stone-list__item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 580 / 628;
    object-fit: contain;
    object-position: bottom center;
  }

  .stone-list--five .stone-list__item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .stone-group {
    margin-bottom: 20px;
  }

  .stone-group__title {
    height: 30px;
    line-height: 30px;
		margin: 0 auto 20px;
    padding: 0;
    font-size: 15px;
  }

  .stone-list__name {
    font-size: 14px;
  }

  .stone-point {
    height: auto;
    min-height: 76px;
    padding: 10px 20px;
  }

  .stone-point__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact__tel {
    height: 50px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .contact__tel-number {
    font-size: 24px;
  }

  .contact__tel-icon {
    width: 40px;
    height: auto;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    min-height: 138px;
    font-size: 14px;
  }

  .footer__name {
    font-size: 16px;
  }

  .footer__address {
    margin-left: 0;
  }

  .footer__copyright {
    margin-left: 0;
    margin-top: 20px;
  }

  .point {
    padding: 30px 0 60px;
    --point-bg-top: 160px;
    --point-section-padding-top: 30px;
    --point-lead-height: 62px;
    --point-lead-margin-top: 45px;
    --point-lead-margin-bottom: 30px;
    --point-item-max-size: calc(900px * 270 / 1160);
    --point-list-height: 1306px;
    --point-illus-extent-height: calc(280px * 980 / 1000);
  }

  .section-wave {
    height: 30px;
    margin-top: -30px;
  }

  .section-wave__svg {
    height: 30px;
  }

  .point__bg {
    overflow: hidden;
    height: calc(
      var(--point-section-padding-top) + var(--point-lead-margin-top) + var(--point-lead-height) +
        var(--point-lead-margin-bottom) + var(--point-list-height) + 40px +
        var(--point-illus-extent-height) - var(--point-bg-top)
    );
    aspect-ratio: auto;
  }

  .point__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .point__lead {
    margin-top: 45px;
    margin-bottom: 30px;
    container-type: inline-size;
  }

  .point__lead-quote {
    font-size: 24px;
    line-height: 1.4;
  }

  .point__lead-em {
    font-size: 32px;
  }

  .point__lead-sub {
    display: block;
    font-size: clamp(12px, 5.8cqi, 20px);
    line-height: 1.4;
		letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .point .point__inner {
    container-type: inline-size;
  }

  .point__list {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    box-sizing: border-box;
  }

  .point__list .point__item {
    container-type: inline-size;
    position: relative;
    left: auto;
    top: auto;
    width: min(52vw, var(--point-item-max-size));
    max-width: var(--point-item-max-size);
    height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
    margin-top: calc(-0.22 * min(52vw, var(--point-item-max-size)));
    flex-shrink: 0;
  }

  .point__item:first-child {
    margin-top: 0;
  }

  .point__item:nth-child(odd) {
    transform: translateX(-30%);
  }

  .point__item:nth-child(even) {
    transform: translateX(30%);
  }

  .point__item:nth-child(1) {
    z-index: 8;
  }

  .point__item:nth-child(2) {
    z-index: 7;
  }

  .point__item:nth-child(3) {
    z-index: 6;
  }

  .point__item:nth-child(4) {
    z-index: 5;
  }

  .point__item:nth-child(5) {
    z-index: 4;
  }

  .point__item:nth-child(6) {
    z-index: 3;
  }

  .point__item:nth-child(7) {
    z-index: 2;
  }

  .point__item:nth-child(8) {
    z-index: 1;
  }

  .point__illustration {
    margin-top: 40px;
  }

  .point-card {
    width: 100%;
    height: 100%;
    padding: 7.41cqi;
    font-size: 11.11cqi;
    line-height: 1.4;
    letter-spacing: 0;
    overflow: hidden;
  }

  .point-card__line {
    line-height: 1.4;
  }

  .point-card__em {
    font-size: 13.33cqi;
    line-height: 1.4;
  }

  .point-card__md {
    font-size: 11.11cqi;
    line-height: 1.4;
  }

  .point__illustration img {
    max-width: 280px;
  }

  .access {
    padding: 60px 0 80px;
    background-size: 150px auto, 150px auto;
  }

  .access__content {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 20px;
  }

  .access__info {
    padding: 20px 30px 30px;
  }

  .access__name {
    font-size: 20px;
		margin-bottom: 5px;
  }

  .access__address,
  .access__note {
    font-size: 14px;
		line-height: 1.8;
  }

  .access__iframe {
    height: 330px;
  }

  .contact {
    padding: 30px 0 80px;
  }

  .contact__inner {
    margin-top: 40px;
  }

  .contact__lead {
    text-align: left;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact__actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact__actions .btn {
    font-weight: 500;
    line-height: 1;
  }

  .contact__actions .btn--lg {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding-inline: 24px;
    font-size: 14px;
    gap: 8px;
    box-sizing: border-box;
  }

  .contact__actions .btn--lg .btn__text {
    font-size: 14px;
  }

  .contact__actions .btn--lg .btn__arrow {
    right: 16px;
    width: 18px;
    height: 18px;
  }

  .contact__actions .btn--line .btn__text {
    font-size: 14px;
  }

  .contact__actions .btn--line.btn--lg {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: 0 12px;
    gap: 20px;
    box-sizing: border-box;
  }

  .contact__actions .btn--line .btn__icon--line {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .contact__actions .btn--line {
    border: none;
    background-color: #06c755;
    color: var(--color-white);
  }

  .contact__company {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .contact__company-text {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .contact__company-image {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    order: -1;
  }

  .contact__company-label {
    font-size: 14px;
  }

  .contact__company-text .btn--outline {
    font-size: 14px;
    font-weight: 500;
  }

  .contact__company-name {
    width: 78%;
    margin-bottom: 20px;
  }

  .contact__company-name img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .contact__company-detail {
    font-size: 14px;
  }
}
