@charset "UTF-8";

/*============================================
breakpoint
$xxs: calc(320em / 16);
$xs: calc(375em / 16);
$s: calc(600em / 16);
$s-max: calc(599em / 16);
$m: calc(768em / 16);
$m-max: calc(767em / 16);
$l: calc(1024em / 16);
$l-max:calc(1023em / 16);
$xl: calc(1120em / 16);
$xxl: calc(1280em / 16);
$xxl: calc(1366em / 16);
$xxxl: calc(1500em / 16);
============================================*/
:root {
  /* ============================================
  font-family
  ============================================ */
  --font: "Shippori Mincho", serif;
  --font-en: "Cormorant Infant", serif;
  /* ============================================
  color-name
  ============================================ */
  --color-white-gray: #ddd;
  --color-black: #333;
  /* ============================================
  color-meaning
  ============================================ */
  --color-corporate: var(--color-white-gray);
  --color-base: var(--color-black);
  /* ============================================
  value
  ============================================ */
  --value--pc: 1920;
  --value--base: 1500;
  --value--l: 1400;
  --value--m: 1280;
  --value--s: 1102;
  /* ============================================
  wrapper-width
  ============================================ */
  --wrapper-fixed--pc: calc((var(--value--pc) * 1rem) / 16);
  --wrapper-fixed--base: calc((var(--value--base) * 1rem) / 16);
  --wrapper-fixed--l: calc((var(--value--l) * 1rem) / 16);
  --wrapper-fixed--m: calc((var(--value--m) * 1rem) / 16);
  --wrapper-fixed--s: calc((var(--value--s) * 1rem) / 16);
  --wrapper--l: calc((var(--value--l) / var(--value--base)) * 100vw);
  --wrapper--m: calc((var(--value--m) / var(--value--base)) * 100vw);
  --wrapper--s: calc((var(--value--s) / var(--value--base)) * 100vw);
  /* ============================================
  wrapper-margin
  ============================================ */
  --wrapper-margin--l: calc(
    ((var(--value--base) - var(--value--l)) / 2 / var(--value--base)) * 100%
  );
  --wrapper-margin--m: calc(
    ((var(--value--base) - var(--value--m)) / 2 / var(--value--base)) * 100%
  );
  --wrapper-margin--s: calc(
    ((var(--value--base) - var(--value--s)) / 2 / var(--value--base)) * 100%
  );
  /* ============================================
  timing-function
  ============================================ */
  --ease-in-out: cubic-bezier(0.5, 0.24, 0.12, 0.96);
  /* ============================================
  transition-duration
  ============================================ */
  --duration--2xs: 0s;
  --duration--s: 0.2s;
  --duration--m: 0.3s;
  --duration--l: 0.5s;
  --duration--2xl: 1s;
}

/*
--------------------------------
global
変数
--------------------------------
*/
/*
--------------------------------
base
初期設定
--------------------------------
*/
:root {
  --scrollbar: 0;
}

body {
  font-family: var(--font);
  font-weight: normal;
  color: var(--color-base);
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: var(--fz16);
  /* background: var(--color-corporate); */
  overflow-x: hidden;
}

a,
a * {
  color: var(--color-base);
  transition-property: opacity, color, background-color, font-size,
    -webkit-text-decoration-color;
  transition-property: opacity, color, text-decoration-color, background-color,
    font-size;
  transition-property: opacity, color, text-decoration-color, background-color,
    font-size, -webkit-text-decoration-color;
  transition-duration: var(--duration--m);
  transition-timing-function: ease;
}

.faq_linkbox a {
  transition-duration: 0s;
  transition-timing-function: ease;
}

a:hover,
button:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bold,
b,
strong,
th {
  font-family: var(--font-bold);
  font-weight: bold;
}

.main {
  overflow: hidden;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-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;
  position: relative;
  z-index: -1;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
  position: relative;
  z-index: -1;
}

/* 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 {
  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;
  max-width: 100%;
}

/* 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;
}

/*!
  Theme Name: Ori Framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: Ori framework
  Version: 2.0
  Date: 2023.12.30
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* l-footer */
/* ============================================ */
.footer {
  margin-top: var(--m225);
  position: relative;
  z-index: -1;
  background-image: url(images/top/bg_footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__reservation {
  background-image: url(images/top/bg_footer-reservation.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 80px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .footer__reservation {
    padding: 80px 0 80px;
  }
}

.footer__reservation .t-center {
  color: #fff;
}

.footer__reservation .button-basic {
  padding: 20px 10px;
}

.footer__reservation h2 {
  font-size: 16px;
}

@media screen and (min-width: 37.5em) {
  .footer__reservation h2 {
    font-size: 21px;
  }
}

@media screen and (min-width: 48em) {
  .footer__reservation h2 {
    font-size: 16px;
  }
}

.footer__reservation h2 span {
  font-size: 25px;
}

@media screen and (min-width: 320px) {
  .footer__reservation h2 span {
    font-size: 40px;
  }
}

@media screen and (min-width: 37.5em) {
  .footer__reservation h2 span {
    font-size: 80px;
  }
}

@media screen and (min-width: 48em) {
  .footer__reservation h2 span {
    font-size: 72px;
  }
}

.footer__reservation .button-basic {
  max-width: 540px;
}

.container_l {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer__content {
  padding: 70px 0 40px;
  position: relative;
  z-index: -1;
}

.footer__content::after {
  content: "";
  background-image: url(images/top/bg_footer_01.png);
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom -30px right -90px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}

@media screen and (min-width: 48em) {
  .footer__content {
    padding-bottom: 0;
  }
}

.footer__content .container_l {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .footer__content .container_l {
    display: block;
    position: relative;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

.footer__content .footer__unit {
  border: 1px solid #111111;
  padding: 30px;
  text-align: center;
  width: 100%;
  padding-bottom: 60px;
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit {
    padding-bottom: 0;
  }
}

.footer__content .footer__unit .footer_text {
  max-width: 535px;
  font-size: 13px;
  margin-top: 40px;
  text-align: left;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit .footer_text {
    font-size: 18px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer_text {
    margin-top: 0;
    font-size: 13px;
    max-width: 100%;
  }
}

.footer__content .footer__unit .footer_text a {
  font-size: 10px;
  color: #999999;
  text-decoration: underline;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit .footer_text a {
    font-size: 14px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer_text a {
    font-size: 10px;
  }
}

.footer__content .footer__unit .footer_text a:hover {
  opacity: 0.6;
}

.footer__content .footer__unit .footer__links {
  text-align: left;
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer__links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
}

.footer__content .footer__unit .footer__links .footer-nav {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit .footer__links .footer-nav {
    gap: 30px;
  }
}

.footer__content .footer__unit .footer__links .footer-nav .footer-nav__item {
  width: 100%;
  /* max-width: 187px; */
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav
  .footer-nav__item.op-1
  a:hover {
  opacity: 1;
}

.footer__content .footer__unit .footer__links .footer-nav .footer-nav__list {
  -moz-column-count: 2;
  column-count: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 30px;
  column-gap: 30px;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (min-width: 968px) {
  .footer__content .footer__unit .footer__links .footer-nav .footer-nav__list {
    -moz-column-count: 4;
    column-count: 4;
    /* -moz-column-gap: 30px;
    column-gap: 30px; */
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media screen and (min-width: 1500px) {
  .footer__content .footer__unit .footer__links .footer-nav .footer-nav__list {
    -moz-column-count: 5;
    column-count: 5;
  }
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav
  .footer-nav__list
  .footer-nav__item {
  margin-bottom: 0;
  margin-bottom: 20px;
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav
  .footer-nav__list
  .button-basic {
  position: absolute;
  bottom: -70px;
  left: 0;
  padding: 20px;
}

@media screen and (min-width: 48em) {
  .footer__content
    .footer__unit
    .footer__links
    .footer-nav
    .footer-nav__list
    .button-basic {
    position: relative;
    bottom: 0;
  }
}

@media screen and (min-width: 1500px) {
  .footer__content
    .footer__unit
    .footer__links
    .footer-nav
    .footer-nav__item.footer-nav__item02 {
    margin-bottom: 135px;
  }

  .footer__content
    .footer__unit
    .footer__links
    .footer-nav
    .footer-nav__item.footer-nav__item03 {
    margin-bottom: 135px;
  }
}

.footer__content .footer__unit .footer__links .footer-nav__item {
  margin-bottom: 20px;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit .footer__links .footer-nav__item {
    margin-bottom: 35px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer__links .footer-nav__item {
    margin-bottom: 30px;
  }
}

.footer__content .footer__unit .footer__links .footer-nav__item.none {
  display: none;
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer__links .footer-nav__item.none {
    display: block;
    opacity: 0;
  }

  .footer__content .footer__unit .footer__links .footer-nav__item.none a {
    cursor: default;
  }
}

.footer__content .footer__unit .footer__links .footer-nav__item a {
  font-size: 14px;
  color: #333333;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit .footer__links .footer-nav__item a {
    font-size: 21px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer__links .footer-nav__item a {
    font-size: 14px;
  }
}

.footer__content .footer__unit .footer__links .footer-nav__item a span {
  font-size: 13px;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit .footer__links .footer-nav__item a span {
    font-size: 18px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit .footer__links .footer-nav__item a span {
    font-size: 13px;
  }
}

.footer__content .footer__unit .footer__links .footer-nav__item a:hover {
  opacity: 0.6;
}

.footer__content .footer__unit .footer__links .footer-nav__item.is-blank a {
  display: flex;
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav__item.is-blank
  a::after {
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  color: #333333;
}

.footer__content .footer__unit .footer__links .footer-nav__under__list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav__under__list
  .footer-nav__under__item
  a {
  color: #545454;
  font-size: 13px;
  display: grid;
  grid-template-columns: 6px 1fr;
  align-items: center;
  margin-left: 5px;
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav__under__list
  .footer-nav__under__item
  a::before {
  content: "";
  width: 4px;
  height: 1px;
  display: block;
  background-color: #545454;
}

@media screen and (min-width: 37.5em) {
  .footer__content
    .footer__unit
    .footer__links
    .footer-nav__under__list
    .footer-nav__under__item
    a {
    font-size: 18px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content
    .footer__unit
    .footer__links
    .footer-nav__under__list
    .footer-nav__under__item
    a {
    font-size: 13px;
  }
}

.footer__content
  .footer__unit
  .footer__links
  .footer-nav__under__list
  .footer-nav__under__item
  a:hover {
  opacity: 0.6 !important;
}

@media screen and (min-width: 37.5em) {
  .footer__content .footer__unit {
    padding: 60px 75px;
  }

  .footer__content .footer__unit h2 {
    max-width: 100%;
    width: 100%;
  }

  .footer__content .footer__unit h2 img {
    width: 100%;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .footer__unit {
    padding: 0;
    border: none;
    padding-left: 300px;
  }

  .footer__content .footer__unit .footer__info {
    border-bottom: 1px solid #aaaaaa;
    display: flex;
    text-align: left;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 20px;
  }

  .footer__content .footer__unit .footer__info .br {
    display: none;
  }

  .footer__content .footer__unit .footer__info h2 {
    max-width: 349px;
    width: 100%;
  }

  .footer__content .footer__unit .footer__info h2 img {
    width: 100%;
  }

  .footer__content .footer__unit .footer__links {
    border-bottom: 1px solid #aaaaaa;
  }
}

.footer__content.footer__content02 .footer__links {
  width: 100%;
  display: block;
}

@media screen and (min-width: 48em) {
  .footer__content.footer__content02 .footer__unit {
    padding-left: 0;
  }
}

.footer__content.footer__content02 .footer-nav__list {
  -moz-column-count: 2;
  column-count: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 30px;
  column-gap: 30px;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .footer__content.footer__content02 .footer-nav__list {
    -moz-column-count: 3 !important;
    column-count: 3 !important;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
}

@media screen and (min-width: 968px) {
  .footer__content.footer__content02 .footer-nav__list {
    -moz-column-count: 5 !important;
    column-count: 5 !important;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
}

@media screen and (min-width: 1300px) {
  .footer__content.footer__content02 .footer-nav__list {
    -moz-column-gap: 90px !important;
    column-gap: 90px !important;
  }
}

.footer__content.footer__content02 .footer-nav__list .footer-nav__item {
  margin-bottom: 0;
  margin-bottom: 40px;
}

.footer__content.footer__content02 .footer__link {
  right: 20px;
}

.footer__content .copyright {
  display: block;
  text-align: center;
  font-size: 13px;
  padding: 20px 0;
}

@media screen and (min-width: 37.5em) {
  .footer__content .copyright {
    padding: 40px 0;
    font-size: 16px;
  }
}

@media screen and (min-width: 48em) {
  .footer__content .copyright {
    padding: 25px 0 30px;
    text-align: right;
    font-size: 13px;
  }
}

#page-top {
  position: fixed;
  z-index: -5;
  right: 0;
  opacity: 0;
  bottom: 0;
  width: 100%;
  transition: all 0.5s;
}

#page-top.open {
  opacity: 1;
  transition: all 0.5s;
  z-index: 800;
}

@media screen and (min-width: 48em) {
  #page-top {
    bottom: 30px 15px;
    right: 0;
    top: 170px;
    width: 50px;
  }

  #page-top li {
    height: 100%;
    max-height: 160px;
  }

  #page-top li:first-child {
    display: none;
  }

  #page-top li span {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  #page-top li a {
    padding: 20px 15px;
  }
}

#page-top ul {
  display: flex;
  gap: 2px;
}

@media screen and (min-width: 48em) {
  #page-top ul {
    flex-direction: column;
    height: 100%;
    max-height: 100%;
  }
}

#page-top ul li {
  width: 100%;
}

#page-top ul a {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  max-height: 70px;
  height: 100%;
  padding: 10px 5px;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (min-width: 37.5em) {
  #page-top ul a {
    font-size: 16px;
    padding: 20px 30px;
    max-height: 90px;
  }
}

@media screen and (min-width: 48em) {
  #page-top ul a {
    font-size: 16px;
    padding: 10px;
    max-height: 160px;
    align-items: center;
    flex-direction: column;
  }
}

.footer__link {
  position: absolute;
  right: 30px;
  top: 10px;
  /*全体の高さ*/
  height: 50px;
}

.footer__link span {
  font-family: "Zen Old Mincho", serif;
  position: absolute;
  right: -16px;
  top: 60px;
  color: #333333;
  font-size: 18px;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.footer__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 30px;
  background: #333;
  -webkit-animation: pathmove02 1.4s ease-in-out infinite;
  animation: pathmove02 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove02 {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 40px;
    opacity: 0;
  }
}

@keyframes pathmove02 {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 40px;
    opacity: 0;
  }
}

.bd-b {
  border-bottom: 1px solid #333333;
}

.bd-r {
  border-bottom: 1px solid #333333;
}

.br_sp {
  display: block;
}

@media screen and (min-width: 48em) {
  .br_sp {
    display: none;
  }
}

.footer {
  padding-bottom: 45px;
}

@media screen and (min-width: 48em) {
  .footer {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 48em) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* l-header */
/* ============================================ */
:root {
  --header-height: 113px;
}

.logo {
  max-width: 70%;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 48em) {
  .logo {
    max-width: 230px;
  }
}

@media screen and (min-width: 64em) {
  .logo {
    max-width: 266px;
  }
}

/*////////////////////////

 header

////////////////////////*/
.header.-is-fixed {
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header_container {
  padding: 0 30px;
  margin: 0 auto;
  gap: 10px;
  position: relative;
  z-index: 20;
}

.header {
  background: #dddddd;
  padding: 15px 0;
  border-bottom: 1px solid rgba(85, 85, 85, 0.4);
  position: relative;
}

.header::after {
  content: "";
  background-image: url(images/top/mv_filter.png);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.header_flex {
  display: flex;
  justify-content: space-between;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #231815;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  background-color: transparent;
}

.header__nav_toggle_bar::after {
  width: 15px;
}

.header__nav_toggle_bar::before {
  top: -3px;
}

.header__nav_toggle_bar::after {
  top: 8px;
  right: 0;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 12px;
  display: block;
  padding-top: 5px;
  white-space: nowrap;
}

.header__nav_toggle_title:before {
  content: "MENU";
  font-size: 12px;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(3px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
}

@media screen and (min-width: 1280px) {
  .header__nav_toggle {
    display: none;
  }

  .header__nav_list {
    gap: 20px;
    align-items: center;
  }
}

@media screen and (max-width: 1279px) {
  .header__logo {
    z-index: 10;
  }

  .header__nav {
    max-width: min(100%, 1279px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #dddddd;
    z-index: 6;
    transition: 0.5s;
  }

  .header__nav::after {
    content: "";
    background-image: url(images/top/mv_filter.png);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -3;
    opacity: 0.2;
  }

  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
    overflow-y: scroll;
  }

  .header__nav_list {
    display: block;
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 20%;
    transform: translateY(-100%);
    opacity: 0;
  }

  .header.-is-open .header__nav_list {
    opacity: 1;
    flex-direction: column;
    top: 10%;
    transform: translateY(0);
    padding-bottom: 60px;
  }

  .header__nav_item a {
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
  }

  .header.-is-open .header__nav_item a {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
  }
}

.link {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link .ja {
  font-size: 12px;
}

.link:hover {
  opacity: 0.6;
}

.link.button-basic {
  flex-direction: row;
  width: 100%;
  max-width: 130px;
}

@media screen and (max-width: 1279px) {
  .link.button-basic {
    max-width: 90%;
  }
}

.header__nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
.header__nav ul li a {
  text-decoration: none;
  color: #1f1f1f;
  padding-right: 20px;
  transition: all 0.3s;
}

.header.-is-open .header__nav_item a:hover {
  opacity: 0.6;
}

/*==矢印の設定*/
.header__nav ul li.has-child .ja {
  position: relative;
}

/*2階層目を持つliの矢印の設定*/
.header__nav ul li.has-child .ja::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
.header__nav ul ul li.has-child .ja::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
.header__nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
}

.header__nav li.has-child ul li a {
  display: block;
  padding: 10px;
}

/*hoverしたら表示*/
.header__nav li.has-child:hover > ul,
.header__nav li.has-child ul li:hover > ul,
.header__nav li.has-child:active > ul,
.header__nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.header__nav li.has-child ul li a {
  color: #1f1f1f;
}

.header__nav li.has-child ul li:last-child > a {
  border-top: none;
}

.header__nav li.has-child ul li a:hover,
.header__nav li.has-child ul li a:active {
  background: #444444;
  color: #d4c189;
}

@media screen and (max-width: 1279px) {
  .header__nav {
    padding: 0;
  }

  .header__nav ul {
    display: block;
  }

  .header__nav li.has-child ul,
  .header__nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
  }

  .header__nav ul ul li.has-child .ja::before {
    transform: rotate(135deg);
  }

  .header__nav ul li.has-child.active .ja::before {
    transform: rotate(-45deg);
  }
}

header.header_02 {
  background: url(images/common/bg_02.jpg);
  color: #ffffff;
  /*3階層目を持つliの矢印の設定*/
}

header.header_02 .header__nav_toggle_bar::before,
header.header_02 .header__nav_toggle_bar::after {
  background-color: #fff;
}

header.header_02 .header__nav_item .link span {
  color: #fff;
}

header.header_02 .header__nav ul li a {
  color: #fff;
}

header.header_02 .header__nav ul li.has-child .ja::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

header.header_02 .header__nav ul ul li.has-child .ja::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 1279px) {
  header.header_02 .header__nav {
    background: #2b2b2b;
  }
}

header.header_02 .header__nav li.has-child ul {
  background: #2b2b2b;
}

header.header_02 .header__nav li.has-child ul li a:hover,
header.header_02 .header__nav li.has-child ul li a:active {
  background: #2b2b2b;
  color: #d4c189;
}

header.header_02 .button-basic {
  color: #586230 !important;
}

header.header_02 .header__nav ul li a:hover {
  opacity: 1;
}

header.header_02 .header__nav ul li a:hover span {
  color: #d4c189;
}

header.header_02 .header__nav ul li.has-child:hover .ja::before {
  border-top: 2px solid #d4c189;
  border-right: 2px solid #d4c189;
}

.header__logo {
  transition: all 0.5s;
}

.header__logo:hover {
  opacity: 0.6;
}

.header.-is-fixedup {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

.header.-is-fixeddw {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* l-wrapper */
/* ============================================ */
.wrapper {
  max-width: var(--max-width);
  width: var(--width);
  margin: 0 auto;
}

.wrapper-fixed--pc {
  --max-width: var(--wrapper-fixed--pc);
}

.wrapper-fixed--base {
  --max-width: var(--wrapper-fixed--base);
}

.wrapper-fixed--l {
  --max-width: var(--wrapper-fixed--l);
}

.wrapper-fixed--m {
  --max-width: var(--wrapper-fixed--m);
}

.wrapper--l {
  --width: var(--wrapper--l);
}

.wrapper--m {
  --width: var(--wrapper--m);
}

/* c-bg */
/* ============================================ */
.bg-dark-blue {
  background: var(--color-dark-blue);
  color: var(--color-white);
}

/* c-button */
/* ============================================ */
/* button-basic */
.button-basic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-basic.--l {
  /* 251127 add */
  width: fit-content;
  min-height: 64px;
  padding: 5px 42px;
}

.button-basic .text {
  display: inline-block;
  background: var(--color-corporate);
  padding: 14px 25px;
  font-size: var(--fz19);
  min-width: 11.75rem;
  text-align: center;
  position: relative;
  transition-property: opacity;
  transition-duration: var(--duration--m);
}

.button-basic .text::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.button-basic .en {
  font-size: var(--fz14);
  line-height: 1.2;
}

.button-basic .icon-arrow-border {
  margin-left: -10px;
  transition-property: opacity;
  transition-duration: var(--duration--m);
  position: relative;
}

#top .button-basic .icon-arrow-border {
  display: block;
}

.button-basic:hover {
  opacity: 1;
}

.button-basic:hover .text {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .button-basic .icon-arrow-border {
    display: none;
    opacity: 0;
  }
}

/* c-icon */
/* ============================================ */
.icon {
  display: inline-block;
  --size: 1em;
  width: var(--size);
  height: var(--size);
  background: no-repeat center/contain;
}

/* c-title */
/* ============================================ */
.title-section-line {
  font-size: var(--fz16);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-black);
}

/* c-pagenavi */
/* ============================================ */
/* wp-pagenavi */
.wp-pagenavi {
  font-size: var(--font-size--m);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  max-width: var(--wrapper-fixed--m);
  margin: var(--margin--m) auto 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
}

.wp-pagenavi .current {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  background: var(--color-alabaster);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background-color: #444444;
}

.previouspostslink {
  margin-right: auto;
}

.nextpostslink {
  margin-left: auto;
}

.wp-pagenavi .page:hover {
  opacity: 0.6;
}

.previouspostslink:hover,
.nextpostslink:hover {
  opacity: 0.6;
}

.previouspostslink:hover .icon-circle,
.nextpostslink:hover .icon-circle {
  background: var(--color-base);
  color: var(--color-white);
}

@media screen and (min-width: 23.4375em) {
  .wp-pagenavi {
    gap: 20px;
  }

  .previouspostslink {
    background-image: url(images/common/arrow_right-b.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: transparent;
    padding: 20px !important;
    transform: rotate(180deg);
  }

  .nextpostslink {
    background-image: url(images/common/arrow_right-b.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: transparent;
    padding: 20px !important;
  }
}

/* js-fadeIn */
/* ============================================ */
.js-fadeInTrigger {
  opacity: 0;
}

.js-fadeIn {
  -webkit-animation: fadeIn 1s forwards ease-in;
  animation: fadeIn 1s forwards ease-in;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    opacity: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    opacity: 100%;
  }
}

.fadeUpTriggerL {
  opacity: 0;
}

.fadeUpL {
  -webkit-animation-name: fadeUpAnimeL;
  animation-name: fadeUpAnimeL;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeL {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUpAnimeL {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右から　*/
.fadeUpTriggerR {
  opacity: 0;
}

.fadeUpR {
  -webkit-animation-name: fadeUpAnimeR;
  animation-name: fadeUpAnimeR;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeR {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUpAnimeR {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　下から　*/
.fadeUpTriggerB {
  opacity: 0;
}

.fadeUpB {
  -webkit-animation-name: fadeUpAnimeB;
  animation-name: fadeUpAnimeB;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeB {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnimeB {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　その場で　*/
.fadeTrigger {
  opacity: 0;
}

.fadeAnime {
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*==================================================
じわっ
===================================*/
.blurTrigger {
  opacity: 0;
}

.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

/* p-mv */
/* ============================================ */
#mv {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dddddd;
  padding: 125px 40px 40px 40px;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: -2;
}

#mv::after {
  content: "";
  background-image: url(images/top/mv_filter.png);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
}

@media screen and (min-width: 968px) {
  #mv {
    flex-direction: row;
    align-items: flex-end;
    padding: 80px 60px 30px 60px;
  }
}

@media screen and (min-width: 1500px) {
  #mv {
    padding: 70px 70px 0 112px;
    align-items: center;
  }
}

#mv .catch .en {
  font-size: clamp(3.75rem, 1.872rem + 8.01vw, 7rem);
  /* min60px max112px viewport:min375px max1024px */
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

#mv .catch span {
  background: linear-gradient(transparent 0%, #ffd9d7 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: #fff;
  padding: 0 15px;
  margin-top: 20px;
}

#mv .catch .ja {
  font-size: clamp(2rem, 1.711rem + 1.23vw, 2.5rem);
  /* min32px max40px viewport:min375px max1024px */
  display: inline-block;
}

#mv .flex {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

@media screen and (min-width: 1500px) {
  #mv .flex {
    margin-top: 50px;
  }
}

#mv .flex img {
  max-width: 210px;
  width: 100%;
}

#mv .content {
  max-width: 470px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 37.5em) {
  #mv .content {
    max-width: 530px;
  }
}

#mv .en.mt35 {
  max-width: 480px;
  width: 100%;
}

#mv .text_sub {
  margin-bottom: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 48em) {
  #mv .text_sub {
    margin-bottom: 70px;
  }
}

.bg {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #d5d5d5;
  z-index: 10;
}

.scrolldown1 {
  position: absolute;
  left: 50px;
  bottom: 60px;
  height: 100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  font-family: "Zen Old Mincho", serif;
  position: absolute;
  left: -15px;
  top: -15px;
  color: #333333;
  font-size: 18px;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 1px;
  height: 30px;
  background: #333;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 40px;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 40px;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}

/* p-reason */
/* ============================================ */
.bg-text {
  overflow: hidden;
  white-space: nowrap;
  color: rgba(247, 248, 247, 0.04);
  font-size: 100px;
  line-height: 1;
  position: relative;
  z-index: 5;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 37.5em) {
  .bg-text {
    font-size: clamp(8.5rem, 1.738rem + 14.43vw, 14rem);
  }
}

#about .content {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  #about .content {
    width: 50%;
  }
}

#about .content .title {
  font-size: 28px;
  color: #fff;
}

@media screen and (min-width: 37.5em) {
  #about .content .title {
    font-size: 48px;
  }
}

@media screen and (min-width: 48em) {
  #about .content .title {
    font-size: 36px;
  }
}

#about .content p {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 37.5em) {
  #about .content p {
    font-size: 24px;
  }
}

@media screen and (min-width: 48em) {
  #about .content p {
    font-size: 16px;
  }
}

#about .about_flex {
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 6;
  margin-bottom: 200px;
  /* 251027 add */
  margin-bottom: 100px;
}

@media screen and (min-width: 37.5em) {
  #about .about_flex {
    margin-top: -30px;
  }
}

@media screen and (min-width: 48em) {
  #about .about_flex {
    margin-top: -60px;
  }
}

@media screen and (min-width: 1000px) {
  #about .about_flex {
    flex-direction: row;
    justify-content: space-between;
  }
}

#about .about_flex .button-basic {
  padding: 20px 20px;
}

#about .about__book {
  margin-top: 100px;
  color: #fff;
  font-size: 24px;
  border: 1px solid #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
}

@media screen and (min-width: 37.5em) {
  #about .about__book {
    font-size: 40px;
    padding: 60px 40px;
    gap: 40px;
  }
}

@media screen and (min-width: 48em) {
  #about .about__book {
    font-size: 24px;
    margin-top: 60px;
    padding: 50px 70px;
  }
}

@media screen and (min-width: 1100px) {
  #about .about__book {
    flex-direction: row;
  }
}

#about .about__book img {
  margin-bottom: -80px;
}

@media screen and (min-width: 1100px) {
  #about .about__book img {
    position: absolute;
    right: 0;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}

.button-basic {
  border: 1px solid #fff;
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  transition: all 0.5s;
  z-index: 6;
  position: relative;
}

@media screen and (min-width: 37.5em) {
  .button-basic {
    font-size: 28px;
  }
}

@media screen and (min-width: 48em) {
  .button-basic {
    font-size: 15px;
  }
}

.button-basic::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: #ffffff;
  height: calc(tan(60deg) * 6px / 2);
  width: 6px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.5s;
}

.button-basic:hover {
  transition: all 0.5s;
  color: #292929;
  background-color: #fff;
}

.button-basic:hover::before {
  background: #292929;
}

.button-basic.is-blank {
  align-items: flex-start;
  gap: 5px;
}

.button-basic.is-blank::after {
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
}

.button-basic.is-yellow {
  border: 1px solid #d4c189;
  background-color: #d4c189;
  color: #333333;
}

.button-basic.is-yellow::before {
  background: #292929;
}

.button-basic.is-yellow:hover {
  background-color: #333333;
  border: 1px solid #333333;
  color: #d4c189;
}

.button-basic.is-yellow:hover::before {
  background: #d4c189;
}

.button-basic.is-link {
  border: 1px solid #fff;
  background-color: #fff;
  color: #333333;
}

.button-basic.is-link::before {
  background: #292929;
}

.button-basic.is-link::after {
  font-size: 9px !important;
}

.button-basic.is-link:hover {
  background-color: #d4c189;
  border: 1px solid #d4c189;
  color: #333333;
}

.button-basic.is-link:hover::before {
  background: #333333;
}

.button-basic.is-white {
  border: 1px solid #fff;
  background-color: #fff;
  color: #586230;
}

.button-basic.is-white::before {
  background: #586230;
}

.button-basic.is-white:hover {
  background-color: #586230;
  border: 1px solid #586230;
  color: #fff !important;
}

.button-basic.is-white:hover::before {
  background: #fff;
}

.button-basic.is-gray {
  border: 1px solid #aaaaaa;
  background-color: transparent;
  color: #333333;
}

.button-basic.is-gray::before {
  background: #333333;
}

.button-basic.is-gray:hover {
  background-color: #aaaaaa;
  border: 1px solid #aaaaaa;
  color: #fff !important;
}

.button-basic.is-gray:hover::before {
  background: #fff;
}

.button-basic.is-black {
  border: 1px solid #fff;
  background-color: #fff !important;
  color: #333333;
}

.button-basic.is-black::before {
  background: #333333;
}

.button-basic.is-black:hover {
  background-color: #333333 !important;
  border: 1px solid #333333;
  color: #fff !important;
}

.button-basic.is-black:hover::before {
  background: #fff;
}

.about_text01,
.about_text02 {
  color: #fff;
}

.about_text01 {
  /* padding-top: 160px; */
  padding-top: 120px;
  font-size: 18px;
}

@media screen and (min-width: 37.5em) {
  .about_text01 {
    font-size: 28px;
  }
}

@media screen and (min-width: 48em) {
  .about_text01 {
    font-size: 30px;
  }
}

.about_text02 {
  padding-bottom: 80px;
  font-size: 28px;
}

.about_text02 span {
  font-size: 16px;
}

@media screen and (min-width: 37.5em) {
  .about_text02 {
    font-size: 64px;
  }

  .about_text02 span {
    font-size: 52px;
  }
}

@media screen and (min-width: 48em) {
  .about_text02 {
    font-size: 56px;
  }

  .about_text02 span {
    font-size: 48px;
  }
}

.top_swiper-slide .swiper {
  width: 100%;
  height: 100%;
}

.top_swiper-slide .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top_swiper-slide .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
}

.top_swiper-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.text_slide {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.text_slide .loop_right_double {
  -webkit-animation: loop_animation_right_double 35s linear infinite;
  animation: loop_animation_right_double 35s linear infinite;
  animation-direction: reverse;
  white-space: nowrap;
}

@-webkit-keyframes loop_animation_right_double {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes loop_animation_right_double {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* p-reason */
/* ============================================ */
#top-guide {
  width: 100%;
  height: 100%;
  position: relative;
}

#top-guide:before {
  /*header の疑似要素に背景画像を指定*/
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  /*背景画像設定*/
  background: url(images/top/bg_guide.jpg) no-repeat center;
  background-size: cover;
}

#top-guide h2 {
  line-height: 1.2;
  font-size: 16px;
  color: #ffffff;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  margin-top: -30px;
}

#top-guide h2 span {
  font-size: 50px;
}

@media screen and (min-width: 37.5em) {
  #top-guide h2 {
    font-size: 21px;
    margin-top: -50px;
  }

  #top-guide h2 span {
    font-size: 80px;
  }
}

@media screen and (min-width: 48em) {
  #top-guide h2 {
    font-size: 16px;
  }

  #top-guide h2 span {
    font-size: 72px;
  }
}

#top-guide .list-order {
  color: #fff;
  display: grid;
  counter-reset: number 0;
  padding: 30px 0 90px;
}

@media screen and (min-width: 48em) {
  #top-guide .list-order {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

#top-guide .list-order .item-order {
  border-bottom: 1px solid #dddddd;
}

#top-guide .list-order a {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 30px;
  position: relative;
  padding: 30px 0;
  gap: 10px;
  color: #fff;
  opacity: 1;
  transition: all 0.5s;
}

@media screen and (min-width: 37.5em) {
  #top-guide .list-order a {
    font-size: 32px;
  }
}

@media screen and (min-width: 48em) {
  #top-guide .list-order a {
    font-size: 24px;
  }
}

@media screen and (min-width: 1000px) {
  #top-guide .list-order a {
    color: #999;
    opacity: 0.5;
  }
}

#top-guide .list-order a::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 14px;
  position: absolute;
  top: 25px;
  left: -20px;
}

#top-guide .list-order a::after {
  content: "";
  width: 46px;
  height: 46px;
  display: block;
  background-image: url(images/top/arrow_01.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#top-guide .list-order a:hover {
  opacity: 0.6;
  color: #999;
}

@media screen and (min-width: 1000px) {
  #top-guide .list-order a:hover {
    opacity: 1;
    color: #fff;
  }
}

.other-link {
  position: relative;
  z-index: 1;
  /*以下はレイアウトのための記述*/
  background-color: #292929;
  text-align: center;
  padding: 110px 0 50px;
  display: grid;
  justify-items: start;
}

@media screen and (min-width: 48em) {
  .other-link {
    padding: 130px 0 100px;
  }
}

.other-link .button-link {
  color: #fff;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  position: relative;
  width: 100%;
  padding-right: 50px;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
}

@media screen and (min-width: 48em) {
  .other-link .button-link {
    padding: 20px 0;
  }
}

.other-link .button-link .en {
  color: #fff;
  font-size: 40px;
}

@media screen and (min-width: 37.5em) {
  .other-link .button-link .en {
    font-size: 72px;
  }
}

.other-link .button-link::after {
  content: "";
  width: 46px;
  height: 46px;
  display: block;
  background-image: url(images/top/arrow_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.other-link .button-link:hover {
  opacity: 0.5;
}

#info .info__row {
  display: grid;
  gap: 10px;
}

@media screen and (min-width: 1000px) {
  #info .info__row {
    grid-template-columns: 1fr 430px;
  }
}

#info .info__row .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#info .info__row .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

@media screen and (min-width: 1000px) {
  #info .info__row .map {
    height: 100%;
  }
}

#info .info__row .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#info .content__row {
  color: #fff;
  padding: 50px 0 160px;
  display: grid;
  gap: 50px;
}

#info .content__row .content {
  width: 100%;
}

@media screen and (min-width: 48em) {
  #info .content__row {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 50px 0 220px;
  }
}

#info .content__row .content::-webkit-scrollbar {
  display: none;
}

#info .content__row h3 {
  font-size: 16px;
}

@media screen and (min-width: 37.5em) {
  #info .content__row h3 {
    font-size: 24px;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row h3 {
    font-size: 16px;
  }
}

#info .content__row .table-basic {
  width: 100%;
}

#info .content__row .table-basic tr {
  border-top: 1px solid #fff;
}

#info .content__row .table-basic thead tr:first-of-type {
  border-top: none;
}

#info .content__row .table-basic tbody th {
  text-align: left;
  width: 20%;
  padding: 20px 5px;
}

@media screen and (min-width: 48em) {
  #info .content__row .table-basic tbody th {
    width: auto;
  }
}

#info .content__row .table-basic tbody td {
  padding: 20px 5px;
  line-height: 1;
}

#info .content__row .table-basic th {
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  padding: 5px;
  width: 10%;
  white-space: nowrap;
}

@media screen and (min-width: 37.5em) {
  #info .content__row .table-basic th {
    font-size: 21px;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row .table-basic th {
    font-size: 15px;
    padding: 10px 5px;
  }
}

#info .content__row .table-basic td {
  font-size: 13px;
  text-align: center;
  padding: 5px;
  font-weight: bold;
}

@media screen and (min-width: 37.5em) {
  #info .content__row .table-basic td {
    font-size: 21px;
    padding: 10px 5px;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row .table-basic td {
    font-size: 15px;
    padding: 20px 5px;
  }
}

#info .content__row .table-basic td span {
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
}

#info .content__row .content p {
  font-size: 16px;
}

@media screen and (min-width: 37.5em) {
  #info .content__row .content p {
    font-size: 24px;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row .content p {
    font-size: 16px;
  }
}

#info .content__row .content:nth-of-type(2) {
  display: flex;
  flex-direction: column;
}

#info .content__row .content:nth-of-type(2) .item-underline {
  font-size: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #aaaaaa;
}

@media screen and (min-width: 37.5em) {
  #info .content__row .content:nth-of-type(2) .item-underline {
    font-size: 24px;
    padding: 30px 0;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row .content:nth-of-type(2) .item-underline {
    font-size: 16px;
    padding: 20px 0;
  }
}

#info .content__row .content:nth-of-type(2) .item-underline .map_link {
  font-size: 14px;
  color: #999999;
  text-decoration: underline;
}

#info .content__row .content:nth-of-type(2) .item-underline .map_link:hover {
  opacity: 0.6;
}

@media screen and (min-width: 37.5em) {
  #info .content__row .content:nth-of-type(2) .item-underline .map_link {
    font-size: 21px;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row .content:nth-of-type(2) .item-underline .map_link {
    font-size: 14px;
  }
}

@media screen and (min-width: 48em) {
  #info .content__row .content:nth-of-type(2) a {
    margin-top: auto;
  }
}

#info .button-basic {
  padding: 20px 20px;
}

/* p-reason */
/* ============================================ */
.mv_wrapper {
  position: relative;
}

.top-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 63px;
}

.top-news .title {
  background-color: #d4c189;
  max-width: 100px;
  width: 100%;
  font-size: 20px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 37.5em) {
  .top-news .title {
    font-size: 28px;
    max-width: 147px;
  }
}

@media screen and (min-width: 48em) {
  .top-news .title {
    max-width: 177px;
    font-size: 20px;
    gap: 10px;
  }
}

.top-news .title .ja {
  display: none;
}

@media screen and (min-width: 48em) {
  .top-news .title .ja {
    display: block;
    font-size: 12px;
  }
}

.top-news a {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  font-size: 16px;
  padding: 0 30px;
  height: 63px;
  color: #333333;
}

@media screen and (min-width: 37.5em) {
  .top-news a {
    font-size: 21px;
  }
}

@media screen and (min-width: 48em) {
  .top-news a {
    font-size: 16px;
  }
}

.top-news a .content02 {
  display: flex;
  gap: 20px;
  position: relative;
}

.top-news a .content02 time {
  display: none;
}

@media screen and (min-width: 48em) {
  .top-news a .content02 time {
    display: block;
  }
}

.top-news a .content02 p {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-right: 10px;
}

.top-news a .content02 p::before {
  content: "";
  transition: all 0.5s;
}

.top-news a .content02 p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(images/top/news_arrow.png);
  width: 6px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}

.top-news a .content02:hover p::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}

.top-news .top-news_list {
  background-color: #444444;
  color: #fff;
  max-width: 126px;
  display: none;
}

@media screen and (min-width: 48em) {
  .top-news .top-news_list {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
  }
}

.top-news .top-news_list::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: #ffffff;
  height: calc(tan(60deg) * 6px / 2);
  width: 6px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.5s;
}

.top-news .top-news_list:hover {
  transition: all 0.5s;
  color: #292929;
  background-color: #d4c189;
}

.top-news .top-news_list:hover::before {
  background: #292929;
}

.br_pc {
  display: none;
}

@media screen and (min-width: 48em) {
  .br_pc {
    display: block !important;
  }
}

/* p-reason */
/* ============================================ */
.intro_bg {
  position: relative;
  background-color: #292929;
  z-index: -2;
  padding-bottom: 170px;
  position: -webkit-sticky;
  position: sticky;
}

@media screen and (min-width: 48em) {
  .intro_bg {
    padding-bottom: 210px;
  }
}

.intro_bg_02 {
  background-color: #292929;
}

#intro {
  margin-bottom: 50px;
}

@media screen and (min-width: 48em) {
  #intro {
    margin-bottom: 70px;
  }
}

.intro__title_bg {
  background-image: url(images/top/info_bg-l.png), url(images/top/info_bg-r.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  background-size: contain, contain;
  margin-bottom: 40px;
}

@media screen and (min-width: 1100px) {
  .intro__title_bg {
    background-size: contain, contain;
    margin-bottom: 0;
    background-image: url(images/top/info_bg-l-pc.png),
      url(images/top/info_bg-r-pc.png);
  }
}

.intro__title02__box {
  text-align: center;
  padding: 60px 0 100px;
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}

@media screen and (min-width: 37.5em) {
  .intro__title02__box {
    padding: 60px 0 100px;
  }
}

@media screen and (min-width: 48em) {
  .intro__title02__box {
    padding: 70px 0 40px;
  }
}

.intro__title02__box p {
  color: #fff;
  padding: 30px 0;
  font-size: 28px;
}

@media screen and (min-width: 37.5em) {
  .intro__title02__box p {
    font-size: 34px;
  }

  .intro__title02__box p .br {
    display: none;
  }
}

.intro__title02__box p span {
  font-size: 24px;
}

@media screen and (min-width: 48em) {
  .intro__title02__box p span {
    font-size: 26px;
  }
}

.container_m {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}

.intro__wrapper {
  position: relative;
}

.intro_container {
  background-color: #f3f3f3;
  padding: 10px;
  /* position: relative; */
  z-index: -2;
}

.intro_container::after {
  content: "";
  width: 230px;
  height: 444px;
  background-image: url(images/top/bg_intro_01.png);
  position: absolute;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right -10px bottom -15px;
}

@media screen and (min-width: 48em) {
  .intro_container::after {
    width: 329px;
    height: 444px;
  }
}

@media screen and (min-width: 1100px) {
  .intro_container::after {
    background-size: contain;
    width: 215px;
  }
}

.intro_container::before {
  content: "";
  border: 1px solid #d4c189;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.intro_container .intro__section {
  display: flex;
  flex-direction: column;
}

.intro__box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.intro__box p {
  text-align: left;
}

.intro_container .intro__section .button-basic {
  margin-top: auto;
}

.intro_container .intro__section .button-basic {
  padding: 20px;
  margin-top: 60px;
}

@media screen and (min-width: 1100px) {
  .intro_container .intro__section .button-basic {
    margin-top: 30px;
  }
}

.intro_container .mouthpiece_imgbox {
  display: grid;
  gap: 60px;
  justify-items: center;
}

@media screen and (min-width: 1100px) {
  .intro_container .mouthpiece_imgbox {
    display: flex;
  }
}

/* .intro__title img {
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 37.5em) {
  .intro__title img {
    top: -50px;
  }
}

@media screen and (min-width: 1100px) {
  .intro__title img {
    top: -65px;
  }
} */

/* .intro__title {
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .intro__title {
    top: -40px;
  }
}
@media screen and (min-width: 1100px) {
  .intro__title {
    top: -65px;
  }
}
.intro__title img{
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 37.5em) {
  .intro__title img{
    max-width: 70%;
  }
}
@media screen and (min-width: 1100px) {
  .intro__title img{
    max-width: 70%;
  }
} */

.intro__title img {
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 37.5em) {
  .intro__title img {
    max-width: 70%;
    top: -40px;
  }
}

@media screen and (min-width: 1100px) {
  .intro__title img {
    max-width: 70%;
    top: -65px;
  }
}

.intro_container.intro_container02 .intro__row .intro__section {
  text-align: left;
}

@media screen and (min-width: 1100px) {
  .intro_container.intro_container02 .intro__row {
    flex-direction: column;
  }

  .intro_container.intro_container02
    .intro__row
    .intro__section
    + .intro__section {
    border-top: 1px dashed #999999;
    border-left: none;
  }
}

.intro__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: solid 10px #f3f3f3;
  -o-border-image: url(images/top/bg_intro02.png) 100/10.5/0 round;
  border-image: url(images/top/bg_intro02.png) 100/10.5/0 round;
  position: relative;
}

@media screen and (min-width: 1100px) {
  .intro__row {
    flex-direction: row;
  }
}

.intro__row div {
  text-align: center;
  padding: 10px;
}

.intro__row .intro__section {
  padding: 30px 10px;
  margin: 10px;
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section {
    padding: 30px;
    width: 100%;
  }
}

.intro__row .intro__section + .intro__section {
  border-top: 1px dashed #999999;
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section + .intro__section {
    border-top: none;
    border-left: 1px dashed #999999;
  }
}

.intro__row .intro__section:first-of-type .br {
  display: none;
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section:first-of-type .br {
    display: none;
  }
}

.intro__row .intro__section:last-of-type .br {
  display: none;
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section:last-of-type .br {
    display: none;
  }
}

.intro__row .intro__section .title {
  font-size: 26px;
}

@media screen and (min-width: 37.5em) {
  .intro__row .intro__section .title {
    font-size: 42px;
  }
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section .title {
    font-size: 26px;
  }
}

.intro__row .intro__section p {
  font-size: 16px;
}

@media screen and (min-width: 37.5em) {
  .intro__row .intro__section p {
    font-size: 24px;
  }
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section p {
    font-size: 16px;
  }
}

.intro__row .intro__section .intro__box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.intro__row .intro__section .intro__box p {
  text-align: left;
}

/* .intro__row .intro__section .intro__box .button-basic {
  margin-top: auto;
  padding: 20px;
  margin-top: 60px;
}

@media screen and (min-width: 1100px) {
  .intro__row .intro__section .intro__box .button-basic {
    margin-top: 30px;
  }
} */

/* price */
/* ============================================ */
.mv_02__bg {
  background-image: url(images/common/bg_02.jpg);
  padding: 150px 0 130px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.mv_02__bg::after {
  content: "";
  background-image: url(images/top/mv_filter.png);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.2;
}

@media screen and (min-width: 1240px) {
  .mv_02__bg {
    padding: 150px 0 110px;
  }
}

.mv_02__bg .scrolldown1 {
  bottom: -10px;
}

.mv_02__bg .scrolldown1 span {
  color: #ffffff;
}

.mv_02__bg .scrolldown1::after {
  background: #fff;
}

.mv_02__bg::before {
  content: "";
  background-image: url(images/top/bg_intro_01.png);
  width: 329px;
  height: 444px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right -20px bottom -20px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.mv_02__bg .mv_02 .mv_02__title {
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.08em;
}

.mv_02__bg .mv_02 .mv_02__title span {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Cormorant Infant", serif;
}

@media screen and (min-width: 37.5em) {
  .mv_02__bg .mv_02 .mv_02__title {
    font-size: 18px;
  }

  .mv_02__bg .mv_02 .mv_02__title span {
    font-size: 72px;
    line-height: 1.2;
  }
}

.mv_02__bg .breadcrumbs_container .breadcrumbs {
  display: flex;
  gap: 10px;
  font-family: "Shippori Mincho", serif;
  margin-top: 70px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.mv_02__bg .breadcrumbs_container .post {
  color: #666666;
  font-size: 14px;
}

.mv_02__bg .breadcrumbs_container span {
  color: #fff;
  display: flex;
  align-items: center;
}

.mv_02__bg .breadcrumbs_container span::after {
  content: "―";
  color: #666666;
  margin-left: 10px;
  text-decoration: none;
}

.mv_02__bg .breadcrumbs_container span a {
  color: #666666;
  text-decoration: underline;
  font-size: 14px;
}

.mv_02__bg .breadcrumbs_container span.current-item {
  color: #fff;
}

.mv_02__bg .breadcrumbs_container span.current-item::after {
  content: "";
}

.bg_gray {
  padding: 130px 0 220px;
  position: relative;

  /* z-index: -2; */
}

.bg_gray::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(images/top/bg.jpg);
  background-color: #fff;
  background-repeat: repeat-y;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.price01 .button-basic {
  max-width: 480px;
  padding: 20px;
}

/* access */
/* ============================================ */
.title_02 {
  font-size: 28px;
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

@media screen and (min-width: 37.5em) {
  .title_02 {
    font-size: 32px;
  }
}

.title_03 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 37.5em) {
  .title_03 {
    font-size: 21px;
  }
}

.title_03::before {
  content: "";
  width: 3px;
  height: 30px;
  display: block;
  background-color: #d4c189;
  /* 251127 add */
  height: 1.2em;
}

.access_unit {
  display: grid;
  gap: 40px;
}

@media screen and (min-width: 48em) {
  .access_unit {
    grid-template-columns: 1fr 1fr;
  }
}

.access01 {
  margin-bottom: 160px;
}

.access01 ul li {
  border-bottom: 1px solid #aaaaaa;
  padding: 30px 0;
}

.access01 ul li p {
  font-size: 16px;
}

.access01 ul li .map_link {
  font-size: 14px;
  text-decoration: underline;
  color: #aaaaaa;
  margin-left: 5px;
}

.access02 .content01 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.access02 .content01 figure {
  display: flex;
  align-items: center;
  gap: 10px;
}

.access02 .content01 figcaption {
  font-size: 16px;
}

.access02 .content01 figcaption span {
  font-weight: bold;
}

.access02 dl {
  display: grid;
  gap: 70px;
}

.access02 .access__list {
  display: grid;
  margin-top: 50px;
  gap: 20px;
}

@media screen and (min-width: 37.5em) {
  .access02 .access__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 48em) {
  .access02 .access__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.access02 .access__list li img {
  width: 100%;
}

.access02 .access__list figcaption {
  margin-top: 15px;
}

/* faq */
/* ============================================ */
.faq_01,
.faq_02,
.faq_03,
.faq_05,
.faq_06 {
  margin-bottom: 160px;
}

.faq__list {
  display: grid;
  gap: 2px;
}

.faq__list.faq__listsub {
  display: grid;
  gap: 20px;
}

.faq__list .faq__dt {
  position: relative;
  background-color: #fff;
  padding: 30px 40px;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  align-items: center;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 40px;
  padding-right: 50px;
}

.faq__list .faq-open:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 31px;
  width: 1px;
  height: 20px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.faq__list .faq-open::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  width: 20px;
  height: 1px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.faq__list .faq__dt.open:after {
  background: none;
  transition: all 0.3s ease-in-out;
}

.faq__list .faq__dt span {
  font-size: 18px;
  font-family: "Cormorant Infant", serif;
  position: relative;
  z-index: 2;
}

.faq__list .faq__dt span::after {
  content: "";
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #333;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -22px;
  z-index: -1;
  margin: auto;
}

.faq__list .faq__container {
  padding: 40px 50px 60px 40px;
  font-size: 16px;
  align-items: baseline;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.3);
}

.faq__list .faq__container .faq__a {
  font-size: 18px;
  font-family: "Cormorant Infant", serif;
  position: relative;
  z-index: 2;
  color: #fff;
}

.faq__list .faq__container .faq__a::after {
  content: "";
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: #333;
  border: 1px solid #333;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -22px;
  z-index: -1;
  margin: auto;
}

.faq__list .faq__container p {
  letter-spacing: 0.04em;
  line-height: 2;
}

.faq__list .faq__container p span {
  font-size: 14px;
  margin-top: 40px;
  display: block;
}

.faq__list .faq-box {
  display: none;
}

/* flow */
/* ============================================ */
.flow_01 {
  margin-bottom: 0;
}

.flow_01__list {
  margin-top: 90px;
  counter-reset: number 0;
  display: grid;
  gap: 60px;
}

.flow_01__list .flow_01__item {
  background-color: #f3f3f3;
  padding: 30px 20px;
  box-shadow: 0px 5px 24px 0px rgba(51, 51, 51, 0.14);
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__item {
    padding: 50px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dt {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: normal;
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__dl .flow_01__dt {
    font-size: 32px;
    grid-template-columns: 85px 1fr;
    gap: 20px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dt::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 18px;
  color: #333333;
  background-color: #d4c189;
  font-family: "Cormorant Infant", serif;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__dl .flow_01__dt::before {
    font-size: 21px;
    width: 85px;
    height: 85px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dd {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.flow_01__list .flow_01__dl .flow_01__dd p {
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__dl .flow_01__dd {
    grid-template-columns: 85px 1fr;
    gap: 20px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dd::before {
  content: "";
  background-color: #888888;
  height: 100%;
  width: 1px;
  display: inline-block;
  margin: 0 auto;
}

.flow_01__list .flow_01__dl .flow_01__dd .title_03 {
  flex-wrap: wrap;
  font-size: 21px;
  gap: 5px 10px;
}

.flow_01__list .flow_01__dl .flow_01__dd .title_03 span {
  font-size: 14px;
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__dl .flow_01__dd .title_03 {
    font-size: 24px;
  }

  .flow_01__list .flow_01__dl .flow_01__dd .title_03 span {
    font-size: 16px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dd .flow_01__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__dl .flow_01__dd .flow_01__box {
    flex-direction: row;
    gap: 70px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dd .flow_01__box ul {
  width: 100%;
  text-align: center;
}

.flow_01__list .flow_01__dl .flow_01__dd .flow_01__box ul li {
  font-size: 16px;
}

@media screen and (min-width: 48em) {
  .flow_01__list .flow_01__dl .flow_01__dd .flow_01__box ul li {
    font-size: 18px;
  }
}

.flow_01__list
  .flow_01__dl
  .flow_01__dd
  .flow_01__box
  ul:first-of-type
  li
  span {
  font-size: 13px;
}

.flow_01__list
  .flow_01__dl
  .flow_01__dd
  .flow_01__box
  ul:first-of-type
  li:nth-of-type(2) {
  font-size: 34px;
  font-family: "Cormorant Infant", serif;
  line-height: 1.1;
}

@media screen and (min-width: 48em) {
  .flow_01__list
    .flow_01__dl
    .flow_01__dd
    .flow_01__box
    ul:first-of-type
    li:nth-of-type(2) {
    font-size: 52px;
  }
}

.flow_01__list .flow_01__dl .flow_01__dd .flow_01__box ul:last-of-type {
  display: flex;
  flex-direction: column;
}

.flow_01__list
  .flow_01__dl
  .flow_01__dd
  .flow_01__box
  ul:last-of-type
  li:last-of-type {
  margin-top: auto;
}

.flow_01__list .flow_01__dl .flow_01__dd .flow_01__box ul .button-basic {
  padding: 20px;
}

.flow_01__list .flow_01__dl .flow_01__dd .flow_01_flex:has(> img) {
  display: grid;
  gap: 30px;
  justify-items: center;
}

@media screen and (min-width: 967px) {
  .flow_01__list .flow_01__dl .flow_01__dd .flow_01_flex:has(> img) {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
}

/* news */
/* ============================================ */
.news_01 ul {
  margin-bottom: 50px;
}

.news_01 li {
  border-bottom: 1px solid #aaaaaa;
}

.news_01 li a {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px 0;
}

@media screen and (min-width: 48em) {
  .news_01 li a {
    align-items: center;
  }
}

.news_01 li a:hover {
  opacity: 0.6;
}

.news_01 li .news_title {
  font-size: 16px;
}

.news_01 .date {
  font-size: 16px;
  font-weight: bold;
}

.news_01 .date time {
  color: #aaaaaa;
  font-family: "Cormorant Infant", serif;
}

.news_02 .news_detail-taitle {
  font-size: 24px;
}

.news_02 .date {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.news_02 .date time {
  color: #aaaaaa;
  font-family: "Cormorant Infant", serif;
}

.news_02 .content_container {
  padding-top: 50px;
  margin-top: 50px;
  padding-bottom: 80px;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
}

.news_02 .content_container p {
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.news_02 .pege_link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  margin-top: 50px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "item01 item03" "item02 item02";
  text-align: center;
}

@media screen and (min-width: 48em) {
  .news_02 .pege_link {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 48em) {
  .news_02 .pege_link {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}

.news_02 .pege_link li:first-child {
  grid-area: item01;
}

.news_02 .pege_link li:nth-child(2) {
  grid-area: item02;
}

.news_02 .pege_link li:nth-child(3) {
  grid-area: item03;
}

.news_02 .pege_link .prev_link span {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #999;
}

.news_02 .pege_link .prev_link {
  /* content: "";
  background-image: url(images/common/arrow_right-g.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 46px;
  height: 46px; */
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_02 .pege_link .prev_link img {
  transform: rotate(180deg);
  transition: all 0.5s;
}

.news_02 .pege_link .next_link span {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #999;
}

.prev_link:hover img,
.next_link:hover img {
  opacity: 0.5;
  transition: all 0.5s;
}

.news_02 .pege_link .next_link {
  /* content: "";
  background-image: url(images/common/arrow_right-g.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 46px;
  height: 46px; */
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.news_02 .pege_link li a:hover {
  opacity: 0.6;
}

.news_02 .pege_link .prev_link img {
  transition: all 0.5s;
}

.news_02 .pege_link li .button-basic {
  width: 100%;
  padding: 20px;
}

.news_02 .pege_link li:has(> .button-basic) {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .news_02 .pege_link li:has(> .button-basic) {
    max-width: 250px;
  }

  .news_02 .pege_link li .button-basic {
    width: 100%;
    padding: 20px;
    max-width: 250px;
  }
}

@media screen and (min-width: 48em) {
  .news_02 .pege_link li .button-basic {
    width: 100%;
    max-width: 250px;
  }
}

/* about */
/* ============================================ */
.about01 {
  margin-bottom: 60px;
}

.about01 .about__unit {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 37.5em) {
  .about01 .about__unit {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .about01 .about__unit {
    gap: 85px;
  }
}

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

.about01 figure figcaption {
  text-align: right;
}

.about01 figure figcaption p:last-of-type {
  font-size: 28px;
}

@media screen and (min-width: 37.5em) {
  .about01 .about__textbox {
    max-width: 60%;
  }
}

@media screen and (min-width: 1100px) {
  .about01 .about__textbox {
    max-width: 691px;
  }
}

.about01 .about__textbox p {
  margin-bottom: 20px;
}

.about02 {
  margin-bottom: 160px;
}

.about02 .about02__dl {
  padding-top: 20px;
}

.about02 .about02__dl .about02__unit {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.about02 .about02__dl .about02__unit:last-of-type {
  margin-bottom: 0;
}

.about02 .about02__dl dt,
.about02 .about02__dl dd {
  font-size: 16px;
  font-weight: normal;
}

.about02 .about02__dl dd br {
  display: none;
}

@media screen and (min-width: 37.5em) {
  .about02 .about02__dl dd br {
    display: block;
  }
}

.about02 .button-basic {
  padding: 20px;
}

@media screen and (min-width: 48em) {
  .about02 .button-basic {
    max-width: 480px;
  }
}

.about03 .about03__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

@media screen and (min-width: 48em) {
  .about03 .about03__list {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.about03 .about03__list li {
  width: 100%;
  max-width: 351px;
}

.about03 .about03__list li figcaption {
  margin-top: 40px;
  line-height: 2;
}

/* concept */
/* ============================================ */
.line__wrapper {
  background-color: #f3f3f3;
  padding: 10px;
  position: relative;
  z-index: -2;
}

.line__wrapper::before {
  content: "";
  border: 1px solid #d4c189;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.line_content {
  border: solid 10px #f3f3f3;
  -o-border-image: url(images/top/bg_intro02.png) 100/10.5/0 round;
  border-image: url(images/top/bg_intro02.png) 100/10.5/0 round;
  position: relative;
}

.concept01 .container_m {
  position: relative;
  z-index: -1;
}

.concept01 .line__wrapper {
  box-shadow: 0px 5px 24px 0px rgba(51, 51, 51, 0.14);
}

.concept01 .concept01__list {
  margin: 60px 0 0;
  display: grid;
  gap: 60px;
  counter-reset: number 0;
  position: relative;
  z-index: -1;
}

.concept01 .concept01__unit {
  padding: 30px;
}

.concept01 .concept01__unit:has(> img) {
  display: grid;
  gap: 30px;
  justify-items: center;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 48em) {
  .concept01 .concept01__unit:has(> img) {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

@media screen and (min-width: 1100px) {
  .concept01 .concept01__unit:has(> img) {
    gap: 60px;
  }
}

.concept01 .concept01__unit dt {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.concept01 .concept01__unit dt::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 20px;
  color: #d3c088;
  border-top: 1px solid #d3c088;
  font-family: "Cormorant Infant", serif;
}

.concept01 .concept01__unit dd {
  line-height: 2;
  letter-spacing: 0.04em;
}

.concept01 .concept01__unit dd .text_small {
  font-size: 14px;
  display: block;
  margin-bottom: 50px;
}

.concept01 .concept01__unit dd .button-basic {
  padding: 15px;
}

.concept01 .concept01__textbox {
  line-height: 2;
  letter-spacing: 0.04em;
  padding: 30px;
  padding-top: 0;
}

/* adult */
/* ============================================ */
.adult01,
.adult02,
.adult03,
.adult04 {
  margin-bottom: 160px;
}

/* mouthpiece */
/* ============================================ */
.mouthpiece01,
.mouthpiece02,
.mouthpiece03,
.mouthpiece04 {
  margin-bottom: 160px;
}

.mouthpiece01__list {
  margin-top: 90px;
  display: grid;
  gap: 20px;
}

@media screen and (min-width: 37.5em) {
  .mouthpiece01__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 48em) {
  .mouthpiece01__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.mouthpiece01__list .mouthpiece01__item {
  background-color: #f3f3f3;
  text-align: center;
  padding: 30px;
}

.mouthpiece01__list .mouthpiece01__item .mouthpiece01_box {
  display: grid;
  gap: 20px;
  justify-items: center;
  margin-bottom: 20px;
}

.mouthpiece01__list .mouthpiece01__item .mouthpiece01_box::after {
  content: "";
  background-color: #d4c189;
  width: 45px;
  height: 2px;
  display: block;
}

.mouthpiece01__list .mouthpiece01__item h3 {
  font-size: 21px;
}

.mouthpiece01__list .mouthpiece01__item h3 br {
  display: none;
}

@media screen and (min-width: 37.5em) {
  .mouthpiece01__list .mouthpiece01__item h3 br {
    display: block;
  }
}

.mouthpiece01__list .mouthpiece01__item p {
  text-align: left;
}

.mouthpiece01__list .mouthpiece01__item span {
  font-size: 14px;
  text-align: left;
  display: block;
}

.mouthpiece02 .mouthpiece_imgbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  padding-top: 30px;
}

.mouthpiece05 .mouthpiece05_line {
  border-top: 1px solid #aaaaaa;
  padding-top: 30px;
}

.mouthpiece05 p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.mouthpiece05 .mouthpiece05_circle {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.mouthpiece05 .mouthpiece05_circle::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333333;
}

.mouthpiece05 .mouthpiece05_dl {
  display: grid;
  gap: 15px;
  margin-top: 10px;
}

.mouthpiece05 .mouthpiece05_dl .mouthpiece05_unit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 30px;
}

.mouthpiece05 .mouthpiece05_dl .mouthpiece05_unit dt,
.mouthpiece05 .mouthpiece05_dl .mouthpiece05_unit dd {
  font-size: 14px;
  font-weight: normal;
}

.title_05 {
  font-size: 14px;
  font-weight: bold;
}

/* partial */
/* ============================================ */
.partial01,
.partial02,
.partial03,
.partial04 {
  margin-bottom: 160px;
}

.medical__list {
  counter-reset: number 0;
  display: grid;
  gap: 60px;
}

.medical__list .title_04 {
  font-size: 21px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 30px;
}

.medical__list .title_04::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 20px;
  color: #d3c088;
  border-top: 1px solid #d3c088;
  font-family: "Cormorant Infant", serif;
}

.medical__item {
  background-color: #f3f3f3;
  padding: 30px;
}

@media screen and (min-width: 37.5em) {
  .medical__item {
    padding: 40px 50px;
  }
}

@media screen and (min-width: 48em) {
  .medical__item {
    padding: 50px 60px;
  }
}

.medical__unit-w:has(> img) {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1100px) {
  .medical__unit-w:has(> img) {
    flex-direction: row-reverse;
    gap: 40px;
    align-items: flex-start;
  }
}

.medical__unit-w dl dt {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 2px;
}

.medical__unit-w dl dt::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  background-color: #d2bf87;
}

.medical__unit-w dl dd {
  line-height: 2;
}

.partial04 .button-basic {
  max-width: 480px;
  padding: 20px;
}

/* whitening */
/* ============================================ */
.whitening01,
.whitening02 {
  margin-bottom: 160px;
}

.medical__unit:has(> img) {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media screen and (min-width: 968px) {
  .medical__unit:has(> img) {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1100px) {
  .medical__unit:has(> img) {
    gap: 80px;
  }
}

.medical__unit p {
  line-height: 2;
  letter-spacing: 0.04em;
}

.medical__unit .button-basic {
  padding: 20px;
}

.whitening01_box {
  background-color: #f3f3f3;
  padding: 30px;
  margin-top: 50px;
}

@media screen and (min-width: 37.5em) {
  .whitening01_box {
    padding: 40px;
  }
}

@media screen and (min-width: 48em) {
  .whitening01_box {
    padding: 40px 60px;
  }
}

.whitening01_box ul {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.whitening01_box p {
  line-height: 2;
  letter-spacing: 0.04em;
}

.whitening01_box p span {
  font-size: 14px;
}

.whitening02 .medical_text_box,
.whitening03 .medical_text_box {
  width: 100%;
  max-width: 532px;
}

/* period */
/* ============================================ */
.period01,
.period02,
.period03 {
  margin-bottom: 160px;
}

.period01 .title_02 {
  margin-top: 170px;
}

.period01 .period_list {
  display: grid;
  gap: 60px;
}

.period01 .period_box {
  background-color: #f3f3f3;
  padding: 30px;
}

@media screen and (min-width: 37.5em) {
  .period01 .period_box {
    padding: 40px;
  }
}

@media screen and (min-width: 48em) {
  .period01 .period_box {
    padding: 50px 60px;
  }
}

.period01 .period_box .title_06 {
  margin-bottom: 20px;
}

.period01 .period_box p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.period_unit:has(> img) {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media screen and (min-width: 968px) {
  .period_unit:has(> img) {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1100px) {
  .period_unit:has(> img) {
    gap: 80px;
  }
}

.title_06 {
  font-size: 16px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 15px 1fr;
  align-items: center;
  gap: 10px;
  /* 251127 add */
  font-weight: 600;
}

.title_06::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #d2bf86;
}

.font-bold {
  font-weight: bold;
}

.period04 .period04__list {
  margin-top: 40px;
  display: grid;
  gap: 40px 20px;
  justify-items: center;
}

@media screen and (min-width: 37.5em) {
  .period04 .period04__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 48em) {
  .period04 .period04__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.period04 .period04__list figcaption {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}

/* u-color */
/* ============================================ */
.c-corporate {
  color: var(--color-corporate);
}

/* u-display */
/* ============================================ */
.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* flex-flow */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

/* align */
.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.align-end {
  align-items: end;
}

/* justify */
.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

/* flex */
.flex1 {
  flex: 1;
}

/* width */
.w50 {
  width: 50%;
}

.w100 {
  width: 100%;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* gap */
.column-gap5 {
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.column-gap10 {
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.column-gap15 {
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.column-gap20 {
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.column-gap25 {
  -moz-column-gap: 25px;
  column-gap: 25px;
}

.column-gap30 {
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.row-gap5 {
  row-gap: 5px;
}

.row-gap10 {
  row-gap: 10px;
}

.row-gap15 {
  row-gap: 15px;
}

.row-gap20 {
  row-gap: 20px;
}

.row-gap25 {
  row-gap: 25px;
}

.row-gap30 {
  row-gap: 30px;
}

.flexbox {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-dir-reverse {
  flex-direction: row-reverse;
}

/* u-font */
/* ============================================ */
/* font-size */
:root {
  --fz10: calc(10rem / 16);
  --fz11: calc(11rem / 16);
  --fz12: calc(12rem / 16);
  --fz13: calc(13rem / 16);
  --fz14: calc(14rem / 16);
  --fz15: calc(15rem / 16);
  --fz16: calc(16rem / 16);
  --fz17: calc(17rem / 16);
  --fz18: calc(18rem / 16);
  --fz19: calc(19rem / 16);
  --fz20: calc(20rem / 16);
  --fz21: calc(21rem / 16);
  --fz22: calc(22rem / 16);
  --fz23: calc(23rem / 16);
  --fz24: calc(24rem / 16);
  --fz25: calc(25rem / 16);
  --fz26: calc(26rem / 16);
  --fz27: calc(27rem / 16);
  --fz28: calc(28rem / 16);
  --fz42: calc(42rem / 16);
  --fz52: calc(52rem / 16);
  --fz48: calc(48rem / 16);
}

@supports (width: min(10px, 5vw)) {
  :root {
    --fz15: clamp(0.875rem, 0.833rem + 0.11vw, 0.938rem);
    /* min14px max15px viewport:min600px max1500px */
    --fz16: clamp(0.875rem, 0.792rem + 0.22vw, 1rem);
    /* min14px max16px viewport:min600px max1500px */
    --fz17: clamp(0.938rem, 0.854rem + 0.22vw, 1.063rem);
    /* min15px max17px viewport:min600px max1500px */
    --fz18: clamp(1rem, 0.917rem + 0.22vw, 1.125rem);
    /* min16px max18px viewport:min600px max1500px */
    --fz19: clamp(1rem, 0.875rem + 0.33vw, 1.188rem);
    /* min16px max19px viewport:min600px max1500px */
    --fz20: clamp(1.125rem, 1rem + 0.33vw, 1.313rem);
    /* min18px max20px viewport:min600px max1500px */
    --fz21: clamp(1.125rem, 0.86rem + 0.71vw, 1.313rem);
    /* min18px max21px viewport:min600px max1500px */
    --fz22: clamp(1.125rem, 0.958rem + 0.44vw, 1.375rem);
    /* min18px max22px viewport:min600px max1500px */
    --fz23: clamp(1.125rem, 0.917rem + 0.56vw, 1.438rem);
    /* min18px max23px viewport:min600px max1500px */
    --fz24: clamp(1.125rem, 0.875rem + 0.67vw, 1.5rem);
    /* min18px max24px viewport:min600px max1500px */
    --fz25: clamp(1.313rem, 1.146rem + 0.44vw, 1.563rem);
    /* min21px max25px viewport:min600px max1500px */
    --fz26: clamp(1.313rem, 1.104rem + 0.56vw, 1.625rem);
    /* min21px max26px viewport:min600px max1500px */
    --fz28: clamp(1.313rem, 1.021rem + 0.78vw, 1.75rem);
    /* min21px max28px viewport:min600px max1500px */
    --fz42: clamp(1.438rem, 0.646rem + 2.11vw, 2.625rem);
    /* min23px max42px viewport:min600px max1500px */
    --fz48: clamp(1.438rem, 0.396rem + 2.78vw, 3rem);
    /* min23px max48px viewport:min600px max1500px */
    --fz52: clamp(1.5rem, 0.333rem + 3.11vw, 3.25rem);
    /* min24px max52px viewport:min600px max1500px */
  }
}

.fz10 {
  font-size: var(--fz10);
}

.fz11 {
  font-size: var(--fz11);
}

.fz12 {
  font-size: var(--fz12);
}

.fz13 {
  font-size: var(--fz13);
}

.fz14 {
  font-size: var(--fz14);
}

.fz15 {
  font-size: var(--fz15);
}

.fz16 {
  font-size: var(--fz16);
}

.fz17 {
  font-size: var(--fz17);
}

.fz18 {
  font-size: var(--fz18);
}

.fz19 {
  font-size: var(--fz19);
}

.fz20 {
  font-size: var(--fz20);
}

.fz21 {
  font-size: var(--fz21);
}

.fz22 {
  font-size: var(--fz22);
}

.fz23 {
  font-size: var(--fz23);
}

.fz24 {
  font-size: var(--fz24);
}

.fz25 {
  font-size: var(--fz25);
}

.fz26 {
  font-size: var(--fz26);
}

.fz27 {
  font-size: var(--fz27);
}

.fz28 {
  font-size: var(--fz28);
}

.fz42 {
  font-size: var(--fz42);
}

.fz52 {
  font-size: var(--fz52);
}

.fz48 {
  font-size: var(--fz48);
}

/* font-weight */
.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.normal {
  font-weight: 400;
}

/* font-family */
.en {
  font-family: var(--font-en);
}

/* u-line-height */
/* ============================================ */
.lh220 {
  line-height: 2.2;
}

.lh200 {
  line-height: 2;
}

/* u-margin-padding */
/* ============================================ */
:root {
  --m35: 35px;
  --m40: 40px;
  --m45: 45px;
  --m50: 50px;
  --m56: 56px;
  --m60: 60px;
  --m64: 64px;
  --m72: 72px;
  --m80: 80px;
  --m84: 84px;
  --m88: 88px;
  --m100: 100px;
  --m108: 108px;
  --m156: 156px;
  --m160: 160px;
  --m162: 162px;
  --m168: 168px;
  --m176: 176px;
  --m188: 188px;
  --m192: 192px;
  --m203: 203px;
  --m210: 210px;
  --m230: 230px;
  --m280: 280px;
}

@supports (width: min(10px, 5vw)) {
  :root {
    --m35: clamp(1.875rem, 1.433rem + 1.18vw, 2.188rem);
    /* min30px max35px viewport:min600px max1024px */
    --m40: clamp(1.875rem, 0.991rem + 2.36vw, 2.5rem);
    /* min30px max40px viewport:min600px max1024px */
    --m45: clamp(1.875rem, 0.548rem + 3.54vw, 2.813rem);
    /* min30px max45px viewport:min600px max1024px */
    --m50: clamp(1.875rem, 0.106rem + 4.72vw, 3.125rem);
    /* min30px max50px viewport:min600px max1024px */
    --m56: clamp(1.875rem, -0.425rem + 6.13vw, 3.5rem);
    /* min30px max56px viewport:min600px max1024px */
    --m60: clamp(2.5rem, 0.731rem + 4.72vw, 3.75rem);
    /* min40px max60px viewport:min600px max1024px */
    --m64: clamp(2.5rem, 0.377rem + 5.66vw, 4rem);
    /* min40px max64px viewport:min600px max1024px */
    --m72: clamp(3.125rem, 1.179rem + 5.19vw, 4.5rem);
    /* min50px max72px viewport:min600px max1024px */
    --m80: clamp(3.75rem, 1.981rem + 4.72vw, 5rem);
    /* min60px max80px viewport:min600px max1024px */
    --m84: clamp(3.75rem, 1.627rem + 5.66vw, 5.25rem);
    /* min60px max84px viewport:min600px max1024px */
    --m88: clamp(3.75rem, 1.274rem + 6.6vw, 5.5rem);
    /* min60px max88px viewport:min600px max1024px */
    --m100: clamp(4.375rem, 1.722rem + 7.08vw, 6.25rem);
    /* min70px max100px viewport:min600px max1024px */
    --m108: clamp(4.375rem, 1.014rem + 8.96vw, 6.75rem);
    /* min70px max108px viewport:min600px max1024px */
    --m156: clamp(5rem, -1.722rem + 17.92vw, 9.75rem);
    /* min80px max156px viewport:min600px max1024px */
    --m160: clamp(5rem, -2.075rem + 18.87vw, 10rem);
    /* min80px max160px viewport:min600px max1024px */
    --m162: clamp(5rem, -2.252rem + 19.34vw, 10.125rem);
    /* min80px max162px viewport:min600px max1024px */
    --m168: clamp(5rem, -2.783rem + 20.75vw, 10.5rem);
    /* min80px max168px viewport:min600px max1024px */
    --m176: clamp(5rem, -3.491rem + 22.64vw, 11rem);
    /* min80px max176px viewport:min600px max1024px */
    --m188: clamp(5rem, -4.552rem + 25.47vw, 11.75rem);
    /* min80px max188px viewport:min600px max1024px */
    --m192: clamp(5rem, -4.906rem + 26.42vw, 12rem);
    /* min80px max192px viewport:min600px max1024px */
    --m203: clamp(5rem, -5.879rem + 29.01vw, 12.688rem);
    /* min80px max203px viewport:min600px max1024px */
    --m210: clamp(5rem, -6.498rem + 30.66vw, 13.125rem);
    /* min80px max210px viewport:min600px max1024px */
    --m230: clamp(5rem, -8.267rem + 35.38vw, 14.375rem);
    /* min80px max230px viewport:min600px max1024px */
    --m280: clamp(6.25rem, -9.67rem + 42.45vw, 17.5rem);
    /* min100px max280px viewport:min600px max1024px */
  }
}

/* margin */
/* margin-top */
.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: var(--m35);
}

.mt40 {
  margin-top: var(--m40);
}

.mt45 {
  margin-top: var(--m45);
}

.mt50 {
  margin-top: var(--m50);
}

.mt56 {
  margin-top: var(--m56);
}

.mt60 {
  margin-top: var(--m60);
}

.mt64 {
  margin-top: var(--m64);
}

.mt72 {
  margin-top: var(--m72);
}

.mt80 {
  margin-top: var(--m80);
}

.mt84 {
  margin-top: var(--m84);
}

.mt88 {
  margin-top: var(--m88);
}

.mt100 {
  margin-top: var(--m100);
}

.mt108 {
  margin-top: var(--m108);
}

.mt156 {
  margin-top: var(--m156);
}

.mt160 {
  margin-top: var(--m160);
}

.mt162 {
  margin-top: var(--m162);
}

.mt168 {
  margin-top: var(--m168);
}

.mt176 {
  margin-top: var(--m176);
}

.mt188 {
  margin-top: var(--m188);
}

.mt192 {
  margin-top: var(--m192);
}

.mt203 {
  margin-top: var(--m203);
}

.mt210 {
  margin-top: var(--m210);
}

.mt230 {
  margin-top: var(--m230);
}

.mt280 {
  margin-top: var(--m280);
}

/* margin-bottom */
.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: var(--m35);
}

.mb40 {
  margin-bottom: var(--m40);
}

.mb45 {
  margin-bottom: var(--m45);
}

.mb50 {
  margin-bottom: var(--m50);
}

.mb56 {
  margin-bottom: var(--m56);
}

.mb60 {
  margin-bottom: var(--m60);
}

.mb64 {
  margin-bottom: var(--m64);
}

.mb72 {
  margin-bottom: var(--m72);
}

.mb80 {
  margin-bottom: var(--m80);
}

.mb84 {
  margin-bottom: var(--m84);
}

.mb88 {
  margin-bottom: var(--m88);
}

.mb100 {
  margin-bottom: var(--m100);
}

.mb108 {
  margin-bottom: var(--m108);
}

.mb156 {
  margin-bottom: var(--m156);
}

.mb160 {
  margin-bottom: var(--m160);
}

.mb162 {
  margin-bottom: var(--m162);
}

.mb168 {
  margin-bottom: var(--m168);
}

.mb176 {
  margin-bottom: var(--m176);
}

.mb188 {
  margin-bottom: var(--m188);
}

.mb192 {
  margin-bottom: var(--m192);
}

.mb203 {
  margin-bottom: var(--m203);
}

.mb210 {
  margin-bottom: var(--m210);
}

.mb230 {
  margin-bottom: var(--m230);
}

.mb280 {
  margin-bottom: var(--m280);
}

/* margin-left */
.ml0 {
  margin-left: 0px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

/* margin-right */
.mr0 {
  margin-right: 0px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

/* margin other */
.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.m-right {
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 47.9375em) {
  .m-auto--sp-max {
    margin-left: auto;
    margin-right: auto;
  }
}

.ml1em {
  margin-left: 1em;
}

.mr1em {
  margin-right: 1em;
}

.ml05em {
  margin-left: 0.5em;
}

.mr05em {
  margin-right: 0.5em;
}

/* padding */
/* padding-top */
.pt0 {
  padding-top: 0px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: var(--m35);
}

.pt40 {
  padding-top: var(--m40);
}

.pt45 {
  padding-top: var(--m45);
}

.pt50 {
  padding-top: var(--m50);
}

.pt56 {
  padding-top: var(--m56);
}

.pt60 {
  padding-top: var(--m60);
}

.pt64 {
  padding-top: var(--m64);
}

.pt72 {
  padding-top: var(--m72);
}

.pt80 {
  padding-top: var(--m80);
}

.pt84 {
  padding-top: var(--m84);
}

.pt88 {
  padding-top: var(--m88);
}

.pt100 {
  padding-top: var(--m100);
}

.pt108 {
  padding-top: var(--m108);
}

.pt156 {
  padding-top: var(--m156);
}

.pt160 {
  padding-top: var(--m160);
}

.pt162 {
  padding-top: var(--m162);
}

.pt168 {
  padding-top: var(--m168);
}

.pt176 {
  padding-top: var(--m176);
}

.pt188 {
  padding-top: var(--m188);
}

.pt192 {
  padding-top: var(--m192);
}

.pt203 {
  padding-top: var(--m203);
}

.pt210 {
  padding-top: var(--m210);
}

.pt230 {
  padding-top: var(--m230);
}

.pt280 {
  padding-top: var(--m280);
}

/* padding-bottom */
.pb0 {
  padding-bottom: 0px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: var(--m35);
}

.pb40 {
  padding-bottom: var(--m40);
}

.pb45 {
  padding-bottom: var(--m45);
}

.pb50 {
  padding-bottom: var(--m50);
}

.pb56 {
  padding-bottom: var(--m56);
}

.pb60 {
  padding-bottom: var(--m60);
}

.pb64 {
  padding-bottom: var(--m64);
}

.pb72 {
  padding-bottom: var(--m72);
}

.pb80 {
  padding-bottom: var(--m80);
}

.pb84 {
  padding-bottom: var(--m84);
}

.pb88 {
  padding-bottom: var(--m88);
}

.pb100 {
  padding-bottom: var(--m100);
}

.pb108 {
  padding-bottom: var(--m108);
}

.pb156 {
  padding-bottom: var(--m156);
}

.pb160 {
  padding-bottom: var(--m160);
}

.pb162 {
  padding-bottom: var(--m162);
}

.pb168 {
  padding-bottom: var(--m168);
}

.pb176 {
  padding-bottom: var(--m176);
}

.pb188 {
  padding-bottom: var(--m188);
}

.pb192 {
  padding-bottom: var(--m192);
}

.pb203 {
  padding-bottom: var(--m203);
}

.pb210 {
  padding-bottom: var(--m210);
}

.pb230 {
  padding-bottom: var(--m230);
}

.pb280 {
  padding-bottom: var(--m280);
}

/* padding-left */
.pl0 {
  padding-left: 0px;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

/* padding-right */
.pr0 {
  padding-right: 0px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

/* u-responsive */
/* ============================================ */
.sp-none,
.x-sp-none,
.tab-none,
.tab-max-none {
  display: none;
}

@media screen and (min-width: 23.4375em) {
  .x-sp-none {
    display: block;
  }
}

@media screen and (min-width: 37.5em) {
  .sp-none {
    display: block;
  }
}

@media screen and (min-width: 48em) {
  .tab-none {
    display: block;
  }
}

@media screen and (max-width: 47.9375em) {
  .tab-max-none {
    display: block;
  }
}

/* u-text-align */
/* ============================================ */
.t-center {
  text-align: center;
}

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

.t-right {
  text-align: right;
}

@media screen and (min-width: 37.5em) {
  .t-center-sp {
    text-align: center;
  }
}

/* u-visually_hidden */
/* ============================================ */
.visually_hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.intro__title02-picture {
  text-align: center;
  display: block;
  margin-bottom: 70px;
}

@media screen and (min-width: 48em) {
  .intro__title02-picture {
    margin-bottom: 70px;
  }
}

#about .top_medical_text_box {
  border: 1px solid #aaaaaa;
  margin-top: 100px;
  color: #fff;
  padding: 30px;
}

@media screen and (min-width: 48em) {
  #about .top_medical_text_box {
    padding: 60px;
  }
}

#about .top_medical_text_box h4 {
  font-size: 16px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  #about .top_medical_text_box h4 {
    font-size: 24px;
    text-align: center;
  }
}

#about .top_medical_text_box span {
  font-size: 21px;
}

@media screen and (min-width: 48em) {
  #about .top_medical_text_box span {
    font-size: 40px;
  }
}

#about .top_medical_text_box .mouthpiece_imgbox {
  display: grid;
  gap: 30px;
  justify-items: center;
  align-items: flex-end;
}

@media screen and (min-width: 48em) {
  #about .top_medical_text_box .mouthpiece_imgbox {
    grid-template-columns: 1fr 1fr;
  }
}

#about .top_medical_text_box .button-basic {
  padding: 20px;
  margin-top: 60px;
}

.book_box {
  text-align: center;
}

.book_box a {
  transition: all 0.5s;
}

.book_box a:hover {
  opacity: 0.5;
  transition: all 0.5s;
}

.footer__link-01 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .footer__link-01 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.top__pickup {
  padding: 120px 0 40px;
}

.top__pickup .title__img {
  text-align: center;
}

.top__pickup .top__pickup__item {
  position: relative;
}

.top__pickup .top__pickup__item .top__pickup__text {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  padding: 15px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 20;
}

@media screen and (min-width: 968px) {
  .top__pickup .top__pickup__item .top__pickup__text {
    padding: 30px;
  }
}

.top__pickup .top__pickup__item .top__pickup__text p,
.top__pickup .top__pickup__item .top__pickup__text span {
  color: #fff;
}

.top__pickup .top__pickup__item .top__pickup__text p {
  font-size: 20px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 375px) {
  .top__pickup .top__pickup__item .top__pickup__text p {
    font-size: 24px;
  }
}

@media screen and (min-width: 968px) {
  .top__pickup .top__pickup__item .top__pickup__text p {
    font-size: 32px;
  }
}

.top__pickup .top__pickup__item .top__pickup__text span {
  font-size: 16px;
}

@media screen and (min-width: 968px) {
  .top__pickup .top__pickup__item .top__pickup__text span {
    font-size: 18px;
  }
}

.top__pickup .top__pickup__item .top__pickup__text ul {
  color: #fff;
}

.top__pickup .top__pickup__item .top__pickup__text ul li {
  transition: all 0.5s;
  margin-bottom: 5px;
  font-size: 16px;
}

.top__pickup .top__pickup__item .top__pickup__text ul li a {
  line-height: 2;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
}

.top__pickup .top__pickup__item .top__pickup__text ul li:hover {
  opacity: 0.6;
  transition: all 0.5s;
}

.top__pickup .top__pickup__item .top__pickup__text ul li:hover a {
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}

/* .top__pickup .top__pickup__item:hover .pickup__img_01::before {
  background-image: url(images/top/filter_on.png);
  transition: all 0.5s;
} */

.top__pickup .top__pickup__list {
  display: grid;
  gap: 40px;
}

/* @media screen and (min-width: 48em) {
  .top__pickup .top__pickup__list {
    grid-template-columns: 1fr 1fr;
  }
} */
@media screen and (min-width: 960px) {
  .top__pickup .top__pickup__list {
    grid-template-columns: 1fr 1fr;
  }
}

.top__pickup .top__pickup__list .pickup__img_01 {
  position: relative;
}

.top__pickup .top__pickup__list .pickup__img_01 img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 539px) {
  .top__pickup .top__pickup__list .pickup__img_01 img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 960px) {
  .top__pickup .top__pickup__list .pickup__img_01 img {
    height: 320px;
  }
}

.top__pickup .top__pickup__list .pickup__img_01::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: url(images/top/filter_off.png);
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s;
}

.title__img {
  text-align: center;
}

.top__pickup {
  padding: 120px 0 40px;
}

.about__row .edical_text_box h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about__row .edical_text_box span {
  font-size: 40px;
}

/*# sourceMappingURL=style.css.map */

.banner_container {
  background-color: #888888;
  padding: 40px 0;
}

.banner_container .swiper-slide {
  width: 100%;
  height: auto;
  padding: 10px 20px;
}

.banner_container .swiper-slide a {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
}

.banner_container .swiper-slide a:hover {
  opacity: 0.6;
}

.banner_container .swiper-slide a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #292929;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  max-height: 300px;
  display: block;
}

.banner_container .swiper-slide.swiper-slide-active a::after {
  background-color: transparent;
  content: "";
}

.banner_container .swiper-button-next {
  color: transparent;
  right: 15px !important;
}

@media screen and (min-width: 768px) {
  .banner_container .swiper-button-next {
    color: transparent;
    right: 30% !important;
  }
}

.banner_container .swiper-button-next::after {
  content: url(images/common/arrow_right.png);
}

.banner_container .swiper-button-prev {
  color: transparent;
  left: 15px !important;
}

@media screen and (min-width: 768px) {
  .banner_container .swiper-button-prev {
    color: transparent;
    left: 30% !important;
  }
}

.banner_container .swiper-button-prev::after {
  content: url(images/common/arrow_right.png);
  transform: rotate(180deg);
}

.mb-50 {
  margin-bottom: 50px;
}

.news__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.gap-10 {
  gap: 10px;
}

@media screen and (min-width: 37.5em) {
  #info .banner_img {
    width: 100%;
    max-width: 50%;
  }
}

#info .banner_img {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.banner_img {
  transition: all 0.5s;
}

.banner_img:hover {
  opacity: 0.6;
  transition: all 0.5s;
}

.intro__banner_box .banner_img {
  text-align: center;
}

.intro__banner_box {
  margin: 30px 0 0;
}

@media screen and (min-width: 48em) {
  .intro__banner_box {
    margin: 60px 0 50px;
  }
}

.top_swiper-slide02 .slide_container {
  display: flex;
  overflow: hidden;
  width: 300vw;
}

.top_swiper-slide02 .slide-wrapper {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 0 5px;
}

.top_swiper-slide02 .slide-wrapper:first-child {
  -webkit-animation: loop 70s -35s linear infinite;
  animation: loop 70s -35s linear infinite;
  animation-direction: reverse;
}

.top_swiper-slide02 .slide-wrapper:last-child {
  -webkit-animation: loop2 70s linear infinite;
  animation: loop2 70s linear infinite;
  animation-direction: reverse;
}

.top_swiper-slide02 .slide {
  width: 25%;
}

.top_swiper-slide02 .slide img {
  width: 100%;
  max-width: 100%;
}

@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

#period01 {
  margin-top: -120px;
  padding-top: 120px;
}

/* 241114 */
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.faq_linkbox {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 50px;
  position: relative;
  z-index: 1;
}

.faq_linkbox {
  display: grid;
}

.faq_linkbox li {
  margin: 10px 0 5px;
}

.faq_linkbox a {
  font-size: 16px;
  border-bottom: 1px solid #000;
  display: inline-flex;
  align-items: center;
}

.faq_linkbox a .fa-angle-right {
  font-size: 10px;
  margin-left: 5px;
}

.faq_linkbox a span {
  font-family: "Cormorant Infant", serif;
  font-size: 16px;
  margin-right: 5px;
}

.faq_linkwrap {
  padding-top: 120px;
  margin-top: -120px;
}

@media screen and (min-width: 1280px) {
  .header__nav li.has-child ul.fap__nav {
    width: 250px;
  }
}

/* 241202 */
.access_banner a:hover {
  opacity: 0.6;
}

.access_banner {
  margin-top: 60px;
  padding: 0;
}

@media screen and (min-width: 48em) {
  .access_banner {
    margin-top: 60px;
    padding: 0 60px;
  }
}

.access_banner img {
  width: 100%;
}

/* 241209 */
@media screen and (min-width: 1100px) {
  .faq-flex {
    display: flex;
  }

  .container_faq_box {
    width: 95%;
  }

  .container_faq_box a {
    width: 500px;
  }
}

.container_faq_box {
  background-color: #f3f3f3;
  box-shadow: 0px 5px 24px 0px rgba(51, 51, 51, 0.14);
  padding: 40px 20px;
}

.container_faq_box .title_02 {
  font-size: 25px;
  border-bottom: none;
  text-align: center;
  margin-bottom: 18px;
}

.container_faq_box .title_02:after {
  content: "";
  background-color: #d4c189;
  width: 45px;
  height: 2px;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.faq_01,
.faq_02,
.faq_03,
.faq_04,
.faq_05,
.faq_06 {
  margin-bottom: 40px;
}

/* 250219追加 */
ol.num-list {
  list-style-type: decimal;
  list-style-position: inside;
}
ul.list-base {
  list-style-type: disc;
  list-style-position: inside;
}

table.table-base {
  width: 100%;
  table-layout: fixed;
}
table.table-base th,
table.table-base td {
  border-bottom: 1px solid #9e9e9e;
  padding: 15px;
}
table.table-base th {
  width: 20%;
}
table.table-base.recruit-form sup {
  color: #b30000;
  font-size: 0.7em;
}
table.recruit-form button,
table.recruit-form input[type="text"],
table.recruit-form input[type="tel"],
table.recruit-form input[type="email"],
table.recruit-form select,
table.recruit-form textarea {
  border: 1px solid #9e9e9e;
  background: #e6e6e6;
  padding: 5px 10px;
  max-width: 100%;
}
table.recruit-form input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table.recruit-form input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}
input[type="submit"].wpcf7-submit {
  border: 1px solid #9e9e9e;
  background: #676767;
  color: #fff;
  font-size: 1.3em;
  padding: 6px 20px;
  display: block;
  margin: 40px auto 0;
}
@media screen and (max-width: 37.5em) {
  table.table-base th,
  table.table-base td {
    width: 100%;
    display: block;
  }
  table.table-base th {
    background: #c6c6c6;
  }
}

.nonrec {
  border: 5px double #b90000;
  margin-bottom: 60px;
  padding: 30px;
}
.nonrec p {
  text-align: center;
  color: #b90000;
  font-weight: bold;
  font-size: 1.2em;
}

/* 250414追加 */
.list-inline {
  display: table;
  width: 100%;
  margin-bottom: 3rem;
}
.list-inline li {
  display: table-cell;
  width: 33.333333%;
}
.list-inline li a {
  width: 98%;
  margin: auto;
}
@media screen and (min-width: 37.5em) {
  .list-inline li .button-basic {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .list-inline li .button-basic {
    font-size: 12px !important;
    padding: 20px 10px !important;
  }
}
.img-case {
  text-align: center;
  margin-bottom: 2rem;
}
.table-case {
  width: 100%;
}
.table-case th,
.table-case td {
  padding: 0.5rem 1rem;
}
.table-case th {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #d4c189;
  white-space: nowrap;
  vertical-align: middle;
}
.table-case td {
  border: 1px solid #d4c189;
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 575.98px) {
  .table-case th,
  .table-case td {
    display: block;
  }
}
.f-bold {
  font-weight: bold;
}

/* 251007 add top-case */
.top-case {
  margin-top: 140px;
}
.top-case__title {
  font-size: clamp(1.625rem, 1.341rem + 1.42vw, 2.25rem);
  /* val 26px 36px view 320px 1024px */
  position: relative;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: end;
  margin-bottom: 30px;
}
.top-case__title span {
  grid-area: 1/1;
  padding-bottom: 11%;
  text-align: center;
}
.top-case__title::before {
  grid-area: 1/1;
  content: "Case";
  font-family: "Cormorant Infant", serif;
  color: rgba(247, 248, 247, 0.04);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.04em;
  font-size: clamp(8.5rem, 1.738rem + 14.43vw, 14rem);
}
.top-case__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px min(calc(30 / 1500 * 100vw), 30px);
}

@media (min-width: calc(768em/16)) {
  .top-case__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.top-case__link .img {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: #f3f3f3;
  padding: 30px;
}
.top-case__link {
  font-size: 14px;
  text-align: center;
}
.top-case__link .title,
.top-case__link p {
  color: #fff;
}
.top-case__link:hover .img {
  background-color: #d4c189;
}
.top-case__link img {
  transition: filter var(--duration--m);
}

.top-case__link:hover img {
  filter: invert(100%) brightness(1.5);
}

.top-case__link .title {
  font-size: 21px;
  margin-top: 25px;
}

/* 251127 add */
.box-basic {
  background-color: #f3f3f3;
  padding: 30px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.box-basic + .box-basic {
  margin-top: 60px;
}
@media screen and (min-width: 37.5em) {
  .box-basic {
    padding: 40px;
  }
}

@media screen and (min-width: 48em) {
  .box-basic {
    padding: 50px 60px;
  }
}
