@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/**/
@font-face {
  src: url(../font/NotoSerifJP-Regular.woff) format("woff"), url(../font/NotoSerifJP-Medium.woff) format("woff"), url(../font/NotoSerifJP-SemiBold.woff) format("woff");
  font-family: "Noto Serif JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../font/Quattrocento-Regular.woff) format("woff");
  font-family: "Quattrocento";
  font-style: normal;
  font-display: swap;
}
/**/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #0E3659;
  line-height: 1.6;
  font-size: 2.9333333333vw;
  font-display: optional;
}
@media only screen and (min-width: 750px) {
  body {
    font-size: 16px;
  }
}

picture {
  display: block;
}

img {
  width: 100%;
}

.wrap {
  background: #F9F8F7;
  max-width: 750px;
  margin: 0 auto;
}

.inner {
  width: 100%;
  padding: 8vw 5.3333333333vw 10.6666666667vw 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .inner {
    padding: 60px 40px 80px 40px;
  }
}

/*------------------------------mixin フォント------------------------------*/
/**/
.bold {
  font-weight: 700;
}

.blue {
  color: #00a6b2;
}

.orange {
  color: #EB5E00;
}

.under_line {
  background: linear-gradient(transparent 60%, #e7fdff 60%);
}

/**/
h2 {
  text-align: center;
  letter-spacing: 0.1rem;
  color: #00a6b2;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  h2 {
    font-size: 40px;
  }
}
h2 span {
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  h2 span {
    font-size: 32px;
  }
}
h2 + .text {
  margin-top: 2em;
}

.text {
  line-height: 2;
  font-size: 2.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .text {
    font-size: 16px;
  }
}

/*------------------cta------------------*/
.cta {
  text-align: center;
}
.cta .cta_top {
  font-weight: 600;
  position: relative;
  z-index: 3;
  background: #fff;
  box-shadow: 0 0 8px rgba(51, 51, 51, 0.2);
  padding: 1em;
  border-radius: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .cta .cta_top {
    border-radius: 20px;
  }
}
.cta .cta_top .number {
  display: inline-block;
  margin: 0 2px;
  font-size: 150%;
}
.cta .cta_top .mark {
  position: absolute;
  content: "";
  font-size: 80%;
  top: 0.2em;
  right: 0.5em;
}
@media only screen and (min-width: 750px) {
  .cta .cta_top .mark {
    font-size: 60%;
    top: 0.5em;
    right: 1em;
  }
}
.cta .cta_top::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: 96%;
  width: 0;
  height: 0;
  border-left: 1.6vw solid transparent;
  border-right: 1.6vw solid transparent;
  border-top: 1.6vw solid #fff;
}
@media only screen and (min-width: 750px) {
  .cta .cta_top::after {
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #fff;
  }
}
.cta .cta_btn_wrap {
  overflow: hidden;
  position: relative;
  display: block;
  background: linear-gradient(to bottom, #EB8700 0%, #EB5E00 50%, #DB5800 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.25);
  padding: 0.6666666667vw;
  font-size: 4.8vw;
  margin-top: -0.4em;
}
@media only screen and (min-width: 750px) {
  .cta .cta_btn_wrap {
    padding: 5px;
    display: inline-block;
    font-size: 32px;
  }
}
.cta .cta_btn_wrap::after {
  z-index: 2;
  content: "";
  position: absolute;
  height: 100%;
  width: 4vw;
  background: #fff;
  animation: shine 4s ease-in-out infinite;
  top: -24vw;
  left: 0;
  opacity: 0;
  transform: rotate(45deg);
}
@media only screen and (min-width: 750px) {
  .cta .cta_btn_wrap::after {
    width: 30px;
    top: -180px;
  }
}
@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.15;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.3;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta a {
  white-space: nowrap;
  position: relative;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-align: center;
  display: block;
  background: linear-gradient(to top, #EB8700 0%, #EB5E00 50%, #DB5800 100%);
  border-radius: 10px;
  padding: 5.3333333333vw 0 4.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .cta a {
    padding: 30px 2em 30px;
    display: inline-block;
  }
}
.cta a::before {
  position: absolute;
  content: "";
  background: url(../img/cta_arrow.svg) no-repeat center/contain;
  top: 50%;
  right: 0.625em;
  transform: translateY(-50%);
  width: 1.6vw;
  height: 2.8vw;
}
@media only screen and (min-width: 750px) {
  .cta a::before {
    width: 12px;
    height: 21px;
  }
}
.cta a span {
  display: inline-block;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .cta a span {
    font-size: 20px;
  }
}
.cta a span.middle {
  font-size: 4vw;
}
@media only screen and (min-width: 750px) {
  .cta a span.middle {
    font-size: 28px;
  }
}
.cta a.three_lines {
  padding: 7.3333333333vw 0 4.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .cta a.three_lines {
    padding: 45px 2.5em 30px;
  }
}
.cta .note {
  margin-top: 0.8em;
}
@media only screen and (min-width: 750px) {
  .cta .note {
    font-size: 14px;
  }
}

/**/
.fv {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  background: url(../img/fv_image.webp) no-repeat top right -20px/contain;
  padding: 4vw 0 2.6666666667vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .fv {
    padding: 30px 0 20px;
  }
}
.fv::before {
  content: "PR";
  font-size: 2.6666666667vw;
  color: #888;
  padding: 0.4vw 2.6666666667vw;
  border: solid 1px #888;
  position: absolute;
  right: 2.6666666667vw;
  top: 2.6666666667vw;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (min-width: 750px) {
  .fv::before {
    font-size: 12px;
    right: 25px;
    top: 25px;
    padding: 3px 10px;
  }
}
.fv--sub_catch {
  font-weight: 500;
  margin-left: 4vw;
  margin-bottom: 0.25em;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .fv--sub_catch {
    margin-left: 30px;
    font-size: 24px;
  }
}
.fv--sub_catch span {
  font-size: 2.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .fv--sub_catch span {
    font-size: 16px;
  }
}
.fv--main_catch {
  margin-top: 0.8em;
}
.fv--main_catch p {
  color: #00a6b2;
  margin-left: 1.3333333333em;
  line-height: 2;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .fv--main_catch p {
    font-size: 24px;
  }
}
.fv--main_catch .back_line {
  background: #00a6b2;
  color: #fff;
  line-height: 1.2;
  display: inline-block;
  padding: 0.2em 1em 0.3em;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .fv--main_catch .back_line {
    font-size: 32px;
  }
}
.fv--main_catch .back_line .large {
  font-size: 6.4vw;
}
@media only screen and (min-width: 750px) {
  .fv--main_catch .back_line .large {
    font-size: 48px;
  }
}

/**/
.fv_cta_wrap {
  margin-top: 5.3333333333vw;
  padding: 0 4vw;
}
@media only screen and (min-width: 750px) {
  .fv_cta_wrap {
    margin-top: 50px;
    padding: 0 10px;
  }
}
.fv_cta_wrap .fv_btn {
  padding: 4.6666666667vw 0 3.2vw;
}
@media only screen and (min-width: 750px) {
  .fv_cta_wrap .fv_btn {
    padding: 30px 40px 20px;
  }
}
.fv_cta_wrap .fv_btn::before {
  right: 0.3em;
}
@media only screen and (min-width: 750px) {
  .fv_cta_wrap .fv_btn::before {
    right: 0.5em;
  }
}

/**/
.intro h2 {
  text-align: left;
}
.intro .right_side {
  margin-left: 4vw;
  margin-bottom: 2em;
}
@media only screen and (min-width: 750px) {
  .intro .right_side {
    margin-left: 30px;
  }
}
.intro .bottom_image {
  display: flex;
  width: calc(100% + 10.6666666667vw);
  margin-left: -5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .intro .bottom_image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
.intro .bottom_image figure {
  width: 50%;
  filter: drop-shadow(4px 4px 0px #CCEFF2);
}
.intro .bottom_image figure:first-child {
  filter: drop-shadow(-4px 4px 0px #CCEFF2);
}
.intro .bottom_image figure:last-child {
  margin-top: 12vw;
}
@media only screen and (min-width: 750px) {
  .intro .bottom_image figure:last-child {
    margin-top: 90px;
  }
}

/**/
.how_to_choose {
  background: #EBF9FA;
}
.how_to_choose .sub_heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}
.how_to_choose .top_three_points {
  margin: 1.6em 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc((100% - 2.9333333333vw) / 3), 1fr));
  column-gap: 1.4666666667vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .top_three_points {
    grid-template-columns: repeat(auto-fill, minmax(calc((100% - 22px) / 3), 1fr));
    column-gap: 11px;
  }
}
.how_to_choose .top_three_points li {
  text-align: center;
  background: #0E3659;
  color: #fff;
  font-size: 2.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .top_three_points li {
    font-size: 20px;
  }
}
.how_to_choose .top_three_points li a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 2.6666666667vw 0 3.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .top_three_points li a {
    padding: 20px 0 25px;
  }
}
.how_to_choose .top_three_points li .circle {
  display: flex;
  justify-content: center;
}
.how_to_choose .top_three_points li .circle span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px #fff solid;
  border-radius: 50%;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .top_three_points li .circle span {
    width: 50px;
    height: 50px;
  }
}
.how_to_choose .top_three_points li p {
  margin-top: 1em;
}
.how_to_choose .three_points {
  margin-top: 10.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .three_points {
    margin-top: 80px;
  }
}
.how_to_choose .three_points ul li .point_number {
  text-align: center;
  text-transform: uppercase;
}
.how_to_choose .three_points ul li .point_number p {
  border-right: 1px solid #0E3659;
  border-bottom: 1px solid #0E3659;
  background: #fff;
  display: inline-block;
  padding: 0.5em 1em;
  line-height: 1.3;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .three_points ul li .point_number p {
    font-size: 32px;
  }
}
.how_to_choose .three_points ul li .point_number p .en {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
}
.how_to_choose .three_points ul li .point_number p .ja {
  display: block;
  font-size: 2.1333333333vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .three_points ul li .point_number p .ja {
    font-size: 16px;
  }
}
.how_to_choose .three_points ul li h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 1em 0;
  font-size: 4vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .three_points ul li h3 {
    font-size: 24px;
  }
}
.how_to_choose .three_points ul li figure + .text {
  margin-top: 2em;
}
.how_to_choose .three_points ul li .text + .cta {
  margin-top: 8vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .three_points ul li .text + .cta {
    margin-top: 60px;
  }
}
.how_to_choose .three_points ul li + li {
  margin-top: 13.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .how_to_choose .three_points ul li + li {
    margin-top: 100px;
  }
}

/**/
.about h2 {
  color: #0E3659;
  margin-bottom: 0.5em;
}
.about h2 span {
  font-size: 2.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .about h2 span {
    font-size: 20px;
  }
}
.about h3 {
  text-align: center;
  margin-top: 2em;
}
.about h3 .heading_wrap {
  white-space: nowrap;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: #00a6b2;
  display: inline-block;
  padding: 0.5em 2em;
  letter-spacing: 0.08rem;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .about h3 .heading_wrap {
    font-size: 32px;
  }
}
.about h3 .heading_wrap span {
  font-size: 3.7333333333vw;
}
@media only screen and (min-width: 750px) {
  .about h3 .heading_wrap span {
    font-size: 24px;
  }
}
.about h3 .heading_wrap::before, .about h3 .heading_wrap::after {
  position: absolute;
  content: "";
  background: url(../img/about_heading.svg) no-repeat center/contain;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .about h3 .heading_wrap::before, .about h3 .heading_wrap::after {
    width: 20px;
    height: 20px;
  }
}
.about h3 .heading_wrap::before {
  top: 0;
  left: 0;
}
.about h3 .heading_wrap::after {
  transform: scale(-1, -1);
  bottom: 0;
  right: 0;
}
.about h3 + .text {
  margin-top: 2em;
}

/**/
.recommended {
  background: #fff;
}
.recommended .top_h2 {
  text-align: center;
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
  color: #00a6b2;
  white-space: nowrap;
  opacity: 0.4;
  letter-spacing: 0.035rem;
  margin-bottom: 0.5em;
}
.recommended h2 {
  position: relative;
  margin-bottom: 1.4em;
  color: #0E3659;
  z-index: 1;
  font-size: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .recommended h2 {
    font-size: 32px;
  }
}
.recommended h2 span {
  font-size: 3.7333333333vw;
}
@media only screen and (min-width: 750px) {
  .recommended h2 span {
    font-size: 24px;
  }
}
.recommended ul li .heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08rem;
  text-align: center;
  background: #0E3659;
  color: #fff;
  padding: 0.5em 1em 1em;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .recommended ul li .heading {
    font-size: 32px;
  }
}
.recommended ul li .heading h3 {
  letter-spacing: 0.08rem;
}
.recommended ul li .heading .recommended_point_number {
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  display: inline-block;
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 0.5em 0.2em;
  margin-bottom: 1em;
  border-bottom: solid 1px #fff;
  font-size: 2.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .recommended ul li .heading .recommended_point_number {
    font-size: 16px;
  }
}
.recommended ul li .text {
  background: #F9F8F7;
  border-left: solid 1px #0E3659;
  border-bottom: solid 1px #0E3659;
  border-right: solid 1px #0E3659;
  padding: 4vw 4vw 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .recommended ul li .text {
    padding: 30px 30px 40px;
  }
}
.recommended ul li .text .cta {
  line-height: 1.6;
  margin: 5.3333333333vw 0 0 0;
}
@media only screen and (min-width: 750px) {
  .recommended ul li .text .cta {
    margin: 40px 0 0 0;
  }
}
.recommended ul li:first-child .text p {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  align-items: center;
  margin-top: 2em;
  text-align: center;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .recommended ul li:first-child .text p {
    font-size: 18px;
  }
}
.recommended ul li:first-child .text p::before, .recommended ul li:first-child .text p::after {
  content: "";
  height: 1px;
  flex-grow: 1;
}
.recommended ul li:first-child .text p::before {
  background: linear-gradient(-90deg, #0E3659, transparent);
  margin-right: 1em;
}
.recommended ul li:first-child .text p::after {
  background: linear-gradient(90deg, #0E3659, transparent);
  margin-left: 1em;
}
.recommended ul li:first-child .text figure {
  margin: 0.5em 0 2em;
}
.recommended ul li:nth-child(4) .text figure {
  margin-top: 2em;
}
.recommended ul li + li {
  margin-top: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .recommended ul li + li {
    margin-top: 40px;
  }
}
.recommended ul .cta {
  margin: 8vw 0 6.6666666667vw 0;
}
@media only screen and (min-width: 750px) {
  .recommended ul .cta {
    margin: 60px 0 50px 0;
  }
}

.area_wrap {
  font-size: 2.6666666667vw;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .area_wrap {
    font-size: 20px;
  }
}
.area_wrap .accordion {
  text-align: center;
  font-weight: bold;
  margin-top: 2.6666666667vw;
  padding: 2.6666666667vw;
  background: #fff;
  cursor: pointer;
  position: relative;
  font-size: 3.4666666667vw;
  font-family: "Noto Serif JP", serif;
}
@media only screen and (min-width: 750px) {
  .area_wrap .accordion {
    margin-top: 10px;
    padding: 20px;
    font-size: 18px;
  }
}
.area_wrap .accordion::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_navy.svg) no-repeat center/contain;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
  right: 2.6666666667vw;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 750px) {
  .area_wrap .accordion::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
.area_wrap .accordion.top {
  margin-top: 0;
}
.area_wrap .accordion.accordion.open::after {
  transform: translateY(-50%) rotate(-90deg);
}
.area_wrap .accordion.accordion_2 {
  background: #F9F8F7;
  color: #0E3659;
  margin-top: 0;
  border-bottom: solid 0.2666666667vw #ddd;
}
@media only screen and (min-width: 750px) {
  .area_wrap .accordion.accordion_2 {
    border-bottom: solid 2px #ddd;
  }
}
.area_wrap .accordion.accordion_2::after {
  content: "";
  background: url(../img/arrow_navy.svg) no-repeat center/contain;
}
.area_wrap .box {
  display: none;
  padding: 0 4vw;
}
@media only screen and (min-width: 750px) {
  .area_wrap .box {
    padding: 0;
  }
}
.area_wrap .box.box_2 {
  padding: 2.6666666667vw 0;
}
@media only screen and (min-width: 750px) {
  .area_wrap .box.box_2 {
    padding: 20px 0;
  }
}
.area_wrap .box button {
  background: #00a6b2;
  color: #fff;
  font-size: 3.4666666667vw;
  width: 100%;
  padding: 2.6666666667vw 0;
  border-radius: 1.3333333333vw;
  border: none;
  text-align: center;
  position: relative;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .area_wrap .box button {
    font-size: 18px;
    padding: 20px 0;
    border-radius: 10px;
    width: calc((100% - 10px) / 2);
  }
}
.area_wrap .box button::before {
  content: "";
  background: url(../img/search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4vw;
  height: 4vw;
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 750px) {
  .area_wrap .box button::before {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.area_wrap .box button .small {
  font-size: 2.6666666667vw;
  color: #e7fdff;
}
@media only screen and (min-width: 750px) {
  .area_wrap .box button .small {
    font-size: 12px;
  }
}
.area_wrap .box .pc_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
@media only screen and (min-width: 750px) {
  .area_wrap .box .pc_flex {
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.area_wrap .box .note {
  font-size: 2.4vw;
  margin-top: 2.1333333333vw;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .area_wrap .box .note {
    font-size: 12px;
    margin-top: 10px;
  }
}
.area_wrap .table_wrap {
  display: none;
}
.area_wrap table {
  width: 100%;
  border-left: 1px solid #00a6b2;
}
.area_wrap table tr {
  border-bottom: 1px solid #0E3659;
}
.area_wrap table th {
  text-align: center;
  background: #e7fdff;
  border-right: 1px solid #0E3659;
  padding: 2.6666666667vw 0;
}
.area_wrap table th:first-child {
  width: 33%;
}
.area_wrap table th:nth-child(2) {
  width: 40%;
}
.area_wrap table th:last-child {
  width: 27%;
}
.area_wrap table td {
  background: #fff;
  border-right: 1px solid #0E3659;
  padding: 2.1333333333vw;
  line-height: 1.6;
}
@media only screen and (min-width: 750px) {
  .area_wrap table td {
    padding: 16px;
  }
}
.area_wrap table td a {
  position: relative;
  display: block;
  background: #EB5E00;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 0.5em 0;
  border-radius: 5px;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .area_wrap table td a {
    font-size: 24px;
  }
}
.area_wrap table td button {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 1.8666666667vw;
  text-decoration: underline;
}
@media only screen and (min-width: 750px) {
  .area_wrap table td button {
    font-size: 24px;
    margin-top: 14px;
  }
}
.area_wrap + .area_wrap {
  margin-top: 4vw;
}
@media only screen and (min-width: 750px) {
  .area_wrap + .area_wrap {
    margin-top: 30px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-box {
  background-color: #fff;
  top: 5.3333333333vw;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 8vw 5.3333333333vw;
  width: 93.3333333333vw;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box {
    width: 500px;
    padding: 60px 30px;
  }
}
.modal .modal-box.modal-map {
  top: 8vw;
  padding: 12vw 5.3333333333vw 8vw;
  transform: translate(-50%, 0);
}
@media only screen and (min-width: 750px) {
  .modal .modal-box.modal-map {
    top: 30px;
    padding: 60px 40px;
  }
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .btn_wrap .cv_btn {
    width: 100%;
    font-size: 16px;
  }
}
.modal .modal-box .cv-btn {
  margin-top: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .cv-btn {
    margin-top: 20px;
  }
}
.modal .modal-box .modalClose {
  position: absolute;
  top: 4vw;
  right: 4vw;
  width: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .modalClose {
    width: 40px;
    top: 20px;
    right: 30px;
  }
}
.modal .modal-box .google-maps {
  position: relative;
  overflow-y: hidden;
  width: 100%;
  padding-top: 75%;
}
.modal .modal-box .google-maps iframe {
  position: absolute;
  width: 100%;
  top: -21.3333333333vw;
  left: 0;
  width: 100%;
  height: 66.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .google-maps iframe {
    height: 380px;
    top: -142px;
  }
}
.modal .modal-box .info_wrap {
  margin-top: -13.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .info_wrap {
    margin-top: -58px;
  }
}
.modal .modal-box .info_wrap .top {
  font-size: 3.7333333333vw;
  color: #00a6b2;
  font-weight: bold;
  margin-bottom: 2.6666666667vw;
  padding-bottom: 1.7333333333vw;
  border-bottom: solid 1px #00a6b2;
  line-height: 1.3;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .info_wrap .top {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }
}
.modal .modal-box .info_wrap dl {
  font-size: 3.2vw;
  margin-top: 1.3333333333vw;
  display: flex;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .info_wrap dl {
    font-size: 12px;
    margin-top: 5px;
  }
}
.modal .modal-box .info_wrap dl dt {
  width: 25%;
  background: #F4F1EC;
  padding: 1.0666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .info_wrap dl dt {
    font-size: 14px;
    padding: 5px;
  }
}
.modal .modal-box .info_wrap dl dd {
  width: 75%;
  text-align: left;
  padding: 1.3333333333vw 2.6666666667vw;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .info_wrap dl dd {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.modal .modal-box .cta {
  margin-top: 2.6666666667vw !important;
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .cta {
    margin-top: 30px !important;
    width: 100%;
  }
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .cta .cta_top {
    font-size: 14px;
  }
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .cta .cta_btn_wrap {
    width: 100%;
  }
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .cta a {
    padding: 30px 0 15px;
    font-size: 22px;
    width: 100%;
  }
}
@media only screen and (min-width: 750px) {
  .modal .modal-box .cta a span {
    font-size: 16px;
  }
}

.modaal-content-container {
  padding: 8vw 4vw 4vw;
}
@media only screen and (min-width: 750px) {
  .modaal-content-container {
    padding: 60px 30px 30px;
  }
}

.modaal-container {
  max-width: calc(100vw - 60px);
}
@media only screen and (min-width: 750px) {
  .modaal-container {
    max-width: 600px;
  }
}
.modaal-container .modaal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 8vw;
  height: 8vw;
}
@media only screen and (min-width: 750px) {
  .modaal-container .modaal-close {
    width: 60px;
    height: 60px;
  }
}
.modaal-container .modaal-close:after, .modaal-container .modaal-close:before {
  background: #0E3659;
  top: 50%;
  left: 50%;
}
.modaal-container .modaal-close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modaal-container .modaal-close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_content .modal_body .ring_name {
  color: #0E3659;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 0.4em;
  font-size: 4vw;
}
@media only screen and (min-width: 750px) {
  .modal_content .modal_body .ring_name {
    font-size: 30px;
  }
}
.modal_content .modal_body .ring_name .en {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  margin-right: 0.5em;
}
.modal_content .modal_body .ring_name .ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50%;
}
.modal_content .modal_body .ring_name::before, .modal_content .modal_body .ring_name::after {
  content: "";
  height: 1px;
  flex-grow: 1;
}
.modal_content .modal_body .ring_name::before {
  background: linear-gradient(-90deg, #0E3659, transparent);
  margin-right: 0.5em;
}
.modal_content .modal_body .ring_name::after {
  background: linear-gradient(90deg, #0E3659, transparent);
  margin-left: 0.5em;
}
.modal_content .modal_body--slider .slider {
  width: 99%;
  margin: 0 auto;
}
.modal_content .modal_body--slider .slider-nav {
  margin-top: 2.5%;
}
.modal_content .modal_body--slider .slider-nav .slick-track {
  transform: unset !important;
}
.modal_content .modal_body--slider .slider-nav .thumbnail {
  padding: 0 5%;
}
.modal_content .modal_body--slider .slider-nav .thumbnail img {
  cursor: pointer;
  border: solid #ddd 2px;
}
.modal_content .modal_body--slider .slider-nav .thumbnail.slick-current img {
  border: solid #00a6b2 2px;
  box-sizing: border-box;
}
.modal_content .modal_body--slider + .cta {
  margin-top: 2em;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 口コミ */
.voice {
  background: #EBF9FA;
}
.voice .inner {
  padding: 8vw 5.3333333333vw 8.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .voice .inner {
    padding: 60px 40px 65px;
  }
}
.voice h2 {
  text-align: left;
  line-height: 1;
  padding-left: 4px;
  font-weight: 300;
  font-size: 6.4vw;
  background: linear-gradient(180deg, #00B1BC 0%, #008F99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 750px) {
  .voice h2 {
    padding-left: 16px;
    font-size: 48px;
  }
}
.voice .voice_wrap {
  width: calc(100% + 10.6666666667vw);
  margin-left: -5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .voice .voice_wrap {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
.voice .slider_voice .slick-track {
  display: flex;
}
.voice .slider_voice .slick-slide {
  height: auto !important;
}
.voice .slider_voice li {
  padding: 5.3333333333vw;
  background: #fff;
  border: solid 5px #F9F8F7;
  box-shadow: 4px 4px 8px rgba(0, 177, 188, 0.15);
  margin: 0 8px 8px;
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li {
    padding: 40px;
  }
}
.voice .slider_voice li .main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li .main {
    gap: 40px;
  }
}
.voice .slider_voice li .main figure {
  width: 20vw;
  height: 20vw;
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li .main figure {
    width: 150px;
    height: 150px;
  }
}
.voice .slider_voice li .main .text_wrap {
  width: calc(100% - 25.3333333333vw);
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li .main .text_wrap {
    width: calc(100% - 190px);
  }
}
.voice .slider_voice li .main + .text_wrap {
  margin-top: 1.5em;
}
.voice .slider_voice li .text_wrap div .heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #00a6b2;
  padding-left: 2em;
  position: relative;
  font-size: 3.2vw;
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li .text_wrap div .heading {
    padding-left: 3em;
    font-size: 18px;
  }
}
.voice .slider_voice li .text_wrap div .heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  background: linear-gradient(180deg, #00B1BC 0%, #008F99 100%);
  width: 1.5em;
  transform: translateY(-50%);
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li .text_wrap div .heading::before {
    width: 2em;
  }
}
.voice .slider_voice li .text_wrap div .text {
  margin-top: 0.5em;
}
.voice .slider_voice li .shop {
  text-align: right;
  margin-top: 1.5em;
  font-size: 2.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice li .shop {
    font-size: 16px;
  }
}
.voice .slider_voice .slick-arrow {
  z-index: 2;
  top: 50%;
  width: 4vw;
  height: 4vw;
  border-top: 2px solid #00a6b2;
  border-right: 2px solid #00a6b2;
  opacity: 0.8;
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice .slick-arrow {
    width: 20px;
    height: 20px;
  }
}
.voice .slider_voice .slick-arrow:before {
  content: "";
}
.voice .slider_voice .slick-prev {
  left: 4.6666666667vw;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice .slick-prev {
    left: 45px;
  }
}
.voice .slider_voice .slick-next {
  right: 4.6666666667vw;
  transform: rotate(45deg);
}
@media only screen and (min-width: 750px) {
  .voice .slider_voice .slick-next {
    right: 45px;
  }
}

/**/
.present {
  background: url(../img/present_top.png) no-repeat top left/contain, url(../img/present_bottom.png) no-repeat bottom right/contain, #00a6b2;
  background-size: 48.2666666667vw, 34.4vw, 100%;
}
@media only screen and (min-width: 750px) {
  .present {
    background-size: 362px, 258px, 100%;
  }
}
.present .inner {
  padding: 10.6666666667vw 5.3333333333vw 6.6666666667vw;
  /*padding: vw(80) vw(40) vw(80);*/
}
@media only screen and (min-width: 750px) {
  .present .inner {
    padding: 80px 40px 50px;
    /*padding: 80px 40px;*/
  }
}
.present .heading {
  letter-spacing: 0.06rem;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0.7em;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 8px rgba(51, 51, 51, 0.4);
  font-size: 3.7333333333vw;
}
.present .heading .large {
  font-size: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .present .heading .large {
    font-size: 40px;
  }
}
.present .heading .middle {
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .present .heading .middle {
    font-size: 32px;
  }
}
@media only screen and (min-width: 750px) {
  .present .heading {
    font-size: 24px;
  }
}
.present .text {
  background: #fff;
  padding: 4vw;
}
@media only screen and (min-width: 750px) {
  .present .text {
    padding: 30px;
  }
}
.present .text .note {
  display: block;
  margin-top: 1em;
  font-size: 2.1333333333vw;
}
@media only screen and (min-width: 750px) {
  .present .text .note {
    font-size: 14px;
  }
}

/**/
.present_bottom .cta {
  margin-top: 10.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .present_bottom .cta {
    margin-top: 80px;
  }
}

/**/
footer {
  background: #0E3659;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
}
footer .link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6666666667vw;
}
@media only screen and (min-width: 750px) {
  footer .link-list {
    gap: 20px;
  }
}
footer .link-list a {
  display: block;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */