.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: #107EF5 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: #107EF5 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;
}

.sub_l-hero{
	
	height: calc(54vh - 29rem);
}
@media screen and (max-width: 768px) {
  .l-hero {
    height: calc(100vh - 21.1rem);
  }
	 .sub_l-hero {
    height: calc(50vh - 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;
}

.sub_l-hero__inner {
  width: 100%;
  height: calc(54vh - 29rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-hero__inner {
    height: calc(100vh - 21.1rem);
  }
	 .sub_l-hero__inner {
    height: calc(50vh - 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;
}
.sub_l-hero__inner div:nth-child(1) img {
  width: 100%;
  height: calc(46vh - 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;
}

.sub_l-hero__inner div:nth-child(2) {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20.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: 3rem;
  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 {
  border-top: 1rem solid #107EF5;
  background: var(--main-dark) 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.8rem;
  }
}
.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.4rem;
  font-weight: 700;
  line-height: 1.6;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-reason__title span:nth-child(2) {
    font-size: 2.2rem;
  }
}
.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-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;
  }
}
.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 {
    flex-direction: column-reverse;
  }
}
.l-doctor__txt {
  width: 35.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-doctor__txt {
    width: 100%;
    margin: 2.8rem auto 0 auto;
  }
}
.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-bottom: 2.4rem;
}

.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;
}

.case_table td{
	width: 48%;
	padding-left: 10px;
	padding-right: 10px;
}

.case_table td img{
	margin-bottom: 2rem;
}

.l-case h5{
	    font-size: 2rem;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 3rem;
    background: #002B6F;
    color: #fff;
	padding: 0.4rem;
}

.case_table th{
	text-align: center;
	color: #107EF5;
	font-size: 2rem;
	padding-top: 30px;
}

.case_table2{
	margin-top: 3rem;
}


.case_table2 td,.case_table2 th{
	border: 1px solid;
	padding: 10px;
}

.case_table td{
	font-size: 13px;
}

.case_table .flex3_c td{
	width: 30%;
}

.case_table2 th{
	font-size: 1.6rem;
	width: 30%;
	
}

.case_table td img{
	width: 100%;
}

@media screen and (max-width: 768px) {
  .l-flow__inner {
    width: 100%;
  }
	
	.case_table th {
    text-align: center;
    color: #107EF5;
    font-size: 4vw;
    padding-top: 5vw;
}
	
		.case_table .flex3_c th{
		font-size: 3vw;
	}
	
	
	.case_table2 th {
    text-align: center;
    color: #107EF5;
    font-size: 4vw;
    padding-top: 0vw;
}
	

}
.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: #107EF5;
  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;
}


.flex3{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.flex3 li{
	width: 32%;
	padding: 10px;
	position: relative;
}

.flex3 li:after{
	content: ">";
	position: absolute;
	top: 13px;
	right: 26px;
}

.flex3 li a{
display: block;
	border: 1px solid;
	text-align: center;
	font-size: 20px;
}

.flex3 li a span{
	font-size: 12px;
}

.flex3 li a:hover{
	opacity: .7;
	transition: .3s;
}


@media screen and (max-width: 768px) {
  .l-flow__txt {
    width: calc(100% - 10rem);
  }
	

	.flex3 li{
	width: 50%;
	padding: 10px;
	position: relative;
}
	
}
.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 */