@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Zen Old Mincho", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

html {
  color: #2E2E2E;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  margin: 0;
}
body.is-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.is-open header {
  top: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #2E2E2E;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.outer-block {
  min-width: 1240px;
}

.inner-block {
  position: relative;
  width: auto;
  max-width: 1240px;
  padding: 0 20px;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
@font-face {
  src: url(../font/ZenOldMincho-Regular.woff2) format("woff2");
  font-family: "Zen Old Mincho";
  font-weight: 400;
  font-display: swap;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  position: fixed;
  top: 0;
  z-index: 999;
  max-width: 375px;
  width: 100%;
}

.header {
  padding: 18px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header.is-color {
  background: rgba(255, 255, 255, 0.8);
  padding: 9px 0;
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}
.header__logo {
  width: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: calc(100% - 175px);
}
.header__btn {
  width: 35px;
}
.header__btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__btn img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__btn + .header__btn {
  margin-left: 10px;
}
.header__ham {
  margin-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-ham-btn {
  width: 31px;
  position: relative;
  cursor: pointer;
}
.c-ham-btn span {
  width: calc(100% - 2px);
  height: 1px;
  background: #2E2E2E;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-ham-btn span:first-child {
  top: 25%;
}
.c-ham-btn span:last-of-type {
  top: 45%;
}
.c-ham-btn__txt {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  letter-spacing: 0;
}
.c-ham-btn.active span:first-child {
  top: 35%;
  -webkit-transform: translateX(-50%) rotate(-35deg);
          transform: translateX(-50%) rotate(-35deg);
}
.c-ham-btn.active span:last-of-type {
  top: 35%;
  -webkit-transform: translateX(-50%) rotate(35deg);
          transform: translateX(-50%) rotate(35deg);
}

.header__nav-wrap {
  background: url(../img/sec01-bg.jpg) no-repeat;
  background-size: cover;
  padding: 30px 0;
  width: calc(100% - 10px);
  margin-left: auto;
  position: fixed;
  top: 68px;
  right: -150%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 100svh;
}
.header__nav-wrap.active {
  right: 0;
}

.nav-list__li + .nav-list__li {
  margin-top: 15px;
}
.nav-list__en {
  font-size: 12px;
  text-shadow: 2px 1px 2px rgba(255, 255, 255, 0.8);
}
.nav-list__ja {
  font-weight: 500;
  font-size: 18px;
  color: #BF4C4C;
}

.footer {
  background: #2E2E2E;
  text-align: center;
}
.footer__copy {
  color: #fff;
  font-size: 10px;
  line-height: 2.1;
  letter-spacing: 0.07em;
}
.c-cont__main {
  overflow: hidden;
  max-width: 375px;
  width: 100%;
}
.c-cont__nav-wrap {
  background: rgba(191, 76, 76, 0.2);
}
.c-cont__nav {
  max-width: 375px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  padding: 30px 10px;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}
.c-cont__ttl {
  padding-top: 50px;
}
.c-cont__lead {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2.2;
}

.c-ttl__en {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.c-ttl__ja {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.c-ttl__ja .red {
  color: #BF4C4C;
}
.c-ttl__ja .big {
  font-size: 36px;
}
.c-ttl__ja.fz30 {
  font-size: 30px;
}
.c-ttl__ja.fz30 .big {
  font-size: 34px;
}
.c-ttl__ja.fz16 {
  font-size: 16px;
}
.c-ttl__ja.fz28 .big {
  font-size: 28px;
}

.c-icon-list__item {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
}
.c-icon-list__item.p18 {
  padding: 16px 24px;
}
.c-icon-list__item + .c-icon-list__item {
  margin-top: 12px;
}
.c-icon-list__ttl {
  position: relative;
  padding-left: 40px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.c-icon-list__ttl::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.c-icon-list__ttl.human::before {
  background: url(../img/icon-human.png);
  background-size: contain;
}
.c-icon-list__ttl.loupe::before {
  background: url(../img/icon-loupe.png);
  background-size: contain;
}
.c-icon-list__ttl.doctor::before {
  background: url(../img/icon-doctor.png);
  background-size: contain;
}
.c-icon-list__ttl.check::before {
  background: url(../img/icon-check.png);
  background-size: contain;
}
.c-icon-list__cap {
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.c-doctor-list {
  position: relative;
}
.c-doctor-list__tag01 {
  display: inline-block;
  background: #BF4C4C;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  position: absolute;
  top: -15px;
  left: 8px;
  z-index: 3;
}
.c-doctor-list__item {
  position: relative;
}
.c-doctor-list__item + .c-doctor-list__item {
  margin-top: 20px;
}
.c-doctor-list__wrap {
  position: relative;
  border-radius: 6px;
  border: solid 1px #9F9A98;
  background: #fff;
  padding-bottom: 28px;
  overflow: hidden;
}
.c-doctor-list__wrap.pb80 {
  padding-bottom: 80px;
}
.c-doctor-list__ttl {
  background: #FDF7F3;
  padding: 8px 20px;
}
.c-doctor-list__en {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.c-doctor-list__ja {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.c-doctor-list__box {
  padding: 8px 20px;
}
.c-doctor-list__name {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.c-doctor-list__name .big {
  color: #BF4C4C;
  font-size: 21px;
}
.c-doctor-list__job {
  font-size: 10px;
}
.c-doctor-list__cap {
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.c-doctor-list__img {
  width: 136px;
  height: 180px;
  position: absolute;
  bottom: -10px;
  right: -3px;
}
.c-doctor-list__img.ptn02 {
  bottom: -30px;
}
.c-doctor-list__img.ptn03 {
  bottom: -20px;
}
.c-doctor-list__img.ptn04 {
  right: -10px;
}
.c-doctor-list__img-dec {
  position: absolute;
  bottom: 20px;
}

.c-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.c-tag-list__li {
  font-size: 11px;
  background: #F8F8F8;
  padding: 2px 10px;
}

.c-year-list__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-year-list__year, .c-year-list__item {
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.c-num-list01 {
  counter-reset: num;
}
.c-num-list01__item {
  padding: 20px;
  border: solid 1px #9F9A98;
  border-radius: 6px;
  background: #fff;
}
.c-num-list01__item.p16 {
  padding: 16px;
}
.c-num-list01__item.pb32 {
  padding-bottom: 32px;
}
.c-num-list01__item + .c-num-list01__item {
  margin-top: 20px;
}
.c-num-list01__ttl01 {
  position: relative;
  padding-left: 54px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
.c-num-list01__ttl01::before {
  display: block;
  content: counter(num, decimal-leading-zero);
  counter-increment: num 1;
  background: #BF4C4C;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.c-num-list01__lead {
  line-height: 1.9;
}
.c-num-list01__note {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(46, 46, 46, 0.75);
}
.c-num-list01__note.small {
  font-size: 10px;
  line-height: 2.2;
}

.c-dec-list__li {
  position: relative;
  padding-left: 27px;
  padding: 10px 0 10px 27px;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.c-dec-list__li::before {
  display: block;
  content: "";
  height: 1px;
  width: 10px;
  background: #BF4C4C;
  position: absolute;
  top: 20px;
  left: 7px;
}
.c-dec-list__li.non_padding {
  padding-top: 0;
  padding-bottom: 0;
}
.c-dec-list__li.non_padding::before {
  top: 11px;
}
.c-dec-list__li + .c-dec-list__li {
  position: relative;
  border-top: solid 1px #D9D9D9;
}

.c-num-list02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px 11px;
  counter-reset: num02 0;
}
.c-num-list02__item {
  position: relative;
  padding: 14px 15px;
  border: solid 1px #9F9A98;
  border-radius: 6px;
  background: #fff;
}
.c-num-list02__num {
  position: relative;
  top: -35px;
  left: -5px;
}
.c-num-list02__num::before {
  display: block;
  content: counter(num02, decimal-leading-zero);
  counter-increment: num02 1;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  z-index: 3;
}
.c-num-list02__num::after {
  display: block;
  content: "";
  width: 35px;
  height: 10px;
  position: absolute;
  top: 13px;
  left: -6px;
  background: #fff;
}
.c-num-list02__icon {
  max-width: 30px;
  height: auto;
  margin: 0 auto;
}
.c-num-list02__ttl {
  font-size: 12px;
}
.c-num-list02__cap {
  font-size: 10px;
  line-height: 1.8;
}

.c-faq-list__li {
  border: solid 1px #9F9A98;
  padding: 12px 20px 20px;
  border-radius: 6px;
  background: #fff;
}
.c-faq-list__li + .c-faq-list__li {
  margin-top: 20px;
}
.c-faq-list__qwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}
.c-faq-list__ttl {
  width: calc(100% - 23px);
  font-size: 13px;
  position: relative;
  padding-left: 32px;
  padding-top: 10px;
  letter-spacing: 0.05em;
}
.c-faq-list__ttl-dec {
  display: block;
  width: 23px;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
}
.c-faq-list__btn {
  width: 23px;
  height: 23px;
  border: solid 1px #7B6E69;
  border-radius: 50%;
  position: relative;
}
.c-faq-list__btn span {
  display: block;
  width: 11px;
  height: 1px;
  background: #7B6E69;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-faq-list__btn span:last-child {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 1;
  visibility: visible;
}
.c-faq-list__btn.is-open span:last-child {
  -webkit-transform: translateX(-50%) rotate(0);
          transform: translateX(-50%) rotate(0);
  visibility: hidden;
  opacity: 0;
}
.c-faq-list__a {
  display: none;
}
.c-faq-list__txt {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.9;
  color: rgba(46, 46, 46, 0.75);
}
.c-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.c-list__li {
  background: #fff;
  border: solid 1px #9F9A98;
  padding: 2px 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-list__li.active {
  border: solid 1px #BF4C4C;
  background: #BF4C4C;
  color: #fff;
}

.c-case-list__li + .c-case-list__li {
  margin-top: 20px;
}
.c-case-list__wrap {
  border: solid 1px #9F9A98;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.c-case-list__bottom {
  padding: 20px;
  padding-bottom: 25px;
}
.c-case-list__tag {
  display: inline-block;
  border: solid 1px #9F9A98;
  background: #F8F8F8;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.9;
  padding: 2px 10px;
}
.c-case-list__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-bottom: 15px;
  border-bottom: solid 1px #D9D9D9;
}
.c-case-list__dec {
  display: block;
  width: 7px;
  height: 1px;
  background: #9F9A98;
}
.c-case-list__txt01, .c-case-list__txt02 {
  font-size: 10px;
}
.c-case-list__box02 {
  padding-top: 12px;
}
.c-case-list__ttl {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.c-case-list__ttl-btn {
  width: 7px;
  height: 7px;
  position: relative;
}
.c-case-list__ttl-btn span {
  width: 100%;
  height: 1px;
  background: #2E2E2E;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-case-list__ttl-btn span:last-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-case-list__ttl-btn.is-open span:first-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-case-list__ttl-btn.is-open span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-case-list__cap {
  display: none;
}
.c-case-list__risk {
  font-size: 10px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.c-tab__cont + .c-tab__cont {
  margin-top: 20px;
}

.c-dec {
  position: relative;
  overflow: hidden;
}
.c-dec__dec01 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 133px;
  height: 149px;
}
.c-dec__dec01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-dec__dec02 {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 90px;
  height: 90px;
}

.c-scroll-table {
  white-space: nowrap;
  min-width: 500px;
}
.c-scroll-table tr:not(:last-child) {
  border-bottom: solid 1px rgba(217, 217, 217, 0.5);
}
.c-scroll-table tr *:first-child {
  color: #2E2E2E;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background: #fff;
}
.c-scroll-table tr *:nth-child(2) {
  color: #BF4C4C;
}
.c-scroll-table tr *:last-child {
  color: gray;
}
.c-scroll-table tr th,
.c-scroll-table tr td {
  vertical-align: top;
}
.c-scroll-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.05em;
  border-bottom: solid 1px #9F9A98;
  padding-bottom: 12px;
}
.c-scroll-table td {
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.c-kome-txt {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  font-size: 11px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(46, 46, 46, 0.75);
}
.c-kome-txt::before {
  display: block;
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-link__txt {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  margin-right: 20px;
}
.c-link__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mv__box {
  position: relative;
}
.mv__btn {
  position: absolute;
  top: 58%;
  right: 0;
}

.lead {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.lead__ttl img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.lead__cap {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.lead__bottom img {
  width: 100%;
}
.lead::before {
  display: block;
  content: "";
  position: absolute;
  width: 836px;
  height: 836px;
  left: calc(50% - 418px - 0.5px);
  bottom: -407px;
  background: radial-gradient(75.48% 75.48% at 50% 7.06%, #FBF3F3 0%, #FFFFFF 100%);
  -webkit-filter: blur(229.64px);
          filter: blur(229.64px);
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
          transform: matrix(-1, 0, 0, 1, 0, 0);
}

.sec01 {
  overflow: hidden;
  position: relative;
  background: url(../img/sec01-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 60px;
}
.sec01__ttl {
  margin-right: -50px;
  padding-top: 50px;
}

.sec02 {
  position: relative;
  overflow: hidden;
  background: url(../img/sec02-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 63px;
}

.sec03 {
  background: url(../img/sec03-bg.jpg) no-repeat;
  background-size: 100%;
  background-position: top;
  padding-bottom: 50px;
}

.sec04 {
  background: url(../img/sec04-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}

.c-dec-txt {
  width: 222px;
  margin: 0 auto;
}

.sec05 {
  overflow: hidden;
  background: url(../img/sec05-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}

.sec06 {
  overflow: hidden;
  background: url(../img/sec06-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 26px;
}
.sec06__table {
  width: 100%;
  overflow: scroll;
}
.sec06__bottom {
  margin-right: -10px;
}

.sec07 {
  background: url(../img/sec07-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}

.sec08 {
  background: url(../img/sec08-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}

.sec09 {
  background: url(../img/sec09-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 33px;
}

.sec10 {
  background: url(../img/sec10-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 53px;
}

.sec11 {
  background: url(../img/sec11-bg.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}

.cta {
  background: url(../img/cta-bg.jpg) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.cta__ttl img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__cap {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2.2;
}

.cta-item {
  background: #fff;
  border-radius: 6px;
  padding: 17px 20px 28px;
}
.cta-item__ttl {
  text-align: center;
  color: #BF4C4C;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.cta-item__ttl .big {
  font-size: 24px;
}
.cta-item__cap {
  font-size: 12px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  text-align: center;
}
.cta-item__note {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(46, 46, 46, 0.75);
}

.access {
  background: #fff;
}
.access__map iframe {
  aspect-ratio: 375/176;
  width: 100%;
  height: 100%;
}
.access__area {
  padding: 20px 30px;
}
.access__logo {
  text-align: center;
}
.access__lead {
  text-align: center;
  color: rgba(46, 46, 46, 0.75);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.access-list__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.access-list__ttl {
  width: 70px;
}
.access-list__cap {
  width: 241px;
}
.access-list__ttl, .access-list__cap {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.paging-area {
  font-size: 0;
  padding: 50px 0 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.paging-area > * {
  border: 1px solid blue;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  line-height: 1;
  color: blue;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin: 0 5px 5px;
  padding: 0 4px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.paging-area .back {
  padding: 0 32px;
}

.paging-area .page-numbers.current {
  background: blue;
  color: #fff;
}

.paging-area .page-numbers.dots {
  border-color: transparent;
  min-width: 1px;
  margin: 0;
}

.paging-area .next.page-numbers,
.paging-area .prev.page-numbers {
  position: relative;
}

.paging-area .next.page-numbers:before,
.paging-area .prev.page-numbers:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/common/ico-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.paging-area .next.page-numbers:hover:before,
.paging-area .prev.page-numbers:hover:before {
  background-image: url("../img/common/ico-arrow-wt.svg");
}

.paging-area .prev.page-numbers:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pagetop {
  z-index: 100;
}
#pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 62px;
  background-color: #e9a2af;
}
#pagetop img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 2px;
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
  animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/*------------------------------------------------------------------------------
  original
------------------------------------------------------------------------------*/
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.u-tac {
  text-align: center;
}

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

.u-mt {
  margin-top: var(--mt);
  --mt: var(--mt-pc, 40px);
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (min-width: 768px) {
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .c-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #FCEFE7;
  }
  .mv__btn {
    max-width: 294px;
  }
  .paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .paging-area > *:not(.dots):hover {
    background: blue;
    color: #fff;
  }
  #pagetop a {
    padding: 14.5px 21px;
  }
  #pagetop:hover a {
    background-color: #e1647b;
  }
  .u-hover.ptn02:hover {
    opacity: 0.9;
  }
  .u-hover:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 20px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: clip;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  header {
    max-width: 100%;
  }
  .menu__nav {
    overflow-y: scroll;
    height: 80svh;
  }
  .c-cont__main {
    margin: 0 auto;
    max-width: 100%;
  }
  .c-cont__lead {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .c-ttl__ja.fz16 {
    font-size: clamp(16px, 4.27vw, 18px);
  }
  .c-icon-list__cap {
    font-size: clamp(11px, 2.5vw, 12px);
  }
  .c-doctor-list__job {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .c-tag-list__li {
    font-size: clamp(11px, 2.5vw, 12px);
  }
  .c-year-list__year, .c-year-list__item {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .c-num-list01__note.small {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .c-dec-list__li {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .c-num-list02__ttl {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .c-num-list02__cap {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .c-case-list__txt01, .c-case-list__txt02 {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .c-case-list__risk {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .c-kome-txt {
    font-size: clamp(10px, 2.67vw, 12px);
  }
  .mv__btn {
    max-width: 78.4vw;
  }
  .lead__cap {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .cta__cap {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .cta-item__cap {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .cta-item__note {
    font-size: clamp(11px, 2.5vw, 12px);
  }
  #pagetop a {
    padding: 16px 21px;
  }
  #pagetop img {
    margin-top: 1px;
  }
  .u-mt {
    --mt: var(--mt-sp, 20px);
  }
}

@media (380px <= width < 500px) {
  .c-tag-list.tab_item {
    row-gap: 4px;
  }
  .c-tag-list.tab_item::before {
    content: "";
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .c-tag-list.tab_item .c-tag-list__li:nth-child(1), .c-tag-list.tab_item .c-tag-list__li:nth-child(2) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .c-tag-list.tab_item .c-tag-list__li:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (600px <= width < 768px) {
  .c-scroll-table {
    min-width: initial;
    width: 100%;
  }
}

@media (any-hover: hover) {
  .c-link:hover {
    opacity: 0.8;
  }
  .c-btn:hover {
    opacity: 0.8;
  }
}

@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
    animation: fadeIn 1.5s forwards;
  }
  .anm-up {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
  }
  .anm-left {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
    animation: fadeInLeft 1.5s forwards;
  }
  .anm-right {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
    animation: fadeInRight 1.5s forwards;
  }
}
/*# sourceMappingURL=style.css.map */