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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  box-sizing: border-box;
  -webkit-appearance: none;
}

:root {
  --black: #2a2a2a;
  --ff: "Noto Sans JP", sans-serif;
  --en: "Montserrat", sans-serif;
  --mc: #293c5d;
}

body {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  font-family: var(--ff);
  color: var(--mc);
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
body.fixed {
  position: fixed;
}
body.under {
  background: #f8f8f8;
}

#test.fixed {
  position: fixed;
}

.en {
  font-family: var(--en);
}

img {
  max-width: 100%;
  height: auto;
}

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

table {
  width: 100%;
  font-size: 18px;
  border-top: solid 1px rgba(41, 60, 93, 0.25);
}
table tr {
  border-bottom: solid 1px rgba(41, 60, 93, 0.25);
}
table th, table td {
  padding: 30px 15px;
}
table th {
  font-weight: 700;
  width: 30%;
  vertical-align: top;
}
table td {
  font-weight: 500;
  width: 70%;
}

.sp_block {
  display: none;
}

.ttl01 {
  line-height: 1;
  color: var(--mc);
  margin-bottom: 60px;
}
.ttl01.white {
  color: #fff;
}
.ttl01.white .ja:before {
  background: #fff;
}
.ttl01:has(+ p) {
  margin-bottom: 40px;
}
.ttl01.white {
  color: #fff;
}
.ttl01.white .en:before {
  background: #fff;
}
.ttl01 span {
  display: block;
}
.ttl01 .ja {
  font-weight: 600;
  font-size: 16px;
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
}
.ttl01 .ja:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--mc);
}
.ttl01 .en {
  font-size: 60px;
  font-weight: 600;
  font-family: var(--en);
}
.ttl01 + p {
  margin-bottom: 60px;
  max-width: 900px;
}

.ttl02 {
  font-weight: 700;
  border-bottom: solid 2px var(--mc);
  border-top: solid 2px var(--mc);
  font-size: 24px;
  line-height: 1;
  padding: 20px 10px;
  margin-bottom: 40px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border: solid 3px var(--mc);
  line-height: 1.4;
  min-height: 96px;
  text-align: center;
  box-shadow: 5px 5px 0 0 var(--mc);
  transition: box-shadow 0.4s ease;
  background: #fff;
  text-decoration: none !important;
  position: relative;
}
.btn01:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--mc);
  border-right: solid 2px var(--mc);
  transform: rotate(45deg) translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 30px;
  transition: border-color 0.4s ease;
}
.btn01.white {
  color: #fff;
  box-shadow: 5px 5px 0 0 #fff;
  border-color: #fff;
}
@media (any-hover: hover) {
  .btn01.white:hover {
    background: #fff;
    color: var(--mc);
  }
}
@media (any-hover: hover) {
  .btn01:hover {
    box-shadow: none;
    background: var(--mc);
    color: #fff;
  }
  .btn01:hover:before {
    border-color: #fff;
  }
}

.btn02 {
  color: var(--mc);
  font-weight: bold;
  width: 280px;
  border: solid 3px var(--mc);
  height: 60px;
  display: block;
  border-radius: 50px;
  line-height: 54px;
  padding-left: 20px;
  position: relative;
  transition: 0.4s ease;
  text-decoration: none !important;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
}
.btn02.center {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  text-align: center;
}
.btn02.white {
  border-color: #fff;
  color: #fff;
}
.btn02.white:hover {
  background: #fff;
  color: var(--mc);
}
.btn02.white:before {
  background-image: url(../img/arrow_w.svg);
  z-index: 2;
}
.btn02.white:after {
  background-image: url(../img/arrow.svg);
}
.btn02:hover {
  background: var(--mc);
  color: #fff;
}
.btn02:hover:before {
  opacity: 0;
}
.btn02:before, .btn02:after {
  transition: 0.4s ease;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/arrow.svg) no-repeat left top/100% auto;
}
.btn02:before {
  z-index: 2;
}
.btn02:after {
  background-image: url(../img/arrow_w.svg);
}

.grid01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1002;
  mix-blend-mode: difference;
}
header #logo {
  position: fixed;
  max-width: 240px;
  top: 20px;
  left: 30px;
}
@media (any-hover: hover) {
  header #logo a {
    transition: opacity 0.4s ease;
  }
  header #logo a:hover {
    opacity: 0.6 !important;
  }
}

#hb_btn {
  mix-blend-mode: difference;
  position: fixed;
  width: 50px;
  height: 50px;
  border: solid 1px #fff;
  border-radius: 50%;
  right: 30px;
  top: 15px;
  cursor: pointer;
  padding: 16px 10px 0;
  z-index: calc(infinity);
}
#hb_btn span {
  height: 1px;
  background: #fff;
  width: 100%;
  display: block;
  margin-bottom: 6px;
  transition: 0.4s ease;
}
#hb_btn.open span:nth-child(1) {
  transform: translate(0, 8px) rotate(45deg);
}
#hb_btn.open span:nth-child(2) {
  opacity: 0;
}
#hb_btn.open span:nth-child(3) {
  transform: translate(0, -6px) rotate(-45deg);
}

#hb_nav {
  display: none;
  z-index: 9999;
  background: var(--mc);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  font-size: 50px;
  font-weight: 600;
}
#hb_nav .inner {
  overflow: auto;
  height: 100vh;
  padding: 200px 0 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#hb_nav a {
  color: #fff;
}
#hb_nav .logo {
  line-height: 1;
  font-size: 0;
  position: absolute;
  top: 20px;
  left: 30px;
}
#hb_nav .logo img {
  width: 240px;
}
@media (any-hover: hover) {
  #hb_nav a {
    transition: opacity 0.4s ease;
  }
  #hb_nav a:hover {
    opacity: 0.6 !important;
  }
}
#hb_nav nav {
  font-size: 40px;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
#hb_nav nav .en:before {
  content: "-";
  margin-right: 3px;
}
#hb_nav nav .sub {
  font-size: 20px;
  padding-left: 20px;
  display: grid;
  gap: 5px 0;
  margin-top: 3px;
}

#w_g_nav {
  z-index: 1000;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 100px;
}

#g_nav {
  line-height: 1;
}
@media (any-hover: none) {
  #g_nav {
    display: none;
  }
}
#g_nav > ul {
  display: flex;
}
#g_nav .parent {
  font-family: var(--en);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 30px;
  transition: background-color 0.4s ease;
}
#g_nav .parent:has(+ .mega_menu) {
  background: transparent url(../img/gnav_arrow_w.svg) no-repeat center bottom 12px/12px auto;
}
#g_nav .parent:hover {
  background-color: var(--mc);
}
#g_nav .mega:hover .parent {
  background-color: var(--mc);
}
#g_nav .mega:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
#g_nav .mega .on {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
#g_nav .mega_menu {
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -10px);
  top: 80px;
  left: 0;
  width: 100%;
  padding: 60px 0;
  background: var(--mc);
  box-shadow: 0 11px 12px -5px rgba(0, 0, 0, 0.3);
}
#g_nav .mega_menu .w1200 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}
#g_nav .mega_menu .left, #g_nav .mega_menu .right {
  padding: 25px 0;
}
#g_nav .mega_menu .left {
  color: #fff;
}
#g_nav .mega_menu .left .en {
  font-family: var(--en);
  font-size: 40px;
}
#g_nav .mega_menu .left .ja {
  font-size: 14px;
  margin-bottom: 15px;
}
#g_nav .mega_menu .right {
  padding-left: 50px;
  border-left: solid 1px rgba(255, 255, 255, 0.5);
}
#g_nav .nav01 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
#g_nav .nav01 p {
  color: #fff;
  margin-top: 10px;
  text-align: center;
}
#g_nav .nav01 a {
  display: block;
}
@media (any-hover: hover) {
  #g_nav .nav01 a {
    transition: opacity 0.4s ease;
  }
  #g_nav .nav01 a:hover {
    opacity: 0.6 !important;
  }
}
#g_nav .nav02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#g_nav .nav02 a {
  color: #fff;
  display: block;
}
#g_nav .nav03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
#g_nav .nav03 a {
  color: #fff;
  display: flex;
  justify-content: center;
  border: solid 1px #fff;
  align-items: center;
  padding: 25px 15px 25px 5px;
  font-size: 13px;
  position: relative;
  letter-spacing: 0.025em;
  transition: background-color 0.4s ease;
}
#g_nav .nav03 a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg) translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 18px;
  transition: border-color 0.4s ease;
}
@media (any-hover: hover) {
  #g_nav .nav03 a:hover {
    box-shadow: none;
    background: #fff;
    color: var(--mc);
  }
  #g_nav .nav03 a:hover:before {
    border-color: var(--mc);
  }
}

.w1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.w1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
#footer_grad {
  position: relative;
  z-index: 2;
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(45deg, #060E17, #001429, #a5b4c1) 0/200% 100%;
  color: #fff;
}

#cta {
  padding: 100px 0;
}
#cta .ttl01 {
  color: #fff;
}
#cta h3 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 10px;
}
#cta ul {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 0 20px;
}
#cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 240px;
  height: 60px;
  border: solid 1px #fff;
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  #cta a:hover {
    color: var(--mc);
    background: #fff;
  }
}

footer {
  color: #fff;
}
footer .w1200 {
  border-top: solid 1px rgba(255, 255, 255, 0.4);
  padding: 100px 0 80px;
  display: flex;
  justify-content: space-between;
  opacity: 0.8;
}
footer a {
  color: #fff;
}
footer .logo img {
  max-width: 230px;
}
footer .logo span {
  display: block;
  font-size: 13px;
  letter-spacing: 0;
}
footer .privacy {
  text-decoration: underline;
  font-size: 13px;
}
footer small {
  font-family: var(--en);
  font-size: 13px;
  display: block;
  text-align: right;
  margin-top: 100px;
}
footer nav {
  font-size: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 0 50px;
}
@media (any-hover: hover) {
  footer nav a {
    transition: opacity 0.4s ease;
  }
  footer nav a:hover {
    opacity: 0.6 !important;
  }
}
footer nav .en:before {
  content: "-";
  margin-right: 3px;
}
footer nav .sub {
  font-size: 13px;
  padding-left: 10px;
  display: grid;
  gap: 5px 0;
  margin-top: 3px;
}

.under_content {
  padding-top: 100px;
}
.under_content:has(.post_content) {
  padding-top: 0;
}
.under_content .wpcf7 form .wpcf7-response-output {
  margin-top: 10px;
}
.under_content .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

input[type=text],
input[type=email],
input[type=tel], select,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  border: none;
  border-radius: 0;
  display: block;
  width: 100%;
  color: inherit;
  padding: 15px;
  background: #fff;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder, select::placeholder,
textarea::placeholder {
  color: #ccc;
}

textarea {
  resize: vertical;
  height: 300px;
}

input[type=checkbox],
input[type=radio] {
  margin-left: 0;
  margin-right: 6px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  position: relative;
  top: 2px;
  width: 1.4em;
  height: 1.4em;
  accent-color: var(--mc);
}

input[type=radio] {
  -webkit-appearance: radio;
  position: relative;
  top: 2px;
  width: 1.4em;
  height: 1.4em;
  accent-color: var(--mc);
}

select {
  background: #fff url(../img/arrow_select.svg) no-repeat center right 20px;
}

.form_table th span {
  color: #fff;
  background: var(--mc);
  font-size: 13px;
  margin-right: 6px;
  width: 40px;
  text-align: center;
  display: inline-block;
  height: 26px;
  line-height: 26px;
}
.form_table th .rc {
  background: #900;
}
.form_table td:has(input[type=radio]) {
  vertical-align: middle;
}
.form_table .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 5px;
  color: #900;
}
.form_table .wpcf7-not-valid-tip:before {
  content: "※";
}
.form_table .wpcf7-checkbox,
.form_table .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.form_table .wpcf7-list-item {
  margin-left: 0;
}
.form_table + .pp {
  margin-top: 50px;
  margin-bottom: 50px;
}
.form_table + .pp p {
  line-height: 1.6;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  body {
    width: 100%;
    font-weight: 500;
    font-size: calc(16 / 1300 * 100vw);
    line-height: 2;
    font-family: var(--ff);
    color: var(--mc);
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
  body.fixed {
    position: fixed;
  }
  body.under {
    background: #f8f8f8;
  }
  .en {
    font-family: var(--en);
  }
  img {
    max-width: 100%;
    height: auto;
  }
  a {
    color: var(--black);
    text-decoration: none;
  }
  table {
    width: 100%;
    font-size: calc(18 / 1300 * 100vw);
    border-top: solid calc(1 / 1300 * 100vw) rgba(41, 60, 93, 0.25);
  }
  table tr {
    border-bottom: solid calc(1 / 1300 * 100vw) rgba(41, 60, 93, 0.25);
  }
  table th, table td {
    padding: calc(30 / 1300 * 100vw) calc(15 / 1300 * 100vw);
  }
  table th {
    font-weight: 700;
    width: 30%;
    vertical-align: top;
  }
  table td {
    font-weight: 500;
    width: 70%;
  }
  .ttl01 {
    line-height: 1;
    color: var(--mc);
    margin-bottom: calc(60 / 1300 * 100vw);
  }
  .ttl01.white {
    color: #fff;
  }
  .ttl01.white .ja:before {
    background: #fff;
  }
  .ttl01:has(+ p) {
    margin-bottom: calc(40 / 1300 * 100vw);
  }
  .ttl01.white {
    color: #fff;
  }
  .ttl01.white .en:before {
    background: #fff;
  }
  .ttl01 span {
    display: block;
  }
  .ttl01 .ja {
    font-weight: 600;
    font-size: calc(16 / 1300 * 100vw);
    position: relative;
    margin-bottom: calc(20 / 1300 * 100vw);
    padding-left: calc(30 / 1300 * 100vw);
  }
  .ttl01 .ja:before {
    position: absolute;
    top: calc(8 / 1300 * 100vw);
    left: 0;
    content: "";
    display: inline-block;
    width: calc(20 / 1300 * 100vw);
    height: calc(1 / 1300 * 100vw);
    background: var(--mc);
  }
  .ttl01 .en {
    font-size: calc(60 / 1300 * 100vw);
    font-weight: 600;
    font-family: var(--en);
  }
  .ttl01 + p {
    margin-bottom: calc(60 / 1300 * 100vw);
    max-width: calc(900 / 1300 * 100vw);
  }
  .ttl02 {
    font-weight: 700;
    border-bottom: solid calc(2 / 1300 * 100vw) var(--mc);
    border-top: solid calc(2 / 1300 * 100vw) var(--mc);
    font-size: calc(24 / 1300 * 100vw);
    line-height: 1;
    padding: calc(20 / 1300 * 100vw) calc(10 / 1300 * 100vw);
    margin-bottom: calc(40 / 1300 * 100vw);
  }
  .btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(18 / 1300 * 100vw);
    font-weight: bold;
    border: solid calc(3 / 1300 * 100vw) var(--mc);
    line-height: 1.4;
    min-height: calc(96 / 1300 * 100vw);
    text-align: center;
    box-shadow: calc(5 / 1300 * 100vw) calc(5 / 1300 * 100vw) 0 0 var(--mc);
    transition: box-shadow 0.4s ease;
    background: #fff;
  }
  .btn01:before {
    width: calc(10 / 1300 * 100vw);
    height: calc(10 / 1300 * 100vw);
    right: calc(30 / 1300 * 100vw);
  }
  .btn01.white {
    color: #fff;
    box-shadow: calc(5 / 1300 * 100vw) calc(5 / 1300 * 100vw) 0 0 #fff;
    border-color: #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .btn01.white:hover {
    background: #fff;
    color: var(--mc);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .btn01:hover {
    box-shadow: none;
    background: var(--mc);
    color: #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .btn02 {
    color: var(--mc);
    font-weight: bold;
    width: calc(280 / 1300 * 100vw);
    border: solid calc(3 / 1300 * 100vw) var(--mc);
    height: calc(60 / 1300 * 100vw);
    display: block;
    border-radius: calc(50 / 1300 * 100vw);
    line-height: calc(54 / 1300 * 100vw);
    padding-left: calc(20 / 1300 * 100vw);
    position: relative;
    transition: 0.4s ease;
  }
  .btn02.center {
    padding-left: 0;
  }
  .btn02.white {
    border-color: #fff;
    color: #fff;
  }
  .btn02.white:hover {
    background: #fff;
    color: var(--mc);
  }
  .btn02.white:before {
    background-image: url(../img/arrow_w.svg);
    z-index: 2;
  }
  .btn02.white:after {
    background-image: url(../img/arrow.svg);
  }
  .btn02:hover {
    background: var(--mc);
    color: #fff;
  }
  .btn02:hover:before {
    opacity: 0;
  }
  .btn02:before, .btn02:after {
    transition: 0.4s ease;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(20 / 1300 * 100vw);
    content: "";
    display: block;
    width: calc(8 / 1300 * 100vw);
    height: calc(13 / 1300 * 100vw);
    background: url(../img/arrow.svg) no-repeat left top/100% auto;
  }
  .btn02:before {
    z-index: 2;
  }
  .btn02:after {
    background-image: url(../img/arrow_w.svg);
  }
  .grid01 {
    gap: calc(25 / 1300 * 100vw);
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1002;
    mix-blend-mode: difference;
  }
  header #logo {
    position: fixed;
    max-width: calc(240 / 1300 * 100vw);
    top: calc(20 / 1300 * 100vw);
    left: calc(30 / 1300 * 100vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  header #logo a {
    transition: opacity 0.4s ease;
  }
  header #logo a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #hb_btn {
    mix-blend-mode: difference;
    position: fixed;
    width: calc(50 / 1300 * 100vw);
    height: calc(50 / 1300 * 100vw);
    border: solid calc(1 / 1300 * 100vw) #fff;
    border-radius: 50%;
    right: calc(30 / 1300 * 100vw);
    top: calc(15 / 1300 * 100vw);
    cursor: pointer;
    padding: calc(16 / 1300 * 100vw) calc(10 / 1300 * 100vw) 0;
    z-index: calc(infinity);
  }
  #hb_btn span {
    height: calc(1 / 1300 * 100vw);
    background: #fff;
    width: 100%;
    display: block;
    margin-bottom: calc(6 / 1300 * 100vw);
    transition: 0.4s ease;
  }
  #hb_btn.open span:nth-child(1) {
    transform: translate(0, calc(8 / 1300 * 100vw)) rotate(45deg);
  }
  #hb_btn.open span:nth-child(2) {
    opacity: 0;
  }
  #hb_btn.open span:nth-child(3) {
    transform: translate(0, calc(-6 / 1300 * 100vw)) rotate(-45deg);
  }
  #hb_nav {
    display: none;
    z-index: 9999;
    background: var(--mc);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    font-size: calc(50 / 1300 * 100vw);
    font-weight: 600;
  }
  #hb_nav .inner {
    overflow: auto;
    height: 100vh;
    padding: calc(200 / 1300 * 100vw) 0 calc(100 / 1300 * 100vw);
    max-width: calc(1200 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  #hb_nav a {
    color: #fff;
  }
  #hb_nav .logo {
    line-height: 1;
    font-size: 0;
    position: absolute;
    top: calc(20 / 1300 * 100vw);
    left: calc(30 / 1300 * 100vw);
  }
  #hb_nav .logo img {
    width: calc(240 / 1300 * 100vw);
  }
  #hb_nav nav {
    font-size: calc(40 / 1300 * 100vw);
    display: flex;
    justify-content: space-between;
    gap: 0 50px;
  }
  #hb_nav nav .en:before {
    content: "-";
    margin-right: calc(3 / 1300 * 100vw);
  }
  #hb_nav nav .sub {
    font-size: calc(20 / 1300 * 100vw);
    padding-left: calc(20 / 1300 * 100vw);
    display: grid;
    gap: calc(5 / 1300 * 100vw) 0;
    margin-top: calc(3 / 1300 * 100vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #hb_nav a {
    transition: opacity 0.4s ease;
  }
  #hb_nav a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #w_g_nav {
    z-index: 1000;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(100 / 1300 * 100vw);
  }
  #g_nav {
    line-height: 1;
  }
  #g_nav > ul {
    display: flex;
  }
  #g_nav .parent {
    font-family: var(--en);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(80 / 1300 * 100vw);
    padding: 0 calc(25 / 1300 * 100vw);
    transition: background-color 0.4s ease;
  }
  #g_nav .parent:has(+ .mega_menu) {
    background: transparent url(../img/gnav_arrow_w.svg) no-repeat center bottom calc(12 / 1300 * 100vw)/calc(12 / 1300 * 100vw) auto;
  }
  #g_nav .parent:hover {
    background-color: var(--mc);
  }
  #g_nav .mega:hover .parent {
    background-color: var(--mc);
  }
  #g_nav .mega:hover .mega_menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  #g_nav .mega .on {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  #g_nav .mega_menu {
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, calc(-10 / 1300 * 100vw));
    top: calc(80 / 1300 * 100vw);
    left: 0;
    width: 100%;
    padding: calc(60 / 1300 * 100vw) 0;
    background: var(--mc);
    box-shadow: 0 calc(11 / 1300 * 100vw) calc(12 / 1300 * 100vw) calc(-5 / 1300 * 100vw) rgba(0, 0, 0, 0.3);
  }
  #g_nav .mega_menu .w1200 {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
  }
  #g_nav .mega_menu .left, #g_nav .mega_menu .right {
    padding: calc(25 / 1300 * 100vw) 0;
  }
  #g_nav .mega_menu .left {
    color: #fff;
  }
  #g_nav .mega_menu .left .en {
    font-family: var(--en);
    font-size: calc(40 / 1300 * 100vw);
  }
  #g_nav .mega_menu .left .ja {
    font-size: calc(14 / 1300 * 100vw);
    margin-bottom: calc(15 / 1300 * 100vw);
  }
  #g_nav .mega_menu .right {
    padding-left: calc(50 / 1300 * 100vw);
    border-left: solid calc(1 / 1300 * 100vw) rgba(255, 255, 255, 0.5);
  }
  #g_nav .nav01 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(50 / 1300 * 100vw) calc(40 / 1300 * 100vw);
  }
  #g_nav .nav01 p {
    color: #fff;
    margin-top: calc(10 / 1300 * 100vw);
    text-align: center;
  }
  #g_nav .nav01 a {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #g_nav .nav01 a {
    transition: opacity 0.4s ease;
  }
  #g_nav .nav01 a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #g_nav .nav02 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  #g_nav .nav02 a {
    color: #fff;
    display: block;
  }
  #g_nav .nav03 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(25 / 1300 * 100vw);
  }
  #g_nav .nav03 a {
    color: #fff;
    display: flex;
    justify-content: center;
    border: solid calc(1 / 1300 * 100vw) #fff;
    align-items: center;
    padding: calc(25 / 1300 * 100vw) calc(15 / 1300 * 100vw) calc(25 / 1300 * 100vw) calc(5 / 1300 * 100vw);
    font-size: calc(13 / 1300 * 100vw);
    position: relative;
    letter-spacing: 0.025em;
    transition: background-color 0.4s ease;
  }
  #g_nav .nav03 a:before {
    content: "";
    display: block;
    width: calc(6 / 1300 * 100vw);
    height: calc(6 / 1300 * 100vw);
    border-top: solid calc(2 / 1300 * 100vw) #fff;
    border-right: solid calc(2 / 1300 * 100vw) #fff;
    transform: rotate(45deg) translate(0, -50%);
    position: absolute;
    top: 50%;
    right: calc(18 / 1300 * 100vw);
    transition: border-color 0.4s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #g_nav .nav03 a:hover {
    box-shadow: none;
    background: #fff;
    color: var(--mc);
  }
  #g_nav .nav03 a:hover:before {
    border-color: var(--mc);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .w1000 {
    max-width: calc(1000 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  .w1200 {
    max-width: calc(1200 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  @keyframes bg-gradient {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
  }
  #footer_grad {
    position: relative;
    z-index: 2;
    animation: bg-gradient 5s linear infinite alternate;
    background: linear-gradient(45deg, #060E17, #001429, #a5b4c1) 0/200% 100%;
    color: #fff;
  }
  #cta {
    padding: calc(100 / 1300 * 100vw) 0;
  }
  #cta .ttl01 {
    color: #fff;
  }
  #cta h3 {
    font-weight: bold;
    font-size: calc(30 / 1300 * 100vw);
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  #cta ul {
    display: flex;
    align-items: center;
    margin-top: calc(50 / 1300 * 100vw);
    gap: 0 calc(20 / 1300 * 100vw);
  }
  #cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: calc(240 / 1300 * 100vw);
    height: calc(60 / 1300 * 100vw);
    border: solid calc(1 / 1300 * 100vw) #fff;
  }
  footer {
    color: #fff;
  }
  footer .w1200 {
    border-top: solid calc(1 / 1300 * 100vw) rgba(255, 255, 255, 0.4);
    padding: calc(100 / 1300 * 100vw) 0 calc(80 / 1300 * 100vw);
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
  }
  footer a {
    color: #fff;
  }
  footer .logo img {
    max-width: calc(230 / 1300 * 100vw);
  }
  footer .logo span {
    display: block;
    font-size: calc(13 / 1300 * 100vw);
    letter-spacing: 0;
  }
  footer small {
    font-family: var(--en);
    font-size: calc(13 / 1300 * 100vw);
    display: block;
    text-align: right;
    margin-top: calc(100 / 1300 * 100vw);
  }
  footer nav {
    font-size: calc(15 / 1300 * 100vw);
    display: flex;
    justify-content: flex-end;
    gap: 0 calc(50 / 1300 * 100vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  footer nav a {
    transition: opacity 0.4s ease;
  }
  footer nav a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  footer nav .en:before {
    content: "-";
    margin-right: calc(3 / 1300 * 100vw);
  }
  footer nav .sub {
    font-size: calc(13 / 1300 * 100vw);
    padding-left: calc(10 / 1300 * 100vw);
    display: grid;
    gap: calc(5 / 1300 * 100vw) 0;
    margin-top: calc(3 / 1300 * 100vw);
  }
  .under_content {
    padding-top: calc(100 / 1300 * 100vw);
  }
  .under_content:has(.post_content) {
    padding-top: 0;
  }
  input[type=text],
  input[type=email],
  input[type=tel], select,
  textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    border: none;
    border-radius: 0;
    display: block;
    width: 100%;
    color: inherit;
    padding: calc(15 / 1300 * 100vw);
    background: #fff;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder, select::placeholder,
  textarea::placeholder {
    color: #ccc;
  }
  textarea {
    resize: vertical;
    height: calc(300 / 1300 * 100vw);
  }
  input[type=checkbox],
  input[type=radio] {
    margin-left: 0;
    margin-right: calc(6 / 1300 * 100vw);
  }
  input[type=checkbox] {
    top: calc(4 / 1300 * 100vw);
    width: 1.2em;
    height: 1.2em;
  }
  input[type=radio] {
    top: calc(2 / 1300 * 100vw);
    width: 1.2em;
    height: 1.2em;
  }
  select {
    background: #fff url(../img/arrow_select.svg) no-repeat center right calc(20 / 1300 * 100vw);
  }
  .form_table th span {
    color: #fff;
    background: var(--mc);
    font-size: calc(13 / 1300 * 100vw);
    margin-right: calc(6 / 1300 * 100vw);
    width: calc(40 / 1300 * 100vw);
    text-align: center;
    display: inline-block;
    height: calc(26 / 1300 * 100vw);
    line-height: calc(26 / 1300 * 100vw);
  }
  .form_table th .rc {
    background: #900;
  }
  .form_table td:has(input[type=radio]) {
    vertical-align: middle;
  }
  .form_table .wpcf7-not-valid-tip {
    font-size: calc(14 / 1300 * 100vw);
    margin-top: calc(5 / 1300 * 100vw);
    color: #900;
  }
  .form_table .wpcf7-not-valid-tip:before {
    content: "※";
  }
  .form_table .wpcf7-checkbox,
  .form_table .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 / 1300 * 100vw) calc(30 / 1300 * 100vw);
  }
  .form_table .wpcf7-list-item {
    margin-left: 0;
  }
  .form_table + .pp {
    margin-top: calc(50 / 1300 * 100vw);
    margin-bottom: calc(50 / 1300 * 100vw);
  }
  .form_table + .pp p {
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  #hb_nav nav a.en span {
    display: none;
  }
  #hb_nav nav .sub {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: calc(16 / 375 * 100vw);
    background: #000;
  }
  .ttl01 {
    margin-bottom: calc(40 / 375 * 100vw);
    letter-spacing: 0.05em;
  }
  .ttl01:has(+ p) {
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .ttl01 .ja {
    font-weight: 600;
    font-size: calc(14 / 375 * 100vw);
    position: relative;
    margin-bottom: calc(20 / 375 * 100vw);
    padding-left: calc(24 / 375 * 100vw);
  }
  .ttl01 .ja:before {
    top: calc(8 / 375 * 100vw);
    width: calc(16 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background: var(--mc);
  }
  .ttl01 .en {
    font-size: calc(32 / 375 * 100vw);
  }
  .ttl01 + p {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }
  .ttl01 + p br {
    display: none;
  }
  .ttl02 {
    font-weight: 700;
    font-size: calc(18 / 375 * 100vw);
    line-height: 1;
    padding: calc(18 / 375 * 100vw) calc(10 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
  .btn01 {
    font-size: calc(16 / 375 * 100vw);
    border: solid calc(3 / 375 * 100vw) var(--mc);
    min-height: calc(72 / 375 * 100vw);
    text-align: center;
    box-shadow: calc(5 / 375 * 100vw) calc(5 / 375 * 100vw) 0 0 var(--mc);
  }
  .btn01:before {
    width: calc(6 / 375 * 100vw);
    height: calc(6 / 375 * 100vw);
    border-top: solid calc(2 / 375 * 100vw) var(--mc);
    border-right: solid calc(2 / 375 * 100vw) var(--mc);
    right: calc(20 / 375 * 100vw);
  }
  .btn02 {
    color: var(--mc);
    width: calc(260 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    border-radius: calc(50 / 375 * 100vw);
    line-height: calc(46 / 375 * 100vw);
    padding-left: 0;
    border-width: calc(2 / 375 * 100vw);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: calc(15 / 375 * 100vw);
  }
  .sp_none {
    display: none;
  }
  .sp_block {
    display: block;
  }
  table {
    font-size: calc(15 / 375 * 100vw);
  }
  table tr {
    border-bottom: solid 1px rgba(41, 60, 93, 0.25);
  }
  table tr, table th, table td {
    display: block;
    width: 100%;
  }
  table th, table td {
    padding: calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
  table th {
    font-size: calc(13 / 375 * 100vw);
    padding-bottom: 0;
  }
  header #logo {
    max-width: 100%;
    width: calc(180 / 375 * 100vw);
    top: calc(20 / 375 * 100vw);
    left: calc(15 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  header #logo a {
    transition: opacity 0.4s ease;
  }
  header #logo a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 767px) {
  .w1000,
  .w1200 {
    padding-left: calc(25 / 375 * 100vw);
    padding-right: calc(25 / 375 * 100vw);
  }
  #hb_btn {
    width: calc(50 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
    top: calc(15 / 375 * 100vw);
    padding: calc(16 / 375 * 100vw) calc(10 / 375 * 100vw) 0;
  }
  #hb_btn span {
    margin-bottom: calc(6 / 375 * 100vw);
  }
  #hb_btn.open span:nth-child(1) {
    transform: translate(0, calc(8 / 375 * 100vw)) rotate(45deg);
  }
  #hb_btn.open span:nth-child(2) {
    opacity: 0;
  }
  #hb_btn.open span:nth-child(3) {
    transform: translate(0, calc(-6 / 375 * 100vw)) rotate(-45deg);
  }
  #hb_nav {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    font-size: calc(20 / 375 * 100vw);
  }
  #hb_nav .inner {
    height: 100vh;
    padding: calc(100 / 375 * 100vw) calc(20 / 375 * 100vw) calc(100 / 375 * 100vw);
  }
  #hb_nav .logo {
    width: calc(180 / 375 * 100vw);
    top: calc(20 / 375 * 100vw);
    left: calc(15 / 375 * 100vw);
  }
  #hb_nav .logo img {
    width: 100%;
  }
  #hb_nav nav {
    font-size: calc(16 / 375 * 100vw);
    display: block;
    line-height: 1;
    border-bottom: solid calc(1 / 375 * 100vw) #fff;
  }
  #hb_nav nav a {
    display: block;
  }
  #hb_nav nav a.en {
    border-top: solid calc(1 / 375 * 100vw) #fff;
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
    min-height: calc(58 / 375 * 100vw);
    position: relative;
  }
  #hb_nav nav a.en span {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: calc(58 / 375 * 100vw);
    height: calc(58 / 375 * 100vw);
    cursor: pointer;
  }
  #hb_nav nav a.en span.open:after {
    transform: rotate(180deg);
  }
  #hb_nav nav a.en span.open:before {
    opacity: 0;
  }
  #hb_nav nav a.en span:before, #hb_nav nav a.en span:after {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: 0.4s ease;
    right: calc(16 / 375 * 100vw);
    content: "";
    display: block;
    width: calc(20 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background: #fff;
  }
  #hb_nav nav a.en span:after {
    transform: rotate(90deg);
  }
  #hb_nav nav .en:before {
    content: "-";
    margin-right: calc(3 / 1300 * 100vw);
  }
  #hb_nav nav .sub {
    font-size: calc(14 / 375 * 100vw);
    padding: 0 0 calc(30 / 375 * 100vw) calc(32 / 375 * 100vw);
    display: none;
    margin-top: 0;
  }
  #hb_nav nav .sub li {
    margin-bottom: calc(16 / 375 * 100vw);
  }
  #hb_nav nav .sub li:last-child {
    margin-bottom: 0;
  }
  #hb_nav nav .sub a {
    display: revert;
  }
  #w_g_nav {
    display: none;
  }
  #g_nav {
    display: none;
  }
  #cta {
    padding: calc(80 / 375 * 100vw) 0;
  }
  #cta h3 {
    font-weight: bold;
    font-size: calc(24 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
  #cta ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(50 / 375 * 100vw);
    gap: 0 calc(20 / 375 * 100vw);
  }
  #cta a {
    width: calc(240 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    margin: 0 auto;
  }
  footer {
    color: #fff;
  }
  footer .w1200 {
    border-top: solid calc(1 / 375 * 100vw) rgba(255, 255, 255, 0.4);
    padding: calc(80 / 375 * 100vw) 4% calc(80 / 375 * 100vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(40 / 375 * 100vw) 0;
  }
  footer a {
    color: #fff;
  }
  footer .logo {
    text-align: center;
  }
  footer .logo img {
    max-width: calc(230 / 375 * 100vw);
  }
  footer .logo span {
    display: block;
    font-size: calc(13 / 375 * 100vw);
    letter-spacing: 0;
  }
  footer .privacy {
    display: block;
    max-width: fit-content;
    margin: calc(10 / 375 * 100vw) auto 0;
    text-decoration: underline;
    font-size: calc(13 / 375 * 100vw);
  }
  footer small {
    font-size: calc(12 / 375 * 100vw);
    text-align: center;
    margin-top: calc(100 / 375 * 100vw);
  }
  footer nav {
    font-size: calc(16 / 375 * 100vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(20 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  footer nav a {
    transition: opacity 0.4s ease;
  }
  footer nav a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 767px) {
  footer nav .en:before {
    content: "-";
    margin-right: calc(3 / 375 * 100vw);
  }
  footer nav .sub {
    font-size: calc(14 / 375 * 100vw);
    padding-left: calc(10 / 375 * 100vw);
    display: grid;
    gap: calc(5 / 375 * 100vw) 0;
    margin-top: calc(3 / 375 * 100vw);
  }
  .under_content {
    padding-top: calc(60 / 375 * 100vw);
  }
  .under_content:has(.post_content) {
    padding-top: 0;
  }
  input[type=text],
  input[type=email],
  input[type=tel], select,
  textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    border: none;
    border-radius: 0;
    display: block;
    width: 100%;
    color: inherit;
    padding: calc(15 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    background: #fff;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder, select::placeholder,
  textarea::placeholder {
    color: #ccc;
  }
  textarea {
    resize: vertical;
    height: calc(300 / 375 * 100vw);
  }
  input[type=checkbox],
  input[type=radio] {
    margin-left: 0;
    margin-right: calc(6 / 375 * 100vw);
  }
  input[type=checkbox] {
    -webkit-appearance: checkbox;
    position: relative;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    accent-color: var(--mc);
  }
  input[type=radio] {
    -webkit-appearance: radio;
    position: relative;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    accent-color: var(--mc);
  }
  select {
    background: #fff url(../img/arrow_select.svg) no-repeat center right calc(20 / 375 * 100vw);
  }
  .form_table th {
    padding: calc(20 / 375 * 100vw) 0 calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    width: 100%;
  }
  .form_table th span {
    font-size: calc(12 / 375 * 100vw);
    margin-right: calc(6 / 375 * 100vw);
    width: calc(50 / 375 * 100vw);
    text-align: center;
    display: inline-block;
    height: calc(24 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
  }
  .form_table td {
    width: 100%;
    padding: calc(10 / 375 * 100vw) 0 calc(25 / 375 * 100vw);
  }
  .form_table td:has(input[type=radio]) {
    vertical-align: middle;
  }
  .form_table .wpcf7-not-valid-tip {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
    color: #900;
  }
  .form_table .wpcf7-not-valid-tip:before {
    content: "※";
  }
  .form_table .wpcf7-checkbox,
  .form_table .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
  .form_table .wpcf7-list-item {
    margin-left: 0;
  }
  .form_table + .pp {
    margin-top: calc(50 / 375 * 100vw);
    margin-bottom: calc(50 / 375 * 100vw);
  }
  .form_table + .pp p {
    line-height: 1.6;
  }
}
.grecaptcha-badge {
  z-index: 9999;
}

#mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /*#test{
  	position: absolute;
  	left: 0;
  	top: 0;
  	content: '';
  	display: block;
  	z-index: 2;
  	width: 100%;
  	height: 100%;
  	mix-blend-mode: difference;
  	opacity: 0.25;
  }*/
}
#mv .sp {
  display: none;
}
#mv p {
  z-index: 10;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 90px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
  mix-blend-mode: difference;
}
#mv p span {
  width: 2380px;
  backface-visibility: hidden;
  will-change: transform;
  transform: translateZ(0);
  display: inline-block;
  animation: scroll-left 50s infinite linear 0s both;
}
#mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2380px);
  }
}
.flex_ttl01 {
  display: flex;
  justify-content: space-between;
}
.flex_ttl01.fe {
  align-items: flex-end;
}
.flex_ttl01 .left {
  width: 450px;
}
.flex_ttl01 .right {
  width: calc(100% - 450px);
}

#top section {
  padding: 120px 0;
  background: #fff;
}
#top section.mc {
  background: #f8f8f8;
}
#top #about .ttl01 {
  margin-bottom: 0;
}
#top #about .btn02 {
  margin-top: 40px;
}
#top #solution ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
#top #service ul {
  border-top: solid 3px var(--mc);
  line-height: 1.777;
}
#top #service ul li {
  border-bottom: solid 3px var(--mc);
}
#top #service ul a {
  color: var(--mc);
  display: block;
  padding: 45px 110px 45px 40px;
  position: relative;
  transition: 0.4s ease;
}
#top #service ul a:before {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 2px var(--mc);
  background: url(../img/arrow.svg) no-repeat calc(50% + 2px) center;
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  #top #service ul a:hover {
    background: var(--mc);
    color: #fff;
  }
  #top #service ul a:hover:before {
    right: 5px;
    background-image: url(../img/arrow_w.svg);
  }
}
#top #service ul h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
#top #service ul p {
  font-size: 18px;
}
#top #works {
  background: var(--mc);
}
#top #works .w1200 {
  position: relative;
}
#top #works .w1200 .btn02 {
  position: absolute;
  right: 0;
  top: 0;
}
#top #works p {
  color: #fff;
}

.works_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 50px;
}
.works_list.mb {
  margin-bottom: 40px;
}
.works_list figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
}
.works_list figure img {
  position: relative;
  vertical-align: top;
}
.works_list .cat {
  font-size: 14px;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 5px;
}
.works_list p {
  font-weight: bold;
  font-size: 18px;
}

#news .btn02 {
  margin-top: 50px;
}

.news_list {
  border-top: solid 3px var(--mc);
  line-height: 1.777;
}
.news_list li {
  border-bottom: solid 3px var(--mc);
}
.news_list .ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news_list .date {
  font-family: var(--en);
  font-weight: 600;
  opacity: 0.5;
}
.news_list a {
  display: block;
  padding: 34px 110px 28px 40px;
  position: relative;
  transition: 0.4s ease;
}
.news_list a:before {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 2px var(--mc);
  background: url(../img/arrow.svg) no-repeat calc(50% + 2px) center;
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  .news_list a:hover {
    background: var(--mc);
    color: #fff;
  }
  .news_list a:hover:before {
    right: 5px;
    background-image: url(../img/arrow_w.svg);
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  #mv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  #mv p {
    z-index: 10;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: calc(90 / 1300 * 100vw);
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    mix-blend-mode: difference;
  }
  #mv p span {
    width: calc(2380 / 1300 * 100vw);
    display: inline-block;
    animation: scroll-left 50s infinite linear 0s both;
  }
  #mv video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: revert;
    min-height: revert;
    height: 100%;
    width: auto;
  }
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-2380 / 1300 * 100vw));
    }
  }
  .flex_ttl01 {
    display: flex;
    justify-content: space-between;
  }
  .flex_ttl01.fe {
    align-items: flex-end;
  }
  .flex_ttl01 .left {
    width: calc(450 / 1300 * 100vw);
  }
  .flex_ttl01 .right {
    width: calc(100% - calc(450 / 1300 * 100vw));
  }
  #top section {
    padding: calc(120 / 1300 * 100vw) 0;
    background: #fff;
  }
  #top section.mc {
    background: #f8f8f8;
  }
  #top #about .ttl01 {
    margin-bottom: 0;
  }
  #top #about .btn02 {
    margin-top: calc(40 / 1300 * 100vw);
  }
  #top #solution ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(25 / 1300 * 100vw);
  }
  #top #service ul {
    border-top: solid calc(3 / 1300 * 100vw) var(--mc);
    line-height: 1.777;
  }
  #top #service ul li {
    border-bottom: solid calc(3 / 1300 * 100vw) var(--mc);
  }
  #top #service ul a {
    color: var(--mc);
    display: block;
    padding: calc(45 / 1300 * 100vw) calc(110 / 1300 * 100vw) calc(45 / 1300 * 100vw) calc(40 / 1300 * 100vw);
    position: relative;
    transition: 0.4s ease;
  }
  #top #service ul a:before {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(15 / 1300 * 100vw);
    content: "";
    display: block;
    width: calc(50 / 1300 * 100vw);
    height: calc(50 / 1300 * 100vw);
    border-radius: 50%;
    border: solid calc(2 / 1300 * 100vw) var(--mc);
    background: url(../img/arrow.svg) no-repeat calc(50% + calc(2 / 1300 * 100vw)) center;
    transition: 0.4s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #top #service ul a:hover {
    background: var(--mc);
    color: #fff;
  }
  #top #service ul a:hover:before {
    right: calc(5 / 1300 * 100vw);
    background-image: url(../img/arrow_w.svg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #top #service ul h3 {
    font-size: calc(24 / 1300 * 100vw);
    font-weight: bold;
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  #top #service ul p {
    font-size: calc(18 / 1300 * 100vw);
  }
  #top #works {
    background: var(--mc);
  }
  #top #works .w1200 {
    position: relative;
  }
  #top #works .w1200 .btn02 {
    position: absolute;
    right: 0;
    top: 0;
  }
  #top #works p {
    color: #fff;
  }
  .works_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(50 / 1300 * 100vw) calc(25 / 1300 * 100vw);
  }
  .works_list.mb {
    margin-bottom: calc(40 / 1300 * 100vw);
  }
  .works_list figure {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  .works_list figure img {
    position: relative;
    vertical-align: top;
  }
  .works_list .cat {
    font-size: calc(14 / 1300 * 100vw);
    margin-bottom: calc(5 / 1300 * 100vw);
    opacity: 0.5;
    line-height: 1;
  }
  .works_list p {
    font-weight: bold;
    font-size: calc(18 / 1300 * 100vw);
  }
  #news .btn02 {
    margin-top: calc(50 / 1300 * 100vw);
  }
  .news_list {
    border-top: solid calc(3 / 1300 * 100vw) var(--mc);
    line-height: 1.777;
  }
  .news_list li {
    border-bottom: solid calc(3 / 1300 * 100vw) var(--mc);
  }
  .news_list .ttl {
    font-size: calc(24 / 1300 * 100vw);
    font-weight: bold;
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  .news_list .date {
    font-family: var(--en);
    font-weight: 600;
    opacity: 0.5;
  }
  .news_list a {
    display: block;
    padding: calc(34 / 1300 * 100vw) calc(110 / 1300 * 100vw) calc(28 / 1300 * 100vw) calc(40 / 1300 * 100vw);
    position: relative;
    transition: 0.4s ease;
  }
  .news_list a:before {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(15 / 1300 * 100vw);
    content: "";
    display: block;
    width: calc(50 / 1300 * 100vw);
    height: calc(50 / 1300 * 100vw);
    border-radius: 50%;
    border: solid calc(2 / 1300 * 100vw) var(--mc);
    background: url(../img/arrow.svg) no-repeat calc(50% + calc(2 / 1300 * 100vw)) center;
    transition: 0.4s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .news_list a:hover {
    background: var(--mc);
    color: #fff;
  }
  .news_list a:hover:before {
    right: calc(5 / 1300 * 100vw);
    background-image: url(../img/arrow_w.svg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #mv {
    height: auto;
    aspect-ratio: 1024/576;
  }
  #mv video {
    position: absolute;
    top: 0;
    left: 0;
    transform: revert;
    min-width: revert;
    min-height: revert;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #mv {
    height: auto;
    aspect-ratio: 1/1;
  }
  #mv .pc {
    display: none;
  }
  #mv .sp {
    display: block;
  }
  #mv video {
    position: absolute;
    top: 0;
    left: 0;
    transform: revert;
    min-width: revert;
    min-height: revert;
    width: 100%;
    height: auto;
  }
  #mv p {
    font-size: calc(24 / 375 * 100vw);
    bottom: calc(5 / 375 * 100vw);
  }
  #mv p span {
    width: calc(834 / 375 * 100vw);
    display: inline-block;
    animation: scroll-left 25s infinite linear 0s both;
  }
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-834 / 375 * 100vw));
    }
  }
  .flex_ttl01 {
    display: grid;
    justify-content: space-between;
    gap: calc(40 / 375 * 100vw) 0;
  }
  .flex_ttl01.fe {
    align-items: flex-end;
  }
  .flex_ttl01 .left, .flex_ttl01 .right {
    width: 100%;
  }
  #top section {
    padding: calc(80 / 375 * 100vw) 0;
  }
  #top #solution ul {
    grid-template-columns: 1fr;
    gap: calc(25 / 375 * 100vw);
  }
  #top #solution .btn01 {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0.05em;
  }
  #top #service ul {
    border-top: solid calc(3 / 375 * 100vw) var(--mc);
    line-height: 1.777;
  }
  #top #service ul li {
    border-bottom: solid calc(3 / 1300 * 100vw) var(--mc);
  }
  #top #service ul a {
    padding: calc(24 / 375 * 100vw) calc(12 / 375 * 100vw) calc(24 / 375 * 100vw) calc(12 / 375 * 100vw);
  }
  #top #service ul a:before {
    top: calc(40 / 375 * 100vw);
    right: calc(5 / 375 * 100vw);
    content: "";
    display: block;
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    border-radius: 50%;
    border: solid calc(1 / 375 * 100vw) var(--mc);
    background: url(../img/arrow.svg) no-repeat calc(50% + calc(1 / 375 * 100vw)) center/calc(4 / 375 * 100vw) auto;
    transition: 0.4s ease;
  }
  #top #service ul h3 {
    font-size: calc(18 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(10 / 375 * 100vw);
  }
  #top #service ul p {
    font-size: calc(15 / 375 * 100vw);
  }
  #top #works {
    background: var(--mc);
  }
  #top #works .w1200 {
    position: relative;
  }
  #top #works .w1200 .btn02 {
    position: relative;
    margin: calc(50 / 375 * 100vw) auto 0;
  }
  #top #works p {
    color: #fff;
  }
  .works_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(60 / 375 * 100vw) 0;
  }
  .works_list.mb {
    margin-bottom: calc(40 / 375 * 100vw);
  }
  .works_list figure {
    aspect-ratio: 16/12;
    overflow: hidden;
    margin-bottom: calc(15 / 375 * 100vw);
  }
  .works_list figure img {
    position: relative;
    vertical-align: top;
  }
  .works_list .cat {
    font-size: calc(13 / 375 * 100vw);
  }
  .works_list p {
    font-weight: bold;
    font-size: calc(15 / 375 * 100vw);
  }
  #news .btn02 {
    margin-top: calc(30 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  .news_list {
    border-top: solid calc(2 / 375 * 100vw) var(--mc);
    line-height: 1.777;
  }
  .news_list li {
    border-bottom: solid calc(2 / 375 * 100vw) var(--mc);
  }
  .news_list .date {
    font-size: calc(13 / 375 * 100vw);
  }
  .news_list .ttl {
    font-size: calc(16 / 375 * 100vw);
    font-weight: bold;
    line-height: 1.6;
  }
  .news_list a {
    padding: calc(16 / 375 * 100vw) calc(40 / 375 * 100vw) calc(12 / 375 * 100vw) 0;
  }
  .news_list a:before {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(5 / 375 * 100vw);
    content: "";
    display: block;
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    border-radius: 50%;
    border: solid calc(1 / 375 * 100vw) var(--mc);
    background: url(../img/arrow.svg) no-repeat calc(50% + calc(1 / 375 * 100vw)) center/calc(4 / 375 * 100vw) auto;
    transition: 0.4s ease;
  }
}
#w_page_mv {
  background: #000;
}

#page_mv {
  height: 600px;
  padding-top: 250px;
  position: relative;
  background: #000;
  overflow: hidden;
}
#page_mv:before {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0.4;
  content: "";
  display: block;
  width: 100%;
  height: 600px;
  background: var(--page-mv) no-repeat center/cover;
}
#page_mv h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}
#page_mv h1 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}
#page_mv #bread {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 20px;
}

#bread {
  color: #fff;
  display: flex;
  gap: 0 10px;
}
#bread li:not(:last-child) {
  padding-right: 15px;
  background: url(../img/arrow_w.svg) no-repeat center right/6px auto;
}
#bread li:last-child {
  opacity: 0.8;
}
#bread a {
  color: #fff;
  text-decoration: underline;
}
#bread a:hover {
  text-decoration: none;
}

.under_content {
  position: relative;
  z-index: 2;
  background: #f8f8f8;
  padding-bottom: 100px;
}

.post_content {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 60px;
  color: var(--mc);
}
.post_content time {
  opacity: 0.5;
}
.post_content a {
  text-decoration: underline;
}
.post_content a:hover {
  text-decoration: none;
}
.post_content h2 {
  text-align: left;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.75;
  margin-bottom: 1.5em;
}
.post_content h3 {
  font-weight: 900;
  margin-top: 120px;
  font-size: 32px;
  margin-bottom: 1em;
}
.post_content h4 {
  font-size: 20px;
  font-weight: bold;
}
.post_content p {
  font-size: 18px;
  margin: 1.5em 0;
  line-height: 2.4;
}
.post_content figure {
  margin: 1em 0;
}
.post_content ul {
  font-size: 18px;
  font-weight: bold;
  background: #fff;
  padding: 30px 40px;
  display: grid;
  gap: 10px 0;
  border: solid 1px #ccc;
}
.post_content ul li {
  position: relative;
  padding-left: 20px;
}
.post_content ul li:before {
  position: absolute;
  left: 0;
  top: 15px;
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 8px;
  background: var(--mc);
  border-radius: 50%;
}
.post_content .wp-block-image.size-full {
  text-align: center;
}

.box_list {
  margin: 60px 0;
  display: grid;
  gap: 30px;
}
.box_list > div {
  border: solid 1px #ccc;
  padding: 20px 25px 30px;
  background: #fff;
}
.box_list h4 {
  margin-bottom: 10px;
}
.box_list p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 0;
}
.box_list p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  #page_mv {
    height: calc(600 / 1300 * 100vw);
    padding-top: calc(250 / 1300 * 100vw);
    position: relative;
    overflow: hidden;
  }
  #page_mv:before {
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0.4;
    content: "";
    display: block;
    width: 100%;
    height: calc(600 / 1300 * 100vw);
    background: var(--page-mv) no-repeat center/cover;
  }
  #page_mv h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: calc(50 / 1300 * 100vw);
    line-height: 1;
  }
  #page_mv h1 span {
    display: block;
    font-size: calc(18 / 1300 * 100vw);
    font-weight: 500;
    margin-top: calc(16 / 1300 * 100vw);
  }
  #page_mv #bread {
    position: absolute;
    z-index: 2;
    left: calc(30 / 1300 * 100vw);
    bottom: calc(20 / 1300 * 100vw);
  }
  #bread {
    color: #fff;
    display: flex;
    gap: 0 calc(10 / 1300 * 100vw);
  }
  #bread li:not(:last-child) {
    padding-right: calc(15 / 1300 * 100vw);
    background: url(../img/arrow_w.svg) no-repeat center right/calc(6 / 1300 * 100vw) auto;
  }
  #bread li:last-child {
    opacity: 0.8;
  }
  #bread a {
    color: #fff;
    text-decoration: underline;
  }
  #bread a:hover {
    text-decoration: none;
  }
  .under_content {
    position: relative;
    z-index: 2;
    background: #f8f8f8;
    padding-bottom: calc(100 / 1300 * 100vw);
  }
  .post_content {
    max-width: calc(1020 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding-top: calc(100 / 1300 * 100vw);
    color: var(--mc);
  }
  .post_content h2 {
    text-align: left;
    font-weight: 900;
    font-size: calc(40 / 1300 * 100vw);
    line-height: 1.75;
    margin-bottom: 1.5em;
  }
  .post_content h3 {
    font-weight: 900;
    margin-top: calc(120 / 1300 * 100vw);
    font-size: calc(32 / 1300 * 100vw);
    margin-bottom: 1em;
  }
  .post_content h4 {
    font-size: calc(20 / 1300 * 100vw);
    font-weight: bold;
  }
  .post_content p {
    font-size: calc(18 / 1300 * 100vw);
    margin: 1.5em 0;
    line-height: 2.4;
  }
  .post_content ul {
    font-size: calc(18 / 1300 * 100vw);
    font-weight: bold;
    background: #fff;
    padding: calc(30 / 1300 * 100vw) calc(40 / 1300 * 100vw);
    display: grid;
    gap: calc(10 / 1300 * 100vw) 0;
    border: solid calc(1 / 1300 * 100vw) #ccc;
  }
  .post_content ul li {
    position: relative;
    padding-left: calc(20 / 1300 * 100vw);
  }
  .post_content ul li:before {
    position: absolute;
    left: 0;
    top: calc(15 / 1300 * 100vw);
    content: "";
    display: inline-block;
    aspect-ratio: 1/1;
    width: calc(8 / 1300 * 100vw);
    background: var(--mc);
    border-radius: 50%;
  }
  .box_list {
    margin: calc(60 / 1300 * 100vw) 0;
    display: grid;
    gap: calc(30 / 1300 * 100vw);
  }
  .box_list > div {
    border: solid calc(1 / 1300 * 100vw) #ccc;
    padding: calc(20 / 1300 * 100vw) calc(25 / 1300 * 100vw) calc(30 / 1300 * 100vw);
    background: #fff;
  }
  .box_list h4 {
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  .box_list p {
    font-size: calc(16 / 1300 * 100vw);
    line-height: 1.8;
    margin-top: 0;
  }
  .box_list p:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #page_mv {
    height: calc(360 / 375 * 100vw);
    padding-top: calc(150 / 375 * 100vw);
  }
  #page_mv:before {
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0.4;
    content: "";
    display: block;
    width: 100%;
    height: calc(360 / 375 * 100vw);
    background: var(--page-mv-sp) no-repeat center/cover;
  }
  #page_mv h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: calc(24 / 375 * 100vw);
    letter-spacing: 0.075em;
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    line-height: 1.4;
  }
  #page_mv #bread {
    position: absolute;
    z-index: 2;
    left: calc(15 / 375 * 100vw);
    bottom: calc(20 / 375 * 100vw);
    overflow: auto;
    white-space: nowrap;
    padding-right: calc(20 / 375 * 100vw);
  }
  #bread {
    color: #fff;
    display: flex;
    gap: 0 calc(10 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
    width: calc(340 / 375 * 100vw);
  }
  #bread li:not(:last-child) {
    padding-right: calc(15 / 375 * 100vw);
    background: url(../img/arrow_w.svg) no-repeat center right/calc(6 / 375 * 100vw) auto;
  }
  #bread li:last-child {
    opacity: 0.8;
  }
  #bread a {
    color: #fff;
    text-decoration: underline;
  }
  #bread a:hover {
    text-decoration: none;
  }
  .under_content {
    position: relative;
    z-index: 2;
    background: #f8f8f8;
    padding-bottom: calc(100 / 375 * 100vw);
  }
  .w1200 .post_content {
    padding-left: 0;
    padding-right: 0;
  }
  .post_content {
    padding: calc(60 / 375 * 100vw) calc(25 / 375 * 100vw);
    color: var(--mc);
  }
  .post_content h2 {
    text-align: left;
    font-weight: 900;
    font-size: calc(22 / 375 * 100vw);
    line-height: 1.5;
    margin-bottom: 1.5em;
  }
  .post_content h3 {
    font-weight: 700;
    margin-top: calc(80 / 375 * 100vw);
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: 1em;
    line-height: 1.6;
  }
  .post_content h3 + p {
    margin-top: 0;
  }
  .post_content h3 + ul {
    margin-top: calc(20 / 375 * 100vw);
  }
  .post_content h3 + .box_list {
    margin-top: calc(20 / 375 * 100vw);
  }
  .post_content h4 {
    font-size: calc(17 / 375 * 100vw);
    font-weight: bold;
    line-height: 1.4;
  }
  .post_content p {
    font-size: calc(15 / 375 * 100vw);
    margin: 1.5em 0;
    line-height: 2;
  }
  .post_content p:first-child {
    margin-top: 0;
  }
  .post_content ul {
    font-size: calc(15 / 375 * 100vw);
    line-height: 1.4;
    font-weight: bold;
    background: #fff;
    padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
    display: grid;
    gap: calc(18 / 375 * 100vw) 0;
    border: solid calc(1 / 375 * 100vw) #ccc;
  }
  .post_content ul li {
    position: relative;
    padding-left: calc(20 / 375 * 100vw);
  }
  .post_content ul li:before {
    position: absolute;
    left: 0;
    top: calc(8 / 375 * 100vw);
    content: "";
    display: inline-block;
    aspect-ratio: 1/1;
    width: calc(8 / 375 * 100vw);
    background: var(--mc);
    border-radius: 50%;
  }
  .post_content .btn02 {
    margin-top: calc(40 / 375 * 100vw);
  }
  .box_list {
    margin: calc(60 / 375 * 100vw) 0;
    display: grid;
    gap: calc(30 / 375 * 100vw);
  }
  .box_list > div {
    border: solid calc(1 / 375 * 100vw) #ccc;
    padding: calc(25 / 375 * 100vw) calc(25 / 375 * 100vw) calc(30 / 375 * 100vw);
    background: #fff;
  }
  .box_list h4 {
    margin-bottom: calc(10 / 375 * 100vw);
  }
  .box_list p {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.6;
    margin-top: 0;
  }
  .box_list p:last-child {
    margin-bottom: 0;
  }
}
.list_parts01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}
@media (any-hover: hover) {
  .list_parts01 a {
    transition: opacity 0.4s ease;
  }
  .list_parts01 a:hover {
    opacity: 0.6 !important;
  }
}
.list_parts01 h2 {
  color: var(--mc);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 5px;
  background: url(../img/arrow.svg) no-repeat 4px 19px/6px auto;
  padding-left: 24px;
}
.list_parts01 p {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .list_parts01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(60 / 1300 * 100vw) calc(30 / 1300 * 100vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .list_parts01 a {
    transition: opacity 0.4s ease;
  }
  .list_parts01 a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .list_parts01 h2 {
    color: var(--mc);
    font-size: calc(18 / 1300 * 100vw);
    font-weight: bold;
    margin-bottom: calc(10 / 1300 * 100vw);
    padding-top: calc(5 / 1300 * 100vw);
    background: url(../img/arrow.svg) no-repeat calc(4 / 1300 * 100vw) calc(19 / 1300 * 100vw)/calc(6 / 1300 * 100vw) auto;
    padding-left: calc(24 / 1300 * 100vw);
  }
  .list_parts01 p {
    opacity: 0.8;
    font-size: calc(15 / 1300 * 100vw);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .list_parts01 {
    grid-template-columns: 1fr;
    gap: calc(60 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
  .list_parts01 h2 {
    color: var(--mc);
    font-size: calc(16 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(10 / 375 * 100vw);
    padding-top: calc(5 / 375 * 100vw);
    background: url(../img/arrow.svg) no-repeat calc(4 / 375 * 100vw) calc(16 / 375 * 100vw)/calc(6 / 375 * 100vw) auto;
    padding-left: calc(24 / 375 * 100vw);
  }
  .list_parts01 p {
    opacity: 0.8;
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.8;
  }
}
.faq_list {
  border-bottom: solid 2px var(--mc);
}
.faq_list summary {
  border-top: solid 2px var(--mc);
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.7222222222;
  padding: 24px 38px 24px 10px;
  position: relative;
  cursor: pointer;
  font-weight: 600;
}
@media (any-hover: hover) {
  .faq_list summary {
    transition: opacity 0.4s ease;
  }
  .faq_list summary:hover {
    opacity: 0.6 !important;
  }
}
.faq_list summary.open:before {
  opacity: 0;
}
.faq_list summary:before, .faq_list summary:after {
  position: absolute;
  top: 50%;
  right: 6px;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #707070;
}
.faq_list summary:before {
  transform: rotate(90deg);
}
.faq_list .content {
  padding-bottom: 32px;
  padding-left: 10px;
  line-height: 1.6428571429;
  letter-spacing: 0.15em;
  display: none;
  color: var(--black);
}
.faq_list .content p {
  margin: 1em 0;
}
.faq_list .content p:first-child {
  margin-top: 0;
}
.faq_list .content p:last-child {
  margin-bottom: 0;
}

#faq .under_content {
  padding-bottom: 0;
}
#faq h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
#faq section {
  padding: 100px 0 120px;
}
#faq section:nth-child(even) {
  background: #fff;
}
#faq nav {
  padding-bottom: 100px;
}
#faq nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
#faq nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: solid 2px var(--mc);
  padding: 15px 10px 30px;
  position: relative;
  transition: 0.4s ease;
  background: var(--mc);
  color: #fff;
}
#faq nav a:after {
  transition: 0.4s ease;
  position: absolute;
  transform: rotate(-45deg);
  bottom: 16px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
}
@media (any-hover: hover) {
  #faq nav a:hover {
    background: transparent;
    color: var(--mc);
  }
  #faq nav a:hover:after {
    border-color: var(--mc);
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .faq_list {
    border-bottom: solid calc(2 / 1300 * 100vw) var(--mc);
  }
  .faq_list summary {
    border-top: solid calc(2 / 1300 * 100vw) var(--mc);
    font-size: calc(18 / 1300 * 100vw);
    letter-spacing: 0.15em;
    line-height: 1.7222222222;
    padding: calc(24 / 1300 * 100vw) calc(38 / 1300 * 100vw) calc(24 / 1300 * 100vw) calc(10 / 1300 * 100vw);
    position: relative;
    cursor: pointer;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .faq_list summary {
    transition: opacity 0.4s ease;
  }
  .faq_list summary:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .faq_list summary.open:before {
    opacity: 0;
  }
  .faq_list summary:before, .faq_list summary:after {
    position: absolute;
    top: 50%;
    right: calc(6 / 1300 * 100vw);
    content: "";
    display: block;
    width: calc(16 / 1300 * 100vw);
    height: calc(2 / 1300 * 100vw);
    background: #707070;
  }
  .faq_list summary:before {
    transform: rotate(90deg);
  }
  .faq_list .content {
    padding-bottom: calc(32 / 1300 * 100vw);
    padding-left: calc(10 / 1300 * 100vw);
    line-height: 1.6428571429;
    letter-spacing: 0.15em;
    display: none;
    color: var(--black);
  }
  .faq_list .content p {
    margin: 1em 0;
  }
  .faq_list .content p:first-child {
    margin-top: 0;
  }
  .faq_list .content p:last-child {
    margin-bottom: 0;
  }
  #faq .under_content {
    padding-bottom: 0;
  }
  #faq h2 {
    text-align: center;
    font-size: calc(24 / 1300 * 100vw);
    font-weight: bold;
    margin-bottom: calc(32 / 1300 * 100vw);
  }
  #faq section {
    padding: calc(100 / 1300 * 100vw) 0 calc(120 / 1300 * 100vw);
  }
  #faq section:nth-child(even) {
    background: #fff;
  }
  #faq nav {
    padding-bottom: calc(100 / 1300 * 100vw);
  }
  #faq nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(15 / 1300 * 100vw);
  }
  #faq nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: solid calc(2 / 1300 * 100vw) var(--mc);
    padding: calc(15 / 1300 * 100vw) calc(10 / 1300 * 100vw) calc(30 / 1300 * 100vw);
    position: relative;
    transition: 0.4s ease;
    background: var(--mc);
    color: #fff;
  }
  #faq nav a:after {
    transition: 0.4s ease;
    position: absolute;
    transform: rotate(-45deg);
    bottom: calc(16 / 1300 * 100vw);
    content: "";
    display: block;
    width: calc(8 / 1300 * 100vw);
    height: calc(8 / 1300 * 100vw);
    border-left: solid calc(2 / 1300 * 100vw) #fff;
    border-bottom: solid calc(2 / 1300 * 100vw) #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #faq nav a:hover {
    background: transparent;
    color: var(--mc);
  }
  #faq nav a:hover:after {
    border-color: var(--mc);
  }
}
@media screen and (max-width: 767px) {
  .faq_list summary {
    font-size: calc(15 / 375 * 100vw);
    line-height: 1.5;
    padding: calc(18 / 375 * 100vw) calc(38 / 375 * 100vw) calc(18 / 375 * 100vw) calc(10 / 375 * 100vw);
  }
  .faq_list summary:before, .faq_list summary:after {
    top: 50%;
    right: calc(6 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
  }
  .faq_list .content {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(32 / 375 * 100vw);
    padding-left: calc(10 / 375 * 100vw);
  }
  #faq h2 {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
  #faq section {
    padding: calc(60 / 375 * 100vw) 0 calc(80 / 375 * 100vw);
  }
  #faq nav {
    padding-bottom: calc(60 / 375 * 100vw);
  }
  #faq nav ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(10 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
  #faq nav a {
    padding: calc(15 / 375 * 100vw) calc(10 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
  #faq nav a:after {
    transition: 0.4s ease;
    position: absolute;
    transform: rotate(-45deg);
    bottom: calc(18 / 375 * 100vw);
    content: "";
    display: block;
    width: calc(6 / 375 * 100vw);
    height: calc(6 / 375 * 100vw);
    border-left: solid calc(2 / 375 * 100vw) #fff;
    border-bottom: solid calc(2 / 375 * 100vw) #fff;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  #faq nav a:hover {
    background: transparent;
    color: var(--mc);
  }
  #faq nav a:hover:after {
    border-color: var(--mc);
  }
}
#solution .grid01 {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  #solution .grid01 {
    margin-top: calc(50 / 1300 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #solution .grid01 {
    grid-template-columns: 1fr;
    margin-top: calc(50 / 375 * 100vw);
  }
  #solution .grid01 .btn01 {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0.05em;
    padding-right: calc(10 / 375 * 100vw);
  }
  #solution .grid01 .btn01:before {
    right: calc(15 / 375 * 100vw);
  }
}
#page404 h2 {
  text-align: center;
}
#page404 p {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  #page404 p {
    margin-bottom: calc(50 / 1300 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #page404 h2 {
    text-align: left;
  }
  #page404 p {
    text-align: left;
    margin-bottom: calc(50 / 375 * 100vw);
  }
}

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