@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

*:focus:not(.focus-visible),
*::before:focus:not(.focus-visible),
*::after:focus:not(.focus-visible) {
  outline: none;
}

*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

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

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
}

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

a[href=""] {
  pointer-events: none;
}

:root {
  --clr_txt: #131313;
  --rgb_txt: 19,19, 19;
  --clr_shadow: #000000;
  --rgb_shadow: 0,0, 0;
  --clr_white: #fff;
  --rgb_white: 255,255, 255;
  --clr_navy: #001976;
  --rgb_navy: 0,25, 118;
  --clr_navy_light: #7385C5;
  --rgb_navy_light: 115,133, 197;
  --clr_navy_light02: #29419B;
  --rgb_navy_light02: 41,65, 155;
  --clr_navy_light03: #4458A2;
  --rgb_navy_light03: 68,88, 162;
  --clr_blue: #8AA0EC;
  --rgb_blue: 138,160, 236;
  --clr_blue_light: #E4EAFF;
  --rgb_blue_light: 228,234, 255;
  --clr_blue_light02: #A1B0E5;
  --rgb_blue_light02: 161,176, 229;
  --clr_blue_light03: #CAD6FF;
  --rgb_blue_light03: 202,214, 255;
  --clr_blue_light04: #B9C9FF;
  --rgb_blue_light04: 185,201, 255;
  --clr_blue_light05: #758EE5;
  --rgb_blue_light05: 117,142, 229;
  --clr_blue_light06: #C9D5FF;
  --rgb_blue_light06: 201,213, 255;
  --clr_blue_light07: #B2B8CF;
  --rgb_blue_light07: 178,184, 207;
  --clr_blue_light08: #8197E3;
  --rgb_blue_light08: 129,151, 227;
  --clr_blue_dark: #4363CF;
  --rgb_blue_dark: 67,99, 207;
  --clr_blue_dark02: #5D74C9;
  --rgb_blue_dark02: 93,116, 201;
  --clr_gray: #E8E8E8;
  --rgb_gray: 232,232, 232;
  --clr_gray_light: #EEEEEE;
  --rgb_gray_light: 238,238, 238;
  --clr_gray_dark: #B4B4B4;
  --rgb_gray_dark: 180,180, 180;
  --clr_gray_dark02: #707070;
  --rgb_gray_dark02: 112,112, 112;
  --clr_gray_dark03: #474747;
  --rgb_gray_dark03: 71,71, 71;
  --clr_yellow: #FFFF98;
  --rgb_yellow: 255,255, 152;
  --clr_yellow_light: #FFFDDB;
  --rgb_yellow_light: 255,253, 219;
  --clr_yellow_light02: #FFFCC1;
  --rgb_yellow_light02: 255,252, 193;
  --clr_yellow_dark: #EEE778;
  --rgb_yellow_dark: 238,231, 120;
  --clr_yellow_dark02: #F9F388;
  --rgb_yellow_dark02: 249,243, 136;
  --clr_yellow_dark03: #FFF99B;
  --rgb_yellow_dark03: 255,249, 155;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes scale {
  20% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes scale_why01 {
  20% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1) skewX(-12deg);
  }
}
@keyframes color_why01 {
  20% {
    color: --clr_navy;
  }
  100% {
    color: var(--clr_blue);
  }
}
@keyframes line_expand {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    width: 1rem;
    transform: scaleX(1);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

@media screen and (min-width: 48em), print {
  .pc-txt_c {
    text-align: center !important;
  }
  .pc-txt_l {
    text-align: left !important;
  }
  .pc-txt_r {
    text-align: right !important;
  }
}
.bold {
  font-weight: 700;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: var(--clr_yellow);
  text-underline-offset: -0.1em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.d-inline {
  display: inline-block;
}

.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt00 {
  margin-top: 0rem !important;
}

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

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

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

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

.mt05 {
  margin-top: 0.5rem !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.pt00 {
  padding-top: 0 !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt05 {
    margin-top: 1rem !important;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  color: var(--clr_navy);
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
  line-height: 1.429;
  letter-spacing: 0.06em;
}
.tbl_time tr th {
  font-weight: normal;
  border-bottom: 1px solid var(--clr_navy);
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem;
  text-align: center;
}
.tbl_time tr th[scope=col]:first-child {
  width: 30%;
}
.tbl_time tr th[scope=col]:last-child {
  width: 15%;
  padding-right: 3%;
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_navy);
  padding: 0.2rem 0;
  line-height: 1.5;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  border-bottom: 1px solid var(--clr_navy);
  line-height: 1;
}
.tbl_time tr td:last-child {
  width: 15%;
  padding-right: 3%;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time caption {
    margin-top: 1.3rem;
    padding-left: 0.5rem;
    line-height: 1.75;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.5rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 28%;
    text-align: left;
    padding-left: 1rem;
    letter-spacing: 0.06em;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:last-child {
    width: 11%;
    padding-right: 0%;
  }
  .tbl_time tr th.time {
    text-align: left;
    padding-left: 1rem;
    letter-spacing: 0.01em;
  }
  .tbl_time tr td {
    padding: 1.3rem 0;
  }
  .tbl_time tr td:last-child {
    width: 11%;
    padding-right: 0%;
  }
}
.lst {
  line-height: 1.571;
}
.lst > li {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 48em), print {
  .lst > li {
    letter-spacing: 0;
  }
  .lst > li:not(:first-of-type) {
    margin-top: 0.4rem;
  }
}

.lst_ul {
  line-height: 1.571;
}
.lst_ul > li {
  padding-left: 1em;
  letter-spacing: 0.02em;
  position: relative;
}
.lst_ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.lst_ul.-kome > li {
  letter-spacing: 0;
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
}
@media screen and (min-width: 48em), print {
  .lst_ul > li:not(:first-of-type) {
    margin-top: 0.2rem;
  }
}

.tel {
  display: inline-block;
  color: var(--clr_navy);
  line-height: 1;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2rem;
}
.tel::before {
  font-family: "fontello";
  content: "\e803";
  font-size: 85%;
  margin-right: 0.1rem;
}
@media screen and (min-width: 48em), print {
  .tel {
    font-size: 2.8rem;
  }
}

.rsv {
  color: var(--clr_white);
  font-weight: 700;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  height: 4rem;
  font-size: 1.3rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.rsv::before {
  font-family: "fontello";
  content: "\e804";
  font-weight: normal;
  margin-right: 0.4rem;
  font-size: 120%;
  display: inline-block;
}
.rsv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: skewX(-13deg);
  background: linear-gradient(to right, var(--clr_blue_light02), var(--clr_blue_dark));
  box-shadow: 7px 7px 0 rgba(var(--rgb_shadow), 0.16);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 48em), print {
  .rsv {
    font-size: 1.8rem;
    height: 5.5rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .rsv:is(:hover,.focus-visible) {
    opacity: 1;
    filter: brightness(110%);
  }
  .rsv:is(:hover, :focus-visible) {
    opacity: 1;
    filter: brightness(110%);
  }
}

.tel_rsv {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.tel_rsv > li {
  color: var(--clr_navy);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.tel_rsv > li .rsv::before {
  transform: translateY(1px);
}
@media screen and (min-width: 48em), print {
  .tel_rsv {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .tel_rsv > li {
    font-size: 2rem;
    height: 100%;
    margin: 0;
    gap: 1rem;
  }
  .tel_rsv > li.tel_btn {
    height: 5.5rem;
  }
}

.lnk {
  display: inline-block;
  color: var(--clr_navy);
  cursor: pointer;
}
.lnk::after {
  padding-left: 0.3rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::after {
    padding-left: 0.6rem;
  }
}
.lnk:is(:hover,.focus-visible) {
  color: var(--clr_blue_light02);
  opacity: 1;
}
.lnk:is(:hover, :focus-visible) {
  color: var(--clr_blue_light02);
  opacity: 1;
}
.lnk.out::after {
  font-family: "fontello";
  content: "\cc05";
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\cc04";
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.214;
}
.tbl tr th {
  text-align: center;
  padding: 0.3rem 0.5rem;
  font-weight: normal;
  border-bottom: 1px solid var(--clr_navy);
  border-right: 1px solid var(--clr_navy);
  line-height: 1.429;
}
.tbl tr td {
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid var(--clr_navy);
}
.tbl tr .nowrap, .tbl tr .sp_nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl thead tr th {
  background: var(--clr_blue_light04);
  border-right-color: var(--clr_white);
}

@media screen and (min-width: 48em), print {
  .tbl {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .tbl tr th {
    padding: 0.5rem;
  }
  .tbl tr td {
    padding: 0.6rem;
  }
  .tbl tr .sp_nowrap {
    width: inherit;
    white-space: inherit;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: #fff;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 2.6666666667vw;
}

body {
  background: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

.main {
  font-size: 1.4rem;
  line-height: 1.571;
}

.wrap {
  margin-right: 2rem;
  margin-left: 2rem;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1100px + 80px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .wrap {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48em), print {
  .header {
    position: relative;
  }
  .header .wrap {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 3;
  }
  .header .wrap .tel_rsv {
    justify-content: flex-end;
    padding-right: 3rem;
    gap: 2.4rem;
  }
  .header .wrap .tel_rsv > li.head_tel {
    flex-direction: column;
    gap: 0;
    transform: translateY(2px);
  }
}
.overview {
  padding: 3rem 0 3.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  background: var(--clr_blue_light);
  color: var(--clr_navy);
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2.5rem;
}
.overview .clinic_name img {
  max-width: 72%;
  margin: auto;
}
.overview .tel_rsv {
  margin: 2rem auto;
  height: -moz-fit-content;
  height: fit-content;
}
.overview .tel_rsv > li {
  font-size: 1.6rem;
  display: flex;
  gap: 1rem;
}
.overview .tel_rsv > li .tel {
  font-size: 2.2rem;
  padding-right: 0.5rem;
  letter-spacing: 0.03em;
}
.overview .tel_rsv > li .rsv {
  height: 4.467rem;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
.overview .tel_rsv > li .rsv::before {
  margin-right: 0.5rem;
}
.overview .gaiyo {
  line-height: 1.4;
  color: var(--clr_navy);
  letter-spacing: 0.06em;
}
.overview .gaiyo dt {
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid var(--clr_navy);
}
.overview .gaiyo dd {
  padding: 0.4rem 0.8rem;
}
.overview .tbl_time {
  margin: 1.5rem 0 2.5rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8.5rem 0 5.5rem;
    font-size: 1.6rem;
  }
  .overview .clinic_name {
    margin: 0 0 4.5rem;
  }
  .overview .clinic_name img {
    max-width: 32.03rem;
  }
  .overview .tel_rsv {
    margin: 4rem auto 4.7rem;
    justify-content: center;
    gap: 2rem;
    transform: translateX(-0.8rem);
  }
  .overview .tel_rsv > li {
    font-size: 2rem;
    justify-content: flex-end;
    gap: 1rem;
  }
  .overview .tel_rsv > li .tel {
    font-size: 2.8rem;
    padding: 0;
  }
  .overview .tel_rsv > li .rsv {
    height: 5.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.8rem;
  }
  .overview .overview_content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .overview .overview_content .overviewL {
    width: 61.14rem;
  }
  .overview .overview_content .overviewR {
    width: 41.1rem;
  }
  .overview .gaiyo {
    line-height: 1.6;
  }
  .overview .gaiyo dt {
    padding: 0.6rem 1rem;
    font-size: 1.8rem;
  }
  .overview .gaiyo dd {
    padding: 1.2rem 1rem;
  }
  .overview .tbl_time {
    margin: 0;
  }
}
#tel_up {
  width: 100%;
  height: 5.8rem;
  background: var(--clr_white);
  border-top: 1px solid var(--clr_blue);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tel_up > div {
  width: calc(100% - 5.8rem);
  height: 100%;
}
#tel_up .sp_tel_rsv {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#tel_up .sp_tel_rsv li {
  height: 100%;
  flex-grow: 1;
  border-right: 1px solid var(--clr_blue);
}
#tel_up .sp_tel_rsv li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.6rem 1rem 0;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  gap: 0.5rem;
}
#tel_up .sp_tel_rsv li > a::before {
  font-weight: normal;
  display: block;
  line-height: 1;
  font-size: 2.4rem;
}
#tel_up .sp_tel_rsv li > a.tel {
  background: var(--clr_yellow_light);
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}
#tel_up .sp_tel_rsv li > a.rsv {
  background: linear-gradient(to right, var(--clr_blue_light02), var(--clr_blue_dark));
}
#tel_up .sp_tel_rsv li > a.rsv::after {
  content: none;
}
#tel_up .sp_tel_rsv li > a.logo_mark {
  display: grid;
  place-content: center;
  padding: 0;
}
#tel_up #pageup {
  display: block;
  width: 5.8rem;
  height: 5.8rem;
  position: relative;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2.4rem;
  width: 100%;
  height: 100%;
  color: var(--clr_white);
  background: var(--clr_navy);
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: inherit;
    height: 5.5rem;
    bottom: 1rem;
    right: 3rem;
    left: auto;
    border: none;
    background: none;
    padding: 0;
  }
  #tel_up > div {
    width: inherit;
  }
  #tel_up .sp_tel_rsv {
    display: none;
  }
  #tel_up .tel_rsv {
    height: 5.5rem;
    margin-right: 1rem;
    gap: 1rem;
  }
  #tel_up .tel_rsv > li.tel_btn {
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    height: 5.5rem;
    position: relative;
    z-index: 0;
    font-size: 1.9rem;
  }
  #tel_up .tel_rsv > li.tel_btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: skewX(-12deg);
    background: var(--clr_white);
    box-shadow: 5px 5px 0 rgba(var(--rgb_shadow), 0.16);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #tel_up .tel_rsv > li.tel_btn .tel {
    font-size: 2.6rem;
    letter-spacing: 0.02em;
  }
  #tel_up #pageup {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    box-shadow: 5px 5px 0 rgba(var(--rgb_shadow), 0.16);
  }
  #tel_up #pageup::before {
    border-radius: 50%;
    font-size: 2.3rem;
  }
  #tel_up #pageup:is(:hover,.focus-visible) {
    opacity: 1;
    filter: brightness(130%);
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    opacity: 1;
    filter: brightness(130%);
  }
}
.footer {
  text-align: center;
  background: var(--clr_navy);
  color: var(--clr_white);
  padding: 1.5rem 0.5rem 7.3rem;
  font-size: 1.2rem;
}
.footer .copy {
  display: block;
  font-size: 1.2rem;
}
.footer .copy a {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 1rem 0 8.5rem;
  }
  .footer .copy {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--clr_navy), var(--clr_blue));
  position: absolute;
  left: 0;
  top: 2rem;
  z-index: 3;
}
.keyvsl .catch_copy {
  width: 100%;
  padding: 3rem 1.8rem 0.5rem;
  background: linear-gradient(to left, rgba(var(--rgb_navy), 0.95), rgba(var(--rgb_navy), 0.99) 2rem, var(--clr_navy) 2.2rem);
  position: relative;
  z-index: 1;
}
.keyvsl .catch_copy p {
  margin: 0;
  color: var(--clr_white);
}
.keyvsl .catch_copy .lead {
  font-size: 2.2rem;
  letter-spacing: 0.01em;
  text-align: right;
}
.keyvsl .catch_copy .lead .ls20 {
  letter-spacing: 0.02em;
}
.keyvsl .catch_copy .lead .ls-50 {
  letter-spacing: -0.05em;
}
.keyvsl .catch_copy .lead .ls-150 {
  letter-spacing: -0.15em;
}
.keyvsl .catch_copy .lead .txt_large {
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin-right: -1rem;
}
.keyvsl .catch_copy .catch_copy_txt {
  padding: 1rem 0 1rem 1.6rem;
}
.keyvsl .catch_copy .catch_copy_txt p {
  font-size: 1.4rem;
  line-height: 1.929;
  letter-spacing: 0.02em;
}
.keyvsl .catch_copy .heading {
  color: var(--clr_navy);
  font-size: 1.4rem;
  line-height: 1.429;
  padding: 1.2rem 0 2rem 2rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", Meiryo, sans-serif;
  font-weight: 700;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
.keyvsl .catch_copy .heading .txt_large {
  font-size: 3.9rem;
  letter-spacing: 0.075em;
  line-height: 1;
  display: block;
  margin-top: 0.6rem;
  margin-left: -0.4rem;
}
.keyvsl .catch_copy .heading .txt_large .num {
  font-size: 4.4rem;
  line-height: 1;
}
.keyvsl .catch_copy .heading::before {
  content: "";
  display: block;
  width: calc(100vw - 1rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: -2rem;
  background: url("../img/sp-kv_bg.webp") center right/cover no-repeat;
  z-index: -1;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 33.5rem;
  overflow: hidden;
  visibility: hidden;
  margin-top: -1.5rem;
  margin-bottom: -2.7rem;
}
.keyvsl #keyvsl .slick-list div img {
  height: 33.5rem !important;
}
.keyvsl #keyvsl .slick-list div img {
  width: 100%;
  object-fit: cover;
  object-position: 85%;
}
@media screen and (min-width: 48em), print {
  .keyvsl {
    background: var(--clr_navy);
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl::before {
    content: none;
  }
  .keyvsl::after {
    content: "";
    display: block;
    width: 101.3rem;
    height: 100%;
    background: url("../img/kv_back.webp") top left/cover no-repeat;
    position: absolute;
    top: 0;
    left: calc(50% - 100.2rem);
    z-index: 1;
    pointer-events: none;
  }
  .keyvsl .catch_copy {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 7.5rem 0rem 0rem;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .keyvsl .catch_copy .lead {
    font-size: 6.8rem;
    text-align: left;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-shadow: 0 0 30px var(--clr_navy), 0 0 30px var(--clr_navy);
  }
  .keyvsl .catch_copy .lead .txt_large {
    font-size: 6.8rem;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-left: -1.5rem;
  }
  .keyvsl .catch_copy .catch_copy_txt {
    width: 42rem;
    padding: 3.5rem 0 0;
  }
  .keyvsl .catch_copy .catch_copy_txt p {
    font-size: 1.8rem;
    line-height: 1.944;
  }
  .keyvsl .catch_copy .heading {
    font-size: 2.8rem;
    padding: 5.5rem 0rem 4.5rem;
    margin-top: 3rem;
    font-weight: 700;
  }
  .keyvsl .catch_copy .heading::before {
    width: 102rem;
    left: auto;
    right: 53.2rem;
    z-index: -1;
    background: url("../img/kv_bg.webp") center right/cover no-repeat;
  }
  .keyvsl .catch_copy .heading::after {
    font-size: 10.8rem;
    padding-left: 6.5rem;
    letter-spacing: 0.02em;
    transform: translateY(-58%);
  }
  .keyvsl .catch_copy .heading .txt_large {
    font-size: 7.9rem;
    margin-top: 1rem;
  }
  .keyvsl .catch_copy .heading .txt_large .num {
    font-size: 8.8rem;
  }
  .keyvsl #keyvsl {
    height: 79.4rem;
    max-width: 200rem;
    margin: 0 auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 79.4rem !important;
  }
  .keyvsl #keyvsl .slick-list div img {
    object-position: center;
  }
}

.introduction {
  overflow: hidden;
  background: var(--clr_white);
}
.introduction .consultation {
  position: relative;
}
.introduction .consultation .consultation_txt {
  color: var(--clr_blue_light04);
  background: linear-gradient(to bottom, var(--clr_white) 60%, transparent 60%);
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 0.09em;
  padding: 0.5rem 0 0.1rem 2.4rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", Meiryo, sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.introduction .consultation .consultation_txt .num {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: var(--clr_yellow);
  letter-spacing: 0.01em;
  font-style: italic;
  margin-right: 0.4rem;
}
.introduction .consultation .consultation_txt::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--rgb_navy), 0.9), var(--clr_navy) 70%), var(--clr_blue_light04);
  box-shadow: inset 0 1px 0 rgba(var(--rgb_shadow), 0.16);
  position: absolute;
  top: 0;
  left: 1.9rem;
  z-index: -1;
  transform: skewX(-12deg);
}
.introduction .consultation .consultation_txt::after {
  content: "";
  display: block;
  width: calc(100% - 9.5rem);
  height: 10px;
  background-image: url("../img/consultation_arrow.svg");
  background-position: left bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 1.7rem;
  bottom: 1rem;
}
.introduction .consultation .consultation_lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.6rem;
  position: absolute;
  bottom: -2.5rem;
  right: 1.2rem;
  z-index: 1;
}
.introduction .consultation .consultation_lst > li {
  border-radius: 50%;
  font-weight: 700;
  line-height: 1.308;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", Meiryo, sans-serif;
  font-weight: 700;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(to bottom, var(--clr_white), var(--clr_blue_light06));
  width: 6.2rem;
  height: 6.2rem;
  font-size: 1.3rem;
  box-shadow: -3px -3px 0px var(--clr_blue_dark02);
}
.introduction .consultation .consultation_lst > li:first-of-type {
  color: var(--clr_navy);
}
.introduction .consultation .consultation_lst > li:last-of-type {
  line-height: 1.07;
}
@media screen and (min-width: 48em), print {
  .introduction {
    position: relative;
  }
  .introduction::before {
    content: "";
    display: block;
    width: 90.2rem;
    height: 73.4rem;
    background: url("../img/introduction_bg.webp") bottom right/cover no-repeat;
    position: absolute;
    top: 0;
    right: calc(50% + 10rem);
  }
  .introduction .consultation .consultation_txt {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.8rem;
    padding-left: 39.5rem;
    background: none;
  }
  .introduction .consultation .consultation_txt .num {
    font-size: 7rem;
    margin-right: 0.5rem;
    transform: translateY(4px);
    display: inline-block;
  }
  .introduction .consultation .consultation_txt::before {
    left: 3rem;
    width: calc(80rem + (100vw - 1100px) / 2);
    background: linear-gradient(to right, rgba(var(--rgb_navy), 0.9), var(--clr_navy) 44.5rem), var(--clr_blue_light04);
    min-width: 80rem;
    left: 37.5rem;
  }
  .introduction .consultation .consultation_txt::after {
    width: 59.6rem;
    height: 6px;
    left: 37rem;
    bottom: 2.3rem;
  }
  .introduction .consultation .consultation_lst {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    gap: 3.4rem;
    bottom: -5rem;
    right: 0;
    left: 0;
  }
  .introduction .consultation .consultation_lst > li {
    line-height: 1.286;
    width: 12.7rem;
    height: 12.7rem;
    font-size: 2.8rem;
    padding-right: 0.25rem;
    padding-bottom: 0.5rem;
    box-shadow: -5px -5px 0px var(--clr_blue_dark02);
  }
  .introduction .consultation .consultation_lst > li:last-of-type {
    line-height: 1.25;
    font-size: 2.4rem;
  }
}

.introduction_content {
  padding: 3.3rem 0 3.1rem;
  position: relative;
  z-index: 0;
}
.introduction_content::before {
  content: "";
  display: block;
  width: 15.2rem;
  height: 13rem;
  background: url("../img/introduction_bg.webp") top -0.6rem right/auto 103% no-repeat;
  position: absolute;
  top: -0.7rem;
  left: 0;
  z-index: -1;
}
.introduction_content .introduction_tit {
  font-size: 2.7rem;
  letter-spacing: 0.01em;
  line-height: 1.111;
  padding-bottom: 2rem;
  padding-left: 13.5rem;
  margin-bottom: 1.5rem;
  text-indent: 0.25em;
  color: var(--clr_gray_dark03);
  position: relative;
  z-index: -2;
  opacity: 0;
}
.introduction_content .introduction_tit::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--clr_yellow_dark);
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  z-index: -3;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.introduction_content .introduction_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.introduction_content .introduction_tit.trigger::after {
  animation: scale 0.5s ease-out 0.3s 1 normal forwards;
}
.introduction_content .introduction_tit .txt_large {
  font-size: 3.2rem;
  line-height: 1;
}
.introduction_content p {
  line-height: 1.857;
  margin: 0;
  letter-spacing: 0.01em;
}
.introduction_content p.lead {
  color: var(--clr_navy);
  font-weight: 700;
  line-height: 1.714;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.introduction_content p.lead .txt_large {
  font-size: 1.8rem;
  line-height: 1;
}
.introduction_content img {
  margin-top: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .introduction_content {
    padding: 6.5rem 0;
  }
  .introduction_content::before {
    content: none;
  }
  .introduction_content .introduction_tit {
    font-size: 5.4rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
    width: 1100px;
    margin: 0 auto 1.5rem;
    text-align: right;
    text-indent: 0;
  }
  .introduction_content .introduction_tit::after {
    height: 2px;
    width: calc(76.4rem + (100vw - 1100px) / 2);
    min-width: 76.4rem;
    left: 33rem;
  }
  .introduction_content .introduction_tit .txt_large {
    font-size: 6.8rem;
  }
  .introduction_content .introduction_tit.trigger {
    animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
  }
  .introduction_content .introduction_tit.trigger::after {
    animation: scale 0.5s ease-out 0.5s 1 normal forwards;
  }
  .introduction_content .wrap {
    padding-left: 24rem;
  }
  .introduction_content .wrap p {
    margin-right: -2rem;
    font-size: 1.8rem;
    line-height: 1.722;
    padding-left: 5.2rem;
  }
  .introduction_content .wrap p.lead {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    padding-left: 7rem;
    line-height: 1.722;
    text-indent: 0.1em;
  }
  .introduction_content .wrap p.lead .oneday {
    font-size: 2.8rem;
    letter-spacing: 0.01em;
    padding-left: 0.5rem;
  }
  .introduction_content .wrap p.lead .txt_large {
    font-size: 4rem;
    margin-left: -0.8rem;
  }
  .introduction_content .wrap img {
    margin: 1.5rem 1rem 0 auto;
  }
}

.about {
  padding: 1.5rem 0 2.5rem;
  background: var(--clr_navy);
  color: var(--clr_white);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.about::after {
  content: "";
  display: block;
  width: 39%;
  height: 100%;
  background: var(--clr_navy_light);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: polygon(73% 0, 100% 0, 100% 100%, 0 100%);
}
.about .wrap::after {
  content: "";
  display: block;
  height: 19.4rem;
  aspect-ratio: 40.094/19.4;
  background: url("../img/all-on-4_01.webp") center center/cover no-repeat;
  margin: 1.4rem 0 0 4rem;
}
.about .about_tit {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 1rem;
  opacity: 0;
}
.about .about_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.about .about_tit .txt_large {
  font-size: 2.7rem;
}
.about .about_tit .txt_large .num {
  font-size: 2.9rem;
}
.about .about_tit .en {
  font-size: 2.1rem;
  letter-spacing: -0.01em;
}
.about .about_tit .txt_small {
  font-size: 2.2rem;
}
.about .about_content P {
  margin: 0;
  letter-spacing: 0.016em;
  line-height: 1.714;
}
.about .about_content::after {
  content: attr(data-ruby);
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue_light04);
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-top: 1.2rem;
}
@media screen and (min-width: 48em), print {
  .about {
    padding: 6rem 0 4.5rem;
  }
  .about::after {
    width: calc(89.5rem + (100vw - 1100px) / 2);
    min-width: 89.5rem;
    clip-path: polygon(12rem 0, 100% 0, 100% 100%, 0 100%);
  }
  .about .wrap {
    padding-right: 40rem;
    position: relative;
  }
  .about .wrap::after {
    position: absolute;
    top: 0;
    left: calc(50% + 7rem);
    height: 44.4rem;
    margin: 0;
  }
  .about .about_tit {
    font-size: 5rem;
    line-height: 1.35;
    margin-bottom: 2.7rem;
  }
  .about .about_tit .txt_large {
    font-size: 5.2rem;
  }
  .about .about_tit .txt_large .num {
    font-size: 5.6rem;
  }
  .about .about_tit .en {
    font-size: 4rem;
  }
  .about .about_tit .txt_small {
    font-size: 4.2rem;
  }
  .about .about_content {
    width: 65rem;
  }
  .about .about_content P {
    font-size: 2rem;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }
  .about .about_content::after {
    font-size: 12rem;
    margin-top: 3.3rem;
    margin-left: -0.5rem;
  }
}

.recommendation {
  overflow: hidden;
  padding: 3.5rem 0 4rem;
}
.recommendation .recommendation_tit {
  color: var(--clr_navy);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.273;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.recommendation .recommendation_tit .num {
  font-size: 2.6rem;
  line-height: 1;
  margin-right: 0.5rem;
}
.recommendation .recommendation_tit .txt_small {
  font-size: 2rem;
}
.recommendation .recommendation_tit .ruby {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_gray_light);
  font-size: 2.9rem;
  position: absolute;
  z-index: -1;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}
.recommendation .recommendation_tit::before, .recommendation .recommendation_tit::after {
  content: "";
  display: block;
  width: 1rem;
  flex-grow: 1;
  height: 3.118rem;
  transform: translateY(-1rem) skewX(-12deg);
  background: var(--clr_navy);
  box-shadow: 10px 10px 0 rgba(var(--rgb_shadow), 0.1);
}
.recommendation .recommendation_tit::before {
  margin-left: -2rem;
}
.recommendation .recommendation_tit::after {
  margin-right: -2rem;
}
.recommendation .recommendation_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.recommendation .recommendation_tit.trigger .ruby {
  animation: fade_up 0.5s ease-out 0.6s 1 normal forwards;
}
.recommendation .recommendation_lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  position: relative;
  z-index: 0;
  margin-bottom: 1.2rem;
}
.recommendation .recommendation_lst::after {
  content: "";
  display: block;
  width: calc(100% + 4rem);
  height: 14.7rem;
  background: url("../img/recommendation_arrow.webp") center center/auto 100% no-repeat;
  position: absolute;
  z-index: -1;
  bottom: -6.3rem;
  left: -2rem;
}
.recommendation .recommendation_lst > li {
  --img_height: 10.4rem;
  width: 45%;
  padding: 0 0.7em;
  margin-top: var(--img_height);
  line-height: 1.429;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  position: relative;
}
.recommendation .recommendation_lst > li:first-of-type {
  transform: translateX(1rem);
}
.recommendation .recommendation_lst > li::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 0.8rem;
  left: 0;
  background: var(--clr_navy_light);
}
.recommendation .recommendation_lst > li::after {
  content: "";
  display: block;
  width: 100%;
  height: var(--img_height);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(var(--img_height) * -1);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-0.5rem);
}
.recommendation .recommendation_lst > li:nth-of-type(1)::after {
  background-image: url("../img/recommendation_img01.webp");
}
.recommendation .recommendation_lst > li:nth-of-type(2)::after {
  background-image: url("../img/recommendation_img02.webp");
}
.recommendation .recommendation_lst > li:nth-of-type(3)::after {
  background-image: url("../img/recommendation_img03.webp");
}
.recommendation .recommendation_content {
  padding: 2rem 0 2.5rem;
  position: relative;
}
.recommendation .recommendation_content::after {
  content: "";
  display: block;
  width: calc(100% + 4rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: -2rem;
  z-index: -1;
  background: url("../img/recommendation_bg.webp") top right/auto 100% no-repeat;
}
.recommendation .recommendation_content .recommendation_tit03 {
  text-align: center;
  color: var(--clr_navy);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.706;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.recommendation .recommendation_content p {
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.786;
}
@media screen and (min-width: 48em), print {
  .recommendation {
    padding: 8.5rem 0 8.8rem;
  }
  .recommendation .recommendation_tit {
    font-size: 5rem;
    letter-spacing: 0.01em;
    margin-bottom: 9rem;
    gap: 4rem;
  }
  .recommendation .recommendation_tit .all-on {
    font-size: 5.2rem;
  }
  .recommendation .recommendation_tit .num {
    font-size: 6rem;
    margin-right: 1.6rem;
  }
  .recommendation .recommendation_tit .txt_small {
    font-size: 4.6rem;
  }
  .recommendation .recommendation_tit .txt_end {
    font-size: 5rem;
  }
  .recommendation .recommendation_tit .ruby {
    font-size: 9.5rem;
    top: 2rem;
  }
  .recommendation .recommendation_tit::before, .recommendation .recommendation_tit::after {
    height: 6.367rem;
    transform: skewX(-13deg);
    box-shadow: 20px 20px 0 rgba(var(--rgb_shadow), 0.1);
  }
  .recommendation .recommendation_tit::before {
    margin-left: -2rem;
  }
  .recommendation .recommendation_tit::after {
    margin-right: -2rem;
  }
  .recommendation .recommendation_lst {
    gap: 5rem;
    margin-bottom: 4rem;
  }
  .recommendation .recommendation_lst::after {
    width: 96.2rem;
    height: 18.7rem;
    bottom: -11.3rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .recommendation .recommendation_lst > li {
    --img_height: 21.2rem;
    font-size: 2rem;
    letter-spacing: 0.03em;
    width: 28.5rem;
    padding: 0 0 0 0.8em;
    line-height: 1.5;
  }
  .recommendation .recommendation_lst > li::before {
    width: 1rem;
    height: 1rem;
    top: 1.1rem;
  }
  .recommendation .recommendation_content {
    padding: 2.5rem 0 4.4rem;
  }
  .recommendation .recommendation_content::after {
    width: 155rem;
    height: 20.549rem;
    left: 0;
  }
  .recommendation .recommendation_content .recommendation_tit03 {
    font-size: 3.8rem;
    line-height: 1.706;
    text-align: right;
    margin-right: -1.5rem;
    margin-bottom: 0.5rem;
  }
  .recommendation .recommendation_content p {
    font-size: 2rem;
    line-height: 1.65;
    text-indent: 0.55em;
    padding-left: 6rem;
  }
}

.question {
  overflow: hidden;
}

.why01 {
  background: var(--clr_navy);
  color: var(--clr_white);
  padding-bottom: 1.8rem;
}
.why01 .why01_tit {
  color: var(--clr_white);
  font-size: 1.9rem;
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.why01 .why01_tit .txt_large {
  font-size: 3.2rem;
}
.why01 .why01_tit .txt_small {
  font-size: 1.9rem;
}
.why01 .why01_tit .num {
  font-size: 4.3rem;
}
.why01 .why01_tit .unit {
  font-size: 2.4rem;
}
.why01 .why01_tit .particle {
  font-size: 2.2rem;
}
.why01 .why01_tit .all {
  font-size: 2.6rem;
}
.why01 .why01_tit .bg_white {
  color: var(--clr_navy);
  display: inline-block;
  position: relative;
  z-index: 0;
  margin-right: 0.8rem;
  line-height: 1;
  padding-bottom: 0.5rem;
}
.why01 .why01_tit .bg_white::after {
  content: "";
  display: block;
  width: calc(100% + 4rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: -1rem;
  background: var(--clr_white);
  z-index: -1;
  transform: skew(-12deg);
  border-top: 1px solid;
  border-image-source: linear-gradient(to left, var(--clr_white) 6.8rem, var(--clr_navy) 6.9rem);
  border-image-slice: 1;
  transform: scale(0, 1);
  transform-origin: left top;
}
.why01 .why01_tit .ruby {
  color: var(--clr_navy_light03);
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: 4.9rem;
  z-index: -1;
  letter-spacing: 0.03em;
  opacity: 0;
}
.why01 .why01_tit .ruby .hy {
  font-size: 4.2rem;
}
.why01 .why01_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.why01 .why01_tit.trigger .ruby {
  animation: fade_up 0.5s ease-out 0.6s 1 normal forwards;
}
.why01 .why01_tit.trigger .bg_white .txt_small {
  animation: color_why01 0.4s ease-out 1s 1 normal forwards;
}
.why01 .why01_tit.trigger .bg_white::after {
  animation: scale_why01 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s 1 normal forwards;
}
.why01 .wrap p {
  margin: 0;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  line-height: 1.714;
}
.why01 .wrap p:not(:first-of-type) {
  margin-top: 0.4rem;
}
.why01 .wrap::before {
  content: "";
  display: block;
  width: calc(100% + 3.5rem);
  aspect-ratio: 36.813/19.4;
  background: url("../img/all-on-4_02.webp") center center/cover no-repeat;
  margin: 1rem 0 1.8rem -5rem;
}
@media screen and (min-width: 48em), print {
  .why01 {
    padding-bottom: 4.5rem;
  }
  .why01 .why01_tit {
    font-size: 4.6rem;
    text-align: center;
    padding-left: 0;
  }
  .why01 .why01_tit .txt_large {
    font-size: 7.6rem;
  }
  .why01 .why01_tit .txt_small {
    font-size: 4.6rem;
  }
  .why01 .why01_tit .num {
    font-size: 10.2rem;
  }
  .why01 .why01_tit .unit {
    font-size: 5.6rem;
  }
  .why01 .why01_tit .particle {
    font-size: 5rem;
  }
  .why01 .why01_tit .all {
    font-size: 6.4rem;
  }
  .why01 .why01_tit .bg_white {
    padding: 0rem 0 3rem;
    margin-right: 1.3rem;
  }
  .why01 .why01_tit .bg_white::after {
    width: calc(100% + 4rem + 100vw - 550px);
    min-width: calc(100% + 4rem);
    right: -2.2rem;
    border-top: 2px solid;
    border-image-source: linear-gradient(to left, var(--clr_white) 22.7rem, var(--clr_navy) 22.7rem);
  }
  .why01 .why01_tit .ruby {
    width: 1100px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 2.2rem;
    text-align: right;
    font-size: 13.3rem;
    transform: translateX(1.5rem);
  }
  .why01 .why01_tit .ruby .hy {
    font-size: 11.2rem;
    letter-spacing: 0.08em;
    margin-right: -0.5rem;
    margin-left: -0.2rem;
  }
  .why01 .wrap {
    padding-top: 4.3rem;
    padding-left: 55rem;
    position: relative;
    z-index: 0;
    min-height: 40rem;
  }
  .why01 .wrap p {
    font-size: 1.8rem;
    line-height: 1.778;
  }
  .why01 .wrap p:first-of-type {
    padding-left: 4.5rem;
  }
  .why01 .wrap p:not(:first-of-type) {
    margin-top: 1.2rem;
  }
  .why01 .wrap::before {
    width: 100.366rem;
    margin: 0;
    position: absolute;
    top: 5rem;
    z-index: -1;
    right: calc(50% - 2.5rem);
  }
}

.why02 {
  padding-bottom: 2.5rem;
}
.why02 .Why02_tit {
  font-size: 2.5rem;
  color: var(--clr_navy);
  text-align: center;
  padding-top: 1rem;
  padding-left: 0.4rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 0;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
}
.why02 .Why02_tit .txt_small {
  font-size: 2.2rem;
  margin-left: 0.6rem;
}
.why02 .Why02_tit .num {
  font-size: 3.2rem;
  margin-left: 0.7rem;
}
.why02 .Why02_tit .unit {
  font-size: 2.2rem;
}
.why02 .Why02_tit .particle {
  font-size: 2.3rem;
}
.why02 .Why02_tit .ruby {
  display: block;
  position: absolute;
  top: 0.2rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.8rem;
  line-height: 1;
  color: var(--clr_blue_light);
  z-index: -1;
  letter-spacing: 0.01em;
  opacity: 0;
}
.why02 .Why02_tit .ruby .hy {
  font-size: 5.8rem;
  margin-right: -0.5rem;
  margin-left: -0.2rem;
  letter-spacing: 0.1em;
  display: inline-block;
}
.why02 .Why02_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.why02 .Why02_tit.trigger .ruby {
  animation: fade_up 0.5s ease-out 0.6s 1 normal forwards;
}
.why02 .why02_content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 0;
  padding: 0 0.8rem;
}
.why02 .why02_content::before, .why02 .why02_content::after {
  content: "";
  display: block;
  width: 3rem;
  height: 6.4rem;
  transform: skewX(-12deg);
  background: var(--clr_blue_light);
  position: absolute;
  top: 0rem;
  z-index: -2;
  pointer-events: none;
}
.why02 .why02_content::before {
  left: -3.8rem;
}
.why02 .why02_content::after {
  right: -3.8rem;
}
.why02 .why02_content > section .why02_tit03 {
  color: var(--clr_navy);
  font-weight: 700;
  font-size: 2.3rem;
  border-bottom: 1px solid var(--clr_navy);
  margin-bottom: 1rem;
}
.why02 .why02_content > section .why02_tit03::first-letter {
  color: var(--clr_blue_light05);
  font-size: 2.9rem;
}
.why02 .why02_content > section p {
  margin: 0;
  letter-spacing: 0.03em;
}
.why02 .why02_content > section p:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (min-width: 48em), print {
  .why02 {
    padding-bottom: 8rem;
  }
  .why02 .Why02_tit {
    font-size: 6.6rem;
    text-align: right;
    padding-top: 0;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0rem;
  }
  .why02 .Why02_tit .txt_small {
    font-size: 5.8rem;
    margin-right: 1rem;
    margin-left: 2rem;
  }
  .why02 .Why02_tit .num {
    font-size: 7.6rem;
  }
  .why02 .Why02_tit .unit {
    font-size: 5.8rem;
  }
  .why02 .Why02_tit .particle {
    font-size: 6rem;
  }
  .why02 .Why02_tit .ruby {
    font-size: 13.2rem;
    width: 1100px;
    text-align: right;
    padding-right: 18.5rem;
    transform: none;
    top: -1rem;
  }
  .why02 .Why02_tit .ruby .hy {
    font-size: 11.2rem;
    margin-right: -0.5rem;
    letter-spacing: 0.08em;
  }
  .why02 .why02_content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.7rem;
    padding: 0;
  }
  .why02 .why02_content::before, .why02 .why02_content::after {
    width: calc((100vw - 1100px) / 2);
    height: 6.4rem;
    top: 6rem;
  }
  .why02 .why02_content::before {
    left: calc(50% + 62rem);
  }
  .why02 .why02_content::after {
    right: calc(50% + 62rem);
  }
  .why02 .why02_content > section {
    width: calc((1100px - 7.4rem) / 3);
  }
  .why02 .why02_content > section .why02_tit03 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  .why02 .why02_content > section .why02_tit03::first-letter {
    font-size: 3.8rem;
  }
  .why02 .why02_content > section p {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.611;
  }
}

.price {
  background: var(--clr_blue_light);
  padding: 3.5rem 0 5.2rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.price::before {
  content: "";
  display: block;
  background: var(--clr_white);
  width: calc(100% - 6.2rem);
  height: calc(100% - 2rem);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
}
.price .ruby {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue_light);
  font-size: 4.6rem;
  letter-spacing: 0.01em;
  text-align: right;
  position: absolute;
  bottom: -2.4rem;
  right: 1.8rem;
  z-index: -1;
}
.price .ruby::first-letter {
  color: var(--clr_white);
}
.price .price_tit {
  color: var(--clr_navy);
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.318;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  gap: 2.6rem;
  margin-bottom: 2rem;
  opacity: 0;
}
.price .price_tit .txt_small {
  font-size: 1.8rem;
}
.price .price_tit::before, .price .price_tit::after {
  content: "";
  display: block;
  width: 0;
  opacity: 0;
  flex-grow: 1;
  height: 1px;
  background: var(--clr_navy);
}
.price .price_tit::before {
  transform-origin: right center; /* 左線は右から左へ伸びる */
}
.price .price_tit::after {
  transform-origin: left center; /* 右線は左から右へ伸びる */
}
.price .price_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.price .price_tit.trigger::before, .price .price_tit.trigger::after {
  animation: line_expand 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}
.price .price_txt {
  margin-bottom: 1.4rem;
}
.price .price_txt p {
  margin: 0;
  letter-spacing: 0.02em;
}
.price .price_txt p:not(:first-of-type) {
  margin-top: 1em;
}
.price .price_table .price_tit03 {
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding-left: 0.5em;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.price .price_table .price_tit03::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--clr_navy_light);
  position: absolute;
  left: 0;
  top: 0.9rem;
}
.price .price_table .tbl {
  margin-bottom: 0.6rem;
}
.price .price_table .tbl thead tr th:first-of-type {
  width: 45%;
}
@media screen and (min-width: 48em), print {
  .price {
    padding: 15.8rem 0 11.5rem;
  }
  .price::before {
    width: calc(37 + (100vw - 1100px) / 2);
    min-width: 37rem;
    height: calc(100% - 7.5rem);
    right: auto;
    left: calc(50% - 36rem);
    clip-path: polygon(13rem 0, 100% 0, 100% 100%, 0 100%);
  }
  .price .ruby {
    font-size: 13.3rem;
    bottom: -6rem;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    text-align: center;
    transform: translateX(1.5rem);
  }
  .price .ruby::first-letter {
    color: var(--clr_white);
  }
  .price .price_tit {
    font-size: 4.8rem;
    letter-spacing: 0.01em;
    gap: 0;
    transform: translateX(1rem);
    margin-bottom: 2.3rem;
  }
  .price .price_tit .txt_small {
    font-size: 4.2rem;
  }
  .price .price_tit::before, .price .price_tit::after {
    height: 2px;
    transform: translateY(0.5rem);
  }
  .price .price_tit::after {
    margin-left: 2rem;
  }
  .price .price_txt p {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    line-height: 1.833;
    text-align: center;
  }
  .price .price_table {
    width: 101.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .price .price_table .price_tit03 {
    font-size: 2rem;
    padding-left: 0.3em;
    margin-bottom: 2rem;
  }
  .price .price_table .price_tit03::before {
    width: 0.5rem;
    height: 0.5rem;
    top: 1.5rem;
  }
  .price .price_table .tbl thead tr th:first-of-type {
    width: 40.5%;
  }
  .price .price_table .lst_ul.-kome li {
    font-size: 1.8rem;
  }
}

.compare {
  background: var(--clr_blue_light);
  padding: 3rem 0;
  overflow: hidden;
}
.compare .compare_tit {
  color: var(--clr_navy);
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.318;
  display: flex;
  align-items: center;
  letter-spacing: 0.022em;
  gap: 3rem;
  transform: translateY(-0.3rem);
  margin-bottom: 1.7rem;
  opacity: 0;
}
.compare .compare_tit .num {
  font-size: 2.4rem;
}
.compare .compare_tit .txt_small {
  font-size: 1.9rem;
}
.compare .compare_tit::before, .compare .compare_tit::after {
  content: "";
  display: block;
  width: 1rem;
  flex-grow: 1;
  height: 3.118rem;
  transform: skewX(-13deg);
  background: var(--clr_navy);
  box-shadow: 9px 9px 0 rgba(var(--rgb_shadow), 0.16);
}
.compare .compare_tit::before {
  margin-left: -2rem;
}
.compare .compare_tit::after {
  margin-right: -2rem;
}
.compare .compare_tit.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.compare .compare_txt {
  margin: 0;
  letter-spacing: 0.02em;
}
.compare .compare_tbl {
  margin-top: 2rem;
}
.compare .compare_tbl:not(:first-of-type) {
  margin-top: 3rem;
}
.compare .tbl.-compare tr th {
  line-height: 1.214;
  border-right: none;
  padding: 0.6rem 1rem;
  color: var(--clr_navy);
}
.compare .tbl.-compare tr td {
  padding: 0.7rem 0.5rem;
}
.compare .tbl.-compare tr td .sp-txt_small, .compare .tbl.-compare tr td .pc-txt_small {
  display: block;
  margin-top: 0.3rem;
}
.compare .tbl.-compare tr td .sp-txt_small {
  font-size: 1.3rem;
}
.compare .tbl.-compare tr td.others {
  background: var(--clr_gray);
}
.compare .tbl.-compare tr td.ours {
  color: var(--clr_navy);
  font-weight: 700;
  background: var(--clr_white);
}
.compare .tbl.-compare thead tr th {
  font-size: 1.8rem;
  padding: 0.7rem;
}
.compare .tbl.-compare thead tr th:first-of-type {
  width: 10rem;
  background: none;
  font-size: 1.4rem;
  vertical-align: bottom;
}
.compare .tbl.-compare thead tr th::before {
  content: "";
  display: block;
  width: 95%;
  height: 7.5rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.compare .tbl.-compare thead tr th.others {
  background: var(--clr_gray);
  color: var(--clr_txt);
}
.compare .tbl.-compare thead tr th.others::before {
  background-image: url("../img/compare_others.svg");
}
.compare .tbl.-compare thead tr th.ours {
  font-weight: 700;
  background: var(--clr_white);
}
.compare .tbl.-compare thead tr th.ours::before {
  background-image: url("../img/compare_ours.svg");
}
@media screen and (min-width: 48em), print {
  .compare {
    padding: 7.5rem 0 9rem;
  }
  .compare .compare_tit {
    font-size: 4.8rem;
    letter-spacing: 0em;
    gap: 3.5rem;
  }
  .compare .compare_tit > span {
    transform: translateX(-1rem);
  }
  .compare .compare_tit .num {
    font-size: 5.4rem;
  }
  .compare .compare_tit .txt_small {
    font-size: 4.4rem;
  }
  .compare .compare_tit::before, .compare .compare_tit::after {
    height: 11.1rem;
    box-shadow: 22px 22px 0 rgba(var(--rgb_shadow), 0.16);
  }
  .compare .compare_txt {
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 1.8rem;
    line-height: 1.833;
  }
  .compare .compare_tbl {
    margin-top: 5rem;
  }
  .compare .compare_tbl:not(:first-of-type) {
    margin-top: 4.8rem;
  }
  .compare .tbl.-compare tr th {
    padding: 2.35rem 1rem;
    letter-spacing: 0;
  }
  .compare .tbl.-compare tr td {
    padding: 0.5rem 3.5rem 0.5rem 1rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
  .compare .tbl.-compare tr td .sp-txt_small, .compare .tbl.-compare tr td .pc-txt_small {
    font-size: 1.6rem;
    margin-top: -0.2rem;
  }
  .compare .tbl.-compare tr td.others {
    background: linear-gradient(to left, transparent 2.5rem, var(--clr_gray) 2.5rem);
  }
  .compare .tbl.-compare tr td.ours {
    background: linear-gradient(to left, transparent 2.5rem, var(--clr_white) 2.5rem);
  }
  .compare .tbl.-compare thead tr th {
    padding: 1rem;
  }
  .compare .tbl.-compare thead tr th:first-of-type {
    width: 21rem;
    font-size: 1.8rem;
  }
  .compare .tbl.-compare thead tr th.others {
    font-size: 2.2rem;
    padding-right: 3.2rem;
    background: linear-gradient(to left, transparent 2.2rem, var(--clr_gray) 2.2rem);
  }
  .compare .tbl.-compare thead tr th.ours {
    font-size: 2.4rem;
    padding-right: 3.2rem;
    background: linear-gradient(to left, transparent 2.2rem, var(--clr_white) 2.2rem);
  }
  .compare .tbl.-compare thead tr th::before {
    height: 11.7rem;
    margin-bottom: 1rem;
  }
}

.point {
  padding: 2.5rem 0 4rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.point::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: url("../img/point_bg.webp") top left -26rem/350% auto no-repeat;
  z-index: -2;
}
.point .point_tit02 {
  color: var(--clr_white);
  line-height: 1.444;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 2rem 1rem 4.5rem;
  margin-bottom: 2rem;
  position: relative;
  opacity: 0;
}
.point .point_tit02 .num {
  font-size: 2rem;
  line-height: 1;
}
.point .point_tit02 .txt_yellow {
  line-height: 1;
  color: var(--clr_yellow);
  font-size: 2.1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.point .point_tit02::after {
  content: "";
  display: block;
  width: calc(100% + 4rem);
  height: 100%;
  transform: skewX(-12deg);
  background: var(--clr_navy);
  box-shadow: 10px 10px 0 rgba(var(--rgb_shadow), 0.16);
  position: absolute;
  top: 0;
  left: 2rem;
  z-index: -1;
}
.point .point_tit02.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.point .point_txt {
  line-height: 1.429;
  padding-left: 1rem;
  letter-spacing: 0.02em;
}
.point .point_lst {
  display: flex;
  flex-direction: column;
  gap: 3.3rem;
  margin-top: 3rem;
  counter-reset: number 0;
}
.point .point_lst > section {
  counter-increment: number 1;
  padding-left: 2.2rem;
  position: relative;
  padding-bottom: 11rem;
  background-position: left bottom, right bottom;
  background-size: auto 9.36rem, auto 9.36rem;
  background-repeat: no-repeat, no-repeat;
}
.point .point_lst > section::before, .point .point_lst > section::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
}
.point .point_lst > section::before {
  width: 4rem;
  height: 1px;
  background: var(--clr_navy_light);
  top: 2.2rem;
  left: -2.2rem;
}
.point .point_lst > section::after {
  width: 2.8rem;
  height: 1.8rem;
  background: url("../img/Point.svg") bottom center/contain no-repeat;
  top: -2.2rem;
  left: 4.3rem;
}
.point .point_lst > section .point_tit03 {
  color: var(--clr_navy);
  text-align: center;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  line-height: 1.19;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
  opacity: 0;
}
.point .point_lst > section .point_tit03 span {
  display: inline-block;
}
.point .point_lst > section .point_tit03::before {
  width: 5.645rem;
  height: 4.7rem;
  text-align: center;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  line-height: 1;
  font-size: 3.4rem;
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  content: counter(number);
  color: var(--clr_white);
  transform: translateY(3px);
}
.point .point_lst > section .point_tit03::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 4.7rem;
  background: var(--clr_navy_light);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skew(-12deg);
  left: 0.7rem;
  z-index: -1;
}
.point .point_lst > section .point_content p {
  letter-spacing: 0.02em;
  margin: 0;
}
.point .point_lst > section:nth-of-type(even)::before {
  width: 5.1rem;
  left: auto;
  right: -2.2rem;
}
.point .point_lst > section:nth-of-type(1) {
  background-image: url("../img/point_img01_01.webp"), url("../img/point_img01_02.webp");
}
.point .point_lst > section:nth-of-type(1) .point_tit03 {
  text-align: left;
  gap: 0.5rem;
}
.point .point_lst > section:nth-of-type(2) {
  background-image: url("../img/point_img02_01.webp"), url("../img/point_img02_02.webp");
}
.point .point_lst > section:nth-of-type(2)::before {
  width: 7rem;
}
.point .point_lst > section:nth-of-type(3) {
  background-image: url("../img/point_img03_01.webp"), url("../img/point_img03_02.webp");
}
.point .point_lst > section:nth-of-type(4) {
  background-image: url("../img/point_img04_01.webp"), url("../img/point_img04_02.webp");
}
.point .point_lst > section.trigger::before {
  animation: fade_left 0.4s ease-out 0.2s 1 forwards;
}
.point .point_lst > section.trigger::after {
  animation: fade_up 0.3s ease-out 0.5s 1 forwards;
}
.point .point_lst > section.trigger .point_tit03 {
  animation: fade_left 0.4s ease-out 0.2s 1 forwards;
}
.point .point_lst > section:nth-of-type(even).trigger::before {
  animation: fade_right 0.4s ease-out 0.2s 1 forwards;
}
.point .point_lst > section:nth-of-type(even).trigger .point_tit03 {
  animation: fade_right 0.4s ease-out 0.2s 1 forwards;
}
@media screen and (min-width: 48em), print {
  .point {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8.6rem;
  }
  .point::after {
    background: url("../img/point_bg.webp") top center/200rem auto no-repeat;
  }
  .point .point_tit02 {
    font-size: 4.4rem;
    padding: 2.5rem 0rem 2.5rem 4.5rem;
  }
  .point .point_tit02 .num {
    font-size: 5rem;
  }
  .point .point_tit02 .txt_yellow {
    font-size: 5.2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .point .point_tit02::after {
    width: calc(100% + 8rem + (100vw - 1100px) / 2);
    min-width: calc(100% + 8rem);
    box-shadow: 20px 20px 0 rgba(var(--rgb_shadow), 0.16);
    left: 1.2rem;
  }
  .point .point_txt {
    font-size: 1.8rem;
    line-height: 1.833;
    letter-spacing: 0.03em;
    margin: 2.5rem 0;
    padding: 0;
  }
  .point .point_lst {
    gap: 6rem;
    padding-bottom: 5.5rem;
    margin-top: 6rem;
  }
  .point .point_lst > section {
    padding-left: 0;
    width: 93.6rem;
    padding-bottom: 22.5rem;
    background-position: left 17rem bottom, right 4rem bottom;
    background-size: auto 20.2rem, auto 20.2rem;
  }
  .point .point_lst > section:nth-of-type(even) {
    width: 90.6rem;
    margin: 0 0 0 auto;
    background-position: left 17rem bottom, right 1rem bottom;
  }
  .point .point_lst > section:nth-of-type(even)::before {
    top: 4rem;
    left: calc(50% + 48rem);
    right: auto;
  }
  .point .point_lst > section:nth-of-type(1) .point_tit03 {
    gap: 1rem;
  }
  .point .point_lst > section:nth-of-type(2)::before {
    width: calc(100vw - 550px);
    left: calc(50% + 39rem);
  }
  .point .point_lst > section:nth-of-type(4)::before {
    width: calc(100vw - 550px);
    left: calc(50% + 43.5rem);
  }
  .point .point_lst > section::before {
    width: calc(100vw - 550px);
    height: 2px;
    top: 4rem;
    left: auto;
    right: calc(50% + 48rem);
  }
  .point .point_lst > section::after {
    width: 5.8rem;
    height: 3.7rem;
    top: -4.7rem;
    left: 3.5rem;
  }
  .point .point_lst > section .point_tit03 {
    font-size: 4rem;
    gap: 1rem;
    margin-bottom: 0.2rem;
  }
  .point .point_lst > section .point_tit03::before {
    width: 10.8rem;
    height: 8.993rem;
    font-size: 7rem;
    transform: translateY(10px) translateX(-5px);
  }
  .point .point_lst > section .point_tit03::after {
    width: 8.8rem;
    height: 9rem;
    left: 0.7rem;
  }
  .point .point_lst > section .point_content {
    padding-left: 11.8rem;
  }
  .point .point_lst > section .point_content p {
    font-size: 1.8rem;
    line-height: 1.833;
    letter-spacing: 0.01em;
  }
  .point .point_lst > section .point_content p:not(:first-of-type) {
    margin-top: 0.5em;
  }
}

.treatment_plan {
  background: var(--clr_navy);
  overflow: hidden;
}
.treatment_plan .treatment_plan_tit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--clr_white);
  font-size: 1.7rem;
  line-height: 1.235;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.treatment_plan .treatment_plan_tit::after {
  content: attr(data-ruby);
  color: var(--clr_navy_light03);
  position: absolute;
  right: 2rem;
  bottom: 0.5rem;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: 2.5rem;
  z-index: -1;
  opacity: 0;
}
.treatment_plan .treatment_plan_tit .bg_white {
  color: var(--clr_navy);
  display: inline-block;
  position: relative;
  z-index: 0;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  padding: 1.3rem 0 1.3rem 1.1rem;
}
.treatment_plan .treatment_plan_tit .bg_white::after {
  content: "";
  display: block;
  width: calc(100% + 3rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: -1.3rem;
  background: var(--clr_white);
  z-index: -1;
  transform: skew(-12deg);
  border-top: 1px solid;
  border-image-source: linear-gradient(to left, var(--clr_white) 1rem, var(--clr_navy) 1rem);
  border-image-slice: 1;
  transform: scale(0, 1);
  transform-origin: left top;
}
.treatment_plan .treatment_plan_tit .bg_navy {
  transform: translateY(2px);
}
.treatment_plan .treatment_plan_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.treatment_plan .treatment_plan_tit.trigger::after {
  animation: fade_up 0.5s ease-out 0.6s 1 normal forwards;
}
.treatment_plan .treatment_plan_tit.trigger .bg_white::after {
  animation: scale_why01 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s 1 normal forwards;
}
.treatment_plan .treatment_plan_txt {
  color: var(--clr_white);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  padding: 1.5rem 2rem 1.8rem;
  margin: 0;
  font-weight: 700;
}
.treatment_plan .treatment_plan_txt .txt_yellow {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--clr_yellow_light02);
}
.treatment_plan .plan_lst {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  counter-reset: number 0;
  padding-bottom: 2.5rem;
}
.treatment_plan .plan_lst > li {
  counter-increment: number 1;
  position: relative;
  z-index: 0;
}
.treatment_plan .plan_lst > li::before, .treatment_plan .plan_lst > li::after {
  content: "";
  display: block;
  width: calc(100% - 0.8rem);
  height: 100%;
  position: absolute;
  z-index: -2;
  transform: skew(-12deg);
  pointer-events: none;
}
.treatment_plan .plan_lst > li::before {
  background: var(--clr_blue_light);
  top: 0;
  left: -1.8rem;
}
.treatment_plan .plan_lst > li::after {
  border: 1px solid var(--clr_navy_light);
  top: 0.7rem;
  left: -1rem;
}
.treatment_plan .plan_lst > li > section {
  padding: 1.5rem 4rem 1.5rem 2rem;
  min-height: 22.7rem;
  position: relative;
}
.treatment_plan .plan_lst > li > section::before, .treatment_plan .plan_lst > li > section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0rem;
  right: 4.5rem;
  width: 6rem;
  height: 6rem;
}
.treatment_plan .plan_lst > li > section::before {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  content: counter(number);
  color: var(--clr_navy_light03);
  font-size: 3.7rem;
  z-index: -1;
  display: grid;
  place-content: center;
  transform: translateY(3px);
}
.treatment_plan .plan_lst > li > section::after {
  background: var(--clr_white);
  transform: skew(-12deg);
  z-index: -2;
}
.treatment_plan .plan_lst > li > section .plan_tit {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.treatment_plan .plan_lst > li > section .plan_tit::first-letter {
  font-size: 2.2rem;
  color: var(--clr_navy);
}
.treatment_plan .plan_lst > li > section p {
  margin: 0;
}
.treatment_plan .plan_lst > li > section p:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (min-width: 48em), print {
  .treatment_plan .treatment_plan_tit {
    justify-content: flex-start;
    gap: 3rem;
    font-size: 3.4rem;
    letter-spacing: 0.015em;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
  .treatment_plan .treatment_plan_tit::after {
    right: 2rem;
    bottom: -1.8rem;
    font-size: 9rem;
    letter-spacing: 0;
  }
  .treatment_plan .treatment_plan_tit .bg_white {
    font-size: 5.4rem;
    padding: 3rem 0;
  }
  .treatment_plan .treatment_plan_tit .bg_white::after {
    width: calc(100% + 4rem + 100vw - 550px);
    min-width: calc(100% + 4rem);
    right: -3rem;
    border-top: 2px solid;
    border-image-source: linear-gradient(to left, var(--clr_white) 5rem, var(--clr_navy) 5rem);
  }
  .treatment_plan .treatment_plan_txt {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    font-size: 2rem;
    line-height: 1.833;
    letter-spacing: 0.02em;
    padding: 2rem 0 3rem;
  }
  .treatment_plan .treatment_plan_txt .txt_first {
    font-size: 1.8rem;
  }
  .treatment_plan .treatment_plan_txt .txt_yellow {
    font-size: 2.2rem;
    margin-left: -0.2rem;
  }
  .treatment_plan .plan_lst {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    gap: 3.5rem 2.5rem;
    padding-bottom: 3rem;
    padding-right: 1.5rem;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .treatment_plan .plan_lst > li {
    width: 48rem;
  }
  .treatment_plan .plan_lst > li::before, .treatment_plan .plan_lst > li::after {
    width: calc(100% - 1rem);
  }
  .treatment_plan .plan_lst > li::before {
    top: 0;
    left: -1.8rem;
  }
  .treatment_plan .plan_lst > li::after {
    top: 0.8rem;
    left: -0.9rem;
  }
  .treatment_plan .plan_lst > li > section {
    padding: 3rem 3.5rem;
    min-height: auto;
    height: 29rem;
  }
  .treatment_plan .plan_lst > li > section::before, .treatment_plan .plan_lst > li > section::after {
    right: 5.2rem;
    width: 8.4rem;
    height: 7.8rem;
  }
  .treatment_plan .plan_lst > li > section::before {
    font-size: 7rem;
    transform: translateY(4px);
  }
  .treatment_plan .plan_lst > li > section .plan_tit {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0;
  }
  .treatment_plan .plan_lst > li > section .plan_tit::first-letter {
    font-size: 3.2rem;
  }
  .treatment_plan .plan_lst > li > section p {
    line-height: 1.5;
    font-size: 1.6rem;
    padding-right: 3.8rem;
    letter-spacing: 0;
  }
  .treatment_plan .plan_lst > li:nth-of-type(4n) {
    margin-right: 7rem;
  }
}

.free_consultation {
  overflow: hidden;
  margin-bottom: 4rem;
  padding-top: 1rem;
  background: linear-gradient(to top, var(--clr_white) 5rem, var(--clr_navy) 5rem);
}
.free_consultation .wrap {
  position: relative;
  z-index: 0;
  padding: 1.8rem 5rem 2.5rem 0;
}
.free_consultation .wrap::after {
  content: "";
  display: block;
  width: calc(100% + 1.7rem);
  height: 100%;
  background: linear-gradient(to right, var(--clr_blue), var(--clr_blue_light03));
  position: absolute;
  top: 0;
  left: -4.5rem;
  z-index: -1;
  transform: skew(-12deg);
}
.free_consultation .wrap .free_consultation_tit {
  font-size: 2.3rem;
  letter-spacing: 0.03em;
  color: var(--clr_white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 10px var(--clr_blue_light08);
  opacity: 0;
}
.free_consultation .wrap .free_consultation_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.free_consultation .wrap p {
  line-height: 1.643;
  margin: 0;
}
.free_consultation .wrap p:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (min-width: 48em), print {
  .free_consultation {
    background: linear-gradient(to top, var(--clr_white) 10.5rem, var(--clr_navy) 10.5rem);
    padding-top: 3.5rem;
  }
  .free_consultation .wrap {
    padding: 3rem 36rem 4.2rem 0;
  }
  .free_consultation .wrap::after {
    width: calc(85rem + 100vw - 550px);
    min-width: 89rem;
    left: auto;
    right: 27rem;
    background: linear-gradient(to left, var(--clr_blue_light03), var(--clr_blue) 130.331rem);
  }
  .free_consultation .wrap .free_consultation_tit {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }
  .free_consultation .wrap P {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.alternative {
  overflow: hidden;
}
.alternative .alternative_tit {
  text-align: center;
  color: var(--clr_navy);
  font-weight: 700;
  line-height: 1.5;
  font-size: 2rem;
  letter-spacing: 0.01em;
  opacity: 0;
}
.alternative .alternative_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.alternative .alternative_content {
  margin-top: 7.5rem;
  padding: 7.2rem 2rem 2rem;
  background: var(--clr_blue_light);
  position: relative;
}
.alternative .alternative_content::before {
  content: "";
  display: block;
  height: 12.079rem;
  aspect-ratio: 88.015/34;
  background: url("../img/alternative_content_01.webp") center center/cover no-repeat;
  position: absolute;
  top: -6.2rem;
  left: -5.3rem;
}
.alternative .alternative_content .alternative_txt p {
  margin: 0;
  letter-spacing: 0.02em;
}
.alternative .alternative_content .alternative_txt p:not(:first-of-type) {
  margin-top: 1em;
}
.alternative .alternative_content .tel_rsv {
  margin-top: 1.2rem;
}
@media screen and (min-width: 48em), print {
  .alternative {
    padding-top: 8.5rem;
  }
  .alternative .alternative_tit {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 44.5rem;
    text-align: left;
    font-size: 3.4rem;
    line-height: 1.471;
  }
  .alternative .alternative_content {
    margin-top: 1.5rem;
    padding: 1.7rem 0 0;
  }
  .alternative .alternative_content::before {
    height: 34rem;
    top: auto;
    bottom: 0rem;
    left: calc(50% - 100rem);
  }
  .alternative .alternative_content .alternative_txt {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 43rem;
  }
  .alternative .alternative_content .alternative_txt p {
    font-size: 1.8rem;
    line-height: 1.556;
    letter-spacing: 0;
  }
  .alternative .alternative_content .tel_rsv {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-end;
    margin-top: 1.5rem;
    transform: translateX(-0.5rem);
  }
}

.doctor {
  overflow: hidden;
}

.dr_message {
  background: var(--clr_blue_light);
}
.dr_message .wrap {
  position: relative;
  padding: 0.5rem 0 2.3rem;
}
.dr_message .wrap::before, .dr_message .wrap::after {
  content: "";
  display: block;
}
.dr_message .wrap::before {
  content: attr(data-ruby);
  color: var(--clr_white);
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  position: absolute;
  left: 0rem;
  bottom: -0.6rem;
}
.dr_message .wrap::after {
  width: calc(100% - 1rem);
  aspect-ratio: 317/231;
  background: url("../img/dr_message_01.webp") top left/61% auto no-repeat, url("../img/dr_message_02.webp") bottom right/51% auto no-repeat;
  margin: 0.8rem 0 0 auto;
}
.dr_message .dr_message_tit {
  color: var(--clr_navy);
  letter-spacing: 0.01em;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 1.5rem 2rem 1.5rem 0;
  margin-bottom: 1.7rem;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.dr_message .dr_message_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.dr_message .dr_message_tit::after {
  content: "";
  display: block;
  width: calc(100% + 4rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: -5rem;
  background: linear-gradient(to right, var(--clr_blue), var(--clr_blue_light03));
  z-index: -1;
  transform: skew(-12deg);
}
.dr_message p {
  margin: 0;
  letter-spacing: 0.02em;
}
.dr_message p.dr_name {
  letter-spacing: 0.09em;
  line-height: 1.2;
  border-bottom: 1px solid var(--clr_txt);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.2rem 0 0 auto;
  font-size: 1.4rem;
}
.dr_message p.dr_name .txt_large {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .dr_message {
    padding-bottom: 11rem;
    background: linear-gradient(to top, var(--clr_white) 11rem, var(--clr_blue_light) 11rem);
  }
  .dr_message .wrap {
    padding: 11.5rem 53.5rem 12.5rem 0;
    position: relative;
  }
  .dr_message .wrap::before {
    font-size: 10.6rem;
    bottom: -2.6rem;
    letter-spacing: 0.06em;
  }
  .dr_message .wrap::after {
    width: 82.762rem;
    height: 67.2rem;
    background: url("../img/dr_message_01.webp") bottom left/46.462rem auto no-repeat, url("../img/dr_message_02.webp") top right/39.462rem auto no-repeat;
    margin: 0;
    position: absolute;
    top: 6rem;
    right: calc(50% - 85rem);
  }
  .dr_message .dr_message_tit {
    font-size: 3.4rem;
    padding: 2.8rem 2rem 2.8rem 0;
    margin-bottom: 3.5rem;
  }
  .dr_message .dr_message_tit::after {
    width: calc(100% + (100vw - 1100px) / 2);
    min-width: calc(100% + 40px);
    left: auto;
    right: 0;
    background: linear-gradient(to left, var(--clr_blue_light03), var(--clr_blue) 102.9rem);
  }
  .dr_message p {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.556;
  }
  .dr_message p:not(:first-of-type) {
    margin-top: 1rem;
  }
  .dr_message p.dr_name {
    margin-top: 0.2rem;
    margin-right: 0.4rem;
    font-size: 1.6rem;
    letter-spacing: 0.09em;
  }
  .dr_message p.dr_name .txt_large {
    font-size: 2.2rem;
    margin-left: 1rem;
  }
}

.dr_introduction {
  background: var(--clr_white);
  padding: 4rem 0 4.5rem;
}
.dr_introduction .dr_introduction_tit {
  color: var(--clr_navy);
  letter-spacing: 0.09em;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0.5rem 2rem 0.7rem 0;
  margin-bottom: 3rem;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.dr_introduction .dr_introduction_tit::before {
  content: "";
  display: block;
  width: calc(100% + 4.5rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: -5rem;
  border-right: 1px solid var(--clr_navy);
  border-bottom: 1px solid var(--clr_navy);
  z-index: -1;
  transform: skew(-12deg);
}
.dr_introduction .dr_introduction_tit::after {
  content: attr(data-ruby);
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue_light07);
  margin-left: 1.5rem;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
}
.dr_introduction .dr_introduction_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.dr_introduction .staff {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2.7rem;
}
.dr_introduction .staff .profile {
  background-size: auto 19rem;
}
.dr_introduction .staff .profile .dr_introduction_tit03 {
  color: var(--clr_navy);
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.07em;
  margin-bottom: 1.2rem;
}
.dr_introduction .staff .profile .dr_introduction_tit03 .specialty {
  font-size: 1.8rem;
  margin-left: 1.5rem;
}
.dr_introduction .staff .profile .dr_introduction_tit03::before {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 1em;
  background: var(--clr_blue_light);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  margin-right: 1rem;
  transform: translateY(2px);
}
.dr_introduction .staff .profile .profile_content .dr_profile .dr_introduction_tit04 {
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--clr_gray_dark);
  border-image-source: linear-gradient(to left, transparent 6rem, var(--clr_gray_dark) 6rem);
  border-image-slice: 1;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}
.dr_introduction .staff .profile .profile_content .dr_img {
  width: -moz-fit-content;
  width: fit-content;
  height: 18.5rem;
  margin: 1rem auto 0;
}
.dr_introduction .staff .profile .profile_content .dr_img img {
  width: auto;
  height: 100%;
  transform: translateX(0.5rem);
}
@media screen and (min-width: 48em), print {
  .dr_introduction {
    padding: 7rem 0 10rem;
  }
  .dr_introduction .dr_introduction_tit {
    font-size: 3.4rem;
    padding: 1rem 2rem 1.5rem 0;
    margin-bottom: 5.5rem;
    width: calc(550px - 1rem);
  }
  .dr_introduction .dr_introduction_tit::before {
    width: calc(100% + (100vw - 1100px) / 2);
    min-width: calc(100% + 40px);
    left: auto;
    right: 0;
  }
  .dr_introduction .dr_introduction_tit::after {
    margin-left: 2.5rem;
    font-size: 3.2rem;
  }
  .dr_introduction .staff {
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 7rem 0;
  }
  .dr_introduction .staff .profile {
    width: calc(50% - 3.4rem);
  }
  .dr_introduction .staff .profile .dr_introduction_tit03 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
  }
  .dr_introduction .staff .profile .dr_introduction_tit03 .specialty {
    font-size: 2.2rem;
    margin-left: 1.6rem;
  }
  .dr_introduction .staff .profile .dr_introduction_tit03::before {
    width: 4.071rem;
    height: 2.6rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    margin-right: 1.2rem;
    transform: translateY(3px);
  }
  .dr_introduction .staff .profile .profile_content {
    display: flex;
  }
  .dr_introduction .staff .profile .profile_content .dr_profile {
    width: 28rem;
    flex-shrink: 0;
  }
  .dr_introduction .staff .profile .profile_content .dr_profile .dr_introduction_tit04 {
    font-size: 1.6rem;
    padding-bottom: 0.7rem;
    margin-bottom: 1rem;
    border-image-source: var(--clr_gray_dark);
  }
  .dr_introduction .staff .profile .profile_content .dr_img {
    width: 28rem;
    flex-shrink: 0;
    height: 27.4rem;
    margin-top: -0.5rem;
  }
  .dr_introduction .staff .profile .profile_content .dr_img img {
    transform: none;
  }
  .dr_introduction .staff .profile:nth-of-type(4n) .profile_content, .dr_introduction .staff .profile:nth-of-type(4n - 1) .profile_content {
    flex-direction: row-reverse;
  }
  .dr_introduction .staff .profile:nth-of-type(4n) .profile_content .dr_img, .dr_introduction .staff .profile:nth-of-type(4n - 1) .profile_content .dr_img {
    margin-right: -4.4rem;
  }
}

.faq {
  padding: 0 0 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.faq::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(102deg, var(--clr_navy_light02) 13.4rem, var(--clr_navy) 13.6rem);
}
.faq .faq_tit {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--clr_white);
  padding: 1rem 0 1rem 2rem;
  margin-bottom: 2.4rem;
  position: relative;
  opacity: 0;
}
.faq .faq_tit.trigger {
  animation: fade_up 0.5s ease-out 0.2s 1 forwards;
}
.faq .faq_tit::before {
  content: "";
  display: block;
  width: calc(100% + 2rem);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0.65rem;
  border-left: 1px solid var(--clr_white);
  border-bottom: 1px solid var(--clr_white);
  transform: skewX(-12deg);
}
.faq .faq_tit::after {
  content: attr(data-ruby);
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue_light05);
  font-size: 4rem;
  letter-spacing: 0.01em;
  margin-left: 2rem;
  line-height: 1;
  transform: translateY(0.5rem);
  display: inline-block;
}
.faq .lst_faq {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq .lst_faq .js-acc_tit {
  background: linear-gradient(102deg, transparent calc(100% - 5.6rem), var(--clr_blue) calc(100% - 5.5rem)), linear-gradient(to right, var(--clr_blue_light03), var(--clr_blue_light));
  color: var(--clr_navy);
  padding: 0.2rem 4.5rem 0.2rem 3.3rem;
  font-size: 1.4rem;
  line-height: 1.286;
  min-height: 4.6rem;
  cursor: pointer;
  position: relative;
  display: grid;
  place-content: center start;
}
.faq .lst_faq .js-acc_tit::before, .faq .lst_faq .js-acc_tit::after {
  position: absolute;
  top: 50%;
  line-height: 1;
}
.faq .lst_faq .js-acc_tit::before {
  content: "Q.";
  left: 1rem;
  font-size: 1.6rem;
  transform: translateY(-52%);
}
.faq .lst_faq .js-acc_tit::after {
  font-family: "fontello";
  content: "\e807";
  display: inline-block;
  transition: 0.2s;
  right: 1.9rem;
  color: var(--clr_white);
  font-size: 1.2rem;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  transition: 0.2s;
}
.faq .lst_faq .js-acc_tit.open::after {
  transform: translateY(-50%) rotate(180deg);
  font-family: "fontello";
  content: "\e806";
}
.faq .lst_faq .js-acc_body {
  background: var(--clr_white);
  padding: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  display: none;
}
.faq .lst_faq .js-acc_body::before {
  content: "A.";
  font-size: 1.6rem;
  margin-right: 0.8rem;
}
@media screen and (min-width: 48em), print {
  .faq {
    padding-bottom: 12rem;
  }
  .faq::after {
    width: 200rem;
    left: calc(50% - 100rem);
    background: linear-gradient(102deg, var(--clr_navy_light02) 40.9rem, var(--clr_navy) 41.1rem);
  }
  .faq .faq_tit {
    font-size: 4rem;
    padding: 4rem 0 2rem;
    margin-bottom: 4.5rem;
  }
  .faq .faq_tit::before {
    width: calc(100% + (100vw - 1100px) / 2 + 14rem);
    min-width: calc(100% + 14rem);
    left: -12rem;
  }
  .faq .faq_tit::after {
    font-size: 11.9rem;
    margin-left: 2.5rem;
  }
  .faq .lst_faq {
    gap: 4.6rem;
  }
  .faq .lst_faq .js-acc_tit {
    padding: 0.4rem 10rem 0.4rem 4.8rem;
    background: linear-gradient(102deg, transparent calc(100% - 11.6rem), var(--clr_blue) calc(100% - 11.5rem)), linear-gradient(to right, var(--clr_blue_light03), var(--clr_blue_light));
    font-size: 2rem;
    min-height: 4.8rem;
  }
  .faq .lst_faq .js-acc_tit::before {
    font-size: 2.4rem;
    left: 1.5rem;
  }
  .faq .lst_faq .js-acc_tit::after {
    font-size: 2.4rem;
    right: 4.5rem;
  }
  .faq .lst_faq .js-acc_body {
    padding: 0.5rem 1.5rem 1.5rem;
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .faq .lst_faq .js-acc_body::before {
    font-size: 2.4rem;
  }
}

.risk {
  padding: 3.5rem 0 4rem;
  background: var(--clr_white);
}
.risk .wrap {
  border-top: 1px solid var(--clr_gray_dark);
  border-bottom: 1px solid var(--clr_gray_dark);
  padding: 1.3rem 1rem 1rem;
}
.risk .risk_tit {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 48em), print {
  .risk {
    padding: 7.5rem 0 9rem;
  }
  .risk .wrap {
    padding: 3rem 15.5rem;
  }
  .risk .wrap .risk_tit {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=style.css.map */