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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
  outline: none;
  backface-visibility: hidden;
}

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

html {
  font-size: 10px;
  line-height: 1.6;
}

body {
  position: relative;
  color: #222;
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  opacity: 0;
  pointer-events: none;
}

.loaded .container {
  opacity: 1;
  transition: opacity 1s;
  pointer-events: auto;
}

main {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s;
}

a:hover {
  opacity: 0.5;
}

img {
  display: block;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  .-pc {
    display: none !important;
  }
}

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

.inview:not(.view) {
  opacity: 0.01;
}

.inview.view {
  opacity: 1;
  animation: view 0.5s backwards;
}

@keyframes view {
  0% {
    opacity: 0.01;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inview2:not(.view) {
  opacity: 0.01;
  transition: opacity 0.25s;
}

.inview2.view {
  opacity: 1;
  transition: opacity 0.25s;
}

.inviews:not(.view) > * {
  opacity: 0.01;
}

.inviews.view > * {
  opacity: 1;
  animation: views 0.5s backwards;
}

@keyframes views {
  0% {
    opacity: 0.01;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inviewParent {
  position: relative;
}

.inviewTrigger {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  pointer-events: none;
}

@media only screen and (min-width: 769px) {
  .inviewTrigger {
    top: 40%;
  }
}

.inviewChild:not(.view) {
  opacity: 0.001;
  transition: opacity 0.25s;
}

.inviewChild.view {
  opacity: 1;
  transition: opacity 0.25s;
}

.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
}

.floating__cont {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  height: 120px;
}

@media only screen and (max-width: 768px) {
  .floating__cont {
    -moz-column-gap: min((20 / 750 * 100vw), 20px);
         column-gap: min((20 / 750 * 100vw), 20px);
    height: min((150 / 750 * 100vw), 150px);
  }
}

.floating__cont > a {
  display: block;
  width: 380px;
}

@media only screen and (max-width: 768px) {
  .floating__cont > a {
    width: min((335 / 750 * 100vw), 335px);
  }
}

@media screen and (min-width: 769px) {
  #footer {
    width: 100%;
    /* margin: 40px 0 0 0; */
    padding-bottom: 120px;
  }
  #ft_inner01 {
    position: relative;
    width: 960px;
    margin: 0 auto;
    text-align: left;
  }
  #ft_copyright {
    padding: 16px 0 16px 0;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 63%;
    text-align: center;
    background: #3eabdd;
    min-width: 960px;
  }
  .ft_address01 {
    padding: 40px 0 40px 0;
    overflow: hidden;
  }
  .ft_address01 p {
    float: left;
    width: 150px;
    margin: 0 20px 0 0;
  }
  .ft_address01 dl {
    height: 122px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ft_address01 dl dt {
    color: #0054ae;
    font-weight: bold;
    font-size: 90%;
  }
  .ft_address01 dl dd {
    margin: 10px 0 0 0;
    font-size: 70%;
  }
  #footer .footer_inner {
    position: relative;
    width: 960px;
    padding: 0;
    margin: 0 auto;
    text-align: left;
  }
  #footer .container02 {
    /* padding: 40px 0; */
    position: relative;
  }
  #footer .container02 .container_area01 {
    float: left;
    width: 150px;
    margin: 0 20px 0 0;
  }
  #footer .container02 .container_area01 img {
    width: 100%;
  }
  #footer .container02 .container_area02 {
    height: 122px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 40px;
  }
  #footer .footer_copy {
    color: #0054ae;
    font-weight: bold;
    font-size: 18px;
  }
  .footer_cont {
    background: #3eabdd;
  }
  .footer_copy01 {
    padding: 16px 0 16px 0;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    min-width: 960px;
  }
  .footer_list {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 150px;
         column-gap: 150px;
    padding-top: 15px;
  }
  .footer_list li {
    color: #ffffff;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  footer {
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-align: left;
    line-height: 1.5;
    padding-bottom: min((150 / 750 * 100vw), 150px);
  }
  footer .footer_inner {
    padding: 0 3.126% 0 3.126%;
  }
  footer .container02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: no-wrap;
    /* width: 100%; */
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: 0.03em;
  }
  footer .footer_copy01 {
    padding: 15px 0 15px 0;
    color: #ffffff;
    text-align: center;
  }
  footer .container02 .container_area01 {
    width: 40%;
  }
  footer .container02 .container_area02 {
    width: 60%;
    margin: 0.5% 0 0 2%;
    text-align: left;
  }
  .footer_cont {
    background: #179fdd;
  }
  footer .footer_copy {
    margin: 0 0 3.6505% 0;
    color: #0b56ab;
    font-weight: bold;
    font-size: 1.2rem;
  }
  .footer_list {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding-top: 15px;
    margin: 15px 0 0 0;
  }
  .footer_list li {
    color: #ffffff;
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    border-bottom-width: min((10 / 750 * 100vw), 10px);
    border-bottom-style: solid;
    border-bottom-color: #0054ae;
  }
}

.header__inner {
  height: min((90 / 1920 * 100vw), 90px);
  display: flex;
  align-items: center;
  padding-left: min((40 / 1920 * 100vw), 40px);
  padding-right: min((40 / 1920 * 100vw), 40px);
}

@media only screen and (max-width: 768px) {
  .header__inner {
    height: min((90 / 750 * 100vw), 90px);
    padding-left: min((30 / 750 * 100vw), 30px);
    padding-right: min((30 / 750 * 100vw), 30px);
  }
}

.header__logo {
  max-width: min((468 / 1920 * 100vw), 468px);
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .header__logo {
    max-width: min((475 / 750 * 100vw), 475px);
  }
}

.header__logo img {
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.cta_wrap {
  text-align: center;
  line-height: 1.5;
}

.cta_title {
  font-weight: 600;
  color: #266ab4;
}

@media screen and (min-width: 769px) {
  .cta_wrap {
    width: 1040px;
    margin: 80px auto 40px;
  }
  .cta_title {
    font-size: 38px;
    padding: 20px 0;
    margin: 0 0 50px;
    border: 6px solid #266ab4;
    border-style: solid none;
  }
}

@media screen and (max-width: 768px) {
  .cta_wrap {
    max-width: 640px;
    margin: 40px auto 40px;
    padding: 0 3.126%;
    text-align: center;
  }
  .cta_title {
    font-size: 1.5rem;
    padding: 10px 0;
    margin: 0 0 20px;
    border: 4px solid #266ab4;
    border-style: solid none;
  }
}

.select_wrap {
  background-color: #d8e9f8;
}

/* .select_wrap:last-child {
	margin: 0;
} */
.select_head .select_head_main {
  font-weight: 600;
  color: #266ab4;
  border-bottom: 1px solid #266ab4;
}

.select_head .select_head_main img {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .select_wrap {
    padding: 40px;
    margin: 0 0 40px;
  }
  .select_wrap .select_head {
    margin: 0 0 20px;
  }
  .select_head .select_head_main {
    font-size: 36px;
    padding: 0 0 20px;
    margin: 0 0 30px;
  }
  .select_head .select_head_sub {
    font-size: 24px;
  }
  .select_wrap .select_note {
    font-size: 14px;
    margin: 20px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .select_wrap {
    padding: 20px 3.126%;
    margin: 0 0 40px;
  }
  .select_wrap .select_head {
    margin: 0 0 15px;
  }
  .select_head .select_head_main {
    font-size: 2rem;
    padding: 0 0 5px;
    margin: 0 0 10px;
  }
  .select_head .select_head_main img {
    width: 135px;
    height: auto;
  }
  .select_head .select_head_sub {
    font-size: 1rem;
  }
  .select_wrap .select_note {
    font-size: 1rem;
    margin: 15px 0 0;
  }
}

.select .tgl {
  display: flex;
  background-color: #fff;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .select .tgl {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl + .tgl {
    margin-top: 5px;
  }
}

.select .tgl + .tgl .tgl-box {
  border-top: 1px solid #0062b1;
}

@media screen and (max-width: 768px) {
  .select .tgl + .tgl .tgl-box {
    border: none;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl.hokkaido .tgl-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl.hokkaido .tgl-box {
    display: block;
    background-color: #d8e9f8;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl.hokkaido .tgl-box .tgl-child {
    padding: 0;
  }
}

.select .tgl.hokkaido .tgl-box .tgl-child li {
  width: 100%;
  padding: 0;
}

.select .tgl.hokkaido .tgl-box a {
  position: relative;
}

@media screen and (max-width: 768px) {
  .select .tgl.hokkaido .tgl-box a {
    padding: 10px 0;
    font-size: 1.5rem;
    color: #000;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl.hokkaido .tgl-box a::after {
    content: '';
    border-top: 2px solid #000;
  }
}

.select .tgl-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 130px;
  background-color: #d8e9f8;
}

@media screen and (max-width: 768px) {
  .select .tgl-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 1.5rem;
    cursor: pointer;
  }
}

.select .tgl-btn .arrow {
  display: none;
}

@media screen and (max-width: 768px) {
  .select .tgl-btn .arrow {
    border-bottom: 2px solid #000;
  }
}

.select .tgl-btn .arrow.open {
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .select .tgl-btn .arrow,
  .select .tgl.hokkaido .tgl-box a::after {
    display: block;
    position: absolute;
    top: 38%;
    right: 4%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    transform: rotate(45deg);
  }
}

.select .tgl-box {
  width: 100%;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .select .tgl-box {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl-box {
    display: none;
  }
}

.select .tgl-box .tgl-child {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px 20px;
}

@media screen and (max-width: 768px) {
  .select .tgl-box .tgl-child {
    padding: 16px;
  }
}

.select .tgl-box .tgl-child a {
  color: #266ab4;
}

@media screen and (max-width: 768px) {
  .select .tgl-box .tgl-child a {
    font-size: 4.26667vw;
  }
}

.select .tgl-box .tgl-child li {
  /* width: 74px; */
  margin-right: 1em;
}

@media screen and (max-width: 768px) {
  .select .tgl-box .tgl-child li {
    width: 33%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .select .tgl-box .tgl-child li:nth-child(n+4) {
    margin-top: 16px;
  }
}

.select .tgl-box .tgl-child li:last-child {
  margin-right: 0;
}

/* .select-top {
  display: none;
} */
.select-top .tx {
  padding: 20px 0 30px;
  font-size: 2rem;
  text-align: center;
}

.select-top .tgl + .tgl .tgl-btn {
  border-top: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .select-top .tgl + .tgl .tgl-btn {
    border: none;
  }
}

@media screen and (max-width: 768px) {
  .select-top .tgl.hokkaido .tgl-box {
    background-color: #266ab4;
  }
}

@media screen and (max-width: 768px) {
  .select-top .tgl.hokkaido .tgl-box a {
    display: block;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .select-top .tgl.hokkaido .tgl-box a::after {
    border-color: #fff;
  }
}

.select-top .tgl-btn {
  background-color: #266ab4;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .select-top .tgl-btn .arrow {
    border-color: #fff;
  }
}

.select-bottom {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .select-bottom {
    padding-bottom: 0;
    background: #ecf7fd url(../img/r_bg_img01.jpg) left bottom no-repeat;
    background-size: 100%;
  }
}

.select-bottom .sb-wrap {
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .select-bottom .sb-wrap {
    background: url(../img/r_bg_img02.png) 0 0 no-repeat;
    background-size: 100%;
  }
}

.select-bottom .inner {
  position: relative;
  padding: 100px 50px 68px;
  margin: 0 auto;
  max-width: 1184px;
  background: #ecf4fc;
}

@media screen and (max-width: 768px) {
  .select-bottom .inner {
    padding: 120px 0 100px;
    background: transparent;
  }
}

.select-bottom .heading {
  display: none;
}

@media screen and (max-width: 768px) {
  .select-bottom .heading {
    display: block;
    padding-bottom: 25px;
    color: #0062b1;
    text-align: center;
  }
}

.select-bottom .tgl + .tgl .tgl-btn {
  border-top: 1px solid #0062b1;
}

@media screen and (max-width: 768px) {
  .select-bottom .tgl + .tgl .tgl-btn {
    border: none;
  }
}

.select-bottom .tgl-wrap {
  display: none;
}

@media screen and (max-width: 768px) {
  .select-bottom .tgl-wrap {
    display: block;
  }
}

.select-bottom .note {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .select-bottom .note {
    text-align: left;
  }
}

.select-bottom .note span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .select-bottom .note span {
    padding: 3px 10px;
    background-color: #fff;
  }
}

/* CTAボタン */
.cta_btn a {
  display: block;
}

.cta_btn a:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  .cta_btn_wrap {
    position: fixed;
    top: 90px;
    right: 0;
    z-index: 10;
  }
  .cta_btn {
    margin: 0 0 10px;
  }
  .cta_btn:last-child {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .cta_btn_wrap {
    position: fixed;
    width: 100%;
    height: 65px;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #d8e9f8;
    padding: 0 5px;
  }
  .cta_btn {
    margin: 0 5px 0 0;
  }
  .cta_btn:last-child {
    margin: 0;
  }
  .cta_btn img {
    width: auto;
    max-height: 55px;
  }
}

.cta02 {
  padding-top: min((50 / 960 * 100vw), 50px);
  padding-bottom: min((50 / 960 * 100vw), 50px);
}

@media only screen and (max-width: 768px) {
  .cta02 {
    padding-top: min((70 / 750 * 100vw), 70px);
    padding-bottom: min((70 / 750 * 100vw), 70px);
  }
}

.cta02__cont {
  width: min((650 / 960 * 100vw), 650px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .cta02__cont {
    width: min((640 / 750 * 100vw), 640px);
  }
}

.cta02__cont a {
  display: block;
}

.cta02__cont a + a {
  margin-top: min((40 / 960 * 100vw), 40px);
}

@media only screen and (max-width: 768px) {
  .cta02__cont a + a {
    margin-top: min((40 / 750 * 100vw), 40px);
  }
}

.feature__cont {
  background-color: #e6f6ff;
  padding-top: min((50 / 960 * 100vw), 50px);
  padding-bottom: min((50 / 960 * 100vw), 50px);
}

@media only screen and (max-width: 768px) {
  .feature__cont {
    padding-top: min((70 / 750 * 100vw), 70px);
    padding-bottom: min((70 / 750 * 100vw), 70px);
  }
}

.feature__title {
  width: min((710 / 960 * 100vw), 710px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .feature__title {
    width: min((645 / 750 * 100vw), 645px);
  }
}

.feature ul {
  margin-top: min((30 / 960 * 100vw), 30px);
}

@media only screen and (max-width: 768px) {
  .feature ul {
    margin-top: min((40 / 750 * 100vw), 40px);
  }
}

.feature ul li {
  width: min((892 / 960 * 100vw), 892px);
}

@media only screen and (max-width: 768px) {
  .feature ul li {
    width: min((735 / 750 * 100vw), 735px);
  }
}

.feature ul li:nth-of-type(even) {
  margin-left: auto;
}

.feature ul li + li {
  margin-top: min((30 / 960 * 100vw), 30px);
}

@media only screen and (max-width: 768px) {
  .feature ul li + li {
    margin-top: min((40 / 750 * 100vw), 40px);
  }
}

.question {
  margin-top: -120px;
}

@media only screen and (max-width: 768px) {
  .question {
    margin-top: max((-325 / 960 * 100vw), -325px);
  }
}

.question__cont {
  position: relative;
  background-image: url(../img/bg_question.webp), linear-gradient(to bottom, transparent 0%, transparent 30%, #025aa3 30%, #025aa3 100%);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: min((65 / 960 * 100vw), 65px);
  padding-bottom: min((80 / 960 * 100vw), 80px);
}

@media only screen and (max-width: 768px) {
  .question__cont {
    background-image: url(../img/bg_question-sp.webp), linear-gradient(to bottom, transparent 0%, transparent 30%, #025aa3 30%, #025aa3 100%);
  }
}

.question__cont::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: inline-block;
  height: min((52 / 960 * 100vw), 52px);
  aspect-ratio: 271 / 104;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #025aa3;
  transform: translateX(-50%);
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .question__cont::after {
    height: min((52 / 750 * 100vw), 52px);
  }
}

.question__title img {
  width: min((634 / 960 * 100vw), 634px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .question__title img {
    width: min((699 / 750 * 100vw), 699px);
  }
}

.question__formCaption {
  width: min((672 / 960 * 100vw), 672px);
  margin-top: min((40 / 960 * 100vw), 40px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .question__formCaption {
    width: min((615 / 750 * 100vw), 615px);
    margin-top: min((60 / 750 * 100vw), 60px);
  }
}

.question__formDetail {
  margin-top: min((80 / 960 * 100vw), 80px);
}

@media only screen and (max-width: 768px) {
  .question__formDetail {
    margin-top: min((120 / 750 * 100vw), 120px);
  }
}

.question__formResult {
  margin-top: min((40 / 960 * 100vw), 40px);
}

@media only screen and (max-width: 768px) {
  .question__formResult {
    margin-top: min((60 / 750 * 100vw), 60px);
  }
}

.question__formResult .title {
  width: min((269 / 960 * 100vw), 269px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .question__formResult .title {
    width: min((337 / 750 * 100vw), 337px);
  }
}

.question__formResult .contents {
  width: min((837 / 960 * 100vw), 837px);
  margin-left: auto;
  margin-right: auto;
  margin-top: min((40 / 960 * 100vw), 40px);
}

@media only screen and (max-width: 768px) {
  .question__formResult .contents {
    width: min((727 / 750 * 100vw), 727px);
  }
}

.question__formResult .before {
  width: min((634 / 960 * 100vw), 634px);
  margin-left: auto;
  margin-right: auto;
  margin-top: min((40 / 960 * 100vw), 40px);
}

@media only screen and (max-width: 768px) {
  .question__formResult .before {
    width: min((559 / 750 * 100vw), 559px);
    margin-top: min((60 / 750 * 100vw), 60px);
  }
}

.questionArea {
  position: relative;
  width: min((800 / 960 * 100vw), 800px);
  background-color: #fff;
  border-radius: min((30 / 960 * 100vw), 30px);
  padding-top: min((60 / 960 * 100vw), 60px);
  padding-bottom: min((60 / 960 * 100vw), 60px);
  padding-left: min((45 / 960 * 100vw), 45px);
  padding-right: min((45 / 960 * 100vw), 45px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .questionArea {
    width: min((690 / 750 * 100vw), 690px);
    border-radius: min((30 / 750 * 100vw), 30px);
    padding-top: min((60 / 750 * 100vw), 60px);
    padding-bottom: min((60 / 750 * 100vw), 60px);
    padding-left: min((45 / 750 * 100vw), 45px);
    padding-right: min((45 / 750 * 100vw), 45px);
  }
}

.questionArea__num {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: min((100 / 960 * 100vw), 100px);
  height: min((100 / 960 * 100vw), 100px);
  transform: translate(-50%, 50%);
}

@media only screen and (max-width: 768px) {
  .questionArea__num {
    width: min((135 / 750 * 100vw), 135px);
    height: min((135 / 750 * 100vw), 135px);
  }
}

.questionArea__title {
  padding-top: min((35 / 960 * 100vw), 35px);
}

.questionArea__title > * {
  margin-left: auto;
  margin-right: auto;
}

.questionArea__title .title01 {
  width: min((712 / 960 * 100vw), 712px);
}

@media only screen and (max-width: 768px) {
  .questionArea__title .title01 {
    width: min((526 / 750 * 100vw), 526px);
  }
}

.questionArea__title .title02 {
  width: min((545 / 960 * 100vw), 545px);
}

@media only screen and (max-width: 768px) {
  .questionArea__title .title02 {
    width: min((503 / 750 * 100vw), 503px);
  }
}

.questionArea__title .title03 {
  width: min((467 / 960 * 100vw), 467px);
}

@media only screen and (max-width: 768px) {
  .questionArea__title .title03 {
    width: min((632 / 750 * 100vw), 632px);
  }
}

.questionArea__faq {
  width: min((610 / 960 * 100vw), 610px);
  margin-left: auto;
  margin-right: auto;
  margin-top: min((35 / 960 * 100vw), 35px);
}

@media only screen and (max-width: 768px) {
  .questionArea__faq {
    width: min((600 / 750 * 100vw), 600px);
    margin-top: min((40 / 750 * 100vw), 40px);
  }
}

.questionArea__faq ul li {
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.questionArea__faq ul li + li {
  margin-top: min((20 / 960 * 100vw), 20px);
}

@media only screen and (max-width: 768px) {
  .questionArea__faq ul li + li {
    margin-top: min((20 / 750 * 100vw), 20px);
  }
}

.questionArea__faq ul li:hover {
  opacity: 0.5;
}

.result__cont {
  background-color: #fffded;
  padding-top: min((90 / 960 * 100vw), 90px);
  padding-bottom: min((90 / 960 * 100vw), 90px);
}

.result__none {
  width: min((850 / 960 * 100vw), 850px);
  margin-left: auto;
  margin-right: auto;
}

.result__detail {
  width: min((800 / 960 * 100vw), 800px);
  margin-left: auto;
  margin-right: auto;
  margin-top: min((50 / 960 * 100vw), 50px);
}

@media only screen and (max-width: 768px) {
  .result__detail {
    width: 100%;
    padding-left: min((30 / 750 * 100vw), 30px);
    padding-right: min((30 / 750 * 100vw), 30px);
  }
}

.result__detailHosyo > *, .result__detailTokuyaku > * {
  position: relative;
  background-color: #fff;
  padding-top: min((85 / 960 * 100vw), 85px);
  padding-bottom: min((55 / 960 * 100vw), 55px);
  padding-left: min((120 / 960 * 100vw), 120px);
  padding-right: min((120 / 960 * 100vw), 120px);
  border-width: min((8 / 960 * 100vw), 8px);
  border-radius: min((30 / 960 * 100vw), 30px);
  border-style: solid;
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo > *, .result__detailTokuyaku > * {
    border-width: min((8 / 750 * 100vw), 8px);
    padding-top: min((105 / 750 * 100vw), 105px);
    padding-left: min((25 / 750 * 100vw), 25px);
    padding-right: min((25 / 750 * 100vw), 25px);
    padding-bottom: min((65 / 750 * 100vw), 65px);
  }
}

.result__detailHosyo .title, .result__detailTokuyaku .title {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: auto;
  height: min((84 / 960 * 100vw), 84px);
  margin-left: auto;
  margin-right: auto;
  transform: translate(-50%, 50%);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .title, .result__detailTokuyaku .title {
    height: min((105 / 750 * 100vw), 105px);
  }
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .title.title02, .result__detailTokuyaku .title.title02 {
    height: min((161 / 750 * 100vw), 161px);
  }
}

.result__detailHosyo .title img, .result__detailTokuyaku .title img {
  width: auto;
  height: 100%;
}

.result__detailHosyo .contents, .result__detailTokuyaku .contents {
  border-radius: min((23 / 960 * 100vw), 23px);
  margin-top: min((30 / 960 * 100vw), 30px);
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents, .result__detailTokuyaku .contents {
    border-radius: min((32 / 750 * 100vw), 32px);
    margin-top: min((50 / 750 * 100vw), 50px);
  }
}

.result__detailHosyo .contents__title, .result__detailTokuyaku .contents__title {
  position: relative;
  color: #fff;
  font-size: min((25 / 960 * 100vw), 25px);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: min((10 / 960 * 100vw), 10px);
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__title, .result__detailTokuyaku .contents__title {
    font-size: min((32 / 750 * 100vw), 32px);
    padding: min((15 / 750 * 100vw), 15px);
  }
}

.result__detailHosyo .contents__title::after, .result__detailTokuyaku .contents__title::after {
  content: '';
  position: absolute;
  top: 45%;
  right: min((50 / 960 * 100vw), 50px);
  display: inline-block;
  width: min((13 / 960 * 100vw), 13px);
  aspect-ratio: 1 / 1;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__title::after, .result__detailTokuyaku .contents__title::after {
    width: min((18 / 750 * 100vw), 18px);
  }
}

.result__detailHosyo .contents__title.active::after, .result__detailTokuyaku .contents__title.active::after {
  top: 60%;
  transform: translateY(-50%) rotate(-135deg);
}

.result__detailHosyo .contents__detail, .result__detailTokuyaku .contents__detail {
  display: none;
  padding-top: min((25 / 960 * 100vw), 25px);
  padding-bottom: min((35 / 960 * 100vw), 35px);
  padding-left: min((27 / 960 * 100vw), 27px);
  padding-right: min((27 / 960 * 100vw), 27px);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail, .result__detailTokuyaku .contents__detail {
    padding-top: min((30 / 750 * 100vw), 30px);
    padding-bottom: min((30 / 750 * 100vw), 30px);
    padding-left: min((28 / 750 * 100vw), 28px);
    padding-right: min((28 / 750 * 100vw), 28px);
  }
}

.result__detailHosyo .contents__detail .fee, .result__detailTokuyaku .contents__detail .fee {
  width: auto;
  height: min((35 / 960 * 100vw), 35px);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .fee, .result__detailTokuyaku .contents__detail .fee {
    height: min((40 / 750 * 100vw), 40px);
  }
}

.result__detailHosyo .contents__detail .tabCont, .result__detailTokuyaku .contents__detail .tabCont {
  margin-top: min((20 / 960 * 100vw), 20px);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .tabCont, .result__detailTokuyaku .contents__detail .tabCont {
    margin-top: min((20 / 750 * 100vw), 20px);
  }
}

.result__detailHosyo .contents__detail .tabCont__tab, .result__detailTokuyaku .contents__detail .tabCont__tab {
  display: flex;
}

.result__detailHosyo .contents__detail .tabCont__tab > *, .result__detailTokuyaku .contents__detail .tabCont__tab > * {
  flex: 1;
  text-align: center;
  font-size: min((33 / 960 * 100vw), 33px);
  font-weight: bold;
  line-height: 1;
  border-top-left-radius: min((15 / 960 * 100vw), 15px);
  border-top-right-radius: min((15 / 960 * 100vw), 15px);
  padding: min((10 / 960 * 100vw), 10px);
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .tabCont__tab > *, .result__detailTokuyaku .contents__detail .tabCont__tab > * {
    font-size: min((36 / 750 * 100vw), 36px);
    padding: min((15 / 750 * 100vw), 15px);
    border-top-left-radius: min((15 / 750 * 100vw), 15px);
    border-top-right-radius: min((15 / 750 * 100vw), 15px);
  }
}

.result__detailHosyo .contents__detail .tabCont__tab > * span, .result__detailTokuyaku .contents__detail .tabCont__tab > * span {
  font-size: min((25 / 960 * 100vw), 25px);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .tabCont__tab > * span, .result__detailTokuyaku .contents__detail .tabCont__tab > * span {
    font-size: min((27 / 750 * 100vw), 27px);
  }
}

.result__detailHosyo .contents__detail .tabCont__cont > *, .result__detailTokuyaku .contents__detail .tabCont__cont > * {
  display: none;
}

.result__detailHosyo .contents__detail .tabCont__cont > *.active, .result__detailTokuyaku .contents__detail .tabCont__cont > *.active {
  display: block;
}

.result__detailHosyo .contents__detail .info01, .result__detailTokuyaku .contents__detail .info01 {
  color: #0062b1;
  font-size: min((23 / 960 * 100vw), 23px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  margin-top: min((20 / 960 * 100vw), 20px);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .info01, .result__detailTokuyaku .contents__detail .info01 {
    font-size: min((27 / 750 * 100vw), 27px);
  }
}

.result__detailHosyo .contents__detail .info02, .result__detailTokuyaku .contents__detail .info02 {
  font-size: min((13 / 960 * 100vw), 13px);
  letter-spacing: 0;
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .info02, .result__detailTokuyaku .contents__detail .info02 {
    font-size: min((15 / 750 * 100vw), 15px);
  }
}

.result__detailHosyo .contents__detail .info03, .result__detailTokuyaku .contents__detail .info03 {
  font-size: min((21 / 960 * 100vw), 21px);
  font-weight: bold;
  letter-spacing: 0;
  margin-top: min((20 / 960 * 100vw), 20px);
}

@media only screen and (max-width: 768px) {
  .result__detailHosyo .contents__detail .info03, .result__detailTokuyaku .contents__detail .info03 {
    font-size: min((23 / 750 * 100vw), 23px);
  }
}

.result__detailHosyo .contents.active .contents__title::after, .result__detailTokuyaku .contents.active .contents__title::after {
  transform: translateY(-50%) rotate(-135deg);
}

.result__detailHosyo > * {
  border-color: #0062b1;
}

.result__detailHosyo > * + * {
  margin-top: min((110 / 960 * 100vw), 110px);
}

.result__detailHosyo .contents__title {
  background-color: #0062b1;
}

.result__detailHosyo .contents__detail {
  background-color: #eaeffb;
}

.result__detailHosyo .contents__detail .tabCont__tab > * {
  color: #e0e9f3;
  background-color: #3381bd;
}

.result__detailHosyo .contents__detail .tabCont__tab > *.active {
  color: #fff;
  background-color: #0062b1;
}

.result__detailTokuyaku > * {
  border-color: #00a3d1;
  margin-top: min((150 / 960 * 100vw), 150px);
}

@media only screen and (max-width: 768px) {
  .result__detailTokuyaku > * {
    margin-top: min((204 / 750 * 100vw), 204px);
  }
}

.result__detailTokuyaku > *::before {
  content: '';
  position: absolute;
  top: max((-125 / 960 * 100vw), -125px);
  left: 50%;
  display: inline-block;
  width: min((60 / 960 * 100vw), 60px);
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon_resultPlus.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .result__detailTokuyaku > *::before {
    top: max((-165 / 750 * 100vw), -165px);
    width: min((75 / 750 * 100vw), 75px);
  }
}

.result__detailTokuyaku .contents__title {
  background-color: #00a3d1;
}

.result__detailTokuyaku .contents__detail {
  background-color: #e6f3f6;
}

.result__detailTokuyaku .contents__detail .tabCont__tab > * {
  color: #89cee5;
  background-color: #2eb3d8;
}

.result__detailTokuyaku .contents__detail .tabCont__tab > *.active {
  color: #fff;
  background-color: #00a3d1;
}

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