@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
body {
  margin: 0 !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}
body * {
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
body img {
  vertical-align: top;
  margin: 0;
  padding: 0;
  width: 100%;
}
body ul,
body ol,
body li {
  list-style: none;
  padding: 0;
  margin: 0;
}
body a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}
body .sp {
  display: block;
}
body .pc {
  display: none;
}

header {
  background: linear-gradient(180deg, rgb(0, 170, 232) 0%, rgb(82, 192, 235) 100%);
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 70px;
  position: fixed;
  z-index: 10;
}
header .logo_block {
  width: min(33.8461538462vw, 132px);
  position: relative;
  z-index: 2;
}
header .pc_menu {
  display: none;
}
header .open_btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 67px;
  height: 67px;
  background-color: #FFDD3C;
  border-radius: 0 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .open_btn span {
  display: block;
  width: 35px;
  height: 35px;
  background: url(../images/ms/header_btn_open.svg) no-repeat center/100% auto;
}
header .open_btn.is_open span {
  width: 21px;
  height: 21px;
  background: url(../images/ms/header_btn_close.svg) no-repeat center/100% auto;
}

.navigation_block {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  transition: right 0.35s;
}

.navigation_block.is_open {
  right: 0;
}

.navigation_block nav {
  top: 0;
  height: 100%;
  background: #00AAE8;
  padding: 92px 40px 32px;
}
.navigation_block nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.navigation_block nav ul li {
  padding-right: 38px;
  position: relative;
  z-index: 0;
}
.navigation_block nav ul li::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 0;
  top: 50%;
}
.navigation_block nav ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.1666666667;
}
.navigation_block nav .social_media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 33px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
.navigation_block nav .social_media dt {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.navigation_block nav .social_media dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navigation_block nav .social_media dd a {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.navigation_block nav .social_media dd a img {
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
}
.navigation_block nav .social_media dd a + a {
  margin-left: 20px;
}
.navigation_block nav .social_media dd a.line {
  padding-right: 20px;
  border-right: solid 1px #fff;
}
.navigation_block nav .social_media dd a.line img {
  width: 34px;
}

.fixed_reservation {
  width: 129px;
  height: 129px;
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 1;
}

footer {
  padding: 50px 10px 164px;
  background: linear-gradient(180deg, rgb(0, 170, 232) 0%, rgb(82, 192, 235) 100%);
  color: #fff;
}
footer .logo {
  width: 159px;
  margin: 0 auto;
}
footer .footer_links {
  margin-top: 24px;
}
footer .footer_links .social_media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  margin-top: 24px;
}
footer .footer_links .social_media dt {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
}
footer .footer_links .social_media dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer_links .social_media dd a {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
footer .footer_links .social_media dd a img {
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
}
footer .footer_links .social_media dd a + a {
  margin-left: 20px;
}
footer .footer_links .social_media dd a.line {
  padding-right: 20px;
  border-right: solid 1px #fff;
}
footer .footer_links .social_media dd a.line img {
  width: 34px;
}
footer .footer_links .link_lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 20px;
  margin-top: 54px;
}
footer .footer_links .link_lists li {
  border-left: solid 1px #fff;
}
footer .footer_links .link_lists li:first-child {
  border: 0;
}
footer .footer_links .link_lists li:first-child a {
  margin: 0;
}
footer .footer_links .link_lists li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  margin-left: 20px;
}
footer .copyright {
  margin-top: 30px;
  font-size: 12px;
  text-align: center;
}
.ms_container {
  position: relative;
  z-index: 0;
  padding-top: 60px;
}

.ms_contens_wrap {
  position: relative;
  z-index: 0;
  padding: 32px 0 0;
  margin: 60px 0 0;
}
.ms_contens_wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/ms/bg_contents_wrap_sp.png) repeat-y top center/100% auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.service_block .title_block {
  width: 67.9487179487%;
  margin: auto;
}
.service_block .service_cards {
  padding: 0 18px;
  margin-top: 45px;
}
.service_block .service_cards .service_card {
  background-color: #fff;
  border: solid 2px #00AAE8;
  border-radius: 16px;
  padding: 18px 16px 22px;
  position: relative;
}
.service_block .service_cards .service_card::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-color: #D4F2FD;
  position: absolute;
  right: -8px;
  top: 8px;
  z-index: -1;
}
.service_block .service_cards .num {
  width: 60px;
  height: 42px;
  position: absolute;
  left: -4px;
  top: -27px;
}
.service_block .service_cards .service_card.card02,
.service_block .service_cards .service_card.card03 {
  margin-top: 65px;
}
.service_block .card01 .bnr {
  margin-top: 30px;
}
.service_block .card01 .sub {
  margin-top: 28px;
  margin-bottom: 20px;
}
.service_block .color_slider_black,
.service_block .color_slider_grn {
  display: none;
}
.service_block .color_slider_black.active,
.service_block .color_slider_grn.active {
  display: block;
}
.service_block .itemSwiper .navigation_box {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 20px;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.service_block .itemSwiper .navigation_box .swiper-pagination {
  position: initial;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.service_block .itemSwiper .navigation_box .swiper-pagination span {
  display: block;
}
.service_block .itemSwiper .navigation_box .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00AAE8;
}
.service_block .itemSwiper .navigation_box .swiper-button-next {
  width: 8px;
  height: 8px;
  border-top: solid 1px #C8C9C9;
  border-right: solid 1px #C8C9C9;
  transform: rotate(45deg);
  position: relative;
}
.service_block .itemSwiper .navigation_box .swiper-button-next::after {
  content: "";
  display: none;
}
.service_block .itemSwiper .navigation_box .swiper-button-prev {
  width: 8px;
  height: 8px;
  border-top: solid 1px #C8C9C9;
  border-left: solid 1px #C8C9C9;
  transform: rotate(-45deg);
  position: relative;
}
.service_block .itemSwiper .navigation_box .swiper-button-prev::after {
  content: "";
  display: none;
}

.voice_block {
  background: url(../images/ms/bg_content03.jpg) no-repeat top center/cover;
  padding: 27px 0 72px;
  margin-top: 52px;
}
.voice_block .voiceSwiper {
  padding: 48px 25px 0;
}
.voice_block .swiper-wrapper {
  position: relative;
  align-items: stretch;
}
.voice_block .swiper-slide {
  background-color: #fff;
  aspect-ratio: 320/360;
  padding: min(39.7435897436vw, 155px) 20px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}
.voice_block .item_image {
  position: absolute;
  top: min(-8.2051282051vw, -32px);
}
.voice_block .voice_ttl01 {
  width: min(65.3846153846vw, 255px);
}
.voice_block .voice_ttl02 {
  width: min(69.4871794872vw, 271px);
}
.voice_block .voice_ttl03 {
  width: min(78.4615384615vw, 306px);
}
.voice_block .voice_ttl04 {
  width: min(71.25vw, 285px);
}
.voice_block .voice_ttl05 {
  width: min(68.4615384615vw, 267px);
}
.voice_block .voice_ttl06 {
  width: min(70.75vw, 283px);
}
.voice_block .item_text {
  height: 48.7179487179vw;
  overflow-y: auto;
}
.voice_block .item_text::-webkit-scrollbar {
  background: #efefee;
  width: 3px;
  height: 3px;
}
.voice_block .item_text::-webkit-scrollbar-thumb {
  background-color: #00AAE8;
  width: 3px;
  border-radius: 10px;
}
.voice_block .navigation_box {
  width: 100%;
  height: 100px;
  position: absolute;
  top: calc((100% - 100px) / 2);
  left: 0;
}
.voice_block .swiper-button-next,
.voice_block .swiper-button-prev {
  width: 50px;
  height: 100px;
  padding: 0;
  margin: 0;
  top: 0;
}
.voice_block .swiper-button-prev {
  left: 0;
}
.voice_block .swiper-button-next {
  right: 0;
}
.voice_block .swiper-button-next:after,
.voice_block .swiper-button-prev:after {
  content: "";
  width: 50px;
  height: 100px;
  background: url(../images/ms/ico_voice_slider.svg) no-repeat center/100% auto;
}
.voice_block .swiper-button-prev:after {
  transform: scale(-1);
}

.flow_block {
  margin-top: 42px;
}
.flow_block .title_block {
  width: 44.358974359%;
  margin: auto;
}
.flow_block .flow_contents {
  margin-top: 16px;
  padding: 0 18px;
}
.flow_block .flow_contents .flow_step {
  background-color: #fff;
  border: solid 2px #00AAE8;
  border-radius: 16px;
  padding: 18px 16px 22px;
  position: relative;
}
.flow_block .flow_contents .flow_step::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-color: #D4F2FD;
  position: absolute;
  right: -8px;
  top: 8px;
  z-index: -1;
}
.flow_block .flow_cta .lead {
  width: 93.4844192635%;
  margin: 36px auto 0;
}
.flow_block .flow_cta .search_btn {
  display: block;
  width: min(96.3172804533%, 340px);
  margin: 24px auto 0;
}

.faq_block {
  margin-top: 62px;
  padding-bottom: 58px;
}
.faq_block .title_block {
  width: 49.4871794872%;
  margin: auto;
}
.faq_block .faq_contents {
  padding: 0 10px;
}
.faq_block .faq_contents details {
  background-color: #fff;
  border: solid 2px #00AAE8;
  border-radius: 16px;
  padding: 18px 16px 22px;
  position: relative;
  margin-top: 20px;
}
.faq_block .faq_contents details summary {
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.faq_block .faq_contents details summary::-webkit-details-marker {
  display: none;
}
.faq_block .faq_contents details summary .ico_q {
  display: block;
  width: 20px;
  height: 15px;
  position: relative;
  top: 4px;
  margin-right: 8px;
}
.faq_block .faq_contents details summary .ico_q img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.faq_block .faq_contents details summary::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/ms/ico_acd_open.svg) no-repeat center/100% auto;
  position: absolute;
  right: 16px;
  top: calc((100% - 14px) / 2);
}
.faq_block .faq_contents details summary .inner_txt {
  width: calc(100% - 28px);
  padding-right: 40px;
}
.faq_block .faq_contents details .a_text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  position: relative;
  z-index: 0;
}
.faq_block .faq_contents details .a_text .ico_a {
  display: block;
  width: 20px;
  aspect-ratio: 20/15;
  position: relative;
  top: 4px;
  margin-right: 8px;
}
.faq_block .faq_contents details .a_text .ico_a img {
  width: 100%;
  height: auto;
}
.faq_block .faq_contents details .a_text .inner_txt {
  font-size: 14px;
  font-weight: 400;
  width: calc(100% - 28px);
}
.faq_block .faq_contents details[open] summary::after {
  background: url(../images/ms/ico_acd_close.svg) no-repeat center/100% auto;
}
.faq_block .faq_cta .lead {
  width: 76.9230769231%;
  margin: 24px auto 0;
}
.faq_block .faq_cta .contact_btn {
  display: block;
  width: 87.1794871795%;
  margin: 28px auto 0;
}
.faq_block .faq_cta .caption {
  width: 80.7692307692%;
  margin: 20px auto 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

/* popup */
.modal_contents {
  position: relative;
  z-index: 1;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
}

.modal__container {
  width: 92.3076923077%;
  max-width: 900px;
  max-height: 90vh;
  border: solid 2px #00AAE8;
  background-color: #fff;
  padding: 52px 16px 32px;
  border-radius: 16px;
  overflow-y: auto;
  position: relative;
  z-index: 0;
  overflow: visible;
}

.modal__content {
  width: 100%;
  height: auto;
}
.modal__content img {
  width: 100%;
  height: auto;
}

.modal__btn {
  display: block;
  width: 20.5128205128vw;
  max-width: 80px;
  cursor: pointer;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background-color: transparent;
  margin: 8px auto 0;
}
.modal__btn img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.modal__close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  position: absolute;
  top: -15px;
  right: -8px;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media screen and (min-width: 768px) {
  body {
    font-family: YuGothic, "Yu Gothic", "Yu Gothic UI", sans-serif;
  }
  body .sp {
    display: none;
  }
  body .pc {
    display: block;
  }
  header {
    height: 80px;
    padding: 0;
  }
  header .header_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 139px;
  }
  header .logo_block {
    width: min(11.5vw, 184px);
    margin-right: 12px;
  }
  header .pc_menu {
    display: flex;
    align-items: center;
    gap: 45px;
  }
  header .pc_menu ul {
    display: flex;
  }
  header .pc_menu ul li a {
    font-size: 1.25vw;
    color: #fff;
  }
  header .pc_menu dl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 38px;
  }
  header .pc_menu dl dt {
    font-size: 1.25vw;
    color: #fff;
  }
  header .pc_menu dl dd {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  header .pc_menu dl dd a {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
  }
  header .pc_menu dl dd a img {
    width: 24px;
    height: auto;
    aspect-ratio: 1/1;
  }
  header .pc_menu dl dd a + a {
    margin-left: 20px;
  }
  header .pc_menu dl dd a.line {
    padding-right: 20px;
    border-right: solid 1px #fff;
  }
  header .pc_menu dl dd a.line img {
    width: 34px;
  }
  header .open_btn {
    width: 93px;
    height: 93px;
  }
  header .open_btn span {
    width: 30px;
  }
  header .open_btn span::before, header .open_btn span::after {
    width: 30px;
  }
  .navigation_block {
    top: 80px;
  }
  .navigation_block.is_open {
    right: 0;
  }
  .navigation_block nav {
    width: min(22.375vw, 420px);
    max-height: 420px;
    padding: 20px 32px;
    position: absolute;
    right: 0;
    min-width: 320px;
  }
  .fixed_reservation {
    width: 200px;
    height: 200px;
    right: 5px;
    bottom: 5px;
  }
  footer {
    padding: 40px 240px 24px 40px;
    background: linear-gradient(180deg, rgb(0, 170, 232) 0%, rgb(82, 192, 235) 100%);
    color: #fff;
    position: relative;
    z-index: 0;
  }
  footer .logo {
    width: 220px;
    height: 58px;
    margin: 0;
  }
  footer .logo img {
    width: 100%;
    height: auto;
  }
  footer .footer_links {
    margin: 0;
    position: relative;
    top: -60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .footer_links .social_media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    padding-top: 82px;
    margin: 0;
  }
  footer .footer_links .social_media dt {
    font-size: 20px;
  }
  footer .footer_links .link_lists {
    margin-top: 0;
  }
  footer .copyright {
    margin-top: -94px;
    text-align: right;
  }
  .ms_container {
    padding-top: 80px;
  }
  .modal__btn {
    width: 12.5vw;
    max-width: 200px;
    margin-top: 12px;
  }
  .modal__close {
    width: 80px;
    height: 80px;
    top: -40px;
    right: -40px;
  }
  .modal__container {
    width: min(58vw, 928px);
  }
  .ms_contens_wrap {
    position: relative;
    z-index: 0;
    margin: 87px 0 0;
    padding-top: 54px;
  }
  .ms_contens_wrap::before {
    background-image: url(../images/ms/bg_contents_wrap_pc.png);
  }
  .service_block .title_block {
    width: min(41.625vw, 666px);
    margin: auto;
  }
  .service_block .swiper {
    margin-top: 16px;
  }
  .service_block .service_cards {
    padding: 0 18px;
    margin-top: 54px;
    max-width: 1100px;
    margin: 54px auto 0;
  }
  .service_block .service_cards .service_card {
    border-radius: 50px;
    padding: 56px 100px 65px;
    position: relative;
  }
  .service_block .service_cards .service_card::after {
    right: -27px;
    top: 29px;
    border-radius: 50px;
  }
  .service_block .service_cards .num {
    width: 140px;
    height: 102px;
    position: absolute;
    left: -1px;
    top: -60px;
  }
  .service_block .service_cards .service_card.card02,
  .service_block .service_cards .service_card.card03 {
    margin-top: 142px;
  }
  .service_block .card01 .bnr {
    margin-top: 32px;
  }
  .service_block .card01 .sub {
    margin-top: 51px;
  }
  .voice_block {
    background: url(../images/ms/bg_content03_pc.jpg) no-repeat top center/cover;
    padding: 64px 0 124px;
    margin-top: 100px;
  }
  .voice_block .title_block {
    width: min(41.375vw, 662px);
    margin: auto;
  }
  .voice_block .voiceSwiper {
    margin: 44px auto 0;
  }
  .voice_block .swiper-slide {
    padding: clamp(84px, 12.5vw, 200px) 25px 32px;
  }
  .voice_block .item_image {
    top: -32px;
  }
  .voice_block .voice_ttl01 {
    width: min(76.25%, 305px);
  }
  .voice_block .voice_ttl02 {
    width: min(82.5%, 330px);
  }
  .voice_block .voice_ttl03 {
    width: min(89.5%, 358px);
  }
  .voice_block .voice_ttl04 {
    width: min(83.5%, 334px);
  }
  .voice_block .voice_ttl05 {
    width: min(76.5%, 306px);
  }
  .voice_block .voice_ttl06 {
    width: min(84%, 336px);
  }
  .voice_block .item_text {
    height: auto;
    aspect-ratio: 350/208;
  }
  .voice_block .navigation_box {
    width: 100%;
    height: 188px;
    position: absolute;
    top: calc((100% - 188px) / 2);
    left: 0;
  }
  .voice_block .swiper-button-next,
  .voice_block .swiper-button-prev {
    width: 118px;
    height: 188px;
    padding: 0;
    margin: 0;
    top: 0;
  }
  .voice_block .swiper-button-prev {
    left: 0;
  }
  .voice_block .swiper-button-next {
    right: 0;
  }
  .voice_block .swiper-button-next:after,
  .voice_block .swiper-button-prev:after {
    content: "";
    width: 118px;
    height: 188px;
    background: url(../images/ms/ico_voice_slider_pc.svg) no-repeat center/100% auto;
  }
  .voice_block .swiper-button-prev:after {
    transform: scale(-1);
  }
  .flow_block {
    margin-top: 102px;
  }
  .flow_block .title_block {
    width: 23.4375%;
  }
  .flow_block .flow_contents {
    margin-top: 33px;
    padding: 0 18px;
    box-sizing: initial;
  }
  .flow_block .flow_contents .flow_step {
    max-width: 1100px;
    margin: auto;
    border-radius: 50px;
    padding: 79px 56px 84px;
    position: relative;
  }
  .flow_block .flow_contents .flow_step::after {
    right: -27px;
    top: 29px;
    border-radius: 50px;
  }
  .flow_block .flow_cta .lead {
    width: min(62.5%, 1000px);
    margin: 55px auto 0;
  }
  .flow_block .flow_cta .search_btn {
    display: block;
    width: min(50.625%, 810px);
    margin: 47px auto 0;
  }
  .faq_block {
    margin-top: 180px;
    padding-bottom: 103px;
  }
  .faq_block .title_block {
    width: min(24.0625%, 385px);
    margin: auto;
  }
  .faq_block .faq_contents {
    padding: 0 10px;
  }
  .faq_block .faq_contents details {
    border-radius: 50px;
    padding: 30px 75px 30px 56px;
    max-width: 1100px;
    margin: 30px auto 0;
  }
  .faq_block .faq_contents details summary {
    font-size: 24px;
    font-weight: 600;
  }
  .faq_block .faq_contents details summary .ico_q {
    width: 39px;
    height: 28px;
    margin-right: 24px;
    position: relative;
    top: 4px;
  }
  .faq_block .faq_contents details summary::after {
    width: 20px;
    height: 20px;
    right: -24px;
  }
  .faq_block .faq_contents details .a_text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }
  .faq_block .faq_contents details .a_text .ico_a {
    width: 39px;
    aspect-ratio: 39/30;
    margin-right: 24px;
  }
  .faq_block .faq_contents details .a_text .inner_txt {
    font-size: 20px;
    font-weight: 400;
  }
  .faq_block .faq_contents details .inner_txt {
    width: calc(100% - 63px);
  }
  .faq_block .faq_cta .lead {
    width: min(51.125%, 818px);
    margin: 76px auto 0;
  }
  .faq_block .faq_cta .contact_btn {
    display: block;
    width: min(50.625%, 810px);
    margin: 62px auto 0;
  }
  .faq_block .faq_cta .caption {
    width: min(38.75%, 620px);
    margin: 30px auto 0;
    font-size: 16px;
  }
}

@media screen and (min-width: 1300px) {
  .voice_block {
    background: url(../images/ms/bg_content03_pc.jpg) no-repeat top center/cover;
    padding: 64px 0 124px;
    margin-top: 100px;
  }
  .voice_block .voiceSwiper {
    margin: 44px auto 0;
    max-width: 1300px;
    overflow: visible;
  }
  .voice_block .swiper-wrapper {
    max-width: 1300px;
    margin: auto;
  }
  .voice_block .navigation_box {
    width: 100vw;
    position: absolute;
    top: calc((100% - 188px) / 2);
    left: calc((-100vw + 1300px) / 2);
  }
}

@media (min-width: 1080px) and (max-height: 890px) {
  .modal__container .modal_content {
    overflow-y: auto;
    height: 480px;
    padding: 0 20px;
  }
  .modal__container .modal_content::-webkit-scrollbar {
    background: #efefee;
    width: 3px;
    height: 3px;
  }
  .modal__container .modal_content::-webkit-scrollbar-thumb {
    background-color: #00AAE8;
    width: 3px;
    border-radius: 10px;
  }
}