@charset "UTF-8";
:root {
  --color-red: #df0024;
  --color-black: #000;
  --color-link-blue: #0066cc;
  --font-en1: "Questrial", sans-serif;
  --font-en2: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
}

.hide {
  opacity: 0;
}

.animate__animated {
  opacity: 1;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 0.1333333333vmin;
}

body,
html {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  color: var(--color-black);
  font-size: 30rem;
  line-height: 1.8;
  word-break: break-word;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

a {
  text-decoration: none;
  color: var(--color-black);
}

.pc {
  display: none;
}

p {
  line-height: 1.8;
  color: var(--color-black);
  font-size: 30rem;
}
p.large-tx {
  font-size: 34rem;
}

p.notes {
  padding-left: 1.2em;
  position: relative;
}
p.notes::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.w-940 {
  width: 90%;
  margin: 0 auto;
}

.w-1100 {
  width: 90%;
  margin: 0 auto;
}

.w-1180 {
  width: 90%;
  margin: 0 auto;
}

.w-1260 {
  width: 90%;
  margin: 0 auto;
}

#hm {
  background: var(--color-red);
  display: inline-block;
  position: fixed;
  right: 30rem;
  top: 30rem;
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  z-index: 100;
  border: 0;
}

#hm-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#hm-icon:before,
#hm-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#hm-icon:before {
  margin-top: -8px;
}

#hm-icon:after {
  margin-top: 6px;
}

#hm .close {
  background: transparent;
}

#hm .close:before,
#hm .close:after {
  margin-top: 0;
}

#hm .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#hm .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

#sp_menu {
  position: fixed;
  top: 0;
  display: none;
  z-index: 11;
  width: 100vw;
  height: 100%;
  background-color: rgb(0, 0, 0);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
#sp_menu .wrap-lang {
  position: absolute;
  right: 160rem;
  top: 38rem;
  z-index: 1;
}
#sp_menu .wrap-lang button.lang {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40rem;
  height: 80rem;
  width: 230rem;
  font-size: 30rem;
  color: #fff;
  border: 1px solid #fff;
}
#sp_menu .wrap-lang ul.lang-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: -190rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -ms-grid;
  display: grid;
  gap: 15rem;
}
#sp_menu .wrap-lang ul.lang-menu.active {
  visibility: visible;
  opacity: 1;
}
#sp_menu .wrap-lang ul.lang-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80rem;
  width: 180rem;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 40rem;
}
#sp_menu .inner {
  height: 100%;
  position: relative;
  overflow-y: scroll;
}
#sp_menu .inner nav {
  position: relative;
  width: 88%;
  margin: 180rem auto 150rem;
}
#sp_menu .inner nav ul.sp_menu-main > li > a {
  font-size: 40rem;
  display: block;
  color: #fff;
  font-weight: bold;
  padding: 30rem 20rem;
  position: relative;
  border-bottom: solid 1px #fff;
}
#sp_menu .inner nav ul.sp_menu-main li.parent > a {
  position: relative;
}
#sp_menu .inner nav ul.sp_menu-main li.parent > a::before {
  content: "";
  width: 40rem;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 15rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#sp_menu .inner nav ul.sp_menu-main li.parent > a::after {
  content: "";
  width: 40rem;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 15rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#sp_menu .inner nav ul.sp_menu-main li.parent > a.active::after {
  content: "";
  width: 40rem;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 15rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
#sp_menu .inner nav ul.sp_menu-main li.no-child {
  position: relative;
}
#sp_menu .inner nav ul.sp_menu-main li.no-child::after {
  content: "";
  display: block;
  width: 25px;
  height: 100%;
  background: url("../images/icon-arrow.svg") no-repeat center;
  background-size: 24rem;
  position: absolute;
  right: 10rem;
  top: 0;
}
#sp_menu .inner nav ul.child {
  margin-top: 30rem;
  margin-bottom: 20rem;
}
#sp_menu .inner nav ul.child a {
  font-size: 36rem;
  padding: 20rem 30rem;
  display: block;
  color: #fff;
}
#sp_menu .inner nav ul.sp_menu-sub {
  margin-top: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sp_menu .inner nav ul.sp_menu-sub li {
  width: 250rem;
}
#sp_menu .inner nav ul.sp_menu-sub li a {
  position: relative;
  display: block;
  text-indent: 70rem;
  padding: 20rem 0;
  color: #fff;
  font-size: 36rem;
}
#sp_menu .inner nav ul.sp_menu-sub li a::after {
  content: "";
  display: block;
  width: 25px;
  height: 100%;
  background: url("../images/icon-arrow.svg") no-repeat center;
  background-size: 16rem;
  position: absolute;
  left: 10rem;
  top: 0;
}
#sp_menu .inner nav .sp_menu-btnWrap {
  margin: 50rem auto 0;
  width: 85%;
}
#sp_menu .inner nav .sp_menu-btnWrap a.btn-primary {
  font-size: 33rem;
  height: 120rem;
}
#sp_menu .inner nav a.sp_menu-tel {
  margin-top: 60rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 140rem;
  font-family: var(--font-en2);
  font-size: 54rem;
  font-weight: 600;
  color: #fff;
  border-radius: 70rem;
  border: 1px solid #fff;
  position: relative;
}
#sp_menu .inner nav a.sp_menu-tel::before {
  content: "";
  display: block;
  width: 50rem;
  height: 50rem;
  background: url("../images/icon-tel.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 48rem;
}

header {
  position: relative;
}
header .logo {
  width: 185rem;
  position: absolute;
  top: 30rem;
  left: 30rem;
  z-index: 1;
}

footer {
  padding: 100rem 0 240rem;
}
footer .info-company a.logo {
  display: block;
  width: 430rem;
  margin: 0 auto;
}
footer .info-company address {
  text-align: center;
  line-height: 1.5;
  margin-top: 50rem;
}
footer .sns {
  margin-top: 70rem;
}
footer .sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .sns a p {
  font-size: 26rem;
  font-family: var(--font-en2);
  color: #b4b4b4;
}
footer .sns a img {
  width: 84rem;
  margin-left: 30rem;
}
footer .footer-nav {
  text-align: center;
  margin-top: 70rem;
}
footer .footer-nav a {
  color: #b4b4b4;
  font-size: 26rem;
}
footer small {
  color: #b4b4b4;
  font-size: 26rem;
  text-align: center;
  display: block;
  letter-spacing: 0.01em;
  margin-top: 60rem;
}

.bottom-fix-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 30rem 50rem;
  z-index: 10;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  bottom: -30rem;
}
.bottom-fix-nav.show {
  bottom: 0;
  opacity: 1;
}
.bottom-fix-nav a.btn-primary {
  height: 120rem;
  font-size: 42rem;
}

section.page-block {
  width: 92%;
  margin: 0 auto;
}

a.btn-primary {
  background: var(--color-red);
  color: #fff;
  font-weight: bold;
  font-size: 30rem;
  height: 140rem;
  border-radius: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.05em;
}
a.btn-primary.tx-large {
  font-size: 33rem;
}
a.btn-primary.icon-mail::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon-mail-white.svg") no-repeat center;
  margin-right: 20rem;
}
a.btn-primary.icon-pin::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon-pin-white.svg") no-repeat center;
  margin-right: 20rem;
}

a.btn-back {
  text-align: center;
  display: block;
}
a.btn-back span {
  display: inline-block;
  border-bottom: 1px solid #888;
  padding: 0.6em;
}

.wrap-pageHead {
  background: #000;
  padding: 160rem 0 80rem;
  margin-bottom: 100rem;
  overflow-x: hidden;
}

h1.h-page-primary {
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 20rem;
}
h1.h-page-primary span.en {
  letter-spacing: 0.06em;
  font-family: var(--font-en2);
  color: #fff;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  font-size: 64rem;
  line-height: 1;
}
h1.h-page-primary span.en span {
  color: var(--color-red);
}
h1.h-page-primary span.small {
  letter-spacing: 0.06em;
  color: #fff;
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  font-family: var(--font-en2);
  font-size: 28rem;
  line-height: 1;
}

.h-underline {
  font-size: 42rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 60rem;
  letter-spacing: 0.05em;
}
.h-underline::after {
  content: "";
  width: 2em;
  height: 2px;
  background: var(--color-red);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

section.contact-cta {
  margin-top: 200rem;
}
section.contact-cta .scroll_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 200rem;
  overflow: hidden;
}
section.contact-cta li.scroll_cont img {
  width: auto;
  height: 100%;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
section.contact-cta p.loop_onTx {
  margin-top: -100rem;
  position: relative;
  z-index: 1;
  font-size: 68rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
section.contact-cta .wrap-contact {
  margin-top: 100rem;
}
section.contact-cta .box-contact {
  margin-bottom: 2px;
  background: var(--color-red);
  padding: 60rem 0 80rem;
}
section.contact-cta .box-contact p {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 36rem;
  letter-spacing: 0.06em;
}
section.contact-cta .box-contact p.top {
  font-size: 54rem;
  margin-bottom: 40rem;
  letter-spacing: 0.01em;
}
section.contact-cta .box-contact p.top span {
  line-height: 2;
  display: inline-block;
  padding: 0 0.1em 0.6em;
  background: url("../images/contact_bottomLine.svg") no-repeat center bottom;
  background-size: contain;
}
section.contact-cta a.tel {
  color: #fff;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 78rem;
  font-family: var(--font-en2);
  font-weight: 600;
  line-height: 1;
  margin-top: 20rem;
}
section.contact-cta a.btn-contact {
  background: #fff;
  color: var(--color-red);
  font-weight: bold;
  font-size: 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 120rem;
  border-radius: 60rem;
  width: 550rem;
  margin: 60rem auto 0;
}
section.contact-cta a.btn-contact::before {
  content: "";
  width: 45rem;
  height: 45rem;
  background: url("../images/icon-mail.svg") no-repeat center;
  background-size: contain;
  display: block;
  margin-right: 20rem;
}
section.contact-cta .for-international {
  font-size: 30rem;
  font-weight: normal;
  display: block;
  margin-top: 20rem;
}

table.basic {
  width: 100%;
  border-top: 1px solid var(--color-red);
}
table.basic th,
table.basic td {
  display: block;
}
table.basic tr th {
  color: var(--color-red);
  font-weight: normal;
  padding: 40rem 10rem 10rem;
}
table.basic tr td {
  border-bottom: 1px solid var(--color-red);
  padding: 10rem 10rem 60rem;
}
table.basic tr:last-of-type td {
  border: none;
}
table.basic a.link-underline {
  text-decoration: underline;
}

.wrap-btn-col2 {
  margin-top: 100rem;
  display: -ms-grid;
  display: grid;
  gap: 40rem;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60rem;
}
.nav-links .page-numbers {
  margin: 0 0.2em;
  color: #787878;
  border: 1px solid #c8c8c8;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2em;
  height: 2em;
  font-size: 30rem;
  line-height: 1;
}
.nav-links .page-numbers.dots {
  border: none;
  margin: 0;
}
.nav-links .page-numbers.current {
  background: var(--color-red);
  color: #fff;
  border: 1px solid var(--color-red);
}
.nav-links .next,
.nav-links .prev {
  color: #3c3c3c;
}

section.p-404 {
  width: 90%;
  margin: 0 auto;
}
section.p-404 .hstyle-404 {
  font-weight: bold;
  margin-bottom: 20rem;
}

.btn-404 {
  background: var(--color-red);
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120rem;
  margin-top: 80rem;
  font-weight: bold;
  font-size: 34rem;
  border-radius: 60rem;
}

/**********************************************************************

 * Media Query For PC

 ***********************************************************************/
@media print, screen and (min-width: 768px) {
  html,
  body {
    height: 100%;
  }
  body {
    letter-spacing: 0;
    font-size: min(24px, 1.41vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  p {
    font-size: min(18px, 1.06vw);
    line-height: 1.9;
  }
  p.large-tx {
    font-size: min(24px, 1.41vw);
  }
  .w-940 {
    width: min(940px, 55.29vw);
  }
  .w-1100 {
    width: min(1100px, 64.71vw);
  }
  .w-1180 {
    width: min(1180px, 69.41vw);
  }
  .w-1260 {
    width: min(1260px, 74.12vw);
  }
  header {
    position: absolute;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: min(35px, 2.06vw);
    z-index: 10;
    letter-spacing: 0.04em;
  }
  header .logo {
    width: min(165px, 9.71vw);
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
  }
  header nav.pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav.pc ul.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav.pc ul.main li.parent {
    position: relative;
  }
  header nav.pc ul.main li.parent:hover ul.child {
    visibility: visible;
    opacity: 1;
  }
  header nav.pc ul.main > li > a {
    padding: min(20px, 1.18vw) min(20px, 1.18vw);
    color: #fff;
    font-size: min(20px, 1.18vw);
    font-weight: bold;
  }
  header nav.pc ul.main .btn-lang {
    margin-left: min(35px, 2.06vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: min(15px, 0.88vw) 0;
  }
  header nav.pc ul.main .btn-lang > a {
    height: min(80px, 4.71vw);
    padding: 0 min(40px, 2.35vw);
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: min(40px, 2.35vw);
  }
  header nav.pc ul.main .btn-lang ul.child {
    top: min(110px, 6.47vw);
  }
  header nav.pc ul.child {
    visibility: hidden;
    opacity: 0; /*不透明度0*/
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: min(200px, 11.76vw);
    position: absolute;
    top: min(60px, 3.53vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header nav.pc ul.child li {
    padding-bottom: min(10px, 0.59vw);
  }
  header nav.pc ul.child a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: min(18px, 1.06vw);
    height: min(60px, 3.53vw);
    background: #000;
    border-radius: min(30px, 1.76vw);
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
  }
  header nav.pc ul.child a:hover {
    background: #fff;
    color: #000;
  }
  header nav.pc .menu-btnWrap {
    width: min(256px, 15.06vw);
  }
  header nav.pc .menu-btnWrap .inner {
    position: fixed;
    right: min(50px, 2.94vw);
    top: min(50px, 2.94vw);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  header nav.pc .menu-btnWrap .inner.scrolled {
    right: min(20px, 1.18vw);
    top: min(20px, 1.18vw);
  }
  header nav.pc .menu-btnWrap .inner.scrolled a.btn-primary {
    width: min(200px, 11.76vw);
    height: min(70px, 4.12vw);
    font-size: min(20px, 1.18vw);
  }
  header nav.pc .menu-btnWrap a.btn-primary {
    width: min(220px, 12.94vw);
    height: min(80px, 4.71vw);
  }
  footer {
    padding: 2.94vw 0 2.35vw;
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
  }
  footer .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .info-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .info-company a.logo {
    display: block;
    width: min(230px, 13.53vw);
    margin-right: 2.35vw;
  }
  footer .info-company a.logo img {
    vertical-align: middle;
  }
  footer .info-company address {
    text-align: left;
    margin-top: 0;
    font-size: min(16px, 0.94vw);
  }
  footer .sns {
    margin-top: 0;
  }
  footer .sns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .sns a p {
    font-size: 0.71vw;
  }
  footer .sns a img {
    width: 2vw;
    margin-left: 1.47vw;
  }
  footer .footer-bottom {
    margin-top: 2.94vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer-nav {
    margin-top: 0;
  }
  footer .footer-nav a {
    font-size: min(16px, 0.94vw);
  }
  footer small {
    font-size: min(14px, 0.82vw);
    letter-spacing: 0.1em;
    margin-top: 0;
  }
  section.page-block {
    width: 80%;
  }
  a.btn-primary {
    font-size: min(22px, 1.29vw);
    height: min(100px, 5.88vw);
    border-radius: min(50px, 2.94vw);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: var(--color-red) 2px solid;
  }
  a.btn-primary.tx-large {
    font-size: min(30px, 1.76vw);
  }
  a.btn-primary:hover {
    background: #fff;
    color: var(--color-red);
    border: var(--color-red) 2px solid;
  }
  a.btn-primary:hover.icon-mail::before {
    background: url("../images/icon-mail.svg") no-repeat center;
  }
  a.btn-primary:hover.icon-pin::before {
    background: url("../images/icon-pin.svg") no-repeat center;
  }
  a.btn-primary.icon-mail::before {
    margin-right: min(20px, 1.18vw);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a.btn-primary.icon-pin::before {
    margin-right: min(20px, 1.18vw);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a.btn-back {
    font-size: min(20px, 1.18vw);
  }
  .wrap-pageHead {
    background: #000;
    padding: min(210px, 12.35vw) 0 min(100px, 5.88vw);
    margin-bottom: 20rem;
  }
  ul.breadCrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: min(60px, 3.53vw);
    margin-bottom: 4.71vw;
  }
  ul.breadCrumb li,
  ul.breadCrumb a {
    color: #a0a0a0;
    font-size: min(16px, 0.94vw);
  }
  ul.breadCrumb a {
    position: relative;
    text-decoration: underline;
    padding-right: min(30px, 1.76vw);
  }
  ul.breadCrumb a::after {
    content: ">";
    position: absolute;
    right: min(8px, 0.47vw);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  ul.breadCrumb a:hover {
    text-decoration: none;
  }
  ul.breadCrumb.style02 {
    position: absolute;
    right: 0;
    top: min(180px, 10.59vw);
    z-index: 2;
  }
  ul.breadCrumb.style02 a {
    color: #a0a0a0;
  }
  h1.h-page-primary {
    gap: min(20px, 1.18vw);
  }
  h1.h-page-primary span.en {
    font-size: min(78px, 4.59vw);
  }
  h1.h-page-primary span.small {
    font-size: min(36px, 2.12vw);
  }
  .h-underline {
    font-size: min(54px, 3.18vw);
    padding-bottom: 0.5em;
    margin-bottom: min(100px, 5.88vw);
    letter-spacing: 0.08em;
  }
  .h-underline::after {
    content: "";
    width: min(80px, 4.71vw);
    height: 4px;
  }
  section.contact-cta {
    margin-top: 11.76vw;
  }
  section.contact-cta .loop_wrap {
    height: min(180px, 10.59vw);
  }
  section.contact-cta p.loop_onTx {
    font-size: min(80px, 4.71vw);
    width: min(1520px, 89.41vw);
    margin: -2.94vw auto 0;
    gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.contact-cta p.loop_onTx img {
    height: min(80px, 4.71vw);
    width: auto;
    margin: 0 min(8px, 0.47vw) min(30px, 1.76vw);
  }
  section.contact-cta .wrap-contact {
    margin-top: 5.88vw;
  }
  section.contact-cta .wrap-contact.col-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  section.contact-cta .box-contact {
    margin-bottom: 0;
    padding: 3.53vw 0;
  }
  section.contact-cta .box-contact p {
    font-size: min(26px, 1.53vw);
  }
  section.contact-cta .box-contact p.top {
    font-size: min(42px, 2.47vw);
    margin-bottom: min(40px, 2.35vw);
  }
  section.contact-cta a.tel {
    font-size: min(54px, 3.18vw);
    margin-top: min(20px, 1.18vw);
    line-height: 0.8;
  }
  section.contact-cta .for-international {
    font-size: min(20px, 1.18vw);
    margin-top: min(20px, 1.18vw);
  }
  section.contact-cta a.btn-contact {
    font-size: min(30px, 1.76vw);
    height: min(100px, 5.88vw);
    width: min(400px, 23.53vw);
    margin: 2.06vw auto 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 2px solid #fff;
  }
  section.contact-cta a.btn-contact::before {
    width: min(34px, 2vw);
    height: min(34px, 2vw);
    margin-right: 1.18vw;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.contact-cta a.btn-contact:hover {
    background: var(--color-red);
    color: #fff;
    border: 2px solid #fff;
  }
  section.contact-cta a.btn-contact:hover::before {
    background: url("../images/icon-mail-white.svg") no-repeat center;
  }
  table.basic {
    border: none;
  }
  table.basic a:hover {
    text-decoration: none;
  }
  table.basic tr:first-of-type th {
    border-top: 1px solid var(--color-red);
  }
  table.basic tr:first-of-type td {
    border-top: 1px solid #c8c8c8;
  }
  table.basic tr th {
    font-size: min(18px, 1.06vw);
    vertical-align: middle;
    width: 26%;
    line-height: 1.7;
    display: table-cell;
    position: relative;
    border-bottom: 1px solid var(--color-red);
    padding: 1.18vw 0;
  }
  table.basic tr td {
    font-size: min(18px, 1.06vw);
    display: table-cell;
    border-bottom: 1px solid #c8c8c8 !important;
    padding: 1.18vw;
  }
  table.basic tr td p {
    font-size: min(18px, 1.06vw);
  }
  table.basic a.link-underline:hover {
    text-decoration: none;
  }
  .wrap-btn-col2 {
    -ms-grid-columns: 1fr min(40px, 2.35vw) 1fr;
    grid-template-columns: 1fr 1fr;
    width: min(840px, 49.41vw);
    margin: 4.71vw auto 0;
    gap: min(40px, 2.35vw);
  }
  .nav-links {
    margin-top: min(60px, 3.53vw);
  }
  .nav-links .page-numbers {
    margin: 0 0.2em;
    width: min(30px, 1.76vw);
    height: min(30px, 1.76vw);
    font-size: min(14px, 0.82vw);
  }
  section.p-404 {
    margin: 4.71vw auto;
    max-width: 900px;
  }
  section.p-404 .hstyle-404 {
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
  }
  section.p-404 p {
    text-align: center;
  }
  .btn-404 {
    width: 300px;
    margin: 0 auto;
    height: min(80px, 4.71vw);
    margin-top: 4.71vw;
    font-size: min(24px, 1.41vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  body {
    font-size: min(33px, 1.94vw);
  }
  p {
    font-size: min(30px, 1.76vw) !important;
  }
  a.btn-back {
    font-size: min(30px, 1.76vw);
  }
  header nav.pc .menu-btnWrap .inner.scrolled {
    right: min(50px, 2.94vw);
    top: min(55px, 3.24vw);
  }
  header nav.pc .menu-btnWrap .inner.scrolled a.btn-primary {
    width: min(220px, 12.94vw);
    height: min(80px, 4.71vw);
    font-size: min(22px, 1.29vw);
  }
}