@charset "UTF-8";
html {
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.428;
  color: #222;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

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

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
.sticky {
  position: sticky;
}

.spacer {
  flex-grow: 1 !important;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
table:not([class]) {
  margin: 1em 0;
}
table td > *:first-child {
  margin-top: 0;
}
table td > *:last-child {
  margin-bottom: 0;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease;
}
.js-fade-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.youtube,
.gmap {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe,
.gmap iframe {
  width: 100%;
  height: 100%;
}

.scroll-prevent {
  overflow: hidden;
}

.has-theme-color-color {
  color: #204e79;
}

.has-theme-color-background-color {
  background: #204e79;
}

.has-theme-black-color {
  color: #000;
}

.has-theme-black-background-color {
  background: #000;
}

.has-theme-grey-color {
  color: #ebebeb;
}

.has-theme-grey-background-color {
  background: #ebebeb;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

input {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: middle;
}
input[type=text], input[type=number], input[type=password], input[type=tel], input[type=email] {
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  background: #fff;
  line-height: 1.428;
  color: inherit;
  font-size: inherit;
}
input[type=text].min, input[type=number].min, input[type=password].min, input[type=tel].min, input[type=email].min {
  width: 2em;
}
input[type=text].very-short, input[type=text].code-min, input[type=number].very-short, input[type=number].code-min, input[type=password].very-short, input[type=password].code-min, input[type=tel].very-short, input[type=tel].code-min, input[type=email].very-short, input[type=email].code-min {
  width: 4em;
}
input[type=text].code, input[type=text].month, input[type=number].code, input[type=number].month, input[type=password].code, input[type=password].month, input[type=tel].code, input[type=tel].month, input[type=email].code, input[type=email].month {
  width: 6em;
}
input[type=text].date, input[type=number].date, input[type=password].date, input[type=tel].date, input[type=email].date {
  width: 100px;
}
input[type=text].short, input[type=number].short, input[type=password].short, input[type=tel].short, input[type=email].short {
  width: 160px;
}
input[type=text].full, input[type=number].full, input[type=password].full, input[type=tel].full, input[type=email].full {
  width: 100%;
}
input[type=radio], input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}
input[type=radio] + span, input[type=checkbox] + span {
  padding-left: 26px;
  position: relative;
}
input[type=radio] + span:empty, input[type=checkbox] + span:empty {
  padding-left: 20px;
}
input[type=radio] + span::before, input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #ccc;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type=radio] + span {
  color: #999;
}
input[type=radio] + span::before {
  border: 1px solid #000;
  border-radius: 50%;
}
input[type=radio]:checked + span {
  color: #000;
}
input[type=radio]:checked + span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox]:checked + span::before {
  border-color: #000;
  background: #000;
}
input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/check.svg") no-repeat center/contain;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.select-styled {
  display: inline-block;
  position: relative;
}
.select-styled::before {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  font-size: 1.125rem;
  line-height: 1;
  color: #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-overflow: "";
  background: none #fff;
  vertical-align: middle;
  line-height: 1.428;
  font-size: inherit;
  color: inherit;
  padding: 4px 30px 4px 10px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
}

textarea {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  padding: 10px 20px;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  min-height: calc(7.14em + 22px);
  background-color: #fff;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.428;
}

.has-caption {
  position: relative;
}
.has-caption .caption:not(:empty) {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.875rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

.has-shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1254901961);
}

.has-border {
  border: 1px solid rgba(0, 0, 0, 0.1254901961);
}

.l-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s ease;
  background: #fff;
}
.l-header.is-scrolled {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.l-header__content {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .l-header__content {
    height: 62px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__content {
    padding: 0 80px 0 16px;
    justify-content: space-between;
    gap: 16px;
  }
}
.is-scrolled > .l-header__content {
  height: 62px;
}
.l-header__logo {
  margin: 0 65px 0 0;
  padding: 0;
  flex-shrink: 0;
  width: 272px;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .l-header__logo {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 160px;
  }
}
.is-scrolled .l-header__logo {
  width: 170px;
}
.l-header__spacer {
  flex-grow: 1;
}
.l-header__tel {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-header__tel {
    display: none;
  }
}
nav .l-header__tel {
  display: none;
}
@media screen and (max-width: 767px) {
  nav .l-header__tel {
    display: flex;
  }
}
.l-header__telNum {
  padding-left: 2px;
  color: #204e79;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .l-header__telNum {
    font-size: 1.375rem;
  }
}
.is-scrolled .l-header__telNum {
  font-size: 1.375rem;
}
nav .l-header__telNum {
  color: #fff;
}
.l-header__telNum::before {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 1/1;
  background: url("../img/icon_tel.svg") no-repeat center/contain;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .l-header__telNum::before {
    width: 16px;
  }
}
.is-scrolled .l-header__telNum::before {
  width: 16px;
}
nav .l-header__telNum::before {
  background-image: url("../img/icon_tel_white.svg");
}
.l-header__telTime {
  font-weight: 500;
  font-size: 1.125rem;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .l-header__telTime {
    font-size: 0.75rem;
  }
}
.is-scrolled .l-header__telTime {
  font-size: 0.75rem;
}
nav .l-header__telTime {
  opacity: 0.8;
}
.l-header__nav {
  margin: 0;
}
.l-header__menu {
  margin: 0;
  padding-right: 180px;
  display: flex;
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: none;
  }
  .l-header__menu.is-active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
    height: 100svh;
    padding: 100px 20px 20px;
    background: #204e79;
    color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
  }
}
.l-header__menuList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__menuList {
    flex-direction: column;
    gap: 10px;
  }
}
.l-header__menuList li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.l-header__menuList li::before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 1/1;
  background: url("../img/arrow_menu.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-header__menuList li::before {
    background-image: url("../img/arrow_menu_dark.svg");
  }
}
.l-header__menuList li a {
  display: flex;
  flex-direction: column;
  color: #707070;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .l-header__menuList li a {
    color: #fff;
  }
}
.is-scrolled .l-header__menuList li a {
  font-size: 1rem;
}
.l-header__menuList li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #707070;
  transform: scaleX(0);
  transform-origin: top left;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .l-header__menuList li a::after {
    content: none;
  }
}
.l-header__menuList li a:hover::after {
  transform: scaleX(1);
}
.l-header__hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.l-header__hamburger span {
  background-color: #000;
  border: none;
  height: 2px;
  width: 28px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 10px;
}
.l-header__hamburger span:nth-of-type(3) {
  top: 20px;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger.is-active span {
  background-color: #fff;
}
.l-header__hamburger.is-active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
}
.l-header__hamburger.is-active .middle {
  opacity: 0;
}
.l-header__hamburger.is-active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
}

.l-main {
  width: 100%;
  position: relative;
}
.l-main__heading {
  max-width: 1150px;
  height: 400px;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .l-main__heading {
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__heading {
    height: 200px;
    padding: 0 20px;
  }
}
.l-main__headingBg {
  display: block;
  width: 100svw;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  z-index: -1;
}
.l-main__headingBg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: var(--main-heading-image);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.l-main__headingBg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.l-main__title {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-main__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.l-main__title .en {
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-main__title .en {
    font-size: 1.125rem;
  }
}
.l-main__title .en::before {
  content: "";
  display: block;
  width: 42px;
  aspect-ratio: 1/1;
  background: url("../img/icon_key_white.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-main__title .en::before {
    width: 24px;
  }
}
.l-main__title .ja {
  display: inline-block;
  padding: 16px 32px;
  position: relative;
  font-weight: 800;
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .l-main__title .ja {
    font-size: 1.375rem;
  }
}
.l-main__title .ja.is-animated::before {
  animation: bg-text 3.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #204e79;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
@keyframes bg-text {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.l-main__content {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .l-main__content {
    padding: 120px 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__content {
    padding: 60px 20px;
  }
}
.l-main__content * {
  line-height: 1.7;
}
.l-main__content h2[class=wp-block-heading] {
  margin: 60px 0 30px;
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-main__content h2[class=wp-block-heading] {
    margin: 40px 0 20px;
    font-size: 1.375rem;
  }
}
.l-main__content h3[class=wp-block-heading] {
  margin: 60px 0 30px;
  font-weight: 600;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .l-main__content h3[class=wp-block-heading] {
    margin: 40px 0 20px;
    font-size: 1.125rem;
  }
}
.l-main__content h4[class=wp-block-heading] {
  margin: 60px 0 30px;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .l-main__content h4[class=wp-block-heading] {
    margin: 40px 0 20px;
    font-size: 1rem;
  }
}
.l-main__content h2:first-child,
.l-main__content h3:first-child,
.l-main__content h4:first-child {
  margin-top: 0;
}
.l-main__content p {
  line-height: 1.7;
}
.l-main__content ul,
.l-main__content ol,
.l-main__content dl {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .l-main__content ul,
  .l-main__content ol,
  .l-main__content dl {
    font-size: 1rem;
  }
}
.l-main__content a {
  text-decoration: underline;
}
.l-main__content nav.navigation.pagination {
  margin: 60px 0 0;
}
.l-main__content nav.navigation.pagination h2 {
  margin: 0;
  padding: 0;
}
.l-main__content nav.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #999;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.next, .l-main__content nav.navigation.pagination .nav-links .page-numbers.prev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.next::after, .l-main__content nav.navigation.pagination .nav-links .page-numbers.prev::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/arrow_circled.svg") no-repeat center/contain;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.next:hover::after, .l-main__content nav.navigation.pagination .nav-links .page-numbers.prev:hover::after {
  background-image: url("../img/arrow_blue.svg");
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.prev::after {
  order: -1;
  transform: rotate(180deg);
}
.l-main__content .wp-block-image.size-full img {
  width: 100%;
  height: auto;
}
.l-main__content .wp-block-image :where(figcaption) {
  margin-top: 0;
  padding: 5px 10px;
  background: #f5f5f5;
  color: #666;
  text-align: right;
  font-size: 1rem;
}
.l-main__content .wp-block-image :where(figcaption) a {
  color: inherit;
  text-decoration: underline;
}
.l-main__content .wp-block-table.default table {
  margin: 0;
}
.l-main__content .wp-block-table.default table td {
  padding: 15px;
  border: 0;
  border-bottom: 1px solid #bfbfbf;
  vertical-align: top;
  text-align: left;
  line-height: 2;
}
.l-main__content .wp-block-table.default table td:first-child {
  white-space: nowrap;
  font-weight: 500;
}
.l-main__content .wp-block-table.default table td strong {
  font-weight: 400;
  color: #e52f37;
}
@media screen and (max-width: 767px) {
  .l-main__content .wp-block-table.default table,
  .l-main__content .wp-block-table.default tbody,
  .l-main__content .wp-block-table.default tr,
  .l-main__content .wp-block-table.default td {
    display: block;
  }
  .l-main__content .wp-block-table.default td {
    padding: 15px 0 0 !important;
  }
  .l-main__content .wp-block-table.default td:first-child {
    font-weight: 500;
  }
  .l-main__content .wp-block-table.default td:last-child {
    padding: 10px 0 !important;
  }
  .l-main__content .wp-block-table.default td:not(:last-child) {
    border-bottom: 0;
  }
}
.l-main__content .wp-block-columns .wp-block-column > *:first-child {
  margin-top: 0;
}
.l-main__content .wp-block-columns .wp-block-column > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-main__content .wp-block-buttons.is-layout-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-main__content .wp-block-button.default {
    width: 100%;
  }
}
.l-main__content .wp-block-button.default a {
  min-width: 330px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 16px 40px;
  border-radius: 100px;
  background: #204e79;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-main__content .wp-block-button.default a {
    min-width: auto;
    width: 100%;
    font-size: min(4vw, 18px);
  }
}
.l-main__content .wp-block-button.default a:hover {
  transform: scale(1.1);
}
.l-main__content .wp-block-button.arrow a {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  background: transparent;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.l-main__content .wp-block-button.arrow a::after {
  content: "";
  display: block;
  width: 59px;
  height: 59px;
  background: url("../img/arrow_black.svg") no-repeat center/contain;
}
.l-main__content .wp-block-button.arrow a:hover::after {
  background-image: url("../img/arrow_blue.svg");
}

.l-footer {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-bottom: 10px solid #204e79;
}
@media screen and (max-width: 767px) {
  .l-footer {
    border-bottom-width: 5px;
  }
}
.l-footer__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1199px) {
  .l-footer__container {
    padding: 80px 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    padding: 40px 20px;
    flex-direction: column;
    gap: 40px;
  }
}
.l-footer__logo {
  flex-shrink: 0;
  width: 126px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 63px;
  }
}
.l-footer__menuList {
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-columns: 3;
       columns: 3;
  -moz-column-fill: auto;
       column-fill: auto;
  -moz-column-gap: 2em;
       column-gap: 2em;
  height: 8em;
}
@media screen and (max-width: 767px) {
  .l-footer__menuList {
    -moz-columns: 2;
         columns: 2;
    -moz-column-fill: balance;
         column-fill: balance;
    height: auto;
  }
}
.l-footer__menuList li {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__menuList li {
    align-items: stretch;
  }
}
.l-footer__menuList li::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url("../img/arrow_menu.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.l-footer__menuList li a {
  color: #707070;
}
.l-footer__copyright {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 0;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (max-width: 1199px) {
  .l-footer__copyright {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    padding: 10px 20px;
    text-align: center;
  }
}

.c-btn {
  min-width: 200px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 16px 40px;
  border: 2px solid #204e79;
  background: #204e79;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.c-btn::after {
  content: "";
  display: block;
  width: 9.44px;
  height: 16.57px;
  background: url("../img/arrow_white.svg") no-repeat center/contain;
}
.c-btn:hover {
  background: #fff;
  color: #204e79;
}
.c-btn:hover::after {
  background-image: url("../img/arrow.svg");
}
.c-btn.dark {
  border: 2px solid #fff;
  background: #fff;
  color: #204e79;
}
.c-btn.dark::after {
  background-image: url("../img/arrow.svg");
}
.c-btn.dark:hover {
  background: #204e79;
  color: #fff;
}
.c-btn.dark:hover::after {
  background-image: url("../img/arrow_white.svg");
}
@media screen and (max-width: 767px) {
  .c-btn {
    min-width: auto;
    width: 100%;
    font-size: min(4vw, 18px);
  }
}
.c-btn.centering {
  margin: 0 auto;
}

.c-form dl {
  margin: 0;
  padding: 0;
}
.c-form dl dt {
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}
.c-form dl dt.required::after {
  content: "必須";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  border-radius: 3px;
  background: #bc0303;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
}
.c-form dl dt p {
  line-height: 1.5;
}
.c-form dl dt p:first-child {
  margin-top: 0;
}
.c-form dl dt p:last-child {
  margin-bottom: 0;
}
.c-form dl dd {
  margin: 0;
  padding: 0;
}
.c-form dl dd p {
  line-height: 2;
}
.c-form dl dd p:first-child {
  margin-top: 0;
}
.c-form dl dd p:last-child {
  margin-bottom: 0;
}
.c-form hr {
  margin: 30px 0;
  border: 0;
  border-top: 2px solid #bfbfbf;
  background: transparent;
}
.c-form h3.wp-block-heading {
  margin: 30px 0 10px;
  font-size: 1.25rem;
}
.c-form ul li > *:first-child {
  margin-top: 0;
}
.c-form ul li > *:last-child {
  margin-bottom: 0;
}
.c-form__acceptance {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.c-form__acceptance::after {
  content: "必須";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  border-radius: 3px;
  background: #bc0303;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
}
.c-form__submit {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.c-form__submit p {
  margin: 0;
}
.c-form__submit .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.c-form__submit input[type=submit] {
  min-width: 330px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 16px 40px;
  border: 0;
  border-radius: 100px;
  background: #204e79;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form__submit input[type=submit] {
    min-width: auto;
    width: 80vw;
    font-size: min(4vw, 18px);
  }
}
.c-form__submit input[type=submit]:not([disabled]):hover {
  transform: scale(1.1);
}
.c-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.c-form .wpcf7-not-valid-tip {
  color: #bc0303;
}

.c-characterDetail {
  display: flex;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-characterDetail {
    flex-direction: column;
  }
}
.c-characterDetail__prev {
  width: 60px;
  height: 100svh;
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .c-characterDetail__prev {
    width: 30px;
  }
}
.c-characterDetail__prev a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: url("../img/arrow_circled.svg") no-repeat center/contain;
  transform: scale(-1, 1);
}
.c-characterDetail__next {
  width: 60px;
  height: 100svh;
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .c-characterDetail__next {
    width: 30px;
  }
}
.c-characterDetail__next a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: url("../img/arrow_circled.svg") no-repeat center/contain;
}
.c-characterDetail__img {
  display: flex;
  justify-content: center;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-characterDetail__img {
    width: 100%;
  }
}
.c-characterDetail__img > div {
  aspect-ratio: 1199/2560;
  max-height: 100svh;
  margin: 0 auto;
}
.c-characterDetail__aside {
  width: 50%;
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-characterDetail__aside {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px;
  }
}
.c-characterDetail__name {
  color: #204e79;
}
.c-characterDetail__name .en {
  text-transform: uppercase;
  font-weight: 700;
  font-size: min(3.2vw, 16px);
}
.c-characterDetail__name .ja {
  margin: 10px 0 20px;
  line-height: 1;
  font-weight: 700;
  font-size: min(9.6vw, 56px);
}
.c-characterDetail__heading {
  border-bottom: #446 solid 2px;
  line-height: 1;
  font-size: 30px;
  padding: 0 0 12px;
  margin: 32px 0 0;
}
.c-characterDetail__profile {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 12px;
  border-bottom: rgba(68, 68, 102, 0.2) solid 2px;
}
.c-characterDetail__profile dl {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.c-characterDetail__profile dl dt {
  font-weight: 600;
}
.c-characterDetail__profile dl:nth-last-child(2),
.c-characterDetail__profile dl:nth-last-child(2) ~ dl {
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .c-characterDetail__profile dl:nth-last-child(2),
  .c-characterDetail__profile dl:nth-last-child(2) ~ dl {
    width: calc(50% - 5px);
  }
}
.c-characterDetail__description {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .c-characterDetail__description {
    width: 100%;
  }
}
.c-characterDetail__description > *:first-child {
  margin-top: 0;
}
.c-characterDetail__description > *:last-child {
  margin-bottom: 0;
}
.c-characterDetail__description p,
.c-characterDetail__description ul,
.c-characterDetail__description ol,
.c-characterDetail__description dl {
  font-size: 1rem;
}

.c-characterList {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 160px 0 0;
}
@media screen and (max-width: 767px) {
  .c-characterList {
    margin: 80px 0 0;
  }
}
.c-characterList__item {
  display: flex;
  flex-direction: column;
  margin: 0 -100px;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-characterList__item {
    margin: 0 -50px;
  }
}
.c-characterList__item:nth-child(1), .c-characterList__item:nth-child(5) {
  z-index: 1;
}
.c-characterList__item:nth-child(2), .c-characterList__item:nth-child(4) {
  z-index: 2;
}
.c-characterList__item:nth-child(3) {
  z-index: 3;
}
.c-characterList__itemLink {
  display: block;
  width: calc(100% - 200px);
  height: 100%;
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-characterList__itemLink {
    width: calc(100% - 100px);
  }
}
.c-characterList__description {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 8px;
  background: #eee;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .c-characterList__description {
    margin: 80px 20px;
  }
}
.c-characterList__description > *:first-child {
  margin-top: 0;
}
.c-characterList__description > *:last-child {
  margin-bottom: 0;
}

.c-groupList {
  max-width: 800px;
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-groupList {
    flex-direction: column;
    padding: 0 20px;
  }
}
.c-groupList__item {
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-groupList__item {
    width: 100%;
  }
}
.c-groupList__item img {
  border-radius: 0 0 8px 8px;
}
.c-groupList__itemName {
  margin: 20px 0 0;
  font-weight: 600;
  font-size: 18px;
}

.c-inventoryDetail__heading {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__heading {
    text-align: left;
  }
}
.c-inventoryDetail__splide {
  margin: 0 auto;
}
.c-inventoryDetail__splide .splide__arrow {
  width: 59px;
  height: 59px;
  background: transparent;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__splide .splide__arrow {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -10px;
    transform: translateY(100%);
  }
}
.c-inventoryDetail__splide .splide__arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/arrow_circled.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.c-inventoryDetail__splide .splide__arrow:disabled::before {
  opacity: 0.5;
}
.c-inventoryDetail__splide .splide__arrow--prev {
  left: -139px;
}
@media screen and (max-width: 1199px) {
  .c-inventoryDetail__splide .splide__arrow--prev {
    left: -69px;
  }
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__splide .splide__arrow--prev {
    left: 0;
  }
}
.c-inventoryDetail__splide .splide__arrow--prev::before {
  transform: rotate(180deg);
}
.c-inventoryDetail__splide .splide__arrow--next {
  right: -139px;
}
@media screen and (max-width: 1199px) {
  .c-inventoryDetail__splide .splide__arrow--next {
    right: -69px;
  }
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__splide .splide__arrow--next {
    right: 0;
  }
}
.c-inventoryDetail__splide .splide__pagination {
  bottom: -30px;
}
.c-inventoryDetail__splide .splide__pagination__page.is-active {
  background: #666;
}
.c-inventoryDetail__splideThumb {
  max-width: 800px;
  margin: 13px auto 70px;
}
@media screen and (max-width: 1199px) {
  .c-inventoryDetail__splideThumb {
    max-width: 750px;
  }
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__splideThumb {
    margin-top: 58px;
  }
}
.c-inventoryDetail__item {
  aspect-ratio: 3/2;
  height: 100%;
}
.c-inventoryDetail__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-inventoryDetail__body {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1199px) {
  .c-inventoryDetail__body {
    max-width: 750px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__body {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__spec {
    width: 100%;
  }
}
.c-inventoryDetail__itemHeading {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.125rem;
}
.c-inventoryDetail__itemHeading::before {
  content: "";
  display: block;
  width: 15px;
  height: 5px;
  background: #204e79;
}
.c-inventoryDetail__table {
  border-top: 1px solid #ddd;
}
.c-inventoryDetail__table td {
  padding: 8px 10px 6px;
  border-bottom: 1px solid #ddd;
}
.c-inventoryDetail__table td:first-child {
  padding-left: 0;
  white-space: nowrap;
  font-weight: 500;
}
.c-inventoryDetail__price {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.c-inventoryDetail__priceTotal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.c-inventoryDetail__priceTotal::before {
  content: "総額（税込）";
}
.c-inventoryDetail__priceTotal .num {
  font-weight: 600;
  font-size: 1.5rem;
}
.c-inventoryDetail__priceTotal.is-soldout > span {
  padding-left: 10px;
  padding-right: calc(6em + 10px);
  position: relative;
}
.c-inventoryDetail__priceTotal.is-soldout > span::before {
  content: "";
  width: 100%;
  height: 0;
  border-top: 3px double #f00;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.c-inventoryDetail__priceTotal.is-soldout > span::after {
  content: "売り切れ";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6em;
  padding: 2px 10px;
  border: 1px solid #f00;
  border-radius: 3px;
  background: #fff;
  color: #f00;
  font-weight: 500;
  font-size: 0.9375rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.c-inventoryDetail__priceNotes:not(:empty) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.c-inventoryDetail__description {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__description {
    width: 100%;
  }
}
.c-inventoryDetail__description > *:first-child {
  margin-top: 0;
}
.c-inventoryDetail__description > *:last-child {
  margin-bottom: 0;
}
.c-inventoryDetail__description p,
.c-inventoryDetail__description ul,
.c-inventoryDetail__description ol,
.c-inventoryDetail__description dl {
  font-size: 1rem;
}
.c-inventoryDetail__description h3.wp-block-heading {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.125rem;
}
.c-inventoryDetail__description h3.wp-block-heading::before {
  content: "";
  display: block;
  width: 15px;
  height: 5px;
  background: #204e79;
}
.c-inventoryDetail__more {
  margin: 80px 0 0;
  display: flex;
  justify-content: center;
}
.c-inventoryDetail__moreBtn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
}
.c-inventoryDetail__moreBtn::before {
  content: "";
  display: block;
  width: 59px;
  height: 59px;
  background: url("../img/arrow_black.svg") no-repeat center/contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-inventoryDetail__moreBtn::before {
    width: 30px;
    height: 30px;
  }
}
.c-inventoryDetail__moreBtn:hover::before {
  background-image: url("../img/arrow_blue.svg");
}

.c-categoryList {
  margin: 0 0 60px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.c-categoryList__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 40px;
  border: 2px solid #204e79;
  border-radius: 100px;
  text-decoration: none !important;
  color: #204e79;
  font-weight: 500;
  font-size: 1.125rem;
  transition: 0.2s ease;
}
.c-categoryList__item a.is-current {
  background: #204e79;
  color: #fff;
}
.c-categoryList__item a[data-num] {
  padding: 5px 20px 5px 40px;
}
.c-categoryList__item a[data-num]::after {
  content: attr(data-num);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  background: #204e79;
  color: #fff;
  line-height: 1;
  font-size: 0.8125rem;
}
.c-categoryList__item a[data-num].is-current::after {
  background: #fff;
  color: #204e79;
}
.c-categoryList__item a:hover {
  transform: translateY(-5px);
}

.c-deliveryList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.c-deliveryList__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc((100% - 30px) / 2);
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .c-deliveryList__item {
    width: 100%;
  }
}
.c-deliveryList__itemImg {
  aspect-ratio: 3/2;
}
.c-deliveryList__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-deliveryList__itemTitle {
  margin: 5px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.c-deliveryList__itemTitle .name {
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryList__itemTitle .name {
    font-size: 1.125rem;
  }
}
.c-deliveryList__itemTitle .attribute {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 3px;
  background: #f5f5f5;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryList__itemTitle .attribute {
    font-size: 0.875rem;
  }
}
.c-deliveryList__itemTitle .attribute > div {
  display: flex;
  align-items: center;
}
.c-deliveryList__itemTitle .attribute > div:not(:first-child)::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
}
.c-deliveryList__itemInfo > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryList__itemInfo > div {
    font-size: 0.875rem;
  }
}
.c-deliveryList__itemInfo > div::before {
  font-weight: 500;
}
.c-deliveryList__itemInfo .model::before {
  content: "車種";
}
.c-deliveryList__itemInfo .distance::before {
  content: "走行距離";
}
.c-deliveryList__itemInfo .date::before {
  content: "納車日";
}
.c-deliveryList__itemComment {
  margin-top: 20px;
}
.c-deliveryList__itemComment::before {
  content: attr(data-name) "からのコメント";
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryList__itemComment::before {
    font-size: 0.875rem;
  }
}
.c-deliveryList__itemComment > *:first-child {
  margin-top: 0;
}
.c-deliveryList__itemComment > *:last-child {
  margin-bottom: 0;
}

.c-deliveryDetail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-deliveryDetail__title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.c-deliveryDetail__title .name {
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryDetail__title .name {
    font-size: 1.125rem;
  }
}
.c-deliveryDetail__title .attribute {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 3px;
  background: #f5f5f5;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryDetail__title .attribute {
    font-size: 0.875rem;
  }
}
.c-deliveryDetail__title .attribute > div {
  display: flex;
  align-items: center;
}
.c-deliveryDetail__title .attribute > div:not(:first-child)::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
}
.c-deliveryDetail__thumbnail {
  aspect-ratio: 3/2;
}
.c-deliveryDetail__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-deliveryDetail__info > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryDetail__info > div {
    font-size: 0.875rem;
  }
}
.c-deliveryDetail__info > div::before {
  font-weight: 500;
}
.c-deliveryDetail__info .model::before {
  content: "車種";
}
.c-deliveryDetail__info .distance::before {
  content: "走行距離";
}
.c-deliveryDetail__info .date::before {
  content: "納車日";
}
.c-deliveryDetail__comment::before {
  content: attr(data-name) "からのコメント";
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-deliveryDetail__comment::before {
    font-size: 0.875rem;
  }
}
.c-deliveryDetail__comment > *:first-child {
  margin-top: 0;
}
.c-deliveryDetail__comment > *:last-child {
  margin-bottom: 0;
}
.c-deliveryDetail__more {
  margin: 80px 0 0;
  display: flex;
  justify-content: center;
}
.c-deliveryDetail__moreBtn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
}
.c-deliveryDetail__moreBtn::before {
  content: "";
  display: block;
  width: 59px;
  height: 59px;
  background: url("../img/arrow_black.svg") no-repeat center/contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-deliveryDetail__moreBtn::before {
    width: 30px;
    height: 30px;
  }
}
.c-deliveryDetail__moreBtn:hover::before {
  background-image: url("../img/arrow_blue.svg");
}

.c-blogList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.c-blogList__item {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .c-blogList__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .c-blogList__item {
    width: 100%;
  }
}
.c-blogList__itemThumbnail {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.c-blogList__itemThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: ease 0.2s;
  transform: scale(1);
}
.c-blogList__itemThumbnail:hover img {
  transform: scale(1.1);
}
.c-blogList__itemMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.c-blogList__itemDate {
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-size: 0.9375rem;
}
.c-blogList__itemCategories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-blogList__itemCategory {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid #9f9f9f;
  color: #333;
  text-decoration: none !important;
  font-size: 0.8125rem;
}
.c-blogList__itemTitle {
  color: #333;
  font-size: 1rem;
}

.c-blogDetail__heading {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #000;
  font-weight: 600;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-blogDetail__heading {
    font-size: 1.5625rem;
  }
}
.c-blogDetail__meta {
  margin: 0 0 60px;
  padding: 10px 0;
  border-bottom: 1px solid #000;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-blogDetail__meta {
    margin-bottom: 40px;
  }
}
.c-blogDetail__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-blogDetail__category {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid #9f9f9f;
  color: #333;
  text-decoration: none !important;
  font-size: 0.8125rem;
}
.c-blogDetail__date {
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-size: 0.9375rem;
}
.c-blogDetail__thumbnail {
  display: block;
  margin: 0 0 60px;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .c-blogDetail__thumbnail {
    margin-bottom: 40px;
  }
}
.c-blogDetail__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-blogDetail__more {
  margin: 60px 0 0;
  display: flex;
  justify-content: center;
}
.c-blogDetail__moreBtn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
}
.c-blogDetail__moreBtn::before {
  content: "";
  display: block;
  width: 59px;
  height: 59px;
  background: url("../img/arrow_black.svg") no-repeat center/contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-blogDetail__moreBtn::before {
    width: 30px;
    height: 30px;
  }
}
.c-blogDetail__moreBtn:hover::before {
  background-image: url("../img/arrow_blue.svg");
}

.c-jobList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.c-jobList__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc((100% - 30px) / 2);
  padding: 20px;
  border: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .c-jobList__item {
    width: 100%;
  }
}
.c-jobList__itemImg {
  aspect-ratio: 3/2;
}
.c-jobList__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-jobList__itemTitle {
  margin: 5px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-jobList__itemTitle {
    font-size: 1.125rem;
  }
}
.c-jobList__itemTitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 5px;
  background: #204e79;
}
.c-faq details.is-opened summary {
  border-bottom: 0;
}
.c-faq details.is-opened summary::after {
  transform: rotate(180deg);
}
.c-faq summary {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #000;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-faq summary {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.c-faq summary::-webkit-details-marker {
  display: none;
}
.c-faq summary::after {
  content: "";
  display: block;
  width: 44px;
  height: 14px;
  background: url("../img/arrow_down.svg") no-repeat left center/contain;
  flex-shrink: 0;
  transition: transform 0.2s;
}
@media screen and (max-width: 767px) {
  .c-faq summary::after {
    width: 20px;
    height: 12px;
  }
}
.c-faq summary > span {
  display: block;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.c-faq summary + div {
  overflow: hidden;
}
.c-faq summary + div div {
  padding: 0 0 40px 28px;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .c-faq summary + div div {
    padding: 0 0 30px 28px;
  }
}
.c-faq summary + div div > *:first-child {
  margin-top: 0;
}
.c-faq summary + div div > *:last-child {
  margin-bottom: 0;
}

.c-footContact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 60px 40px;
  background: var(--foot-contact-image) no-repeat center/cover;
  color: #fff;
}
.c-footContact__heading {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-footContact__heading .en {
  font-weight: 500;
  font-size: 1.875rem;
  text-transform: uppercase;
}
.c-footContact__heading .ja {
  font-weight: 400;
  font-size: 0.875rem;
}
.c-footContact__body {
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  font-size: 0.875rem;
}
.c-footContact__body > *:first-child {
  margin-top: 0;
}
.c-footContact__body > *:last-child {
  margin-bottom: 0;
}
.c-footContact__btn {
  min-width: 330px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 16px 40px;
  border-radius: 100px;
  background: #f3f50f;
  color: #000;
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-footContact__btn {
    min-width: auto;
    width: 100%;
    font-size: min(4vw, 18px);
  }
}
.c-footContact__btn:hover {
  transform: scale(1.1);
}

.wpc-filter-chips-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wpc-filter-chips-list:has(li) {
  margin-bottom: 20px;
}
.wpc-filter-chips-list li {
  margin: 0 !important;
}
.wpc-filter-chips-list li a {
  height: 100%;
  padding-left: 14px !important;
  padding-right: 14px !important;
  display: flex !important;
  align-items: center !important;
}
.wpc-filter-chips-list li a * {
  line-height: 1.428;
  letter-spacing: 0;
}

.wpc-filters-widget-wrapper {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 15px;
}
.wpc-filters-widget-wrapper .wpc-instead-of-posts-found {
  display: none;
}
.wpc-filters-widget-wrapper .wpc-filters-section {
  width: calc((100% - 40px) / 3);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .wpc-filters-widget-wrapper .wpc-filters-section {
    width: 100%;
  }
}
.wpc-filters-widget-wrapper .wpc-filters-section .wpc-filter-title {
  font-weight: 500;
}
.wpc-filters-widget-wrapper .wpc-filters-section .wpc-filter-content * {
  line-height: 1.428;
}
.wpc-filters-widget-wrapper .wpc-filters-section .wpc-filter-content select {
  margin: 0;
}
.wpc-filters-widget-wrapper .wpc-filters-section .wpc-filter-content:has(select) {
  position: relative;
}
.wpc-filters-widget-wrapper .wpc-filters-section .wpc-filter-content:has(select)::before {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  font-size: 1.125rem;
  line-height: 1;
  color: #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.wpc-edit-filter-set {
  display: none;
}

.p-home__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-home__heading .en {
  color: #204e79;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1;
  display: flex;
  gap: 4px;
  align-items: center;
}
.p-home__heading .en::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background: url("../img/icon_key.svg") no-repeat center/contain;
}
section.dark .p-home__heading .en {
  color: #fff;
}
section.dark .p-home__heading .en::before {
  background-image: url("../img/icon_key_white.svg");
}
.p-home__heading .ja {
  font-weight: 800;
  font-size: 2.375rem;
}
section.dark .p-home__heading .ja {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__heading .ja {
    font-size: 1.375rem;
  }
}

.p-homeFv__container {
  padding: 0 0 4.0287769784svw;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-homeFv__container {
    padding: 0 0 5.1798561151svw;
  }
}
@media screen and (max-width: 767px) {
  .p-homeFv__container {
    padding: 0;
  }
}
.p-homeFv__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70svw;
  height: 39.2805755396svw;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 1199px) {
  .p-homeFv__heading {
    width: 90svw;
    height: 50.5035971223svw;
  }
}
@media screen and (max-width: 767px) {
  .p-homeFv__heading {
    width: 100svw;
    height: 100svw;
  }
}
.p-homeFv__heading .c-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.p-homeFv__headingLogo {
  width: 9.4676258993svw;
}
@media screen and (max-width: 1199px) {
  .p-homeFv__headingLogo {
    width: 12.1726618705svw;
  }
}
@media screen and (max-width: 767px) {
  .p-homeFv__headingLogo {
    width: 20svw;
  }
}
.p-homeFv__headingTitle {
  margin: 0;
  font-weight: 700;
  font-size: 2svw;
}
@media screen and (max-width: 767px) {
  .p-homeFv__headingTitle {
    font-size: 5svw;
  }
}
.p-homeFv__slide .splide__arrow {
  width: 4.381294964svw;
  height: 4.381294964svw;
  background: url("../img/arrow_slide.svg") no-repeat center/contain;
  opacity: 1;
}
.p-homeFv__slide .splide__arrow:hover {
  opacity: 0.5;
}
.p-homeFv__slide .splide__arrow--next {
  right: 15svw;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 1199px) {
  .p-homeFv__slide .splide__arrow--next {
    right: 5svw;
  }
}
.p-homeFv__slide .splide__arrow--prev {
  left: 15svw;
  transform: translate(-50%, -50%) scale(-1, 1);
}
@media screen and (max-width: 1199px) {
  .p-homeFv__slide .splide__arrow--prev {
    left: 5svw;
  }
}
.p-homeFv__slide .splide__pagination {
  bottom: -2.0143884892svw;
  transform: translateY(50%);
  gap: 1.964028777svw;
}
@media screen and (max-width: 1199px) {
  .p-homeFv__slide .splide__pagination {
    bottom: -2.5899280576svw;
  }
}
.p-homeFv__slide .splide__pagination__page {
  width: 0.8561151079svw;
  height: 0.8561151079svw;
  margin: 0;
  background: #ddd;
  opacity: 1;
}
.p-homeFv__slide .splide__pagination__page.is-active {
  background: #204e79;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .p-homeFv__slideItem img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-homeService {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-homeService {
    padding: 120px 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeService {
    padding: 60px 20px;
  }
}
.p-homeService::before {
  content: "";
  display: block;
  width: 100svw;
  height: 100%;
  background: rgba(32, 78, 121, 0.1);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.p-homeService__items {
  margin: 120px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-homeService__items {
    margin: 60px 0 0;
    flex-direction: column;
  }
}
.p-homeService__item {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-homeService__item {
    width: 100%;
  }
}
.p-homeService__item img {
  width: 100%;
  aspect-ratio: 370/430;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-homeService__item img {
    aspect-ratio: 3/2;
  }
}
.p-homeService__item h3 {
  margin: 36px 0 28px;
  padding: 0 0 0 20px;
  border-left: 6px solid #204e79;
  color: #204e79;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-homeService__item h3 {
    font-size: 1.25rem;
  }
}
.p-homeService__item p {
  margin: 0;
  color: #707070;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-homeService__item p {
    font-size: 1rem;
  }
}

.p-homeMovie {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-homeMovie {
    padding: 120px 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMovie {
    padding: 60px 20px;
  }
}
.p-homeMovie__embed {
  margin: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .p-homeMovie__embed {
    margin: 30px 0 0;
  }
}

.p-homeProduct {
  width: 100%;
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .p-homeProduct {
    padding: 120px 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProduct {
    padding: 60px 20px;
  }
}
.p-homeProduct::before {
  content: "";
  display: block;
  width: 100svw;
  height: 100%;
  background: #204e79;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.p-homeProduct__heading {
  max-width: 1150px;
  margin: 0 auto;
}
.p-homeProduct__slide {
  max-width: 1280px;
  width: 80%;
  margin: 120px auto 80px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-homeProduct__slide {
    margin: 60px auto 40px;
    width: 90%;
  }
}
.p-homeProduct__slide .splide__arrow {
  width: 70px;
  height: 70px;
  background: url("../img/arrow_slide_white.svg") no-repeat center/contain;
  opacity: 1;
  top: 11svw;
}
@media screen and (min-width: 1600px) {
  .p-homeProduct__slide .splide__arrow {
    top: 183.3333333333px;
  }
}
@media screen and (max-width: 1199px) {
  .p-homeProduct__slide .splide__arrow {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProduct__slide .splide__arrow {
    top: 30svw;
  }
}
.p-homeProduct__slide .splide__arrow:hover {
  opacity: 0.5;
}
.p-homeProduct__slide .splide__arrow--next {
  right: -80px;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 1199px) {
  .p-homeProduct__slide .splide__arrow--next {
    right: -60px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProduct__slide .splide__arrow--next {
    right: 0;
  }
}
.p-homeProduct__slide .splide__arrow--prev {
  left: -80px;
  transform: translate(-50%, -50%) scale(-1, 1);
}
@media screen and (max-width: 1199px) {
  .p-homeProduct__slide .splide__arrow--prev {
    left: -60px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProduct__slide .splide__arrow--prev {
    left: 0;
  }
}
.p-homeProduct__slideItem {
  color: #fff;
}
.p-homeProduct__slideItem img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-homeProduct__slideItem img {
    aspect-ratio: 3/2;
  }
}
.p-homeProduct__slideItem h3 {
  margin: 32px 0 0;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-homeProduct__slideItem h3 {
    margin: 20px 0 0;
    font-size: 1.25rem;
  }
}

.p-homeFoot {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-homeFoot {
    padding: 120px 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeFoot {
    padding: 60px 20px;
  }
}
.p-homeFoot::before {
  content: "";
  display: block;
  width: 100svw;
  height: 100%;
  background: rgba(32, 78, 121, 0.1);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.p-homeFoot__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-homeFoot__items {
    flex-direction: column;
    row-gap: 20px;
  }
}
.p-homeFoot__item {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .p-homeFoot__item {
    width: 100%;
  }
}
.p-homeFoot__item:nth-child(3) {
  width: 100%;
}

.b-product__inner {
  max-width: 64.375rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .b-product__inner {
    padding: 0 2rem;
    max-width: 34.375rem;
  }
}

.b-product__item {
  display: grid;
  gap: 0 8%;
  grid-template-columns: 41% 51%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .b-product__item {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
}

.b-product__item:nth-of-type(n + 2) {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .b-product__item:nth-of-type(n + 2) {
    margin-top: 2.3125rem;
  }
}

.b-product__img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.b-product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.b-product__name {
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .b-product__name {
    font-size: 1.125rem;
  }
}

.b-product__detail {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .b-product__detail {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
  }
}

.b-product__link {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-product__link {
    margin-top: 0.8125rem;
  }
}

.b-product__link span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  color: #777;
  padding-right: 2%;
}
@media screen and (max-width: 767px) {
  .b-product__link span {
    padding-right: 4%;
  }
}

.b-product__link a {
  text-decoration: none;
}

.b-product__link a,
.b-product__link a svg {
  transition: all 0.3s;
}

.b-product__link a:hover {
  opacity: 0.7;
}

.b-product__link a:hover svg {
  margin-left: 1%;
}

.b-pd__inner {
  max-width: 70.625rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .b-pd__inner {
    padding: 0 0.9375rem;
    max-width: 34.375rem;
  }
}

.b-pd__item {
  display: grid;
  gap: 0 7.5%;
  grid-template-columns: 50% 42.5%;
}
@media screen and (max-width: 767px) {
  .b-pd__item {
    grid-template-columns: 1fr;
  }
}

.b-pd__img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.b-pd__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.b-pd__text {
  padding-top: 17%;
}
@media screen and (max-width: 767px) {
  .b-pd__text {
    padding-top: 2.1875rem;
    margin: 0 auto;
    width: min(90%, 500px);
  }
}

.b-pd__name {
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .b-pd__name {
    font-size: 1.25rem;
  }
}

.b-pd__detail1 {
  font-size: 1rem;
  line-height: 2;
  padding: 2.5% 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .b-pd__detail1 {
    font-size: 0.9375rem;
    line-height: 1.8;
    padding: 2.5% 0 5%;
  }
}

.b-pd__detail2 {
  font-size: 1rem;
  line-height: 2;
  padding: 2.5% 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .b-pd__detail2 {
    font-size: 0.875rem;
    line-height: 2;
    padding: 4.5% 0 4%;
  }
}

.b-pd__price {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 4% 0 0;
}
@media screen and (max-width: 767px) {
  .b-pd__price {
    font-size: 1rem;
  }
}

.b-pd__link {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.b-pd__button {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .b-pd__button {
    margin-top: 2.0625rem;
  }
}

.b-pd__free {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .b-pd__free {
    width: min(90%, 500px);
    margin: 4.0625rem auto 0;
    font-size: 0.9375rem;
  }
}

.b-pd__movie {
  margin: 7.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .b-pd__movie {
    margin: 4.0625rem auto 0;
  }
}

.youtube-video {
  width: 100%;
  height: auto;
  aspect-ratio: 1080/608;
}

.youtube-video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 商品詳細ページのサムネイル付きスライダー */
.slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  width: 33.3333333333%;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active img {
  border: 2px solid #222;
}

/* レイアウトのためのスタイル */
.swiper.slider-thumbnail {
  max-width: 33.75rem;
  width: 74%;
  margin: 6% auto 0;
}
@media screen and (max-width: 767px) {
  .swiper.slider-thumbnail {
    max-width: min(71vw, 500px);
    margin: 5% auto 0;
    width: 77%;
  }
}

.slider-thumbnail .swiper-slide {
  padding-right: 1%;
}

.swiper.slider {
  max-width: 33.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .swiper.slider {
    max-width: min(83vw, 400px);
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-thumbnail .swiper-wrapper {
  display: flex;
  justify-content: center; /* サムネイルを中央寄せ */
}
@media screen and (max-width: 767px) {
  .slider-thumbnail .swiper-wrapper {
    justify-content: flex-start;
  }
}

.b-pd__item-b {
  background: #2a2a2a;
  color: #fff;
  margin-top: 7.1875rem;
  position: relative;
  padding: 5% 5%;
}
@media screen and (max-width: 767px) {
  .b-pd__item-b {
    margin-top: 3.4375rem;
    padding: 14% 5%;
  }
}

.b-pd__item-b::before {
  background: transparent url("../img/deco.webp") no-repeat top left/contain;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 7%;
  height: 100%;
}

.b-pd__item-b-head {
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .b-pd__item-b-head {
    font-size: 1.25rem;
  }
}

.b-pd__item-b-detail {
  margin: 4.5% auto 0;
  max-width: 48.75rem;
}
@media screen and (max-width: 767px) {
  .b-pd__item-b-detail {
    max-width: 26.25rem;
    margin: 5% 0 0 6%;
  }
}

.b-pd__item-b-detail p {
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .b-pd__item-b-detail p {
    font-size: 0.9375rem;
  }
}

.b-pd__item-b-detail p::before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: -1.2em;
  width: 0.7em;
  height: 0.7em;
  background: #fff;
}

.b-pd__item-b-detail p:nth-of-type(n + 2) {
  margin-top: 3%;
}

.b-pd .swiper-area {
  position: relative;
}

/* 前への矢印カスタマイズ */
.b-pd .swiper-button-prev::after {
  background-image: url("../img/arrow2.svg");
  transform: rotate(180deg);
}

/* 次への矢印カスタマイズ */
.b-pd .swiper-button-next::after {
  background-image: url("../img/arrow2.svg");
}

.b-pd .swiper-button-prev,
.b-pd .swiper-button-next {
  height: 1.25rem;
  width: 1.25rem;
  display: block;
  margin-top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .b-pd .swiper-button-prev,
  .b-pd .swiper-button-next {
    height: 3vw;
    width: 3vw;
  }
}

.b-pd .swiper-button-prev {
  left: 0vw;
}
@media screen and (max-width: 767px) {
  .b-pd .swiper-button-prev {
    left: 4vw;
  }
}

.b-pd .swiper-button-next {
  right: 0vw;
}
@media screen and (max-width: 767px) {
  .b-pd .swiper-button-next {
    right: 4vw;
  }
}

/* 前へ次への矢印カスタマイズ */
.b-pd .swiper-button-prev::after,
.b-pd .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  margin: auto;
  width: 100%;
  display: block;
  color: #fff;
}

.b-pd__table {
  margin-top: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .b-pd__table {
    margin: 0 auto;
    width: min(90%, 500px);
  }
}

.b-pd__table-item {
  padding: 1.2% 7% 1.5%;
  display: grid;
  grid-template-columns: 11% 20% 32% 17% 16%;
  gap: 0 1%;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .b-pd__table-item {
    grid-template-columns: 20% 47% 26%;
    gap: 0 4%;
    padding: 4% 0;
    align-items: start;
  }
}

.b-pd__table-item:last-of-type {
  border-bottom: 1px solid #ddd;
}

.b-pd__table-img {
  grid-area: 1/1/2/2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .b-pd__table-img {
    grid-area: 1/1/3/2;
  }
}

.b-pd__table-name {
  grid-area: 1/2/2/3;
  font-size: 1.125rem;
  line-height: 1.6;
  padding-left: 15%;
}
@media screen and (max-width: 767px) {
  .b-pd__table-name {
    grid-area: 1/2/2/3;
    font-size: 0.875rem;
    padding-left: 0;
    padding-top: 2%;
  }
}

.b-pd__table-detail {
  grid-area: 1/3/2/4;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .b-pd__table-detail {
    grid-area: 2/2/3/3;
    font-size: 0.875rem;
  }
}

.b-pd__table-price {
  grid-area: 1/4/2/5;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .b-pd__table-price {
    grid-area: 3/2/4/3;
    font-size: 0.875rem;
    text-align: left;
  }
}

.b-pd__table-button {
  grid-area: 1/5/2/6;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .b-pd__table-button {
    grid-area: 1/3/3/4;
    margin-top: 14%;
  }
}

.b-pd__table-button a {
  font-size: 1rem;
  color: #fff;
  background: #204e79;
  width: 8.75rem;
  padding: 0.625rem 0;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  border: 1px solid #204e79;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .b-pd__table-button a {
    font-size: 0.8125rem;
    width: 5rem;
  }
}

.b-pd__table-button a svg {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
}

.b-pd__table-button a:hover {
  color: #000;
  background: #fff;
}

.b-pd__table-button a:hover svg path {
  stroke: #000;
}/*# sourceMappingURL=style.css.map */