@charset "UTF-8";
/* ===========================================
utility
=========================================== */
.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.text-aligh-center {
  text-align: center;
}

.text-aligh-left {
  text-align: left;
}

.text-inline-block {
  display: inline-block;
}

/* スクリーンリーダー用のテキストを非表示に */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===========================================
common
=========================================== */
html {
  font-size: 100%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 88%;
  }
}

body {
  color: #2f2f2f;
  font-size: clamp(0.875rem, 0.7557251908rem + 0.5089058524vw, 1rem);
  font-family: "Noto Sans JP", sans-serif;
  color: #2f2f2f;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  display: inline-block;
  cursor: pointer;
}

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

/* フォーカスインジケーター スタイル必要に応じて調整*/
a,
button,
input,
select,
textarea,
[tabindex]:not([tabindex="-1"]) {
  outline: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 3px solid #007acc;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 8px rgba(0, 122, 204, 0.6);
  box-shadow: 0 0 8px rgba(0, 122, 204, 0.6);
}

.js-fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.js-fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.inner {
  width: min(77.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.button {
  border-radius: 1.875rem;
  padding: 1.25rem 2.6875rem;
}

.button--primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1;
  border: 0.0625rem solid #EA808B;
  background-color: #EA808B;
  -webkit-transition: color 0.3s, border 0.3s, background-color 0.3s;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}
@media screen and (max-width: 769px) {
  .button--primary {
    font-size: 1.125rem;
  }
}
.button--primary span {
  font-size: 1rem;
}
@media (any-hover: hover) {
  .button--primary:hover, .button--primary:focus {
    color: #EA808B;
    border: 0.0625rem solid currentColor;
    background-color: transparent;
  }
}

.button--secondary {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  padding: 0.625rem 3.125rem;
  border: 0.0625rem solid currentColor;
  -webkit-transition: color 0.3s, border 0.3s, background-color 0.3s;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}
@media (any-hover: hover) {
  .button--secondary:hover, .button--secondary:focus {
    color: #ffffff;
    border: 0.0625rem solid #afafaf;
    background-color: #afafaf;
  }
  .button--secondary:hover::before, .button--secondary:focus::before {
    background: #ffffff;
  }
}

.button--icon {
  position: relative;
  padding-left: 5.3125rem;
}
.button--icon:before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 3.125rem;
  content: "";
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1;
  background-image: url(/img/icon02.webp);
  background-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(/img/icon02.webp);
  mask-image: url(/img/icon02.webp);
  background: #2f2f2f;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.heading {
  font-size: 2.5rem;
  font-family: "Sawarabi Mincho", serif;
  line-height: 1.85;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .heading {
    font-size: clamp(1.5rem, 0.7857142857rem + 3.5714285714vw, 2.5rem);
  }
}

.heading--primary {
  color: #EA808B;
}

.flex-style {
  position: relative;
}
.flex-style:before {
  position: absolute;
  top: 8.125rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 62vw;
  max-width: 70%;
  aspect-ratio: 1185/733;
  background-color: #fff1f0;
  z-index: -10;
}
@media screen and (max-width: 1024px) {
  .flex-style:before {
    width: 80vw;
    height: 85%;
    max-width: none;
  }
}
@media screen and (max-width: 375px) {
  .flex-style:before {
    width: 95vw;
  }
}

.flex-style__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.9375rem;
}
@media screen and (max-width: 1024px) {
  .flex-style__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}
@media screen and (max-width: 769px) {
  .flex-style__wrap {
    gap: 2.5rem;
  }
}

.flex-style__image {
  position: relative;
  width: 49vw;
  aspect-ratio: 937/580;
  margin-top: 7.5rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .flex-style__image {
    width: 90vw;
    margin-top: 0;
  }
}
@media screen and (max-width: 375px) {
  .flex-style__image {
    width: 98vw;
  }
}
.flex-style__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.flex-style__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .flex-style__body {
    padding-left: 5%;
  }
}
@media screen and (max-width: 769px) {
  .flex-style__body {
    padding-left: 0;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.header {
  font-size: 2.5rem;
  color: #2f2f2f;
}
@media screen and (max-width: 769px) {
  .header {
    font-size: 3.125rem;
  }
}

/* ===========================================
header
=========================================== */
.header {
  position: relative;
  height: 4.125rem;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 5.25rem;
  }
}
.header:before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: inline-block;
  width: 53vw;
  height: 37.5rem;
  background-color: #fff1f0;
}
@media screen and (max-width: 1280px) {
  .header:before {
    width: 70vw;
  }
}

.header__inner {
  position: relative;
  padding: 1.25rem 2rem;
  z-index: 1;
}

.header__logo {
  width: 8.125rem;
  height: 2.5rem;
}
.header__logo p {
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  line-height: 1.5;
}

/* ===========================================
fv
=========================================== */
.fv__inner {
  position: relative;
  width: min(103.125rem, 100%);
  margin-inline: auto;
}

.fv__wrap {
  position: absolute;
  left: 0;
  top: 44%;
  translate: 0 -50%;
  padding-left: 6.25rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 1024px) {
  .fv__wrap {
    position: static;
    translate: 0;
  }
}
@media screen and (max-width: 769px) {
  .fv__wrap {
    padding-inline: clamp(1.25rem, 0.3571428571rem + 4.4642857143vw, 2.5rem);
    margin-top: 2rem;
  }
}

.fv__new-open{
	font-size: 40px;
    color: #EA808B;
	 line-height: 1.3;
     margin-bottom: 16px;
}

@media screen and (max-width: 769px) {
	.fv__new-open{
	    font-size: clamp(24px, 4.17vw, 32px);
        margin-bottom: 4px;
	    }
   }

.fv__heading {
  font-size: 5rem;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .fv__heading {
    font-size: clamp(3.125rem, 2.2727272727rem + 4.2613636364vw, 5rem);
  }
}

.fv__lead {
  font-size: 3.125rem;
  font-family: "Sawarabi Mincho", serif;
  line-height: 1;
  margin-top: 2.25rem;
}
@media screen and (max-width: 1024px) {
  .fv__lead {
    font-size: clamp(1.5rem, 0.7613636364rem + 3.6931818182vw, 3.125rem);
  }
}
.fv__lead span {
  letter-spacing: -0.5em;
}

.fv__text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  margin-top: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .fv__text {
    font-size: clamp(1rem, 0.9431818182rem + 0.2840909091vw, 1.125rem);
  }
}

.fv__button {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 1280px) {
  .fv__button {
    margin-top: 2rem;
  }
}

.fv__image {
  width: 56.5vw;
  height: 668px;
  margin-left: auto;
  margin-right: calc(50% - 50vw + 6%);
}
@media screen and (min-width: 1921px) {
  .fv__image {
    aspect-ratio: 1081/668;
    height: auto;
  }
}
@media screen and (max-width: 1440px) {
  .fv__image {
    margin-right: calc(50% - 50vw + 1%);
  }
}
@media screen and (max-width: 1024px) {
  .fv__image {
    width: 90vw;
    margin-right: calc(50% - 50vw + 3%);
  }
}
@media screen and (max-width: 769px) {
  .fv__image {
    width: 95vw;
    height: 100svh;
  }
}
.fv__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
}

/* ===========================================
about
=========================================== */
.about {
  padding-block: 13.5rem 10.3125rem;
}

.about__text {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 2.25rem;
}
@media screen and (max-width: 375px) {
  .about__text {
    line-height: 1.9;
    letter-spacing: 0.03em;
    margin-top: 1.5rem;
  }
}

.about__text:nth-of-type(2) {
  margin-top: 2.25rem;
}
@media screen and (max-width: 769px) {
  .about__text:nth-of-type(2) {
    margin-top: 1.5rem;
  }
}

/* ===========================================
menu
=========================================== */
.menu {
  padding-block: 4.75rem;
  background-color: #fff1f0;
}
@media screen and (max-width: 769px) {
  .menu {
    padding-block: 4rem;
  }
}
.menu .inner {
  padding-inline: 4.375rem;
}
@media screen and (max-width: 769px) {
  .menu .inner {
    padding-inline: 1.25rem;
  }
}

.menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
  margin-top: 3.25rem;
}
@media screen and (max-width: 769px) {
  .menu__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.125rem;
  }
}

@media screen and (max-width: 769px) {
  .menu__item {
    width: min(25rem, 100%);
    margin-inline: auto;
  }
}

.menu__image {
  aspect-ratio: 336/457;
  overflow: hidden;
}
.menu__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu__title {
  font-size: 1.25rem;
  font-family: "Sawarabi Mincho", serif;
  color: #EA808B;
  margin-top: 1.125rem;
}
@media screen and (max-width: 769px) {
  .menu__title {
    text-align: center;
  }
}

.menu__text {
  line-height: 1.5625;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 769px) {
  .menu__text {
    margin-top: 0.625rem;
  }
}

/* ===========================================
price
=========================================== */
.price {
  padding-block: 3.75rem 7.1875rem;
}
@media screen and (max-width: 769px) {
  .price {
    padding-bottom: 4rem;
  }
}

.price__lead {
  text-align: center;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 769px) {
  .price__lead {
    margin-top: 1.5rem;
  }
}
.price__lead span {
  display: inline-block;
}

.price__category-list {
  padding-inline: 10%;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (max-width: 769px) {
  .price__category-list {
    padding-inline: clamp(0rem, -4.4131679389rem + 18.8295165394vw, 4.625rem);
    margin-top: 1.5rem;
  }
}

.price__category-item:not(:first-child) {
  margin-top: 3.0625rem;
}

.price__title {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.075em;
  padding-bottom: 0.8125rem;
  border-bottom: 0.0625rem solid #666666;
}
.price__title span {
  font-size: 0.875rem;
  color: #666666;
  margin-left: 1rem;
}

.price__menu-list {
  margin-top: 1.6875rem;
}
.price__menu-list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 880px) {
  .price__menu-list div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
}
.price__menu-list dt {
  position: relative;
  width: 58%;
  font-weight: normal;
  padding-left: 1.1em;
  font-size: 1.125rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .price__menu-list dt {
    width: 40%;
  }
}
@media screen and (max-width: 880px) {
  .price__menu-list dt {
    line-height: 1.2;
    width: 100%;
	font-weight: 500;
  }
}
.price__menu-list dt:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.price__kakaku {
  width: 24.8125rem;
  font-size: 0.875rem;
  line-height: 2.2857142857;
  white-space: nowrap;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 880px) {
  .price__kakaku {
    width: 100%;
    font-size: 1rem;
    white-space: normal;
    margin-left: 1.4em;
    line-height: 1.4;
  }
}
.price__kakaku .yen {
  font-size: 1rem;
  margin-left: 0.8em;
}

@media screen and (max-width: 880px) {
	.price__kakaku .yen {
  font-size: 1.25rem;
}
}

.price__kakaku .first {
  color: #EA808B;
  margin-left: 1em;
}
@media screen and (max-width: 880px) {
  .price__kakaku .first {
    display: inline-block;
    margin-left: 0;
  }
}
.price__kakaku .first .yen {
  margin-left: 0;
}
@media screen and (max-width: 880px) {
  .price__kakaku .first .yen {
    margin-left: 0.6em;
  }
}

.price__care-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 880px) {
  .price__care-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.price__menu-list--option {
  margin-top: 0.5rem;
}
@media screen and (max-width: 880px) {
  .price__menu-list--option div {
    margin-top: 0.625rem;
  }
}
.price__menu-list--option dd .yen {
  margin-left: 0;
}

.price__option {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.price__kakaku--care {
  margin-left: 0;
}

.price__detail-list {
  width: 40%;
}
@media screen and (max-width: 880px) {
  .price__detail-list {
    width: 100%;
    margin-top: 1rem;
  }
}
.price__detail-list li {
  line-height: 1.9;
  letter-spacing: 0.1em;
}

/* ===========================================
guide
=========================================== */
.guide {
  position: relative;
  background-color: #fff1f0;
  padding-block: 7.1875rem 8.4375rem;
}
@media screen and (max-width: 1024px) {
  .guide {
    padding-bottom: 32.5rem;
  }
}
@media screen and (max-width: 769px) {
  .guide {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 375px) {
  .guide {
    padding-bottom: 27.5rem;
  }
}
.guide .inner {
  padding-inline: 2.25rem;
}
@media screen and (max-width: 1024px) {
  .guide .inner {
    padding-left: clamp(1.25rem, -2.4431818182rem + 18.4659090909vw, 9.375rem);
  }
}

.guide__heading {
  padding-left: 0.5rem;
}

.guide__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 2.875rem;
  margin-top: 2rem;
  padding-right: 1.25rem;
  border-bottom: 0.0625rem solid #afafaf;
}
@media screen and (max-width: 375px) {
  .guide__list {
    margin-top: 1rem;
    padding-bottom: 1.5rem;
  }
}

.guide__list-item {
  position: relative;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0.035em;
  padding-left: 1rem;
}
@media screen and (max-width: 375px) {
  .guide__list-item {
    line-height: 1.9;
  }
}
.guide__list-item:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  display: inline-block;
}
.guide__list-item span {
  color: #EA808B;
  font-weight: 500;
}

.guide__text {
  line-height: 2.25;
  letter-spacing: 0.075em;
  padding-left: 14px;
  margin-top: 2rem;
}
@media screen and (max-width: 375px) {
  .guide__text {
    margin-top: 1.5rem;
  }
}

.guide__tel {
  position: relative;
  font-size: 2.5rem;
  font-family: "Sawarabi Mincho", serif;
  color: #EA808B;
  line-height: 1;
  padding-left: 66px;
  margin-top: 15px;
}
@media screen and (max-width: 769px) {
  .guide__tel {
    font-size: clamp(1.875rem, 1.4285714286rem + 2.2321428571vw, 2.5rem);
    padding-left: clamp(3.125rem, 2.4107142857rem + 3.5714285714vw, 4.125rem);
  }
}
.guide__tel:before {
  position: absolute;
  top: 0;
  left: 0.875rem;
  content: "";
  display: inline-block;
  width: 2.5rem;
  aspect-ratio: 1;
  background-image: url(/img/icon01.webp);
  background-size: contain;
}
@media screen and (max-width: 769px) {
  .guide__tel:before {
    width: clamp(1.875rem, 1.4285714286rem + 2.2321428571vw, 2.5rem);
  }
}

.guide__image {
  position: absolute;
}
.guide__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.guide__image--first {
  top: 9.6875rem;
  right: 8.5%;
  width: clamp(23.75rem, -2.4642857143rem + 40.9598214286vw, 46.6875rem);
  aspect-ratio: 747/461;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .guide__image--first {
    top: auto;
    bottom: 3.75rem;
    right: 22%;
  }
}
@media screen and (max-width: 375px) {
  .guide__image--first {
    width: 16.25rem;
    bottom: 6.25rem;
  }
}

.guide__image--second {
  top: -5.3125rem;
  right: 0;
  width: clamp(23.75rem, 3.4642857143rem + 31.6964285714vw, 41.5rem);
  aspect-ratio: 664/400;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .guide__image--second {
    top: auto;
    bottom: 14.6875rem;
    right: 0;
  }
}
@media screen and (max-width: 375px) {
  .guide__image--second {
    width: 16.25rem;
  }
}

/* ===========================================
access
=========================================== */
.access {
  text-align: center;
  padding-block: 7.8125rem;
}
@media screen and (max-width: 769px) {
  .access {
    padding-block: 3.75rem;
  }
}

.access__text {
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-top: 2.125rem;
}
.access__text span {
  display: inline-block;
}

.access__button {
  margin-top: 2.9375rem;
}

.acceess__map {
  aspect-ratio: 1920/400;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .acceess__map {
    width: 100%;
    height: 18.75rem;
  }
}
.acceess__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ===========================================
cta
=========================================== */
.cta {
  padding-block: 12.3125rem 6.9375rem;
}
@media screen and (max-width: 769px) {
  .cta {
    padding-block: 5rem;
  }
}

.flex-style--cta::before {
  top: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .flex-style--cta::before {
    height: 95%;
  }
}

.flex-style__image--cta {
  margin-top: 3rem;
}

.flex-style__wrap--cta {
  gap: 5.9375rem;
}
@media screen and (max-width: 1280px) {
  .flex-style__wrap--cta {
    gap: 2.5rem;
  }
}

.cta__heading {
  margin-left: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .cta__heading {
    line-height: 1.6;
  }
}
@media screen and (max-width: 769px) {
  .cta__heading {
    margin-left: 0;
  }
}
.cta__heading span {
  margin-left: 1rem;
}

.cta__text {
  width: 92%;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .cta__text {
    margin-top: 1.25rem;
  }
}

.cta__button {
  margin-top: 4.25rem;
}
@media screen and (max-width: 1280px) {
  .cta__button {
    margin-top: 2.5rem;
  }
}

/* ===========================================
footer
=========================================== */
.footer {
  text-align: center;
  padding-block: 1.875rem;
}

.footer__copyright {
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  line-height: 1.75;
}