@font-face {
  font-family: DIN2014-ExtraBold;
  src: url(../font/DIN2014ExtraBold.ttf) format("truetype");
}
@font-face {
  font-family: DIN2014-Bold;
  src: url(../font/DIN2014Bold.ttf) format("truetype");
}
@font-face {
  font-family: DIN2014-Regular;
  src: url(../font/DIN2014-Regular.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

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

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  height: 80rem;
  padding: 0 24rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
header .logo {
  width: 193rem;
  display: flex;
}
header .contact__btn {
  width: 200rem;
  height: 44rem;
  border-radius: 22rem;
  background: #e7380d;
  border: 1rem solid #e7380d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header .contact__btn:hover {
  background: white;
}
header .contact__btn:hover span {
  color: #e7380d;
}
header .contact__btn span {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}

.frontview {
  width: 100%;
  padding: 210rem 0 130rem;
  margin-bottom: 150rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/mv-back.webp);
  background-size: cover;
}
.frontview .content__text {
  width: 470rem;
}
.frontview .content__text h2 {
  font-weight: bold;
  font-size: 40rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 4rem 0;
  text-align: center;
  color: #b4861d;
}
.frontview .content__text .frame__text {
  padding: 18rem;
  margin-top: 8rem;
  background: #b4861d;
}
.frontview .content__text .frame__text .f__txt {
  font-size: 34rem;
  font-weight: 900;
  color: white;
}
.frontview .content__text .frame__text .txt {
  font-size: 18rem;
  line-height: 36rem;
  margin-top: 6rem;
  color: white;
}
.frontview .content__text .c__txt {
  font-weight: 500;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 36rem;
  padding-left: 15rem;
  margin-top: 25rem;
  text-align: left;
  color: #262626;
}
.frontview .card__image {
  width: 680rem;
  margin-left: 56rem;
  display: flex;
}

.section-title .en__txt {
  font-family: DIN2014-ExtraBold;
  font-weight: normal;
  font-size: 28rem;
  letter-spacing: 0.2em;
  line-height: 28rem;
  padding-bottom: 21rem;
  text-align: center;
  color: #b4861d;
  position: relative;
}
.section-title .en__txt:after {
  content: "";
  width: 56rem;
  height: 4rem;
  background: #b4861d;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}
.section-title .ja__txt {
  font-weight: bold;
  font-size: 40rem;
  margin-top: 25rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #333;
}
.section-title .ja__txt span {
  font-size: 56rem;
  color: #B4861D;
}

.section-feature {
  width: 100%;
}
.section-feature .feature__items {
  margin-top: 100rem;
}
.section-feature .feature__items .f__item {
  width: calc(50% - 683rem + 1280rem);
  margin: 0 0 70rem auto;
  padding: 25rem 0 20rem 75rem;
  background: #f7f7f7;
  box-shadow: 1.41rem 1.41rem 2rem rgba(85, 85, 85, 0.2);
  position: relative;
}
.section-feature .feature__items .f__item:nth-child(2n) {
  margin: 0 auto 70rem 0;
  padding-left: calc(50% - 683rem + 86rem + 75rem);
}
.section-feature .feature__items .f__item:nth-child(2n) .num {
  left: auto;
  right: 40rem;
}
.section-feature .feature__items .f__item .num {
  font-family: DIN2014-Bold;
  font-weight: normal;
  font-size: 180rem;
  line-height: 1;
  text-align: left;
  color: #f1ede7;
  position: absolute;
  left: 15rem;
  top: -50rem;
}
.section-feature .feature__items .f__item h3 {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  text-align: left;
  color: #b4861d;
  position: relative;
}
.section-feature .feature__items .f__item p {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  margin-top: 8rem;
  text-align: left;
  color: #333;
  position: relative;
}

.section-cardlist {
  width: 1100rem;
  margin: auto;
  margin-top: 100rem;
}
.section-cardlist .content__table {
  width: 100%;
  margin-top: 45rem;
}
.section-cardlist .content__table table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 1.41rem 1.41rem 2rem rgba(85, 85, 85, 0.2);
  border: 1rem solid #ddd;
}
.section-cardlist .content__table table tr:first-child td {
  vertical-align: top;
}
.section-cardlist .content__table table tr:nth-child(3) td {
  vertical-align: top;
}
.section-cardlist .content__table table tr td {
  width: 240rem;
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: -0.05em;
  line-height: 1.6;
  padding: 20rem 11rem;
  text-align: center;
  color: #333;
  border: 1rem solid #ddd;
  vertical-align: middle;
}
.section-cardlist .content__table table tr td button {
  width: 200rem;
  height: 44rem;
  margin: auto;
  border-radius: 22rem;
  background: #e7380d;
  border: 1rem solid #e7380d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.section-cardlist .content__table table tr td button:hover {
  background: white;
}
.section-cardlist .content__table table tr td button:hover span {
  color: #e7380d;
}
.section-cardlist .content__table table tr td button span {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
.section-cardlist .content__table table tr td .visa {
  width: 194rem;
  margin: auto;
}
.section-cardlist .content__table table tr td .visa.c01 {
  width: 60rem;
}
.section-cardlist .content__table table tr td .visa.c02 {
  width: 80rem;
}
.section-cardlist .content__table table tr td span {
  padding-left: 10rem;
  text-indent: -8rem;
  display: block;
  text-align: left;
}
.section-cardlist .content__table table tr td .card {
  width: 100%;
  display: flex;
}
.section-cardlist .content__table table tr td .card__lbl {
  height: 50rem;
  font-weight: 500;
  margin-top: 8rem;
  color: #b4861d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-cardlist .content__table table tr td .f-12 {
  font-size: 12rem;
  margin-top: 5rem;
  padding: 0;
  text-indent: 0;
  display: block;
  text-align: center;
  color: #333;
}
.section-cardlist .content__table table tr td:nth-child(1) {
  width: 128rem;
  padding-left: 16rem;
  background: #f6f6f6;
  font-size: 16rem;
  font-weight: 500;
  vertical-align: middle;
  text-align: left;
}

.section-flow {
  margin-top: 75rem;
  background: url(../img/flow_bg.png);
  background-size: cover;
  padding: 75rem 0;
}
.section-flow .flow__items {
  width: 1100rem;
  margin: auto;
  margin-top: 48rem;
  display: flex;
  justify-content: center;
  justify-content: space-between;
}
.section-flow .flow__items .f__item {
  width: 210rem;
  margin: 0 6rem;
  background: #fff;
  box-shadow: 1.41rem 1.41rem 2rem rgba(85, 85, 85, 0.2);
  position: relative;
}
.section-flow .flow__items .f__item:nth-child(2) {
  animation-delay: 0.3s;
}
.section-flow .flow__items .f__item:nth-child(3) {
  animation-delay: 0.6s;
}
.section-flow .flow__items .f__item:nth-child(4) {
  animation-delay: 0.9s;
}
.section-flow .flow__items .f__item:nth-child(5) {
  animation-delay: 1.2s;
}
.section-flow .flow__items .f__item:last-child:after {
  content: unset;
}
.section-flow .flow__items .f__item:after {
  content: "";
  width: 14rem;
  height: 5rem;
  background: #b4861d;
  position: absolute;
  right: -14rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.section-flow .flow__items .f__item .f__header {
  height: 74rem;
  background: #b4861d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-flow .flow__items .f__item .f__header .step__lbl {
  font-family: DIN2014-ExtraBold;
  font-weight: normal;
  font-size: 22rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  text-align: left;
  color: #fff;
}
.section-flow .flow__items .f__item .f__header .step__lbl span {
  font-size: 28rem;
}
.section-flow .flow__items .f__item .f__header .gap {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 26rem;
  text-align: left;
  color: #fff;
}
.section-flow .flow__items .f__item .content__text {
  padding: 15rem;
}
.section-flow .flow__items .f__item .content__text .t__lbl {
  height: 60rem;
  font-weight: normal;
  font-size: 18rem;
  line-height: 26rem;
  text-align: center;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-flow .flow__items .f__item .content__text .f__icon {
  width: auto;
  height: 90rem;
  margin: auto;
  margin-top: 6rem;
}
.section-flow .flow__items .f__item .content__text .f__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.section-flow .flow__items .f__item .content__text .f__txt {
  font-weight: normal;
  font-size: 15rem;
  line-height: 25rem;
  margin-top: 15rem;
  text-align: left;
  color: #333;
}
.section-flow .flow__items .f__item .content__text a {
  font-weight: normal;
  font-size: 15rem;
  line-height: 26.25rem;
  text-align: left;
  color: #b4861d;
}
.section-flow .flow__items .f__item .content__text .f-12 {
  font-weight: normal;
  font-size: 12rem;
  line-height: 22rem;
  text-align: left;
  color: #333;
}
.section-flow .note__txt {
  max-width: 1100rem;
  margin: auto;
  font-weight: normal;
  font-size: 12rem;
  line-height: 21rem;
  margin-top: 10rem;
  text-align: left;
  color: #333;
}
.section-flow .need__doc {
  max-width: 1100rem;
  margin: auto;
  margin-top: 50rem;
}
.section-flow .need__doc h2 {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  padding: 20rem 0;
  text-align: center;
  color: #fff;
  background: #b4861d;
}
.section-flow .need__doc .content__text {
  padding: 20rem 25rem;
  background: white;
}
.section-flow .need__doc .content__text .chk__items {
  display: flex;
  align-items: center;
}
.section-flow .need__doc .content__text .chk__items .c__item {
  margin-right: 30rem;
  display: flex;
  align-items: center;
}
.section-flow .need__doc .content__text .chk__items .c__item .icon {
  width: 18rem;
  margin-right: 12rem;
  display: flex;
}
.section-flow .need__doc .content__text .chk__items .c__item .lbl {
  font-weight: bold;
  font-size: 18rem;
  color: #333;
}

.section-service {
  width: 1100rem;
  margin: auto;
  margin-top: 150rem;
}
.section-service .service__items {
  width: 1100rem;
  margin: auto;
  margin-top: 50rem;
}
.section-service .service__items .c__item {
  width: 100%;
  height: auto;
  margin-bottom: 64rem;
  background: #fff;
  border: 1rem solid #ddd;
  box-shadow: 1.41rem 1.41rem 2rem rgba(85, 85, 85, 0.2);
}
.section-service .service__items .c__item h2 {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  padding: 20rem 0;
  text-align: center;
  color: #fff;
  background: #b4861d;
}
.section-service .service__items .c__item .content__text {
  width: 100%;
  padding: 40rem 32rem;
  text-align: center;
}
.section-service .service__items .c__item .content__text .service__logo {
  width: 840rem;
  margin: auto;
}
.section-service .service__items .c__item .content__text .l__txt {
  font-weight: bold;
  font-size: 18rem;
  line-height: 26rem;
  margin-top: 35rem;
  text-align: center;
  color: #333;
}
.section-service .service__items .c__item .content__text .l__link {
  font-weight: normal;
  font-size: 15rem;
  line-height: 26.25rem;
  margin-top: 12rem;
  display: inline-block;
  text-align: left;
  color: #b4861d;
}
.section-service .service__items .c__item .content__text .text-image {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-service .service__items .c__item .content__text .text-image .detail__text {
  width: 640rem;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .t__txt {
  display: flex;
  align-items: flex-start;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .t__txt .icon {
  width: 28rem;
  margin-right: 10rem;
  display: flex;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .t__txt .t__lbl {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  text-align: left;
  color: #b4861d;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .t__txt .t__lbl span {
  font-size: 12rem;
  font-weight: normal;
  display: block;
  margin-top: -6rem;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.03em;
  line-height: 25rem;
  margin-top: 10rem;
  text-align: left;
  color: #333;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .txt {
  font-weight: normal;
  font-size: 14.25rem;
  letter-spacing: 0.02em;
  line-height: 23.76rem;
  padding: 15rem 10rem;
  text-align: left;
  color: #333;
  background: #f6f6f6;
}
.section-service .service__items .c__item .content__text .text-image .detail__text .n__txt {
  font-weight: normal;
  font-size: 12rem;
  line-height: 21rem;
  margin-top: 5rem;
  text-align: left;
  color: #333;
}
.section-service .service__items .c__item .content__text .text-image .c__image {
  width: 360rem;
  margin-left: 15rem;
  display: flex;
}
.section-service .service__items .c__item .content__text .line {
  width: 100%;
  height: 1rem;
  margin: 50rem 0;
  background: #ddd;
}
.section-service .service__items .c__item .content__text .text__items {
  width: 100%;
  display: flex;
}
.section-service .service__items .c__item .content__text .text__items .t__item {
  width: 50%;
  padding: 0 30rem;
  text-align: left;
}
.section-service .service__items .c__item .content__text .text__items .t__item:last-child {
  padding-right: 0;
}
.section-service .service__items .c__item .content__text .text__items .t__item .t__txt {
  display: flex;
  align-items: flex-start;
}
.section-service .service__items .c__item .content__text .text__items .t__item .t__txt .icon {
  width: 28rem;
  margin-right: 10rem;
  display: flex;
}
.section-service .service__items .c__item .content__text .text__items .t__item .t__txt .t__lbl {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  text-align: left;
  color: #b4861d;
}
.section-service .service__items .c__item .content__text .text__items .t__item .t__txt .t__lbl span {
  font-size: 12rem;
  font-weight: normal;
  display: block;
  margin-top: -6rem;
}
.section-service .service__items .c__item .content__text .text__items .t__item .just__item {
  display: flex;
  justify-content: space-between;
}
.section-service .service__items .c__item .content__text .text__items .t__item .price__text {
  width: 100%;
  margin-top: 18rem;
  display: flex;
  align-items: center;
}
.section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__lbl {
  width: 50%;
  height: 48rem;
  background: #b4861d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18rem;
  line-height: 26rem;
  margin-right: 0;
  text-align: left;
  color: #fff;
}
.section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__lbl.c01 {
  width: 116rem;
}
.section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__lbl:last-child {
  background: #f6f6f6;
  color: #333333;
}
.section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__txt {
  font-weight: bold;
  font-size: 18rem;
  line-height: 26rem;
  text-align: left;
  color: #333;
}
.section-service .service__items .c__item .content__text .text__items .t__item .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.03em;
  line-height: 25rem;
  margin-top: 10rem;
  text-align: left;
  color: #333;
}
.section-service .service__items .c__item .content__text .text__items .t__item:first-child {
  padding-left: 0;
  border-right: 1rem solid #ddd;
}

.section-contact {
  width: 100%;
  background: #f7f7f7;
  margin-top: 80rem;
  padding: 70rem;
}
.section-contact a {
  transition: 0.3s;
}
.section-contact a:hover {
  opacity: 0.7;
}
.section-contact .contact__items {
  margin-top: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-contact .contact__items .c__item {
  width: 534rem;
  margin: 0 16rem;
}
.section-contact .contact__items .c__item h2 {
  width: 534rem;
  height: 96rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b4861d;
  font-weight: bold;
  font-size: 18rem;
  line-height: 28rem;
  text-align: center;
  color: #fff;
}
.section-contact .contact__items .c__item .content__text {
  padding: 25rem;
  text-align: center;
}
.section-contact .contact__items .c__item .content__text .c__lbl {
  font-weight: bold;
  font-size: 18rem;
  line-height: 26rem;
  text-align: center;
  color: #333;
}
.section-contact .contact__items .c__item .content__text a {
  font-family: DIN2014-ExtraBold;
  font-size: 48rem;
  letter-spacing: 0.03em;
  line-height: 84rem;
  text-align: left;
  color: #e7380d;
}
.section-contact .contact__items .c__item .content__text .p__lbl {
  font-weight: bold;
  font-size: 16rem;
  line-height: 28rem;
  margin-top: 20rem;
  text-align: center;
  color: #333;
}
.section-contact .contact__items .c__item .content__text .w__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.05em;
  line-height: 26.25rem;
  margin-top: 3rem;
  text-align: left;
  color: #333;
}
.section-contact .contact__items .c__item .content__text .n__txt {
  font-weight: normal;
  font-size: 12rem;
  line-height: 24rem;
  margin-top: 12rem;
  text-align: left;
  color: #333;
}

.copyright {
  width: 100%;
  height: auto;
  padding: 25rem 0;
  font-family: DIN2014-Regular;
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 28rem;
  text-align: center;
  color: #fff;
  background: #665446;
}

.modal__wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  display: none;
}
.modal__wrapper .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.7;
}
.modal__wrapper .content__inner {
  width: 1100rem;
  height: auto;
  padding: 50rem 0;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
.modal__wrapper .content__inner .c__lbl {
  font-weight: bold;
  font-size: 36rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
.modal__wrapper .content__inner .c__btns {
  display: flex;
  justify-content: center;
  margin-top: 35rem;
}
.modal__wrapper .content__inner .c__btns .c__btn {
  width: 420rem;
  height: 64rem;
  margin: 0 24rem;
  border-radius: 32rem;
  background: #fe4521;
  border: 1rem solid #fe4521;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.modal__wrapper .content__inner .c__btns .c__btn:hover {
  background: white;
}
.modal__wrapper .content__inner .c__btns .c__btn:hover span {
  color: #fe4521;
}
.modal__wrapper .content__inner .c__btns .c__btn span {
  font-weight: 500;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 31.5rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
.modal__wrapper .input__content {
  width: 1100rem;
  height: auto;
  padding: 50rem 0;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.modal__wrapper .input__content .c__lbl {
  font-weight: bold;
  font-size: 36rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
.modal__wrapper .input__content .contact__form {
  width: 600rem;
  margin: auto;
  margin-top: 25rem;
}
.modal__wrapper .input__content .contact__form .c__item {
  width: 100%;
  margin-bottom: 18rem;
}
.modal__wrapper .input__content .contact__form .c__item .c__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.08em;
  line-height: 28rem;
  margin-bottom: 5rem;
  text-align: left;
  color: #333;
}
.modal__wrapper .input__content .contact__form .c__item input {
  width: 100%;
  height: 48rem;
  border-radius: 4rem;
  background: #fff;
  border: 1rem solid #ddd;
  font-size: 16rem;
  letter-spacing: 0.08em;
  line-height: 28rem;
  padding-left: 20rem;
  text-align: left;
  color: #333;
}
.modal__wrapper .input__content .contact__form .c__item .note__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.03em;
  line-height: 25rem;
  margin-top: 5rem;
  text-align: left;
  color: #ea5532;
}
.modal__wrapper .input__content .contact__form .submit__btn {
  width: 420rem;
  height: 64rem;
  margin: auto;
  margin-top: 32rem;
  border-radius: 32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fe4521;
  border: 1rem solid #fe4521;
  transition: 0.3s;
}
.modal__wrapper .input__content .contact__form .submit__btn:hover {
  background: white;
}
.modal__wrapper .input__content .contact__form .submit__btn:hover .lbl {
  color: #fe4521;
}
.modal__wrapper .input__content .contact__form .submit__btn:hover .icon svg path {
  fill: #fe4521;
}
.modal__wrapper .input__content .contact__form .submit__btn:hover .icon svg rect {
  fill: #fe4521;
}
.modal__wrapper .input__content .contact__form .submit__btn .icon {
  width: 29rem;
  display: flex;
}
.modal__wrapper .input__content .contact__form .submit__btn .icon svg {
  width: 100%;
  height: 100%;
}
.modal__wrapper .input__content .contact__form .submit__btn .lbl {
  font-weight: 500;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 31.5rem;
  margin-left: 14rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}

@media screen and (max-width: 1250px) {
  html {
    font-size: 0.8px;
  }
  .frontview .card__image {
    width: 52vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 0.65px;
  }
  .section-feature .feature__items .f__item {
    width: calc(50% - 715rem + 1280rem);
  }
  .section-feature .feature__items .f__item:nth-child(2n) {
    margin: 0 auto 70rem 0;
    padding-left: calc(50% - 683rem + 120rem + 75rem);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.13333vw;
  }
  header {
    width: 100%;
    height: 110rem;
  }
  header .logo {
    width: 308rem;
  }
  header .contact__btn {
    width: 240rem;
    height: 56rem;
    border-radius: 30rem;
  }
  header .contact__btn span {
    font-size: 26rem;
  }
  .frontview {
    width: 100%;
    margin: auto;
    margin-bottom: 150rem;
    padding: 160rem 60rem 40rem;
    display: block;
    background: url(../img/mv-back_sp.webp);
    background-size: cover;
  }
  .frontview .content__text {
    width: 100%;
  }
  .frontview .content__text h2 {
    font-size: 54rem;
    line-height: 1.5;
    padding: 6rem 10rem;
  }
  .frontview .content__text .c__txt {
    font-size: 28rem;
    letter-spacing: 0.05em;
    line-height: 62rem;
    margin-top: 30rem;
    padding-left: 0;
  }
  .frontview .card__image {
    width: 100%;
    margin-left: 0;
    margin-top: 56rem;
  }
  .section-title .en__txt {
    font-weight: normal;
    font-size: 36rem;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }
  .section-title .en__txt:after {
    width: 72rem;
    height: 6rem;
  }
  .section-title .ja__txt {
    font-size: 56rem;
    margin-top: 30rem;
    line-height: 80rem;
  }
  .section-title .ja__txt span {
    font-size: 72rem;
  }
  .section-feature .feature__items .f__item {
    width: 720rem;
    margin: 0 0 100rem auto;
    padding: 25rem 50rem 20rem 50rem;
  }
  .section-feature .feature__items .f__item h3 {
    font-size: 40rem;
    letter-spacing: 0.1em;
    line-height: 60rem;
  }
  .section-feature .feature__items .f__item p {
    font-size: 26rem;
    letter-spacing: 0.05em;
    line-height: 52rem;
    margin-top: 12rem;
  }
  .section-feature .feature__items .f__item .num {
    font-size: 200rem;
    line-height: 1;
    left: 15rem;
    top: -68rem;
  }
  .section-feature .feature__items .f__item:nth-child(2n) {
    margin: 0 auto 100rem 0;
    padding-left: 80rem;
  }
  .section-cardlist {
    margin-top: 145rem;
    width: 100%;
  }
  .section-cardlist .content__table {
    width: 690rem;
    margin: auto;
    margin-top: 45rem;
    overflow: auto;
  }
  .section-cardlist .content__table table {
    width: 210%;
  }
  .section-cardlist .content__table table tr td:nth-child(1) {
    width: 180rem;
    font-size: 22rem;
  }
  .section-cardlist .content__table table tr td {
    width: 340rem;
    font-size: 20rem;
  }
  .section-cardlist .content__table table tr td .f-12 {
    font-size: 18rem;
  }
  .section-cardlist .content__table table tr td .visa {
    width: 245rem;
  }
  .section-cardlist .content__table table tr td .visa.c01 {
    width: 90rem;
  }
  .section-cardlist .content__table table tr td .visa.c02 {
    width: 105rem;
  }
  .section-cardlist .content__table table tr td a {
    width: 240rem;
    height: 50rem;
    margin: auto;
    border-radius: 30rem;
  }
  .section-cardlist .content__table table tr td a span {
    font-size: 20rem;
  }
  .section-flow .flow__items {
    width: 690rem;
    margin: auto;
    margin-top: 48rem;
    display: block;
  }
  .section-flow .flow__items .f__item {
    width: 100%;
    margin: 0;
    margin-bottom: 56rem;
  }
  .section-flow .flow__items .f__item:last-child {
    margin-bottom: 0;
  }
  .section-flow .flow__items .f__item .f__header .step__lbl {
    font-size: 38rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
  .section-flow .flow__items .f__item .f__header .step__lbl span {
    font-size: 52rem;
  }
  .section-flow .flow__items .f__item .f__header {
    height: 128rem;
  }
  .section-flow .flow__items .f__item .f__header .gap {
    font-size: 28rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .section-flow .flow__items .f__item .content__text .t__lbl {
    height: auto;
    font-weight: normal;
    font-size: 32rem;
    line-height: 1.5;
  }
  .section-flow .flow__items .f__item .content__text {
    padding: 35rem 15rem 30rem;
  }
  .section-flow .flow__items .f__item .content__text .f__icon {
    width: auto;
    height: 220rem;
    margin: auto;
    margin-top: 30rem;
  }
  .section-flow .flow__items .f__item .content__text .f__txt {
    font-size: 26rem;
    line-height: 52rem;
    margin-top: 30rem;
  }
  .section-flow .flow__items .f__item .content__text a {
    font-size: 24rem;
    line-height: 1.5;
  }
  .section-flow .flow__items .f__item .content__text .f-12 {
    font-size: 24rem;
    line-height: 38rem;
  }
  .section-flow .note__txt {
    font-size: 24rem;
    line-height: 38rem;
    margin-top: 20rem;
    padding: 0 30rem;
  }
  .section-service {
    width: 690rem;
    margin: auto;
    margin-top: 120rem;
  }
  .section-service .service__items {
    width: 100%;
  }
  .section-service .service__items .c__item .content__text .service__logo {
    width: 100%;
  }
  .section-service .service__items .c__item .content__text .l__txt {
    font-size: 32rem;
    line-height: 56rem;
  }
  .section-service .service__items .c__item .content__text .l__link {
    font-size: 24rem;
    line-height: 1.5;
    margin-top: 15rem;
  }
  .section-service .service__items .c__item {
    margin-bottom: 56rem;
  }
  .section-service .service__items .c__item h2 {
    font-size: 40rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
  .section-service .service__items .c__item .content__text .text-image {
    display: block;
  }
  .section-service .service__items .c__item .content__text .text-image .detail__text .t__txt .icon {
    width: 41rem;
    margin-right: 12rem;
  }
  .section-service .service__items .c__item .content__text .text-image .detail__text .t__txt .t__lbl {
    font-size: 32rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
  .section-service .service__items .c__item .content__text .text-image .detail__text .c__txt {
    font-size: 26rem;
    letter-spacing: 0.03em;
    line-height: 46rem;
    margin-top: 16rem;
  }
  .section-service .service__items .c__item .content__text .text-image .detail__text .txt {
    font-size: 24rem;
    letter-spacing: 0.02em;
    line-height: 43rem;
    padding: 18rem;
  }
  .section-service .service__items .c__item .content__text .text-image .c__image {
    width: 100%;
    margin-left: 0;
    margin-top: 25rem;
  }
  .section-service .service__items .c__item .content__text .text-image .detail__text .t__txt .t__lbl span {
    font-size: 20rem;
    margin-top: -9rem;
  }
  .section-service .service__items .c__item .content__text .text__items {
    display: block;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item {
    width: 100%;
    padding: 0;
    text-align: left;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item:first-child {
    border: 0;
    border-bottom: 1rem solid #ddd;
    padding-bottom: 30rem;
    margin-bottom: 30rem;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .t__txt .icon {
    width: 40rem;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .t__txt .t__lbl {
    font-size: 32rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .t__txt .t__lbl span {
    font-size: 20rem;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .price__text {
    margin-top: 20rem;
    display: block;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__lbl {
    width: 100%;
    height: 64rem;
    font-size: 32rem;
    line-height: 26rem;
    margin-right: 0;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__txt {
    font-size: 32rem;
    margin-top: 7rem;
    line-height: 1.5;
    text-align: center;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .c__txt {
    font-size: 26rem;
    letter-spacing: 0.03em;
    line-height: 46rem;
  }
  .section-service .service__items .c__item .content__text .text__items .just__item {
    display: flex;
    justify-content: space-between;
  }
  .section-service .service__items .c__item .content__text .text__items .t__item .price__text .p__lbl.c01 {
    width: 300rem;
  }
  .section-service .service__items .c__item .content__text {
    width: 100%;
    padding: 40rem 30rem 60rem;
  }
  .section-contact .contact__items {
    margin-top: 50rem;
    display: block;
  }
  .section-contact {
    width: 100%;
    margin-top: 75rem;
    padding: 75rem 0;
  }
  .section-contact .contact__items .c__item {
    width: 690rem;
    margin: 0 auto 35rem;
  }
  .section-contact .contact__items .c__item:last-child {
    margin-bottom: 0;
  }
  .section-contact .contact__items .c__item h2 {
    width: 100%;
    height: 136rem;
    font-size: 28rem;
    line-height: 42rem;
  }
  .section-contact .contact__items .c__item .content__text {
    padding: 30rem 0;
  }
  .section-contact .contact__items .c__item .content__text .c__lbl {
    font-size: 28rem;
    line-height: 1.5;
  }
  .section-contact .contact__items .c__item .content__text a {
    font-size: 72rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
  .section-contact .contact__items .c__item .content__text .p__lbl {
    font-size: 26rem;
    line-height: 1.3;
  }
  .section-contact .contact__items .c__item .content__text .w__txt {
    font-size: 26rem;
    line-height: 45rem;
  }
  .section-contact .contact__items .c__item .content__text .n__txt {
    font-size: 20rem;
    line-height: 36rem;
  }
  .copyright {
    padding: 25rem 0;
    font-size: 20rem;
    line-height: 1.6;
  }
  .section-flow .flow__items .f__item:after {
    content: unset;
  }
  .frontview .content__text .frame__text .f__txt {
    font-size: 46rem;
  }
  .frontview .content__text .frame__text .txt {
    font-size: 28rem;
    line-height: 56rem;
    margin-top: 10rem;
  }
  .section-flow .need__doc {
    width: 690rem;
    margin: auto;
    margin-top: 40rem;
  }
  .section-flow .need__doc h2 {
    font-size: 40rem;
    line-height: 1.6;
  }
  .section-flow .need__doc .content__text .chk__items .c__item .lbl {
    font-size: 28rem;
  }
  .section-flow .need__doc .content__text .chk__items {
    display: block;
  }
  .section-flow .need__doc .content__text .chk__items .c__item .icon {
    width: 25rem;
    margin-right: 16rem;
  }
  .section-flow .need__doc .content__text .chk__items .c__item {
    margin-right: 0;
    margin-bottom: 11rem;
  }
  .modal__wrapper .content__inner {
    width: 690rem;
  }
  .modal__wrapper .content__inner .c__lbl {
    font-size: 40rem;
  }
  .modal__wrapper .content__inner .c__btns {
    display: block;
  }
  .modal__wrapper .content__inner .c__btns .c__btn {
    width: 520rem;
    height: 80rem;
    margin: 26rem auto;
    border-radius: 40rem;
  }
  .modal__wrapper .content__inner .c__btns .c__btn span {
    font-weight: 500;
    font-size: 27rem;
  }
  .modal__wrapper .input__content {
    width: 690rem;
  }
  .modal__wrapper .input__content .c__lbl {
    font-weight: bold;
    font-size: 40rem;
    letter-spacing: 0;
  }
  .modal__wrapper .input__content .contact__form .c__item .c__lbl {
    font-size: 22rem;
  }
  .modal__wrapper .input__content .contact__form .c__item input {
    width: 100%;
    height: 62rem;
    border-radius: 4rem;
    font-size: 25rem;
  }
  .modal__wrapper .input__content .contact__form .c__item .note__txt {
    font-weight: normal;
    font-size: 22rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
  .modal__wrapper .input__content .contact__form .submit__btn {
    width: 520rem;
    height: 80rem;
    margin: auto;
    margin-top: 32rem;
    border-radius: 40rem;
  }
  .modal__wrapper .input__content .contact__form .submit__btn .lbl {
    font-size: 26rem;
  }
  .modal__wrapper .input__content .contact__form .submit__btn .icon {
    width: 40rem;
  }
}/*# sourceMappingURL=style.css.map */