@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ====================================================================
# slider
==================================================================== */
/* スライダー全体 */
.slider-wrapper {
  /* スライドのグループを横並び */
  display: flex;
  /* はみ出たスライドを隠す */
  overflow: hidden;
  margin-top: 27px;
}

/* スライド7枚のグループ */
.slider {
  -webkit-animation: scroll-left 30s infinite linear 0.5s both;
          animation: scroll-left 30s infinite linear 0.5s both;
  display: flex;
  align-items: center;
}

/* スライド */
.slide {
  margin-right: 16px;
  width: 268px;
  max-height: 172px;
}
@media screen and (max-width: 768px) {
  .slide {
    width: 33.3333333333vw;
  }
}

/* スライドの画像 */
.slide img {
  display: block;
  max-height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* ====================================================================
# Common
==================================================================== */
body {
  color: #1D1D20;
  background-color: #fff;
}

main {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding-left: 0;
    padding-right: 0;
  }
}

.wrapper-first,
.wrapper-second,
.wrapper {
  background-color: #F8F8F8;
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .wrapper-first,
.wrapper-second,
.wrapper {
    margin: 0;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.wrapper {
  border-radius: 30px;
  margin-top: -70px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .wrapper {
    border-radius: 16px;
    margin-top: -30px;
  }
}

.wrapper-first {
  border-radius: 30px 30px 0 0;
  margin-top: -70px;
}
@media screen and (max-width: 768px) {
  .wrapper-first {
    border-radius: 16px 16px 0 0;
    margin-top: -30px;
  }
}

.wrapper-second {
  border-radius: 0 0 30px 30px;
  position: relative;
  z-index: 100;
  overflow-x: hidden;
}

/* セクションタイトル
------------------------------------------------------------- */
.section__title-wrap {
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .section__title-wrap {
    text-align: left;
  }
}

.section__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 24px;
  }
}

.section__title::after {
  font-family: "Montserrat", sans-serif;
  color: #EFEFEF;
  font-size: 110px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: -24px;
  left: 72%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section__title::after {
    font-size: 50px;
    left: 30%;
    bottom: 0;
  }
}

/* ====================================================================
# Styles
==================================================================== */
/* header
------------------------------------------------------------- */
.header {
  height: 90px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header__logo {
  max-width: 76px;
  max-height: 70px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 50px;
    height: 46px;
  }
}

.header__nav {
  margin-left: auto;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D1D20;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.header__nav-link:last-of-type {
  padding-right: 0;
}

/* ハンバーガー
------------------------------------------------------------- */
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 15px;
  right: 15px;
}

.hamburger span {
  background-color: #1D1D20;
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger-menu {
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 130%;
}

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

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

/* ドロワーメニュー
  ------------------------------------------------------------- */
.drawer-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
  height: 100vh;
  width: 100%;
  background-color: #1D1D20;
}

.drawer-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu__link {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  font-weight: 500;
  width: 200px;
  display: inline-block;
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #737373;
}

/* hero
------------------------------------------------------------- */
.hero {
  margin-top: 90px;
  background: url(../images/hero_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .hero {
    margin-top: 60px;
  }
}

.hero__inner {
  padding: 90px 160px 140px;
}
@media screen and (max-width: 768px) {
  .hero__inner {
    padding: 67px 25px 62px;
  }
}

.hero__maintitle {
  color: #fff;
  font-size: 126px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.03em;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .hero__maintitle {
    font-size: 56px;
  }
}

.hero__maintitle span {
  font-size: 95px;
}
@media screen and (max-width: 768px) {
  .hero__maintitle span {
    font-size: 42px;
  }
}

.hero__achievements {
  margin-top: 28px;
}

.hero__achievement {
  width: 392px;
}
@media screen and (max-width: 768px) {
  .hero__achievement {
    width: 201px;
  }
}

.hero__achievement:last-child {
  margin-top: 9px;
}

.hero__subtext {
  margin-top: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .hero__subtext {
    font-size: 12px;
  }
}

.hero__subtext span {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .hero__subtext span {
    font-size: 16px;
  }
}

/* contact-options
------------------------------------------------------------- */
.contact-options {
  text-align: center;
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact-options {
    display: block;
    padding-top: 48px;
    padding-bottom: 32px;
  }
}

.contact-options__line,
.contact-options__email {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0;
  background-color: #1F0C08;
  border-radius: 100px;
  padding: 16px 38px;
}
@media screen and (max-width: 768px) {
  .contact-options__line,
.contact-options__email {
    font-size: 16px;
  }
}

.contact-options__line-wrap {
  display: inline-block;
}

.contact-options__line {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 38px;
}
@media screen and (max-width: 768px) {
  .contact-options__line {
    margin-right: 0;
  }
}

.contact-options__line img {
  width: 35px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}

.contact-options__email {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .contact-options__email {
    margin-top: 20px;
  }
}

/* intro
------------------------------------------------------------- */
.intro__inner {
  border-top: 2px solid #979797;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .intro__inner {
    display: block;
    padding: 40px 0;
  }
}

.intro__text {
  margin-right: 83px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .intro__text {
    margin-right: 0;
  }
}

.intro__description {
  font-size: 26px;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .intro__description {
    font-size: 20px;
  }
}

.intro__logo {
  width: 168px;
  margin-top: 8px;
}

.intro__image {
  flex: 1;
  max-width: 497px;
}
@media screen and (max-width: 768px) {
  .intro__image {
    margin-top: 40px;
  }
}

/* yellow marker
------------------------------------------------------------- */
.marker {
  display: inline;
  background: linear-gradient(transparent 60%, #FEED75 60%);
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}

.workflow__title.on,
.pricing__subtitle.on,
.reservation-flow__subtitle.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

/* workflow
------------------------------------------------------------- */
.workflow__inner {
  border-top: 2px solid #979797;
  padding-top: 80px;
  padding-bottom: 36px;
}

.workflow__lead {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .workflow__lead {
    display: block;
  }
}

.workflow__text {
  margin-right: 72px;
}
@media screen and (max-width: 768px) {
  .workflow__text {
    margin-right: 0;
  }
}

.workflow__title {
  font-size: 72px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .workflow__title {
    font-size: 44px;
  }
}

.workflow__description {
  margin-top: 40px;
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .workflow__description {
    font-size: 20px;
  }
}

.workflow__description-sp {
  display: flex;
  align-items: center;
}

.workflow__details {
  margin-top: 40px;
  color: #737373;
  font-size: 20px;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .workflow__details {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    width: 190px;
  }
}

.workflow__image-sp {
  overflow-x: hidden;
  margin-right: calc(50% - 50vw);
}

.workflow__image-sp img {
  width: 200px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 404px;
}

.workflow__comparison {
  max-width: 640px;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}

.comparison__note {
  max-width: 640px;
  margin-top: 33px;
  margin-right: auto;
  margin-left: auto;
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .comparison__note {
    font-size: 12px;
  }
}

/* partners
------------------------------------------------------------- */
.partners {
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .partners {
    padding-bottom: 40px;
  }
}

.partners__inner {
  padding-top: 80px;
  border-top: 2px solid #979797;
}
@media screen and (max-width: 768px) {
  .partners__inner {
    padding-top: 30px;
  }
}

.partners__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .partners__title {
    font-size: 16px;
  }
}

.partners__list {
  padding-top: 21px;
  margin: 0 calc(50% - 50vw);
}

/* matching-service
------------------------------------------------------------- */
.matching-service {
  background-color: #1F0C08;
  padding-top: 120px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .matching-service {
    padding: 32px 0;
  }
}

.matching-service__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .matching-service__inner {
    padding: 0 25px;
  }
}

.matching-service__title {
  color: #fff;
  font-size: 66px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .matching-service__title {
    font-size: 44px;
  }
}

.matching-service__subtitle {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
  margin-top: 69px;
}
@media screen and (max-width: 768px) {
  .matching-service__subtitle {
    font-size: 20px;
    margin-top: 16px;
  }
}

.matching-service__description {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .matching-service__description {
    font-size: 14px;
    margin-top: 16px;
  }
}

.matching-service__image {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .matching-service__image {
    width: auto;
    margin-left: calc(50% - 50vw);
    margin-top: 16px;
  }
}

/* pricing
------------------------------------------------------------- */
.pricing {
  padding-top: 218px;
}
@media screen and (max-width: 768px) {
  .pricing {
    padding-top: 75px;
  }
}

.pricing__title-wrap {
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .pricing__title-wrap {
    text-align: left;
  }
}

.pricing__title::after {
  content: "PRICE";
}

.pricing__content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .pricing__content {
    display: block;
    margin-top: 34px;
  }
}

.pricing__image {
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .pricing__image {
    width: 100vw;
    margin: calc(50% - 50vw);
  }
}

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

.pricing__sp-image {
  margin-left: calc(50% - 50vw);
  margin-right: 13px;
}

.pricing__sp-image img {
  width: 166px;
}

.pricing__text {
  margin-left: -33px;
}
@media screen and (max-width: 768px) {
  .pricing__text {
    margin-left: 0;
    margin-top: 50px;
    max-width: calc(100vw - 179px);
  }
}

.pricing__subtitle {
  font-size: 72px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .pricing__subtitle {
    font-size: 28px;
  }
}

.pricing__description {
  margin-top: 60px;
  width: 100%;
  max-width: 602px;
  color: #737373;
  font-size: 20px;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .pricing__description {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
  }
}

.pricing-details {
  margin-top: 80px;
  margin-top: 56px;
}

.pricing-details__initial {
  width: 100%;
  max-width: 426px;
  margin: 0 auto;
}

.pricing-details__plans {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pricing-details__plans {
    display: block;
    margin-top: 30px;
  }
}

.pricing-details__plan:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .pricing-details__plan:first-child {
    margin-right: 0;
    padding-bottom: 30px;
  }
}

.pricing__notes {
  margin-top: 30px;
}

.pricing__note {
  color: #737373;
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.05em;
  max-width: 456px;
  margin: 0 auto;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .pricing__note {
    font-size: 12px;
  }
}

/* flow
------------------------------------------------------------- */
.reservation-flow__inner {
  border-top: 2px solid #979797;
  padding-top: 167px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .reservation-flow__inner {
    padding-top: 75px;
  }
}

.reservation-flow__title::after {
  content: "FLOW";
}

.reservation-flow__content {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .reservation-flow__content {
    display: block;
    margin-top: 16px;
  }
}

.reservation-flow__sp {
  display: flex;
  justify-content: center;
}

.reservation-flow__sp-image {
  margin-right: calc(50% - 50vw);
  margin-left: 13px;
}

.reservation-flow__sp-image img {
  width: 166px;
}

.reservation-flow__text {
  margin-right: 78px;
}
@media screen and (max-width: 768px) {
  .reservation-flow__text {
    margin-top: 40px;
    margin-right: 0;
    width: calc(100vw - 179px);
  }
}

.reservation-flow__subtitle {
  font-size: 70px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .reservation-flow__subtitle {
    font-size: 28px;
  }
}

.reservation-flow__description {
  margin-top: 70px;
  width: 100%;
  max-width: 482px;
  color: #737373;
  font-size: 20px;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .reservation-flow__description {
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
  }
}

.reservation-flow__image {
  width: 100%;
  max-width: 740px;
  margin: calc(50% - 50vw);
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .reservation-flow__image {
    width: auto;
  }
}

/* company
------------------------------------------------------------- */
.company__inner {
  border-top: 2px solid #979797;
  padding-top: 187px;
  margin-top: 300px;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .company__inner {
    margin-top: 0;
    padding-top: 75px;
  }
}

.company__title::after {
  content: "COMPANY";
}

.company__table {
  margin-top: 93px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .company__table {
    margin-top: 42px;
  }
}

.company__label,
.company__value {
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .company__label,
.company__value {
    display: block;
  }
}

.company__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.02em;
  width: 180px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .company__label {
    width: 300px;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.company__value {
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.02em;
}
.company__value a {
  color: #1D1D20;
  text-decoration: underline;
}

/* contact
------------------------------------------------------------- */
.contact__inner {
  border-top: 2px solid #979797;
  padding-top: 187px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-top: 75px;
  }
}

.contact__title::after {
  content: "CONTACT";
}

.contact__form-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.contact__form {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 42px;
  }
}

.contact__field {
  margin-top: 32px;
}

.contact__required {
  color: #AE0000;
  border: 1px solid #AE0000;
  border-radius: 50px;
  padding: 1px 8px;
  font-size: 12px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0;
}

.contact__label {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
}

.contact__input,
.contact__textarea {
  background-color: #F1F1F1;
  margin-top: 8px;
  border-radius: 6px;
  width: 100%;
  padding: 11px;
}

.contact__textarea {
  height: 240px;
}

.contact__field.contact__field--checkbox {
  margin-top: 16px;
  text-align: center;
}

.contact__submit-wrap {
  text-align: center;
}

.contact__submit {
  background-color: #1F0C08;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
  padding: 16px 78px;
  border-radius: 50px;
  margin-top: 60px;
}

.contact__policy {
  margin-top: 60px;
}

.contact__policy-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.contact__policy-text {
  background-color: #fff;
  padding: 15px 13px;
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.03em;
  height: 250px;
  overflow-y: scroll;
}

.hp_textr {
  text-align: right;
}

.contact__policy-text li {
  list-style: decimal;
  margin-left: 2em;
}

.contact__field--checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 14px;
}

.contact__field--checkbox label::before {
  margin-right: 5px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 0.5px solid #555;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact__field--checkbox label::after {
  position: absolute;
  top: 5px;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  opacity: 0;
}

.contact__field--checkbox label:has(:checked)::after {
  opacity: 1;
}

.contact__label-checkbox span {
  padding-left: 5px;
}

/* ====================================================================
# lower-hero
==================================================================== */
.lower-hero {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .lower-hero {
    margin-top: 60px;
  }
}

.lower-hero__inner {
  padding: 90px 160px 140px;
}
@media screen and (max-width: 768px) {
  .lower-hero__inner {
    padding: 67px 25px 62px;
  }
}

.lower-hero__text {
  color: #fff;
}

.lower-hero__subtext {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .lower-hero__subtext {
    font-size: 15px;
  }
}

.lower-hero__maintitle {
  margin-top: 12px;
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .lower-hero__maintitle {
    font-size: 52px;
  }
}
.lower-hero__maintitle span {
  font-size: 70px;
}
@media screen and (max-width: 768px) {
  .lower-hero__maintitle span {
    font-size: 37px;
  }
}

/* ====================================================================
# Q&A Page
==================================================================== */
.lower-hero__faq {
  background: url(../images/faq_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.faq__tabs-wrapper {
  padding-bottom: 60px;
  border-bottom: 2px solid #979797;
}
@media screen and (max-width: 768px) {
  .faq__tabs-wrapper {
    padding-bottom: 30px;
  }
}

.faq__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .faq__tabs {
    gap: 8px;
    justify-content: flex-start;
  }
}

.faq__tab-button {
  color: #1D1D20;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1px solid;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__tab-button {
    padding: 10px 13px;
    font-size: 14px;
  }
}
.faq__tab-button:hover {
  background-color: #1D1D20;
  color: #fff;
}

.faq__tab-button--active {
  background-color: #1D1D20;
  color: #fff;
}

.faq {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.faq__items {
  display: none;
  max-width: 910px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .faq__items {
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}

.faq__item {
  margin-top: 16px;
}

.faq__question {
  display: flex;
  align-items: center;
  color: #1D1D20;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.faq__question::before,
.faq__question::after {
  position: absolute;
  width: 16px;
  height: 2px;
  right: 21px;
  top: 50%;
  content: "";
  background-color: #1D1D20;
  transition: 0.3s transform, 0.3s opacity;
}
@media screen and (max-width: 768px) {
  .faq__question::before,
.faq__question::after {
    right: 12px;
    width: 16px;
  }
}

.faq__question::before {
  transform: rotate(90deg);
}

.faq__question.is-open {
  border-radius: 8px 8px 0 0;
}

.faq__question.is-open::before {
  transform: rotate(180deg);
}

.faq__question.is-open::after {
  opacity: 0;
}

.faq__q-icon {
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: #54BEBB;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.faq__question-title {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .faq__question-title {
    margin-right: 24px;
  }
}

.faq__answer {
  display: none;
  background-color: #F1F1F1;
  padding: 16px 24px;
  border-radius: 0 0 8px 8px;
}

.faq__answer-wrap {
  display: flex;
  align-items: center;
  color: #1D1D20;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.faq__answer-content {
  flex: 1;
  font-size: 14px;
}

.faq__a-icon {
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #1D1D20;
  background-color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

/* ====================================================================
# 麻酔医一覧
==================================================================== */
.staff {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .staff {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.lower-hero__anesthesiologists {
  background: url(../images/anesthesiologists_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.staff-numbers__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .staff-numbers__title {
    font-size: 24px;
  }
}

.staff-numbers__items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .staff-numbers__items {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}

.staff-numbers__item {
  background-color: #fff;
  box-shadow: 2px 2px 18px rgba(29, 29, 31, 0.08);
  height: 340px;
  position: relative;
}

.staff-numbers__item-title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1CA5DE;
  padding: 3px 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.03em;
}

.staff-numbers__item-image {
  max-width: 273px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.staff-numbers__item-text {
  padding-bottom: 20px;
  padding-left: 1em;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  width: 273px;
  left: 50%;
  transform: translateX(-50%);
  text-indent: -1em;
  letter-spacing: 0.05em;
}

.staff-numbers__note {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .staff-numbers__note {
    text-align: left;
  }
}

/* 麻酔医一覧
------------------------------------------------------------- */
.doctor-list {
  margin-top: 70px;
  background-color: #fff;
  box-shadow: 2px 2px 18px rgba(29, 29, 31, 0.08);
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .doctor-list {
    margin-top: 20px;
    overflow-x: scroll;
  }
}

.doctor-list__table-wrap {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .doctor-list__table-wrap {
    padding: 0 10px;
  }
}

.doctor-list__table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
}

.doctor-list__thead {
  background-color: #54BEBB;
  color: #fff;
}

td.doctor-list__cell {
  border-bottom: 1px solid #ddd;
}

th.doctor-list__cell {
  padding-top: 6px;
  padding-bottom: 6px;
}
th.doctor-list__cell:first-child {
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  th.doctor-list__cell:first-child {
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  td.doctor-list__cell:first-child {
    width: 120px;
  }
}

.doctor-list__cell {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.03em;
  padding: 15px 45px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .doctor-list__cell {
    padding: 15px 10px;
  }
}
.doctor-list__cell:first-child {
  padding-left: 70px;
  width: 130px;
}
@media screen and (max-width: 768px) {
  .doctor-list__cell:first-child {
    padding-left: 20px;
  }
}
.doctor-list__cell:nth-child(2) {
  width: 172px;
}
@media screen and (max-width: 768px) {
  .doctor-list__cell:nth-child(2) {
    width: 212px;
  }
}
.doctor-list__cell:nth-child(3) {
  width: 86px;
}
@media screen and (max-width: 768px) {
  .doctor-list__cell:nth-child(3) {
    width: 126px;
  }
}
.doctor-list__cell:last-child {
  padding-right: 90px;
  width: 272px;
}
@media screen and (max-width: 768px) {
  .doctor-list__cell:last-child {
    width: 362px;
  }
}

.doctor-list__note {
  margin-top: 30px;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.03em;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .doctor-list__note {
    text-align: left;
    padding-left: 30px;
    margin-top: 20px;
  }
}

/* スクロールしてご覧いただけます
------------------------------------------------------------- */
.scroll-text {
  margin-top: 40px;
  text-align: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .scroll-text {
    display: block;
    text-align: left;
  }
}

.scroll-text p {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.scroll-text p:after {
  content: "";
  position: absolute;
  background: url(../images/scroll-arrow.svg) no-repeat center/cover;
  width: 29px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
  left: 102%;
}

/* ====================================================================
# footer
==================================================================== */
.footer {
  background-color: #1F0C08;
  margin-top: -58px;
  padding-top: 106px;
  padding-bottom: 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
}

/* ====================================================================
# page top
==================================================================== */
.page-top-button {
  position: fixed;
  z-index: 9000;
  right: 70px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #1F0C08;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .page-top-button {
    right: 25px;
  }
}

.page-top-button::after {
  position: absolute;
  top: 45%;
  left: 55%;
  width: 10px;
  height: 10px;
  content: "";
  transform: rotate(-45deg) translate(-50%, -50%);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.line-button {
  position: fixed;
  z-index: 9000;
  right: 67px;
  bottom: 84px;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .line-button {
    right: 22px;
  }
}

/* ====================================================================
# thanksページ
==================================================================== */
.thanks {
  padding: 200px 0;
}

.thanks__text {
  text-align: center;
}

.thanks__button {
  margin-top: 20px;
  text-align: center;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}