@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;700&family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;700&family=Roboto:wght@400;700;900&display=swap');

/*base*/

:root {
  /* color */
  --black: #333;
  --white: #fff;
  --blue: #303f9f;
  --blue-100: rgb(243, 249, 255);
  --blue-300: rgb(206, 211, 255);
  --blue-500: rgb(92, 109, 255);

  --color-primary: var(--blue);
  --text-color: var(--black);

  /*fonts*/
  --domine: 'Domine', serif;
  --lato: 'Lato', sans-serif;
  --notosans: 'Noto Sans JP', sans-serif;
  --notoserif: 'Noto Serif JP', serif;
  --roboto: 'Roboto', sans-serif;
}

/* Box sizing rules */

*,
*::before,
*::after {
  box-sizing: border-box;
  /*outline: 2px solid lime; //use debug */
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */

html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
  max-width: 100%;
  display: block;
}

img {
  vertical-align: middle;
  font-style: italic;
  color: #999;
  text-align: center;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.7rem;
}

@media (min-width: 600px) {
  html {
    scroll-padding-top: 8rem;
  }
}

@media (min-width: 1024px) {
  html {
    scroll-padding-top: 9.4rem;
  }
}

body {
  background-color: var(--white);
  color: var(--text-color);
  margin: 0;
  font-family: sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
  /*-webkit-font-smoothing: antialiased; */
  /*-moz-osx-font-smoothing: grayscale; */
  min-width: 32rem;
  min-height: 100vh;
}

@media (max-width: 599.98px) {
  body {
    font-size: 1.2rem;
  }
}

a {
  color: inherit;
}

@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}

a:not([class]) {
  text-decoration: none;
}

a.text-link {
  color: #007cff;
}

.container {
  max-width: 192rem;
  padding-inline: 2em;
}

@media (max-width: 320px) {
  .container {
    padding-inline: 1em;
  }
}

@media (min-width: 600px) {
  .container {
    padding-inline: 2em;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 3em;
  }
}

nav ol,
nav ul {
  margin: 0;
  padding: 0;
}

.sec-heading {
}

.ttl-section {
  text-align: center;
  font-size: 2.8rem;
  font-family: var(--notosans);
  font-weight: 700;
  color: var(--color-primary);
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E")
    no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */

:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */

:where([type='color' i], [type='range' i]) {
  border-width: 0;
  padding: 0;
}

@media (max-width: 320px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (max-width: 599.98px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 600px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .hidden-xl {
    display: none !important;
  }
}

.header {
  background-color: rgba(255, 255, 255, 1);
  position: sticky;
  top: 0;
  z-index: 1;
}

.header .container {
  padding-inline: 2rem;
}

.header .tel a {
  background-color: var(--blue-300);
  font-family: var(--lato);
  font-size: 2rem;
  text-align: center;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0.2em 0.5em;
  transition: 0.4s ease;
}

@media (max-width: 599.98px) {
  .header .tel a {
    background-color: rgb(243, 249, 255);
    border-radius: 0.3rem;
    font-size: 1.6rem;
  }
}

.header .tel a:hover {
  background-color: var(--blue-500);
  color: var(--white);
}

.header .tel a:hover .icon {
  color: var(--white);
}

.header .tel .icon {
  font-size: 2.4rem;
  margin-right: 0.5em;
  color: var(--color-primary);
  transition: 0.4s ease;
}

@media (max-width: 599.98px) {
  .header .tel .icon {
    font-size: 1.8rem;
  }
}

.header .hour {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  margin-top: 0.3em;
}

@media (max-width: 599.98px) {
  .header .hour {
    font-size: 1rem;
  }
}

.header .nav-global {
  flex: 1 1;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 599.98px) {
  .header .nav-global {
    display: none;
  }
}

.header .list-nav-global {
  font-family: var(--notosans);
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 0.5em;
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  .header .list-nav-global {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header .list-nav-global {
    gap: 0.6em 1.2em;
  }
}

@media (min-width: 1280px) {
  .header .list-nav-global {
    -moz-column-gap: 2em;
    column-gap: 2em;
  }
}

.header .list-nav-global li {
  font-size: 1.2rem;
}

@media (min-width: 1024px) {
  .header .list-nav-global li {
    font-size: 1.3rem;
  }
}

@media (min-width: 1280px) {
  .header .list-nav-global li {
    font-size: 1.5rem;
  }
}

.header .list-nav-global a {
  display: block;
  position: relative;
}

.header .list-nav-global a::after {
  transform-origin: center left;
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0, 0.7, 0.22, 1);
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  left: 0;
  bottom: -3px;
  transform: scale(0, 1);
}

.header .list-nav-global a:hover::after {
  transform: scale(1, 1);
}

@media (max-width: 599.98px) {
  .header .logo {
    width: 15.7rem;
  }
}

.header .logo img {
  mix-blend-mode: multiply;
}

.header .logo a {
  display: inline-flex;
  width: 18.6rem;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 599.98px) {
  .header .logo a {
    width: 100%;
  }
}

.header .logo a::after {
  transform-origin: center left;
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0, 0.7, 0.22, 1);
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  left: 0;
  bottom: -5px;
  transform: scale(0, 1);
}

.header .logo a:hover::after {
  transform: scale(1, 1);
}

.footer {
  background-color: #eee;
}

.footer .container {
  padding: 6.4rem 4rem;
}

.footer .list-nav-footer {
  font-family: var(--notosans);
  line-height: 1.3;
}

@media (min-width: 1051px) {
  .footer .list-nav-footer {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
}

@media (max-width: 1050px) {
  .footer .list-nav-footer li {
    margin-bottom: 2.4rem;
  }
}

@media (min-width: 1051px) {
  .footer .list-nav-footer a {
    display: block;
    position: relative;
  }
  .footer .list-nav-footer a::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #555;
    transform: scale(0, 1);
    opacity: 0;
    transform-origin: center left;
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0, 0.7, 0.22, 1);
  }
  .footer .list-nav-footer a:hover::after {
    transform: scale(1, 1);
    opacity: 1;
  }
}

.footer .list-nav-footer .home {
  font-weight: 500;
  font-size: 1.6rem;
  margin-right: 0.5em;
}

.footer .list-sns-footer {
  display: flex;
  gap: 1em;
  line-height: 1;
}

.footer .list-sns-footer li {
}

.footer .list-sns-footer a {
  display: block;
  padding: 1em;
}

@media (min-width: 1051px) {
  .footer .list-sns-footer a {
    position: relative;
  }
  .footer .list-sns-footer a::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #555;
    transform: scale(0, 1);
    transform-origin: center left;
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0, 0.7, 0.22, 1);
  }
  .footer .list-sns-footer a:hover::after {
    transform: scale(1, 1);
  }
}

.footer .list-sns-footer .icon {
  font-size: 2rem;
}

.footer .copyright {
  font-family: var(--notosans);
  font-size: 1rem;
  margin-top: 1em;
}

@media (max-width: 1050px) {
  .footer .copyright {
    margin-top: 3.2rem;
  }
}

/*layout*/

.lay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.7rem;
  gap: 1rem;
}

@media (min-width: 600px) {
  .lay-header {
    justify-content: flex-end;
    height: 8rem;
  }
}

@media (min-width: 1024px) {
  .lay-header {
    height: 9.4rem;
    gap: 2rem;
  }
}

.lay-contact-header {
  text-align: center;
}

@media (max-width: 599.98px) {
  .lay-contact-header {
    order: 1;
  }
}

.lay-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .lay-footer {
    display: block;
  }
}

/*components*/

.btn {
  line-height: 1.3;
  color: var(--white);
  background-color: var(--color-primary);
  padding: 0.9em 1.5em;
  transition: 0.5s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  text-decoration: none;
  border: 1px solid var(--color-primary);
  font-family: var(--notosans);
  font-weight: 700;
  box-shadow: 0 0 2.4rem rgba(221, 221, 221, 0.25);
}

.btn:hover {
  background-color: var(--blue-500);
}

.btn.btn-primary {
}

.btn.with-icon {
  position: relative;
}

.btn.with-icon .icon {
  position: absolute;
  left: 1em;
}

.btn-secondary {
  background-color: var(--blue-100);
  border-width: 3px;
  color: var(--color-primary);
}

.btn-secondary:hover {
  color: var(--white);
}

.btn-more {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 0.2rem solid;
  padding: 0.6em;
  border-radius: 100vw;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
}

.btn-more:hover,
.btn-more:focus {
  color: var(--white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-more:hover::after,
.btn-more:focus::after {
  background-color: var(--white);
}

.btn-more::after {
  position: absolute;
  right: 1em;
  content: '';
  width: 0.85rem;
  height: 1.17rem;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: 0.4s ease;
}

.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  width: 6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  place-items: center;
  color: #555;
  cursor: pointer;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  background-color: rgb(243, 249, 255);
  transition: 0.5s;
}

.hamburger .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.hamburger .fa-bars {
  font-size: 1.6rem;
  opacity: 1;
}

.hamburger .material-symbols-outlined {
  font-size: 2.4rem;
  opacity: 0;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger.is-active {
  background-color: #eee;
}

.hamburger.is-active:hover {
  /*background-color: #555; */
  /*color: var(--white); */
}

.hamburger.is-active .fa-bars {
  opacity: 0;
}

.hamburger.is-active .material-symbols-outlined {
  opacity: 1;
}

.menu-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s ease;
}

.menu-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.menu-modal.is-active .lay-menu-modal {
  opacity: 1;
  transform: translateX(0);
}

.menu-modal .container {
  padding: 6.4rem 4.8rem;
  height: 100%;
  display: grid;
  align-items: center;
}

.menu-modal .lay-menu-modal {
  display: grid;
  gap: 4rem;

  transition: 0.7s ease;
  transform: translateX(0.5em);
  opacity: 0;
}

@media (min-width: 1024px) {
  .menu-modal .lay-menu-modal {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu-modal .nav-modal {
  font-family: var(--notosans);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
}

.menu-modal .list-nav-modal {
  display: grid;
  gap: 2.4rem;
}

.menu-modal .nav-sns {
}

.menu-modal .list-sns-modal a {
  width: 5.6rem;
  aspect-ratio: 1;
  background-color: #eee;
  display: grid;
  place-content: center;
  transition: 0.5s;
}

.menu-modal .list-sns-modal a:hover {
  background-color: #ddd;
}

.menu-modal .list-sns-modal .icon {
  font-size: 2rem;
}

.menu-modal .fig-logo-menu {
  width: 14rem;
}

.breadcrumb {
  margin-top: 0.6em;
}

.breadcrumb .list-breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.4rem;
}

.breadcrumb .list-breadcrumb li + * {
  position: relative;
}

.breadcrumb .list-breadcrumb li + *::before {
  content: '/';
  margin-inline: 0.5em;
}

@media (max-width: 599.98px) {
  .breadcrumb {
    display: none;
  }
}

.home .breadcrumb {
  display: none;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 1;
  visibility: visible;
  z-index: 10000;
  transition: 0.8s;
}

.loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.page-header {
  background-color: #888;
  color: var(--white);
  text-align: center;
  display: grid;
  place-items: center;
  height: 35rem;
  position: relative;
  z-index: 0;
}

.page-header::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background-size: cover;
  background-position: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 599.98px) {
  .page-header {
    height: 20rem;
  }
}

.ttl-page-header {
  font-family: var(--notosans);
  line-height: 1.4;
  font-weight: 700;
}

/*home*/

section.main-visual {
  background-image: url('../img/home/s-2400x1350_v-frms_webp_79f2f7ce-f1ae-41d7-bced-54de336e5f64.webp');
  background-size: cover;
  background-position: 50%;
}

section.main-visual .container {
  padding-block: 5rem;
  height: -moz-max-content;
  height: max-content;
}

@media (max-width: 599.98px) {
  section.main-visual .container {
    padding: 3rem 1em;
  }
}

@media (min-width: 1024px) {
  section.main-visual .container {
    height: 78.2rem;
  }
}

section.main-visual .logo-main-visual img {
  width: 23.6rem;
}

@media (max-width: 599.98px) {
  section.main-visual .logo-main-visual img {
    width: 10.2rem;
  }
}

section.main-visual .ttl-main-visual {
  font-family: var(--notoserif);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 2;
  margin-top: 1em;
  font-size: 2em;
}

@media (max-width: 320px) {
  section.main-visual .ttl-main-visual {
    font-size: 1.6em;
  }
}

@media (max-width: 599.98px) {
  section.main-visual .ttl-main-visual {
    letter-spacing: 0;
  }
}

section.main-visual .ttl-main-visual span {
  color: var(--color-primary);
}

section.main-visual .txt-main-visual {
  margin-top: 1em;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (max-width: 599.98px) {
  section.main-visual .txt-main-visual {
    letter-spacing: 0;
    font-size: 1.1rem;
  }
}

section.main-visual .txt-main-visual + * {
  margin-top: 2em;
}

section.main-visual .lay-button {
}

section.main-visual .button {
  margin-top: 3rem;
}

@media (max-width: 599.98px) {
  section.main-visual .btn {
    font-size: 1.4rem;
    padding-inline: 2em;
  }
}

section.links .container {
  padding-block: 5rem;
}

section.links .lay-links {
  display: grid;
  gap: 4rem 2rem;
}

section.links .button {
  margin-inline: auto;
}

@media (min-width: 600px) {
  section.links .button {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  section.links .button {
    width: 55rem;
  }
}

section.links .btn {
  font-size: 2.4rem;
  padding-left: 4em;
  width: 100%;
}

@media (min-width: 1024px) {
  section.links .btn {
    font-size: 2.8rem;
  }
}

section.links .btn .icon {
  font-size: 3.2rem;
}

@media (min-width: 1024px) {
  section.links .btn .icon {
    font-size: 3.6rem;
  }
}

section.links .btn-secondary {
  border-width: 4px;
}

@media (max-width: 599.98px) {
  section.links {
    display: none;
  }
}

section.before-after .container {
  padding-block: 5rem;
}

section.before-after .sec-title {
}

section.before-after .sec-body {
  margin-top: 3rem;
}

section.before-after .lay-before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

section.before-after .card {
  flex: 1 1 100%;
  background-color: rgba(48, 63, 159, 0.05);
  padding: 2.4rem;
  border-radius: 0.8rem;
  font-family: var(--notosans);
}

@media (min-width: 600px) {
  section.before-after .card {
    flex: 0 1 calc((100% - (1.6rem * 1)) / 2);
  }
}

@media (min-width: 1280px) {
  section.before-after .card {
    flex-basis: calc((100% - (1.6rem * 2)) / 3);
  }
}

section.before-after .card-heading {
}

section.before-after .card-body {
  margin-top: 1.6rem;
}

section.before-after .fig-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em 1em;
}

@media (min-width: 600px) {
  section.before-after .fig-card {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  section.before-after .fig-card {
    flex-direction: row;
  }
}

section.before-after .fig-card img {
  background-color: #ddd;
  width: 6.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 599.98px) {
  section.before-after .fig-card img {
    width: 5rem;
  }
}

section.before-after .fig-card figcaption {
  font-size: 1.4rem;
}

@media (max-width: 599.98px) {
  section.before-after .fig-card figcaption {
    text-align: center;
  }
}

@media (min-width: 600px) {
  section.before-after .fig-card figcaption {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  section.before-after .fig-card figcaption {
    font-size: 1.8rem;
  }
}

section.before-after .lay-card-body {
  display: flex;
  gap: 1.4rem;
}

section.before-after .before,
section.before-after .after {
  background-color: var(--color-primary);
  color: var(--white);
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
  flex-basis: 50%;
}

section.before-after .before img,
section.before-after .after img {
  aspect-ratio: 4/3;
  background-color: #ddd;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.before-after .before figcaption,
section.before-after .after figcaption {
  font-weight: 700;
  padding-block: 0.4em;
  font-size: 1.4rem;
}

@media (min-width: 600px) {
  section.before-after .before figcaption,
  section.before-after .after figcaption {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  section.before-after .before figcaption,
  section.before-after .after figcaption {
    font-size: 1.6rem;
  }
}

section.before-after .after {
  color: #ffe300;
}

section.before-after .attention {
  margin-top: 1em;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
  font-size: 1.4rem;
}

@media (min-width: 1024px) {
  section.before-after .attention {
    font-size: 1.6rem;
  }
}

section.before-after .attention .icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

section.before-after .txt-right {
  text-align: right;
}

@media (min-width: 600px) {
  section.before-after .txt-right {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  section.before-after .txt-right {
    font-size: 1.4rem;
  }
}

section.before-after .list-card {
  margin-top: 1em;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 600px) {
  section.before-after .list-card {
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  section.before-after .list-card {
    font-size: 1.6rem;
  }
}

section.before-after .list-card li {
  text-indent: -1em;
  padding-left: 1em;
}

section.before-after .list-card li::before {
  content: '・';
}

section.before-after .list-card dt::before {
  content: '・';
}

section.before-after .list-card dd {
  padding-left: 1em;
}

section.feature .container {
  padding-block: 5rem;
  background-image: url('../img/home/photo-1600172454132-ada7faa101cf.jpg');
  background-size: cover;
  background-position: 50%;
}

@media (max-width: 599.98px) {
  section.feature .container {
    margin-top: 2.4rem;
  }
}

@media (min-width: 1280px) {
  section.feature .container {
    max-width: 100%;
  }
}

section.feature .sec-title {
  text-align: center;
  line-height: 1;
}

section.feature .sec-title .wrapper {
  display: inline-block;
  width: 15.3rem;
  height: 5.6rem;
}

@media (min-width: 600px) {
  section.feature .sec-title .wrapper {
    width: 15.2rem;
    height: 11rem;
  }
}

section.feature .sec-title img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

section.feature .sec-heading {
}

section.feature .sec-body {
  font-family: 'Lato', sans-serif;
}

section.feature .list-feature {
  max-width: 58rem;
  margin-inline: auto;
  padding-left: 1em;
}

@media (max-width: 599.98px) {
  section.feature .list-feature {
    font-size: 1.4rem;
  }
}

section.feature .list-feature li {
  padding-left: 0.5em;
}

section.feature .list-feature li + * {
  margin-top: 1em;
}

section.feature .list-feature b {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
}

section.feature .lay-feature {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

@media (min-width: 600px) {
  section.feature .lay-feature {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  section.feature .lay-feature {
    gap: 3rem;
  }
}

section.feature .item-feature {
  max-width: 21.5rem;
}

section.feature .item-feature img {
  border-radius: 1rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.9;
}

section.feature .item-feature figcaption {
  text-align: center;
  margin-top: 0.5em;
}

@media (max-width: 599.98px) {
  section.feature .item-feature figcaption {
    font-size: 1.4rem;
  }
}

section.feature .button {
  text-align: center;
  margin-top: 3em;
}

section.feature .button .btn {
  padding: 1em 2em;
}

@media (max-width: 599.98px) {
  section.feature .button .btn {
    font-size: 1.4rem;
  }
}

section.medical .container {
  padding-block: 4rem;
}

@media (min-width: 600px) {
  section.medical .container {
    padding-block: 6rem;
  }
}

section.medical .sec-title {
  color: var(--color-primary);
  text-align: center;
  font-family: var(--notosans);
  font-weight: 700;
  font-size: 2.8rem;
}

section.medical .txt-medical {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2em;
}

@media (min-width: 600px) {
  section.medical .txt-medical {
    font-size: 2rem;
  }
}

section.medical .item-medical {
  font-family: 'Lato', sans-serif;
  max-width: 58.4rem;
  margin-inline: auto;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  section.medical .item-medical {
    max-width: 47.6rem;
    margin-top: 5rem;
  }
}

section.medical .item-medical .heading {
  background-color: rgb(225, 227, 246);
  text-align: center;
  padding: 0.4em;
  border-radius: 0.8rem;
  font-size: 1.5rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .heading {
    font-size: 2rem;
    padding: 0.5em;
  }
}

section.medical .item-medical .heading .icon {
  margin-right: 0.2em;
  font-size: 1.6rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .heading .icon {
    font-size: 2.4rem;
  }
}

section.medical .item-medical .body {
  margin-top: 1rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .body {
    margin-top: 2rem;
  }
}

section.medical .item-medical .lay-body {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .lay-body {
    gap: 2rem;
  }
}

section.medical .item-medical .item-medicine {
  background-color: #eee;
  padding: 2em 0;
  border-radius: 0.8rem;
  flex-basis: 50%;
  text-align: center;
}

section.medical .item-medical .fig-medicine img {
  display: inline-block;
  width: 8.3rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .fig-medicine img {
    width: 8.8rem;
  }
}

section.medical .item-medical .fig-medicine figcaption {
  font-size: 1.2rem;
  margin-top: 1em;
}

@media (min-width: 600px) {
  section.medical .item-medical .fig-medicine figcaption {
    font-size: 1.5rem;
  }
}

section.medical .item-medical .foot {
  text-align: center;
  margin-top: 1em;
}

section.medical .item-medical .foot + .button {
  text-align: center;
}

section.medical .item-medical .txt-price {
  font-size: 1.3rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .txt-price {
    font-size: 2rem;
  }
}

section.medical .item-medical .txt-price .num {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

section.medical .item-medical .txt-tax {
  font-size: 1rem;
}

@media (min-width: 600px) {
  section.medical .item-medical .txt-tax {
    font-size: 1.3rem;
  }
}

section.medical .bg {
  background-image: url('../img/home/s-2400x1400_v-frms_webp_b8b0457d-39e4-4f73-bf4d-2ae2485faba8.webp');
  background-size: cover;
  background-position: 50%;
}

section.medical .bg .container {
  padding-block: 3rem;
}

@media (min-width: 600px) {
  section.medical .bg .container {
    padding-block: 7rem;
  }
}

@media (min-width: 1024px) {
  section.medical .bg .container {
    padding-block: 11rem;
  }
}

section.medical .ttl-dont {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--notosans);
}

@media (min-width: 600px) {
  section.medical .ttl-dont {
    font-size: 2.8rem;
  }
}

section.medical .list-medical {
  padding-left: 0;
  list-style: none;
  margin-top: 2em;
}

section.medical .list-medical li {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

@media (min-width: 600px) {
  section.medical .list-medical li {
    font-size: 2rem;
  }
}

section.medical .list-medical li + * {
  margin-top: 1em;
}

section.medical .list-medical .icon {
  color: var(--color-primary);
  font-size: 2.4rem;
  flex-shrink: 0;
}

section.medical .button {
  margin-top: 2em;
}

section.medical .button .btn {
  padding: 1em 1.6em;
  font-size: 1.4rem;
}

@media (min-width: 600px) {
  section.medical .button .btn {
    font-size: 1.6rem;
  }
}

section.information .container {
  max-width: 120rem;
  margin-inline: auto;
  padding-block: 4rem;
}

@media (min-width: 600px) {
  section.information .container {
    padding-block: 6rem;
  }
}

section.information .lay-information {
  display: flex;
  margin-top: 3rem;
  background-color: #eee;
}

section.information .col-txt {
  padding: 2em 1.5em;
  flex-basis: 75%;
}

@media (min-width: 600px) {
  section.information .col-txt {
    padding: 2.5em 2em;
  }
}

@media (min-width: 1024px) {
  section.information .col-txt {
    flex-basis: 50%;
  }
}

section.information .col-pic {
  flex: 1 1 50%;
}

section.information .sec-title {
  color: var(--color-primary);
  font-family: var(--notosans);
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  section.information .sec-title {
    font-size: 2.8rem;
  }
}

section.information .list-information {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
}

@media (min-width: 600px) {
  section.information .list-information {
    font-size: 2.4rem;
  }
}

section.information .list-information .row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

section.information .list-information dt {
  font-weight: 700;
  flex-shrink: 0;
  color: var(--color-primary);
}

section.information .list-information dd {
  white-space: nowrap;
}

section.information .txt-information {
  margin-top: 1em;
}

@media (max-width: 599.98px) {
  section.information .txt-information {
    font-size: 1.1rem;
  }
}

section.information .fig-information {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

section.information .fig-information img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.contact .container {
  max-width: 120rem;
  margin-inline: auto;
  padding-block: 4rem;
}

@media (min-width: 600px) {
  section.contact .container {
    padding-block: 6rem;
  }
}

section.contact .sec-title {
  color: var(--color-primary);
  font-family: var(--notosans);
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  section.contact .sec-title {
    font-size: 2.8rem;
  }
}

section.contact .lay-contact {
  margin-top: 3rem;
  background-color: #eee;
}

@media (min-width: 600px) {
  section.contact .lay-contact {
    display: flex;
  }
}

section.contact .col-txt {
  padding: 2em 1.5em;
}

@media (max-width: 599.98px) {
  section.contact .col-txt {
    text-align: center;
  }
}

@media (min-width: 600px) {
  section.contact .col-txt {
    padding: 2.5em 2em;
    flex-basis: 50%;
  }
}

@media (min-width: 600px) {
  section.contact .col-pic {
    flex: 1 1 50%;
  }
}

section.contact .fig-contact {
  width: 100%;
  height: 100%;
}

@media (max-width: 599.98px) {
  section.contact .fig-contact {
    height: 27rem;
  }
}

section.contact .fig-contact img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 599.98px) {
  section.contact .fig-contact img {
    -o-object-position: 50% 40%;
    object-position: 50% 40%;
  }
}

section.contact .ttl-contact {
  margin-top: 2em;
  font-size: 1.6rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  section.contact .ttl-contact {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  section.contact .ttl-contact {
    font-size: 2rem;
  }
}

section.contact .txt-contact-lg {
  font-size: 1.4rem;
}

@media (min-width: 600px) {
  section.contact .txt-contact-lg {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  section.contact .txt-contact-lg {
    font-size: 2rem;
  }
}

section.contact .txt-contact-lg b {
  color: var(--color-primary);
  font-weight: 700;
}

section.contact .txt-contact {
  margin-top: 0.5em;
}

@media (max-width: 599.98px) {
  section.contact .txt-contact {
    font-size: 1.4rem;
  }
}

@media (min-width: 600px) {
}

section.contact .txt-tel {
  color: var(--color-primary);
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 0.3em;
}

@media (min-width: 600px) {
  section.contact .txt-tel {
    font-size: 3.2rem;
  }
}

section.contact .txt-tel .icon {
  margin-right: 0.3em;
}

section.contact .button {
  margin-top: 2em;
}

@media (max-width: 599.98px) {
  section.contact .button .btn {
    font-size: 1.4rem;
    padding-block: 1em;
  }
}

section.recruit {
  background-color: rgb(243, 249, 255);
}

section.recruit .container {
  max-width: 120rem;
  margin-inline: auto;
  padding-block: 4rem;
}

@media (min-width: 600px) {
  section.recruit .container {
    padding-block: 6rem;
  }
}

section.recruit .ttl-recruit {
  font-family: var(--notosans);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

@media (min-width: 600px) {
}

section.recruit .ttl-recruit span {
  background-color: #eee;
  display: inline-block;
  padding: 0.2em 1.5em 0.3em;
}

section.recruit .txt-recruit {
  font-family: 'Lato', sans-serif;
  margin-top: 2em;
  text-align: center;
  line-height: 2;
}

@media (max-width: 599.98px) {
  section.recruit .txt-recruit {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

section.recruit .txt-recruit b {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 599.98px) {
  section.recruit .txt-recruit b {
    font-size: 1.6rem;
  }
}

section.recruit .button {
  margin-top: 2em;
  text-align: center;
}

section.recruit .button .btn {
  font-size: 2.8rem;
  padding-block: 0.7em;
}

@media (max-width: 599.98px) {
  section.recruit .button .btn {
    font-size: 1.4rem;
    padding-block: 1em;
  }
}

@media (min-width: 600px) {
  section.recruit .button .btn {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  section.recruit .button .btn {
    width: 53rem;
  }
}

section.access {
  background-color: #f7f7f7;
}

section.access .container {
  padding-block: 4rem 0;
}

@media (min-width: 1024px) {
  section.access .container {
    padding-block: 8rem;
  }
}

section.access .lay-access {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  section.access .lay-access {
    flex-direction: row;
  }
}

section.access .col-txt {
  font-family: 'Lato', sans-serif;
}

@media (min-width: 1024px) {
  section.access .col-txt {
    flex: 1 1 max-content;
  }
}

@media (max-width: 599.98px) {
  section.access .map {
    margin-top: 2em;
    height: 20rem;
    margin-left: -2em;
    margin-right: -2em;
  }
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  section.access .map {
    height: 50rem;
    margin-left: -2em;
    margin-right: -2em;
  }
}

@media (min-width: 1024px) {
  section.access .map {
    flex-basis: 48%;
    margin-top: 0;
  }
}

@media (min-width: 600px) {
  section.access .ttl-access {
    text-align: center;
  }
}

section.access .fig-access {
  display: inline-block;
  width: 18.2rem;
}

@media (min-width: 600px) {
  section.access .fig-access {
    width: 26.5rem;
  }
}

section.access .fig-access img {
  mix-blend-mode: multiply;
}

section.access .list-access {
  font-size: 1.4rem;
  margin-top: 1.6em;
}

@media (min-width: 600px) {
  section.access .list-access {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  section.access .list-access {
    font-size: 1.8rem;
  }
}

@media (min-width: 1280px) {
  section.access .list-access {
    font-size: 2rem;
  }
}

section.access .list-access .row {
  display: flex;
  gap: 1em;
}

section.access .list-access .row + * {
  margin-top: 0.5em;
}

section.access .list-access dt {
  font-weight: 700;
  flex-basis: 3em;
  flex-shrink: 0;
}

section.access .list-access dt.wide {
  flex-basis: 5em;
}

section.access .list-access dd {
}

section.access .txt-tel {
  color: var(--color-primary);
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 0.3em;
}

@media (min-width: 600px) {
  section.access .txt-tel {
    font-size: 3.8rem;
  }
}

@media (min-width: 1024px) {
  section.access .txt-tel {
    font-size: 4.2rem;
  }
}

@media (min-width: 1280px) {
  section.access .txt-tel {
    font-size: 4.8rem;
  }
}

section.access .txt-tel .icon {
  margin-right: 0.3em;
}

section.access .map-container {
  width: 100%;
  height: 100%;
}

section.access .map-container iframe {
  height: 100%;
}

/* 追加 240522*/

section.accel-japan {
  background-color: #fff;
}

section.accel-japan .container {
  padding: 0 0 4rem;
  padding-inline: 24px;
}

section.accel-japan a {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

section.accel-japan .fig-contact img {
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  section.accel-japan .container {
    padding: 2rem 0 6rem;
    padding-inline: 32px;
  }
}

/*sub page*/

body.sub-page {
}

.main-contents {
  font-family: 'Lato', sans-serif;
  padding-block: 4rem;
}

.main-contents .container {
  padding-block: 4rem;
  max-width: 120rem;
  margin-inline: auto;
}

@media (min-width: 600px) {
  .main-contents .container {
    padding-block: 8rem;
  }
}

.section-heading {
  text-align: center;
  line-height: 1.5;
  font-size: 3.2rem;
  font-weight: 700;
}

@media (max-width: 599.98px) {
  .section-heading {
    font-size: 2.8rem;
  }
}

.section-heading .ja {
  color: var(--color-primary);
}

.section-heading .en {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-top: 0.2em;
}

body.qanda .page-header::after {
  background-image: url('../img/qanda/photo-1607236083122-583e96ea5aac.jpg');
  filter: brightness(0.5);
}

body.qanda .about-aga,
body.qanda .about-delivery,
body.qanda .about-side-effects {
  background-color: rgb(243, 249, 255);
}

body.qanda .section-contents {
  margin-top: 3rem;
}

@media (min-width: 600px) {
  body.qanda .section-contents {
    margin-top: 6rem;
    padding-inline: 3rem;
  }
}

body.qanda .list-qanda dt {
  color: var(--color-primary);
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: 1px solid;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding-inline: 0.8em;
}

@media (min-width: 600px) {
  body.qanda .list-qanda dt {
    font-size: 2rem;
  }
}

body.qanda .list-qanda dt::before {
  line-height: 1;
  content: 'Q';
  font-family: var(--notoserif);
  font-size: 2rem;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  body.qanda .list-qanda dt::before {
    font-size: 4rem;
  }
}

body.qanda .list-qanda dd {
  margin-top: 1em;
  padding-inline: 0.8em;
}

body.qanda .list-qanda dd + * {
  margin-top: 1em;
}

body.qanda .list-qanda + * {
  margin-top: 3em;
}

@media (min-width: 600px) {
}

body.qanda .list-qanda b {
  font-family: 'Roboto', sans-serif;
  color: var(--color-primary);
  font-weight: 900;
}

body:where(.feature) .main-contents {
  line-height: 1.8;
}

@media (max-width: 320px) {
  body:where(.feature) .main-contents {
    font-size: 1.4rem;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .main-contents {
    line-height: 2;
    font-size: 1.8rem;
  }
}

body:where(.feature) .main-contents .button {
  margin-top: 2.5em;
  text-align: center;
}

body:where(.feature) .main-contents .button .btn-more {
  line-height: 1.5;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-inline: 5em;
  font-size: 1.8rem;
}

body:where(.feature) .main-contents .button .btn-more::after {
  content: none;
}

body:where(.feature) .page-header::after {
  background-image: url('../img/feature/main-visual.jpg');
  filter: brightness(0.5);
}

body:where(.feature) .section-contents {
  margin-top: 9rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .section-contents {
    margin-top: 5rem;
  }
}

body:where(.feature) .lay-policy {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 6rem 4rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-policy {
    grid-template-columns: 1fr;
  }
}

body:where(.feature) .item-policy {
  flex: 1 1 100%;
}

@media (min-width: 600px) {
  body:where(.feature) .item-policy {
    flex-basis: calc((100% - 5rem) / 2);
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .item-policy {
    flex-basis: calc((100% - 8rem) / 3);
  }
}

body:where(.feature) .circle {
  text-align: center;
  display: grid;
  place-content: center;
  width: 24rem;
  aspect-ratio: 1;
  background-color: #ddd;
  border-radius: 50%;
  margin-inline: auto;
  line-height: 1.3;
  font-size: 2.8rem;
  background-size: cover;
  background-position: 50%;
  font-weight: 900;
}

@media (max-width: 320px) {
  body:where(.feature) .circle {
    width: 22rem;
    font-size: 2.2rem;
  }
}

body:where(.feature) .circle .top {
  margin-top: 0.3em;
}

body:where(.feature) .circle .bottom {
  color: var(--color-primary);
  font-size: 4.4rem;
  line-height: 1.2;
  margin-top: 0.1em;
}

@media (max-width: 320px) {
  body:where(.feature) .circle .bottom {
    font-size: 4rem;
  }
}

body:where(.feature) .bg1 {
  background-image: url('../img/feature/photo-1588345921523-c2dcdb7f1dcd.jpg');
}

body:where(.feature) .bg2 {
  background-image: url('../img/feature/photo-1517816743773-6e0fd518b4a6.jpg');
}

body:where(.feature) .bg3 {
  background-image: url('../img/feature/photo-1558591710-4b4a1ae0f04d.jpg');
}

body:where(.feature) .ttl-item-policy {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2em;
  border-block: 2px solid;
  padding-block: 0.7em;
  line-height: 1.6;
}

body:where(.feature) .text-contents {
  margin-top: 1em;
  min-height: -moz-max-content;
  min-height: max-content;
}

body:where(.feature) .txt-policy {
  font-size: 1.4rem;
}

body:where(.feature) .txt-policy + * {
  margin-top: 0.6em;
}

body:where(.feature) .txt-policy b {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.8rem;
}

body:where(.feature) .lay-feature {
  display: grid;
  gap: 4rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-feature {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  body:where(.feature) .lay-feature {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .lay-feature {
    padding-inline: 3em;
    gap: 5rem;
    grid-template-columns: 1fr calc(52.2rem / 2);
  }
}

@media (min-width: 1280px) {
  body:where(.feature) .lay-feature {
    padding-inline: 3em 7em;
  }
}

body:where(.feature) .txt-feature {
  margin-top: 0.5em;
}

@media (max-width: 599.98px) {
  body:where(.feature) .txt-feature {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .txt-feature {
    font-size: 1.4rem;
  }
}

body:where(.feature) .ttl-fig-feature {
  font-size: 2.2rem;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid;
  line-height: 1;
  padding: 0.3em 1.2em;
  margin-inline: auto;
  border-radius: 0.4rem;
}

@media (max-width: 320px) {
  body:where(.feature) .ttl-fig-feature {
    font-size: 1.8rem;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .ttl-fig-feature {
    display: none;
  }
}

body:where(.feature) .fig-feature {
  position: relative;
}

@media (max-width: 599.98px) {
  body:where(.feature) .fig-feature {
    width: calc(46.6rem / 2);
    margin-inline: auto;
    margin-top: 1em;
  }
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  body:where(.feature) .fig-feature {
    width: calc(52.2rem / 2);
    margin-inline: auto;
  }
}

body:where(.feature) .fig-feature figcaption {
  position: absolute;
  bottom: -0.5em;
  right: 0;
  color: #b1b1b1;
  font-size: 1.2rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .fig-feature figcaption {
    right: -2em;
  }
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  body:where(.feature) .fig-feature figcaption {
    right: -2em;
  }
}

body:where(.feature) .lay-before-after {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-before-after {
    grid-template-columns: 1fr;
  }
}

body:where(.feature) .ttl-contents {
  color: var(--color-primary);
  font-size: 2.8rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .ttl-contents {
    font-size: 2.4rem;
    text-align: center;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .ttl-contents {
    font-size: 2rem;
  }
}

body:where(.feature) .card {
  flex: 1 1 100%;
  background-color: rgb(243, 249, 255);
  padding: 2.4rem;
  border-radius: 0.8rem;
  font-family: var(--notosans);
  line-height: 1.7;
}

@media (min-width: 600px) {
  body:where(.feature) .card {
    flex: 0 1 calc((100% - (2rem * 1)) / 2);
  }
}

@media (min-width: 1280px) {
  body:where(.feature) .card {
    flex-basis: calc((100% - (3rem * 2)) / 3);
  }
}

body:where(.feature) .card-body {
  margin-top: 1.6rem;
}

body:where(.feature) .fig-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em 1em;
}

@media (min-width: 600px) {
  body:where(.feature) .fig-card {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .fig-card {
    flex-direction: row;
  }
}

body:where(.feature) .fig-card img {
  background-color: #ddd;
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 599.98px) {
  body:where(.feature) .fig-card img {
    width: 5rem;
  }
}

body:where(.feature) .fig-card figcaption {
  font-size: 1.6rem;
}

body:where(.feature) .lay-card-body {
  display: flex;
  gap: 1.4rem;
}

body:where(.feature) .before,
body:where(.feature) .after {
  color: var(--white);
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
  flex-basis: 50%;
  background-color: #cdcdcd;
}

body:where(.feature) .before img,
body:where(.feature) .after img {
  background-color: #ddd;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

body:where(.feature) .before figcaption,
body:where(.feature) .after figcaption {
  font-weight: 700;
  padding-block: 0.2em;
  font-size: 1.4rem;
}

@media (min-width: 600px) {
  body:where(.feature) .before figcaption,
  body:where(.feature) .after figcaption {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .before figcaption,
  body:where(.feature) .after figcaption {
    font-size: 1.6rem;
  }
}

body:where(.feature) .after {
  background-color: var(--color-primary);
  color: #ffe300;
}

body:where(.feature) .attention {
  margin-top: 1em;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
  font-size: 1.4rem;
}

body:where(.feature) .attention .icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

body:where(.feature) .txt-right {
  color: #b1b1b1;
  font-size: 1.2rem;
  text-align: right;
}

body:where(.feature) .list-card {
  margin-top: 1em;
  list-style: none;
  padding-left: 0;
  font-size: 1.4rem;
}

@media (min-width: 600px) {
}

@media (min-width: 1024px) {
}

body:where(.feature) .list-card li {
  text-indent: -1em;
  padding-left: 1em;
}

body:where(.feature) .list-card li::before {
  content: '・';
}

body:where(.feature) .list-card dt::before {
  content: '・';
}

body:where(.feature) .list-card dd {
  padding-left: 1em;
}

body:where(.feature) dl:where(.list-card) {
  color: #b1b1b1;
}

body:where(.feature) .sec-policy .section-heading .ja {
  position: relative;
}

@media (max-width: 599.98px) {
  body:where(.feature) .sec-policy .section-heading .ja {
    font-size: 2.4rem;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .sec-policy .section-heading .ja {
    font-size: 2rem;
  }
}

body:where(.feature) .sec-policy .section-heading .ja::before,
body:where(.feature) .sec-policy .section-heading .ja::after {
  content: '';
  position: absolute;
  width: 0.7em;
  height: 3px;
  background-color: var(--color-primary);
  top: calc(50% - 1.5px);
}

body:where(.feature) .sec-policy .section-heading .ja::before {
  left: calc(50% - 6.4em);
}

body:where(.feature) .sec-policy .section-heading .ja::after {
  right: calc(50% - 6.4em);
}

body:where(.feature) .sec-feature .section-heading .ja {
  color: var(--black);
  position: relative;
}

@media (max-width: 320px) {
  body:where(.feature) .sec-feature .section-heading .ja {
    font-size: 2rem;
  }
}

body:where(.feature) .sec-feature .section-heading .ja::after {
  content: '';
  position: absolute;
  width: 1.4em;
  height: 5px;
  background-color: var(--color-primary);
  top: calc(100% + 10px);
  left: calc(50% - 0.7em);
}

@media (max-width: 599.98px) {
  body:where(.feature) .sec-feature .section-contents {
    margin-top: 6em;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .sec-feature .section-contents {
    margin-top: 3em;
  }
}

body:where(.feature) .sec-achievement .container,
body:where(.feature) .sec-secret .container {
  --border-color: rgb(215, 215, 215);
  max-width: 126rem;
  padding-block: 10rem;
  background-size: auto 1.2rem;
  background-repeat: repeat-x;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, var(--border-color) 3px, var(--border-color) 4.4px);
}

@media (max-width: 599.98px) {
  body:where(.feature) .sec-achievement .container,
  body:where(.feature) .sec-secret .container {
    margin-inline: 2em;
    padding-inline: 0;
  }
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  body:where(.feature) .sec-achievement .container,
  body:where(.feature) .sec-secret .container {
    margin-inline: 2em;
    padding-inline: 0;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .sec-achievement .container,
  body:where(.feature) .sec-secret .container {
    padding-inline: 12.5rem;
  }
}

body:where(.feature) .sec-achievement .section-contents,
body:where(.feature) .sec-secret .section-contents {
  margin-top: 1em;
}

@media (max-width: 599.98px) {
  body:where(.feature) .sec-achievement .section-contents,
  body:where(.feature) .sec-secret .section-contents {
    margin-top: 0;
  }
}

body:where(.feature) .sec-achievement .section-heading .ja,
body:where(.feature) .sec-secret .section-heading .ja {
  font-size: 2.4rem;
}

@media (max-width: 320px) {
  body:where(.feature) .sec-achievement .section-heading .ja,
  body:where(.feature) .sec-secret .section-heading .ja {
    font-size: 2rem;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .sec-achievement .section-heading .ja,
  body:where(.feature) .sec-secret .section-heading .ja {
    font-size: 2.8rem;
    text-align: left;
  }
}

body:where(.feature) .sec-achievement .section-heading + *,
body:where(.feature) .sec-secret .section-heading + * {
  margin-top: 1em;
}

body:where(.feature) .sec-secret .container {
  padding-bottom: 4rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .sec-secret .container {
    padding-bottom: 2rem;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .sec-secret .container {
    padding-bottom: 2rem;
  }
}

body:where(.feature) .lay-sec-achievement {
  display: grid;
  gap: 4rem;
  margin-bottom: 1em;
  align-items: center;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-sec-achievement {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .lay-sec-achievement {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .lay-sec-achievement {
    grid-template-columns: 1fr 29.4rem;
    padding-right: 5rem;
  }
}

@media (min-width: 1280px) {
  body:where(.feature) .lay-sec-achievement {
    align-items: end;
  }
}

@media (max-width: 599.98px) {
  body:where(.feature) .txt-achievement {
    font-size: 1.5rem;
    text-align: center;
  }
  body:where(.feature) .txt-achievement + * {
    margin-top: 0.5em;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .txt-achievement {
    font-size: 1.4rem;
  }
}

body:where(.feature) .fig-achievement {
  position: relative;
}

@media (max-width: 599.98px) {
  body:where(.feature) .fig-achievement {
    width: 26.3rem;
    margin-inline: auto;
  }
}

body:where(.feature) .fig-achievement figcaption {
  position: absolute;
  bottom: -1.5em;
  right: 0;
  font-size: 1.2rem;
  color: #b1b1b1;
}

@media (max-width: 599.98px) {
  body:where(.feature) .fig-achievement figcaption {
    bottom: -2em;
  }
}

body:where(.feature) .doctor {
  background-color: rgb(243, 249, 255);
  margin-top: 4em;
  border-radius: 1rem;
  padding: 6em 2em 2em;
}

@media (max-width: 599.98px) {
  body:where(.feature) .doctor {
    position: relative;
    background-image: url('../img/feature/pic-doctor-sm.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100% 0;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .doctor {
    padding: 1em 1em 0 1em;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .doctor {
    padding: 1em 4em 0 3em;
  }
}

body:where(.feature) .lay-doctor {
  display: grid;
  grid-template-columns: calc(32.6rem / 2) 1fr;
  align-items: center;
  gap: 2.8rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-doctor {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-doctor .col-pic {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-doctor .col-txt {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
  }
}

body:where(.feature) .list-doctor {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

body:where(.feature) .list-doctor dt {
  font-size: 1.4rem;
}

body:where(.feature) .list-doctor dd {
  font-size: 2.4rem;
}

body:where(.feature) .list-doctor span {
  font-size: 1.6rem;
  margin-left: 0.5em;
}

body:where(.feature) .list-doctor small {
  font-size: 1.8rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transform: translateY(-0.3em);
}

body:where(.feature) .list-doctor small::before,
body:where(.feature) .list-doctor small::after {
  content: '';
  width: 1ch;
  height: 1px;
  background-color: var(--color-primary);
}

@media (max-width: 599.98px) {
  body:where(.feature) .list-doctor small {
    display: flex;
    margin-top: 0.5em;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .list-doctor small {
    margin-left: 1em;
  }
}

body:where(.feature) .txt-doctor {
  margin-top: 0.6em;
  line-height: 1.8;
  font-size: 1.6rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .txt-doctor {
    margin-top: 2em;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .txt-doctor {
    font-size: 1.4rem;
  }
}

body:where(.feature) .fig-doctor {
}

body:where(.feature) .to-profile {
  text-align: right;
  margin-top: 1em;
  font-size: 1.6rem;
}

body:where(.feature) .link-to-profile {
  color: var(--color-primary);
  text-decoration: none;
}

body:where(.feature) .link-to-profile .arrow {
  display: inline-block;
  width: 2.8rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='8' viewBox='0 0 26 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7H24L18.1935 1' stroke='%23303F9F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  margin-left: 0.5em;
}

body:where(.feature) .link-to-profile:hover .arrow,
body:where(.feature) .link-to-profile:focus .arrow {
  animation: hoverarrow 1.8s ease-out infinite;
}

@keyframes hoverarrow {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  25% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}

body:where(.feature) .lay-secret {
  display: grid;
  gap: 3rem;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-secret {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) {
  body:where(.feature) .lay-secret {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .lay-secret {
    grid-template-columns: 1fr 29rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  body:where(.feature) .lay-secret {
    padding-right: 4rem;
  }
}

body:where(.feature) .lay-secret .col-fig {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  body:where(.feature) .lay-secret .col-fig {
    position: relative;
  }
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-secret .col-fig {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  body:where(.feature) .lay-secret .col-fig {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}

body:where(.feature) .lay-secret-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6rem;
  margin-top: 4em;
}

@media (max-width: 599.98px) {
  body:where(.feature) .lay-secret-img {
    margin-top: 3em;
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 599.98px) {
  body:where(.feature) .txt-secret {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media (max-width: 320px) {
  body:where(.feature) .txt-secret {
    font-size: 1.4rem;
  }
}

body:where(.feature) .txt-secret.hidden-md {
  margin-top: 1.5em;
}

body:where(.feature) .txt-secret.hidden-md + .hidden-md {
  margin-top: 0.5em;
}

body:where(.feature) .fig-secret {
  text-align: center;
  line-height: initial;
  color: var(--color-primary);
  background-color: rgb(243, 249, 255);
  width: 16.3rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  place-items: center;
  border-radius: 50%;
}

@media (max-width: 599.98px) {
  body:where(.feature) .fig-secret {
    width: min(47%, 15.8rem);
  }
}

@media (max-width: 320px) {
  body:where(.feature) .fig-secret {
    width: 12.4rem;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .fig-secret {
    position: absolute;
    left: 50%;
    top: 50%;
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .fig-secret:nth-child(1) {
    transform: translate(-85%, -80%);
  }
}

@media (min-width: 1024px) {
  body:where(.feature) .fig-secret:nth-child(2) {
    transform: translate(-13%, -32%);
  }
}

body:where(.feature) .fig-secret figcaption {
  margin-top: 0.6em;
}

body:where(.feature) .pic-secret {
  width: 100%;
}

body.about .main-contents .bg {
  background-color: rgb(243, 249, 255);
}

body.about .main-contents .lay-about {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

@media (min-width: 600px) {
  body.about .main-contents .lay-about {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  body.about .main-contents .lay-about {
    flex-wrap: nowrap;
    gap: 5rem;
  }
}

@media (min-width: 1024px) {
  body.about .main-contents .lay-about.reverse {
    flex-direction: row-reverse;
  }
}

body.about .main-contents .lay-about .col-pic {
  flex: 1;
}

@media (min-width: 600px) {
  body.about .main-contents .lay-about .col-pic {
    flex: 0 1 46%;
  }
}

@media (min-width: 600px) {
  body.about .main-contents .lay-about .col-txt {
    flex: 1 0 54%;
  }
}

body.about .main-contents .ttl-about {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3.2rem;
}

@media (max-width: 599.98px) {
  body.about .main-contents .ttl-about {
    font-size: 1.6rem;
  }
}

body.about .main-contents .ttl-center {
  text-align: center;
}

body.about .main-contents .txt-about {
  line-height: 2;
  margin-top: 1.7em;
  letter-spacing: 0.16rem;
}

@media (max-width: 599.98px) {
}

body.about .main-contents .txt-about + * {
}

body.about .main-contents .txt-about b {
  color: var(--color-primary);
  font-weight: 700;
}

body.about .main-contents .fig-about img {
}

body.about .main-contents .fig-about + * {
  margin-top: 1em;
}

body.about .main-contents .height {
  height: 17rem;
}

body.about .main-contents .height img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  body.about .main-contents .height:nth-child(even) {
    margin-left: 8rem;
  }
}

@media (min-width: 1024px) {
  body.about .main-contents .height:nth-child(odd) {
    margin-right: 8rem;
  }
}

body.about .main-contents .button {
  margin-top: 4.5em;
  text-align: center;
}

@media (max-width: 599.98px) {
  body.about .main-contents .button {
    margin-top: 3.5em;
  }
}

body.about .main-contents .button .btn {
  font-size: 1.6rem;
  padding: 1em 1em 1em 4em;
}

@media (min-width: 600px) {
  body.about .main-contents .button .btn {
    padding: 0.6em 0.5em 0.7em 3em;
    font-size: 2.8rem;
    width: 53.2rem;
  }
}

body.about .main-contents .button .icon {
  font-size: 3.6rem;
}

@media (max-width: 599.98px) {
  body.about .main-contents .button .icon {
    font-size: 3.2rem;
    left: 0.5em;
  }
}

body.about .page-header::after {
  background-image: url('../img/about/main-visual.jpg');
  filter: brightness(0.5);
}

body.about .bg-texture {
  background-image: url('../img/about/bg-texture.jpg');
  background-size: cover;
  background-position: 50%;
}

body.about .bg-texture .container {
  max-width: 105rem;
}

body.about .bg-texture .txt-about {
  letter-spacing: calc(-0.26em / 1000);
}

@media (width <= 375px) {
  body.about .bg-texture .ttl-about {
    letter-spacing: calc(-120em / 1000);
    white-space: nowrap;
  }
}

body.about .bg-texture .ttl-about + * {
  margin-top: 4em;
}

body.about .about-promise .txt-about {
  letter-spacing: calc(-0.26em / 1000);
}

body.about .about-promise .ttl-about + * {
  margin-top: 1.2em;
}

body.about .lay-about-promise .col-pic + * {
  margin-top: 2em;
}

@media (min-width: 1024px) {
  body.about .lay-about-promise {
    display: flex;
    gap: 5rem;
  }
  body.about .lay-about-promise .col-pic {
    width: 41.8%;
  }
  body.about .lay-about-promise .col-pic + * {
    margin-top: 0;
  }
  body.about .lay-about-promise .col-txt {
    width: 50%;
    flex: 1;
  }
}

body.about .list-about-promise {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 1rem;
  margin-top: 3.5em;
}

@media (min-width: 1024px) {
  body.about .list-about-promise {
    gap: 3rem;
    margin-top: 4.5em;
  }
}

body.about .list-about-promise li {
  width: calc(100% / 2 - 1rem);
}

@media (min-width: 1024px) {
  body.about .list-about-promise li {
    width: calc(100% / 4 - 3rem);
  }
}

body.about .item-about-promise {
  text-align: center;
  border: 1px solid;
  border-radius: 0.5rem;
  padding: 3em 1rem 2rem;
}

@media (min-width: 600px) {
  body.about .item-about-promise {
    padding: 4rem 1rem 2rem;
  }
}

body.about .fig-item-about-promise {
  position: relative;
}

body.about .fig-item-about-promise figcaption {
  top: -1.25em;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
  background-color: var(--white);
  padding-inline: 0.6em;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
}

@media (min-width: 600px) {
  body.about .fig-item-about-promise figcaption {
    top: -1em;
    padding-inline: 1.2em;
  }
}

body.about .fig-item-about-promise img {
  margin-inline: auto;
  max-width: 10.4rem;
}

@media (min-width: 600px) {
  body.about .fig-item-about-promise img {
    max-width: 100%;
  }
}

body.flow .page-header::after {
  background-image: url('../img/flow/photo-1505751172876-fa1923c5c528.jpg');
  filter: brightness(0.5);
}

body.flow .main-contents .first {
}

body.flow .main-contents .second {
  background-color: rgb(243, 249, 255);
}

body.flow .main-contents .second .item-flow {
  background-color: var(--white);
}

body.flow .main-contents .second .col-txt {
  padding: 3em;
}

body.flow .main-contents .second .fig-flow {
  width: 100%;
  height: 100%;
}

body.flow .main-contents .lay-item-flow {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  z-index: 0;
}

body.flow .main-contents .lay-item-flow .col-pic {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: -1;
}

@media (min-width: 600px) {
  body.flow .main-contents .lay-item-flow .col-pic {
    grid-column: 6 / -1;
  }
}

body.flow .main-contents .lay-item-flow .col-txt {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  align-self: center;
  padding: 1em 1.6em;
}

@media (min-width: 600px) {
  body.flow .main-contents .lay-item-flow .col-txt {
    /*padding-inline: 1em; */
    padding: 1em 2em;
  }
}

body.flow .main-contents .lay-item-flow.reverse .col-pic {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: -1;
}

@media (min-width: 600px) {
  body.flow .main-contents .lay-item-flow.reverse .col-pic {
    grid-column: 1 / 8;
  }
}

body.flow .main-contents .lay-item-flow.reverse .col-txt {
  grid-column: 1 / 13;
  grid-row: 1 / -1;
  text-align: right;
}

@media (min-width: 600px) {
  body.flow .main-contents .lay-item-flow.reverse .col-txt {
    grid-column: 5 / 13;
  }
}

@media (min-width: 1024px) {
  body.flow .main-contents .lay-item-flow.reverse .col-txt {
    grid-column: 8 / 13;
  }
}

body.flow .main-contents .lay-item-flow.reverse .fig-flow::before {
  background-image: linear-gradient(to left, var(--bg) 0%, var(--bg) 10%, transparent 50%, transparent 100%);
}

body.flow .main-contents .item-flow {
  margin-top: 5rem;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .item-flow {
    margin-top: 3rem;
  }
}

body.flow .main-contents .item-flow + * {
  margin-top: 8rem;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .item-flow + * {
    margin-top: 3rem;
  }
}

body.flow .main-contents .ttl-step {
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 700;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .ttl-step {
    font-size: 1.6rem;
  }
}

body.flow .main-contents .ttl-step-ja {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .ttl-step-ja {
    font-size: 1rem;
  }
}

body.flow .main-contents .ttl-step-en {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.15em;
  font-weight: 400;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .ttl-step-en {
    font-size: 1.4rem;
  }
}

body.flow .main-contents .txt-flow {
  margin-top: 1em;
  line-height: 2;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .txt-flow br {
    display: none;
  }
}

body.flow .main-contents .txt-flow b {
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 600px) {
  body.flow .main-contents .width {
    width: 27em;
    margin-left: auto;
  }
}

body.flow .main-contents .height {
  aspect-ratio: 4 / 2;
}

body.flow .main-contents .txt-kome {
  margin-top: 2em;
  font-size: 1.2rem;
  max-width: 49em;
  text-align: left;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .txt-kome {
    font-size: 1rem;
  }
}

body.flow .main-contents .fig-flow {
  --bg: white;

  width: 100%;
  height: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  body.flow .main-contents .fig-flow {
    height: 46rem;
  }
}

body.flow .main-contents .fig-flow img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 599.98px) {
  body.flow .main-contents .fig-flow img {
    filter: opacity(0.6);
  }
}

body.flow .main-contents .fig-flow::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--bg) 0%, var(--bg) 10%, transparent 50%, transparent 100%);
}

body.contact .page-header::after {
  background-image: url('../img/contact/photo-1534536281715-e28d76689b4d.jpg');
  filter: brightness(0.5);
}

@media (max-width: 599.98px) {
  body.contact .main-contents {
    font-size: 1.6rem;
  }
}

body.contact .main-contents .lay-contact {
  margin-top: 2em;
}

body.contact .main-contents .lay-contact dt {
  font-weight: 700;
}

body.contact .main-contents .lay-contact dd {
  margin-top: 1em;
}

body.contact .main-contents .lay-contact dd + dt {
  margin-top: 2em;
}

body.contact .main-contents select,
body.contact .main-contents input[type='text'],
body.contact .main-contents input[type='email'],
body.contact .main-contents input[type='tel'],
body.contact .main-contents textarea {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 0.3em;
  outline: none;
}

body.contact .main-contents textarea {
  height: 12em;
}

body.contact .main-contents select {
  padding: 0.8em 2.5em 0.8em 1em;
  background-position: right 0.8em top 50%;
}

body.contact .main-contents input[type='text'],
body.contact .main-contents input[type='email'],
body.contact .main-contents input[type='tel'],
body.contact .main-contents textarea {
  width: 100%;
  padding: 0.8em 1em;
}

body.contact .main-contents input[type='text']:focus-visible,
body.contact .main-contents input[type='email']:focus-visible,
body.contact .main-contents input[type='tel']:focus-visible,
body.contact .main-contents textarea:focus-visible {
  background-color: rgba(238, 255, 233, 0.54);
}

body.contact .main-contents input[type='text']::-moz-placeholder,
body.contact .main-contents input[type='email']::-moz-placeholder,
body.contact .main-contents input[type='tel']::-moz-placeholder,
body.contact .main-contents textarea::-moz-placeholder {
  color: #999;
}

body.contact .main-contents input[type='text']::placeholder,
body.contact .main-contents input[type='email']::placeholder,
body.contact .main-contents input[type='tel']::placeholder,
body.contact .main-contents textarea::placeholder {
  color: #999;
}

body.contact .main-contents label {
  display: block;
  width: 100%;
}

body.contact .main-contents .button {
  margin-top: 4rem;
}

@media (min-width: 600px) {
  body.contact .main-contents .button {
    margin-top: 6rem;
  }
}

@media (min-width: 1024px) {
  body.contact .main-contents .button {
    margin-top: 8rem;
  }
}

body.contact .main-contents input[type='reset'],
body.contact .main-contents input[type='submit'],
body.contact .main-contents input[type='button'],
body.contact .main-contents button,
body.contact .main-contents .btn-send {
  padding: 0.6em 1.4em;
  font-size: 2rem;
  color: var(--white);
  background: rgba(51, 51, 51, 0.81);
  font-weight: 700;
  cursor: pointer;
  border: 0;
  border-radius: 0.4rem;
}

@media (min-width: 600px) {
  body.contact .main-contents input[type='reset'],
  body.contact .main-contents input[type='submit'],
  body.contact .main-contents input[type='button'],
  body.contact .main-contents button,
  body.contact .main-contents .btn-send {
    background-color: #e16204;
  }
}

body.contact .main-contents input[type='reset']:focus-visible,
body.contact .main-contents input[type='submit']:focus-visible,
body.contact .main-contents input[type='button']:focus-visible,
body.contact .main-contents button:focus-visible,
body.contact .main-contents .btn-send:focus-visible {
  background: #ffab6d;
}

body.contact .main-contents .must {
  color: #f23a3c;
  margin-left: 0.5em;
}

body.contact .main-contents .txt-kome {
  display: block;
  font-weight: 400;
  font-size: 1.1rem;
  margin-top: 1em;
}

body.contact .main-contents .lay-input-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
  background-color: #fafafa;
  padding: 0.8em 0.6em;
}

body.contact .main-contents .col {
  flex: 1 1 32%;
}

body.contact .main-contents .lay-input-row {
  background-color: #fafafa;
  padding: 0.8em 0.6em;
}

body.contact .main-contents .row + * {
  margin-top: 1em;
}

body.contact .main-contents .txt-contact {
  max-width: 58rem;
  margin-inline: auto;
  line-height: 2;
}

body.plan .page-header::after {
  background-image: url('../img/plan/photo-1574043948184-144f2ef80fe3.jpg');
  filter: brightness(0.5);
}

body.plan .section-contents {
  margin-top: 5rem;
}

body.plan .main-contents .bg {
  background-color: rgb(243, 249, 255);
}

body.plan .main-contents .medicine .txt-kome {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 5rem;
  max-width: 60em;
  margin-inline: auto;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .medicine .txt-kome {
    font-size: 1.4rem;
    padding-inline: 2.5em;
  }
}

@media (min-width: 1024px) {
  body.plan .main-contents .lay-structure {
    display: flex;
    gap: 5rem;
  }

  body.plan .main-contents .lay-structure .col-txt {
    flex: 1 1 55%;
  }

  body.plan .main-contents .lay-structure .col-pic {
    flex-basis: 50%;
  }

  body.plan .main-contents .lay-structure .section-heading {
    display: inline-grid;
  }
}

@media (min-width: 1280px) {
  body.plan .main-contents .lay-structure .col-pic {
    flex-basis: 44rem;
    flex-shrink: 0;
  }
}

body.plan .main-contents .fig-structure {
  text-align: center;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .fig-structure {
    margin-top: 3rem;
  }
}

body.plan .main-contents .fig-structure img {
  display: inline-block;
}

body.plan .main-contents .txt-structure {
  margin-top: 3em;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .txt-structure {
    font-size: 1.6rem;
  }
}

body.plan .main-contents .txt-structure + * {
  margin-top: 1em;
}

body.plan .main-contents .txt-structure b {
  color: var(--color-primary);
}

body.plan .main-contents .lay-medicine {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 4rem;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .lay-medicine {
    gap: 8rem;
  }
}

body.plan .main-contents .item-medicine {
  flex: 1 1 30%;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .item-medicine {
    flex-basis: 100%;
  }
}

body.plan .main-contents .fig-item-medicine {
  width: 100%;
  height: 26rem;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .fig-item-medicine {
    height: 18rem;
  }
}

body.plan .main-contents .fig-item-medicine img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

body.plan .main-contents .item-category {
  line-height: 1;
  margin-top: 2em;
}

body.plan .main-contents .item-category span {
  color: var(--color, var(--black));
  background-color: var(--bg-color, rgb(230, 230, 230));
  display: inline-flex;
  border: 1px solid;
  padding: 0.4em 0.6em;
  font-size: 1.3rem;
  font-weight: 700;
}

body.plan .main-contents .item-category .category1 {
  --color: #2a900b;
  --bg-color: rgb(237, 251, 218);
}

body.plan .main-contents .item-category .category2 {
  --color: #e12b15;
  --bg-color: rgb(255, 237, 236);
}

body.plan .main-contents .ttl-item-medicine {
  margin-top: 0.5em;
  font-size: 2rem;
}

body.plan .main-contents .ttl-item-medicine sub {
  font-weight: 400;
  font-size: 1.4rem;
  margin-left: 0.5em;
  vertical-align: baseline;
}

body.plan .main-contents .list-item-medicine {
  margin-top: 1.1em;
  font-size: 1.4rem;
}

body.plan .main-contents .list-item-medicine dt {
  color: var(--color-primary);
  font-weight: 700;
}

body.plan .main-contents .list-item-medicine dd {
  margin-top: 0.5em;
}

body.plan .main-contents .list-item-medicine dd + dt {
  margin-top: 1em;
}

body.plan .main-contents .list-item-medicine + * {
  margin-top: 2em;
}

body.plan .main-contents .price > .container {
  padding-bottom: 0;
}

body.plan .main-contents .ttl-price {
  color: var(--color-primary);
  font-size: 3.2rem;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .ttl-price {
    font-size: 2.8rem;
  }
}

body.plan .main-contents .price1 .fig-price {
  height: 18rem;
  width: 100%;
}

@media (min-width: 600px) {
  body.plan .main-contents .price1 .fig-price {
    min-height: 100%;
  }
}

body.plan .main-contents .price1 .fig-price img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

body.plan .main-contents .lay-price1 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  body.plan .main-contents .lay-price1 {
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  body.plan .main-contents .lay-price1 {
    gap: 5rem;
  }
}

body.plan .main-contents .lay-price1 .col-pic {
  flex-basis: 50%;
}

@media (min-width: 1280px) {
  body.plan .main-contents .lay-price1 .col-pic {
    flex-basis: 55rem;
    flex-shrink: 0;
  }
}

body.plan .main-contents .lay-price1 .col-txt {
  flex: 1 1 50%;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .lay-price1 .col-txt {
    margin-top: 2em;
  }
}

body.plan .main-contents .list-price1 {
  font-weight: 700;
  text-align: center;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .list-price1 {
    padding-inline: 5rem;
  }
}

@media (min-width: 1024px) {
  body.plan .main-contents .list-price1 {
    text-align: left;
  }
}

body.plan .main-contents .list-price1 dt {
  font-size: 2.2rem;
  font-weight: 600;
}

body.plan .main-contents .list-price1 dd {
  color: var(--color-primary);
  font-size: 7.2rem;
}

@media (min-width: 1024px) {
  body.plan .main-contents .list-price1 dd {
    padding: 0 24px 0 0;
  }
}

@media (max-width: 599.98px) {
  body.plan .main-contents .list-price1 dd {
    padding: 0 32px 0 0;
  }
}

body.plan .main-contents .list-price1 .unit {
  color: var(--black);
  font-size: 2rem;
  font-weight: 400;
  margin-right: 1em;
}

body.plan .main-contents .list-price1 small {
  color: #777;
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 1em;
  display: block;
}

@media (min-width: 1024px) {
  body.plan .main-contents .list-price1 small {
    display: inline-block;
  }
}

@media (max-width: 599.98px) {
  body.plan .main-contents .list-price1 small {
    white-space: nowrap;
  }
}

body.plan .main-contents .list-price1 + * {
  margin-top: 2em;
}

body.plan .main-contents .txt-item-price {
  text-align: center;
  margin-top: 2em;
}

@media (min-width: 1280px) {
  body.plan .main-contents .txt-item-price {
    font-size: 2rem;
  }
}

body.plan .main-contents .txt-item-price.left {
  text-align: left;
  font-size: 2rem;
}

body.plan .main-contents .price2 {
}

body.plan .main-contents .lay-price2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  body.plan .main-contents .lay-price2 {
    flex-direction: row;
  }
}

body.plan .main-contents .item-price2 {
  background-color: var(--white);
  padding: 2em 1em;
}

@media (min-width: 1024px) {
  body.plan .main-contents .item-price2 {
    padding: 3em 1em;
    flex: 0 1 36rem;
  }
}

body.plan .main-contents .item-price2 .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin-top: 3rem;
}

body.plan .main-contents .item-price2 .num {
  color: var(--color-primary);
  font-size: 7.2rem;
  font-weight: 700;
  margin-inline: 0.1em;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .item-price2 .num {
    font-size: 4.8rem;
  }
}

body.plan .main-contents .item-price2 .unit {
  font-size: 1.8rem;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .item-price2 .unit {
    font-size: 2rem;
  }
}

body.plan .main-contents .item-price2 .tax {
  color: #777;
  text-align: center;
  margin-top: 1em;
}

body.plan .main-contents .ttl-item-price2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: 1em;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .ttl-item-price2 {
    font-size: 2.2rem;
  }
}

body.plan .main-contents .list-check {
  margin-top: 2em;
  font-weight: 700;
  list-style: none;
  padding-left: 0;
  margin-left: 1em;
}

body.plan .main-contents .list-check li {
  display: flex;
}

body.plan .main-contents .list-check li + * {
  margin-top: 1em;
}

body.plan .main-contents .list-check .icon {
  margin-right: 0.2em;
}

body.plan .main-contents .price3 {
}

body.plan .main-contents .lay-item-price3 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  body.plan .main-contents .lay-item-price3 {
    justify-content: initial;
  }
}

body.plan .main-contents .lay-item-price3 .num {
  color: var(--color-primary);
  font-size: 7.2rem;
  font-weight: 700;
  margin-inline: 0.1em;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .lay-item-price3 .num {
    font-size: 4.8rem;
  }
}

body.plan .main-contents .lay-item-price3 .unit {
  font-size: 1.8rem;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .lay-item-price3 .unit {
    font-size: 2rem;
  }
}

body.plan .main-contents .lay-item-price3 .tax {
  color: #777;
  text-align: center;
  margin-top: 1em;
}

body.plan .main-contents .lay-item-price3 + * {
  margin-top: 1em;
}

body.plan .main-contents .ttl-item-price3 {
  text-align: center;
  font-size: 2.4rem;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .ttl-item-price3 {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  body.plan .main-contents .ttl-item-price3 {
    text-align: left;
  }
}

body.plan .main-contents .lay-price3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
  gap: 3rem;
}

@media (min-width: 1024px) {
  body.plan .main-contents .lay-price3 {
    flex-direction: row;
  }
}

body.plan .main-contents .lay-price3 .col-txt {
  flex: 1 1 50%;
}

@media (min-width: 1280px) {
  body.plan .main-contents .lay-price3 .col-txt {
    flex: 1 0 35%;
  }
}

body.plan .main-contents .lay-price3 .col-pic {
  flex: 1 1 50%;
}

@media (min-width: 1280px) {
  body.plan .main-contents .lay-price3 .col-pic {
    flex: 0 1 55rem;
  }
}

body.plan .main-contents .fig-item-price3 {
  width: 100%;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .fig-item-price3 {
    height: 24rem;
  }
}

@media (min-width: 1024px) {
  body.plan .main-contents .fig-item-price3 {
    height: 41.3rem;
  }
}

body.plan .main-contents .fig-item-price3 img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 599.98px) {
  body.plan .main-contents .button {
    padding-inline: 2em;
  }
}
