@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 100%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

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

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

.c-fadein {
  opacity: 0;
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.inner {
  width: 100%;
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.top {
  overflow-x: hidden;
}

.top-mv {
  position: relative;
  width: 100%;
  height: 49.84375vw;
  background: url(../img/top/mv/mv.jpg) center/cover no-repeat;
}
.top-mv__ttl {
  padding: 10vw 13.2291666667vw 0 0;
  text-align: right;
}
.top-mv__ttl img {
  width: 46.3541666667vw;
}
.top-mv__status {
  padding: 6.4583333333vw 0 0 8.5416666667vw;
}
.top-mv__status img {
  width: 85.9895833333vw;
}

.top-about {
  margin-top: 127px;
}
.top-about__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.1em;
  text-align: center;
}
.top-about__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
  padding: 59px 0 0 18px;
}
.top-about__img {
  position: relative;
  text-align: center;
  max-width: 950px;
  margin: 142px auto 0;
}
.top-about__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 611px;
  top: 0;
  left: 0;
  background: #65c7f5;
  border-radius: 475px 475px 0 0;
}
.top-about__img img {
  position: relative;
  margin: -40px 7px 0 0;
}
.top-about__img-txt {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.075em;
  color: #fff;
  text-align: center;
  padding: 30px 10px 0 0;
}
.top-about__txt {
  position: relative;
  background: linear-gradient(to bottom, #FCFCDA, #D1F6FC);
  margin-top: 58px;
  padding: 72px 0;
}
.top-about__txt .inner {
  max-width: 1342px;
}
.top-about__desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 2.6666666667;
  letter-spacing: 0.075em;
}
.top-about__desc span {
  color:#2594be;
  font-weight: 600;
  font-size: 18px;
  line-height: 2.6666666667;
  letter-spacing: 0.075em;
}

.top-worry__ttl {
  position: relative;
  background: #a6a6a6;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding: 77px 0 27px 16px;
}
.top-worry__ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  bottom: 1px;
  left: 0;
  transform: translateY(100%);
  background: #a6a6a6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.top-worry-list {
  display: flex;
  margin-top: -21px;
}
.top-worry-item {
  width: 50%;
}
.top-worry-item:nth-child(1) {
  background: url(../img/top/worry/worry01.jpg) center/cover no-repeat;
}
.top-worry-item:nth-child(2) {
  background: url(../img/top/worry/worry02.jpg) center/cover no-repeat;
}
.top-worry-checklist {
  display: flex;
  justify-content: flex-end;
  padding: 257px 20px 142px;
}
.top-worry-checklist__wrap {
  display: flex;
  flex-flow: column;
  gap: 16px;
  padding-right: 6.09375vw;
}
.top-worry-checklist__item {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #4a4a4a;
  padding-left: 47px;
  border-bottom: solid 1px #dcdcdc;	
}
.top-worry-checklist__item::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 17px;
  top: 13px;
  left: 0;
  background: url(../img/common/check.png) center/cover no-repeat;
}
.top-worry__txt {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.4807692308;
  letter-spacing: 0;
  text-align: center;
  margin-top: 56px;
  padding: 187px 0 148px;
}
.top-worry__txt span {
  text-decoration: underline;
  text-decoration-thickness: 20px;
  text-underline-offset: -13px;
  text-decoration-color: #ffe930;
}
.top-worry__txt::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 160px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #585f69;
}

.top-demerit-ttl {
  display: flex;
  align-items: center;
  gap: clamp(40px, 2.5rem + (1vw - 9.6px) * 10.4167, 140px);
}
.top-demerit-ttl__ja {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: clamp(28px, 1.75rem + (1vw - 9.6px) * 0.8333, 36px);
  min-height: 0vw;
  letter-spacing: 0.1em;
  color: #fff;
  background: #0b3558;
  border-radius: 0 145px 145px 0;
  padding: 80px clamp(20px, 1.25rem + (1vw - 9.6px) * 24.8958, 259px) 100px clamp(20px, 1.25rem + (1vw - 9.6px) * 13.125, 146px);
}
.top-demerit-ttl__ja::after {
  position: absolute;
  content: "";
  width: calc(100% + 24px);
  height: 100%;
  top: 8px;
  left: -1px;
  border: 1px solid #cfa957;
  border-radius: 0 145px 145px 0;
}
.top-demerit-ttl__ja .underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 17px;
}
.top-demerit-ttl__ja strong {
  display: inline-block;
  font-size: clamp(40px, 2.5rem + (1vw - 9.6px) * 1.5625, 55px);
  min-height: 0vw;
  letter-spacing: 0.095em;
  margin-left: clamp(1px, 0.0625rem + (1vw - 9.6px) * 1.875, 19px);
  transform: translateY(8px);
}
.top-demerit-ttl__en {
  margin-top: 30px;
  width: clamp(250px, 15.625rem + (1vw - 9.6px) * 18.4375, 427px);
}
.top-demerit .inner {
  max-width: 1630px;
}
.top-demerit-list {
  margin: 93px 0 185px;
  display: flex;
  flex-flow: column;
}
.top-demerit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-demerit-item__txt {
  width: 47.1698113208%;
  color: #0b3558;
}
.top-demerit-item__ttl {
  display: flex;
}
.top-demerit-item__ttl-en {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  padding-left: 10px;
}
.top-demerit-item__ttl-num {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-top: -6px;
}
.top-demerit-item__ttl-ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.1em;
  margin: 33px 0 0 24px;
}
.top-demerit-item__desc {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 2.6666666667;
  letter-spacing: 0.1em;
  padding: 18px 0 0 67px;
}
.top-demerit-item__desc::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 36px);
  top: 29px;
  left: 12px;
  background: #0b3558;
}
.top-demerit-item__img {
  position: relative;
  width: 37.7358553459%;
  margin-right: 73px;
}
.top-demerit-item__img-wrap {
  position: relative;
}
.top-demerit-item__img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.5833333333);
}
.top-demerit-item__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-demerit-item__img-txt {
  position: absolute;
  bottom: -57px;
  left: -128px;
  width: 175px;
  height: 175px;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(226, 193, 104, 0.7);
  outline: 1px solid #fff;
  outline-offset: -10px;
  border-radius: 50%;
}
.top-demerit-item:nth-child(2n) .top-demerit-item__txt {
  order: 1;
  width: 46.5408805031%;
}
.top-demerit-item:nth-child(2n) .top-demerit-item__img {
  margin-right: 0;
  margin-left: 79px;
}
.top-demerit-item:nth-child(2n) .top-demerit-item__img-txt {
  left: auto;
  right: -128px;
}
.top-demerit-item:nth-child(1) .top-demerit-item__img::before {
  position: absolute;
  content: "";
  bottom: -62%;
  right: -41%;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}
.top-demerit-item:nth-child(2) {
  margin-top: 91px;
}
.top-demerit-item:nth-child(3) {
  margin-top: 88px;
}
.top-demerit-item:nth-child(3) .top-demerit-item__img::before {
  position: absolute;
  content: "";
  bottom: -62%;
  right: -41%;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}
.top-demerit-item:nth-child(3) .top-demerit-item__img-txt {
  font-size: 30px;
  line-height: 1.4;
}
.top-demerit-item:nth-child(4) {
  margin-top: 129px;
}
.top-demerit-item:nth-child(4) .top-demerit-item__img::before {
  position: absolute;
  content: "";
  top: -78%;
  left: -41%;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
}
.top-demerit-item:nth-child(5) {
  margin-top: 92px;
}

.top-know-ttl {
  background: url(../img/top/know/ttl-bg.jpg) center/100% 100% no-repeat;
}
.top-know-ttl__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  color: #fff;
  text-align: center;
  padding: 53px 0 59px 14px;
}
.top-know-content {
  display: flex;
  justify-content: space-between;
  margin-top: 59px;
  padding-left: 7.4479166667vw;
}
.top-know-content__img {
  width: 33.3333333333vw;
  align-self: baseline;
  position: relative;
  margin-top: 81px;
}
.top-know-content__img::before {
  position: absolute;
  content: "";
  width: 523px;
  height: 112px;
  top: -60px;
  left: -66px;
  background: url(../img/top/know/img-txt.png) center/cover no-repeat;
}
.top-know-content__img::after {
  position: absolute;
  content: "";
  width: 63.125%;
  height: 49.5348837209%;
  bottom: -107px;
  right: -35px;
  background: url(../img/top/about/invisalign.png) center/cover no-repeat;
}
.top-know-content__txt {
  width: 62.6041666667vw;
  border-radius: 60px 0 0 60px;
  background: url(../img/top/know/txt-bg.jpg) center/cover no-repeat;
  font-weight: 500;
  font-size: 18px;
  line-height: 3.0555555556;
  letter-spacing: 0.18em;
  margin-left: -65px;
  padding: 86px 95px 129px 124px;
}

.top-contact {
  margin-top: 69px;
  padding-top: 100px;
}
.top-contact .inner {
  max-width: 1640px;
}
.top-contact__box {
  outline: 1px solid #fff;
  outline-offset: -25px;
  text-align: center;
  padding: 0 40px 107px;
  background: url(../img/top/contact/bg.jpg) center/cover no-repeat;
}
.top-contact__ttl {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: linear-gradient(-48deg, #d5c7b8, #9a8e81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  transform: translate(-16px, -57px);
}
.top-contact__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 13px;
}
.top-contact__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  padding-left: 27px;
}
.top-contact__txt strong {
  font-size: 35px;
}
.top-contact-btns {
  display: flex;
  justify-content: center;
  gap: 141px;
  margin-top: 70px;
}
.top-contact-btn {
  width: 600px;
  height: 200px;
}
.top-contact-btn a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  padding-top: 27px;
}
.top-contact-btn a:hover {
  transition: opacity 0.2s ease;
}
.top-contact-btn a:hover:hover {
  opacity: 0.6;
}
.top-contact-btn__subttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
.top-contact-btn__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.1em;
  text-align: center;
}
.top-contact-btn__ttl span {
  font-size: 25px;
}
.top-contact-btn--tel a {
  outline: 1px solid #b7b4a6;
  outline-offset: -7px;
}
.top-contact-btn--reserve a {
  background: #0b3558;
  color: #fff;
  position: relative;
}
.top-contact-btn--reserve a::before, .top-contact-btn--reserve a::after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: "";
}
.top-contact-btn--reserve a::before {
  border-left: solid 2px;
  border-top: solid 2px;
  top: 9px;
  left: 9px;
}
.top-contact-btn--reserve a::after {
  border-right: solid 2px;
  border-bottom: solid 2px;
  bottom: 9px;
  right: 9px;
}

.top-review {
  margin-top: 317px;
}
.top-review .c-ttl__en {
  margin-bottom: 11px;
}
.top-review-container {
  padding-bottom: 162px;
}
.top-review-container--gold {
  margin-top: 55px;
  background: #fcf2dc;
}
.top-review-container--gold .top-review-container__ttl {
  background: #cfa957;
}
.top-review-container--gold .top-review-container__ttl::after {
  background: #cfa957;
}
.top-review-container--gold .top-review-container__list {
  margin-left: 3.1770833333vw;
}
.top-review-container--gold .top-review-container__item-question {
  color: #cfa957;
}
.top-review-container--gold .top-review-container__item-answer {
  background: #cfa957;
}
.top-review-container--gold .top-review-container__item-answer::after {
  background: #cfa957;
}
.top-review-container--pink {
  background: #ffebeb;
  padding-bottom: 77px;
}
.top-review-container--pink .top-review-container__ttl {
  background: #e49c9c;
  padding: 81px 20px 17px;
  padding-left: 74px;
}
.top-review-container--pink .top-review-container__ttl::after {
  background: #e49c9c;
}
.top-review-container--pink .top-review-container__list {
  margin-top: 185px;
  margin-right: 3.4895833333vw;
}
.top-review-container--pink .top-review-container__item-img {
  order: 1;
}
.top-review-container--pink .top-review-container__item-question {
  color: #fca2a2;
  margin: 0 auto 0 0;
}
.top-review-container--pink .top-review-container__item-question::after {
  right: auto;
  left: 0;
  transform: translateX(-50%);
}
.top-review-container--pink .top-review-container__item-answer {
  background: #fca2a2;
  margin: 30px 0 0 6.6331658291%;
}
.top-review-container--pink .top-review-container__item-answer::after {
  background: #fca2a2;
  left: auto;
  right: 0;
  transform: translateX(50%);
}
.top-review-container--pink .top-review-container__voice {
  gap: 122px;
  margin-top: 86px;
  padding: 69px 104px 55px 90px;
}
.top-review-container--pink .top-review-container__voice::before {
  width: 356px;
  height: 269px;
  bottom: auto;
  top: 0;
  background: url(../img/top/review/voice-bg03.png) center/cover no-repeat;
}
.top-review-container--pink .top-review-container__voice::after {
  width: 253px;
  height: 170px;
  top: auto;
  bottom: 0;
  background: url(../img/top/review/voice-bg04.png) center/cover no-repeat;
}
.top-review-container--pink .top-review-container__voice-txt {
  order: 1;
  width: 68.2451253482%;
}
.top-review-container--pink .top-review-container__voice-img {
  width: 22.4233983287%;
}
.top-review-container--pink .top-review-container__voice-img img {
  bottom: -56px;
}
.top-review-container__ttl {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding: 95px 20px 31px;
}
.top-review-container__ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 140px;
  bottom: 1px;
  left: 0;
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.top-review-container__list {
  margin-top: 206px;
  padding: 0 40px;
  display: flex;
  flex-flow: column;
  gap: 92px;
}
.top-review-container__item {
  display: flex;
  max-width: 1695px;
  margin: auto;
}
.top-review-container__item-img {
  width: 41.2979351032%;
  align-self: flex-end;
  margin-top: 66px;
}
.top-review-container__item-img img {
  border-radius: 30px;
}
.top-review-container__item-txt {
  width: 58.7020648968%;
}
.top-review-container__item-question {
  position: relative;
  background: #fff;
  width: 90.4522613065%;
  border-radius: 30px;
  box-shadow: 0px 7px 16.74px 1.26px rgba(170, 170, 170, 0.45);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-left: auto;
  padding: 37px 112px 45px;
}
.top-review-container__item-question::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 35px;
  bottom: 0;
  right: 0;
  transform: translateX(50%);
  background: #fff;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.top-review-container__item-answer {
  position: relative;
  color: #fff;
  width: 100.5025125628%;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 30px 0 0 -6.6331658291%;
  padding: 58px 58px 54px 61px;
}
.top-review-container__item-answer::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 35px;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.top-review-container__item:nth-child(2) .top-review-container__item-img {
  margin-top: 36px;
}
.top-review-container__item:nth-child(2) .top-review-container__item-question {
  padding: 32px 112px 35px;
}
.top-review-container .inner {
  max-width: 1670px;
}
.top-review-container__voice {
  position: relative;
  background-color: #fff;
  display: flex;
  gap: 110px;
  margin-top: 97px;
  padding: 69px 106px 55px 106px;
}
.top-review-container__voice::before {
  position: absolute;
  content: "";
  width: 253px;
  height: 171px;
  bottom: 0;
  left: 0;
  background: url(../img/top/review/voice-bg01.png) center/cover no-repeat;
}
.top-review-container__voice::after {
  position: absolute;
  content: "";
  width: 355px;
  height: 271px;
  top: 0;
  right: 0;
  background: url(../img/top/review/voice-bg02.png) center/cover no-repeat;
}
.top-review-container__voice-txt {
  width: 73.0253353204%;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #4a4a4a;
  position: relative;
}
.top-review-container__voice-img {
  width: 21.609538003%;
  position: relative;
  z-index: 1;
}
.top-review-container__voice-img img {
  position: absolute;
  bottom: -56px;
  left: 0;
  width: 100%;
}

.top-case {
  position: relative;
  text-align: center;
  color: #585f69;
  margin-top: 123px;
}
.top-case .inner {
  max-width: 1502px;
}
.top-case__slider {
  position: relative;
  margin: 34px 80px 0;
}
.top-case__slider .swiper-button-prev,
.top-case__slider .swiper-button-next {
  width: 76px;
  height: 76px;
  border-top: 10px solid #585f69;
  border-left: 10px solid #585f69;
  top: calc(50% - 36px);
}
.top-case__slider .swiper-button-prev::after,
.top-case__slider .swiper-button-next::after {
  display: none;
}
.top-case__slider .swiper-button-prev {
  transform: rotate(-45deg);
  left: -66px;
}
.top-case__slider .swiper-button-next {
  transform: rotate(135deg);
  right: -78px;
}
.top-case .case-swiper {
  overflow: hidden;
}
.top-case-item {
  background: #f8f8f8;
  padding: 88px 8.8325652842% 75px 13.5944700461%;
}
.top-case-item__ttl {
  position: relative;
  display: flex;
  gap: 25px;
  padding-left: 19px;
}
.top-case-item__ttl--en {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
  border-right: 1px solid #585f69;
  padding-right: 3px;
}
.top-case-item__ttl--ja {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  padding: 0;
  text-align: left;
}
.top-case-item__list {
  display: flex;
  justify-content: space-between;
  margin: 44px 50px 0;
}
.top-case-item__item {
  width: 44.1758241758%;
  border-top: 1px solid;
  border-bottom: 1px solid;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  box-sizing: border-box;
  padding: 10px 10px 12px 37px;
}
.top-case-item__txt {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7777777778;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 46px 0 0 5px;
}
.top-case-item__imgs {
  display: flex;
  justify-content: space-between;
  margin-top: 85px;
}
.top-case-item__before, .top-case-item__after {
  position: relative;
  width: 49.504950495%;
  background: #fff;
}
.top-case-item__img-ttl {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: -50px;
}
.top-case-item__img-ttl::before {
  position: absolute;
  content: "";
  width: 192px;
  height: 192px;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #585f69;
}
.top-case-item__img-ttl span {
  position: relative;
}
.top-case-item__after .top-case-item__img-ttl::before {
  background: #b09f90;
}
.top-case-item__img {
  padding: 15px 15px 32px;
}
.top-case-item__img-main {
  margin-top: 16px;
  position: relative;
}
.top-case-item__img-main::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 1.4042553191);
}
.top-case-item__img-main img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-price {
  margin-top: 121px;
}
.top-price .inner {
  max-width: 1720px;
}
.top-price-content--first, .top-price-content--second {
  max-width: 1302px;
  margin: 36px auto 97px;
}
.top-price-content--first .top-price-content__box, .top-price-content--second .top-price-content__box {
  background: #fef7e9;
  border: none;
  margin-top: 0;
  padding: 52px 14.6697388633% 67px;
}
.top-price-content--first .top-price-content__head, .top-price-content--second .top-price-content__head {
  color: #000;
}
.top-price-content--second {
  margin-bottom: 104px;
}
.top-price-content--second .top-price-content__desc {
  padding: 51px 0 9px;
}
.top-price-content-ttl {
  position: relative;
}
.top-price-content-ttl__num {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 150px;
  line-height: 136px;
  color: #f2f2f2;
  text-align: center;
}
.top-price-content-ttl__ja {
  position: absolute;
  top: calc(50% + 6px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: #d5ad58;
  width: 100%;
  text-align: center;
}
.top-price-content-ttl__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 40px;
}
.top-price-content__box {
  color: #000000;
  background: #f9f9f9;
  padding: 84px clamp(20px, 1.25rem + (1vw - 9.6px) * 24.375, 254px) 93px;
  margin-top: 58px;
  border-top: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
}
.top-price-content__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 2.4166666667;
  letter-spacing: 0;
  text-align: center;
  color: #4d4d4d;
  margin-bottom: 12px;
}
.top-price-content__price {
  max-width: 900px;
  width: 100%;
  height: 120px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0;
  color: #d5ad58;
  background: #fff;
  text-align: center;
}
.top-price-content__price span {
  font-size: 24px;
}
.top-price-content__time {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0;
  padding-top: 27px;
}
.top-price-content__desc {
  max-width: 895px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0;
  padding-top: 6px;
}
.top-price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 37px;
  margin: 94px 0 48px;
}
.top-price-item {
  position: relative;
  width: 45.6484641638%;
  background: #fff;
  outline: 1px solid #d5ad58;
  outline-offset: -10px;
  padding: 10px 10px 74px;
  text-align: center;
}
.top-price-item::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: 10px;
  left: 10px;
  background: #d5ad58;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.top-price-item__num {
  position: absolute;
  top: 14px;
  left: 34px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  color: #fff;
}
.top-price-item__ttl {
  position: relative;
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1538461538;
  letter-spacing: 0;
  color: #5c3600;
  border-bottom: 1px solid #d5ad58;
  padding: 23px 0 10px;
  min-width: 67.9611650485%;
  max-width: 71%;
}
.top-price-item__ttl span {
  display: inline-block;
}
.top-price-item__price {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #d5ad58;
  padding-top: 44px;
  padding-left: 11px;
}
.top-price-item__price .num {
  font-size: 35px;
  padding-left: 3px;
}
.top-price-item__period {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  color: #4d4d4d;
  padding-left: 11px;
}
.top-price-item__txt {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  padding: 5px 0 0 16px;
}
.top-price-item__txt::before {
  position: absolute;
  content: "※";
  top: 5px;
  left: 0;
}
.top-price-item:nth-child(4) {
  padding: 10px 10px 64px;
}
.top-price-item:nth-child(4) .top-price-item__ttl {
  padding: 15px 0 6px;
}
.top-price-item:nth-child(4) .top-price-item__price {
  padding-top: 36px;
}
.top-price-item:nth-child(5) {
  padding: 10px 10px 18px;
}
.top-price-item:nth-child(5) .top-price-item__ttl {
  padding: 18px 0 6px;
}
.top-price-item:nth-child(5) .top-price-item__price {
  padding-top: 25px;
}
.top-price__note {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0;
  color: #4d4d4d;
  padding-left: 9px;
}
.top-price__note::before {
  position: absolute;
  content: "※";
  top: 0;
  left: -9px;
}
.top-price__txt {
  display: flex;
  justify-content: center;
  margin-top: 42px;
  margin-right: 12px;
}
.top-price__txt-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 48px;
  border: 1px solid #d5ad58;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #5c3600;
  padding: 26px 115px 26px 129px;
}
.top-price__txt-wrap::before, .top-price__txt-wrap::after {
  position: absolute;
  content: "";
  top: 0;
  width: 56px;
  height: 100%;
  background: #d5ad58;
}
.top-price__txt-wrap::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 6px 50%, 100% 100%, 0 100%);
}
.top-price__txt-wrap::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, calc(100% - 6px) 50%);
}
.top-price__txt-wrap strong {
  color: #d5ad58;
}

.top-features {
  margin-top: 147px;
}
.top-features .c-ttl__en {
  margin-bottom: 41px;
}
.top-features .c-ttl__ja {
  line-height: 1.75;
}
.top-features-list {
  display: flex;
  flex-flow: column;
  gap: 78px;
  margin-top: 59px;
}
.top-features-content-ttl {
  width: 76.8229166667%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4.0989399293%;
  background: linear-gradient(128deg, #253a4b, #507da0);
  border-radius: 100px 0 0 0;
  margin-left: auto;
  padding: 65px 5.8854166667% 71px;
}
.top-features-content-ttl__num {
  width: 26.5762711864%;
  position: absolute;
  top: 50%;
  left: 27px;
  transform: translate(-100%, -50%);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 150px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #e1c183;
  text-align: center;
  border-bottom: 2px solid #e1c183;
  padding-bottom: 24px;
}
.top-features-content-ttl__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
}
.top-features-content-ttl__txt .small {
  display: inline-block;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  padding-top: 23px;
}
.top-features-content-ttl__txt .big {
  font-size: 60px;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.top-features-content__box {
  width: 88.5416666667%;
  margin: auto;
  display: flex;
  background: #f8f8f8;
  padding: 197px 5.8854166667% 125px 8.90625%;
  margin-top: -139px;
}
.top-features-content__txt {
  width: 56.4174894217%;
}
.top-features-content__head {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 0.1em;
  color: #0c2533;
  padding-left: 111px;
  margin-bottom: 43px;
}
.top-features-content__head span {
  text-decoration: underline;
  text-decoration-thickness: 15px;
  text-decoration-color: #e9deb7;
  text-underline-offset: -6px;
}
.top-features-content__head::before {
  position: absolute;
  content: "";
  width: 83px;
  height: 76px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/top/features/ttl-img02.png) center/cover no-repeat;
}
.top-features-content__desc {
  width: 96.25%;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #524d4d;
  padding: 11px 0 0 5px;
}
.top-features-content__desc span {
  color: #aa3b3b;
}
.top-features-content__img img {
  position: relative;
}
.top-features-content__imgs {
  width: 100vw;
  margin: 0 calc(50% - 50vw - 7.5px);
  display: flex;
  flex-flow: column;
  gap: 32px;
  margin-top: 72px;
}
.top-features-content__imgs .top-features-content__img img {
  width: 100%;
}
.top-features-content:nth-child(1) .top-features-content-ttl {
  gap: 7.4476987448%;
  padding: 65px 7.2916666667% 86px;
}
.top-features-content:nth-child(1) .top-features-content-ttl__num {
  top: calc(50% + 25px);
}
.top-features-content:nth-child(1) .top-features-content-ttl__txt {
  padding-top: 14px;
}
.top-features-content:nth-child(1) .top-features-content__box {
  gap: 3.4555712271%;
  padding: 278px 6.71875% 125px 7.96875%;
  margin-top: -210px;
}
.top-features-content:nth-child(1) .top-features-content__img img {
  margin-top: -115px;
}
.top-features-content:nth-child(2) {
  margin-bottom: 291px;
}
.top-features-content:nth-child(2) .top-features-content__box {
  gap: 6.8502824859%;
  padding-bottom: 181px;
}
.top-features-content:nth-child(2) .top-features-content__txt {
  width: 56.4971751412%;
  position: relative;
}
.top-features-content:nth-child(2) .top-features-content__desc {
  position: relative;
  padding-bottom: 49px;
}
.top-features-content:nth-child(2) .top-features-content__desc-img {
  position: absolute;
  width: 100%;
}
.top-features-content:nth-child(2) .top-features-content__img {
  width: 28.4604519774%;
  position: relative;
}
.top-features-content:nth-child(2) .top-features-content__img img {
  position: absolute;
}
.top-features-content:nth-child(3) {
  margin-bottom: -19px;
}
.top-features-content:nth-child(3) .top-features-content__box {
  gap: 8.8276836158%;
  padding-top: 178px;
  padding-bottom: 88px;
}
.top-features-content:nth-child(3) .top-features-content__txt {
  width: 50.8474576271%;
}
.top-features-content:nth-child(3) .top-features-content__desc {
  width: 100%;
}
.top-features-content:nth-child(3) .top-features-content__img {
  margin-top: 24px;
}
.top-features-content:nth-child(4) {
  margin-bottom: 12px;
}
.top-features-content:nth-child(4) .top-features-content__box {
  gap: 5.1553672316%;
  padding-top: 189px;
  padding-bottom: 128px;
}
.top-features-content:nth-child(4) .top-features-content__txt {
  width: 50.8474576271%;
}
.top-features-content:nth-child(4) .top-features-content__desc {
  width: 100%;
}
.top-features-content:nth-child(4) .top-features-content__img {
  margin-top: 12px;
}
.top-features-content:nth-child(5) .top-features-content__box {
  flex-flow: column;
  gap: 5.1553672316%;
  padding: 185px 5.8854166667% 0 6.6666666667%;
}
.top-features-content:nth-child(5) .top-features-content__desc {
  font-family: "Shippori Mincho", serif;
}
.top-features-content:nth-child(2n) .top-features-content-ttl {
  margin-left: 0;
  border-radius: 0 100px 0 0;
}
.top-features-content:nth-child(2n) .top-features-content-ttl__num {
  left: auto;
  right: 27px;
  transform: translate(100%, -50%);
}

.top-counseling {
  margin: 105px 0 144px;
  color: #000;
}
.top-counseling .inner {
  max-width: 1462px;
}
.top-counseling .c-ttl__en {
  margin-bottom: 22px;
}
.top-counseling .c-ttl__ja {
  letter-spacing: 0;
  padding-right: 13px;
}
.top-counseling-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 73px 0;
  margin-top: 44px;
  margin-left: 20px;
}
.top-counseling-item {
  width: 37.089871612%;
  position: relative;
}
.top-counseling-item::after {
  position: absolute;
  content: "";
  width: 35.1923076923%;
  height: 23px;
  box-sizing: border-box;
  border-bottom: solid 2px #cfa957;
  border-right: solid 2px #cfa957;
}
.top-counseling-item-ttl {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 18px;
  line-height: 1.5;
  padding-left: 39px;
  padding-bottom: 9px;
}
.top-counseling-item-ttl::before {
  position: absolute;
  content: "";
  bottom: 8px;
  left: -48px;
  width: 172px;
  height: 41px;
  background: url(../img/top/counseling/step-bg.png) center/cover no-repeat;
}
.top-counseling-item-ttl__step {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 39px;
  letter-spacing: 0;
}
.top-counseling-item-ttl__step .num {
  font-size: 50px;
  padding-left: 9px;
}
.top-counseling-item-ttl__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0;
}
.top-counseling-item__img {
  position: relative;
}
.top-counseling-item__img::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 90%;
  height: 90%;
  border-left: 2px solid #cfa957;
  border-bottom: 2px solid #cfa957;
}
.top-counseling-item__img-wrap {
  position: relative;
}
.top-counseling-item__img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.6730769231);
}
.top-counseling-item__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-counseling-item__txt {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  padding-top: 40px;
}
.top-counseling-item:nth-child(2n+1)::after {
  top: 50%;
  right: -13.4615384615%;
  transform: translate(100%, -100%) skew(30deg);
}
.top-counseling-item:nth-child(2n)::after {
  bottom: -35px;
  left: -18.2692307692%;
  transform: translate(-100%, -100%) rotate(158deg) scale(1, -1) skew(30deg);
}
.top-counseling-item:nth-child(2n) .top-counseling-item-ttl {
  margin-left: 31px;
}
.top-counseling-item:nth-child(2n):last-child::after {
  display: none;
}

.top-faq {
  padding: 77px 0 359px;
  background: url(../img/top/faq/bg.jpg) center/cover no-repeat;
}
.top-faq .inner {
  max-width: 1476px;
}
.top-faq .c-ttl__en {
  line-height: 1.2;
  margin: 0 13px 13px 0;
}
.top-faq .c-ttl__ja {
  color: #fff;
}
.top-faq__list {
  margin-top: 59px;
}

.top-faq-item:not(:first-child) {
  margin-top: 36px;
}
.top-faq-item__question {
  cursor: pointer;
  display: grid;
  grid-template-columns: 90px 1fr 84px;
  background: #9b8f82;
  list-style: none;
}
.top-faq-item__question::-webkit-details-marker {
  display: none;
}
.top-faq-item__q {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  background: #cfa957;
}
.top-faq-item__txt {
  padding: 30px 25px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.18em;
  color: #fff;
}
.top-faq-item__btn {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 30px;
  display: block;
  position: relative;
  margin: auto 0;
}
.top-faq-item__btn::before, .top-faq-item__btn::after {
  content: "";
  aspect-ratio: 30/2;
  width: 100%;
  max-width: 30px;
  display: block;
  background: #fff;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.top-faq-item:not([open]) .top-faq-item__btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.top-faq-item__answer {
  width: 100%;
  max-width: calc(100% - 90px);
  margin-inline-start: auto;
  font-size: 18px;
  line-height: 2;
}
.top-faq-item__answer p {
  padding: 22px 25px 16px;
  letter-spacing: 0.025em;
  color: #fff;
}

.top-greeting {
  margin-top: 106px;
}
.top-greeting .inner {
  max-width: 1520px;
}
.top-greeting .c-ttl__en {
  margin-bottom: 23px;
}
.top-greeting-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
.top-greeting__img {
  width: 31.4189189189%;
  position: relative;
  z-index: 1;
  margin-right: -42px;
}
.top-greeting__txt {
  width: 62.8378378378%;
  position: relative;
  background: linear-gradient(61deg, #ececec, #fcfbee);
  margin-top: 48px;
  padding: 60px 5.2027027027% 60px 14.527027027%;
}
.top-greeting__txt::after {
  position: absolute;
  content: "DOCTOR";
  bottom: -9px;
  left: -28px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 150px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
}
.top-greeting-ttl {
  display: flex;
  align-items: center;
  gap: 33px;
  margin-left: 5px;
}
.top-greeting-ttl__role {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #cfa957;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
}
.top-greeting-ttl__name {
  display: flex;
  align-items: center;
  gap: 49px;
}
.top-greeting-ttl__name-ja {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #0c2442;
}
.top-greeting-ttl__name-en {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #cfa957;
}
.top-greeting__desc {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-top: 16px;
  z-index: 1;
}
.top-greeting-list {
  max-width: 1310px;
  display: flex;
  gap: 15.0381679389%;
  margin: 60px auto 0;
}
.top-greeting-item {
  align-self: baseline;
  border-left: 2px solid #333;
  padding-left: 46px;
}
.top-greeting-item__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding-bottom: 14px;
}
.top-greeting-item p {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 19px;
}
.top-greeting-item p::before {
  position: absolute;
  content: "";
  top: 17px;
  left: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background: #333;
}

.top-form {
  margin: 117px 0 192px;
}
.top-form .inner {
  max-width: 1317px;
}
.top-form .c-ttl__en {
  margin-bottom: 10px;
}
.top-form__form {
  display: flex;
  flex-flow: column;
  gap: 73px;
  margin-top: 91px;
}
.top-form__dummy {
  margin-top: -38px;
}
.top-form-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 10px;
}
.top-form-item__ttl {
  display: flex;
  justify-content: space-between;
  flex: 0 0 306px;
  font-size: 20px;
}
.top-form-item__ttl .req {
  align-self: center;
  font-size: 16px;
  color: #fff;
  background: #848e9c;
  padding: 0 9px;
}
.top-form-item__input {
  width: calc(100% - 306px - 30px - 16px);
  min-height: 50px;
  background: #eeeeee;
}

.top-effect {
  position: relative;
  background: #42b1de;
  padding: 55px 0 88px;
  overflow: hidden;
}
.top-effect::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 39px;
  bottom: 0;
  left: 0;
  background: url(../img/top/effect-line.png) center/cover no-repeat;
}
.top-effect__wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.top-effect__txt {
  position: relative;
  font-weight: 500;
  font-size: 36px;
  line-height: 66px;
  letter-spacing: 0.18em;
  color: #fff;
}
.top-effect__txt::before {
  position: absolute;
  content: "";
  width: 123px;
  height: 168px;
  top: -6px;
  left: -208px;
  background: url(../img/top/effect-bg01.png) center/cover no-repeat;
}
.top-effect__txt::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 162px;
  top: 4px;
  right: -125px;
  background: url(../img/top/effect-bg02.png) center/cover no-repeat;
}
.top-effect__txt strong {
  font-size: 48px;
  letter-spacing: 0.19em;
}
.top-effect__txt .underline {
  position: relative;
}
.top-effect__txt .underline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -7px;
  left: 0;
  background: #fff;
}

.top-consult {
  position: relative;
  background: url(../img/top/consult-bg.png) center/100% 100% no-repeat;
  text-align: center;
  padding: 68px 0 157px;
}
.top-consult__ttl {
  display: inline-block;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3333333333;
  letter-spacing: 0.18em;
  color: #fff;
  border: 5px dotted #fffc05;
  padding: 17px 84px 20px;
}

.top-consult-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 120px 12.5%;
  margin-top: 104px;
}

.top-consult-item {
  width: 300px;
}
.top-consult-item__ttl {
  width: 100%;
  border-radius: 35px;
  color: #3f2a2a;
  background: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 2.1818181818;
  letter-spacing: 0.18em;
  padding: 11px;
}
.top-consult-item__img {
  text-align: center;
  margin-top: 42px;
}
.top-consult-item:nth-child(-n+3) .top-consult-item__img {
  margin: 64px 0 0 30px;
}

.top-important {
  height: 449px;
  background: url(../img/top/important-bg.jpg) center/cover no-repeat;
  margin-top: -182px;
}
.top-important__txt {
  font-weight: 500;
  font-size: 36px;
  line-height: 80px;
  letter-spacing: 0.18em;
  color: #fff;
  text-align: center;
  padding-top: 215px;
}
.top-important__txt span {
  display: inline-block;
  width: 508px;
  color: #474a4a;
  background: #fff;
  box-shadow: 0px 8px 9px 0px rgba(65, 65, 65, 0.22);
  border-left: 13px solid #fd7f7e;
  border-right: 13px solid #fd7f7e;
  margin: 5px 17px 0 0;
}

.top-column {
  margin-top: 109px;
}
.top-column .inner {
  max-width: 1675px;
}

.top-column-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 2.0183486239%;
}

.top-column-item {
  position: relative;
  min-width: 280px;
  width: 18.3486238532%;
  background: #faf8ec;
  border-radius: 20px;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
}
.top-column-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 28px 25px 86px;
}
.top-column-item a::after {
  position: absolute;
  content: "";
  width: 39px;
  height: 39px;
  bottom: 26px;
  right: 35px;
  -webkit-mask: url(../img/common/circle-arrow.svg) center/cover no-repeat;
          mask: url(../img/common/circle-arrow.svg) center/cover no-repeat;
  background: #7cbed9;
  transition: all 0.2s;
}
.top-column-item a:hover {
  transition: opacity 0.2s ease;
}
.top-column-item a:hover:hover {
  opacity: 0.7;
}
.top-column-item a:hover::after {
  transform: translateX(5px);
}
.top-column-item__img {
  position: relative;
}
.top-column-item__img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.6);
}
.top-column-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column-item__ttl {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 28px;
  padding-left: 16px;
  border-left: 3px solid #7cbed9;
}
.top-column-item__ttl strong {
  color: #f85f5d;
}

.top-merit {
  margin-top: 46px;
  padding-top: 100px;
  text-align: center;
}
.top-merit .inner {
  max-width: 1640px;
}
.top-merit .c-top-ttl {
  position: relative;
}
.top-merit .c-top-ttl::before {
  position: absolute;
  content: "";
  width: 129px;
  height: 112px;
  top: 28px;
  left: -208px;
  background: url(../img/top/merit-ttl-bg01.png) center/cover no-repeat;
}
.top-merit .c-top-ttl::after {
  position: absolute;
  content: "";
  width: 137px;
  height: 119px;
  top: 2px;
  right: -204px;
  background: url(../img/top/merit-ttl-bg02.png) center/cover no-repeat;
}
.top-merit .c-top-ttl__wrap {
  background: #fed60c;
  padding-right: 35px;
}
.top-merit .c-top-ttl__txt {
  position: relative;
}
.top-merit .c-top-ttl__txt::before {
  position: absolute;
  content: "";
  width: 242px;
  height: 104px;
  top: -89px;
  left: -264px;
  background: url(../img/top/merit-en.png) center/cover no-repeat;
}
.top-merit .c-top-ttl img {
  margin-left: 3px;
  transform: translateY(3px);
}
.top-merit__subttl {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  margin-top: 87px;
  margin-left: 21px;
}
.top-merit__subttl::before, .top-merit__subttl::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 52px;
  top: -5px;
  background: #333;
}
.top-merit__subttl::before {
  left: -34px;
  transform: rotate(-20deg);
}
.top-merit__subttl::after {
  right: -30px;
  transform: rotate(20deg);
}

.top-merit-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px 0;
  margin-top: 53px;
  transform: translateX(10px);
}

.top-merit-item {
  position: relative;
  width: 18.75%;
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 24px 10px 24px 35px;
}
.top-merit-item::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background: url(../img/common/check-p.png) center/cover no-repeat;
}
.top-merit-item:nth-child(4n+1), .top-merit-item:nth-child(4n+3) {
  margin-right: 7.1875%;
}
.top-merit-item:nth-child(4n+2) {
  margin-right: 9.625%;
}
.top-merit-item:nth-child(2n)::before {
  background-image: url(../img/common/check-o.png);
}
.top-merit-item__txt {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: left;
}
.top-merit-item__txt strong {
  color: #ee5a8f;
}

.top-future {
  position: relative;
  background: #fcc800;
  margin-top: 77px;
  padding: 91px 0 74px;
}
.top-future::before {
  position: absolute;
  content: "";
  width: 191px;
  height: 191px;
  bottom: -27px;
  left: -33px;
  background: url(../img/top/future-bg01.png) center/cover no-repeat;
}
.top-future::after {
  position: absolute;
  content: "";
  width: 159px;
  height: 159px;
  top: -13px;
  right: -12px;
  background: url(../img/top/future-bg01.png) center/cover no-repeat;
}
.top-future__wrap {
  position: relative;
}
.top-future__wrap::before {
  position: absolute;
  content: "";
  width: 324px;
  height: 77px;
  top: -105px;
  left: calc(50% + 8px);
  transform: translateX(-50%);
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.top-future__wrap::after {
  position: absolute;
  content: "";
  width: 168px;
  height: 190px;
  bottom: -100px;
  right: -40px;
  background: url(../img/top/future-bg02.png) center/cover no-repeat;
}
.top-future .inner {
  max-width: 1840px;
}
.top-future__box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #fff;
  margin-left: 10px;
  z-index: 1;
}
.top-future__box::before {
  position: absolute;
  content: "";
  width: 229px;
  height: 241px;
  top: -99px;
  left: -32px;
  background: url(../img/top/future-bg03.png) center/cover no-repeat;
}
.top-future__txt {
  font-weight: 500;
  font-size: 36px;
  line-height: 76px;
  letter-spacing: 0.13em;
  padding: 48px 20px 61px 106px;
}
.top-future__txt span {
  display: inline-block;
}
.top-future__txt strong {
  position: relative;
  display: inline-block;
  font-size: 48px;
  letter-spacing: 0.12em;
  color: #42b1de;
  margin: 0 -12px;
  z-index: 1;
}
.top-future__txt strong::before {
  position: absolute;
  content: "";
  width: 92%;
  height: calc(100% + 13px);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  background: #fcf41e;
  border-radius: 10px;
  z-index: -1;
}

.top-reason {
  margin-top: 119px;
  text-align: center;
}
.top-reason__subttl {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.18em;
  margin-left: 11px;
}
.top-reason__subttl::before, .top-reason__subttl::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 36px;
  top: 22px;
  background: #333;
}
.top-reason__subttl::before {
  left: -11px;
  transform: rotate(-23deg);
}
.top-reason__subttl::after {
  right: -11px;
  transform: rotate(23deg);
}
.top-reason .c-top-ttl {
  position: relative;
  margin-top: 5px;
}
.top-reason .c-top-ttl::before {
  position: absolute;
  content: "";
  width: 166px;
  height: 155px;
  top: -17px;
  left: -220px;
  background: url(../img/top/reason-ttl-bg01.png) center/cover no-repeat;
}
.top-reason .c-top-ttl::after {
  position: absolute;
  content: "";
  width: 182px;
  height: 206px;
  top: -16px;
  right: -227px;
  background: url(../img/top/reason-ttl-bg02.png) center/cover no-repeat;
}
.top-reason .c-top-ttl__wrap {
  background: #fed60c;
}
.top-reason .c-top-ttl strong {
  position: relative;
  color: #fffc05;
}
.top-reason .c-top-ttl strong::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #fffc05;
}
.top-reason__main {
  position: relative;
  background: url(../img/top/reason-bg.jpg) center/cover no-repeat;
  margin-top: 109px;
  padding: 85px 0;
}
.top-reason__main::before {
  position: absolute;
  content: "";
  width: 364px;
  height: 364px;
  top: -101px;
  left: -57px;
  background: #fed60c;
  border-radius: 50%;
}
.top-reason__main::after {
  position: absolute;
  content: "";
  width: 198px;
  height: 198px;
  top: -108px;
  right: 51px;
  background: #0081b2;
  border-radius: 50%;
  opacity: 0.7;
}
.top-reason__en {
  position: absolute;
  top: 48px;
  left: -7px;
  font-weight: 500;
  font-size: 150px;
  line-height: 1;
  letter-spacing: 0.19em;
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  writing-mode: vertical-rl;
}
.top-reason__ttl {
  font-weight: 500;
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.18em;
}
.top-reason__desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #524d4d;
}

.top-reason01 {
  position: relative;
  display: flex;
  margin-left: 14.1145833333vw;
}
.top-reason01__num {
  position: absolute;
  top: 38px;
  left: -113px;
  z-index: 2;
}
.top-reason01__txt {
  width: 44.7916666667vw;
  align-self: baseline;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  position: relative;
  z-index: 1;
  margin-top: 2.7604166667vw;
  padding: 3.3333333333vw 10.6770833333vw 2.1354166667vw 4.0625vw;
}
.top-reason01 .top-reason__ttl {
  padding-left: 0.3125vw;
}
.top-reason01 .top-reason__desc {
  padding: 1.1458333333vw 2.6041666667vw 0 0;
}
.top-reason01__img {
  width: 52.0833333333vw;
  margin-left: -11.0416666667vw;
  position: relative;
  z-index: 1;
}
.top-reason01__img-wrap {
  position: relative;
}
.top-reason01__img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.5);
}
.top-reason01__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-reason01__img img {
  border-radius: 9.375vw 0 0 0;
}

.top-reason02 {
  position: relative;
  display: flex;
  margin-top: 125px;
  margin-left: 13.0208333333vw;
}
.top-reason02::before {
  position: absolute;
  content: "";
  width: 1442px;
  height: 88px;
  top: -177px;
  left: -15.2604166667vw;
  background: url(../img/top/reason-line.png) center/cover no-repeat;
}
.top-reason02__num {
  position: absolute;
  top: 54px;
  left: -71px;
  z-index: 2;
}
.top-reason02__img {
  width: 67.7083333333vw;
  position: relative;
  z-index: 1;
}
.top-reason02__img::before {
  position: absolute;
  content: "";
  width: 379px;
  height: 420px;
  top: -16px;
  right: -353px;
  background: url(../img/top/reason-mark.png) center/cover no-repeat;
  z-index: 1;
}
.top-reason02__img-wrap {
  position: relative;
}
.top-reason02__img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.4615384615);
}
.top-reason02__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-reason02__img img {
  border-radius: 4.1666666667vw 4.1666666667vw 0 0;
}
.top-reason02__txt {
  position: relative;
  width: 36.4583333333vw;
  align-self: baseline;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  margin: 7.0833333333vw 0 0 -25vw;
  padding: 3.2291666667vw 2.6041666667vw 2.65625vw 3.75vw;
  z-index: 1;
}
.top-reason02 .top-reason__desc {
  padding: 1.3020833333vw 1.3020833333vw 0 0.3645833333vw;
}

.top-reason03 {
  position: relative;
  display: flex;
  margin-top: 64px;
  margin-left: 13.90625vw;
}
.top-reason03::before {
  position: absolute;
  content: "";
  width: 1442px;
  height: 88px;
  top: -111px;
  right: -25px;
  background: url(../img/top/reason-line.png) center/cover no-repeat;
}
.top-reason03::after {
  position: absolute;
  content: "";
  width: 320px;
  height: 320px;
  top: -115px;
  left: -239px;
  background: #0081b2;
  border-radius: 50%;
  opacity: 0.7;
}
.top-reason03__num {
  position: absolute;
  top: 40px;
  left: -78px;
  z-index: 3;
}
.top-reason03__txt {
  position: relative;
  z-index: 1;
  width: 36.4583333333vw;
  align-self: baseline;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  margin-top: 6.40625vw;
  padding: 4.0104166667vw 3.125vw 3.9583333333vw 3.6979166667vw;
  z-index: 2;
}
.top-reason03 .top-reason__desc {
  padding: 0.9895833333vw 0 0 0.46875vw;
}
.top-reason03__img {
  width: 52.0833333333vw;
  margin-left: -4.6354166667vw;
  position: relative;
}
.top-reason03__img::before {
  position: absolute;
  content: "";
  width: 204px;
  height: 204px;
  bottom: -48px;
  left: 32px;
  background: #fed60c;
  border-radius: 50%;
  z-index: 1;
}
.top-reason03__img-wrap {
  position: relative;
}
.top-reason03__img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.7);
}
.top-reason03__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-reason03__img img {
  border-radius: 0 9.375vw 0 0;
}

.top-reason-list {
  display: flex;
  justify-content: center;
  gap: 23px;
  margin: 137px 57px 0 0;
}

.top-reason-item {
  width: 41.6666666667vw;
  position: relative;
}
.top-reason-item__img {
  width: 85.375%;
  margin: auto;
}
.top-reason-item__img-wrap {
  position: relative;
}
.top-reason-item__img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.6588579795);
}
.top-reason-item__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-reason-item__img img {
  border-radius: 0 2.6041666667vw 0 0;
}
.top-reason-item__txt {
  position: relative;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0px 0px 40px 0px rgba(65, 65, 65, 0.22);
  margin-top: -70px;
  padding: 2.3958333333vw 4.6875vw 3.3854166667vw 6.6145833333vw;
}
.top-reason-item .top-reason__desc {
  padding: 1.3020833333vw 0 0 0.2083333333vw;
}

.top-reason04__num {
  position: absolute;
  top: -29px;
  left: -20px;
  z-index: 1;
}

.top-reason05::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  top: 174px;
  right: -160px;
  background: #006b6a;
  border-radius: 50%;
}
.top-reason05__num {
  position: absolute;
  top: -24px;
  left: 11px;
  z-index: 1;
}

@media screen and (min-width: 751px){
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 960px){
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
}

@media screen and (max-width: 1919px){
  .top-demerit-item__img {
    margin-right: 4.1145833333vw;
  }
  .top-demerit-item__img-txt {
    bottom: -2.96875vw;
    left: -6.6666666667vw;
    width: 9.1145833333vw;
    height: 9.1145833333vw;
    font-size: 2.0833333333vw;
    outline-offset: -0.5208333333vw;
  }
  .top-demerit-item:nth-child(2n) .top-demerit-item__img {
    margin-left: 4.1145833333vw;
  }
  .top-demerit-item:nth-child(2n) .top-demerit-item__img-txt {
    right: -6.6666666667vw;
  }
  .top-demerit-item:nth-child(3) .top-demerit-item__img-txt {
    font-size: 1.5625vw;
  }
  .top-know-ttl__txt {
    font-size: clamp(42px, 2.625rem + (1vw - 9.6px) * 0.625, 48px);
  }
  .top-contact-btns {
    gap: 7.34375vw;
  }
  .top-review-container__item-question {
    padding: 37px 5.8333333333vw 45px;
  }
  .top-review-container__item-answer {
    padding: 58px 3.0208333333vw 54px 3.1770833333vw;
  }
  .top-review-container__item:nth-child(2) .top-review-container__item-question {
    padding: 32px 5.8333333333vw 35px;
  }
  .top-review-container__voice {
    gap: 5.7291666667vw;
    padding: 69px 5.5208333333vw 55px 7.5vw;
  }
  .top-review-container--pink .top-review-container__voice {
    gap: 6.3541666667vw;
    padding: 69px 5.4166666667vw 55px 4.6875vw;
  }
  .top-features-content__box {
    max-width: 1700px;
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 1699px){
  .top-merit-item {
    width: 20%;
  }
  .top-merit-item:nth-child(4n+1), .top-merit-item:nth-child(4n+2), .top-merit-item:nth-child(4n+3) {
    margin-right: 6.25%;
  }
  .top-merit-item__txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 1399px){
  .top-case__slider {
    margin: 41px 40px 0;
  }
  .top-case__slider .swiper-button-prev,
  .top-case__slider .swiper-button-next {
    width: 60px;
    height: 60px;
    border-width: 8px;
  }
  .top-case__slider .swiper-button-prev {
    left: -45px;
  }
  .top-case__slider .swiper-button-next {
    right: -45px;
  }
  .top-case-item {
    padding: 40px 4.6082949309% 40px;
  }
  .top-case-item__list {
    margin: 44px 20px 0;
  }
  .top-important {
    margin-top: -200px;
  }
  .top-merit .c-top-ttl::before {
    left: -134px;
  }
  .top-merit .c-top-ttl::after {
    right: -142px;
  }
  .top-merit-item {
    width: 21.875%;
    padding: 20px 5px 20px 25px;
  }
  .top-merit-item::before {
    width: 40px;
    height: 40px;
    left: -20px;
  }
  .top-merit-item:nth-child(4n+1), .top-merit-item:nth-child(4n+2), .top-merit-item:nth-child(4n+3) {
    margin-right: 3.125%;
  }
  .top-merit-item__txt {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px){
  .top-features-content__box {
    flex-flow: column;
  }
  .top-features-content__txt {
    width: 100%;
  }
  .top-features-content:nth-child(1) .top-features-content__desc {
    width: 100%;
  }
  .top-features-content:nth-child(1) .top-features-content__img {
    text-align: center;
  }
  .top-features-content:nth-child(1) .top-features-content__img img {
    margin-top: 20px;
  }
  .top-features-content:nth-child(2) .top-features-content__txt {
    width: 100%;
  }
  .top-features-content:nth-child(2) .top-features-content__desc {
    width: 100%;
  }
  .top-features-content:nth-child(2) .top-features-content__desc-img {
    position: relative;
    text-align: center;
  }
  .top-features-content:nth-child(2) .top-features-content__img {
    margin-top: 30px;
    text-align: center;
  }
  .top-features-content:nth-child(3) .top-features-content__txt {
    width: 100%;
  }
  .top-features-content:nth-child(3) .top-features-content__img {
    text-align: center;
  }
  .top-features-content:nth-child(4) .top-features-content__txt {
    width: 100%;
  }
  .top-features-content:nth-child(4) .top-features-content__img {
    text-align: center;
    margin-top: 24px;
  }
  .top-counseling-item-ttl {
    gap: 12px;
  }
  .top-counseling-item-ttl__step {
    font-size: 24px;
  }
  .top-counseling-item-ttl__step .num {
    font-size: 40px;
    padding-left: 6px;
  }
  .top-counseling-item-ttl__ja {
    font-size: 26px;
  }
  .top-counseling-item:nth-child(2n) .top-counseling-item-ttl {
    margin-left: 15px;
  }
  .top-greeting__txt {
    padding-left: 50px;
  }
  .top-greeting__txt::after {
    bottom: -6px;
    left: -6px;
    font-size: 100px;
  }
  .top-greeting-ttl {
    gap: 20px;
  }
  .top-greeting-ttl__role {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
  .top-greeting-ttl__name {
    gap: 30px;
  }
  .top-greeting-ttl__name-ja {
    font-size: 32px;
  }
  .top-greeting-ttl__name-en {
    font-size: 16px;
  }
}

@media screen and (max-width: 959px){
  .inner {
    padding: 0 10px;
  }
  .top-about {
    margin-top: 30px;
  }
  .top-about__ttl {
    font-size: 24px;
  }
  .top-about__head {
    font-size: 18px;
    letter-spacing: 0;
    padding: 20px 0 0 0;
  }
  .top-about__img {
    max-width: 475px;
    margin-top: 50px;
  }
  .top-about__img::before {
    height: 300px;
    border-radius: 238px 238px 0 0;
  }
  .top-about__img img {
    margin: -20px 0 0 0;
    width: 282px;
    height: 149px;
  }
  .top-about__img-txt {
    font-size: 15px;
    padding: 15px 0 0 0;
  }
  .top-about__txt {
    margin-top: 30px;
    padding: 35px 0;
  }
  .top-about__desc {
    font-size: 12px;
    line-height: 2.6666666667;
  }
  .top-worry__ttl {
    font-size: 24px;
    padding: 20px 0 10px;
  }
  .top-worry__ttl::after {
    height: 30px;
  }
  .top-worry-list {
    flex-wrap: wrap;
    margin-top: -10px;
  }
  .top-worry-item {
    width: 100%;
    min-height: 240px;
  }
  .top-worry-checklist {
    justify-content: center;
    padding: 50px 10px 30px;
  }
  .top-worry-checklist__wrap {
    gap: 10px;
    padding-right: 0;
  }
  .top-worry-checklist__item {
    font-size: 12px;
    padding-left: 30px;
  }
  .top-worry-checklist__item::before {
    width: 18px;
    height: 12px;
    top: 8px;
  }
  .top-worry__txt {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 30px;
    padding: 80px 0 40px;
  }
  .top-worry__txt span {
    text-decoration-thickness: 10px;
    text-underline-offset: -7px;
  }
  .top-worry__txt::before {
    height: 60px;
  }
  .top-demerit-ttl {
    flex-flow: column-reverse;
    gap: 20px;
  }
  .top-demerit-ttl__ja {
    align-self: baseline;
    font-size: 16px;
    border-radius: 0 70px 70px 0;
    padding: 40px 10px 50px;
  }
  .top-demerit-ttl__ja::after {
    width: calc(100% + 4px);
    border-radius: 0 70px 70px 0;
  }
  .top-demerit-ttl__ja .underline {
    text-underline-offset: 8px;
  }
  .top-demerit-ttl__ja strong {
    font-size: 24px;
    margin-left: 0;
    transform: translateY(2px);
  }
  .top-demerit-list {
    margin: 50px 0 80px;
  }
  .top-demerit-item {
    flex-flow: column;
  }
  .top-demerit-item__txt {
    width: 100%;
  }
  .top-demerit-item__ttl-en {
    font-size: 12px;
    padding-left: 0;
  }
  .top-demerit-item__ttl-num {
    font-size: 50px;
    margin-top: -3px;
  }
  .top-demerit-item__ttl-ja {
    font-size: 18px;
    margin: 15px 0 0 12px;
  }
  .top-demerit-item__desc {
    font-size: 14px;
    line-height: 2.1428571429;
    padding: 10px 0 0 35px;
  }
  .top-demerit-item__desc::before {
    height: calc(100% - 18px);
    top: 15px;
  }
  .top-demerit-item__img {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
  }
  .top-demerit-item__img-txt {
    bottom: -29px;
    left: -64px;
    width: 88px;
    height: 88px;
    font-size: 20px;
    outline-offset: -5px;
  }
  .top-demerit-item:nth-child(2n) .top-demerit-item__txt {
    order: 0;
    width: 100%;
  }
  .top-demerit-item:nth-child(2n) .top-demerit-item__img {
    margin-right: auto;
    margin-left: 0;
  }
  .top-demerit-item:nth-child(2n) .top-demerit-item__img-txt {
    left: auto;
    right: -64px;
  }
  .top-demerit-item:nth-child(2) {
    margin-top: 50px;
  }
  .top-demerit-item:nth-child(3) {
    margin-top: 50px;
  }
  .top-demerit-item:nth-child(3) .top-demerit-item__img-txt {
    font-size: 15px;
  }
  .top-demerit-item:nth-child(4) {
    margin-top: 50px;
  }
  .top-demerit-item:nth-child(5) {
    margin-top: 50px;
  }
  .top-know-ttl__txt {
    font-size: 24px;
    padding: 25px 0;
  }
  .top-know-content {
    flex-flow: column;
    gap: 40px;
    margin-top: 80px;
    padding: 0 20px;
  }
  .top-know-content__img {
    width: auto;
    margin: 0 auto;
  }
  .top-know-content__img::before {
    width: 350px;
    height: 75px;
    top: -50px;
    left: -15px;
  }
  .top-know-content__img::after {
    bottom: -55px;
    right: -10px;
  }
  .top-know-content__txt {
    width: 100%;
    border-radius: 30px;
    font-size: 14px;
    line-height: 2;
    margin-left: 0;
    padding: 30px 20px;
  }
  .top-contact {
    margin-top: 30px;
    padding-top: 50px;
  }
  .top-contact__box {
    max-width: 100%;
    outline-offset: -10px;
    padding: 0 20px 50px;
  }
  .top-contact__ttl {
    font-size: 50px;
    transform: translate(0, -30px);
  }
  .top-contact__desc {
    font-size: 18px;
    padding-top: 0;
  }
  .top-contact__txt {
    font-size: 20px;
    padding-left: 0;
  }
  .top-contact__txt strong {
    font-size: 24px;
  }
  .top-contact-btns {
    flex-flow: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }
  .top-contact-btn {
    max-width: 600px;
    width: 100%;
    height: 120px;
  }
  .top-contact-btn a {
    padding-top: 10px;
  }
  .top-contact-btn__subttl {
    font-size: 18px;
  }
  .top-contact-btn__ttl {
    font-size: 30px;
  }
  .top-contact-btn__ttl span {
    font-size: 20px;
  }
  .top-contact-btn--tel a {
    outline-offset: -4px;
  }
  .top-contact-btn--reserve a::before, .top-contact-btn--reserve a::after {
    width: 20px;
    height: 20px;
  }
  .top-contact-btn--reserve a::before {
    top: 5px;
    left: 5px;
  }
  .top-contact-btn--reserve a::after {
    bottom: 5px;
    right: 5px;
  }
  .top-review {
    margin-top: 100px;
  }
  .top-review .c-ttl__en {
    margin-bottom: 6px;
  }
  .top-review-container {
    padding-bottom: 80px;
  }
  .top-review-container--gold {
    margin-top: 30px;
  }
  .top-review-container--gold .top-review-container__list {
    margin-left: 0;
  }
  .top-review-container--pink {
    padding-bottom: 30px;
  }
  .top-review-container--pink .top-review-container__ttl {
    padding: 40px 10px 10px;
  }
  .top-review-container--pink .top-review-container__list {
    margin-top: 65px;
    margin-right: 0;
  }
  .top-review-container--pink .top-review-container__item-img {
    order: 0;
  }
  .top-review-container--pink .top-review-container__item-question {
    margin: 0 0 0 auto;
  }
  .top-review-container--pink .top-review-container__item-answer {
    margin: 15px 0 0 0;
  }
  .top-review-container--pink .top-review-container__item-answer::after {
    left: 50%;
    transform: translate(-50%, 100%);
  }
  .top-review-container--pink .top-review-container__voice {
    flex-flow: column-reverse;
    gap: 0;
    margin-top: 50px;
    padding: 20px;
  }
  .top-review-container--pink .top-review-container__voice::before {
    width: 178px;
    height: 135px;
  }
  .top-review-container--pink .top-review-container__voice::after {
    width: 127px;
    height: 85px;
  }
  .top-review-container--pink .top-review-container__voice-txt {
    order: 1;
    width: 100%;
  }
  .top-review-container--pink .top-review-container__voice-img {
    width: 100%;
  }
  .top-review-container--pink .top-review-container__voice-img img {
    width: 161px;
    bottom: -20px;
  }
  .top-review-container__ttl {
    font-size: 15px;
    padding: 30px 10px 15px;
  }
  .top-review-container__ttl::after {
    height: 40px;
  }
  .top-review-container__list {
    margin-top: 80px;
    padding: 0 20px;
    gap: 50px;
  }
  .top-review-container__item {
    flex-flow: column-reverse;
  }
  .top-review-container__item-img {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  .top-review-container__item-img img {
    border-radius: 15px;
  }
  .top-review-container__item-txt {
    width: 100%;
  }
  .top-review-container__item-question {
    width: calc(100% - 20px);
    border-radius: 15px;
    box-shadow: 0px 3px 8px 1px rgba(170, 170, 170, 0.45);
    font-size: 16px;
    margin: 0;
    padding: 20px;
  }
  .top-review-container__item-question::after {
    width: 45px;
    height: 18px;
  }
  .top-review-container__item-answer {
    width: 100.5025125628%;
    border-radius: 15px;
    font-size: 14px;
    margin: 15px 0 0 0;
    padding: 20px;
  }
  .top-review-container__item-answer::after {
    width: 45px;
    height: 18px;
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .top-review-container__item:nth-child(2) .top-review-container__item-img {
    margin-top: 10px;
  }
  .top-review-container__item:nth-child(2) .top-review-container__item-question {
    padding: 20px;
  }
  .top-review-container__voice {
    flex-flow: column;
    gap: 0;
    margin-top: 50px;
    padding: 20px;
  }
  .top-review-container__voice::before {
    width: 127px;
    height: 85px;
  }
  .top-review-container__voice::after {
    width: 178px;
    height: 135px;
  }
  .top-review-container__voice-txt {
    width: 100%;
    font-size: 14px;
  }
  .top-review-container__voice-img {
    width: 100%;
  }
  .top-review-container__voice-img img {
    position: relative;
    width: 145px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-case {
    margin-top: 60px;
  }
  .top-case__slider {
    margin: 20px 0 0;
  }
  .top-case__slider .swiper-button-prev,
  .top-case__slider .swiper-button-next {
    width: 30px;
    height: 30px;
    border-width: 5px;
  }
  .top-case__slider .swiper-button-prev {
    left: 0;
  }
  .top-case__slider .swiper-button-next {
    right: 0;
  }
  .top-case-item {
    padding: 20px;
  }
  .top-case-item__ttl {
    gap: 10px;
    padding-left: 10px;
  }
  .top-case-item__ttl--en {
    font-size: 10px;
  }
  .top-case-item__ttl--ja {
    font-size: 16px;
  }
  .top-case-item__list {
    flex-flow: column;
    margin: 20px 0 0;
  }
  .top-case-item__item {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
  }
  .top-case-item__item:not(:first-child) {
    border-top: none;
  }
  .top-case-item__txt {
    font-size: 14px;
    padding: 20px 0 0 0;
  }
  .top-case-item__imgs {
    margin-top: 40px;
  }
  .top-case-item__img-ttl {
    font-size: 18px;
    margin-top: -25px;
  }
  .top-case-item__img-ttl::before {
    width: 96px;
    height: 96px;
    top: -10px;
  }
  .top-case-item__img {
    padding: 5px 5px 10px;
  }
  .top-case-item__img-main {
    margin-top: 2px;
  }
  .top-price {
    margin-top: 60px;
  }
  .top-price-content--first, .top-price-content--second {
    margin: 20px auto 40px;
  }
  .top-price-content--first .top-price-content__box, .top-price-content--second .top-price-content__box {
    margin-top: 0;
    padding: 20px;
  }
  .top-price-content--second {
    margin-bottom: 40px;
  }
  .top-price-content--second .top-price-content__desc {
    padding: 25px 0 5px;
  }
  .top-price-content-ttl__num {
    font-size: 75px;
    line-height: 68px;
  }
  .top-price-content-ttl__ja {
    top: calc(50% + 3px);
    font-size: 24px;
  }
  .top-price-content-ttl__txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .top-price-content__box {
    padding: 20px;
    margin-top: 20px;
    border-width: 1px;
  }
  .top-price-content__head {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 5px;
  }
  .top-price-content__price {
    height: 60px;
    font-size: 30px;
  }
  .top-price-content__price span {
    font-size: 12px;
  }
  .top-price-content__time {
    font-size: 16px;
    padding-top: 15px;
  }
  .top-price-content__desc {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .top-price-list {
    flex-flow: column;
    gap: 20px;
    margin: 25px 0;
  }
  .top-price-item {
    width: 100%;
    outline-offset: -5px;
    padding: 5px 5px 30px;
  }
  .top-price-item::before {
    width: 50px;
    height: 50px;
    top: 5px;
    left: 5px;
  }
  .top-price-item__num {
    top: 7px;
    left: 17px;
    font-size: 13px;
  }
  .top-price-item__ttl {
    font-size: 18px;
    line-height: 1.1111111111;
    max-width: 100%;
  }
  .top-price-item__price {
    font-size: 14px;
    line-height: 22px;
    padding-top: 20px;
    padding-left: 0;
  }
  .top-price-item__price .num {
    font-size: 30px;
  }
  .top-price-item__period {
    font-size: 14px;
    padding-left: 0;
  }
  .top-price-item__txt {
    font-size: 14px;
    line-height: 1.4285714286;
  }
  .top-price-item:nth-child(4) {
    padding: 5px 5px 30px;
  }
  .top-price-item:nth-child(4) .top-price-item__price {
    padding-top: 20px;
  }
  .top-price-item:nth-child(5) {
    padding: 5px 5px 15px;
  }
  .top-price-item:nth-child(5) .top-price-item__price {
    padding-top: 12px;
  }
  .top-price__note {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .top-price__txt {
    margin-top: 20px;
    margin-right: 0;
  }
  .top-price__txt-wrap {
    gap: 0 20px;
    font-size: 16px;
    padding: 20px;
  }
  .top-price__txt-wrap::before, .top-price__txt-wrap::after {
    width: 30px;
  }
  .top-features {
    margin-top: 70px;
  }
  .top-features .c-ttl__en {
    margin-bottom: 20px;
  }
  .top-features-list {
    gap: 60px;
    margin-top: 50px;
  }
  .top-features-content-ttl {
    flex-flow: column;
    width: calc(100% - 20px);
    border-radius: 50px 0 0 0;
    padding: 50px 15px 20px;
  }
  .top-features-content-ttl__num {
    width: 26.5762711864%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 75px;
    padding-bottom: 12px;
  }
  .top-features-content-ttl__img {
    width: 69px;
    height: 64px;
  }
  .top-features-content-ttl__txt {
    font-size: 24px;
    text-align: center;
  }
  .top-features-content-ttl__txt .small {
    font-size: 18px;
    padding-top: 10px;
  }
  .top-features-content-ttl__txt .big {
    font-size: 26px;
  }
  .top-features-content__box {
    width: calc(100% - 20px);
    padding: 100px 20px 20px;
    margin-top: -70px;
  }
  .top-features-content__head {
    font-size: 15px;
    line-height: 25px;
    padding-left: 60px;
    margin-bottom: 20px;
  }
  .top-features-content__head span {
    text-decoration-thickness: 8px;
    text-underline-offset: -3px;
  }
  .top-features-content__head::before {
    position: absolute;
    content: "";
    width: 42px;
    height: 38px;
  }
  .top-features-content__desc {
    font-size: 12px;
    padding: 0;
  }
  .top-features-content__imgs {
    margin: 0 calc(50% - 50vw);
    gap: 15px;
    margin-top: 35px;
  }
  .top-features-content:nth-child(1) .top-features-content-ttl {
    padding: 50px 20px 20px;
  }
  .top-features-content:nth-child(1) .top-features-content-ttl__num {
    top: 0;
  }
  .top-features-content:nth-child(1) .top-features-content-ttl__img {
    width: 190px;
    height: 155px;
  }
  .top-features-content:nth-child(1) .top-features-content-ttl__txt {
    padding-top: 5px;
  }
  .top-features-content:nth-child(1) .top-features-content__box {
    padding: 130px 20px 20px;
    margin-top: -100px;
  }
  .top-features-content:nth-child(2) {
    margin-bottom: 0;
  }
  .top-features-content:nth-child(2) .top-features-content__box {
    padding: 100px 20px 20px;
  }
  .top-features-content:nth-child(2) .top-features-content__desc {
    padding-bottom: 20px;
  }
  .top-features-content:nth-child(2) .top-features-content__img {
    width: 50%;
    margin: 20px auto 0;
  }
  .top-features-content:nth-child(2) .top-features-content__img img {
    position: relative;
  }
  .top-features-content:nth-child(3) {
    margin-bottom: 0;
  }
  .top-features-content:nth-child(3) .top-features-content__box {
    padding: 100px 20px 20px;
  }
  .top-features-content:nth-child(4) {
    margin-bottom: 0;
  }
  .top-features-content:nth-child(4) .top-features-content__box {
    padding: 100px 20px 20px;
  }
  .top-features-content:nth-child(5) .top-features-content__box {
    padding: 100px 20px 0;
  }
  .top-features-content:nth-child(2n) .top-features-content-ttl {
    border-radius: 0 50px 0 0;
  }
  .top-features-content:nth-child(2n) .top-features-content-ttl__num {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .top-counseling {
    margin: 50px 0 70px;
  }
  .top-counseling .c-ttl__en {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .top-counseling .c-ttl__ja {
    padding-right: 0;
  }
  .top-counseling-list {
    flex-flow: column;
    gap: 60px 0;
    margin: 25px 10px 0;
  }
  .top-counseling-item {
    width: 100%;
  }
  .top-counseling-item::after {
    width: 50px;
    height: 12px;
    border-width: 1px;
  }
  .top-counseling-item-ttl::before {
    left: -54px;
  }
  .top-counseling-item__img::before {
    bottom: -10px;
    left: -10px;
    border-width: 1px;
  }
  .top-counseling-item__txt {
    font-size: 14px;
    padding-top: 20px;
  }
  .top-counseling-item:nth-child(2n+1)::after {
    top: -20px;
    bottom: auto;
    left: 50%;
    right: 0;
    transform: translate(-50%, -100%) rotate(90deg) skew(30deg);
  }
  .top-counseling-item:nth-child(2n+1):first-child::after {
    display: none;
  }
  .top-counseling-item:nth-child(2n)::after {
    top: -20px;
    bottom: auto;
    left: 50%;
    right: 0;
    transform: translate(-50%, -100%) rotate(90deg) skew(30deg);
  }
  .top-counseling-item:nth-child(2n):last-child::after {
    display: block;
  }
  .top-counseling-item:nth-child(2n) .top-counseling-item-ttl {
    margin-left: 0;
  }
  .top-faq {
    padding: 40px 0 180px;
  }
  .top-faq .c-ttl__en {
    margin: 0 0 6px 0;
  }
  .top-faq__list {
    margin-top: 30px;
  }
  .top-faq-item__q {
    font-size: 24px;
  }
  .top-faq-item__txt {
    font-size: 16px;
  }
  .top-faq-item__btn {
    max-width: 20px;
  }
  .top-faq-item__answer {
    font-size: 16px;
  }
  .top-greeting {
    margin-top: 50px;
  }
  .top-greeting .c-ttl__en {
    margin-bottom: 10px;
  }
  .top-greeting-box {
    flex-flow: column;
    margin-top: 25px;
  }
  .top-greeting__img {
    width: 65.6338028169%;
    margin: 0 auto;
    text-align: center;
  }
  .top-greeting__txt {
    width: 100%;
    margin-top: -20px;
    padding: 20px;
  }
  .top-greeting__txt::after {
    font-size: 65px;
  }
  .top-greeting-ttl {
    flex-flow: column;
    gap: 0;
    margin: 10px 0 0;
  }
  .top-greeting-ttl__role {
    width: 60px;
    height: 60px;
  }
  .top-greeting-ttl__name {
    gap: 15px;
  }
  .top-greeting-ttl__name-ja {
    font-size: 24px;
  }
  .top-greeting-ttl__name-en {
    font-size: 14px;
  }
  .top-greeting__desc {
    font-size: 14px;
    padding-top: 10px;
  }
  .top-greeting-list {
    flex-flow: column;
    gap: 30px;
    margin: 30px auto 0;
  }
  .top-greeting-item {
    border-width: 1px;
    padding-left: 20px;
  }
  .top-greeting-item__ttl {
    font-size: 25px;
    padding-bottom: 10px;
  }
  .top-greeting-item p {
    font-size: 14px;
  }
  .top-greeting-item p::before {
    top: 13px;
  }
  .top-form {
    margin: 60px 0;
  }
  .top-form .c-ttl__en {
    margin-bottom: 5px;
  }
  .top-form__form {
    display: flex;
    flex-flow: column;
    gap: 30px;
    margin-top: 40px;
  }
  .top-form__dummy {
    margin-top: -20px;
  }
  .top-form-item {
    flex-flow: column;
    gap: 15px;
    padding: 0;
  }
  .top-form-item__ttl {
    flex: 0 0 auto;
  }
  .top-form-item__input {
    width: 100%;
  }
  .top-effect {
    padding: 25px 0 45px;
  }
  .top-effect::after {
    height: 20px;
  }
  .top-effect__txt {
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0.08em;
    padding: 0 60px;
    text-align: center;
  }
  .top-effect__txt::before {
    width: 62px;
    height: 84px;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
  }
  .top-effect__txt::after {
    width: 45px;
    height: 81px;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
  }
  .top-effect__txt strong {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
  .top-effect__txt .underline::after {
    bottom: -7px;
  }
  .top-effect__txt span {
    display: inline-block;
  }
  .top-consult {
    background-size: cover;
    padding: 30px 0 70px;
  }
  .top-consult__ttl {
    font-size: 20px;
    border-width: 2px;
    padding: 10px 40px;
  }
  .top-consult-list {
    gap: 30px 10px;
    margin-top: 50px;
  }
  .top-consult-item {
    width: 110px;
  }
  .top-consult-item__ttl {
    border-radius: 25px;
    font-size: 12px;
    line-height: 2;
    padding: 6px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-consult-item__img {
    margin: 25px 15px 0;
  }
  .top-consult-item:nth-child(-n+3) .top-consult-item__img {
    margin: 30px 0 0 15px;
  }
  .top-important {
    height: 350px;
  }
  .top-important__txt {
    font-size: 20px;
    line-height: 40px;
  }
  .top-important span {
    width: 270px;
    border-width: 6px;
  }
  .top-column {
    margin-top: 40px;
  }
  .top-column-list {
    gap: 20px;
  }
  .top-column-item {
    min-width: auto;
    width: 100%;
    border-radius: 10px;
  }
  .top-column-item a {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  .top-column-item a::after {
    width: 20px;
    height: 20px;
    bottom: 10px;
    right: 20px;
  }
  .top-column-item__img {
    width: 40%;
    align-self: flex-start;
    position: relative;
  }
  .top-column-item__img::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(100% * 0.75);
  }
  .top-column-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-column-item__ttl {
    width: 56%;
    align-self: baseline;
  }
  .top-merit {
    margin-top: 30px;
    padding-top: 70px;
  }
  .top-merit .c-top-ttl::before {
    width: 65px;
    height: 56px;
    top: -70px;
    left: 0;
  }
  .top-merit .c-top-ttl::after {
    width: 69px;
    height: 60px;
    top: 80px;
    right: 0;
  }
  .top-merit .c-top-ttl__wrap {
    padding-right: 0;
  }
  .top-merit .c-top-ttl__txt::before {
    width: 121px;
    height: 52px;
    top: -45px;
    left: -75px;
  }
  .top-merit .c-top-ttl img {
    width: 84px;
    height: 25px;
  }
  .top-merit__subttl {
    font-size: 16px;
    margin: 25px 0 0 0;
  }
  .top-merit__subttl::before, .top-merit__subttl::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 52px;
    top: -5px;
    background: #333;
  }
  .top-merit__subttl::before {
    left: -20px;
  }
  .top-merit__subttl::after {
    right: -15px;
  }
  .top-merit-list {
    gap: 20px 15px;
    margin: 25px 5px 0;
    transform: none;
  }
  .top-merit-item {
    width: calc(50% - 7.5px);
    padding: 15px 5px 15px 20px;
  }
  .top-merit-item::before {
    width: 25px;
    height: 25px;
    left: -10px;
  }
  .top-merit-item:nth-child(4n+1), .top-merit-item:nth-child(4n+2), .top-merit-item:nth-child(4n+3) {
    margin-right: 0;
  }
  .top-merit-item__txt {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .top-future {
    margin-top: 50px;
    padding: 45px 0 30px;
  }
  .top-future::before {
    width: 85px;
    height: 85px;
    bottom: -13px;
    left: -16px;
  }
  .top-future::after {
    width: 80px;
    height: 80px;
    top: -6px;
    right: -6px;
  }
  .top-future__wrap::before {
    width: 162px;
    height: 38px;
    top: -53px;
    left: calc(50% + 4px);
  }
  .top-future__wrap::after {
    width: 84px;
    height: 95px;
    bottom: -50px;
    right: -20px;
  }
  .top-future__box {
    border-radius: 20px;
    margin-left: 0;
  }
  .top-future__box::before {
    width: 115px;
    height: 120px;
    top: -85px;
    left: -16px;
  }
  .top-future__txt {
    font-size: 18px;
    line-height: 38px;
    letter-spacing: 0.06em;
    padding: 20px 12px;
    text-align: center;
  }
  .top-future__txt strong {
    font-size: 24px;
    letter-spacing: 0.06em;
    margin: 0 -6px;
  }
  .top-future__txt strong::before {
    border-radius: 5px;
  }
  .top-reason {
    margin-top: 60px;
  }
  .top-reason__subttl {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 0;
  }
  .top-reason__subttl::before, .top-reason__subttl::after {
    height: 18px;
    top: 10px;
  }
  .top-reason .c-top-ttl::before {
    width: 53px;
    height: 43px;
    top: -50px;
    left: -25px;
  }
  .top-reason .c-top-ttl::after {
    width: 47px;
    height: 40px;
    top: 80px;
    right: 0;
  }
  .top-reason__main {
    margin-top: 60px;
    padding: 120px 10px 40px;
  }
  .top-reason__main::before {
    width: 182px;
    height: 182px;
    top: -16px;
  }
  .top-reason__main::after {
    width: 99px;
    height: 99px;
    top: 80px;
    right: -14px;
  }
  .top-reason__en {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 75px;
    letter-spacing: 0.1em;
    -webkit-text-stroke-width: 2px;
    writing-mode: initial;
  }
  .top-reason__ttl {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.18em;
  }
  .top-reason__desc {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .top-reason01 {
    flex-flow: column-reverse;
    margin-left: 0;
  }
  .top-reason01__num {
    top: -40px;
    left: 0;
  }
  .top-reason01__num img {
    width: 34px;
    height: 80px;
  }
  .top-reason01__txt {
    width: 100%;
    border-radius: 10px;
    margin-top: -20px;
    padding: 20px;
    z-index: 2;
  }
  .top-reason01 .top-reason__ttl {
    padding-left: 0;
  }
  .top-reason01 .top-reason__desc {
    padding: 10px 0 0 0;
  }
  .top-reason01__img {
    width: calc(100% - 21px);
    margin: auto;
  }
  .top-reason01__img-wrap {
    position: relative;
  }
  .top-reason01__img-wrap::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(100% * 0.6);
  }
  .top-reason01__img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-reason02 {
    flex-flow: column;
    margin: 60px 0 0 0;
  }
  .top-reason02::before {
    width: 721px;
    height: 44px;
    top: -90px;
    background: url(../img/top/reason-line.png) center/cover no-repeat;
  }
  .top-reason02__num {
    top: -40px;
    left: 0;
  }
  .top-reason02__num img {
    width: 55px;
    height: 82px;
  }
  .top-reason02__img {
    width: calc(100% - 21px);
    margin: auto;
  }
  .top-reason02__img-wrap {
    position: relative;
  }
  .top-reason02__img-wrap::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(100% * 0.6);
  }
  .top-reason02__img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-reason02__img::before {
    position: absolute;
    content: "";
    width: 190px;
    height: 210px;
    top: 160px;
    right: -80px;
  }
  .top-reason02__txt {
    width: 100%;
    border-radius: 10px;
    margin: -20px 0 0 0;
    padding: 20px;
  }
  .top-reason02 .top-reason__desc {
    padding: 10px 0 0 0;
  }
  .top-reason03 {
    flex-flow: column-reverse;
    margin-left: 0;
  }
  .top-reason03::before {
    width: 771px;
    height: 44px;
    top: -94px;
  }
  .top-reason03::after {
    width: 160px;
    height: 160px;
    top: -132px;
    left: -66px;
  }
  .top-reason03__num {
    top: -40px;
    left: 0;
  }
  .top-reason03__num img {
    width: 56px;
    height: 82px;
  }
  .top-reason03__txt {
    width: 100%;
    border-radius: 10px;
    margin: -20px 0 0 0;
    padding: 20px;
  }
  .top-reason03 .top-reason__desc {
    padding: 10px 0 0 0;
  }
  .top-reason03__img {
    width: calc(100% - 21px);
    margin: auto;
  }
  .top-reason03__img::before {
    width: 102px;
    height: 102px;
    bottom: -66px;
    left: -40px;
  }
  .top-reason03__img-wrap {
    position: relative;
  }
  .top-reason03__img-wrap::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(100% * 0.6);
  }
  .top-reason03__img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-reason-list {
    flex-flow: column;
    gap: 60px;
    margin: 50px 0 0;
  }
  .top-reason-item {
    width: 100%;
  }
  .top-reason-item__img {
    width: calc(100% - 20px);
    margin: auto;
  }
  .top-reason-item__img-wrap {
    position: relative;
  }
  .top-reason-item__img-wrap::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(100% * 0.6);
  }
  .top-reason-item__img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-reason-item__txt {
    border-radius: 10px;
    margin-top: -20px;
    padding: 20px;
  }
  .top-reason04__num {
    top: -40px;
    left: 0;
  }
  .top-reason04__num img {
    width: 68px;
    height: 88px;
  }
  .top-reason05::before {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
    right: auto;
  }
  .top-reason05__num {
    top: -40px;
    left: 0;
  }
  .top-reason05__num img {
    width: 52px;
    height: 87px;
  }
}

@media screen and (max-width: 959px) and (min-width: 751px){
  .tb-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px){
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  body {
    font-size: 15px;
  }
  .top-faq-item:not(:first-child) {
    margin-top: 20px;
  }
  .top-faq-item__question {
    grid-template-columns: 40px 1fr 30px;
  }
  .top-faq-item__q {
    font-size: 22px;
  }
  .top-faq-item__txt {
    padding: 1em;
    font-size: 14px;
  }
  .top-faq-item__btn {
    max-width: 18px;
  }
  .top-faq-item__answer {
    width: 100%;
    max-width: calc(100% - 40px);
    font-size: 14px;
  }
  .top-faq-item__answer p {
    padding: 1em;
  }
  .top-consult-list {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-column-item__ttl {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.04em;
    margin: 0 0 10px 0;
    padding-left: 8px;
    border-width: 2px;
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLmNzcyIsIi4uLy4uL3NyYy9zYXNzL2Jhc2UvX3Jlc2V0LnNjc3MiLCIuLi8uLi9zcmMvc2Fzcy91dGlsaXRpZXMvX2FuaW1hdGlvbi5zY3NzIiwiLi4vLi4vc3JjL3Nhc3MvbGF5b3V0L19ib2R5LnNjc3MiLCIuLi8uLi9zcmMvc2Fzcy9hYnN0cmFjdHMvdmFyaWFibGVzL19mb250LnNjc3MiLCIuLi8uLi9zcmMvc2Fzcy9sYXlvdXQvX2lubmVyLnNjc3MiLCIuLi8uLi9zcmMvc2Fzcy9wYWdlcy9fdG9wLnNjc3MiLCIuLi8uLi9zcmMvc2Fzcy9hYnN0cmFjdHMvbWl4aW4vX2ZpeC1pbWctYXNwZWN0LXJhdGlvLnNjc3MiLCIuLi8uLi9zcmMvc2Fzcy9hYnN0cmFjdHMvbWl4aW4vX2hvdmVyLW9wYWNpdHkuc2NzcyIsIi4uLy4uL3NyYy9zYXNzL3V0aWxpdGllcy9fZGlzcGxheS5zY3NzIiwiLi4vLi4vc3JjL3Nhc3MvYWJzdHJhY3RzL21peGluL19tZWRpYXF1ZXJ5LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsZ0JBQWdCO0FDQWhCOztrRUFBQTtBQUlBO2tFQUFBO0FBR0E7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0VBZ0ZJLE9BQUE7RUFDQSxvQkFBQTtFQUNBLFNBQUE7RUFDQSxVQUFBO0VBQ0EsU0FBQTtFQUNBLFVBQUE7RUFDQSxhQUFBO0VBQ0Esd0JBQUE7RUFDQSx1QkFBQTtFQUNBLDhCQUFBO0FEQUo7O0FDR0E7a0VBQUE7QUFHQTtFQUNJLHNCQUFBO0VBQ0EsdUJBQUE7RUFDQSxlQUFBO0FEREo7O0FDSUE7RUFDSSxtQkFBQTtBRERKOztBQ0lBO0VBQ0ksa0JBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxnQkFBQTtFQUNBLHVCQUFBO0VBQ0EsV0FBQTtFQUNBLFdBQUE7QURESjs7QUNJ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QUE7SUFDQSxPQUFBO0lBQ0EsY0FBQTtJQUNBLFdBQUE7SUFDQSxZQUFBO0lBQ0Esb0JBQUE7T0FBQSxpQkFBQTtFUDJsSk47RU1xWEY7SUFPRSxpQkFBQTtJQUNBLFNBQUE7SUFDQSxnQkFBQTtFTmhYQTtFTW9YRjtJQWtDRSxXQUFBO0VOdldBO0VNeVdBO0lBQ0Msd0JBQUE7SUFDQSxZQUFBO0VOdldEO0VNeVdDO0lDcmhLQyxrQkFBQTtFUCtxSkY7RU83cUpFO0lBQ0ksV0FBQTtJQUNBLGNBQUE7SUFDQSxXQUFBO0lBQ0EsNkJBQUE7RVArcUpOO0VPNXFKRTtJQUNJLGtCQUFBO0lBQ0EsTUFBQTtJQUNBLE9BQUE7SUFDQSxjQUFBO0lBQ0EsV0FBQTtJQUNBLFlBQUE7SUFDQSxvQkFBQTtPQUFBLGlCQUFBO0VQOHFKTjtFTTRWQTtJQUNDLG1CQUFBO0lBQ0EsaUJBQUE7SUFDQSxhQUFBO0VOMVZEO0VNd1dBO0lBQ0MsVUFBQTtJQUNBLE9BQUE7RU43VkQ7RU0rVkM7SUFDQyxXQUFBO0lBQ0EsWUFBQTtFTjdWRjtFTXVYQTtJQUNDLFlBQUE7SUFDQSxhQUFBO0lBQ0EsVUFBQTtJQUNBLFdBQUE7SUFDQSxXQUFBO0VObFdEO0VNcVdBO0lBQ0MsVUFBQTtJQUNBLE9BQUE7RU5uV0Q7RU1xV0M7SUFDQyxXQUFBO0lBQ0EsWUFBQTtFTm5XRjtBQWp6SUY7O0FTOWJFO0VBREY7SUFFTSx3QkFBQTtFVG9QSjtBQUNGOztBVWhQSTtFRERKO0lBRU0sd0JBQUE7RVRvUEo7RVNoUEY7SUFFTSx3QkFBQTtFVG9QSjtFRTlORjtJQUlNLHlCQUFBO0VGb1JKO0VFM09GO0lBSU0seUJBQUE7RUZzUko7RUV2T0E7OztJQUVRLFVBQUE7SUFDQSxlQUFBO0VGc1JSO0VHbmFGO0lBaUJFLGVBQUE7RUh1YUE7RU13eEZNO0lBQ0ksZ0JBQUE7RU45TVY7RU1pTk07SUFDSSxvQ0FBQTtFTi9NVjtFTWtOTTtJQUNJLGVBQUE7RU5oTlY7RU1tTk07SUFDSSxZQUFBO0lBQ0EsZUFBQTtFTmpOVjtFTW9OTTtJQUNJLGVBQUE7RU5sTlY7RU1xTk07SUFDSSxXQUFBO0lBQ0EsNEJBQUE7SUFDQSxlQUFBO0VObk5WO0VNcU5VO0lBQ0ksWUFBQTtFTm5OZDtFTWd1QkY7SUFhRSxnQkFBQTtJQUNBLGlCQUFBO0lBQ0Esa0JBQUE7RU4xVEE7RU0yZ0JBO0lBQ0MsZUFBQTtJQUNBLGlCQUFBO0lBQ0Esc0JBQUE7SUFDQSxrQkFBQTtJQUNBLGlCQUFBO0lBQ0EsaUJBQUE7RU43U0Q7QUE5NkdGIiwiZmlsZSI6InN0eWxlLmNzcyJ9 */