@charset "UTF-8";
/* ================================================== */
/* common */
/* ================================================== */
/* Reset css */
/* -------------------------------------------------- */
/*** The new CSS reset
		- version 1.11.1 (last updated 24.10.2023) ***/
/* -------------------------------------------------- */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

body * {
  line-height: 1;
  letter-spacing: 0.05rem;
}

* a, * button {
  text-underline-offset: 1rem;
}

/* ================================================== */
/* common */
/* ================================================== */
body {
  font: normal normal normal 16px/175% "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  letter-spacing: 1px;
  text-align: center;
}

body,
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: max-height 0.75s;
}

a {
  color: #333;
  text-decoration: none;
  text-underline-offset: 5px;
}

button {
  text-decoration: none;
  text-underline-offset: 5px;
}

a:hover {
  color: brown;
  transition: color 0.3s, background-color 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 auto;
  padding: 0;
  font-weight: normal;
  line-height: 130%;
  letter-spacing: 0.5px;
  position: relative;
  font: normal normal normal 21px/150% "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 16px;
}

p {
  margin: 1.5rem auto;
  width: 100%;
  font-size: 16px;
  line-height: 150%;
}

ul li,
ol li {
  list-style: none;
  line-height: 120%;
  padding: 0;
  margin: 0 auto;
}

img {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

/* ================================================== */
/* .wrap */
/* ================================================== */
.--hide-sm {
  display: block;
}

.--show-sm,
.--show-sm-small {
  display: none;
}

.no-link {
  pointer-events: none;
  text-decoration: none !important;
}

/* スクロールバーの背景色変更 */
.simplebar-track.simplebar-vertical {
  background: transparent;
}

.simplebar-scrollbar.simplebar-visible {
  height: 6rem;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

.simplebar-scrollbar::before {
  background: #666;
  opacity: 1;
}

/* ------------------------------------------------------------------------ */
/* mobile */
/* ------------------------------------------------------------------------ */
@media screen and (max-width: 860px) {
  /* 768px未満 */
  .--hide-sm {
    display: none;
  }
  .--show-sm {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  /* 768px未満 */
  .--show-sm-small {
    display: block;
  }
}
/* ================================================== */
/* .wrap */
/* ================================================== */
/* ================================================== */
/*	Start
	.site-header */
/* ================================================== */
.site-header {
  margin: 0 auto;
  width: 100%;
  height: 550px;
  background: url(../image/common/index_head_bg.jpg) 0 40% no-repeat;
  background-size: cover;
}
#lower .site-header {
  height: 20rem;
  background-position: 50% 30%;
}
.site-header__inner {
  position: relative;
  margin: 0 auto;
  padding: 3rem 0.5rem 0;
  max-width: 1280px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.site-header__logo {
  width: 280px;
  margin-right: 2rem;
  text-align: left;
  color: #fff;
}
.site-header__logo a {
  color: inherit;
}
.site-header__logo-subtitle, .site-header__logo-title, .site-header__logo-text {
  margin-bottom: 1rem;
  font-size: 12px;
}
.site-header__logo-text {
  font-size: 10px;
}
.site-header__logo-image {
  display: block;
}
.site-header__toggle {
  display: none;
}
.site-header__contact {
  position: absolute;
  top: 0;
  right: 0;
  width: 19rem;
  height: 3.5rem;
  background: url(../images/common/phone_bg.png) 0 50% no-repeat;
  background-size: cover;
  border-radius: 0 0 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__contact-inner {
  display: block;
  width: calc(100% - 2rem);
  height: auto;
}
.site-header__phone {
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  padding: 0 1.5rem;
}
.site-header__phone.--hide-sm {
  display: block;
}

/* ------------------------------------------------------------------------ */
/* mobile */
/* ------------------------------------------------------------------------ */
@media screen and (max-width: 860px) {
  /* 768px未満 */
  .site-header {
    position: static;
    height: 240px;
  }
  #lower .site-header {
    position: static;
  }
  .site-header__inner {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: static;
    padding: 1rem 0 0 1rem;
  }
  .site-header__logo {
    margin: 0;
    padding: 0;
    width: calc(100% - 8rem);
    max-width: 280px;
    min-width: auto;
  }
  .site-header__toggle {
    display: block;
    width: 2rem;
    height: 2rem;
    position: -webkit-sticky;
    position: sticky;
    top: 1rem;
    left: calc(100vw - 3rem);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 9999;
    background-color: transparent;
    border: none;
  }
  .site-header__toggle span, .site-header__toggle span::after, .site-header__toggle span::before {
    position: relative;
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.5s;
  }
  .site-header__toggle span::before {
    top: -13px;
  }
  .site-header__toggle span::after {
    bottom: -10px;
  }
  .site-header__toggle.is-active span {
    background-color: transparent;
  }
  .site-header__toggle.is-active span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .site-header__toggle.is-active span::after {
    transform: rotate(-45deg);
    bottom: 2px;
  }
  .site-header__contact {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 9rem;
    border-top: 1px solid #666;
    border-radius: 0;
    z-index: 99999;
    background-image: none;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .site-header__contact-inner {
    /* padding: 0.75rem 0; */
    display: block;
    height: auto;
    width: auto;
  }
  .site-header__phone {
    padding: 0;
    margin: 0 auto;
    border-radius: 0.5rem;
    height: calc(100% - 1rem);
    width: auto;
    max-width: 400px;
  }
  .site-header__phone.--hide-sm {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  /* 420px未満 */
  .site-header__contact {
    height: 7rem;
  }
  .site-header__contact-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .site-header__phone {
    height: auto;
    width: auto;
    max-width: 320px;
    margin: auto;
  }
}
@media screen and (max-width: 420px) {
  /* 420px未満 */
  .site-header__contact {
    height: 6rem;
  }
  .site-header__phone {
    max-width: 280px;
  }
}
/* ----------------------------------- */
/* .site-nav */
/* ----------------------------------- */
.site-nav {
  height: 74px;
  background-color: transparent;
}
.site-nav__menu {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.site-nav__menu-item {
  height: 4rem;
  margin: 0 1.25rem 0 0;
  position: relative;
  display: flex;
  align-items: center;
}
.site-nav__menu-item.--has-children:hover .site-nav__sub-menu-wrap {
  display: flex;
}
.site-nav__menu-item-link {
  padding: 1rem 0;
  background: none;
  border: none;
  font-size: 15px;
  text-decoration: underline;
  color: #fff;
  position: relative;
}
.site-nav__menu-item-link:hover {
  color: #ccc;
}
.site-nav__menu-item-link.--has-children {
  padding-right: 1rem;
}
.site-nav__menu-item-link.--has-children::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  transition: transform 0.4s;
}
.site-nav__sub-menu-wrap {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  background-color: #fff;
  width: 600px;
  padding: 2rem;
  text-align: center;
  z-index: 99999;
}
.site-nav__sub-menu-wrap::before {
  content: "";
  display: block;
  width: 5rem;
  height: 7px;
  background-color: #900;
  position: absolute;
  top: -5px;
  left: 0;
}
.site-nav__sub-menu {
  margin-right: 1.5rem;
}
.site-nav__sub-menu-list {
  margin: 0 0 1rem;
}
.site-nav__sub-menu-list.--has-children {
  margin-bottom: 2rem;
}
.site-nav__sub-menu-list:last-of-type {
  margin-bottom: 0;
}
.site-nav__sub-menu-list-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  font-size: 16px;
}
.site-nav__sub-menu-list-link::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #cc0133;
  display: block;
}
.site-nav__sub-sub-menu-list {
  margin: 0.75rem 0;
}
.site-nav__sub-sub-menu-list:last-of-type {
  margin-bottom: 0;
}
.site-nav__sub-sub-menu-list-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
}
.site-nav__sub-sub-menu-list-link::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #567;
  display: block;
}

@media screen and (max-width: 860px) {
  /* 768px未満 */
  .site-nav {
    transition: all 0.5s;
    position: fixed;
    width: 94%;
    max-width: 100%;
    min-width: 100px;
    height: 100%;
    top: 0px;
    left: 100%;
    background-color: #e5ddd5;
    padding: 0;
    z-index: 999;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
  }
  .site-nav.is-open {
    left: 6%;
    box-shadow: 4px 4px 32px 0px rgba(78, 52, 44, 0.2);
  }
  .site-nav.is-open .site-nav__link.--has-children::before {
    transform: rotate(135deg);
    margin-top: -5px;
  }
  .site-nav__logo {
    width: 80%;
    max-width: 180px;
    margin: 1.5rem auto 2rem;
  }
  .site-nav__menu {
    display: block;
    width: 84%;
    padding: 0;
    margin: 24px auto;
    border-top: 1px solid #cec6bd;
  }
  .site-nav__menu-item {
    position: relative;
    border-bottom: 1px solid #cec6bd;
    position: relative;
    width: 100%;
    display: block;
    height: auto;
    text-align: left;
  }
  .site-nav__menu-item.--has-children.is-open .site-nav__sub-menu-wrap {
    max-height: 100vh;
    display: block;
  }
  .site-nav__menu-item-link {
    display: block;
    width: 100%;
    padding: 0.75rem 0 0.75rem 0.5rem;
    text-align: left;
    font-size: 13px;
    color: #333;
  }
  .site-nav__menu-item-link:hover {
    color: #666;
  }
  .site-nav__menu-item-link.--has-children {
    text-decoration: none;
  }
  .site-nav__menu-item-link.--has-children::before {
    right: 1rem;
    border-color: #333;
    width: 8px;
    height: 8px;
  }
  .site-nav__sub-menu-wrap {
    display: block;
    height: auto;
    max-height: 0;
    overflow: hidden;
    position: static;
    width: 100%;
    padding: 0;
    font-size: 13px;
    flex-flow: row wrap;
  }
  .site-nav__sub-menu-wrap::before {
    display: none;
  }
  .site-nav__sub-menu {
    margin: 1rem 1.75rem 1rem;
    width: 100%;
  }
  .site-nav__sub-menu:last-child {
    margin: 0 1.75rem 1rem;
  }
  .site-nav__sub-menu:only-child {
    margin: 1rem 1.75rem;
  }
  .site-nav__sub-menu-list-link {
    margin: 1rem 0;
  }
  .site-nav__sub-menu-list-link.--has-children {
    padding: 0;
    margin: 0 0 1rem;
  }
  .site-nav__sub-sub-menu-list {
    margin: 0.8rem 0;
  }
  .site-nav__sub-sub-menu-list-link::before {
    width: 12px;
    height: 3px;
  }
}
/* ================================================== */
/* common */
/* ================================================== */
html, body {
  margin: 0 auto;
  padding: 0;
  font: normal normal normal 16px/175% "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  font-feature-settings: "halt";
}

body, body * {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font: normal normal normal 16px/175% "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #333;
  font-feature-settings: "halt";
  letter-spacing: 1px;
}

ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
  letter-spacing: 1px;
}

p {
  margin: 0;
  letter-spacing: 1px;
}

a {
  color: #171825;
  text-decoration: none;
}

a:hover {
  color: #8f2e14;
}

/* ================================================== */
/* 	Start
	.main-content
/* ================================================== */
.main-content {
  width: 100%;
  max-width: 100%;
  min-width: auto;
}

.main-content__inner {
  width: 100%;
  max-width: 100%;
  min-width: auto;
  padding: 3rem 0 0;
}

/* .main-content__heading */
.main-content__heading {
  margin: 0 auto 2rem;
  font-size: 28px;
}

.main-content__heading.--caption {
  /* margin: 0 auto 2rem; */
  padding: 0 0 2rem;
}

.main-content__heading:last-of-type {
  margin-bottom: 3rem;
}

.main-content__heading.--caption::after {
  content: "";
  display: block;
  width: 3rem;
  height: 5px;
  background-color: #900;
  position: absolute;
  bottom: 0.5rem;
  left: calc(50% - 1.5rem);
}

.main-content__heading.--greeting::after {
  left: 0;
}

/* .more-button */
.more-button {
  display: block;
  width: 16rem;
  background-color: brown;
  color: #fff;
  margin: 2rem auto;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.more-button.--greeting {
  display: block;
  width: 16rem;
  background-color: #fff;
  color: #900;
  margin: 2rem 0;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
}

.more-button.--news {
  display: block;
  width: 20rem;
  height: 5rem;
  border-radius: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  /* margin: 32px auto 0; */
  padding: 0 2rem;
  border: 1px solid #8f2e14;
  position: relative;
  background-color: #8f2e14;
  color: #fff;
  font-size: 18px;
}

.more-button.--news::before, .more-button.--news::after {
  /* background-color: #fff; */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  /* background-color: #fff; */
}

.more-button.--news::before {
  width: 13px;
  height: 13px;
  right: 1.8rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

.more-button.--news::after {
  /* left: 1px; */
  right: 1.7rem;
  width: 20px;
  height: 1px;
  background-color: #fff;
}

/* content */
.content {
  margin: 3rem auto;
  padding: 0;
}

.hero {
  width: 60%;
  max-width: 780px;
}

.content__image {
  max-width: 600px;
}

/* greeting */
.greeting {
  width: 90%;
  max-width: 900px;
  min-width: auto;
  background-color: beige;
  padding: 16rem 3rem 2rem;
  margin: -12rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  background-color: #e5ddd5;
}

.greeting__text {
  width: 55%;
  text-align: left;
}

.main-content__heading_ruby {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 14px;
}

.greeting__profile {
  width: 45%;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.2);
}

.greeting__profile-name {
  font-size: 21px;
  margin: 0 auto 1rem;
}

.greeting__profile-career-title {
  font-size: 18px;
  display: block;
  margin-bottom: 0.5rem;
}

.greeting__profile-career {
  font-size: 15px;
  line-height: 170%;
  margin: 0 auto 0.5rem;
}

.greeting__profile-career:last-of-type {
  margin: 1rem auto 0;
}

/* .info-card */
.info-card {
  margin: 3rem auto;
}

.info-card__text {
  margin: 3rem auto;
}

.info-card__media {
  margin: 3rem auto;
}

.info-card__text-letter {
  margin: 1.5rem auto;
}

/* .news */
.news {
  width: 100%;
  background-color: #e5ddd5;
  padding: 4rem 0;
  margin: 4rem auto;
}

.main-content__heading.--news {
  margin-top: 0;
}

.news__list {
  /* overflow-y: scroll; */
  border: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  height: 24rem;
  width: 90%;
  max-width: 1000px;
  min-width: 300px;
  display: flex;
  padding: 1.5rem 0;
  margin: 2rem auto 3rem;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  /* scrollbar-color: rgba(0, 0, 0, 0.35) #c8b4a1; */
}

.news__item {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  width: calc(100% - 4rem);
  height: auto;
  min-height: 3.5rem;
  font-size: 16px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
}

.news__item a {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}

.news__item-title {
  width: auto;
  order: 3;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0;
  margin: 0;
}

.news__item-date {
  width: auto;
  color: #703828;
  font-weight: 700;
  margin: 0 1rem 0 0;
  order: 1;
  padding: 0;
  /* margin: 0; */
}

.news__item-category {
  display: none;
}

/* pricing */
.pricing {
  margin: 4rem auto;
}

.pricing__table {
  width: calc(100% - 4rem);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #567;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing__table th,
.pricing__table td {
  padding: 1rem;
  line-height: 150%;
}

.pricing__table th {
  border: 1px solid #567;
  background: #f0e6cc;
}

.pricing__table td {
  border: 1px solid #567;
}

/* sns */
.sns.--follow {
  width: 100%;
  max-width: 1280px;
  margin: 48px auto;
}

.sns__inner {
  width: 90%;
  background: url(https://relinks.jp/image/bg-stripe.png) left top repeat;
  justify-content: center;
  background-size: 56px 56px;
  padding: 1.625rem 1rem;
  gap: 1.625rem;
  margin: 1rem auto;
  /* background: #f0f0f0; */
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0;
  height: 120px;
  justify-content: center;
  border: 1px solid #deeced;
  margin: 2rem auto;
  padding: 2rem;
  height: auto;
}

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

.sns__icon {
  height: 3rem;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1rem auto;
  flex-flow: row wrap;
  width: calc(100% - 4rem);
  max-width: 1280px;
}

.flex-box::after {
  content: "";
  display: block;
  width: 32%;
}

.flex-box__item {
  width: 32%;
  background-color: rgba(229, 221, 213, 0.75);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 0 0 1rem;
}

.flex-box__image {
  border-radius: 0.5rem 0.5rem 0 0;
  margin: 0 auto 1rem;
}

.flex-box__text {
  text-align: left;
  padding: 0 0.5rem;
}

@media screen and (max-width: 860px) {
  /* 768px未満 */
  .main-content__heading {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
  .main-content__heading:buffering {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
  .main-content__heading.--caption::after {
    left: calc(50% - 1.5rem);
  }
  .more-button.--greeting {
    margin: 2rem auto;
  }
  /* content */
  .hero {
    width: 100%;
  }
  .content__image {
    max-width: 70%;
  }
  /* greeting */
  .greeting {
    width: calc(100% - 2rem);
    padding: 8rem 2rem 2rem;
    margin: -6rem auto 1rem;
  }
  .greeting__text {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .greeting__profile {
    width: 100%;
  }
  .greeting__profile-career {
    width: 100%;
    margin: 0 auto 0.5rem;
  }
  .greeting__profile-career:last-of-type {
    margin: 1rem auto 0;
  }
  /* .info-card  */
  .info-card__text-letter {
    font-size: 15px;
  }
  .news__item {
    padding: 1rem;
  }
  .news__item:last-of-type {
    margin-bottom: 0;
  }
  .news__item-date {
    margin: 0 1rem 0.25rem 0;
  }
  /*============================
  #fee.content.pricing
  ============================*/
  .pricing__table {
    width: calc(100% - 2rem);
    font-size: 13px;
    line-height: 150%;
  }
  .pricing__table th,
.pricing__table td {
    padding: 0.75rem 0.5rem;
    letter-spacing: 0;
  }
  .pricing__table td {
    font-size: 12px;
  }
  /* table */
  .scrollable-table {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 0.5rem 0 0;
    /* border-right: 1px dashed #999; */
    scrollbar-color: #678 #fff;
    /* scrollbar-color: #197888 #fff; */
  }
  .scrollable-table table {
    /* width: 600px; */
    margin: 0 0 3px;
    padding: 0;
  }
  .scroll-hint-icon {
    background-color: #197888;
  }
  .scroll-hint-shadow-wrap::after,
.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    right: 4px;
    opacity: 0.5;
    border-left: 1px dashed #666;
  }
  /* sns */
  .sns__icon {
    height: 2rem;
  }
  .flex-box::after {
    width: 48%;
  }
  .flex-box__item {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  /* 480px */
  .flex-box::after {
    width: 100%;
  }
  .flex-box__item {
    width: 100%;
  }
}
/* ================================================== */
/*	#lower */
/* ================================================== */
#lower .site-header {
  height: 25vh;
  min-height: auto;
  max-height: 160px;
}

/* ================================================== */
#lower .main-content {
  margin-bottom: 6rem;
}

/* ================================================== */
/* #lower .main-content */
/* ================================================== */
#lower .main-content__inner {
  padding: 0;
}

#lower .content {
  margin: 3rem auto;
}

#lower .content.--heading {
  margin: 0 auto 3rem;
  padding: 3rem 0;
  background-color: #e5ddd5;
}

#lower .main-content__heading {
  margin: 0 auto 1.5rem;
  padding: 0;
  font: normal normal normal 16px/175% "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

#lower .main-content__heading.--ruby {
  margin: 0 auto;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#lower .main-content__heading.--ruby::after,
#lower .main-content__heading.--ruby::before {
  content: "";
  width: 1rem;
  height: 2px;
  background-color: #900;
  opacity: 0.5;
}

#lower .main-content__heading.--ruby::after {
  margin-left: 0.75rem;
}

#lower .main-content__heading.--ruby::before {
  margin-right: 0.75rem;
}

#lower .main-content__heading.--secontd {
  font-size: 28px;
  margin: 2rem auto;
  padding-bottom: 1rem;
}

#lower .main-content__heading.--third {
  font-size: 24px;
  margin: 3rem auto;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid #197888;
  display: inline-block;
}

#lower .main-content__heading.--secontd::before {
  content: "";
  display: block;
  height: 3px;
  width: 3rem;
  background-color: #900;
  bottom: 0;
  position: absolute;
  left: calc(50% - 1.5rem);
}

#lower .flex-box {
  margin-bottom: 3rem;
}

#lower .main-content__text {
  margin: 1.5rem auto;
  font-size: 18px;
  line-height: 175%;
}

/* .more-button */
.main-content__check {
  margin: 2rem auto;
}

.main-content__check-title {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
}

.main-content__check-icon {
  width: 1.5rem;
  fill: green;
  margin-right: 0.5rem;
}

.main-content__check-item {
  margin: 1rem auto;
  font-size: 14px;
}

.main-content__check-item {
  list-style: decimal;
}

.lower-content__heading::after {
  content: "";
  display: block;
  width: 3rem;
  height: 5px;
  background-color: #900;
  position: absolute;
  bottom: 0.5rem;
  left: calc(50% - 1.5rem);
}

.lower-content__text,
.lower-content__text {
  font-size: 16px;
  line-height: 200%;
  width: 90%;
  margin: 1rem auto;
}

.lower-contents__image-box,
.lower-content {
  width: 90%;
  max-width: 1280px;
  min-width: auto;
  margin: 1rem auto;
}

.lower-content__check-icon {
  width: 32px;
}

.lower-content__check {
  margin: 3rem auto;
  width: 500px;
  max-width: 95%;
}

.lower-content__check-list li {
  /* m */
  margin: 1rem 0;
  text-align: left;
  list-style: disc;
}

#lower .info-card {
  margin: 5rem auto;
}

#lower .info-card__image {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 4em);
  max-width: 1280px;
}
#lower .info-card__image.--small {
  max-width: 700px;
}
#lower .info-card__image.--medium {
  max-width: 900px;
}

#lower .content.--check {
  font-size: 14px;
  border: 5px solid #197888;
  padding: 3rem 3rem 2rem;
  margin: 3rem auto;
  width: calc(100% - 6rem);
  max-width: 540px;
}

#lower .main-content__heading.--check {
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 3rem;
}

#lower .main-content__check-item {
  line-height: 125%;
  text-align: left;
  margin: 1.5rem auto;
  list-style: none;
  font-size: 18px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

#lower .main-content__check-item .fa-regular {
  margin: 0 0.5rem 0 0;
}

@media screen and (max-width: 860px) {
  /* 860px未満 */
  .site-header__logo {
    max-width: 180px;
  }
  #lower .info-card {
    margin: 3rem auto;
  }
  #lower .info-card__image {
    width: calc(100% - 2em);
    max-width: calc(100% - 2em);
  }
  #lower .info-card__image.--small {
    width: calc(100% - 2em);
    max-width: calc(100% - 2em);
  }
  #lower .info-card__image.--medium {
    width: calc(100% - 2em);
    max-width: calc(100% - 2em);
  }
  #lower .content.--check {
    margin: 3rem auto;
    width: calc(100% - 6rem);
    max-width: 500px;
  }
}
@media screen and (max-width: 480px) {
  /* 480px未満 */
  .site-header__logo {
    max-width: 180px;
  }
  #lower .info-card {
    margin: 3rem auto;
  }
  #lower .info-card__image {
    width: calc(100% - 2em);
    max-width: calc(100% - 2em);
  }
  #lower .info-card__image.--small {
    max-width: calc(100% - 2em);
  }
  #lower .info-card__image.--medium {
    max-width: calc(100% - 2em);
  }
  #lower .content.--check {
    margin: 3rem auto;
    width: calc(100% - 4rem);
    max-width: calc(100% - 4rem);
  }
}
/* ================================================== */
/* .global-footer */
/* ================================================== */
/* ======================================== */
/* footer */
/* ======================================== */
.site-footer {
  background-color: #e5ddd5;
  margin: 0 auto;
  padding: 2rem 0;
  color: #302833;
  width: 100%;
  max-width: 100%;
  min-width: auto;
  text-align: left;
  font-weight: normal;
}

.site-footer__inner {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 1280px;
  min-width: auto;
}

.site-footer__box {
  width: calc(100% - 4rem);
  margin: 0 auto 3rem;
  padding: 0;
}

/* ------------------------------ */
/* .site-footer__logo { */
/* ------------------------------ */
.site-footer__logo-subtitle a,
.site-footer__logo-mark a {
  border: none;
}

.site-footer__logo-subtitle {
  font-size: 16px;
  margin: 0 0 8px 8px;
}

.site-footer__logo-mark {
  width: 340px;
  margin: 0;
  padding: 0;
  padding: 0 0 0 0.5rem;
}

.site-footer__logo-image {
  width: 240px;
}

/* ------------------------------ */
/* .site-footer-nav */
/* ------------------------------ */
.site-footer-nav {
  /* width: calc(100% - 4rem); */
  background: rgba(255, 255, 255, 0.35);
  padding: 2rem;
  /* margin: 0 auto 3rem; */
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.site-footer-nav__menu {
  padding: 0;
  margin: 0 2rem 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row wrap;
}

.site-footer-nav__item {
  margin: 0 1.5rem 2rem 0;
}

.site-footer-nav__menu-toggle,
.site-footer-nav__link {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  margin: 0 0 2rem;
  font-size: 16px;
  border-bottom: 3px solid #900;
  font-size: 16px;
  text-align: left;
  line-height: 1.5rem;
}

.site-footer-nav__link:hover {
  color: #456;
  border-bottom: 3px solid rgba(153, 0, 0, 0.5);
}

.site-footer-nav__sub-menu-wrap {
  /* padding: 1rem .5rem; */
}

.site-footer-nav__sub-menu {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.site-footer-nav__sub-menu:last-of-type,
.site-footer-nav__sub-menu:only-child {
  margin-bottom: 0;
}

.site-footer-nav__sub-menu-list {
  flex-flow: column wrap;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.5rem;
}

.site-footer-nav__sub-menu-list-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  text-decoration: underline;
  padding: 0;
  margin: 0;
}

.site-footer-nav__sub-menu-list:last-of-type .site-footer-nav__sub-menu-list-link {
  margin-bottom: 0;
}

.site-footer-nav__sub-menu-list-link::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background-color: #cc0133;
  position: static;
}

.site-footer-nav__sub-menu-list-link:hover {
  -webkit-text-decoration-color: #900;
          text-decoration-color: #900;
  transition: -webkit-text-decoration-color 0.5s;
  transition: text-decoration-color 0.5s;
  transition: text-decoration-color 0.5s, -webkit-text-decoration-color 0.5s;
}

.site-footer-nav__sub-sub-wrap {
  margin: 1rem 0 0;
}

.site-footer-nav__sub-sub-menu-list {
  margin: 0 1rem 1rem;
  padding: 0;
}

.site-footer-nav__sub-sub-menu-list:last-of-type {
  margin-bottom: 0;
}

.site-footer-nav__sub-sub-menu-list-link {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.site-footer-nav__sub-sub-menu-list-link::before {
  content: "";
  width: 0.7rem;
  height: 2px;
  display: block;
  background-color: #666;
  position: static;
}

.site-footer__address {
  display: none;
}

/* ------------------------------ */
/* .site-footer__form{ */
/* ------------------------------ */
.site-footer__contact {
  text-align: center;
  background: rgba(255, 255, 255, 0.35);
  padding: 5rem 0;
}

.site-footer__contact-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.site-footer__tel-box {
  margin-bottom: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.site-footer__tel-heading {
  margin: 0 2rem 0 0;
  padding: 0;
  line-height: 2rem;
  font-weight: bold;
  font-size: 28px;
  width: auto;
  letter-spacing: 0;
}

.site-footer__tel-date {
  font-size: 21px;
  font-weight: normal;
}

.site-footer__tel-number {
  font-size: 56px;
  font-weight: 700;
  width: 40%;
}

.site-footer__tel-number-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__form {
  width: 80%;
  margin: 40px auto 0;
}

.site-footer__form-button {
  display: block;
  padding: 32px 0;
  text-align: center;
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #8f2e14;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  box-shadow: 0 6px 7px 0px rgba(0, 0, 0, 0.1);
}

.site-footer__form-icon {
  width: 36px;
  margin-right: 16px;
}

.site-footer__icon {
  fill: #fff;
}

.site-footer__icon.--light {
  fill: #333;
}

/* ------------------------------ */
/* button */
/* ------------------------------ */
.site-footer__button {
  display: block;
  margin: 24px 0 8px;
  padding: 20px 0;
  width: 14rem;
  font-size: 19px;
  text-align: center;
  background-color: #8f2e14;
  color: white;
}

.site-footer__button:hover {
  color: #fff;
  background-color: #302833;
}

.site-footer__tel {
  text-align: center;
  margin: 16px auto 0;
}

.site-footer__tel_number {
  font-size: 34px;
  margin: 16px auto 8px;
}

.site-footer__tel_time {
  padding: 0;
  font-size: 18px;
  letter-spacing: 1px;
  margin: -4px auto 8px;
}

/* sns */
.site-footer__sns {
  width: 100%;
  text-align: center;
  /* margin: 3rem auto 0; */
}

.site-footer__sns-icon {
  width: 2rem;
  height: auto;
}

/* copyright */
.site-footer__copyright {
  width: 100%;
  text-align: center;
  margin: 2rem auto;
}

@media screen and (max-width: 860px) {
  .site-footer {
    padding: 3rem 0 6rem;
  }
  .site-footer__box {
    width: calc(100% - 3rem);
    margin: 0 auto 3rem;
    /* padding: 0; */
  }
  /* ------------------------------ */
  /* menu */
  /* ------------------------------ */
  .site-footer-nav {
    padding: 0 0;
  }
  .site-footer-nav__menu {
    width: 100%;
    flex-flow: column wrap;
    padding: 0;
    margin: 0 auto;
  }
  .site-footer-nav__item {
    font-size: 14px;
    margin: 0;
    width: 100%;
    /* border-bottom: 1px solid #ccc; */
  }
  .site-footer-nav__menu-toggle {
    padding: 1rem;
    margin: 0;
    border: none;
    position: relative;
  }
  .site-footer-nav__menu-toggle, .site-footer-nav__link {
    padding: 1rem;
    margin: 0;
    border: none;
    position: relative;
    border-bottom: 1px solid #ccc;
  }
  .site-footer-nav__link.site-footer-nav__menu-toggle {
    border: none;
  }
  .site-footer-nav__link:hover {
    border: none;
    border-top: 1px solid #ccc;
  }
  .site-footer-nav__menu-toggle.--has-children::before, .site-footer-nav__menu-toggle.--has-children::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background-color: #345;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    margin: auto 0;
    transition: 0.7s;
  }
  .site-footer-nav__menu-toggle.--has-children::after {
    transform: rotate(90deg);
  }
  .site-footer-nav__menu-toggle.--has-children.menu-open::before {
    transform: rotate(90deg);
  }
  .site-footer-nav__menu-toggle.--has-children.menu-open::after {
    background-color: transparent;
  }
  .site-footer-nav__sub-menu-wrap {
    width: 100%;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f0f0f0;
    background-color: #fff;
    border-top: 1px solid #ccc;
  }
  .site-footer-nav__sub-menu-wrap.is-open {
    /* border-top: 1px solid #999; */
    border-bottom: 1px solid #ccc;
  }
  .site-footer-nav__sub-menu {
    padding: 1.5rem 2rem 0;
    margin: 0;
  }
  .site-footer-nav__sub-menu:last-of-type,
.site-footer-nav__sub-menu:only-child {
    padding: 1.5rem 2rem 2.25rem;
  }
  .site-footer-nav__sub-menu-list {
    display: block;
    margin: 0;
    padding: 0.2rem 0;
  }
  .site-footer-nav__sub-menu-list-link {
    margin: 0 0 1.25rem;
  }
  .site-footer-nav__sub-menu-list-link.--has-children {
    margin-bottom: 1rem;
  }
  .site-footer-nav__sub-menu-list:last-of-type .site-footer-nav__sub-menu-list-link.--has-children {
    margin-bottom: 1rem;
  }
  .site-footer-nav__sub-sub-menu-list {
    padding: 0.5rem 0;
    margin: 0 1rem;
  }
  .site-footer-nav__sub-sub-menu-list-link {
    padding: 0;
    margin: 0;
  }
  /* ------------------------------ */
  /* .site-footer__contact */
  /* ------------------------------ */
  .site-footer__contact {
    padding: 3rem 0;
  }
  .site-footer__contact-inner {
    flex-flow: column wrap;
  }
  .site-footer__tel-box {
    margin-bottom: 3rem;
    flex-flow: column wrap;
    width: 100%;
  }
  .site-footer__tel-heading {
    margin: 0 auto;
    font-size: 26px;
  }
  .site-footer__tel-number {
    width: calc(100% - 4rem);
    max-width: 480px;
    margin: 1rem auto 0;
  }
  .site-footer__form {
    margin: 0 auto;
  }
  .site-footer__form-button {
    font-size: 21px;
  }
}
@media screen and (max-width: 480px) {
  /* 480px未満 */
  .site-footer__contact {
    /* width: calc(100% - 3rem); */
  }
  .site-footer__tel-number {
    /* width: calc(100% - 2rem); */
    /* margin: 1rem 0; */
  }
  .site-footer__form {
    /* width: calc(100% - 2rem); */
    margin: 0 auto;
  }
  .site-footer__form-button {
    width: 100%;
    line-height: 125%;
    text-align: left;
  }
  .site-footer__form-icon {
    margin-right: 1.5rem;
    width: 42px;
  }
}
/*# sourceMappingURL=style.css.map */