@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* A Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
ul[role="list"],
ol[role="list"] {
    list-style: none;
}
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
img,
picture {
    max-width: 100%;
    display: block;
}
input,
button,
textarea,
select {
    font: inherit;
}

:root {
    --body-color: #ffffff;
    --color-text: #000000;
    --color-link: #000000;
    --color-white: #fff;
    --color-base: #71c651;
    --color-base2: #f1f5ee;
    --color-base3: #37a51e;
    --color-accent: #ffff00;
    --color-accent2: #ff8400;
    --color-gray-light: #e7e7e7;
    --color-gray: #cccccc;
    --color-gray-dark: #999999;
    --color-gray-darker: #666666;
    --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", Meiryo, sans-serif;
    --border-radius: 10px;
    --max-content-width: 1050px;
    --max-middle-content-width: 900px;
    --max-small-content-width: 760px;
    --box-shadow: 0 6px 0 0 #d0ecc6;
    --cubic-bezier: cubic-bezier(0.23, 1, 0.32, 1);
}
a {
    color: var(--color-link);
    text-decoration: underline;
    transition: 0.4s var(--cubic-bezier);
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family-base);
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.875;
    font-size: 1.6rem;
    color: var(--color-text);
    background-color: var(--body-color);
}


/* =================================================== */
/* header
/* =================================================== */
.l-main {
  margin-top: 100px;
}

.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid var(--color-gray-light);
}
.l-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
.l-header__logo {
  position: relative;
}
.l-header__logo a {
  text-decoration: none;
}
.l-header__tagline {
  color: var(--color-base);
  font-size: 1.2rem;
  position: absolute;
  top: 10px;
  left: 88px;
  display: block;
  white-space: nowrap;
}

.l-header__nav {
  display: flex;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
  padding-left: 40px;
  padding-right: 40px;
  overflow-y: auto;
}

.l-header__nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.l-header__nav ul {
  margin: 0;
  padding-left: 0;
  padding-top: 10rem;
  padding-bottom: 10rem;
  list-style: none;
  width: min(100%, 500px);
}
.l-header__nav ul:after {
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
}

.l-header__nav ul li {
  margin-bottom: 1rem;
}

.l-header__nav ul li a {
  display: inline-block;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-left: 3rem;
}
.l-header__nav ul li a:hover {
  color: var(--color-base);
}
.l-header__nav ul li a:before {
  content: "";
  background-image: url(assets/img/common/ico-arrow.svg);
  background-size: cover;
  width: 1.4rem;
  height: 1.1rem;
  display: block;
  position: absolute;
  top: calc(50% - 0.55rem);
  left: 0;
}
.l-header__nav__separater:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: 1px solid var(--color-gray);
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.l-header__right {
  display: flex;
  align-items: center;
}
.l-header__tel {
  line-height: 1;
}
.l-header__tel a {
  border: 1px solid var(--color-gray-light);
  border-radius: 100px;
  text-decoration: none;
  padding: 0.2em 1.2em;
  font-weight: bold;
  font-size: 2.5rem;
}
.l-header__tel a:hover {
  background-color: var(--color-base);
  color: var(--color-white);
}
.l-header__tel a:hover img {
  filter: brightness(0) invert(1);
}
.l-header__tel img {
  display: inline-block;
  width: 16px;
  margin-right: 0.5rem;
}
.l-header__reservation {
  font-size: 3.0rem;
  line-height: 1;
  margin-left: 20px;
}
.l-header__reservation a {
  display: block;
  font-size: 1.6rem;
  color: #000000;
  text-decoration: none;
  border: 1px solid var(--color-gray-light);
  border-radius: 100px;
  padding: 0.8em 1.2em;
}
.l-header__reservation a:hover {
  background-color: var(--color-base);
  color: var(--color-white);
}
.l-header__reservation i {
  font-size: 2.0rem;
  color: var(--color-base3);
  margin-right: 8px;
}
.l-header__reservation a:hover i {
  color: #ffffff;
}
.l-header__bar {
  z-index: 1000;
  position: relative;
  top: 0;
  width: 100px;
  height: 100px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin-left: 20px;
}

.l-header__bar.is-open span:nth-child(1) {
  -webkit-transform-origin: left top;
  -webkit-transform: rotate(25deg);
  top: 35px;
  right: 13px;
  transform: rotate(25deg);
  transform-origin: left top;
}

.l-header__bar.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header__bar.is-open span:nth-child(3) {
  -webkit-transform-origin: right top;
  -webkit-transform: rotate(-25deg);
  top: 35px;
  right: 20px;
  transform: rotate(-25deg);
  transform-origin: right top;
}

.l-header__bar span {
  display: inline-block;
  position: absolute;
  width: 70px;
  height: 2px;
  outline: none;
  background: var(--color-text);
  transition: 0.2s ease-out;
}

.l-header__bar span:nth-child(1) {
  top: 35px;
  right: 15px;
}

.l-header__bar span:nth-child(2) {
  top: 48px;
  right: 15px;
}

.l-header__bar span:nth-child(3) {
  top: 61px;
  right: 15px;
}


/* =================================================== */
/* footer
/* =================================================== */
.l-footer {
  margin: 3rem 0 3rem;
  overflow: hidden;
  padding-top: 30px;
}
.l-footer .l-container {
  position: relative;
}
.l-footer__banner {
  list-style: none;
  margin: 0;
  padding: 3rem 0;
  text-align: center;
  background: #f8f8f8;

  position: relative;
}
.l-footer__banner:before {
  content: "";
  background-color: #f8f8f8;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  transform: translateX(-50%);
}
.l-footer__banner:after {
  content: "";
  border-top: var(--color-gray) solid 1px;
  width: 100vw;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
}
.l-footer__banner li {
  margin: 5px;
  padding: 0;
  line-height: 1;
  display: inline-block;
}
.l-footer__banner li a:hover {
  opacity: 0.7;
}
.l-footer__link {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
  margin-top: 3rem;
}
.l-footer__link li {
  display: inline-block;
  margin: 0 10px;
}
.l-footer__link li a {
  color: var(--color-gray-darker);
  text-decoration: none;
  font-size: 1.4rem;
}
.l-footer__address {
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  color: var(--color-gray-darker);
  margin-top: 3rem;
}
.l-footer__address img {
  margin-right: 2rem;
  vertical-align: middle;
  display: inline-block;
}
.l-footer__copyright {
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-gray-darker);
  margin-top: 2rem;
}
.l-footer__pageup {
  display: block;
  width: 70px;
  height: 30px;
  background-color: var(--color-base);
  position: absolute;
  top: -30px;
  right: 40px;
  cursor: pointer;
  transition: 0.4s var(--cubic-bezier);
}
.l-footer__pageup:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: left top;
}
.l-footer__pageup:hover {
  background-color: var(--color-base3);
}


/* =================================================== */
/* 共通
/* =================================================== */

/* Opiton ------------------ */
.l-spBottomNav {
  display: none;
}

.l-pagetitle {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  position: relative;
}
.l-pagetitle--denba {
  background-image: url("assets/img/common/img-pagetitle-bg.jpg");
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center;
}
.l-pagetitle h1 {
  font-size: 3.4rem;
  color: var(--color-white);
  font-weight: 700;
}

.l-breadcrumb {
  position: absolute;
  top: 5px;
  left: 20px;
  font-size: 1.2rem;
  color: var(--color-white);
}
.l-breadcrumb a,
.l-breadcrumb span {
  color: var(--color-white);
}

/*.l-breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  color: var(--color-gray-light);
  font-size: 1.2rem;
}
.l-breadcrumb ul li:not(:last-child):after {
  content: ">";
  margin: 0 0.5rem;
}
.l-breadcrumb ul li a {
  color: var(--color-white);
}*/


/* =================================================== */
/* Layout
/* =================================================== */
.l-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  max-width: calc(var(--max-content-width) + 80px);
}
.l-container--small {
  max-width: calc(var(--max-small-content-width) + 80px);
}

/* component ======================== */

/* Title Set ------------------ */
.c-h2 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 5.6rem;
  margin-bottom: 2rem;
  position: relative;
}
.c-h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 5.6rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1rem;
  position: relative;
  border-bottom: 2px dashed var(--color-base);
  line-height: 1.5;
}
.c-h3--b {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 5.6rem;
  margin-bottom: 2.4rem;
  position: relative;
  line-height: 1.5;
}
.c-h3--b:after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: var(--color-base);
  display: block;
  margin-top: 1rem;
}

/* second page */
body.page .l-container .standard-h2 {
  position: relative;
  padding: 1.4rem 2rem 1.8rem;
  background-color: #f4f2eb;
  border-radius: .5rem;
  font-size: 2.1rem;
  font-size: max(2.1rem, 10px);
  letter-spacing: .04em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-base);
  margin-top: 60px;
}
body.page .l-container .standard-h2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: .3rem;
  height: 2.7rem;
  border-radius: 0 .5rem .5rem 0;
  background-color: var(--color-base);
}
body.page .l-container h3,
#voice .l-container h5 {
  position: relative;
  padding: 1.3rem 0 1.7rem 3.0rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 10px);
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: background-color .25s ease;
  transition: background-color .25s ease;
  position: relative;
  margin-top: 40px;
}
body.page .l-container h3::before,
#voice .l-container h5::before {
  content: "●";
  position: absolute;
  top: 1.4rem;
  left: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-base);
  /*background: url(../img/svg/ico_circle01.svg) center / contain no-repeat;*/
}
body.page .l-container h3::after,
#voice .l-container h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .1rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d1d1d1), color-stop(50%, transparent)) center / 0.4rem .4rem repeat-x;
  background: linear-gradient(90deg, #d1d1d1 50%, transparent 50%) center / 0.4rem .4rem repeat-x;
}

/* main-standard Set ------------------ */
body.page .l-container p {
  margin-top: 20px;
}
body.page .l-container img {
  margin-top: 20px;
  height: auto;
}


/* List Set ------------------ */
.c-list--ul {
  list-style: none;
  padding-left: 0;
}
.c-list--ul li {
  position: relative;
  padding-left: 2rem;
}
.c-list--ul li:before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

/* Table Set ------------------ */
.c-table {
  width: 100%;
  border-spacing: 0;
  line-height: 1.6;
}
.c-table tbody tr {
  border-top: 1px solid var(--color-gray);
}
.c-table tbody tr:last-child th,
.c-table tbody tr:last-child td {
  border-bottom: 1px solid var(--color-gray);
}
.c-table tbody th {
  text-align: left;
  position: relative;
  width: 20%;
  border-top: 1px solid var(--color-gray);
  padding: 0.8em;
}
.c-table tbody td {
  width: 80%;
  border-top: 1px solid var(--color-gray);
  padding: 0.8em;
}

/* Button Set ------------------ */
.c-btn--default {
  background-color: var(--color-base2);
  display: inline-block;
  padding: 1.8rem 2.4rem;
  border-radius: 200px;
  text-decoration: none;
  line-height: 1.6;
  font-size: 2rem;
  box-shadow: var(--box-shadow);
  min-width: 500px;
  position: relative;
  text-align: center;
}
.c-btn--default:before {
  content: "";
  background-image: url(assets/img/common/ico-arrow.svg);
  background-size: cover;
  width: 1.4rem;
  height: 1.1rem;
  display: block;
  position: absolute;
  top: calc(50% - 0.55rem);
  right: 3.3rem;
}
.c-btn--default:after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--color-base);
  border-radius: 100px;
  position: absolute;
  right: 2rem;
  top: calc(50% - 2rem);
}
.c-btn--default:hover {
  background-color: var(--color-base);
  color: var(--color-white);
}
.c-btn--default:hover:before {
  filter: brightness(0) invert(1);
}
.c-btn--default:hover:after {
  border-color: var(--color-white);
}
.c-btn--denba {
  background-color: #dee7ef;
  box-shadow: 0 6px 0 0 #abbcdd;
}
.c-btn--denba:before {
  filter: hue-rotate(125deg) contrast(1.5) brightness(0.5);
}
.c-btn--denba:after {
  border-color: #003399;
}
.c-btn--denba:hover {
  background-color: #003399;
}
.c-btn--line {
  background-color: var(--color-base);
  display: inline-block;
  padding: 0.7em 1em;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.6;
  font-size: 2.2rem;
  width: 100%;
  text-align: center;
}
.c-btn--line:hover {
  background-color: var(--color-base3);
}

/* Text Set ------------------ */
.c-em--sub {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--color-gray-dark);
}
.c-em--xsmall {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text);
}
.c-em--small {
  font-size: 1.3rem;
}
.c-em--large {
  font-size: 1.7rem;
  font-weight: 500;
}

.color--org {
  color: var(--color-accent2);
}

/* Other Set ------------------ */
.c-figure {
  margin-bottom: 1.6rem;
}
.c-figure figcaption {
  color: var(--color-gray-dark);
  text-align: center;
  margin-top: 1rem;
}
.c-embed {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.c-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-hr {
  border: none;
  border-bottom: 1px solid var(--color-gray);
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* margin & align ------------------ */
.u-mt1 {
  margin-top: 1rem;
}
.u-mt2 {
  margin-top: 2rem;
}
.u-mt3 {
  margin-top: 3rem;
}
.u-mt4 {
  margin-top: 4rem;
}
.u-mt5 {
  margin-top: 5rem;
}
.u-mb1 {
  margin-bottom: 1rem;
}
.u-mb2 {
  margin-bottom: 2rem;
}
.u-mb3 {
  margin-bottom: 3rem;
}
.u-mb4 {
  margin-bottom: 4rem;
}
.u-mb5 {
  margin-bottom: 5rem;
}
.u-right {
  text-align: right;
}
.u-center {
  text-align: center;
}

.js-scrollClass{
  opacity: 0;
  transition: 0.6s var(--cubic-bezier);
  bottom: -30px;
  position: relative;
}
.is-inview{
  opacity: 1;
  bottom: 0;
}


/* =================================================== */
/* トップページ
/* =================================================== */

.hom-h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 12rem;
  margin-bottom: 5.6rem;
  position: relative;
  text-align: center;
}
.hom-mainVisual {
  position: relative;
  z-index: 5;
  padding-top: 60px;
}
.hom-mainVisual__text h1 {
  display: block;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(255,255,255,0.5);
  padding: 1rem 1rem 1rem 0;
  position: absolute;
  top: calc(50% + 30px);
  bottom: auto;
  left: 60px;
  transform: translateY(-50%);
  font-size: min(4vw, 1.8rem);
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  transition: 1.2s var(--cubic-bezier);
}
.hom-mainVisual__text h1.is-inview {
  top: 65%;
  bottom: auto;
}
.hom-mainVisual__text h1 b {
  display: inline-block;
  margin-top: 0.3em;
  font-size: min(5vw, 3.4rem);
}
.hom-mainVisual__bg {
  padding-left: 120px;
  width: 100%;
  height: 590px;
}
.hom-mainVisual__bg img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  /*object-position: top center;*/
}
.hom-cta {
  position: relative;
  z-index: 10;
  margin-top: -9rem;
  transition: .6s var(--cubic-bezier) .4s;
}
.hom-cta.is-inview {

}
.hom-cta__inner {
  max-width: calc(var(--max-content-width) - 50px);
  border: 1px solid var(--color-base);
  border-radius: var(--border-radius);
  padding: 3rem 3rem 2rem 3rem;
  background-color: var(--color-white);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hom-cta h2 {
  background-color: #37a51e;
  text-align: center;
  color: var(--color-white);
  display: inline-block;
  padding: 0.7em 2em;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  position: relative;
  top: -6rem;
  line-height: 1.3;
}
.hom-cta h2 b {
  font-size: 2.8rem;
  color: var(--color-accent);
}
.hom-cta__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: -4rem;
}
.hom-cta__text {
  text-align: center;
  padding: 0 5rem;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}
.hom-cta__text:before {
  content: url(assets/img/home/img-obj.svg);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hom-cta__text:after {
  content: url(assets/img/home/img-obj.svg);
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
.hom-cta__text h3 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hom-cta__text h3 b {
  font-size: 4.5rem;
  color: var(--color-accent2);
}
.hom-cta__right {
  margin-left: 2rem;
}
.hom-cta__right__text {
  font-size: 1.5rem;
}
.hom-cta__right__text:before {
  content: "/";
  display: inline-block;
  transform: scale(-1, 1);
  margin-right: 0.5em;
  color: var(--color-gray-dark);
}
.hom-cta__right__text:after {
  content: "/";
  margin-left: 0.5em;
  color: var(--color-gray-dark);
}
.hom-cta__right__button {
  margin-top: 1rem;
}
.hom-cta__right__button img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}
.hom-cta__point {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hom-cta__point li {
  background-color: var(--color-accent2);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.5em 1em;
  margin: 0.5rem 1rem;
  line-height: 1;
  min-width: 13em;
}
.hom-inheritance {
  margin-top: 80px;
}
.hom-inheritance__wrap {
  background-color: var(--color-base2);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.hom-inheritance__text {
  padding: 10px;
}
.hom-inheritance__text h2 {
  margin-top: 0px;
}
.hom-inheritance__text h2 br {
  display: none;
}
.hom-inheritance__list {
  list-style: none;
  padding-left: 0;
}
.hom-inheritance__list li {
  padding-left: 20px;
  background-color: #fff;
  padding: 20px 20px 20px 38px;
  border-radius: 200px 200px 0 200px;
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
}
.hom-inheritance__list li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-base);
  position: absolute;
  top: calc(50% - 3px);
  left: 20px;
  border-radius: 3px;
}
.hom-about__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hom-about__left {
  flex-basis: 50%;
}
.hom-about__left h3:first-child {
  margin-top: 0;
}
.hom-about__right {
  flex-basis: 45%;
}
.hom-about h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 5.6rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1rem;
  position: relative;
  border-bottom: 2px dashed var(--color-base);
  line-height: 1.5;
}
.hom-diet__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5.6rem;
}
.hom-diet__left {
  flex-basis: 60%;
}
.hom-diet__right {
  flex-basis: 35%;
}
.hom-diet h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 5.6rem;
  margin-bottom: 2.4rem;
  position: relative;
  line-height: 1.5;
}
.hom-diet h3:after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: var(--color-base);
  display: block;
  margin-top: 1rem;
}
.hom-diet__text p {
  margin-bottom: 1rem;
}
.hom-diet__left--reverse {
  order: 2;
  flex-basis: 60%;
}
.hom-diet__right--reverse {
  order: 1;
  flex-basis: 35%;
}
.hom-service {
  background-color: var(--color-accent);
  margin-top: 80px;
  padding-top: 0.1px;
  padding-bottom: 80px;
}
.hom-service__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.hom-service__list li {
  flex-basis: 100%;
  background-color: #fff;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 24px 24px;
  margin-top: 10px;
  line-height: 1.8;
}
.hom-service__list h4 {
  font-weight: 500;
  font-size: 1.6rem;
}
.hom-service__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.hom-reason {
  background-color: var(--color-base2);
  margin-top: 12rem;
  padding-top: 0.1px;
  padding-bottom: 12rem;
}
.hom-reason h2 {
  margin-bottom: 1.6rem;
}
.hom-reason__counseling {
  margin-top: 2rem;
  font-size: 2.8rem;
  text-align: center;
  font-weight: normal;
}
.hom-reason__counseling span {
  display: inline-block;
  border: 2px solid var(--color-base);
  background-color: var(--color-white);
  display: inline-block;
  font-size: 2.4rem;
  padding: 0.6rem 1.6rem;
  margin-top: 1.6rem;
}
.hom-reason__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5.6rem;
}
.hom-reason__wrap h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.hom-reason__wrap h3 span {
  color: var(--color-base);
  display: block;
  line-height: 1;
  margin-bottom: 2rem;
}
.hom-reason__wrap h3 span b {
  font-size: 6rem;
  font-weight: 700;
  display: inline-block;
  vertical-align: text-bottom;
}
.hom-reason__left {
  flex-basis: 47.5%;
}
.hom-reason__right {
  flex-basis: 47.5%;
}
.hom-reason__right img {
  border-radius: calc(var(--border-radius) * 3);
  box-shadow: var(--box-shadow);
}
.hom-reason__left--reverse {
  order: 2;
  flex-basis: 47.5%;
}
.hom-reason__right--reverse {
  order: 1;
  flex-basis: 47.5%;
}
.hom-reason__right--reverse img {
  border-radius: calc(var(--border-radius) * 3);
  box-shadow: var(--box-shadow);
}
.hom-voice ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hom-voice ul li {
  background-color: #f4f4f4;
  border-radius: var(--border-radius);
  padding: 3.4rem;
  flex-basis: 48%;
  position: relative;
  overflow: hidden;
}
.hom-voice ul li p {
  font-size: 1.5rem;
}
.hom-voice__age {
  background-color: var(--color-base);
  color: var(--color-white);
  width: 130px;
  height: 130px;
  position: absolute;
  border-radius: 65px;
  top: -35px;
  left: -35px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: 2rem;
  padding-top: 25px;
  padding-left: 25px;
}
.hom-voice__age:after {
  content: "";
  width: 12px;
  height: 12px;
  transform: skew(15deg);
  position: absolute;
  right: 12px;
  bottom: 16px;
  background-color: var(--color-base);
}
.hom-voice__head {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin-left: 85px;
  margin-bottom: 1rem;
}
.hom-voice__profile {
  font-size: 1.4rem;
  color: var(--color-gray-dark);
  margin-bottom: 2rem;
  margin-left: 85px;
}
.hom-voice__button {
  text-align: center;
  margin-top: 4rem;
}
.hom-flow__left {
  flex-basis: 51%;
}
.hom-flow__right {
  flex-basis: 44%;
}
.hom-flow__list {
  padding-left: 0;
  margin: 0;
}
.hom-flow__list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  counter-increment: step;
  margin-top: 5.6rem;
}
.hom-flow__list dl {
  border: 1px solid var(--color-base);
  position: relative;
  height: 100%;
}
.hom-flow__list dl:before {
  content: "Step" counter(step);
  background-color: var(--color-white);
  border: 2px solid var(--color-base);
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  top: -2rem;
  left: 0;
  font-size: 2rem;
  line-height: 1;
  padding: 0.6rem 3rem;
  color: var(--color-base);
  font-weight: 700;
}
.hom-flow__list dl dt {
  background-color: var(--color-base);
  color: var(--color-white);
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  padding: 1.1em;
}
.hom-flow__list dl dd {
  padding: 3rem;
}
.hom-flow__img img {
  border-radius: calc(var(--border-radius) * 3);
}
.hom-owner .profile-owner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hom-owner .hom-owner__left {
  width: 400px;
}
.hom-owner .hom-owner__right {
  width : calc(100% - 450px);
}
.hom-owner h3 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px dashed var(--color-base);
}
.hom-owner h3 i {
  margin-right: 0.8rem;
  color: var(--color-base);
}
.hom-owner h4 {
  font-size: 2.0rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-base);
}
.hom-faq__wrap {
  background-color: var(--color-base2);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 24px;
}
.hom-faq {
  margin-top: 80px;
}
.hom-faq__text {
  padding: 10px 10px 0 10px;
}
.hom-faq h2 {
  margin-top: 0px;
}
.hom-faq__list {
  list-style: none;
  padding-left: 0;
}
.hom-faq__list li {
  border-top: 1px solid var(--color-text);
}
.hom-faq__list li:last-child {
  border-bottom: 1px solid var(--color-text);
}
.hom-faq__list li dl dt {
  line-height: 1.6;
  position: relative;
  font-size: 2rem;
  padding: 2.5rem 2.5rem 2.5rem 6rem;
  cursor: pointer;
  transition: 0.2s;
}
.hom-faq__list li dl dt:hover {
  color: var(--color-base);
}
.hom-faq__list li dl dt:before {
  content: "Q";
  color: var(--color-base);
  font-weight: 700;
  position: absolute;
  top: calc(46%);
  left: 20px;
  transform: translateY(-50%);
  font-size: 3rem;
}
.hom-faq__list li dl dt:after {
  content: "＋";
  position: absolute;
  right: 2rem;
  top: 50%;
  color: var(--color-gray-dark);
  transform: translateY(-50%);
}
.hom-faq__list li dl dd {
  /* display: none; */
  line-height: 1.6;
  position: relative;
  padding: 0 2.4rem 0 6rem;
  transition: 0.4s var(--cubic-bezier);
  height: 0;
  overflow: hidden;
}
.hom-faq__list li dl dd.is-active {
  display: block;
  padding: 0 2.4rem 2.4rem 6rem;
  height: auto;
}
.hom-faq__list li dl dd:before {
  content: "A";
  color: var(--color-base);
  font-weight: 700;
  position: absolute;
  top: 1rem;
  left: 20px;
  transform: translateY(-50%);
  font-size: 3rem;
}
.hom-news {
}
.hom-news__list {
  list-style: none;
  padding: 0;
}
.hom-news__list li {
  border-top: 1px solid var(--color-gray);
  padding: 2rem;
}
.hom-news__list li:last-child {
  border-bottom: 1px solid var(--color-gray);
}
.hom-news__list li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.hom-news__list li a:hover {
  color: var(--color-base);
}
.hom-news__list li .img-box {
  width: 60px;
  height: auto;
  margin-right: 2rem;
}
.hom-news__list li .img-box img {
  width: 100%;
  height: auto;
}
.hom-news__list li .wrap-block {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
}
.hom-news__list li .date-box {
  width: 15rem;
  height: auto;
}
.hom-news__list li .icon-box {
  display: block;
  width: 10rem;
  margin-right: 2rem;
}
.hom-news__list li .icon-box .cate-mark {
  font-size: 1.3rem;
  text-align: center;
  display: inline-block;
  padding: 0px 5px;
  background-color: var(--color-base);
  color: var(--color-white);
  border-radius: 3px;
  width: 100%;
}
.hom-access .profile-list {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}
.hom-access .profile-list ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.l-banner {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.l-banner a:hover {
  opacity: 0.7;
}
.l-banner__large {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.l-banner__large li {
  flex-basis: 49%;
}
.l-banner__small {
  list-style: none;
  padding: 0;
  margin-top: 5.6rem;
  display: flex;
  justify-content: center;
}
.l-banner__small li {
  margin: 0 10px;
}

@media (max-width: 768px) {
  /*body {
    font-size: 1.4rem;
  }*/
  .l-main {
    margin-top: 70px;
  }
  .l-container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: calc(var(--max-content-width) + 20px);
  }
  .c-btn--default {
    min-width: 100%;
    font-size: 1.6rem;
  }
  .c-btn--line {
    font-size: 2rem;
  }
  .c-h2 {
    font-size: 2.4rem;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
  }
  .c-hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  
  
  
  .l-header {
    height: 70px;
  }
  .l-header__tel {
    display: none;
  }
  .l-header__reservation {
    margin: 0;
  }
  .l-header__reservation span {
    display: none;
  }
  .l-header__reservation a {
    border: none;
    padding: 0.8em 0.2em;
  }
  .l-header__reservation i {
    font-size: 2.4rem;
    color: var(--color-base3);
    margin: 0;
  }
  .l-header__wrap {
    height: 70px;
    padding: 10px 10px 0;
  }
  .l-header__logo {
    position: static;
    max-width: 190px;
  }
  .l-header__tagline {
    top: 4px;
    left: 50%;
    font-size: 1rem;
    transform: translateX(-50%);
  }
  .l-header__bar {
    width: 50px;
    height: 70px;
    margin-left: 15px;
  }
  .l-header__bar span {
    width: 35px;
  }
  .l-header__bar span:nth-child(1) {
    top: 24px;
    right: 7.5px;
  }
  .l-header__bar span:nth-child(2) {
    top: 35px;
    right: 7.5px;
  }
  .l-header__bar span:nth-child(3) {
    top: 46px;
    right: 7.5px;
  }
  .l-header__bar.is-open span:nth-child(1) {
    top: 24px;
    right: 4.5px;
  }
  .l-header__bar.is-open span:nth-child(3) {
    top: 24px;
    right: 10.5px;
  }
  .l-footer {
    padding-bottom: 80px;
  }
  .l-footer__address img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
  .l-spBottomNav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 80px;
  }
  .l-spBottomNav ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  .l-spBottomNav ul li {
    height: 80px;
  }
  .l-spBottomNav ul a {
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 80px;
  }
  .l-spBottomNav__tel {
    background-color: #f2dbc1;
    flex-basis: 50%;
    font-weight: bold;
  }
  .l-spBottomNav__tel img {
    width: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
  }
  .l-spBottomNav__tel span.tel-box {
    font-size: 1.8rem;
  }
  .l-spBottomNav__tel span.txt-box {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
  }
  .l-spBottomNav__line {
    background-color: var(--color-base);
    font-size: 1.3rem;
    line-height: 1.3;
    flex-basis: 50%;
  }
  .l-spBottomNav__line a {
    color: var(--color-white);
  }
  .l-spBottomNav__line img {
    display: block;
    height: 35px;
  }
  .l-spBottomNav__line span {
    display: block;
    font-size: 1.2rem;
    width: 100%;
  }
  .l-spBottomNav__mail {
    background-color: var(--color-base3);
    font-size: 1rem;
    flex-basis: 30%;
  }
  .l-spBottomNav__mail span {
    display: block;
    width: 100%;
  }
  .l-spBottomNav__mail img {
    height: 40px;
  }
  .l-spBottomNav__mail a {
    color: var(--color-white);
  }
  .l-pagetitle h1 {
    font-size: 2.4rem;
  }

  .hom-h2 {
    font-size: 2.4rem;
    margin-top: 6rem;
    margin-bottom: 2.8rem;
  }
  .hom-mainVisual {
    padding-top: 30px;
  }
  .hom-mainVisual__bg {
    margin-top: 20px;
    padding-left: 0px;
    height: 50vh;
  }
  .hom-mainVisual__bg img {
    height: 36vh;
    object-position: center;
  }
  .hom-mainVisual__text h1 {
    position: static;
    top: auto;
    left: auto;
    margin-left: 20px;
    transform: none;
    /*font-size: min(4vw, 1.3rem);*/
  }
  .hom-mainVisual__text h1 b {
    /*margin-top: 0.3em;*/
    font-size: min(7vw, 2.2rem);
  }
  .hom-cta {
    margin-top: -11rem;
  }
  .hom-cta__inner {
    padding: 10px;
  }
  .hom-cta h2 {
    font-size: 1.8rem;
    padding: 0.7em 2em;
    width: auto;
    /*width: calc(100% + 40px);*/
    /*margin-left: -20px;*/
  }
  .hom-cta h2 b {
    font-size: 2.4rem;
  }
  .hom-cta__text {
    font-size: 1.5rem;
  }
  .hom-cta__text h3 {
    font-size: 2rem;
    text-align: center;
  }
  .hom-cta__right {
    margin-left: 0;
  }
  .hom-cta__right__text {
    margin-top: 2rem;
  }
  .hom-cta__point {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    /*justify-content: center;*/
    flex-wrap: wrap;
    /*margin-top: 3rem;*/
    justify-content: space-between;
    align-items: center;
  }
  .hom-cta__point li {
    font-size: 1.3rem;
    padding: 0.8em 0.7em;
    /*margin: 0.5rem 1rem;*/
    min-width: auto;
    margin: 0.8rem 0;
  }
  .hom-about__left {
    flex-basis: 100%;
  }
  .hom-about__right {
    flex-basis: 100%;
  }
  .hom-about h3 {
    font-size: 2rem;
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
  }
  .hom-diet h2 {
    margin-bottom: 0;
  }
  .hom-diet h3 {
    font-size: 2rem;
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
  }
  .hom-diet__left {
    flex-basis: 100%;
  }
  .hom-diet__right {
    flex-basis: 100%;
  }
  .hom-diet__wrap {
    margin-top: 0;
  }
  .hom-diet__left--reverse {
    order: 1;
    flex-basis: 100%;
  }
  .hom-diet__right--reverse {
    order: 2;
    flex-basis: 100%;
  }
  .hom-reason__counseling {
    font-size: 2rem;
  }
  .hom-reason__counseling span {
    font-size: 1.8rem;
  }
  .hom-reason {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
  .hom-reason__left {
    flex-basis: 100%;
  }
  .hom-reason__right {
    flex-basis: 100%;
    margin-top: 2rem;
  }
  .hom-reason__wrap {
    margin-top: 2.8rem;
  }
  .hom-reason__left--reverse {
    order: 1;
    flex-basis: 100%;
  }
  .hom-reason__right--reverse {
    flex-basis: 100%;
    margin-top: 2rem;
  }
  .hom-reason__wrap h3 {
    font-size: 2rem;
    margin-top: 1rem;
  }
  .hom-reason__wrap h3 span {
    margin-bottom: 1rem;
  }
  .hom-reason__wrap h3 span b {
    font-size: 4rem;
  }
  .hom-voice ul li {
    flex-basis: 100%;
    padding: 2.4rem;
  }
  .hom-voice ul li:not(:first-child) {
    margin-top: 2rem;
  }
  .hom-voice__head {
    font-size: 2rem;
    margin-left: 70px;
  }
  .hom-voice__age {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    font-size: 1.6rem;
    padding-top: 15px;
    padding-left: 15px;
  }
  .hom-voice__age:after {
    right: 8px;
    bottom: 12px;
  }
  .hom-voice__profile {
    margin-left: 0;
  }
  .hom-flow__left {
    flex-basis: 100%;
  }
  .hom-flow__list dl:before {
    font-size: 1.6rem;
  }
  .hom-flow__list dl dt {
    font-size: 2rem;
  }
  .hom-flow__list dl dd {
    padding: 2rem;
  }
  .hom-flow__right {
    flex-basis: 100%;
    margin-top: 2rem;
  }
.hom-owner .hom-owner__left {
  width: 75%;
  max-width: 300px;
  margin: 0 auto 1rem;
}
.hom-owner .hom-owner__right {
  width : 100%;
}
.hom-owner h3 {
  font-size: 2.2rem;
  text-align: center;
}
.hom-owner h3 i {
  margin-right: 0.8rem;
  color: var(--color-base);
}
.hom-owner h4 {
  font-size: 2.0rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-base);
}
  .hom-faq__list li dl dt {
    font-size: 1.6rem;
    padding: 2rem 3rem 2rem 5rem;
  }
  .hom-faq__list li dl dt:before {
    font-size: 2.4rem;
  }
  .hom-news__list li {
    padding-left: 0;
    padding-right: 0;
  }
  .hom-news__list li a {
    flex-wrap: wrap;
  }
  .hom-news__list li .wrap-block {
    width: calc(100% - 80px);
    flex-wrap: wrap;
  }
  .hom-news__list li .date-box {
    display: block;
    width: 100%;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  .hom-news__list li .title-box {
    margin-top: 0.5rem;
    display: block;
    width: 100%;
  }
  .hom-access .profile-list {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
  }
  .hom-access .profile-list ul {
    margin: 0 0 20px;
  }
  .l-banner {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .l-banner__large li {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
  .l-banner__small {
    margin-top: 2.8rem;
  }
}



.u-disp--sm,
.u-disp--md,
.u-disp--lg {
  display: none !important;
}
@media (min-width: 0) and (max-width: 767px) {
  .u-disp--sm {
    display: inherit !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .u-disp--md {
    display: inherit !important;
  }
}
@media (min-width: 992px) {
  .u-disp--lg {
    display: inherit !important;
  }
}


@media screen and (min-width: 1700px) {
  .hom-mainVisual__bg {
    /*padding-left: 120px;
    width: 100%;*/
    height: 660px;
  }
  .hom-mainVisual__bg img {
    /*width: 100%;*/
    height: 660px;
    /*object-fit: cover;*/
    object-position: 50% 5%;
  }
}


/* =================================================== */
/* ABOUT PAGE
/* =================================================== */
#aboutus {
  
}

#aboutus h6 {
  display: block;
  background-color: var(--color-base);
  color: #ffffff;
  font-size: 1.8rem;
  padding: 1.0rem 2rem 1.4rem;
  border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

/* =================================================== */
/* DIET PAGE
/* =================================================== */

/* =================================================== */
/* HOUSOKU PAGE
/* =================================================== */

/* =================================================== */
/* SHOKAI PAGE
/* =================================================== */
#shokai .l-container img {
  height: auto;
}

/* =================================================== */
/* VOICE PAGE
/* =================================================== */
#voice {
  
}
#voice .inlink-listMenu {
  margin-top: 60px;
  margin-bottom: 60px;
}
#voice .inlink-listMenu ul {
  list-style: none;
  margin-top: 40px;
  margin-left: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: stretch;
  gap: 0 10px;
}
#voice .inlink-listMenu li {
  width: 22%;
}
#voice .inlink-listMenu li a {
  text-decoration: none;
  display: block;
  background-color: var(--color-base);
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  padding: 0.5rem 2rem 0.8rem;
  border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
#voice .inlink-listMenu li a:hover {
  background-color: var(--color-base3);
}
#voice .l-container h4.title {
  text-decoration-style: none!important;
  text-decoration: none!important;
  border: none!important;
  display: block;
  background-color: var(--color-base);
  color: #ffffff;
  font-size: 1.8rem;
  padding: 1.0rem 2rem 1.4rem;
  border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
  margin-top: 60px;
}
#voice .l-container img {
  display: inline-block;
}
#voice .l-container h5 {
  
}

/* =================================================== */
/* FAQ PAGE
/* =================================================== */
#faq .l-container .txt-Q {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-base);
  padding-right: 8px;
}
#faq .l-container h3 {
  padding-left: 5px;
}
#faq .l-container h3::before {
    content: none;
    position: absolute;
    top: 1.4rem;
    left: 0rem;
    width: auto;
    height: auto;
}
#faq .l-container .txt-A {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-accent2);
  padding-right: 8px;
}
#faq .l-container p {
  padding-left: 5px;
  padding-right: 5px;
}


/* =================================================== */
/* ACCESS PAGE
/* =================================================== */
/*#access .inlink-listMenu {
  margin-top: 60px;
  margin-bottom: 60px;
}
#access .inlink-listMenu ul {
  list-style: none;
  margin-top: 40px;
  margin-left: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: stretch;
  gap: 0 10px;
}
#access .inlink-listMenu li {
  width: 45%;
}
#access .inlink-listMenu li a {
  text-decoration: none;
  display: block;
  background-color: var(--color-base);
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  padding: 0.5rem 2rem 0.8rem;
  border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
#access .inlink-listMenu li a:hover {
  background-color: var(--color-base3);
}*/

#access .l-container .profile-list ul {
  list-style: none;
  padding-left: 0;
}
#access .l-container .access-car ul,
#access .l-container .access-subway ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
}
#access .l-container .access-subway li {
  display: block;
  width: 322px;
}
#access .l-container .access-map,
#access .l-container .gMapBlock {
  margin-top: 60px;
}
#access .l-container .access-map {
  border: 1px solid #cccccc;
  width: 100%;
  padding: 20px;
  text-align: center;
}
#access .l-container .access-map img {
  margin: 0 auto;
}
#access .l-container .gMapBlock iframe {
  width: 100%;
}



/* =================================================== */
/* DENBA PAGE
/* =================================================== */
#denba .l-pagetitle--denba {
  background-image: url("assets/img/denba/img-pagetitle-bg.jpg");
}
#denba .l-container--middle {
  max-width: calc(var(--max-middle-content-width) + 80px);
}
.denba-intro__wrap .c-figure img {
  margin: 0 auto;
}
.denba-about__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.denba-about__text {
  flex-basis: 55%;
}
.denba-about__img {
  flex-basis: 40%;
}
.denba-about__wrap.block-1 .denba-about__text2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-base);
}
.denba-about__wrap.block-2 {
  margin-top: 30px;
}
.denba-about__wrap.block-2 .denba-about__text {
  order: 2;
}
.denba-about__wrap.block-2 .denba-about__img {
  order: 1;
}
.denba-case__wrap {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.denba-case__text {
  flex-basis: 55%;
}
.denba-case__img {
  flex-basis: 40%;
}
.denba-case__text dt {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-base);
}
.denba-case__text dd {
  margin-bottom: 15px;
}
.denba-worries {
  background-color: #dee7ef;
  margin-top: 8rem;
  padding: 4rem 0;
}
.denba-worries__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.denba-worries__text {
  flex-basis: 45%;
}
.denba-worries__text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.denba-worries__img {
  flex-basis: 50%;
}
.denba-worries__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.denba-worries__list li {
  position: relative;
  padding-left: 30px;
}
.denba-worries__list li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #003399;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-45%);
}
.denba-worries__list li:after {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  position: absolute;

  top: 50%;
  left: 6px;
  transform: translateY(-45%) rotate(-50deg);
}
.denba-products__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.denba-products__person {
  background-color: var(--color-gray);
  font-size: 1.4rem;
  border-radius: 100px;
  display: inline-block;
  padding: 0.2em 1em;
}
.denba-products__img {
  flex-basis: 40%;
}
.denba-products__text {
  flex-basis: 55%;
}
.denba-products__text h2 {
  font-size: 3.4rem;
  line-height: 1.5;
}
.denba-products__text table {
  font-size: 1.4rem;
}
.denba-products__price {
  font-size: 2rem;
  color: #003399;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.denba-products__subimg ul {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.denba-products__subimg ul li {
  text-align: center;
  flex-basis: 24.5%;
  margin-top: 3rem;
  border: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: center;
  align-items: center;
}
.denba-trial__wrap {
  border: 4px double var(--color-base);
  padding: 2rem 3.2rem;
  background-color: var(--color-base2);
}
.denba-trial__wrap .c-h2 {
  font-size: 2.8rem;
  color: var(--color-base);
  margin-top: 0;
}
.denba-movie__wrap {
  margin-top: 3rem;
}
.denba-movie__wrap .youtube-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.denba-movie__wrap .youtube-list li {
  width : -webkit-calc(50% - 10px);
  width : calc(50% - 10px);
  border: 1px solid #cccccc;
}
.denba-movie__wrap .youtube-list iframe {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #denba .l-pagetitle--denba {
    background-position: center right;
  }
  .denba-about__text {
    flex-basis: 100%;
  }
  .denba-about__img {
    flex-basis: 100%;
  }
  .denba-about__wrap.block-2 .denba-about__text {
    order: 1;
  }
  .denba-about__wrap.block-2 .denba-about__img {
    order: 2;
  }
  .denba-case__text {
    flex-basis: 100%;
  }
  .denba-case__img {
    flex-basis: 100%;
  }
  .denba-case__text dt {
    font-size: 1.8rem;
  }
  .denba-worries {
    margin-top: 4rem;
    padding: 3rem 0;
  }
  .denba-worries__text {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
  .denba-worries__img {
    flex-basis: 100%;
  }
  .denba-products__img {
    flex-basis: 100%;
  }
  .denba-products__text {
    flex-basis: 100%;
  }
  .denba-products__text h2 {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
  .denba-products__price {
    font-size: 1.8rem;
  }
  .denba-products__text table {
    font-size: 1.3rem;
  }
  .denba-products__subimg ul {
    margin-top: 2rem;
  }
  .denba-products__subimg ul li {
    margin-top: 2rem;
  }
  .denba-trial__wrap {
    padding: 1rem 1.5rem;
  }
  .denba-trial__wrap .c-h2 {
    font-size: 2.0rem;
  }
  .denba-movie__wrap .youtube-list li {
    width : 100%;
  }
}

/* =================================================== */
/* PRODUCT PAGE
/* =================================================== */

#products .page-read---txt {
  font-size: 1.8rem;
}
#products .l-container {
  margin-top: 20px;
}
#products .l-container h2.ttl-box {
  display: block;
  width: 100%;
  padding: 0.1rem 1.5rem;
  font-size: 3.2rem;
  color: #ffffff;
  background-color: var(--color-base);
}
#products .l-container .read-txt {
  margin-bottom: 30px;
}
#products .l-container .wrap-block h3.ttl-box {
  margin-top: 0;
}
#products .cf--Block + .cf--Block {
  margin-top: 50px;
}
#products .l-container .wrap-block .item-group {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#products .l-container .wrap-block .item-group + .item-group {
  margin-top: 50px;
}
#products .l-container .wrap-block .img-box {
  width: 350px;
}
#products .l-container .wrap-block .img-box img {
  margin: 0;
  width: 350px;
  height: 350px;
  object-fit: cover;
}
#products .l-container .wrap-block .box-right {
  width : -webkit-calc(100% - 400px);
  width : calc(100% - 400px);
}

@media (max-width: 768px) {
  #products .l-container h2.ttl-box {
    font-size: 2.4rem;
  }
  #products .cf--Block h3.ttl-box {
    margin-top: 20px
  }
  #products .l-container .wrap-block .img-box {
    width: 320px;
    margin: 0 auto;
  }
  #products .l-container .wrap-block .img-box img {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }
  #products .l-container .wrap-block .box-right {
    width : 100%;
  }
}

/* --------------------------------------------------- */
/* ネットで予約
/* --------------------------------------------------- */
@media only screen and (min-width: 0px) and (max-width:480px) {
  body#toi input[type="text"],body#toi input[type="email"],body#toi textarea {
    width : -webkit-calc(100% - 20px);
    width : calc(100% - 20px);
  }
}



/* =================================================== */
/* WP Plugin
/* =================================================== */
#dynamic-to-top {
  bottom: 90px!important;
  right: 10px!important;
}