@charset "utf-8";
@import url(init.css);

:root {
  --viewport: 750;
  --gold: #baa170;
  --blue: #cee3f8;
}
@media screen and (min-width: 768px) {
  :root {
    --viewport: 1518;
  }
}

@media screen and (max-width:767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .sp {
    display: none;
  }
}

img {
  height: auto;
}
.font-oswald {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
}
.font_gold {
  color: var(--gold);
}
.font_white {
  color: #fff;
}
.fw_medium {
  font-weight: 500;
}
.bg_black {
  background: #000;
}
.bg_gray {
  background: #3c3a39;
}
.relative {
  position: relative;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.zoomIn.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  to {
    opacity: 1;
  }
}

.cta {
  font-weight: bold;
  text-align: center;
  padding: calc(100vw / var(--viewport) * 80) 0;
  position: relative;
}
.cta a {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  text-align: center;
  background: #152f74;
  width: calc(100vw / var(--viewport) * 602);
  height: calc(100vw / var(--viewport) * 108);
  display: flex;
  justify-content: center;
  align-items: center;
  border: calc(100vw / var(--viewport) * 6) solid #fff;
  border-radius: calc(100vw / var(--viewport) * 14);
  margin: 0 auto;
  box-shadow: calc(100vw / var(--viewport) * 5)
    calc(100vw / var(--viewport) * 5) 0 #bfbfbf;
  animation: zoom infinite 2.2s;
}
@keyframes zoom {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@media screen and (min-width: 1518px) {
  .cta {
    padding: 80px 0;
  }
  .cta a {
    font-size: 28px;
    width: 602px;
    height: 108px;
    border: 6px solid #fff;
    border-radius: 14px;
    box-shadow: 5px 5px 0 #bfbfbf;
  }
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans",
    "Segoe UI", "Meiryo", sans-serif;
  font-weight: 400;
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
#header .logo {
  width: calc(100vw / var(--viewport) * 74);
  margin-right: calc(100vw / var(--viewport) * 27);
}
#header .name {
  width: calc(100vw / var(--viewport) * 448);
}
@media screen and (max-width: 767px) {
  #header {
    background: #000;
  }
  #header .flex {
    justify-content: flex-start;
    align-items: center;
  }
  #header .logo {
    margin-top: calc(100vw / var(--viewport) * 14);
    margin-left: calc(100vw / var(--viewport) * 13);
  }
}
@media screen and (min-width: 768px) {
  #header .flex {
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 38px;
    left: 3.5%;
  }
  #header .logo {
    width: 41px;
    margin-right: 23px;
  }
  #header .name {
    width: 27.5vw;
    min-width: 270px;
    max-width: 401px;
  }
}

@media screen and (max-width: 767px) {
  .pcMenu {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pcMenu {
    position: fixed;
    top: 70px;
    left: 4%;
  }
  .pcMenu p {
    color: #fff;
    font-size: 34px;
    font-weight: 500;
  }
  .pcMenu li {
    margin-top: 7px;
  }
  .pcMenu a {
    color: #fff;
    display: flex;
    align-items: stretch;
  }
  .pcMenu a span.number {
    color: #000;
    font-size: calc(100vw / var(--viewport) * 26);
    font-weight: 500;
    width: calc(100vw / var(--viewport) * 35);
    height: calc(100vw / var(--viewport) * 35);
    background: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pcMenu a span.text {
    font-size: calc(100vw / var(--viewport) * 18);
    border: 1px solid #fff;
    border-left: none;
    width: 100%;
    padding: 0 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (min-width: 1518px) {
  .pcMenu {
    top: 90px;
  }
  .pcMenu li {
    margin-top: 9px;
  }
  .pcMenu a span.number {
    font-size: 26px;
    width: 38px;
    height: 38px;
  }
  .pcMenu a span.text {
    font-size: 19px;
  }
}

#wrapper {
  background: #fff;
  width: 100%;
  margin: 0 auto;
}
#wrapper:before,
#wrapper:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
}
#wrapper:before {
  border-left: calc(100vw / var(--viewport) * 6) solid var(--gold);
  left: 0;
}
#wrapper:after {
  border-right: calc(100vw / var(--viewport) * 6) solid var(--gold);
  right: 0;
}
@media screen and (min-width: 768px) {
  #wrapper {
    width: 50%;
    max-width: 750px;
    position: absolute;
    top: 0;
    left: 50%;
  }
  #wrapper:before,
  #wrapper:after {
    position: absolute;
  }
  #wrapper:before {
    border-left-width: 6px;
  }
  #wrapper:after {
    border-right-width: 6px;
  }
}
#wrapper.no-events {
  pointer-events: none;
}

.topBanner video {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#mv #counter {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * 20);
  margin: 0 auto;
}
#mv #counter .midashi {
  font-size: calc(100vw / var(--viewport) * 30);
  margin-bottom: 0.2em;
}
#mv #counter .counter {
  font-size: calc(100vw / var(--viewport) * 43);
  font-weight: 500;
}
#mv #counter .counter img {
  height: calc(100vw / var(--viewport) * 65);
}
#mv #counter .odometer.odometer-auto-theme {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 70);
  font-weight: bold;
  background: none;
  padding: 0;
}
#mv #counter .odometer.odometer-auto-theme .odometer-inside {
  line-height: 1;
}
#mv #counter .odometer.odometer-auto-theme .odometer-digit {
  background: none;
  box-shadow: none;
  padding: 0 0.08em;
}
#mv #counter .odometer.odometer-auto-theme .odometer-digit:last-child {
  color: var(--gold);
}
#mv #counter .period {
  font-size: calc(100vw / var(--viewport) * 21);
}
@media screen and (min-width:768px) {
  .topBanner {
    width: 42.4%;
    max-width: 750px;
    height: 1335px;
    position: absolute;
    top: 127px;
    left: 3.5%;
  }
  .topBanner video {
    width: 100%;
    max-height: calc(100vh - 147px);
  }
}
@media screen and (min-width: 1518px) {
  #mv #counter {
    bottom: 20px;
  }
  #mv #counter .midashi {
    font-size: 30px;
  }
  #mv #counter .counter {
    font-size: 43px;
  }
  #mv #counter .counter img {
    height: 65px;
  }
  #mv #counter .odometer.odometer-auto-theme {
    font-size: 70px;
  }
  #mv #counter .period {
    font-size: 21px;
  }
}

.priceSection .img02 {
  position: relative;
}
.priceSection .img02 a {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 42);
  width: calc(100vw / var(--viewport) * 690);
  height: calc(100vw / var(--viewport) * 82);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * 56);
  margin: 0 auto;
}
.priceSection .img02 a span {
  font-size: calc(100vw / var(--viewport) * 24);
  transform: rotate(90deg);
  margin-left: 0.5em;
}
@media screen and (min-width:1518px) {
  .priceSection .img02 a {
    font-size: 42px;
    width: 690px;
    height: 82px;
    bottom: 56px;
  }
  .priceSection .img02 a span {
    font-size: 24px;
  }
}

.captionSection {
  padding: calc(100vw / var(--viewport) * 30);
}
.captionSection p {
  font-size: calc(100vw / var(--viewport) * 22);
}
@media screen and (min-width:768px) {
  .captionSection {
    padding: 30px;
  }
  .captionSection p {
    font-size: 22px;
  }
}

.bannerArea {
  background: #646464;
}
.bannerArea .button {
  background: #000;
  padding: calc(100vw / var(--viewport) * 38) 0 calc(100vw / var(--viewport) * 44);
}
.bannerArea .button a {
  color: #000;
  font-size: calc(100vw / var(--viewport) * 28);
  background: #bba171;
  width: calc(100vw / var(--viewport) * 421);
  height: calc(100vw / var(--viewport) * 77);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.bannerArea .videoBox {
  background: #000;
}
.bannerArea .videoBox video {
  width: 100%;
}
@media screen and (min-width: 1518px) {
  .bannerArea .button {
    padding: 38px 0 44px;
  }
  .bannerArea .button a {
    font-size: 28px;
    width: 421px;
    height: 77px;
  }
}

section .inner {
  padding-left: calc(100vw / var(--viewport) * 22);
  padding-right: calc(100vw / var(--viewport) * 22);
}
@media screen and (min-width: 1518px) {
  section .inner {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.midashiBox {
  width: 100%;
  height: calc(100vw / var(--viewport) * 106);
  background: #000;
  display: flex;
  justify-content: flex-start;
}
.midashiBox .number {
  font-size: calc(100vw / var(--viewport) * 64);
  font-weight: 500;
  background: var(--gold);
  width: calc(100vw / var(--viewport) * 106);
  display: flex;
  justify-content: center;
  align-items: center;
}
.midashiBox h2 {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 31);
  font-weight: bold;
  width: calc(100% - calc(100vw / var(--viewport) * 64));
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: calc(100vw / var(--viewport) * 41);
}
@media screen and (min-width: 1518px) {
  .midashiBox {
    height: 106px;
  }
  .midashiBox .number {
    font-size: 64px;
    width: 106px;
  }
  .midashiBox h2 {
    font-size: 31px;
    width: calc(100% - 64px);
    padding-left: 41px;
  }
}

.lead {
  color: #fff;
  text-align: center;
  padding: calc(100vw / var(--viewport) * 35) calc(100vw / var(--viewport) * 22)
    calc(100vw / var(--viewport) * 53);
  position: relative;
}
.lead h3 {
  line-height: 1.5;
  margin-bottom: calc(100vw / var(--viewport) * 30);
}
.lead h3 .sub {
  font-size: calc(100vw / var(--viewport) * 32);
}
.lead h3 .h3 {
  font-size: calc(100vw / var(--viewport) * 44);
}
.lead .text {
  font-size: calc(100vw / var(--viewport) * 26);
}
.lead .after {
  font-size: calc(100vw / var(--viewport) * 41);
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * -58);
  z-index: 1;
}
.lead .after:after {
  content: "";
  position: absolute;
  top: calc(100vw / var(--viewport) * 7);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100vw / var(--viewport) * 255);
  height: calc(100vw / var(--viewport) * 100);
  background: #3c3a39;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 1518px) {
  .lead {
    padding: 35px 22px 53px;
  }
  .lead h3 {
    margin-bottom: 30px;
  }
  .lead h3 .sub {
    font-size: 32px;
  }
  .lead h3 .h3 {
    font-size: 44px;
  }
  .lead .text {
    font-size: 26px;
  }
  .lead .after {
    font-size: 41px;
    bottom: -58px;
  }
  .lead .after:after {
    top: 7px;
    width: 255px;
    height: 100px;
  }
}

#sec01 {
  padding: 0 0 calc(100vw / var(--viewport) * 84);
  margin: 0 0 calc(100vw / var(--viewport) * 50);
  overflow: hidden;
}
#sec01 .lead {
  padding: calc(100vw / var(--viewport) * 60) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 21);
}
#sec01 .lead .icon_case {
  color: #000;
  font-size: calc(100vw / var(--viewport) * 48);
  font-weight: bold;
  text-align: center;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gold);
  border-radius: calc(100vw / var(--viewport) * 8);
  padding: 0.1em 0.2em;
  margin: 0 auto calc(100vw / var(--viewport) * 9);
}
#sec01 .lead h3 {
  line-height: 1.5;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #fff;
}
#sec01 .lead h3 .h3 {
  font-size: calc(100vw / var(--viewport) * 50);
}
#sec01 .lead .text {
  font-size: calc(100vw / var(--viewport) * 30);
}
#sec01 .nayami {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 40);
  font-weight: bold;
  text-align: center;
  margin-top: calc(100vw / var(--viewport) * 32);
  margin-bottom: calc(100vw / var(--viewport) * 22);
}
#sec01 .nayami:after {
  content: "";
  display: block;
  background: url(../img/sec01/arrow.webp) center center no-repeat;
  background-size: 100% auto;
  width: calc(100vw / var(--viewport) * 174);
  height: calc(100vw / var(--viewport) * 40);
  margin: calc(100vw / var(--viewport) * 20) auto 0;
  animation: blink 0.5s ease-in-out infinite alternate;
}
#sec01 .imgBox {
  position: relative;
}
#sec01 .imgBox img {
  width: calc(100vw / var(--viewport) * 544);
  display: block;
  margin: calc(100vw / var(--viewport) * 54) auto 0;
}
@media screen and (min-width: 1518px) {
  #sec01 {
    padding: 0 0 84px;
    margin: 0 0 50px;
  }
  #sec01 .lead {
    padding: 60px 30px 21px;
  }
  #sec01 .lead .icon_case {
    font-size: 48px;
    border-radius: 8px;
    margin: 0 auto 9px;
  }
  #sec01 .lead h3 .h3 {
    font-size: 50px;
  }
  #sec01 .lead .text {
    font-size: 30px;
  }
  #sec01 .nayami {
    font-size: 40px;
    margin-top: 32px;
    margin-bottom: 22px;
  }
  #sec01 .nayami:after {
    width: 174px;
    height: 40px;
    margin: 20px auto 0;
  }
  #sec01 .imgBox img {
    width: 544px;
    margin: 54px auto 0;
  }
}

#sec02 {
  padding: calc(100vw / var(--viewport) * 44) 0 0;
}
#sec02 .table {
  margin-top: calc(100vw / var(--viewport) * 42);
}
#sec02 h3 {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 50);
  font-weight: bold;
  text-align: center;
  margin: calc(100vw / var(--viewport) * 44) auto
    calc(100vw / var(--viewport) * 33);
}
#sec02 .tabs {
  width: calc(100vw / var(--viewport) * 625);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
}
#sec02 .tabs li {
  width: 30.56%;
}
#sec02 .tabs li.active {
  width: 36.8%;
}
#sec02 .tabs li:not(.active) {
  cursor: pointer;
}
.bodys .box {
  background: #000;
  padding: calc(100vw / var(--viewport) * 32) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 76);
}
/* .bodys .box:nth-child(n + 2) {
  display: none;
} */
.bodys .box .flex:nth-child(2) {
  margin-top: calc(100vw / var(--viewport) * 38);
}
.bodys .box .flex figure {
  width: 50%;
}
.bodys .box .flex figcaption {
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: calc(100vw / var(--viewport) * 56);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bodys .box .flex figure:nth-child(1) figcaption {
  background: #9f9592;
}
.bodys .box .flex figure:nth-child(2) figcaption {
  background: #baa171;
}
.bodys .box .text {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  margin-top: calc(100vw / var(--viewport) * 42);
}
@media screen and (min-width: 1518px) {
  #sec02 {
    padding: 44px 0 0;
  }
  #sec02 .table {
    margin-top: 42px;
  }
  #sec02 h3 {
    font-size: 50px;
    margin: 44px auto 33px;
  }
  #sec02 .tabs {
    width: 625px;
  }
  .bodys .box {
    padding: 32px 30px 76px;
  }
  .bodys .box .flex figcaption {
    font-size: 28px;
    height: 56px;
  }
  .bodys .box .text {
    font-size: 22px;
    margin-top: 42px;
  }
}

.higePrice {
  padding: calc(100vw / var(--viewport) * 60) 0 0;
}
.higePrice .ttl_aco {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 34);
  font-weight: 600;
  width: 100%;
  height: calc(100vw / var(--viewport) * 121);
  background: #053650;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.higePrice .ttl_aco:before,
.higePrice .ttl_aco:after {
  content: "";
  background: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100vw / var(--viewport) * 37);
}
.higePrice .ttl_aco:before {
  width: calc(100vw / var(--viewport) * 36);
  height: calc(100vw / var(--viewport) * 4);
}
.higePrice .ttl_aco:after {
  width: calc(100vw / var(--viewport) * 4);
  height: calc(100vw / var(--viewport) * 36);
  right: calc(100vw / var(--viewport) * 54);
}
.higePrice .ttl_aco.active:after {
  display: none;
}
.higePrice .body_aco {
  display: none;
}
.higePrice .body_aco .banner {
  margin-top: calc(100vw / var(--viewport) * 50);
}
.higePrice .body_aco .captionSection {
  padding-left: 0;
  padding-right: 0;
}
.higePrice .body_aco .close {
  font-size: calc(100vw / var(--viewport) * 46);
  font-weight: 600;
  text-decoration: underline;
  width: 100%;
  text-align: center;
  margin-top: calc(100vw / var(--viewport) * 22);
  margin-bottom: calc(100vw / var(--viewport) * 20);
}
@media screen and (min-width:1518px) {
  .higePrice {
    padding: 60px 0 0;
  }
  .higePrice .ttl_aco {
    font-size: 34px;
    height: 121px;
  }
  .higePrice .ttl_aco:before,
  .higePrice .ttl_aco:after {
    right: 37px;
  }
  .higePrice .ttl_aco:before {
    width: 36px;
    height: 4px;
  }
  .higePrice .ttl_aco:after {
    width: 4px;
    height: 36px;
    right: 54px;
  }
  .higePrice .body_aco .banner {
    margin-top: 50px;
  }
  .higePrice .body_aco .close {
    font-size: 46px;
    margin-top: 22px;
    margin-bottom: 20px;
  }
}

.bodyPrice {
  margin-top: calc(100vw / var(--viewport) * 50);
}
@media screen and (min-width:1518px) {
  .bodyPrice {
    margin-top: 50px;
  }
}

.shorei_body {
  padding: calc(100vw / var(--viewport) * 36) 0 0;
}
.shorei_body h3 {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 50);
  font-weight: bold;
  text-align: center;
  margin: calc(100vw / var(--viewport) * 44) auto calc(100vw / var(--viewport) * 33);
}
.shorei_body .box {
  color: #fff;
  background: #000;
  padding: calc(100vw / var(--viewport) * 32) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 76);
}
.shorei_body .box .flex:nth-child(2) {
  margin-top: calc(100vw / var(--viewport) * 38);
}
.shorei_body .box .flex figure {
  width: 50%;
}
.shorei_body .box .flex figcaption {
  color: #222;
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: calc(100vw / var(--viewport) * 56);
  display: flex;
  justify-content: center;
  align-items: center;
}
.shorei_body .box .flex figure:nth-child(1) figcaption {
  background: #9f9592;
}
.shorei_body .box .flex figure:nth-child(2) figcaption {
  background: #baa171;
}
.shorei_body .box .text {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  margin-top: calc(100vw / var(--viewport) * 42);
}
@media screen and (min-width:1518px) {
  .shorei_body {
    padding: 36px 0 0;
  }
  .shorei_body h3 {
    font-size: 50px;
    margin: 44px auto 33px;
  }
  .shorei_body .box {
    padding: 32px 30px 76px;
  }
  .shorei_body .box .flex:nth-child(2) {
    margin-top: 38px;
  }
  .shorei_body .box .flex figcaption {
    font-size: 28px;
    height: 56px;
  }
  .shorei_body .box .text {
    font-size: 22px;
    margin-top: 42px;
  }
}

#sec03 {
  padding: calc(100vw / var(--viewport) * 44) 0 0;
}
#sec03 .inner {
  padding-top: calc(100vw / var(--viewport) * 46);
  padding-bottom: calc(100vw / var(--viewport) * 60);
}
#sec03 .box {
  color: #fff;
  background: #000;
  padding: calc(100vw / var(--viewport) * 36) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 54);
  position: relative;
}
#sec03 .box01 {
  margin-top: calc(100vw / var(--viewport) * 128);
}
#sec03 .box02,
#sec03 .box03 {
  margin-top: calc(100vw / var(--viewport) * 117);
}
#sec03 .box02 {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
#sec03 .box02 .text {
  padding-left: calc(100vw / var(--viewport) * 30);
  padding-right: calc(100vw / var(--viewport) * 30);
}
#sec03 .box:before {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 49);
  font-weight: bold;
  text-align: center;
  background: #000;
  width: calc(100vw / var(--viewport) * 281);
  height: calc(100vw / var(--viewport) * 92);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(100vw / var(--viewport) * 20)
    calc(100vw / var(--viewport) * 20) 0 0;
  position: absolute;
  top: calc(100vw / var(--viewport) * -92);
  left: 0;
  right: 0;
  margin: 0 auto;
}
#sec03 .box01:before {
  content: "POINT1";
}
#sec03 .box02:before {
  content: "POINT2";
}
#sec03 .box03:before {
  content: "POINT3";
}
#sec03 .box h3 {
  text-align: center;
  line-height: 1.3;
  margin-bottom: calc(100vw / var(--viewport) * 28);
}
#sec03 .box h3 .sub {
  font-size: calc(100vw / var(--viewport) * 30);
  line-height: 1.4;
}
#sec03 .box h3 .sub_small {
  font-size: calc(100vw / var(--viewport) * 20);
  display: inline-block;
  margin-bottom: calc(100vw / var(--viewport) * 11);
}
#sec03 .box h3 .h3 {
  font-size: calc(100vw / var(--viewport) * 44);
}
#sec03 .box img {
  margin-bottom: calc(100vw / var(--viewport) * 23);
}
#sec03 .box .lead {
  font-size: calc(100vw / var(--viewport) * 24);
  text-align: left;
  padding: 0 calc(100vw / var(--viewport) * 22)
    calc(100vw / var(--viewport) * 55);
}
#sec03 .box .text {
  font-size: calc(100vw / var(--viewport) * 22);
  margin-bottom: calc(100vw / var(--viewport) * 45);
}
#sec03 .box03 ul li {
  width: 47.83%;
}
#sec03 .box03 ul li:nth-child(n + 3) {
  margin-top: calc(100vw / var(--viewport) * 33);
}
#sec03 .box03 ul li img {
  height: calc(100vw / var(--viewport) * 208);
  display: block;
  margin: 0 auto calc(100vw / var(--viewport) * 34);
}
#sec03 .box03 ul li .midashi {
  text-align: center;
  margin-bottom: calc(100vw / var(--viewport) * 17);
}
#sec03 .box03 ul li .midashi .sub {
  font-size: calc(100vw / var(--viewport) * 26);
  display: inline-block;
  margin-bottom: calc(100vw / var(--viewport) * 7);
}
#sec03 .box03 ul li .midashi .font_gold {
  font-size: calc(100vw / var(--viewport) * 30);
  font-weight: bold;
}
#sec03 .box03 ul li .text {
  font-size: calc(100vw / var(--viewport) * 22);
  margin-bottom: 0;
}
@media screen and (min-width: 1518px) {
  #sec03 {
    padding: 44px 0 0;
  }
  #sec03 .inner {
    padding-top: 46px;
    padding-bottom: 60px;
  }
  #sec03 .box {
    padding: 36px 30px 54px;
  }
  #sec03 .box01 {
    margin-top: 128px;
  }
  #sec03 .box02,
  #sec03 .box03 {
    margin-top: 117px;
  }
  #sec03 .box02 .text {
    padding-left: 30px;
    padding-right: 30px;
  }
  #sec03 .box:before {
    font-size: 49px;
    width: 281px;
    height: 92px;
    border-radius: 20px 20px 0 0;
    top: -92px;
  }
  #sec03 .box h3 {
    margin-bottom: 28px;
  }
  #sec03 .box h3 .sub {
    font-size: 30px;
  }
  #sec03 .box h3 .sub_small {
    font-size: 20px;
    margin-bottom: 11px;
  }
  #sec03 .box h3 .h3 {
    font-size: 44px;
  }
  #sec03 .box img {
    margin-bottom: 23px;
  }
  #sec03 .box .lead {
    font-size: 24px;
    padding: 0 22px 55px;
  }
  #sec03 .box .text {
    font-size: 22px;
    margin-bottom: 45px;
  }
  #sec03 .box03 ul li:nth-child(n + 3) {
    margin-top: 33px;
  }
  #sec03 .box03 ul li img {
    height: 208px;
    margin: 0 auto 34px;
  }
  #sec03 .box03 ul li .midashi {
    margin-bottom: 17px;
  }
  #sec03 .box03 ul li .midashi .sub {
    font-size: 26px;
    margin-bottom: 7px;
  }
  #sec03 .box03 ul li .midashi .font_gold {
    font-size: 30px;
  }
  #sec03 .box03 ul li .text {
    font-size: 22px;
  }
}

#sec04 {
  color: #fff;
  padding: 0 0 calc(100vw / var(--viewport) * 80);
  overflow: hidden;
}
#sec04 h3 {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 53);
  font-weight: bold;
  text-align: center;
  margin: calc(100vw / var(--viewport) * 48) auto
    calc(100vw / var(--viewport) * 30);
}
#sec04 .shorei {
  font-size: calc(100vw / var(--viewport) * 67);
  font-weight: bold;
  text-align: center;
}
#sec04 .shorei .number {
  display: inline-block;
  background: #000;
  padding: calc(100vw / var(--viewport) * 20) calc(100vw / var(--viewport) * 30);
  margin-right: calc(100vw / var(--viewport) * 6);
}
#sec04 .shorei .number img {
  vertical-align: middle;
  height: calc(100vw / var(--viewport) * 90);
}
#sec04 .shorei_period {
  font-size: calc(100vw / var(--viewport) * 31);
  text-align: center;
  margin: calc(100vw / var(--viewport) * 11) auto 0;
}
#sec04 .imgBox {
  position: relative;
  margin-bottom: calc(100vw / var(--viewport) * 53);
}
#sec04 .imgBox ul {
  position: absolute;
  top: calc(100vw / var(--viewport) * 42);
  left: calc(100vw / var(--viewport) * 43);
}
#sec04 .imgBox ul li {
  font-size: calc(100vw / var(--viewport) * 34);
  font-weight: bold;
}
#sec04 .imgBox ul li:nth-child(n + 2) {
  margin-top: calc(100vw / var(--viewport) * 96);
}
#sec04 .imgBox ul li:nth-child(2) {
  animation-delay: 0.2s;
}
#sec04 .imgBox ul li:nth-child(3) {
  animation-delay: 0.4s;
}
#sec04 .imgBox p {
  font-size: calc(100vw / var(--viewport) * 48);
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100vw / var(--viewport) * 22);
}
#sec04 .imgBox p:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  background: #fff;
  filter: blur(10px);
  opacity: 0;
  animation: flash 1s ease-out alternate infinite;
}
#sec04 h3 {
  text-align: center;
  line-height: 1.3;
  margin-bottom: calc(100vw / var(--viewport) * 28);
}
#sec04 h3 .sub {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 30);
  line-height: 1.4;
}
#sec04 h3 .h3 {
  font-size: calc(100vw / var(--viewport) * 44);
}
#sec04 .lead {
  font-size: calc(100vw / var(--viewport) * 26);
  text-align: center;
  padding: 0;
  margin: calc(100vw / var(--viewport) * 34);
}
#sec04 .videoBox {
  background: #000;
  margin-top: calc(100vw / var(--viewport) * 50);
}
#sec04 video {
  width: 100%;
}
@media screen and (min-width: 1518px) {
  #sec04 {
    padding: 0 0 80px;
  }
  #sec04 h3 {
    font-size: 53px;
    margin: 48px auto 30px;
  }
  #sec04 .shorei {
    font-size: 67px;
  }
  #sec04 .shorei .number {
    padding: 20px 30px;
    margin-right: 6px;
  }
  #sec04 .shorei .number img {
    height: 90px;
  }
  #sec04 .shorei_period {
    font-size: 31px;
    margin: 11px auto 0;
  }
  #sec04 .imgBox {
    margin-bottom: 53px;
  }
  #sec04 .imgBox ul {
    top: 42px;
    left: 43px;
  }
  #sec04 .imgBox ul li {
    font-size: 34px;
  }
  #sec04 .imgBox ul li:nth-child(n + 2) {
    margin-top: 96px;
  }
  #sec04 .imgBox p {
    font-size: 48px;
    right: 22px;
  }
  #sec04 h3 {
    margin-bottom: 28px;
  }
  #sec04 h3 .sub {
    font-size: 30px;
  }
  #sec04 h3 .h3 {
    font-size: 44px;
  }
  #sec04 .lead {
    font-size: 26px;
    margin: 34px;
  }
  #sec04 .videoBox {
    margin-top: 50px;
  }
}

#sec05 .bnr {
  padding-bottom: calc(100vw / var(--viewport) * 50);
}
#sec05 .bg_gray {
  color: #fff;
  padding: calc(100vw / var(--viewport) * 25) 0;
  margin-bottom: calc(100vw / var(--viewport) * 60);
}
#sec05 .bg_gray .text {
  font-size: calc(100vw / var(--viewport) * 18);
  display: table;
  width: calc(100vw / var(--viewport) * 673);
  margin: 0 auto;
}
#sec05 .ttl_aco {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: bold;
  background: #043650;
  width: 100%;
  height: calc(100vw / var(--viewport) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
#sec05 .ttl_aco:before,
#sec05 .ttl_aco:after {
  content: "";
  background: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100vw / var(--viewport) * 37);
}
#sec05 .ttl_aco:before {
  width: calc(100vw / var(--viewport) * 36);
  height: calc(100vw / var(--viewport) * 4);
}
#sec05 .ttl_aco:after {
  width: calc(100vw / var(--viewport) * 4);
  height: calc(100vw / var(--viewport) * 36);
  right: calc(100vw / var(--viewport) * 54);
}
#sec05 .ttl_aco.active:after {
  display: none;
}
#sec05 .body_aco {
  background: #3c3a39;
  padding: calc(100vw / var(--viewport) * 34) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 50);
  display: none;
}
#sec05 .body_aco ul:nth-child(2) {
  margin-top: calc(100vw / var(--viewport) * 60);
}
#sec05 .body_aco ul li {
  width: 48.9%;
}
#sec05 .body_aco ul li.badge {
  position: relative;
}
#sec05 .body_aco ul li.badge:after {
  content: "";
  background: url(../img/off5.webp) center center no-repeat;
  background-size: 100% auto;
  width: calc(100vw / var(--viewport) * 83);
  height: calc(100vw / var(--viewport) * 83);
  position: absolute;
  top: calc(100vw / var(--viewport) * 10);
  right: calc(100vw / var(--viewport) * 10);
}
#sec05 .body_aco .midashi {
  color: #fff;
  background: #043650;
  height: calc(100vw / var(--viewport) * 127);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#sec05 .body_aco .midashi .font_gold {
  font-size: calc(100vw / var(--viewport) * 33);
  font-weight: bold;
  display: inline-block;
}
#sec05 .body_aco .midashi .sub {
  font-size: calc(100vw / var(--viewport) * 22);
  font-weight: 500;
  line-height: 1.34;
}
#sec05 .priceBox {
  height: calc(100vw / var(--viewport) * 110);
  background: #e8e8e8;
  display: flex;
  justify-content: space-between;
  margin-top: calc(100vw / var(--viewport) * 15);
}
#sec05 .priceBox .count,
#sec05 .priceBox .price {
  display: flex;
  justify-content: center;
  align-items: center;
}
#sec05 .priceBox .count {
  font-size: calc(100vw / var(--viewport) * 33);
  font-weight: bold;
  width: calc(100vw / var(--viewport) * 98);
  background: #bba171;
}
#sec05 .priceBox .price {
  width: calc(100% - calc(100vw / var(--viewport) * 98));
  background: #043650;
}
#sec05 .priceBox .price img {
  height: calc(100vw / var(--viewport) * 44);
  transform: translateY(9%);
}
#sec05 .priceBox .price--campaign {
  width: calc(100% - calc(100vw / var(--viewport) * 98));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#sec05 .priceBox .price--campaign .price {
  width: 100%;
}
#sec05 .priceBox .price--campaign .price .strike {
  margin-bottom: 0.3em;
  position: relative;
}
#sec05 .priceBox .price--campaign .price .strike:after {
  content: "";
  border-bottom: calc(100vw / var(--viewport) * 5) dashed var(--gold);
  width: 110%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sec05 .priceBox .price--campaign .price .strike img {
  height: calc(100vw / var(--viewport) * 38);
}
#sec05 .body_aco .caution {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 18);
  margin-top: calc(100vw / var(--viewport) * 16);
}
#sec05 .higeStart {
  margin-top: calc(100vw / var(--viewport) * 49);
}
#sec05 .body_aco .higeStart .midashi {
  justify-content: center;
}
@media screen and (min-width: 1518px) {
  #sec05 .bnr {
    padding-bottom: 50px;
  }
  #sec05 .bg_gray {
    padding: 25px 0;
    margin-bottom: 60px;
  }
  #sec05 .bg_gray .text {
    font-size: 18px;
    width: 673px;
  }
  #sec05 .ttl_aco {
    font-size: 28px;
    height: 100px;
  }
  #sec05 .ttl_aco:before,
  #sec05 .ttl_aco:after {
    right: 37px;
  }
  #sec05 .ttl_aco:before {
    width: 36px;
    height: 4px;
  }
  #sec05 .ttl_aco:after {
    width: 4px;
    height: 36px;
    right: 54px;
  }
  #sec05 .body_aco {
    padding: 34px 30px 50px;
  }
  #sec05 .body_aco ul:nth-child(2) {
    margin-top: 60px;
  }
  #sec05 .body_aco .midashi {
    height: 127px;
  }
  #sec05 .body_aco .midashi .font_gold {
    font-size: 33px;
  }
  #sec05 .body_aco .midashi .sub {
    font-size: 22px;
  }
  #sec05 .priceBox {
    height: 110px;
    margin-top: 15px;
  }
  #sec05 .priceBox .count {
    font-size: 33px;
    width: 98px;
  }
  #sec05 .priceBox .price {
    width: calc(100% - 98px);
  }
  #sec05 .priceBox .price img {
    height: 44px;
  }
  #sec05 .body_aco .caution {
    font-size: 18px;
    margin-top: 16px;
  }
  #sec05 .higeStart {
    margin-top: 49px;
  }
}

#banner {
  margin-bottom: calc(100vw / var(--viewport) * 80);
}
@media screen and (min-width:1518px) {
  #banner {
    margin-bottom: 80px;
  }
}

#sec05 .parts {
  background: #3c3a39;
  /*padding-bottom: calc(100vw / var(--viewport) * 50);*/
  margin-bottom: calc(100vw / var(--viewport) * 60);
}
#sec05 .parts .title {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: bold;
  height: calc(100vw / var(--viewport) * 100);
  background: #043650;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(100vw / var(--viewport) * 60);
}
#sec05 .parts ul {
  /*padding: calc(100vw / var(--viewport) * 34) calc(100vw / var(--viewport) * 30) 0;*/
}
#sec05 .parts ul li {
  width: 48.9%;
}
#sec05 .parts ul li:nth-child(n + 3) {
  margin-top: calc(100vw / var(--viewport) * 60);
}
#sec05 .parts ul li .midashi {
  color: #fff;
  background: #043650;
  height: calc(100vw / var(--viewport) * 70);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#sec05 .parts ul li .midashi .font_gold {
  font-size: calc(100vw / var(--viewport) * 33);
  font-weight: bold;
  display: inline-block;
}
#sec05 .parts .caution {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 18);
  margin: calc(100vw / var(--viewport) * 16) 0 0;
}
@media screen and (min-width:1518px) {
  #sec05 .parts {
    /*padding-bottom: 50px;*/
    margin-bottom: 60px;
  }
  #sec05 .parts .title {
    font-size: 28px;
    height: 100px;
    margin-top: 60px;
  }
  #sec05 .parts ul {
    /*padding: 34px 30px 0;*/
  }
  #sec05 .parts ul li:nth-child(n + 3) {
    margin-top: 60px;
  }
  #sec05 .parts ul li .midashi {
    height: 70px;
  }
  #sec05 .parts ul li .midashi .font_gold {
    font-size: 33px;
  }
  #sec05 .parts .caution {
    font-size: 18px;
    margin: 16px 0 0;
  }
}

.ginza {
  background: #3c3a39;
  padding: 0 0 calc(100vw / var(--viewport) * 54);
}
.ginza .title {
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: bold;
  text-align: center;
  background: #bba171;
  width: 100%;
  height: calc(100vw / var(--viewport) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
}
.ginza .photo {
  width: 100%;
  padding: calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 30)
    0;
}
.ginza ul {
  padding: calc(100vw / var(--viewport) * 15) calc(100vw / var(--viewport) * 30)
    0;
}
.ginza ul li {
  width: 48.9%;
}
.ginza .priceBox .count {
  font-size: calc(100vw / var(--viewport) * 30);
  text-align: center;
  line-height: 1.13;
}
.ginza > .priceBox {
  margin: calc(100vw / var(--viewport) * 15) calc(100vw / var(--viewport) * 30)
    0;
}
.ginza > .priceBox .count {
  width: calc(100vw / var(--viewport) * 186) !important;
}
.ginza > .priceBox .price {
  width: calc(100% - calc(100vw / var(--viewport) * 186));
}
.ginza .caution {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 18);
  margin: calc(100vw / var(--viewport) * 16) calc(100vw / var(--viewport) * 30)
    0;
}
@media screen and (min-width:1518px) {
  .ginza {
    padding: 0 0 54px;
  }
  .ginza .title {
    font-size: 28px;
    height: 100px;
  }
  .ginza .photo {
    padding: 30px 30px 0;
  }
  .ginza ul {
    padding: 15px 30px 0;
  }
  .ginza .priceBox .count {
    font-size: 30px;
  }
  .ginza > .priceBox {
    margin: 15px 30px 0;
  }
  .ginza > .priceBox .count {
    width: 186px !important;
  }
  .ginza > .priceBox .price {
    width: calc(100% - 186px);
  }
  .ginza .caution {
    font-size: 18px;
    margin: 16px 30px 0;
  }
}

#sec06 .inner {
  padding: calc(100vw / var(--viewport) * 40) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 54);
}
#sec06 .inner .box {
  margin-bottom: calc(100vw / var(--viewport) * 50);
}
#sec06 .inner .box img {
  border-bottom: 2px solid #bba171;
}
#sec06 .inner .box .text {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  background: #000;
  padding: calc(100vw / var(--viewport) * 28) calc(100vw / var(--viewport) * 32)
    calc(100vw / var(--viewport) * 55);
}
@media screen and (min-width: 1518px) {
  #sec06 .inner {
    padding: 40px 30px 54px;
  }
  #sec06 .inner .box {
    margin-bottom: 50px;
  }
  #sec06 .inner .box .text {
    font-size: 22px;
    padding: 28px 32px 55px;
  }
}

#sec07 {
  overflow: hidden;
}
#sec07 .inner .text {
  font-size: calc(100vw / var(--viewport) * 24);
  font-weight: 500;
  text-align: center;
  margin-top: calc(100vw / var(--viewport) * 46);
}
#sec07 .relative {
  padding-top: 1px;
  margin-top: calc(100vw / var(--viewport) * 45);
}
#sec07 .relative:before {
  content: "\025c0 \025c0 \025c0";
  position: absolute;
  top: -1em;
  right: calc(100vw / var(--viewport) * 22);
}
#sec07 .tableArea {
  margin-top: calc(100vw / var(--viewport) * 70);
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
#sec07 .slider2 {
  margin: calc(100vw / var(--viewport) * 20) 0 0;
  overflow: visible;
}
#sec07 .inner li {
  background: none;
}
#sec07 .inner li .box {
  margin-bottom: calc(100vw / var(--viewport) * 28);
}
#sec07 .inner .midashi {
  color: #fff;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#sec07 .inner .midashi div {
  color: #bba171;
  font-size: calc(100vw / var(--viewport) * 32);
  font-weight: bold;
  background: #000;
  width: calc(100% - calc(100vw / var(--viewport) * 82));
  height: calc(100vw / var(--viewport) * 76);
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec07 .inner .midashi .number {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 40);
  font-weight: 900;
  width: calc(100vw / var(--viewport) * 82);
  margin-right: calc(100vw / var(--viewport) * 10);
}
#sec07 .inner .con {
  flex-wrap: nowrap;
  justify-content: space-between;
}
#sec07 .inner .con div {
  width: 50%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
#sec07 .inner .con div.left {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  text-align: left;
  line-height: 1.6;
  background: #000;
  padding: 0 calc(100vw / var(--viewport) * 20);
  margin-top: calc(100vw / var(--viewport) * 9);
}
#sec07 .inner .box01 .con div.left {
  line-height: 1.4;
}
#sec07 .inner .box01 .con div.left p:nth-child(1) {
  font-size: calc(100vw / var(--viewport) * 18);
}
#sec07 .inner .box01 .con div.left p:nth-child(2) {
  font-size: calc(100vw / var(--viewport) * 22);
}
#sec07 .inner .box01 .con div.left p:nth-child(3) {
  font-size: calc(100vw / var(--viewport) * 25);
}
#sec07 .inner .box01 .con div.left .title {
  text-align: center;
  width: 100%;
  background: #bba170;
  margin-top: 2px;
}
#sec07 .inner .box01 .con div.left .title a {
  color: #000;
  padding: 3px 0;
  display: block;
}
#sec07 .inner .con div.right {
  margin-left: calc(100vw / var(--viewport) * 9);
}
#sec07 .inner .con div a {
  text-decoration: none;
}
@media screen and (min-width: 1518px) {
  #sec07 .inner .text {
    font-size: 24px;
    margin-top: 46px;
  }
  #sec07 .relative {
    margin-top: 45px;
  }
  #sec07 .relative:before {
    right: 22px;
  }
  #sec07 .tableArea {
    margin-top: 70px;
  }
  #sec07 .slider2 {
    margin: 20px 0 0;
  }
  #sec07 .inner li .box {
    margin-bottom: 28px;
  }
  #sec07 .inner .midashi div {
    font-size: 32px;
    width: calc(100% - 82px);
    height: 76px;
  }
  #sec07 .inner .midashi .number {
    font-size: 40px;
    width: 82px;
    margin-right: 10px;
  }
  #sec07 .inner .con div.left {
    font-size: 22px;
    padding: 0 20px;
    margin-top: 9px;
  }
  #sec07 .inner .box01 .con div.left p:nth-child(1) {
    font-size: 18px;
  }
  #sec07 .inner .box01 .con div.left p:nth-child(2) {
    font-size: 22px;
  }
  #sec07 .inner .box01 .con div.left p:nth-child(3) {
    font-size: 25px;
  }
  #sec07 .inner .con div.right {
    margin-left: 9px;
  }
}

#faq {
  padding: calc(100vw / var(--viewport) * 42) 0 0;
  overflow: hidden;
}
#faq h2 img {
  width: calc(100vw / var(--viewport) * 300);
}
#faq .tabs {
  padding: calc(100vw / var(--viewport) * 42) calc(100vw / var(--viewport) * 50) 0;
}
#faq .tabs li {
  margin-bottom: calc(100vw / var(--viewport) * 30);
  cursor: pointer;
}
#faq .box02,
#faq .box03 {
  display: none;
}
#faq .box {
  padding-bottom: calc(100vw / var(--viewport) * 36);
}
#faq .box .ttl_aco {
  margin-top: calc(100vw / var(--viewport) * 50);
  position: relative;
}
#faq .box .ttl_aco:nth-child(1) {
  margin-top: 0;
}
#faq .box .ttl_aco:before {
  content: "";
  width: calc(100vw / var(--viewport) * 36);
  height: calc(100vw / var(--viewport) * 6);
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#faq .box .ttl_aco:after {
  content: "";
  width: calc(100vw / var(--viewport) * 6);
  height: calc(100vw / var(--viewport) * 36);
  background: #000;
  position: absolute;
  top: 50%;
  right: calc(100vw / var(--viewport) * 15);
  transform: translateY(-50%);
}
#faq .box .ttl_aco.active:after {
  display: none;
}
#faq .box .qBox {
  font-size: calc(100vw / var(--viewport) * 26);
  font-weight: 600;
  white-space: nowrap;
  width: calc(100vw / var(--viewport) * 582);
  display: flex;
  align-items: center;
  padding-bottom: calc(100vw / var(--viewport) * 15);
  border-bottom: calc(100vw / var(--viewport) * 2) solid #000;
}
#faq .box .qBox img {
  width: calc(100vw / var(--viewport) * 44);
  max-width: 44px;
  margin-right: calc(100vw / var(--viewport) * 20);
}
#faq .box .aBox {
  color: #f29625;
  font-size: calc(100vw / var(--viewport) * 26);
  font-weight: 600;
  width: calc(100vw / var(--viewport) * 482);
  display: flex;
  align-items: center;
  padding-top: calc(100vw / var(--viewport) * 15);
  margin-left: calc(100vw / var(--viewport) * 100);
}
#faq .box .aBox img {
  width: calc(100vw / var(--viewport) * 48);
  max-width: 48px;
  margin-right: calc(100vw / var(--viewport) * 20);
}
#faq .box .aBox p {
  white-space: nowrap;
}
#faq .box .body_aco {
  line-height: 1.75;
  margin-top: calc(100vw / var(--viewport) * 36);
  margin-left: calc(100vw / var(--viewport) * 100);
  display: none;
}
#faq .box .body_aco p {
  font-size: calc(100vw / var(--viewport) * 24);
}
@media screen and (min-width:1518px) {
  #faq {
    padding: 42px 0 0;
  }
  #faq h2 img {
    width: 300px;
  }
  #faq .tabs {
    padding: 42px 50px 0;
  }
  #faq .tabs li {
    margin-bottom: 30px;
  }
  #faq .box {
    padding-bottom: 36px;
  }
  #faq .box .ttl_aco {
    margin-top: 50px;
  }
  #faq .box .ttl_aco:before {
    width: 36px;
    height: 6px;
  }
  #faq .box .ttl_aco:after {
    width: 6px;
    height: 36px;
    right: 15px;
  }
  #faq .box .qBox {
    font-size: 26px;
    width: 582px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
  }
  #faq .box .qBox img {
    width: 44px;
    margin-right: 20px;
  }
  #faq .box .aBox {
    font-size: 26px;
    width: 482px;
    padding-top: 15px;
    margin-left: 100px;
  }
  #faq .box .aBox img {
    width: 48px;
    margin-right: 20px;
  }
  #faq .box .body_aco {
    margin-top: 36px;
    margin-left: 100px;
  }
  #faq .box .body_aco p {
    font-size: 24px;
  }
}

.doctorBox .imgBox {
  position: relative;
}
.doctorBox .imgBox .textBox {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 21);
  line-height: 1.63;
  position: absolute;
  top: calc(100vw / var(--viewport) * 20);
  left: calc(100vw / var(--viewport) * 278);
}
.doctorBox .imgBox .textBox .flex {
  justify-content: flex-start;
  align-items: center;
}
.doctorBox .imgBox .textBox .flex .detail {
  font-size: calc(100vw / var(--viewport) * 19);
}
.doctorBox .imgBox .textBox .flex .name {
  font-size: calc(100vw / var(--viewport) * 37);
  font-weight: 500;
  margin-left: calc(100vw / var(--viewport) * 16);
}
.doctorBox .imgBox .textBox .text span {
  width: calc(100vw / var(--viewport) * 72);
  display: inline-block;
}
.doctorBox .imgBox .textBox .gakkai {
  font-size: calc(100vw / var(--viewport) * 22);
  font-weight: 500;
  margin-top: calc(100vw / var(--viewport) * 8);
}
.doctorBox .under {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  background: #000;
  padding: calc(100vw / var(--viewport) * 33) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 77);
}
.doctorBox .under .big {
  font-size: calc(100vw / var(--viewport) * 25);
  font-weight: 500;
}
@media screen and (min-width:1518px) {
  .doctorBox .imgBox .textBox {
    font-size: 21px;
    top: 20px;
    left: 278px;
  }
  .doctorBox .imgBox .textBox .flex .detail {
    font-size: 19px;
  }
  .doctorBox .imgBox .textBox .flex .name {
    font-size: 37px;
    margin-left: 16px;
  }
  .doctorBox .imgBox .textBox .text span {
    width: 72px;
  }
  .doctorBox .imgBox .textBox .gakkai {
    font-size: 22px;
    margin-top: 8px;
  }
  .doctorBox .under {
    font-size: 22px;
    padding: 33px 30px 77px;
  }
  .doctorBox .under .big {
    font-size: 25px;
  }
}

#sec09 .inner {
  width: 100%;
  background: #646464;
  padding: calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 60);
  box-sizing: border-box;
}
#sec09 .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
#sec09 .flex .relative {
  text-align: center;
  width: 48%;
  margin-bottom: calc(100vw / var(--viewport) * 30);
  position: relative;
}
#sec09 .flex li .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sec09 .flex li .title div {
  line-height: 1.2;
  position: absolute;
}
#sec09 .flex li .title div p:nth-child(1) {
  font-size: calc(100vw / var(--viewport) * 24);
}
#sec09 .flex li .title div p:nth-child(2) {
  font-size: calc(100vw / var(--viewport) * 32);
  font-weight: 500;
}
#sec09 .flex li .title .soon {
  width: 39.4%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * 12);
  margin: 0 auto;
}
#sec09 .flex li .btn_more {
  font-size: calc(100vw / var(--viewport) * 22);
  font-weight: bold;
  line-height: calc(100vw / var(--viewport) * 64);
  background: #000;
  border-top: 1px solid #fff;
  cursor: pointer;
}
#sec09 .flex li + .body_more {
  text-align: left;
  width: calc(100vw / var(--viewport) * 690);
  background: rgba(255, 255, 255, 0.93);
  padding-bottom: calc(100vw / var(--viewport) * 42);
  box-sizing: border-box;
  z-index: 1;
  display: none;
}
#sec09 .flex .relative:nth-child(2n) li + .body_more {
  left: initial;
  right: 0;
  margin-left: calc(100vw / var(--viewport) * -358);
}
#sec09 .flex li + .body_more .outer {
  height: 0;
  padding-bottom: 38.11%;
  overflow: hidden;
  position: relative;
}
#sec09 .flex li + .body_more .outer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sec09 .flex li + .body_more dl {
  font-size: calc(100vw / var(--viewport) * 24);
  line-height: 1.75;
  padding: calc(100vw / var(--viewport) * 30);
  display: flex;
  flex-wrap: wrap;
}
#sec09 .flex li + .body_more dt {
  width: 5em;
}
#sec09 .flex li + .body_more dd {
  width: calc(100% - 5em);
}
@media screen and (min-width: 1518px) {
  #sec09 .inner {
    padding: 30px 30px 60px;
  }
  #sec09 .flex .relative {
    margin-bottom: 30px;
  }
  #sec09 .flex li .title div p:nth-child(1) {
    font-size: 24px;
  }
  #sec09 .flex li .title div p:nth-child(2) {
    font-size: 32px;
  }
  #sec09 .flex li .title .soon {
    bottom: 12px;
  }
  #sec09 .flex li .btn_more {
    font-size: 22px;
    line-height: 64px;
  }
  #sec09 .flex li + .body_more {
    width: 690px;
    padding-bottom: 42px;
  }
  #sec09 .flex .relative:nth-child(2n) li + .body_more {
    margin-left: -358px;
  }
  #sec09 .flex li + .body_more dl {
    font-size: 24px;
    padding: 30px;
  }
}

#footer {
  color: #fff;
  text-align: center;
  background: #000;
  padding: calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 30)
    calc(100vw / var(--viewport) * 174);
}
#footer .caution {
  font-size: calc(100vw / var(--viewport) * 17);
  text-align: left;
}
#footer .l-footer__logo {
  width: calc(100vw / var(--viewport) * 99);
  max-width: 100px;
  margin: calc(100vw / var(--viewport) * 70) auto 0;
}
#footer a {
  color: #fff;
}
#footer .footerflex1 {
  display: none;
}
#footer .footerText {
  font-size: calc(100vw / var(--viewport) * 15);
}
@media screen and (max-width: 767px) {
  #footer .copy-right {
    font-size: calc(100vw / var(--viewport) * 18);
    letter-spacing: 0;
    line-height: 0;
  }
  footer .displayFlex {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #footer {
    padding-bottom: calc(100vw / var(--viewport) * 30);
  }
  .displayFlex {
    display: flex;
    justify-content: center;
    line-height: 1.6;
    color: #fff;
  }
  #footer .copy-right {
    font-size: 16px;
  }
  #footer .footerflex1 {
    display: block;
    margin: calc(100vw / var(--viewport) * 10) 0.6em 0 0;
  }
  #footer .footerflex1 a {
    text-decoration: underline;
  }
  #footer .footerflex2 {
    margin: calc(100vw / var(--viewport) * 10) 0 0 0.6em;
  }
}
@media screen and (min-width: 1518px) {
  #footer {
    padding: 30px;
  }
  #footer .caution {
    font-size: 17px;
  }
  #footer .l-footer__logo {
    width: 99px;
    margin: 0 auto 20px;
  }
  #footer .footerText {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .background {
    display: none;
  }
  .pcBanner {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .background {
    background: #000;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.pcBanner {
  display: none;
}
@media screen and (min-width: 768px) {
  .pcBanner {
    display: block;
    position: fixed;
    width: 39.1%;
    max-width: 884px;
    left: 3.36%;
    bottom: 22%;
  }
}

.cta-bottomFixedArea {
  width: 100%;
  background: var(--gold);
  position: fixed;
  left: 0;
  bottom: 0;
  /*display: flex;*/
  justify-content: space-between;
  gap: calc(100vw / var(--viewport) * 8);
  opacity: 0;
}
.cta-bottomFixedArea {
  opacity: 1;
}
.cta-bottomFixedArea a {
  color: #000;
  font-size: calc(100vw / var(--viewport) * 39);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  /*width: 50%;*/
  height: calc(100vw / var(--viewport) * 127);
  border: calc(100vw / var(--viewport) * 6) solid var(--gold);
}
.cta-bottomFixedArea a:nth-child(1) {
  /*background: #043650;*/
}
.cta-bottomFixedArea a:nth-child(2) {
  background: #000;
}
.cta-bottomFixedArea a span {
  font-size: calc(100vw / var(--viewport) * 32);
}
@media screen and (min-width: 768px) {
  .cta-bottomFixedArea {
    display: none !important;
  }
  .cta-bottomFixedArea a {
    display: block;
    animation: zoom infinite 2.2s;
  }
  @keyframes zoom {
    0% {
      scale: 1;
    }
    50% {
      scale: 1.1;
    }
    100% {
      scale: 1;
    }
  }
}

[data-animate="fadeInUp"],
[data-animate="zoomIn"],
[data-animate="fadeInLeft"] {
  opacity: 0;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* 251012 CTAボタン変更・症例写真デフォルトタブ変更・比較表画像変更 */
.cta a {
  background: none;
  height: auto;
  border: none;
  box-shadow: none;
}

.bodys .box01 {
  display: none;
}

.bodys .box02 {
  display: none;
}

.bodys .box03 {
  display: block;
}

.newPriceArea .midashi {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 40);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  height: calc(100vw / var(--viewport) * 121);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #053650;
  margin-top: calc(100vw / var(--viewport) * 50);
}
.newPriceArea .midashi.first {
  margin-top: 0;
}
.newPriceArea .midashi .sub {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  text-align: center;
  display: block;
}
.newPriceArea .imgBox {
  margin-bottom: calc(100vw / var(--viewport) * 19);
}
.newPriceArea .newTabs {
  display: flex;
  justify-content: space-between;
  gap: 1.74%;
}
.newPriceArea .newTabs li,
.newPriceArea .newTabs li.active {
  width: 33.33%;
  cursor: pointer;
}
.newPriceArea .newTabs li {
  font-size: calc(100vw / var(--viewport) * 34);
  height: calc(100vw / var(--viewport) * 67);
  background: #BEBEBE;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(100vw / var(--viewport) * 16) calc(100vw / var(--viewport) * 16) 0 0;
}
.newPriceArea .newTabs li.active {
  color: #fff;
  background: #053650;
}
.newPriceArea .bodys {
  color: #fff;
  background: #053650;
  height: calc(100vw / var(--viewport) * 124);
  display: flex;
  justify-content: center;
  align-items: center;
}
.newPriceArea .bodys .newBox {
  width: 100%;
}
.newPriceArea .bodys .newBox:nth-child(n+2) {
  display: none;
}
.newPriceArea .bodys .newBox .flex {
  justify-content: space-evenly;
  align-items: center;
}
.newPriceArea .bodys .newBox .flex .price img {
  height: calc(100vw / var(--viewport) * 73);
}
.newPriceArea .bodys .newBox .flex .divider {
  width: 2px;
  height: calc(100vw / var(--viewport) * 75);
  background: #fff;
}
.newPriceArea .bodys .newBox .flex .once {
  text-align: center;
  line-height: 1.8;
}
.newPriceArea .bodys .newBox .flex .once img {
  height: calc(100vw / var(--viewport) * 49);
}
.newPriceArea .caution {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  line-height: 1.63;
  margin-top: calc(100vw / var(--viewport) * 35);
  padding: calc(100vw / var(--viewport) * 30) 0;
}
@media screen and (min-width:1518px) {
  .newPriceArea .midashi {
    font-size: 40px;
    height: 121px;
    margin-top: 50px;
  }
  .newPriceArea .midashi .sub {
    font-size: 28px;
  }
  .newPriceArea .imgBox {
    margin-bottom: 19px;
  }
  .newPriceArea .newTabs li {
    font-size: 34px;
    height: 67px;
    border-radius: 16px 16px 0 0;
  }
  .newPriceArea .bodys {
    height: 124px;
  }
  .newPriceArea .bodys .newBox .flex .price img {
    height: 73px;
  }
  .newPriceArea .bodys .newBox .flex .divider {
    width: 2px;
    height: 75px;
  }
  .newPriceArea .bodys .newBox .flex .once img {
    height: 49px;
  }
  .newPriceArea .caution {
    font-size: 22px;
    margin-top: 35px;
    padding: 30px 0;
  }
}

#about {
  padding: 0 0 calc(100vw / var(--viewport) * 76);
}
#about img {
  margin: calc(100vw / var(--viewport) * 48) 0 calc(100vw / var(--viewport) * 25);
}
#about li .title {
  color: #808080;
  font-size: calc(100vw / var(--viewport) * 86);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: calc(100vw / var(--viewport) * 33);
}
#about li .midashi {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 25);
  font-weight: bold;
  line-height: calc(100vw / var(--viewport) * 68);
  background: #000;
  text-align: center;
  width: calc(100vw / var(--viewport) * 508);
  display: block;
  margin: 0 auto calc(100vw / var(--viewport) * 20);
}
#about li p.text {
  font-size: calc(100vw / var(--viewport) * 24);
  line-height: 1.67;
}
@media screen and (min-width:1518px) {
  #about {
    padding: 0 0 76px;
  }
  #about img {
    margin: 48px 0 25px;
  }
  #about li .title {
    font-size: 86px;
    margin-bottom: 33px;
  }
  #about li .midashi {
    font-size: 25px;
    line-height: 68px;
    width: 508px;
    margin: 0 auto 20px;
  }
  #about li p.text {
    font-size: 24px;
  }
}
