.c-btn01 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  background: var(--sub) url(../img/c-btn01.svg) no-repeat center right 4.2rem;
  border-radius: 10rem;
  overflow: hidden;
  padding: 1.4rem 7.6rem 1.4rem 4.2rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .c-btn01 a {
    background: var(--sub) url(../img/c-btn01.svg) no-repeat center right 2.4rem;
    padding: 1.4rem 5.6rem 1.4rem 2.4rem;
  }
}
.c-btn01 a:hover {
  opacity: 0.7;
}

.c-btn02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  background: var(--main-dark) url(../img/c-btn02.svg) no-repeat center right 2.4rem;
  padding: 0;
  transition: all 0.5s;
  width: 27.4rem;
  height: 5.6rem;
}
@media screen and (max-width: 768px) {
  .c-btn02 a {
    margin: 0 auto;
  }
}
.c-btn02 a:hover {
  background: var(--sub) url(../img/c-btn02.svg) no-repeat center right 1.2rem;
}

.c-btn03 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  background: #ff6677 url(../img/c-btn03.svg) no-repeat center right 5.2rem;
  border: 0.3rem solid var(--white);
  border-radius: 10rem;
  overflow: hidden;
  padding: 0 7.2rem 0 5.2rem;
  line-height: 11rem;
  box-shadow: 0.5rem 0.5rem 0.5rem 0 rgba(41, 41, 41, 0.5);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .c-btn03 a {
    display: flex;
    font-size: 1.8rem;
    width: 100%;
    background: #ff6677 url(../img/c-btn03.svg) no-repeat center right 2.6rem;
    padding: 0 4.6rem 0 2.6rem;
    line-height: 9rem;
  }
}
.c-btn03 a:hover {
  background: var(--sub) url(../img/c-btn03.svg) no-repeat center right 4.2rem;
}

.c-heading2 {
  text-align: center;
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c-heading2 {
    margin-bottom: 4.8rem;
  }
}
.c-heading2__num {
  color: var(--main);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
}
.c-heading2 h2 {
  font-size: 3.4rem;
  font-weight: 700;
  background: url(../img/c-heading2.png) repeat-x center center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-heading2 h2 {
    font-size: 2.8rem;
  }
}
.c-heading2 h2 span {
  background: var(--white);
  padding: 0 3rem;
  display: inline-block;
  color: var(--main-dark);
}
@media screen and (max-width: 768px) {
  .c-heading2 h2 span {
    padding: 0 2rem;
  }
}

.c-heading2--green {
  text-align: center;
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c-heading2--green {
    margin-bottom: 4.8rem;
  }
}
.c-heading2--green__num {
  color: var(--main);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
}
.c-heading2--green h2 {
  font-size: 3.4rem;
  font-weight: 700;
  background: url(../img/c-heading2.png) repeat-x center center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-heading2--green h2 {
    font-size: 2.8rem;
  }
}
.c-heading2--green h2 span {
  background: var(--sub-light);
  padding: 0 3rem;
  display: inline-block;
  color: var(--main-dark);
}
@media screen and (max-width: 768px) {
  .c-heading2--green h2 span {
    padding: 0 2rem;
  }
}

.c-heading2--blue {
  text-align: center;
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c-heading2--blue {
    margin-bottom: 4.8rem;
  }
}
.c-heading2--blue__num {
  color: var(--main);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
}
.c-heading2--blue h2 {
  font-size: 3.4rem;
  font-weight: 700;
  background: url(../img/c-heading2.png) repeat-x center center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-heading2--blue h2 {
    font-size: 2.8rem;
  }
}
.c-heading2--blue h2 span {
  background: #D6DDE9;
  padding: 0 3rem;
  display: inline-block;
  color: var(--main-dark);
}
@media screen and (max-width: 768px) {
  .c-heading2--blue h2 span {
    padding: 0 2rem;
  }
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.l-fixcta {
  position: fixed;
  top: 13.6rem;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .l-fixcta {
    display: none;
  }
}
.l-fixcta a {
  border-radius: 1rem 0px 0px 1rem;
  background: #107EF5;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  width: 6rem;
  gap: 1rem 1rem;
  transition: all 0.5s;
}
.l-fixcta a:hover {
  background: var(--sub);
}

.l-hero {
  width: 100%;
  height: calc(100vh - 18rem);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-hero {
    height: calc(100vh - 21.1rem);
  }
}
.l-hero::before {
  content: "";
  width: 100%;
  height: 0.8rem;
  background: var(--main-dark);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.l-hero__inner {
  width: 100%;
  height: calc(100vh - 18rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-hero__inner {
    height: calc(100vh - 21.1rem);
  }
}
.l-hero__inner div:nth-child(1) {
  z-index: 1;
}
.l-hero__inner div:nth-child(1) img {
  width: 100%;
  height: calc(100vh - 18rem);
  object-fit: cover;
  object-position: center;
}
.l-hero__inner div:nth-child(2) {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38.9rem;
  background: url(../img/l-hero01-shadow.png) repeat-x center center/100% 38.9rem;
}
.l-hero__inner div:nth-child(3) {
  z-index: 3;
  position: absolute;
  bottom: 3.6rem;
  left: 10rem;
  width: 100%;
  color: var(--white);
  line-height: 1.5;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-hero__inner div:nth-child(3) {
    font-size: 2.8rem;
    left: 0;
    bottom: 0;
    padding: 2rem;
  }
}

.l-feature {
  display: flex;
  flex-wrap: wrap;
}
.l-feature li {
  width: 33.3333333333%;
  padding: 1.5rem;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .l-feature li {
    width: 100%;
  }
}
.l-feature li:nth-child(1) {
  height: 18rem;
  background: url(../img/l-hero02.jpg) no-repeat center center/cover;
}
.l-feature li:nth-child(2) {
  height: 18rem;
  background: url(../img/l-hero03.jpg) no-repeat center center/cover;
}
.l-feature li:nth-child(3) {
  height: 18rem;
  background: url(../img/l-hero04.jpg) no-repeat center center/cover;
}
.l-feature__inside01 {
  border: 0.1rem solid var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.l-feature__inside01 span.sizeM {
  font-size: 3.2rem;
  line-height: 1.2;
}
.l-feature__inside01 span.sizeL {
  font-size: 4rem;
  line-height: 1.2;
}
.l-feature__inside02 {
  border: 0.1rem solid var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0.8rem 0;
}
.l-feature__inside02 span.sizeML {
  font-size: 3.2rem;
  line-height: 1.2;
}
.l-feature__inside03 {
  border: 0.1rem solid var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.l-feature__inside03 span.sizeL {
  font-size: 5rem;
  line-height: 1.2;
}

.l-trouble {
  padding: 8rem 0;
  background: #DCDCDC url(../img/l-trouble-bg.png) no-repeat center left/auto 100%;
  box-shadow: 0px 4rem 4rem -4rem rgba(0, 0, 0, 0.5) inset;
}
@media screen and (max-width: 768px) {
  .l-trouble {
    padding: 6rem 0;
    background: #DCDCDC url(../img/l-trouble-bg.png) no-repeat top left/auto 34.1rem;
  }
}
.l-trouble__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-trouble__inner {
    width: 100%;
    padding: 0 2rem;
  }
}
.l-trouble__title {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--main-dark);
  line-height: 1.5;
  text-align: center;
}
.l-trouble__title span {
  display: block;
  margin-bottom: 1.6rem;
}
.l-trouble__title img {
  width: 7.2rem !important;
  height: 7.2rem !important;
}
.l-trouble__box {
  width: 100%;
  background: var(--white);
  border: 0.2rem solid var(--main-dark);
  border-radius: 1rem;
  margin-top: 4rem;
  padding: 3.4rem 10rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-trouble__box {
    padding: 2rem;
  }
}
.l-trouble__list {
  width: calc((100% - 5.4rem) / 2);
}
@media screen and (max-width: 768px) {
  .l-trouble__list {
    width: 100%;
  }
}
.l-trouble__list li {
  background: url(../img/l-trouble-check.svg) no-repeat center left;
  padding-left: 4.5rem;
  color: var(--main-dark);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-trouble__list li {
    font-size: 1.4rem;
  }
}
.l-trouble__list li span {
  font-size: 2.4rem;
  color: #107EF5;
}
@media screen and (max-width: 768px) {
  .l-trouble__list li span {
    font-size: 2.3rem;
  }
}
.l-trouble__list li + li {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .l-trouble__list + .l-trouble__list {
    margin-top: 2rem;
  }
}

.l-method {
  padding: 8rem 0 0 0;
  background: #D9EDFF;
  position: relative;
  overflow: hidden;
}
.l-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 1.8rem solid transparent;
  border-right: 1.8rem solid transparent;
  border-top: 3rem solid #DCDCDC;
}
@media screen and (max-width: 768px) {
  .l-method {
    padding: 6rem 2rem;
  }
}
.l-method__inner {
  width: 70rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-method__inner {
    width: 100%;
  }
}
.l-method__title {
  color: var(--main-dark);
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .l-method__title {
    font-size: 2.8rem;
  }
}
.l-method__p {
  position: relative;
  z-index: 2;
}
.l-method__img {
  width: 64.6rem;
  position: relative;
  z-index: 1;
  margin: -4.8rem auto -2rem auto;
}
@media screen and (max-width: 768px) {
  .l-method__img {
    width: calc(100% + 8rem);
    margin: 2.4rem -4rem 0 -4rem;
  }
}

.l-cta {
  background: #002b6f url(../img/l-cta01.png) no-repeat center left / auto 100%;
  padding: 4rem 0;
  color: var(--white);
}
.l-cta__inner {
  width: 80rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-cta__inner {
    width: 100%;
    padding: 0 2rem;
  }
}
.l-cta__title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .l-cta__title {
    font-size: 2.6rem;
  }
}
.l-cta__title span {
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
}
.l-cta__title small {
  font-size: 2.2rem;
  font-weight: 500;
}
.l-cta__btn {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .l-cta__btn {
    margin-top: 2rem;
  }
}

.l-reason {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .l-reason {
    padding: 6rem 0;
  }
}
.l-reason__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-reason__inner {
    width: 100%;
    padding: 0 2rem;
  }
}
.l-reason__list > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-reason__list > li.reverse {
  flex-direction: row-reverse;
}
.l-reason__list > li + li {
  margin-top: 8.6rem;
}
@media screen and (max-width: 768px) {
  .l-reason__list > li + li {
    margin-top: 4rem;
  }
}
.l-reason__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .l-reason__img {
    width: calc(100% - 2rem);
  }
}
.l-reason__txt {
  width: 50%;
  padding: 0 4.8rem;
}
@media screen and (max-width: 768px) {
  .l-reason__txt {
    width: 100%;
    padding: 2rem;
  }
}
.l-reason__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.8rem;
  margin-bottom: 2.4rem;
}
.l-reason__title span:nth-child(1) {
  color: #107EF5;
  font-size: 7.4rem;
  line-height: 1;
  display: block;
}
.l-reason__title span:nth-child(2) {
  color: var(--main-dark);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-reason__title span:nth-child(2) {
    font-size: 1.8rem;
  }
}
.l-reason__box {
  border: 0.1rem solid #717171;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 2.4rem;
  font-size: 1.3rem;
}
.l-reason__photos {
  display: flex;
  justify-content: center;
  gap: 0 4.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .l-reason__photos {
    gap: 0 1.2rem;
    margin-bottom: 2rem;
  }
}
.l-reason__photos li {
  width: 11rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-reason__photos li {
    width: calc((100% - 2.4rem) / 3);
  }
}
.l-reason__photos li span {
  display: block;
  color: var(--main);
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-reason__photos li span {
    font-size: 1.5rem;
  }
}

.l-relax {
  padding: 8rem 0;
  background: var(--sub-light);
}
@media screen and (max-width: 768px) {
  .l-relax {
    padding: 6rem 2rem;
  }
}
.l-relax__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-relax__inner {
    width: 100%;
  }
}
.l-relax__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-relax__list {
    gap: 3.6rem 0;
  }
}
.l-relax__list li {
  width: calc((100% - 5.4rem) / 2);
  background: var(--white);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .l-relax__list li {
    width: 100%;
  }
}
.l-relax__title {
  color: var(--white);
  background: #55ABBB;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 0.8rem;
}
.l-relax__txt {
  padding: 2.4rem 3.6rem 4.8rem 3.6rem;
}
.l-relax__subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #55ABBB;
}

.l-case {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .l-case {
    padding: 6rem 2rem;
  }
}
.l-case__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-case__inner {
    width: 100%;
  }
}
.l-case__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 0;
}
@media screen and (max-width: 768px) {
  .l-case__group {
    gap: 1.6rem 0;
  }
}
.l-case__title {
  width: 100%;
  background: var(--main-dark);
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  line-height: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-case__title {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 1.2rem;
    overflow: visible;
  }
}
.l-case__title span {
  display: inline-block;
  background: #107EF5;
  font-size: 1.7rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  width: 11.4rem;
  text-align: center;
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .l-case__title span {
    top: -1.2rem;
    left: 2.4rem;
    line-height: 2.4rem;
  }
}
.l-case__table {
  width: 41rem;
}
@media screen and (max-width: 768px) {
  .l-case__table {
    width: 100%;
  }
}
.l-case__table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.l-case__table table tr:first-child td:first-child {
  border-radius: 5px 0 0 0;
}
.l-case__table table tr:first-child td:last-child {
  border-radius: 0 5px 0 0;
}
.l-case__table table tr:last-child td {
  border-bottom: 1px solid black;
}
.l-case__table table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.l-case__table table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.l-case__table table tr th {
  font-size: 14px;
  padding: 10px 20px;
}
.l-case__table table tr th:first-child {
  text-align: left;
}
.l-case__table table tr td {
  border-top: 0.1rem solid var(--main-dark);
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
}
.l-case__table table tr td:first-child {
  border-left: 0.1rem solid var(--main-dark);
  border-right: 0.1rem solid var(--main-dark);
  text-align: center;
  min-width: 12rem;
  color: var(--main-dark);
  font-weight: 700;
  font-size: 1.5rem;
}
.l-case__table table tr td:last-child {
  border-right: 0.1rem solid var(--main-dark);
}
.l-case__images {
  width: 45.8rem;
  height: 13rem;
  display: flex;
  justify-content: space-between;
  gap: 0 3.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-case__images {
    width: 100%;
    height: auto;
    margin-top: 2.4rem;
  }
}
.l-case__images::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0 1.2rem 1.2rem;
  border-color: transparent transparent transparent var(--main-dark);
}
.l-case__images li {
  width: calc((100% - 3.8rem) / 2);
  position: relative;
}
.l-case__images li span {
  position: absolute;
  top: -3rem;
  left: 0;
  line-height: 3rem;
  color: var(--main-dark);
  font-size: 1.6rem;
  font-weight: 700;
}
.l-case__images li img {
  border-radius: 0.8rem;
}
.l-case__group + .l-case__group {
  margin-top: 5.5rem;
}

.l-price {
  padding: 8rem 0;
  background: #D6DDE9;
}
@media screen and (max-width: 768px) {
  .l-price {
    padding: 6rem 2rem;
  }
}
.l-price__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-price__inner {
    width: 100%;
  }
}
.l-price__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4.8rem 3rem;
}
@media screen and (max-width: 768px) {
  .l-price__cards {
    gap: 2rem 0;
  }
}
.l-priceCardSmall {
  width: calc((100% - 6rem) / 3);
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-priceCardSmall {
    width: 80%;
    margin: 0 auto;
  }
}
.l-priceCardSmall__thumb {
  width: 100%;
}
.l-priceCardSmall__thumb img {
  width: 100%;
  height: 18.7rem;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .l-priceCardSmall__thumb img {
    height: 15rem;
  }
}
.l-priceCardSmall__body {
  padding: 2.4rem;
  border-top: 0.5rem solid var(--main);
  font-size: 1.4rem;
}
.l-priceCardSmall__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  color: var(--main-dark);
}
.l-priceCardSmall__price {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  color: var(--main-dark);
  margin-bottom: 0.8rem;
}


/*.l-priceCardMiddle*/

.l-priceCardMiddle {
  width: 65%;
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-priceCardMiddle {
	width: 100%!important;
    margin-top: 2rem;
  }
}
.l-priceCardMiddle__head {
  background: #107EF5 url(../img/l-price04.png) no-repeat center right/auto 100%;
  color: var(--white);
  font-weight: 700;
  padding: 3rem 6rem;
}
@media screen and (max-width: 768px) {
  .l-priceCardMiddle__head {
    padding: 2.4rem 2rem;
    background: #107EF5 url(../img/l-price04.png) no-repeat center right -12rem/auto 100%;
  }
}
.l-priceCardMiddle__head h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .l-priceCardMiddle__head h3 {
    font-size: 2rem;
  }
}
.l-priceCardMiddle__body {
  padding: 2.8rem 7rem 1.8rem 7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-priceCardMiddle__body {
    padding: 3.8rem 2rem 3.8rem 2rem;
  }
}
.l-priceCardMiddle__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-top: 2rem solid #107EF5;
}
.l-priceCardMiddle__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4rem;
justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-priceCardMiddle__list {
    gap: 2rem 0;
  }
}
.l-priceCardMiddle__list li {
  width: calc((100% - 4rem) / 1);
  border-radius: 1rem;
  border: 0.1rem solid var(--main-dark);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-priceCardMiddle__list li {
    width: 100%;
  }
}
.l-priceCardMiddle__list h4 {
  text-align: center;
  color: var(--main-dark);
  background: #d2e2f1;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 1.2rem 4rem;
}
.l-priceCardMiddle__list h4 small {
  font-size: 1.8rem;
  display: block;
}
.l-priceCardMiddle__list div {
  padding: 1.2rem 4rem;
}
.l-priceCardMiddle__list strong {
  color: #107EF5;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
}





/*l-priceCardLarge*/


.l-priceCardLarge {
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-priceCardLarge {
    margin-top: 2rem;
  }
}
.l-priceCardLarge__head {
  background: #107EF5 url(../img/l-price04.png) no-repeat center right/auto 100%;
  color: var(--white);
  font-weight: 700;
  padding: 3rem 6rem;
}
@media screen and (max-width: 768px) {
  .l-priceCardLarge__head {
    padding: 2.4rem 2rem;
    background: #107EF5 url(../img/l-price04.png) no-repeat center right -12rem/auto 100%;
  }
}
.l-priceCardLarge__head h3 {
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .l-priceCardLarge__head h3 {
    font-size: 2.6rem;
  }
}
.l-priceCardLarge__body {
  padding: 3.8rem 7rem 4.8rem 7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-priceCardLarge__body {
    padding: 3.8rem 2rem 3.8rem 2rem;
  }
}
.l-priceCardLarge__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-top: 2rem solid #107EF5;
}
.l-priceCardLarge__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4rem;
}
@media screen and (max-width: 768px) {
  .l-priceCardLarge__list {
    gap: 2rem 0;
  }
}
.l-priceCardLarge__list li {
  width: calc((100% - 4rem) / 2);
  border-radius: 1rem;
  border: 0.1rem solid var(--main-dark);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-priceCardLarge__list li {
    width: 100%;
  }
}
.l-priceCardLarge__list h4 {
  text-align: center;
  color: var(--main-dark);
  background: #d2e2f1;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 1.2rem 4rem;
}
.l-priceCardLarge__list h4 small {
  font-size: 1.8rem;
  display: block;
}
.l-priceCardLarge__list div {
  padding: 1.2rem 4rem;
}
.l-priceCardLarge__list strong {
  color: #107EF5;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
}

.l-doctor {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .l-doctor {
    padding: 6rem 2rem 0;
  }
}
.l-doctor__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-doctor__inner {
    width: 100%;
  }
}
.l-doctor__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-doctor__flex {
     display: grid;
  }
    
.c-heading2 .dr_reverse{
        flex-direction:column;
    }
}
.l-doctor__txt {
  width: 35.6rem;
  margin: 0 auto;
}
.l-doctor__inner p{ margin-bottom: 1rem; font-size: 15px;}

@media screen and (max-width: 768px) {
  .l-doctor__txt {
    width: 100%;
    margin: 2.8rem auto 0 auto;
  }
    .l-doctor__inner p{ font-size: 13px;}
}
.l-doctor__img {
  width: 43.8rem;
}
@media screen and (max-width: 768px) {
  .l-doctor__img {
    width: 100%;
  }
}
.l-doctor__name {
  margin-bottom: 2.4rem;
}
.l-doctor__name span:nth-child(1) {
  color: var(--main-dark);
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.l-doctor__name span:nth-child(2) {
  color: var(--main-dark);
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
}
.l-doctor__name span:nth-child(3) {
  color: var(--main);
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}
.l-doctor__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 2rem 0;
}

.l-jidv {
  background: var(--main-light);
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .l-jidv {
    padding: 4rem 2rem;
  }
}
.l-jidv__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-jidv__inner {
    width: 100%;
  }
}
.l-jidv__intro {
  width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-jidv__intro {
    width: 100%;
  }
}
.l-jidv__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.6;
}
.l-jidv__block {
  background: var(--white);
  margin-top: 3.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 6.6rem;
  padding: 2.7rem 8.2rem 5.4rem 8.2rem;
}
@media screen and (max-width: 768px) {
  .l-jidv__block {
    gap: 4.8rem 0;
    padding: 2.4rem 2rem;
  }
}
.l-jidv__block li {
  width: calc((100% - 6.6rem) / 2);
}
@media screen and (max-width: 768px) {
  .l-jidv__block li {
    width: 100%;
  }
}
.l-jidv__block h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 4.8rem;
}
.l-jidv__block h3 span {
  font-size: 1.4rem;
  display: block;
}
.l-jidv__block h3::after {
  content: "";
  position: absolute;
  bottom: -3.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 1.6rem solid var(--main);
  border-right: 1.6rem solid transparent;
  border-left: 1.6rem solid transparent;
}
.l-jidv__img {
  transition: all 0.5s;
}
.l-jidv__img:hover {
  opacity: 0.7;
}

.l-faq {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .l-faq {
    padding: 6rem 2rem;
  }
}
.l-faq__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-faq__inner {
    width: 100%;
  }
}
.l-faq__dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.l-faq__dl dt {
  width: 6.2rem;
  color: var(--white);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
}
.l-faq__dl dt.q {
  background: var(--main);
}
.l-faq__dl dt.a {
  background: var(--main-dark);
}
.l-faq__dl dd {
  width: calc(100% - 6.2rem);
  padding: 1.5rem 3rem;
}
@media screen and (max-width: 768px) {
  .l-faq__dl dd {
    padding: 1.2rem 2rem;
  }
}
.l-faq__dl dd.q {
  background: var(--main-light);
  font-weight: 700;
}
.l-faq__dl dd.a {
  background: #E4E4E4;
}
.l-faq__dl + .l-faq__dl {
  margin-top: 3rem;
}

.l-access {
  padding: 8rem 0;
  background: url(../img/l-access-bg.png) no-repeat bottom right;
}
@media screen and (max-width: 768px) {
  .l-access {
    padding: 6rem 2rem 0 2rem;
    background: none;
  }
}
.l-access__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-access__inner {
    width: 100%;
  }
}
.l-access__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12rem 9rem;
}
@media screen and (max-width: 768px) {
  .l-access__list {
    gap: 7.6rem 0;
  }
}
.l-access__list li {
  width: calc((100% - 9rem) / 2);
}
@media screen and (max-width: 768px) {
  .l-access__list li {
    width: 100%;
  }
}
.l-access__thumb {
  width: 100%;
  margin-bottom: 1.6rem;
}
.l-access__name {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--main-dark);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.l-access__name span {
  display: block;
  font-size: 1.6rem;
}
.l-access__phone {
  font-size: 2rem;
  font-family: 700;
  color: #107EF5;
  margin: 0.8rem 0 1.6rem 0;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.l-access__btns {
  margin-top: 4rem;
}
.l-access__btns li + li {
  margin-top: 2rem;
}

.l-flow {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .l-flow {
    padding: 6rem 2rem;
  }
}
.l-flow__inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-flow__inner {
    width: 100%;
  }
}
.l-flow__list {
  width: 68.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-flow__list {
    width: 100%;
  }
}
.l-flow__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: url(../img/l-flow__item.png) repeat-y left 4.3rem top;
  padding-bottom: 4.8rem;
}
.l-flow__item.none {
  background: none;
  padding-bottom: 0;
}
.l-flow__step {
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: linear-gradient(-45deg, rgb(25, 64, 127) 0%, rgb(40, 160, 215) 100%);
  border: 0.2rem solid var(--main-dark);
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  text-align: center;
}
.l-flow__step span {
  display: block;
  font-size: 3rem;
  line-height: 0.8;
}
.l-flow__step::before {
  content: "";
  z-index: 2;
  position: absolute;
  top: -0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--main-dark);
}
.l-flow__step::after {
  content: "";
  z-index: 2;
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--main-dark);
}
.l-flow__step.first::before {
  content: none;
}
.l-flow__step.last::after {
  content: none;
}
.l-flow__txt {
  width: 29rem;
}
@media screen and (max-width: 768px) {
  .l-flow__txt {
    width: calc(100% - 10rem);
  }
}
.l-flow__img {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .l-flow__img {
    width: calc(100% - 10rem);
    margin: 1.2rem 0 0 auto;
  }
}
.l-flow__title {
  color: var(--main-dark);
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 0.1rem solid #107EF5;
  margin-bottom: 0.8rem;
}/*# sourceMappingURL=style.css.map */


.sec-intro {
    padding: 88px 0;
    position: relative;
    z-index: 0;
}

.sec-intro .bg01 {
    position: absolute;
    right: -240px;
    bottom: 0;
    z-index: -1;
    width: 380px;
}

.sec-intro h2, .sec-comment h2 {
    font-size: 3.4rem;
    line-height: 1.5;
}

.sec-intro ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec-intro ul li {
    width: 370px;
    font-size: 2rem;
    padding: 16px 0 16px 42px;
    white-space: nowrap;
    background: url(https://www.senga-dc-shinjuku-east.com/bite/images/lp02/icon-check01.png) no-repeat left top 11px/31px;
}

.sec-intro ul li:nth-of-type(n+3) {
    border-top: solid 1px #efefef;
}
.content {
    margin: 0 auto;
    max-width: 800px;
}


.sec-comment {
    background: #efefef;
    padding: 100px 0 90px;
    position: relative;
}

.sec-comment .arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.sec-comment img.main01 {
    display: block;
    max-width: none;
    border-radius: 30px;
}

.sec-comment p {
    line-height: 2;
    font-size: 1.6rem;
    color: #000;
    text-align: justify;
}


footer .bg{ background: url(https://www.tdc-h-w.com/images/index/webp/footer-bg01.webp) no-repeat center/cover; color: #fff; padding: 9rem 0 10rem; position: relative; }
footer .bg.hakata{ background-image: url(https://www.tdc-h-w.com/images/index/webp/footer-bg02.webp); }
footer .bg.hakata.tenjin{ background-image: url(https://www.tdc-h-w.com/images/index/webp/footer-bg03.webp); }
footer .bg + .bg:before{ content: ''; width: 100%; height: 2px; background: url(https://www.tdc-h-w.com/images//index/border01.png) repeat-x left top/contain; position: absolute; top: -1px; left: 0; }
footer .bg .wrap{ flex-wrap: wrap;  }
footer .bg .wrap > picture{ display: block; width: 100%; }
footer .bg .logo{ display: block; margin: 0 auto 5rem; width: 400px;}
footer .bg .left{ width: 37.5rem; }
footer .bg .left p{ font-size: 1.4rem; margin-bottom: 2rem; }
footer .bg .left iframe{ display: block; width: 100%; height: 27rem; }
footer .bg .right{ width: 37.5rem; }
footer .bg .right .hour-table{ width: 100%; table-layout: fixed; font-size: 1.4rem; border-bottom: solid 1px rgba(255, 255, 255, .3); margin-bottom: 1.2rem; }
footer .bg .right .hour-table th{ width: 14rem; vertical-align: middle; padding-left: 2.5rem; }
footer .bg .right .hour-table td{ text-align: center; vertical-align: middle; }
footer .bg .right .hour-table thead{ background: rgba(255, 255, 255, .3); font-weight: 700; }
footer .bg .right .hour-table thead th{ height: 3.6rem; }
footer .bg .right .hour-table tbody th{ height: 4.2rem; }
footer .bg .right .hour-table tr > *:last-child{ width: 5rem; padding-right: 2rem; }
footer .bg .right .hour-table + p{ font-size: 1.2rem; opacity: .7; line-height: 1.6; margin-bottom: 2.6rem; }
footer .bg .right a.resv{ width: 31.2rem; height: 6rem; background: url(https://www.tdc-h-w.com/images/common/webp/footer-resv01.webp) #fff no-repeat left top/auto 100%; padding-left: 12.6rem; display: flex; align-items: center; font-size: 1.6rem; color: #0058a1; position: relative; margin-bottom: 3rem; }
footer .bg.hakata .right a.resv{ background-image: url(https://www.tdc-h-w.com/images/common/webp/footer-resv02.webp); }
footer .bg.tenjin .right a.resv{ background-image: url(https://www.tdc-h-w.com/images/common/webp/footer-resv03.webp); }
footer .bg .right a.resv span{ position: relative; padding-right: 1.5rem; }
footer .bg .right a.resv span:after{ content: ''; width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 6px; border-color: transparent transparent transparent #0058a1; position: absolute; top: 50%; right: 0; transform: translateY(-50%); }
footer .bg .right .tel-free{ display: table; font-size: 2.5rem; padding-left: 4.2rem; line-height: 1.6; background: url(https://www.tdc-h-w.com/images/common/icon-free01.png) no-repeat left center/3.5rem; }
footer .bg .right .tel-free:after{ content: '市内限定'; font-size: 1.2rem; border: solid 1px; display: inline-block; padding: .2rem .5em; vertical-align: text-bottom; margin-left: 2rem; }
footer .bg .right .tel{ display: table; font-size: 2.5rem; padding-left: 4.2rem; line-height: 1.6; background: url(../images/common/icon-tel01.png) no-repeat left .5rem center/2.5rem; }
footer .bg .right .sns{ display: flex; justify-content: flex-end; align-items: center; margin-top: 3rem; }
footer .bg .right .sns li{width: 2rem;}
footer .bg .right .sns li + li{ margin-left: 1.5rem; }
.wrap {
    width: 800px;
    margin: 0 auto;
    position: relative;
}
.row {
    display: flex;
    justify-content: space-between;
}

.quality-box h2.general{
    font-size: 3.4rem!important;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.p-hospitals {
  padding: 16.5rem 0 17.4rem;
}
.p-hospitals__ttl {
  margin-bottom: 2.85rem;
  text-align: center;
  color: var(--gray);
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.p-hospitals__ttl--color {
  margin-top: 0.6rem;
  display: block;
  color: var(--variation2);
  font-size: 5rem;
  font-family: var(--sub-font);
}
.p-hospitals-box {
  margin: 0 6rem 7.2rem 4rem;
}
.p-hospitals-box:last-child {
  margin-bottom: 0 !important;
}
.p-hospitals__title {
  margin-bottom: 3.6rem;
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  color: var(--variation2);
  font-family: var(--sub-font);
}
.p-hospitals__title::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.6rem;
  border-top: 0.1rem solid var(--variation2);
  border-bottom: 0.1rem solid var(--variation2);
  box-sizing: border-box;
  content: "";
  margin-top: -0.4rem;
}
.p-hospitals__title--bg {
  padding: 0 1rem;
  position: relative;
  display: inline-block;
  background-color: var(--white);
}
.p-hospitals-list {
  margin: 0 -0.1rem 0 -0.4rem;
}
.p-hospitals-list__pho {
  overflow: hidden;
  border-radius: 1rem;
}
.p-hospitals-list__ttl {
  margin-bottom: 1.4rem;
}
.p-hospitals-list__ttl-link {
  padding: 1.9rem 2rem 0.7rem 0;
  display: block;
  color: var(--gray);
  font-weight: bold;
  font-size: 1.4rem!important;
  border-bottom: 0.1rem solid var(--gray-light);
  background: url(../img/icon09.svg) no-repeat bottom 1.7rem right;
  background-size: 1.5rem 1.5rem;
}
@media screen and (min-width: 769px) {
  .p-hospitals-list__ttl-link:hover {
    opacity: 0.4;
  }
}
.p-hospitals-list__text {
  margin-bottom: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: 0.08rem;
}
.p-hospitals-list__text-tel {
  margin-top: 1.7rem;
  display: block;
  font-size: 1.6rem;
  color: var(--variation2);
  letter-spacing: 0.11rem;
}
.p-hospitals-list__title {
  margin-bottom: 2.3rem;
  padding: 0.9rem 0;
  color: var(--white);
  text-align: center;
  background-color: var(--variation2);
  letter-spacing: 0.08rem;
}
.p-hospitals-list__map {
  position: relative;
  height: 18rem;
  overflow: hidden;
}
.p-hospitals-list__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hospitals__item {
  width: 37rem; margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-hospitals {
    padding: 8.5rem 0 3rem;
  }
  .p-hospitals__ttl {
    margin-bottom: 5.6rem;
    font-size: 2rem!important;
    letter-spacing: 0;
  }
  .p-hospitals__ttl--color {
    margin-top: 0.8rem;
    font-size: 2rem!important;
    line-height: 1.2!important;
  }
  .p-hospitals-box {
    margin: 0 2rem 5.5rem;
  }
  .p-hospitals__title {
    margin-bottom: 3.4rem;
  }
  .p-hospitals-list {
    margin: 0;
    display: block;
  }
  .p-hospitals-list__pho img {
    width: 100%;
  }
  .p-hospitals-list__title {
    margin-bottom: 2.1rem;
  }
  .p-hospitals-list__map {
    height: 15rem;
  }
  .p-hospitals__item {
    margin-bottom: 5rem;
    width: auto;
  }
  .p-hospitals__item:last-child {
    margin-bottom: 0 !important;
  }
}

.p-pop-wid {
  padding: 10rem 0;
  position: relative;
}
.p-pop-close {
  position: absolute;
  right: 3.2rem;
  top: 3.8rem;
  cursor: pointer;
  width: 5rem;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .p-pop-close:hover {
    opacity: 0.4;
  }
}
@media screen and (min-width: 769px) {
  .p-pop__ttl {
    margin-bottom: 3.8rem;
  }
  .p-pop-box {
    margin: 0 5rem 7.4rem;
  }
  .p-pop-list {
    margin: -0.2rem -0.1rem 0 0.1rem;
  }
  .p-pop-list__ttl {
    margin-bottom: 1.6rem;
  }
}
.p-pop .c-link-list {
  margin-top: 2.9rem;
}
.p-pop .c-link-list .c-link-list__item {
  margin: 0 auto 1.8rem;
}
.p-pop .c-link-list .c-link-list__item:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-pop-wid {
    padding: 8rem 0;
  }
  .p-pop-close {
    right: 2rem;
    top: 2rem;
    width: 4rem;
  }
  .p-pop-close img {
    width: 100%;
  }
  .p-pop .c-link-list .c-link-list__item {
    margin: 0 auto 1.8rem;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .p-hospitals__item {
    width: 32rem;
  }
}
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.5s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.5s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-bg {
  background-color: rgb(255, 255, 255);
}


.c-content {
  margin: 0 auto;
  max-width: 90rem;
}

.c-heading01 {
  margin-bottom: 3rem;
  padding: 0.7rem 1rem 0.6rem;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03rem;
  background-color: var(--gray-light);
  border-radius: 5rem;
}
.c-heading01__txt {
  margin: 0 15rem;
}
.c-heading01__img {
  position: absolute;
  right: 3.1rem;
  top: -5.9rem;
}
@media screen and (max-width: 768px) {
  .c-heading01 {
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
    border-radius: 2rem;
  }
  .c-heading01__txt {
    margin: 0.3rem 0.8rem 0;
    display: block;
    line-height: 1.25;
  }
  .c-heading01__img {
    width: 7.8rem;
    right: 0rem;
    top: -3.8rem;
  }
}

.p-pop-wid {
background-color: #fff;
  padding: 10rem 0;
  position: relative;
}
.p-pop-close {
  position: absolute;
  right: 3.2rem;
  top: 3.8rem;
  cursor: pointer;
  width: 5rem;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .p-pop-close:hover {
    opacity: 0.4;
  }
}
@media screen and (min-width: 769px) {
  .p-pop__ttl {
    margin-bottom: 3.8rem;
  }
  .p-pop-box {
    margin: 0 5rem 7.4rem;
  }
  .p-pop-list {
    margin: -0.2rem -0.1rem 0 0.1rem;
  }
  .p-pop-list__ttl {
    margin-bottom: 1.6rem;
  }
}
.p-pop .c-link-list {
  margin-top: 2.9rem;
}
.p-pop .c-link-list .c-link-list__item {
  margin: 0 auto 1.8rem;
}
.p-pop .c-link-list .c-link-list__item:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-pop-wid {
    padding: 8rem 0;
  }
  .p-pop-close {
    right: 2rem;
    top: 2rem;
    width: 4rem;
  }
  .p-pop-close img {
    width: 100%;
  }
  .p-pop .c-link-list .c-link-list__item {
    margin: 0 auto 1.8rem;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .p-hospitals__item {
    width: 32rem;
  }
}
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.5s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.5s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-bg {
  background-color: rgb(255, 255, 255);
}

.p-alignment {
  padding: 11.3rem 0 14rem;
}
@media screen and (max-width: 768px) {
  .p-alignment {
    padding: 12.6rem 0 6.5rem;
  }
}
.p-alignment__head {
  margin: 0 -2rem 5.6rem;
  text-align: center;
  color: var(--gray);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.32rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-alignment__head {
    margin-bottom: 3.4rem;
    font-size: 2.4rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
  }
}
.p-alignment__head-item {
  font-size: 6rem;
  color: var(--variation2);
  line-height: 1.3;
  font-family: var(--sub-font);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-alignment__head-item {
    line-height: 1.6;
    font-size: 3rem;
  }
  .p-alignment__head-item-sub {
    position: relative;
  }
  .p-alignment__head-item-sub::after {
    position: absolute;
    bottom: 0rem;
    left: -0.5rem;
    right: 0;
    height: 2rem;
    content: "";
    z-index: -1;
    border-radius: 2rem;
    background: var(--sub-light);
  }
}
.p-alignment__head-item::after {
  position: absolute;
  bottom: 0.5rem;
  left: -0.5rem;
  right: 0;
  height: 2rem;
  content: "";
  z-index: -1;
  border-radius: 2rem;
  background: var(--sub-light);
}
@media screen and (max-width: 768px) {
  .p-alignment__head-item::after {
    bottom: 0;
  }
}
.p-alignment-content {
  max-width: 92.8rem;
}
.p-alignment__list {
  margin: 0 -4rem 0 -2.2rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-alignment__list {
    margin: 0 4.9rem;
    display: block;
  }
}
.p-alignment__list-item {
  margin: 0 2.2rem 2rem;
  width: calc(33.33% - 4.4rem);
}
@media screen and (max-width: 768px) {
  .p-alignment__list-item {
    width: auto;
    margin: 0 0 2.4rem;
  }
  .p-alignment__list-item:last-child {
    margin-bottom: 0;
  }
}
.p-alignment__list-photo {
  margin-bottom: 1.9rem;
}
@media screen and (max-width: 768px) {
  .p-alignment__list-photo {
    margin-bottom: 1.2rem;
  }
}
.p-alignment__list-img {
  width: 100%;
  height: auto;
}
.p-alignment__list-txt {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.24rem;
  color: var(--gray);
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-alignment__list-txt {
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
.p-alignment__list-txt-item {
  color: var(--variation2);
  display: block;
}

.p-plan {
  padding: 10.8rem 0 6rem;
  position: relative;
  background: url(../img/webp/plan_bg01.webp) no-repeat center;
  background-size: cover;
  border-top: 0.1rem solid var(--base-color);
  font-feature-settings: "palt";
}
.no-webp .p-plan {
  background-image: url(../img/plan_bg01.jpg);
}
@media screen and (max-width: 768px) {
  .p-plan {
    padding: 9.6rem 0 2rem;
    margin-bottom: -0.1rem;
    background-image: url(../img/webp/plan_bg01_sp.webp);
  }
  .no-webp .p-plan {
    background-image: url(../img/plan_bg01_sp.jpg);
  }
}
.p-plan::after, .p-plan::before {
  content: "";
  border: 7rem solid transparent;
  position: absolute;
  top: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-plan::before {
  border-width: 15.2rem;
  border-top-width: 5rem;
  border-top-color: var(--gray);
}
@media screen and (max-width: 768px) {
  .p-plan::before {
    border-width: 5.4rem;
    border-top-width: 2.7rem;
  }
}
.p-plan::after {
  border-width: 4.9rem;
  border-left-width: 15rem;
  border-right-width: 15rem;
  border-top-color: var(--white);
}
@media screen and (max-width: 768px) {
  .p-plan::after {
    border-width: 2.6rem;
    border-left-width: 5.3rem;
    border-right-width: 5.3rem;
  }
}
.p-plan__photo {
  position: absolute;
  bottom: -1.8rem;
  left: -15.4rem;
}
.p-plan__photo-img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-plan__photo-img {
    width: 22.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-plan__photo {
    bottom: -0.2rem;
    left: 0;
  }
}
.p-plan__photo-top {
  position: absolute;
  top: -8rem;
  right: -1.9rem;
}
@media screen and (max-width: 768px) {
  .p-plan__photo-top {
    top: -3.5rem;
    right: -5.1rem;
    width: 52%;
  }
}
.p-plan__photo-top-img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-plan-content {
    padding: 0 1.8rem;
  }
}
.p-plan__head {
  margin: 0 -3.5rem 9.2rem -0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-plan__head {
    margin: 0 3.6rem 3.8rem -1.2rem;
    padding-right: 0;
  }
}
.p-plan__head-img {
  width: 73rem;
  height: auto;
}
.p-plan-img-txt {
  position: absolute;
  top: 3.2rem;
  left: 0.9rem;
}
@media screen and (max-width: 768px) {
  .p-plan-img-txt {
    top: 1.9rem;
    left: 0.2rem;
  }
}
.p-plan-img-txt-img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-plan-img-txt-img {
    width: 6.2rem;
  }
}
.p-plan__inner {
  max-width: 70.2rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-plan__inner {
    max-width: inherit;
  }
}
.p-plan__inner-txt {
  margin: -5rem 0 0;
  text-align: right;
  font-size: 1.5rem;
  letter-spacing: 0.24rem;
  color: var(--gray);
  line-height: 1.87;
  position: relative;
  z-index: 12;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-plan__inner-txt {
    margin-top: 4.5rem;
    font-size: 1.2rem;
    line-height: 1.67;
    letter-spacing: 0.17rem;
  }
}
.p-plan__ttl {
  margin: 0 0.5rem 1rem;
  padding-left: 2.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-plan__ttl {
    margin: 0 0.3rem 0.8rem;
    padding-left: 2.3rem;
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
  }
}
.p-plan__ttl::before {
  width: 2.1rem;
  height: 2.1rem;
  background-color: var(--variation4);
  position: absolute;
  top: 0.7rem;
  left: 0;
  border-radius: 100%;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-plan__ttl::before {
    width: 1.9rem;
    height: 1.9rem;
    top: 0.6rem;
  }
}
.p-plan__table-box {
  margin-bottom: 6.7rem;
  margin-left: 0.2rem;
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 0.1rem solid var(--gray);
  position: relative;
  box-shadow: 0.7rem 0.7rem 0.7rem rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-plan__table-box {
    margin-bottom: 3.4rem;
    margin-right: 0.2rem;
  }
}
.p-plan__table-box--mb {
  margin-bottom: 7.8rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table-box--mb {
    margin-bottom: 4rem;
  }
}
.p-plan__table {
  width: 100%;
  border-spacing: 0;
  background-color: var(--white);
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .p-plan__table-sp-txt {
    display: block;
    letter-spacing: 0;
    max-width: 90%;
    padding-top: 0.2rem;
    margin-left: auto;
    text-align: justify;
  }
}
.p-plan__table tr:last-child th {
  border-bottom: none;
}
.p-plan__table tr:last-child td {
  border-bottom: none;
}
.p-plan__table-head {
  padding: 1.4rem 1rem 1.3rem 2.6rem;
  width: 37.5%;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-align: left;
  color: var(--gray);
  vertical-align: middle;
  border-bottom: 0.1rem solid var(--gray);
  border-right: 1px dashed var(--gray);
  background-color: var(--white);
  line-height: 1.733;
}
@media screen and (max-width: 768px) {
  .p-plan__table-head {
    width: 43.5%;
    padding: 1.6rem 0.2rem 1rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.47;
  }
}
.p-plan__table-head-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 0.2rem;
  vertical-align: -0.2rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table-head-num {
    font-size: 2.6rem;
  }
}
.p-plan__table-head--style {
  padding-top: 5.5rem;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-plan__table-head--style {
    padding-top: 7.2rem;
  }
}
.p-plan__table-body {
  padding: 1rem 2rem 1rem 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.23rem;
  color: var(--gray);
  text-align: right;
  vertical-align: middle;
  line-height: 1.733;
  border-left: 1px dashed var(--gray);
  border-bottom: 0.1rem solid var(--gray);
}
@media screen and (max-width: 768px) {
  .p-plan__table-body {
    height: 8rem;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.2rem;
    padding: 1.3rem 0.5rem 1rem 1.5rem;
  }
}
.p-plan__table-body--style {
  padding-bottom: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table-body--style {
    padding-bottom: 1.8rem;
  }
}
.p-plan__table-item {
  font-size: 1.8rem;
  color: var(--black);
  font-weight: 700;
  color: var(--variation4);
}
@media screen and (max-width: 768px) {
  .p-plan__table-item {
    font-size: 1.4rem;
  }
}
.p-plan__table-inner {
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 0.1rem dashed var(--gray);
}
@media screen and (max-width: 768px) {
  .p-plan__table-inner {
    margin-bottom: 1.6rem;
    padding-bottom: 2rem;
    margin-right: -1.5rem;
  }
}
.p-plan__table-txt {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--variation4);
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table-txt {
    margin: 0 0 1rem -0.5rem;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.3;
  }
  .p-plan__table-txt .p-plan__table-txt-sub {
    margin-right: -1rem;
    line-height: 1.3;
    display: block;
    text-align: left;
    letter-spacing: 0;
  }
  .p-plan__table-txt .p-plan__table-txt-sub .sp {
    display: inline-block;
  }
  .p-plan__table-txt:last-child {
    margin-bottom: 0;
  }
  .p-plan__table-txt--center {
    padding-right: 1.6rem;
    text-align: center;
  }
}
.p-plan__table-txt-item {
  font-size: 2.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-plan__table-txt-item {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}
.p-plan__table-txt-item::before {
  width: 9.3rem;
  height: 3.4rem;
  background: url(../img/plan_img.svg) no-repeat right top;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
.p-plan__table-txt-num {
  margin-left: 2rem;
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  vertical-align: -0.2rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table-txt-num {
    font-size: 2.4rem;
    letter-spacing: -0.05rem;
  }
  .p-plan__table-txt-num--ml {
    margin-left: 2rem;
  }
}
.p-plan__table-txt-num--sml {
  margin: 0 0.2rem;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table-txt-num--sml {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-plan__table-txt02 {
    text-align: right;
    margin-right: -1rem;
    letter-spacing: 0.1rem;
  }
}
.p-plan__table-arrow {
  margin: -0.3rem 0 -0.5rem 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-plan__table-arrow {
    margin: -0.6rem 0 0.1rem -1.8rem;
  }
  .p-plan__table-arrow-img {
    width: 1.5rem;
    height: auto;
  }
}
.p-plan__table--2 th {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.p-plan__table--2 td {
  padding-top: 0.7rem;
  padding-bottom: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-plan__table--2 td {
    padding-top: 2.4rem;
    letter-spacing: 0.08rem;
  }
  .p-plan__table--2 td .p-plan__table-txt {
    margin-bottom: 0.5rem;
    text-align: right;
  }
}
.p-plan__table--3-head {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 8rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table--3-head {
    padding-right: 0.9rem;
    width: 37%;
    text-align: right;
    font-size: 1.3rem;
    padding-left: 1rem;
  }
}
.p-plan__table--3-body {
  padding-top: 1rem;
  padding-bottom: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-plan__table--3-body {
    height: 14.5rem;
    font-size: 1.3rem;
    padding-right: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 1.7rem;
  }
}
.p-plan__table-color {
  margin-top: -0.5rem;
  display: block;
  color: var(--variation4);
}
@media screen and (max-width: 768px) {
  .p-plan__table-color {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
  }
}

.p-treatment {
  padding: 9.2rem 0 14.2rem;
  position: relative;
  z-index: 1;
  background: url("../img/webp/treatment_bg01.webp") no-repeat center bottom/cover;
}
.no-webp .p-treatment {
  background-image: url(../img/treatment_bg01.png);
}
@media screen and (max-width: 768px) {
  .p-treatment {
    padding: 6.75rem 0 9.8rem;
    background-image: url("../img/webp/treatment_bg01_sp.webp");
    background-position: center bottom;
    border-color: var(--link);
  }
  .no-webp .p-treatment {
    background-image: url(../img/treatment_bg01_sp.jpg);
  }
  .p-treatment .c-content {
    margin: 0;
  }
}
.p-treatment::before, .p-treatment::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5.1rem;
  background-color: var(--gray-light);
  content: "";
  border-top: 0.1rem solid var(--base-color);
}
.p-treatment::before {
  right: calc(50% - 0.2rem);
  transform: skewX(72deg);
  transform-origin: right bottom;
  border-right: 0.2rem solid var(--base-color);
}
.p-treatment::after {
  left: calc(50% - 0.2rem);
  transform: skewX(-72deg);
  transform-origin: left bottom;
  border-left: 0.2rem solid var(--base-color);
}
@media screen and (max-width: 768px) {
  .p-treatment::before, .p-treatment::after {
    height: 2.6rem;
  }
  .p-treatment::before {
    transform: skewX(63deg);
    right: calc(50% - 0.1rem);
  }
  .p-treatment::after {
    transform: skewX(-63deg);
    left: calc(50% - 0.1rem);
  }
}
.p-treatment__headling {
  margin-bottom: 6.7rem;
  text-align: center;
}
.p-treatment__headling-img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-treatment__headling {
    margin: 0 4.3rem 4rem 0;
  }
  .p-treatment__headling-img {
    width: 31.1rem;
  }
}
.p-treatment__list {
  margin: 0 auto 3rem;
  max-width: 82.2rem;
}
@media screen and (max-width: 768px) {
  .p-treatment__list {
    margin: 0 2rem;
    font-size: 1.4rem;
  }
}
.p-treatment__item {
  padding-bottom: 1.4rem;
  position: relative;
}
.p-treatment__item::before {
  width: 0.1rem;
  position: absolute;
  top: 1.5rem;
  left: 6.2rem;
  bottom: -1.5rem;
  background-color: var(--gray);
  content: "";
}
.p-treatment__item:last-child {
  padding-bottom: 0;
}
.p-treatment__item:last-child::before {
  display: none;
}
.p-treatment__item:nth-last-child(2)::before {
  bottom: 0;
}
.p-treatment__item:nth-last-child(2)::after {
  width: 0.1rem;
  height: 1.5rem;
  position: absolute;
  left: 5.7rem;
  bottom: -0.2rem;
  transform: rotate(-45deg);
  background-color: var(--gray);
  content: "";
}
@media screen and (max-width: 768px) {
  .p-treatment__item {
    padding-bottom: 1.6rem;
  }
  .p-treatment__item::before {
    top: 1.5rem;
    left: 3.6rem;
  }
  .p-treatment__item:nth-last-child(2)::after {
    left: 3.1rem;
  }
}
.p-treatment__num {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-treatment__num {
    margin-left: -0.7rem;
    width: 9.4rem;
  }
  .p-treatment__num-img {
    width: 100%;
  }
}
.p-treatment__img-box {
  width: 68.5rem;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .p-treatment__img-box {
    margin-top: 2.2rem;
    display: block;
    width: calc(100% - 9.5rem);
  }
}
.p-treatment__txt-box {
  margin-top: 3.3rem;
  width: 35rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-treatment__txt-box {
    width: auto;
    margin-top: 0;
  }
}
.p-treatment__txt-box__title {
  margin-bottom: 1.8rem;
  padding-bottom: 1.1rem;
  color: var(--main-light);
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  border-bottom: 0.1rem solid var(--gray);
}
@media screen and (max-width: 768px) {
  .p-treatment__txt-box__title {
    margin-bottom: 1.4rem;
    padding-bottom: 0.7rem;
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.p-treatment__txt-box__title--sml {
  font-size: 1.6rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-treatment__txt-box__title--sml {
    margin-right: -1rem;
    font-size: 1.7rem;
  }
}
.p-treatment__txt-box__text {
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.1rem;
}
.p-treatment__photo {
  margin: 1.1rem 1.1rem 3.4rem 0;
}
.p-treatment__photo-img {
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-treatment__photo {
    margin: 2.1rem 0 0 0;
  }
  .p-treatment__photo-img {
    width: 100%;
  }
}

.p-experience {
  padding: 9.2rem 0 0;
  position: relative;
  text-align: center;
  background-color: var(--gray-light);
}
@media screen and (max-width: 768px) {
  .p-experience {
    padding: 5.7rem 0 0;
  }
}
.p-experience__title {
  color: var(--link);
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-experience__title {
    margin-bottom: 1.1rem;
    font-size: 2.4rem;
  }
}
.p-experience::after {
  position: absolute;
  left: 50%;
  bottom: -8rem;
  width: 3.4rem;
  height: 13rem;
  content: "";
  background: url(../img/icon16.svg) no-repeat center bottom/100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-experience::after {
    bottom: -8.8rem;
    width: 2.4rem;
    height: 12.6rem;
    background-image: url(../img/icon16_sp.svg);
  }
}
@media screen and (max-width: 768px) {
  .p-experience__photo-img {
    width: 100%;
  }
}

.p-over-box {
  overflow: hidden;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 1rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mt30 {
  margin-top: 3rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mt50 {
  margin-top: 5rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mt70 {
  margin-top: 7rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mt90 {
  margin-top: 9rem !important;
}

.u-mt100 {
  margin-top: 10rem !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr10 {
  margin-right: 1rem !important;
}

.u-mr20 {
  margin-right: 2rem !important;
}

.u-mr30 {
  margin-right: 3rem !important;
}

.u-mr40 {
  margin-right: 4rem !important;
}

.u-mr50 {
  margin-right: 5rem !important;
}

.u-mr60 {
  margin-right: 6rem !important;
}

.u-mr70 {
  margin-right: 7rem !important;
}

.u-mr80 {
  margin-right: 8rem !important;
}

.u-mr90 {
  margin-right: 9rem !important;
}

.u-mr100 {
  margin-right: 10rem !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb10 {
  margin-bottom: 1rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-mb30 {
  margin-bottom: 3rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-mb50 {
  margin-bottom: 5rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-mb70 {
  margin-bottom: 7rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-mb90 {
  margin-bottom: 9rem !important;
}

.u-mb100 {
  margin-bottom: 10rem !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml10 {
  margin-left: 1rem !important;
}

.u-ml20 {
  margin-left: 2rem !important;
}

.u-ml30 {
  margin-left: 3rem !important;
}

.u-ml40 {
  margin-left: 4rem !important;
}

.u-ml50 {
  margin-left: 5rem !important;
}

.u-ml60 {
  margin-left: 6rem !important;
}

.u-ml70 {
  margin-left: 7rem !important;
}

.u-ml80 {
  margin-left: 8rem !important;
}

.u-ml90 {
  margin-left: 9rem !important;
}

.u-ml100 {
  margin-left: 10rem !important;
}/*# sourceMappingURL=style.css.map */


.c-flex {
  display: flex;
  flex-wrap: wrap;
}

.c-flex-b {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-fix-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-content {
  margin: 0 auto;
  max-width: 90rem;
}

.c-heading01 {
  margin-bottom: 3rem;
  padding: 0.7rem 1rem 0.6rem;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03rem;
  background-color: var(--gray-light);
  border-radius: 5rem;
}
.c-heading01__txt {
  margin: 0 15rem;
}
.c-heading01__img {
  position: absolute;
  right: 3.1rem;
  top: -5.9rem;
}
@media screen and (max-width: 768px) {
  .c-heading01 {
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
    border-radius: 2rem;
  }
  .c-heading01__txt {
    margin: 0.3rem 0.8rem 0;
    display: block;
    line-height: 1.25;
  }
  .c-heading01__img {
    width: 7.8rem;
    right: 0rem;
    top: -3.8rem;
  }
}

.c-price-tab {
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 0.1rem solid var(--base-color);
  border-radius: 1rem;
  overflow: hidden;
}
.c-price-tab__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: -0.1rem;
}
.c-price-tab__th, .c-price-tab__td {
  vertical-align: middle;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border-bottom: 0.1rem solid var(--base-color);
}
.c-price-tab__th {
  padding: 0.7rem 2rem 0.6rem 5.5rem;
  width: 23.8rem;
  text-align: left;
  border-right: 0.1rem solid var(--base-color);
}
.c-price-tab__td {
  padding: 0.6rem 4.2rem 0.6rem 2rem;
  text-align: right;
  border-bottom: 0.1rem solid var(--base-color);
}
.c-price-tab__txt {
  margin-left: 1.5rem;
  padding-left: 6.5rem;
  display: inline-block;
  min-width: 23.5rem;
  background: url(../img/icon03.svg) no-repeat left center/5rem;
}
@media screen and (max-width: 768px) {
  .c-price-tab__th, .c-price-tab__td {
    padding: 1rem 0.5rem;
    text-align: center;
    height: 5.5rem;
  }
  .c-price-tab__th {
    width: 13.8rem;
  }
  .c-price-tab__td {
    width: auto;
  }
  .c-price-tab__txt {
    display: block;
    position: relative;
    margin: 0;
    padding: 3.2rem 0 0;
    min-width: inherit;
    background: none;
  }
  .c-price-tab__txt::before {
    width: 2.3rem;
    height: 2rem;
    position: absolute;
    right: 50%;
    top: 2.8rem;
    content: "";
    background: url(../img/icon03.svg) no-repeat center right/5rem;
    transform: rotate(90deg) translateY(-50%);
    transform-origin: right top;
  }
}

.c-compare-list {
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-compare-list {
    margin: 0 -1.7rem 2.5rem;
    display: flex;
    justify-content: center;
  }
}
.c-compare-list::after {
  margin-top: 0.7rem;
  position: absolute;
  left: calc(50% - 0.7rem);
  top: 50%;
  content: "";
  height: 0;
  width: 0;
  border: 1rem solid transparent;
  border-left: 1.2rem solid var(--white);
}
.c-compare-list__item {
  margin: 0 1.7rem;
}
.c-compare-list__title {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-weight: bold;
  font-size: 1.94rem;
  letter-spacing: 0.05em;
}
.c-compare-list--no-bg::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-compare-list {
    max-width: 88%;
    margin: 0 auto 2.6rem;
  }
  .c-compare-list::after {
    margin: 0.2rem 0 0 -0.5rem;
    border: 1.1rem solid transparent;
    border-top: 1.2rem solid var(--white);
  }
  .c-compare-list--sml {
    max-width: 21rem;
  }
  .c-compare-list--sml__title {
    margin-bottom: 0.2rem;
    line-height: 1;
  }
  .c-compare-list__item {
    margin: 0 0 2rem;
  }
  .c-compare-list__item img {
    width: 100%;
  }
  .c-compare-list__item:last-child {
    margin-bottom: 0;
  }
  .c-compare-list__title {
    margin-bottom: 0.4rem;
  }
}

.c-line-box {
  padding: 3.9rem;
  position: relative;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--main-light);
  background: repeating-linear-gradient(-45deg, #F1FBF9, #F1FBF9 0.5rem, #fff 0.5rem, #fff 1.2rem);
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.25);
  font-feature-settings: "palt";
}
.c-line-box__icon {
  padding: 5.7rem 0 3rem;
  width: 18rem;
  height: 18rem;
  position: absolute;
  left: -6.2rem;
  top: -6rem;
  color: var(--white);
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--sub-font);
  background: url(../img/reasons_icon01.svg) no-repeat center center/cover;
  box-sizing: border-box;
}
.c-line-box__title {
  margin-bottom: 3.2rem;
  color: var(--main-light);
  font-size: 2.6rem;
  letter-spacing: 0.0269rem;
  font-weight: bold;
  line-height: 1.69;
  text-align: center;
  font-feature-settings: normal;
}
.c-line-box__img-inn {
  display: flex;
  justify-content: space-between;
}
.c-line-box__txt-inn {
  margin-top: -0.2rem;
  width: 35rem;
}
.c-line-box__txt-inn-txt {
  color: var(--gray);
  line-height: 2;
  letter-spacing: 0.2rem;
  text-align: justify;
}
.c-line-box__pho-inn {
  width: 32rem;
  position: relative;
}
.c-line-box__pho-inn-btn {
  width: 4rem;
  height: 4rem;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-line-box {
    padding: 2.9rem 2rem 2.6rem;
    position: relative;
  }
  .c-line-box__icon {
    padding: 4rem 0.8rem 2rem 0;
    width: 12.2rem;
    height: 12.2rem;
    left: -3rem;
    top: -4.8rem;
    font-size: 2.4rem;
    letter-spacing: -0.1rem;
    background-image: url(../img/reasons_icon01_sp.svg);
  }
  .c-line-box__title {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 1.54545;
  }
  .c-line-box__img-inn {
    display: block;
  }
  .c-line-box__txt-inn {
    margin: 0 0 1.5rem;
    width: auto;
  }
  .c-line-box__txt-inn-txt {
    font-size: 1.4rem;
  }
  .c-line-box__pho-inn {
    width: auto;
    aspect-ratio: 59/32;
  }
  .c-line-box__pho-inn-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.c-case {
  padding: 8.3rem 0 5.7rem;
  background: url(../img/webp/case_bg01.webp) no-repeat left bottom;
  background-size: 40rem auto;
}
.no-webp .c-case {
  background-image: url(../img/case_bg01.png);
}
.c-case-sub {
  margin-bottom: 3.2rem;
}
.c-case__ttl {
  margin-bottom: 3.3rem;
  position: relative;
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 0.07rem;
  font-family: var(--sub-font);
}
.c-case__ttl::before {
  width: 38rem;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  height: 2rem;
  background-color: var(--sub-light);
  border-radius: 5rem;
  box-sizing: border-box;
  transform: translateX(-50%);
  content: "";
}
.c-case__ttl--line {
  position: relative;
}
.c-case__title {
  margin-bottom: 4.4rem;
}
.c-case-box {
  margin: 0 0.1rem;
  align-items: flex-start;
  position: relative;
}
.c-case-tab {
  width: 40rem;
  margin-bottom: 0;
}
.c-case-tab__th {
  padding: 0.9rem 1rem 0.7rem 1.4rem;
  width: 9.8rem;
  font-weight: 500;
}
.c-case-tab__td {
  padding: 0.3rem 1.2rem 0;
  font-feature-settings: "palt";
}
.c-case-tab__td--num {
  font-weight: bold;
  font-size: 2.2rem;
}
.c-case-list {
  width: 46rem;
  margin: -2.7rem -0.2rem 0;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-case-list::after {
    margin-top: 0.5rem;
    left: calc(50% - 0.6rem);
    border: 0.9rem solid transparent;
    border-left: 1.1rem solid var(--base-color);
  }
}
.c-case-list__item {
  margin: 0;
  width: 21rem;
}
.c-case-list__item img {
  border-radius: 1rem;
}
.c-case-list__title {
  margin-bottom: 0.3rem;
  color: var(--base-color);
  font-weight: 500;
  font-size: 1.6rem;
}
.c-case__text {
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  text-align: right;
  font-size: 1.1rem;
  color: var(--gray);
  letter-spacing: 0.07rem;
  font-feature-settings: "palt";
}


.c-link-list {
  justify-content: center;
}
.c-link-list__item {
  width: 26rem;
  margin: 0 1rem;
}
.c-link-list__item-txt {
  height: 7rem;
  padding: 1rem 3rem 1rem 6.7rem;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  line-height: 1.25;
  background: url(../img/icon06.svg) no-repeat left 3rem center, url(../img/icon10.svg) no-repeat right 2rem center var(--sub);
  background-size: 2.3rem auto, 2rem auto;
  border-radius: 5rem;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-link-list__item-txt {
    box-shadow: 0.5rem 0.5rem 0.6rem rgba(0, 0, 0, 0.28);
  }
  .c-link-list__item-txt:hover {
    opacity: 0.7;
  }
}
.c-link-list__item-txt--green {
  letter-spacing: 0.14rem;
  background: url(../img/icon05.svg) no-repeat left 3.2rem center, url(../img/icon11.svg) no-repeat right 2rem center var(--main);
  background-size: 2.05rem auto, 2rem auto;
}
.c-link-list__item-txt--puper {
  letter-spacing: 0.14rem;
  background: url(../img/icon07.svg) no-repeat left 3rem center, url(../img/icon12.svg) no-repeat right 2rem center var(--variation1);
  background-size: 2.3rem auto, 2rem auto;
}
.c-link-list__item-txt--pink {
  background: url(../img/icon13.svg) no-repeat left 3rem center, url(../img/icon14.svg) no-repeat right 2rem center var(--variation3);
  background-size: 2.6rem auto, 2rem auto;
}
.certificate_position{ position: absolute; bottom: 12.2rem; left: 36vw; z-index: 5; }
.certificate_position .certificate img{ width: 150px;}
.certificate img{ width: 250px; height: auto; margin: 20px auto 10px; display: block; }

.achievements_position{ margin: 2rem 0 0; }
.mv .mv-slide li.swiper-slide .achievements_position img{ width: 46rem;}

@media screen and (max-width: 768px) {
    .achievements_position{ margin: 0; position: absolute; top:16.5rem; }
    .mv .mv-slide li.swiper-slide .achievements_position img{ width: 24rem;}
}

.side-img{ display: flex; justify-content: space-between;}
.side-img .img{ width: 48%; margin-bottom: 20px;}
.case_wrap h3{ color: #0058a1; font-size: 20px; font-weight: bold; border-bottom: 1px solid; margin: 30px 0 20px;}
.case_wrap h4{ background: #0058a1; color: #FFF; padding: 5px; text-align: center;}
.case_wrap table{ width: 100%;}
.case_wrap table th{ width: 30%;  background: #e9ecf7; text-align: center; vertical-align: middle;}
.case_wrap table td{ width: 70%; background: #f7f7f7;}
.case_wrap table th,.case_wrap table td{ font-size: 14px; padding: 10px 20px; box-sizing: border-box; border-bottom: #FFF 2px solid;}

.flex_wrap{ display: flex; justify-content: space-between; margin: 1rem 0; }
.flex_wrap .img_box{ width: 30%;}
.flex_wrap .text_box{ width: 70%; padding-left: 2rem; }
.flex_wrap .text_box p strong{ font-weight: bold;}

.scroll-box { overflow-x: auto; overflow-y: hidden; white-space: nowrap;
  width: 100%; padding-bottom: 1rem; }
.scroll-content .item { width: 800px; height: auto; display: inline-block; white-space: normal;}
.scroll-content .item + .item{ margin-left: 4rem; }

.scroll-box .l-flow .l-flow__list{ display: flex;}
.scroll-box .l-flow__item .l-flow__txt p{ width: 100%; height: 80px; font-size: 13px; letter-spacing: .05rem; }
.scroll-box .l-flow__step::after,
.scroll-box .l-flow__step::before{ content: none;}
.scroll-box .l-flow__item{ display: block; width: 100%; background: url(../img/l-flow__item.png) repeat-x left 4.3rem; padding-bottom: 2rem; padding-right: 4rem;}
.scroll-box .l-flow__item:last-child{ background: none;}
.scroll-box .l-flow__item .l-flow__txt,
.scroll-box .l-flow__item .l-flow__img{ width: 300px; box-sizing: border-box;}
.scroll-box .l-flow__list{ width: 100%; margin: 0; display: flex; }
.l-flow .scroll-content .item + .item{ margin: 0;}

.tell_btn {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50%;
  background-color: #005bac;
  color: #fff;
  z-index: 9999;
  text-align: center;
  font-weight: bold; }

.tell_btn .menu-trigger {
  display: block;
    height: 5.3rem;
  padding: 12px;
  font-size: 14px;
  background-color: #005bac;
  color: #fff;
  cursor: pointer;
}
    .tell_btn .menu-trigger:before{ content:"";  background: url("../img/icon-tel01.png") no-repeat 0% 100% / 2rem auto; width: 3rem; height: 2rem; display: inline-block; margin-bottom: -.3rem; }

.tell_btn .bottom-link {
  position: absolute;
  bottom: 100%; 
  left: 0;
  width: 100%;
  background-color: #3e7db8;
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s ease, opacity 1s ease;
  z-index: 1000;
}

.tell_btn .bottom-link span {
  display: block;
  padding: 10px 5px;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  background-color: #3e7db8;
}

.tell_btn .bottom-link span a {
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1.8;
}

.tell_btn .bottom-link span small {
  font-size: 10px; padding: .2rem .8rem;
  display: block; background: #0058a1; display: inline-block;
}

.tell_btn.active .bottom-link {
  max-height: 600px;
  opacity: 1;
}

.navi-list-btn .tell_btn .menu-trigger{ display: flex; justify-content: center; align-items: center;  background: none; padding: 0; width: 100%;}
.navi-list-btn .tell_btn .menu-trigger:before{ position: absolute; top: 50%; left: 16px; transform: translateY(-50%); background-size: 1.8rem auto; }
.navi-list-btn .tell_btn .bottom-link span{ font-size: 20px; letter-spacing: .2rem;}
.navi-list-btn .tell_btn .bottom-link span small{ font-size: 15px;}


@media screen and (max-width: 768px) {
  .c-link-list {
    display: block;
  }
  .c-link-list__item {
    width: 25.5rem;
    margin: 0 auto 3.1rem;
  }
  .c-link-list__item:last-child {
    margin-bottom: 0 !important;
  }
  .c-link-list__item-txt {
    padding-left: 6rem;
    background-position: left 2.5rem center, right 2.2rem center;
  }
  .c-link-list__item-txt--green {
    background-position: left 2.7rem center, right 2.2rem center;
  }
  .c-link-list__item-txt--puper {
    background-position: left 2.5rem center, right 2.2rem center;
  }
  .c-link-list__item-txt--pink {
    background-position: left 2.5rem center, right 2.2rem center;
  }
    .case_wrap table th,.case_wrap table td{ width: 100%; display: block;}
    
    .wrap {
        width: 100%;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}
