@charset "UTF-8";
/* ↓以下の階層に標準的なscssが格納されています。 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&Noto+Serif+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* インデント調整 */
/* センター寄せのインデント調整 */
/* 動作の時間（1001px以上の時,1000px以下の時） */
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 400;
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
@keyframes image_sldier {
  0% {
    translate: 0 0%;
  }
  100% {
    translate: -50% 0;
  }
}
@keyframes sldier_x {
  0% {
    translate: 0 0%;
  }
  100% {
    translate: -50% 0;
  }
}
@keyframes sldier_y {
  0% {
    translate: 0 0%;
  }
  100% {
    translate: 0 -50%;
  }
}
@keyframes anim_btn__textin {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anim_btn__textout {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-120%);
  }
}
@keyframes anim_btn__arrow__in {
  0% {
    transform: translate(-50%, -300%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes anim_btn__arrow__out {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, 200%);
  }
}
@keyframes text_slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
:root {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none !important;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1200px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 828px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

div {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: unset;
  font-weight: unset;
  padding: unset;
  margin: unset;
}
@media screen and (max-width: 1024px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

p,
a,
span,
th,
td,
dt,
dd,
address {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 2;
  font-style: normal;
}

li {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-style: normal;
}

ul,
ol {
  list-style: none;
  padding-left: unset;
}

a {
  text-decoration: none;
  color: inherit;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  a {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  a {
    transition-duration: 300ms;
  }
}
a:hover {
  opacity: 0.7;
}
a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  a[href^=tel] {
    pointer-events: unset;
  }
}

img,
figure,
picture {
  margin: unset;
  margin: 0;
  padding: 0;
  border: none;
}

figure,
picture {
  display: block;
}

iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ▽▽▽▽ table ▽▽▽▽ */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

tbody,
tr {
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

th,
td {
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  th,
  td {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 1000px) {
  th,
  td {
    display: block;
  }
}

@media screen and (min-width: 1001px) {
  th {
    width: 210px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-left: 2em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 1000px) {
  th {
    padding-left: 1em;
    padding-right: 1em;
  }
  tr + tr th {
    padding-top: 1em;
  }
}

@media screen and (min-width: 1001px) {
  td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 1000px) {
  td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }
}

/* △△△△ table △△△△ */
.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

.swipe {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .swipe {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    z-index: 1;
  }
  .swipe img {
    min-width: 1200px;
  }
  .swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(221, 221, 221, 0.6);
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: -1;
    animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    display: table-cell !important;
    white-space: nowrap;
  }
}

/* ▽▽▽▽ container ▽▽▽▽ */
.container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1221px) {
  .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.over-right {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1221px) {
  .over-right {
    margin-left: calc((100vw - 1210px) / 2);
  }
}
@media screen and (max-width: 1220px) {
  .over-right {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .over-right {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.over-left {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1221px) {
  .over-left {
    margin-right: calc((100vw - 1210px) / 2);
  }
}
@media screen and (max-width: 1220px) {
  .over-left {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .over-left {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* △△△△ container △△△△ */
/* ▽▽▽▽ lazy ▽▽▽▽ */
.lazy {
  opacity: 0;
  position: relative;
  translate: 0 50px;
}

.lazy_show {
  opacity: 1;
  translate: 0 0;
  transition: all 1000ms;
}

/* △△△△ lazy △△△△ */
/* ▽▽▽▽ blur ▽▽▽▽ */
.blur {
  opacity: 0;
  filter: blur(20px);
}

.blur_show {
  opacity: 1;
  filter: blur(0px);
  transition: all 1000ms;
}

/* △△△△ blur △△△△ */
/* ▽▽▽▽追従▽▽▽▽ */
@media screen and (min-width: 1001px) {
  .c_following__contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
  }
  .c_following__side {
    position: sticky;
    top: 0;
    left: 0;
    width: 200px;
  }
  .c_following__main {
    flex: 1;
  }
}
/* △△△△追従△△△△ */
@media screen and (min-width: 1101px) {
  .c_header__block._front .c_header__image {
    display: none;
  }
  .c_header__block._front .c_header__image.active {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__block._front .c_header__image {
    display: none;
  }
  .c_header__block._front .c_header__image.active {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .c_header__block._front .c_header__image._w.c_header__inactive {
    display: none;
  }
  .c_header__block._front .c_header__image._b.c_header__active {
    display: block;
  }
}

.c_header__block._under .c_header__image._w {
  display: none;
}

@media screen and (min-width: 1101px) {
  .c_header__block._front:not(.c_header__follow) .c_header__item {
    color: #fff;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__block._front:not(.c_header__follow) .c_header__line,
  .c_header__block._front:not(.c_header__follow) .c_header__trigger::before,
  .c_header__block._front:not(.c_header__follow) .c_header__trigger::after {
    background-color: #fff;
  }
  .c_header__block._front:not(.c_header__follow) .c_header__active .c_header__line, .c_header__block._front:not(.c_header__follow) .c_header__active.c_header__trigger::before, .c_header__block._front:not(.c_header__follow) .c_header__active.c_header__trigger::after {
    background-color: #333;
  }
}

.c_header__block {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-top: 24px;
  padding-left: clamp(32px, 4vw, 64px);
  padding-right: clamp(32px, 4vw, 64px);
  padding-bottom: 24px;
  box-sizing: border-box;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_header__block {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_header__block {
    transition-duration: 300ms;
  }
}
@media screen and (min-width: 1101px) {
  .c_header__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1400px) {
  .c_header__block {
    padding-left: clamp(32px, 2.5vw, 40px);
    padding-right: clamp(32px, 2.5vw, 40px);
  }
}
@media screen and (max-width: 1100px) {
  .c_header__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 20px;
  }
}
.c_header__block.c_header__follow {
  background-color: #fff;
}
@media screen and (min-width: 1101px) {
  .c_header__block.c_header__follow {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__menu {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 375px;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 10;
    padding-top: 76px;
    padding-bottom: 150px;
    box-sizing: border-box;
    overflow-y: scroll;
    clip-path: inset(0 0% 0% 100%);
    transition-property: all;
  }
}
@media screen and (max-width: 1100px) and (min-width: 1001px) {
  .c_header__menu {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1000px) {
  .c_header__menu {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__menu.c_header__active {
    clip-path: inset(0 0% 0% 0%);
  }
}
.c_header__info {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .c_header__info {
    z-index: 15;
  }
}

.c_header__logo {
  max-width: 236px;
  width: clamp(180px, 14.75vw, 236px);
}
@media screen and (max-width: 1100px) {
  .c_header__logo {
    max-width: 160px;
  }
}

.c_header__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background-color: #333;
  translate: -50% -50%;
  transition: inherit;
}
.c_header__active .c_header__line {
  opacity: 0;
}

.c_header__trigger {
  position: relative;
  width: 32px;
  height: 20px;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_header__trigger {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_header__trigger {
    transition-duration: 300ms;
  }
}
.c_header__trigger {
  z-index: 20;
}
@media screen and (min-width: 1101px) {
  .c_header__trigger {
    display: none !important;
  }
}
.c_header__trigger::before, .c_header__trigger::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background-color: #333;
  transition: inherit;
}
.c_header__trigger::before {
  translate: -50% calc(-50% - 7px);
}
.c_header__trigger::after {
  translate: -50% calc(-50% + 7px);
}
.c_header__trigger.c_header__active::before, .c_header__trigger.c_header__active::after {
  translate: -50% -50%;
}
.c_header__trigger.c_header__active::before {
  rotate: -30deg;
}
.c_header__trigger.c_header__active::after {
  rotate: 30deg;
}

@media screen and (min-width: 1101px) {
  .c_header__list {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1400px) {
  .c_header__list {
    gap: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__list {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }
}

.c_header__item,
.c_header__item___link {
  display: block;
}
@media (hover: hover) {
  .c_header__item:hover,
  .c_header__item___link:hover {
    opacity: 1;
    color: #02417A;
  }
}
@media screen and (hover: hover) and (min-width: 1101px) {
  .c_header__item:hover .c_header__megaMenu___open i,
  .c_header__item___link:hover .c_header__megaMenu___open i {
    rotate: 180deg;
  }
}
@media (hover: none) {
  .c_header__item,
  .c_header__item___link {
    transition: all 0s;
  }
  .c_header__item:active,
  .c_header__item___link:active {
    opacity: 1;
    color: #02417A;
  }
}
@media screen and (hover: none) and (min-width: 1101px) {
  .c_header__item:active .c_header__megaMenu___open i,
  .c_header__item___link:active .c_header__megaMenu___open i {
    rotate: 180deg;
  }
}

.c_header__item {
  position: relative;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 1100px) {
  .c_header__item {
    line-height: 1;
  }
  .c_header__item + .c_header__item {
    margin-top: 32px;
  }
}

@media screen and (max-width: 1100px) {
  .c_header__item___link {
    display: block;
    font-size: 16px;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1;
  }
}

.c_header__megaMenu___open {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: unset;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  .c_header__megaMenu___open._pc {
    display: none;
  }
}
@media screen and (min-width: 1101px) {
  .c_header__megaMenu___open._sp {
    display: none;
  }
}
.c_header__megaMenu___open i {
  display: none;
  aspect-ratio: 12/7;
  width: 12px;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_header__megaMenu___open i {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_header__megaMenu___open i {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__megaMenu___open i {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
  }
  .c_header__megaMenu___open i::before, .c_header__megaMenu___open i::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 15px;
    height: 2px;
    background: #E60044;
    border-radius: 10px;
    overflow: clip;
  }
  .c_header__megaMenu___open i::after {
    transform: rotate(90deg);
    transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .c_header__megaMenu.is-open .c_header__megaMenu___open i::after {
    transform: rotate(0);
  }
}
@media screen and (max-width: 1100px) {
  .c_header__megaMenu___open {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1101px) {
  .c_header__megaMenu___nav {
    -webkit-clip-path: inset(0 -50vw 100%);
    background-color: #fff;
    clip-path: inset(0 -50vw 100%);
    display: block;
    padding: 16px;
    position: absolute;
    z-index: 5;
    top: 30px;
    left: -40px;
    transition: all 0.4s;
    visibility: hidden;
    min-width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    overflow: clip;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__megaMenu___nav {
    display: none;
    height: 0;
    overflow: hidden;
    transition: all 0.4s;
    visibility: hidden;
    box-sizing: border-box;
    margin-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .c_header__megaMenu.is-open .c_header__megaMenu___nav {
    -webkit-clip-path: inset(0 -50vw);
    clip-path: inset(0 -50vw);
    visibility: visible;
  }
}
@media screen and (max-width: 1100px) {
  .c_header__megaMenu.is-open .c_header__megaMenu___nav {
    display: block;
    height: auto;
    visibility: visible;
  }
}

.c_header__megaMenu___item {
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  font-weight: 700;
  line-height: 1;
}
.c_header__megaMenu___item + .c_header__megaMenu___item {
  margin-top: 16px;
}
@media screen and (min-width: 1101px) {
  .c_header__megaMenu___item._sponly {
    display: none;
  }
  .c_header__megaMenu___item._sponly + li {
    margin-top: 0;
  }
}

.c_header__megaMenu___link {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #333;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media (hover: hover) {
  .c_header__megaMenu___link:hover {
    opacity: 1;
    color: #02417A;
  }
}
@media (hover: none) {
  .c_header__megaMenu___link {
    transition: all 0s;
  }
  .c_header__megaMenu___link:active {
    opacity: 1;
    color: #02417A;
  }
}

.c_header__megaMenu___link::before {
  content: "-";
  display: block;
  color: #E60044;
}

.c_header__btn {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1100px) {
  .c_header__btn {
    flex-direction: column;
    padding: 0 20px;
    margin-top: 32px;
  }
}

.c_header__btnlink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(140px, 10vw, 160px);
  height: 48px;
  color: #fff;
  border: 1px solid #E60044;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  overflow: clip;
}
@media screen and (max-width: 1100px) {
  .c_header__btnlink {
    width: 240px;
  }
}
.c_header__btnlink[href*=contact] {
  background-color: #E60044;
}
@media (hover: hover) {
  .c_header__btnlink[href*=contact]:hover {
    opacity: 1;
    background-color: #fff;
    color: #E60044;
  }
}
@media (hover: none) {
  .c_header__btnlink[href*=contact] {
    transition: all 0s;
  }
  .c_header__btnlink[href*=contact]:active {
    opacity: 1;
    background-color: #fff;
    color: #E60044;
  }
}
.c_header__btnlink[href*=entry] {
  background-color: #fff;
  color: #E60044;
}
@media (hover: hover) {
  .c_header__btnlink[href*=entry]:hover {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
}
@media (hover: none) {
  .c_header__btnlink[href*=entry] {
    transition: all 0s;
  }
  .c_header__btnlink[href*=entry]:active {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
}

@media (min-width: 768px) {
  .c_header__list {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .c_header__list {
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .c_header__megaMenu___list {
    text-wrap-mode: nowrap;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .c_header__megaMenu:hover .c_header__megaMenu___nav,
  .c_header__megaMenu:focus-within .c_header__megaMenu___nav {
    -webkit-clip-path: inset(0 -50vw);
    clip-path: inset(0 -50vw);
    visibility: visible;
  }
}
.c_mv {
  display: block;
  position: relative;
  overflow: clip;
}
.c_mv img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.c_mv__slider {
  width: 100vw;
  height: 100dvh;
}
@media screen and (min-width: 601px) and (max-width: 1000px) {
  .c_mv__slider {
    height: 724px;
  }
}
.c_mv__slider.view {
  opacity: 0;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_mv__slider.view {
    transition-duration: 1000ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_mv__slider.view {
    transition-duration: 1000ms;
  }
}
.c_mv__slider._show {
  opacity: 1;
}

.c_mv__slider .slick-list,
.c_mv__slider .slick-track {
  height: 100%;
}

.c_mv__slide {
  width: 100%;
  height: 100%;
}
.c_mv__slide.is_anim__in {
  animation: zoomUp 10s linear 0s normal both;
  animation-delay: 1s;
}
.c_mv__slide.is_anim__in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c_mv__head {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  transition-delay: 0.3s;
}
@media screen and (max-width: 1600px) {
  .c_mv__head {
    width: 100%;
    padding-left: clamp(20px, 7.5vw, 120px);
    padding-right: 20px;
    padding-bottom: clamp(48px, 5vw, 80px);
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1600px) and (min-width: 501px) and (max-width: 1024px) {
  .c_mv__head {
    padding-left: 40px;
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 1601px) {
  .c_mv__head {
    left: 7.5vw;
    bottom: 5vw;
  }
}
.c_mv__head .view {
  opacity: 0;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_mv__head .view {
    transition-duration: 1000ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_mv__head .view {
    transition-duration: 1000ms;
  }
}
.c_mv__head .view._show {
  opacity: 1;
}
.c_mv__head .delay1 {
  transition-delay: 0.5s;
}
.c_mv__head .delay2 {
  transition-delay: 1s;
}

.c_mv__lead {
  font-size: clamp(2.25rem, 5.6vw, 3.5rem);
  font-weight: 700;
}
.c_mv__lead br {
  display: block;
}

.c_mv__label {
  position: relative;
  margin-top: clamp(24px, 3vw, 48px);
  padding-top: clamp(16px, 2vw, 32px);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}
.c_mv__label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(40px, 3.25vw, 52px);
  height: 2px;
  background-color: #E60044;
}

.c_mv__caption {
  display: block;
  margin-top: 16px;
  opacity: 0.8;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.04em;
}

.c_kv {
  display: block;
  margin-top: clamp(72px, 6vw, 96px);
  margin-bottom: clamp(80px, 7.5vw, 120px);
  padding-top: clamp(80px, 10vw, 160px);
}
.c_kv img {
  display: block;
  max-width: 100%;
}
.c_kv .view {
  opacity: 0;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_kv .view {
    transition-duration: 1000ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_kv .view {
    transition-duration: 1000ms;
  }
}
.c_kv .view._show {
  opacity: 1;
}
.c_kv .delay1 {
  transition-delay: 0.5s;
}
.c_kv .delay2 {
  transition-delay: 1s;
}

.c_kv__block {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  padding-bottom: clamp(12px, 1vw, 16px);
}

.c_kv__head {
  margin-bottom: clamp(56px, 7.5vw, 120px);
}

.c_kv__caption {
  display: block;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(3.5rem, 9.6vw, 6rem);
  line-height: 1;
  text-transform: capitalize;
}

.c_kv__lead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
}
.c_kv__lead::before {
  content: "";
  display: block;
  width: clamp(24px, 2.5vw, 40px);
  height: 2px;
  background-color: #E60044;
}

.c_kv__bread {
  font-size: clamp(0.75rem, 1.6vw, 1rem);
}
.c_kv__bread span,
.c_kv__bread a {
  font-size: inherit;
  color: rgba(51, 51, 51, 0.4);
  line-height: 1;
}
.c_kv__bread .post.current-item {
  line-height: 1;
  display: inline-block;
  width: clamp(300px, 62.5vw, 1000px);
  max-width: max-content;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 501px) {
  .c_kv__bread .post.current-item {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 500px) {
  .c_kv__bread .post.current-item {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 500px) {
  .c_kv__bread .post.current-item {
    width: 100%;
  }
}

.c_kv__bread___item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 8px;
  line-height: 1;
}
.c_kv__bread___item .current-item {
  color: #333;
}

.c_kv__bread___icon {
  display: block;
  width: 16px;
  height: 1px;
  background-color: #E60044;
}

.c_bread {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
}
.c_bread span,
.c_bread a {
  font-size: inherit;
  color: inherit;
}

.c_cta {
  position: relative;
  padding-top: clamp(80px, 7.5vw, 120px);
  padding-bottom: clamp(80px, 7.5vw, 120px);
  box-sizing: border-box;
  color: #fff;
  overflow: clip;
}

.c_cta__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c_cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c_cta__head {
  margin-bottom: clamp(32px, 3.5vw, 56px);
}

.c_cta__label {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.75;
}

.c_cta__info {
  margin-top: clamp(40px, 3vw, 48px);
}

.c_cta__side {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  flex-wrap: wrap;
}

.c_cta__tel {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 1;
}

.c_cta__unit {
  text-transform: capitalize;
  font-size: 0.8em;
  line-height: inherit;
}

.c_cta__num {
  font-size: inherit;
  line-height: inherit;
}

.c_cta__time {
  display: block;
  font-size: clamp(0.8125rem, 1.6vw, 1rem);
}

.c_cta__btn {
  margin-top: clamp(32px, 2.5vw, 40px);
}

.c_cta__btn___link {
  background-color: #fff;
}
.c_cta__btn___link:not(:hover) .c_cta__btn___label {
  color: #333;
}

.c_footer {
  position: relative;
  background-color: #333;
  color: #fff;
  padding-bottom: clamp(32px, 4.25vw, 68px);
}
@media screen and (max-width: 500px) {
  .c_footer {
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 1001px) {
  .c_footer__block {
    padding-top: clamp(64px, 4.5vw, 72px);
  }
}
@media screen and (max-width: 1000px) {
  .c_footer__content {
    text-align: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.c_footer__logo {
  display: block;
  max-width: max-content;
}
@media screen and (max-width: 1000px) {
  .c_footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.c_footer__address {
  margin-top: clamp(24px, 2vw, 32px);
  font-size: 15px;
}
@media screen and (max-width: 500px) {
  .c_footer__address {
    font-size: 16px;
  }
}

@media screen and (min-width: 1001px) {
  .c_footer__column {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.c_footer__nav span {
  display: none;
}
@media screen and (max-width: 1000px) {
  .c_footer__nav {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) {
  .c_footer__nav {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .c_footer__nav {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (min-width: 1001px) {
  .c_footer__nav {
    width: 100%;
    max-width: clamp(480px, 41.6666666667vw, 500px);
  }
}
.c_footer__nav .menu {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .c_footer__nav .menu {
    flex-direction: column;
    gap: 40px 64px;
    height: 230px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .c_footer__nav .menu {
    gap: 32px 28px;
  }
}
@media screen and (min-width: 1001px) {
  .c_footer__nav .menu li {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .c_footer__nav .menu a {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
}
.c_footer__nav .menu {
  /* @include break(1000, max){
      border-top: 1px solid $cl_sub__gray;
  } */
}
@media screen and (max-width: 1000px) {
  .c_footer__nav li {
    width: 50%;
    border-bottom: 1px solid #E6E6E6;
    box-sizing: border-box;
  }
  .c_footer__nav li:nth-child(even) {
    border-left: 1px solid #E6E6E6;
  }
  .c_footer__nav li:nth-child(odd):last-child {
    width: 100%;
  }
  .c_footer__nav a {
    display: block;
    text-align: center;
    font-size: 15px;
    padding-top: 1em;
    padding-bottom: 1em;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1000px) {
  .c_footer__nav .sub-menu,
  .c_footer__nav .children {
    display: none !important;
  }
}
.c_footer__nav .sub-menu,
.c_footer__nav .children {
  display: block;
  margin-top: 24px;
}
.c_footer__nav .sub-menu li,
.c_footer__nav .children li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
}
.c_footer__nav .sub-menu li + li,
.c_footer__nav .children li + li {
  margin-top: 16px;
}
.c_footer__nav .sub-menu a,
.c_footer__nav .children a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}
.c_footer__nav .sub-menu a::before,
.c_footer__nav .children a::before {
  content: "−";
  font-size: 12px;
}

.c_footer__wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: clamp(80px, 10vw, 160px);
  padding-top: 16px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 1000px) {
  .c_footer__wrap {
    flex-direction: column-reverse;
  }
}

.c_footer__copy {
  display: block;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}
@media screen and (max-width: 1000px) {
  .c_footer__copy {
    text-align: center;
  }
}

.c_footer__rtt {
  position: fixed;
  z-index: 9;
  bottom: clamp(32px, 4.25vw, 68px);
  right: 0;
  rotate: 90deg;
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
}
.c_footer__rtt.c_footer__hidden {
  opacity: 0;
  visibility: hidden;
}

.c_footer__rtt___link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-width: max-content;
  padding: 4px 12px;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  overflow: clip;
}
.c_footer__rtt___link .c_footer__rtt___icon {
  width: 18px;
}
.c_footer__rtt___link .c_footer__rtt___icon svg {
  width: 8px;
}
@media (hover: hover) {
  .c_footer__rtt___link:hover {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .c_footer__rtt___link:hover .c_btn__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_footer__rtt___link:hover .c_btn__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}
@media (hover: none) {
  .c_footer__rtt___link {
    transition: all 0s;
  }
  .c_footer__rtt___link:active {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .c_footer__rtt___link:active .c_btn__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_footer__rtt___link:active .c_btn__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}

.c_footer__rtt___text {
  position: relative;
  display: grid;
  flex-grow: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.c_footer__rtt___label {
  grid-row: 1;
  grid-column: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.c_footer__rtt___label:last-of-type {
  transform: translateY(130%);
}

.c_address__block {
  display: block;
  font-size: inherit;
}

.c_address__address {
  display: inline-block;
  word-break: keep-all;
  font-size: inherit;
}

.c_address__tel,
.c_address__fax {
  font-size: inherit;
  text-transform: capitalize;
}

/* ↓以下の階層にボタンやフォームのscssが格納されています。 */
.c_block__top {
  margin-top: clamp(80px, 7.5vw, 120px);
}

.c_block__under {
  padding-bottom: clamp(120px, 12.5vw, 200px);
}

@media screen and (max-width: 500px) {
  .c_block__break {
    display: block;
  }
  .c_block__unset {
    display: none;
  }
}
.c_block__narrow {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 901px) {
  .c_block__narrow {
    max-width: 920px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .c_block__narrow {
    max-width: 920px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .c_block__narrow {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c_block__section {
  padding-bottom: clamp(80px, 7.5vw, 120px);
}
.c_block__section + .c_block__section {
  padding-top: clamp(80px, 7.5vw, 120px);
}
.c_block__section:nth-of-type(even) {
  background-color: #F2F4F5;
}
.c_block__section:last-of-type {
  padding-bottom: 0;
}
.c_block__section:last-of-type:nth-of-type(even) {
  padding-bottom: clamp(120px, 12.5vw, 200px);
}

.c_main__head {
  margin-bottom: clamp(40px, 4vw, 64px);
}

.c_main__caption {
  display: block;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(3.5rem, 9.6vw, 6rem);
  line-height: 1;
  text-transform: capitalize;
}

.c_main__lead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
}
.c_main__lead::before {
  content: "";
  display: block;
  width: clamp(24px, 2.5vw, 40px);
  height: 2px;
  background-color: #E60044;
}

.c_head {
  margin-bottom: clamp(56px, 5vw, 80px);
}
.c_head._mb0 {
  margin-bottom: 0;
}

.c_head__caption {
  display: block;
  color: #E60044;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
}

.c_head__label {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.c_headline {
  margin-bottom: clamp(32px, 2.5vw, 40px);
  padding-bottom: clamp(12px, 1vw, 16px);
  border-bottom: 1px solid #E6E6E6;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}

.c_lead__label {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
}

@media screen and (min-width: 1001px) {
  .c_lead__center {
    text-align: center;
  }
}

.c_text {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
}

.c_text__center {
  text-align: center;
}

.c_text__left {
  text-align: left;
}

.c_text__right {
  text-align: right;
}

@media screen and (max-width: 500px) {
  .c_text__reset {
    text-align: unset;
  }
}
.c_text__time {
  display: block;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
}

.c_list__dotted {
  position: relative;
  font-size: inherit;
  padding-left: 1em;
  box-sizing: border-box;
}
.c_list__dotted::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
}

.c_link__text {
  display: inline;
  font-size: inherit;
  text-decoration: underline;
  color: #02417A;
}

.c_top {
  margin-top: clamp(24px, 2vw, 32px);
}

.c_top__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
}
.c_top__link:hover {
  opacity: 1;
  color: #00f;
}

.c_top__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 24px;
  height: auto;
  background-color: #ddd;
  border-radius: 50px;
  overflow: clip;
  transition: inherit;
}
.c_top__link:hover .c_top__ico {
  background-color: #00f;
}

.c_top__arrow {
  display: block;
  aspect-ratio: 1/1;
  width: 12px;
  height: auto;
  object-fit: contain;
  rotate: -90deg;
}

.c_top__text {
  font-size: inherit;
}

.c_more {
  margin-top: clamp(24px, 2vw, 32px);
}

.c_more__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.image {
  display: block;
  max-width: 100%;
  height: auto;
}

.c_image {
  overflow: clip;
}

.c_image__slider {
  display: flex;
  width: min-content;
  animation: image_sldier linear 5000ms infinite;
}

.c_image__slide {
  display: block;
  background-color: #ddd;
  width: 400px;
  height: 320px;
  margin-left: 8px;
  margin-right: 8px;
}

.c_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .c_btn {
    justify-content: flex-start;
  }
}

.c_btn__start {
  justify-content: flex-start;
}

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

.c_btn__white .c_btn__link {
  background-color: #fff;
}
@media (hover: hover) {
  .c_btn__white .c_btn__link:hover {
    border: 1px solid #E60044;
  }
  .c_btn__white .c_btn__link:hover .c_btn__label {
    color: #fff;
  }
}
@media (hover: none) {
  .c_btn__white .c_btn__link {
    transition: all 0s;
  }
  .c_btn__white .c_btn__link:active {
    border: 1px solid #E60044;
  }
  .c_btn__white .c_btn__link:active .c_btn__label {
    color: #fff;
  }
}
.c_btn__white .c_btn__label {
  color: #333;
}

.c_btn__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 260px;
  padding: 16px 16px 16px 32px;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  overflow: clip;
}
@media (hover: hover) {
  .c_btn__link:hover {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .c_btn__link:hover .c_btn__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_btn__link:hover .c_btn__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}
@media (hover: none) {
  .c_btn__link {
    transition: all 0s;
  }
  .c_btn__link:active {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .c_btn__link:active .c_btn__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_btn__link:active .c_btn__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}

.c_btn__back {
  padding: 16px 32px 16px 16px;
  text-align: center;
}

.c_btn__text {
  position: relative;
  display: grid;
  flex-grow: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.c_btn__label {
  grid-row: 1;
  grid-column: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.c_btn__label:last-of-type {
  transform: translateY(120%);
}

.c_btn__large {
  max-width: max-content;
  width: 100%;
  min-width: 240px;
}

.c_btn__top {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 2vw, 32px);
}

.c_btn__top___link {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
}

.c_side {
  display: flex;
  justify-content: space-between;
  gap: 72px;
}
@media screen and (min-width: 1001px) {
  .c_side:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
.c_side + .c_side {
  margin-top: clamp(72px, 5vw, 80px);
}
@media screen and (max-width: 1000px) {
  .c_side {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 1001px) {
  .c_side__pic {
    flex-basis: 40.5%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1001px) {
  .c_side__pic._mini {
    flex-basis: 33.3333333333%;
  }
}
@media screen and (max-width: 1000px) {
  .c_side__pic._mini {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1001px) {
  .c_side__inner {
    flex: 1;
  }
}

.c_side__label {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
}

.c_side__caption {
  margin-top: clamp(16px, 1.5vw, 24px);
  line-height: 2;
}
.c_side__caption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.c_side__caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}

.c_icon {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  border-radius: 4px;
  overflow: clip;
  background-color: #E60044;
  border: 1px solid #E60044;
  box-sizing: border-box;
  display: grid;
  flex-shrink: 0;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}
.c_icon._top {
  rotate: -180deg;
}
.c_icon._right {
  rotate: -90deg;
}
.c_icon._left {
  rotate: 90deg;
}
.c_icon svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: auto;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_icon svg {
    transition-duration: 100ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_icon svg {
    transition-duration: 100ms;
  }
}
.c_icon svg:first-of-type {
  transform: translate(-50%, -50%);
}
.c_icon svg:last-of-type {
  transform: translate(-50%, -300%);
}

.c_icon__mini {
  width: 26px;
}
.c_icon__mini svg {
  width: 10px;
}

.c_icon__large {
  width: clamp(32px, 5.3333333333vw, 64px);
}
.c_icon__large svg {
  width: clamp(13px, 1.4166666667vw, 17px);
}

@media (hover: hover) {
  .c_ico__hover:hover .c_icon {
    background-color: #fff;
  }
  .c_ico__hover:hover .c_icon svg:first-of-type {
    animation: anim_btn__arrow__in 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_ico__hover:hover .c_icon svg:last-of-type {
    animation: anim_btn__arrow__out 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_ico__hover:hover .c_icon path {
    fill: #E60044;
  }
}
@media (hover: none) {
  .c_ico__hover {
    transition: all 0s;
  }
  .c_ico__hover:active .c_icon {
    background-color: #fff;
  }
  .c_ico__hover:active .c_icon svg:first-of-type {
    animation: anim_btn__arrow__in 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_ico__hover:active .c_icon svg:last-of-type {
    animation: anim_btn__arrow__out 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_ico__hover:active .c_icon path {
    fill: #E60044;
  }
}

.c_bnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 0;
}
.c_bnr__item {
  display: flex;
  position: relative;
  min-height: clamp(233px, 29.5vw, 472px);
}
.c_bnr__page .c_bnr__item {
  min-height: clamp(233px, 20.25vw, 324px);
}
@media (hover: hover) {
  .c_bnr__item:hover {
    opacity: 1;
  }
  .c_bnr__item:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .c_bnr__item {
    transition: all 0s;
  }
  .c_bnr__item:active {
    opacity: 1;
  }
  .c_bnr__item:active img {
    scale: 1.05;
  }
}
.c_bnr__item[href*=exhibitions] img {
  object-position: 50% 20%;
}
@media screen and (max-width: 500px) {
  .c_bnr__item[href*=exhibitions] img {
    object-position: 0% 20%;
  }
}

.c_bnr__bg {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: clip;
}
.c_bnr__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_bnr__bg img {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_bnr__bg img {
    transition-duration: 300ms;
  }
}

.c_bnr__info {
  margin-top: auto;
  max-height: max-content;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
  padding-left: clamp(20px, 2.5vw, 40px);
  padding-right: clamp(20px, 2.5vw, 40px);
  padding-bottom: clamp(32px, 3vw, 48px);
  box-sizing: border-box;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .c_bnr__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .c_bnr__innner {
    width: 100%;
  }
}

.c_bnr__label {
  display: block;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 1;
  text-transform: capitalize;
}

.c_bnr__lead {
  margin-top: clamp(8px, 1vw, 16px);
  font-size: clamp(1.125rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.c_bnr__caption {
  margin-top: clamp(16px, 2vw, 32px);
}
@media screen and (max-width: 1000px) {
  .c_bnr__caption {
    display: none;
  }
}

/* 以下Wordpress/plugin用scss */
.c_wp__head {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1em;
}

.c_wp__label {
  font-size: inherit;
  line-height: 2;
}
.c_wp__label::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.c_wp__label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.c_wp__label {
  font-weight: inherit;
}

.c_pagelist {
  margin-bottom: clamp(40px, 5vw, 80px);
  /* li {
      @include break(1000, max) {
          + li {
              border-top: 1px solid $cl_sub__gray;
          }
      }
  }

  a {
      display: block;
      font-size: inherit;
      text-align: center;
      @include break(1000, max) {
          padding: {
              top: 0.5em;
              bottom: 0.5em;
          }
          box-sizing: border-box;
      }
  } */
}

.c_pagelist__list {
  display: flex;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .c_pagelist__list {
    flex-direction: column;
  }
}

@media screen and (max-width: 1000px) {
  .c_pagelist__list li {
    width: 100%;
  }
}

.c_pagelist__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 260px;
  padding: 16px 16px 16px 32px;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  overflow: clip;
}
.c_pagelist__list a[aria-current=page] {
  background-color: #E60044;
  color: #fff;
}
.c_pagelist__list a[aria-current=page] .c_pagelist__icon {
  background-color: #fff;
}
.c_pagelist__list a[aria-current=page] .c_pagelist__icon path {
  fill: #E60044;
}
@media (hover: hover) {
  .c_pagelist__list a:hover {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .c_pagelist__list a:hover .c_pagelist__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_pagelist__list a:hover .c_pagelist__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_pagelist__list a:hover .c_pagelist__icon {
    background-color: #fff;
  }
  .c_pagelist__list a:hover .c_pagelist__icon svg:first-of-type {
    animation: anim_btn__arrow__in 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_pagelist__list a:hover .c_pagelist__icon svg:last-of-type {
    animation: anim_btn__arrow__out 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_pagelist__list a:hover .c_pagelist__icon path {
    fill: #E60044;
  }
}
@media (hover: none) {
  .c_pagelist__list a {
    transition: all 0s;
  }
  .c_pagelist__list a:active {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .c_pagelist__list a:active .c_pagelist__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_pagelist__list a:active .c_pagelist__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_pagelist__list a:active .c_pagelist__icon {
    background-color: #fff;
  }
  .c_pagelist__list a:active .c_pagelist__icon svg:first-of-type {
    animation: anim_btn__arrow__in 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_pagelist__list a:active .c_pagelist__icon svg:last-of-type {
    animation: anim_btn__arrow__out 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .c_pagelist__list a:active .c_pagelist__icon path {
    fill: #E60044;
  }
}

.c_pagelist__text {
  position: relative;
  display: grid;
  flex-grow: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.c_pagelist__label {
  grid-row: 1;
  grid-column: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.c_pagelist__label:last-of-type {
  transform: translateY(120%);
}

.c_pagelist__icon {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  border-radius: 4px;
  overflow: clip;
  background-color: #E60044;
  border: 1px solid #E60044;
  box-sizing: border-box;
  display: grid;
  flex-shrink: 0;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}
.c_pagelist__icon._right {
  rotate: -90deg;
}
.c_pagelist__icon svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: auto;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .c_pagelist__icon svg {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .c_pagelist__icon svg {
    transition-duration: 300ms;
  }
}
.c_pagelist__icon svg:first-of-type {
  transform: translate(-50%, -50%);
}
.c_pagelist__icon svg:last-of-type {
  transform: translate(-50%, -300%);
}

.c_pagelist__nav {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  box-sizing: border-box;
}

.c_pagenavi {
  margin-top: clamp(56px, 5vw, 80px);
}
.c_pagenavi .wp-pagenavi {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .c_pagenavi .wp-pagenavi {
    gap: 8px;
  }
}
.c_pagenavi span,
.c_pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 1001px) {
  .c_pagenavi span,
  .c_pagenavi a {
    width: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .c_pagenavi span,
  .c_pagenavi a {
    width: 24px;
  }
}
.c_pagenavi span.current, .c_pagenavi span:hover,
.c_pagenavi a.current,
.c_pagenavi a:hover {
  font-weight: inherit !important;
  opacity: 1;
  color: #E60044;
}
.c_pagenavi .previouspostslink,
.c_pagenavi .nextpostslink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent !important;
  background-color: #E60044;
  border: 1px solid #E60044 !important;
  box-sizing: border-box;
  border-radius: 4px;
  overflow: clip;
}
.c_pagenavi .previouspostslink::after,
.c_pagenavi .nextpostslink::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  aspect-ratio: 13/11;
  width: clamp(11px, 0.8125vw, 13px);
  height: auto;
  background-image: url("../images/common/ico_nav-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media (hover: hover) {
  .c_pagenavi .previouspostslink:hover,
  .c_pagenavi .nextpostslink:hover {
    background-color: #fff;
  }
}
@media (hover: none) {
  .c_pagenavi .previouspostslink,
  .c_pagenavi .nextpostslink {
    transition: all 0s;
  }
  .c_pagenavi .previouspostslink:active,
  .c_pagenavi .nextpostslink:active {
    background-color: #fff;
  }
}
.c_pagenavi .previouspostslink:hover::after,
.c_pagenavi .nextpostslink:hover::after {
  filter: brightness(0) saturate(100%) invert(11%) sepia(96%) saturate(4849%) hue-rotate(335deg) brightness(106%) contrast(107%);
}
.c_pagenavi .previouspostslink::after {
  rotate: -180deg;
}
.c_pagenavi .first,
.c_pagenavi .last,
.c_pagenavi .pages {
  display: none !important;
}

.c_single__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #ddd;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  padding-top: clamp(32px, 2.5vw, 40px);
  box-sizing: border-box;
  margin-top: clamp(40px, 2.75vw, 44px);
}

.c_single__nav___move {
  max-width: 10px;
  flex: 1;
}
.c_single__nav___move a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c_single__nav___back a {
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 700;
  text-decoration: underline;
}

.c_pagetop {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(32px, 2.5vw, 40px);
}

.c_pagetop__link {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .c_pagetop__link {
    justify-content: center;
  }
}
@media (hover: hover) {
  .c_pagetop__link:hover {
    opacity: 1;
  }
  .c_pagetop__link:hover .c_pagetop__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_pagetop__link:hover .c_pagetop__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}
@media (hover: none) {
  .c_pagetop__link {
    transition: all 0s;
  }
  .c_pagetop__link:active {
    opacity: 1;
  }
  .c_pagetop__link:active .c_pagetop__label:first-of-type {
    animation: anim_btn__textin 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .c_pagetop__link:active .c_pagetop__label:last-of-type {
    animation: anim_btn__textout 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}

.c_pagetop__text {
  position: relative;
  display: grid;
  flex-grow: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.c_pagetop__label {
  grid-row: 1;
  grid-column: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.c_pagetop__label:last-of-type {
  transform: translateY(130%);
}

.c_pagetop__icon {
  border-radius: 2px;
  overflow: clip;
  width: 20px;
}
.c_pagetop__icon svg {
  width: 8px;
}

.mw_wp_form {
  margin-top: clamp(32px, 3.125vw, 50px);
  background-color: #fff;
  background-color: #F2F4F5;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: clamp(56px, 6.25vw, 100px);
  padding-bottom: clamp(56px, 6.25vw, 100px);
  padding-left: clamp(40px, 6.25vw, 100px);
  padding-right: clamp(40px, 6.25vw, 100px);
}
@media screen and (max-width: 1000px) {
  .mw_wp_form {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.mw_wp_form.mw_wp_form_input small {
  margin-top: -20px;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form.mw_wp_form_input small {
    margin: 0;
  }
  .mw_wp_form.mw_wp_form_input tr {
    display: block;
  }
  .mw_wp_form.mw_wp_form_input tr + tr {
    padding-top: 20px;
  }
  .mw_wp_form.mw_wp_form_input table table tr + tr {
    padding-top: unset;
  }
}
.mw_wp_form.mw_wp_form_complete {
  display: none !important;
}
.mw_wp_form table,
.mw_wp_form tbody,
.mw_wp_form tr,
.mw_wp_form th,
.mw_wp_form td {
  border: none;
  padding: 0;
  background-color: unset !important;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form table,
  .mw_wp_form tbody,
  .mw_wp_form tr,
  .mw_wp_form th,
  .mw_wp_form td {
    display: block;
    width: 100%;
  }
}
.mw_wp_form th {
  position: relative;
  font-weight: 700;
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
  }
}
.mw_wp_form th > span {
  position: absolute;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th > span {
    top: 50%;
    left: 0;
    width: 40px;
    line-height: 30px;
    translate: 0 -50%;
  }
}
.mw_wp_form th > span.required {
  background-color: #E60044;
}
.mw_wp_form th > span.any {
  background-color: #999999;
}
.mw_wp_form th small {
  display: block;
}
.mw_wp_form td th {
  font-weight: 400;
  width: 200px;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form td th {
    width: 100%;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.mw_wp_form input,
.mw_wp_form textarea,
.mw_wp_form select {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4375em;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 1em;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 10px;
  }
}
.mw_wp_form input.var01,
.mw_wp_form textarea.var01,
.mw_wp_form select.var01 {
  max-width: 500px;
}
.mw_wp_form input.var02,
.mw_wp_form textarea.var02,
.mw_wp_form select.var02 {
  max-width: 5em;
}
@media screen and (max-width: 500px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 4em;
  }
}
.mw_wp_form input,
.mw_wp_form textarea {
  width: 100%;
}
.mw_wp_form select {
  appearance: none;
  padding-right: 48px;
  background-image: url("../images/common/svg-select.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center right 16px;
}
.mw_wp_form input[type*=file] {
  width: auto;
  background-color: transparent;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  margin-top: clamp(10px, 1vw, 16px);
}
.mw_wp_form input[type*=file]::file-selector-button {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.75rem, 1.6vw, 1rem);
}
.mw_wp_form .error {
  display: block;
  font-size: 15px;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: pink;
  margin-top: 8px;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form.mw_wp_form_input th,
  .mw_wp_form.mw_wp_form_input td {
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_input th {
    line-height: 57px;
  }
  .mw_wp_form.mw_wp_form_input th > span {
    top: 9px;
    right: 56px;
    width: 60px;
    line-height: 40px;
    font-size: 14px;
  }
  .mw_wp_form.mw_wp_form_confirm th,
  .mw_wp_form.mw_wp_form_confirm td, .mw_wp_form.mw_wp_form_preview th,
  .mw_wp_form.mw_wp_form_preview td {
    padding-top: 5px;
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm th > span, .mw_wp_form.mw_wp_form_preview th > span {
    top: 0;
    right: 56px;
    width: 60px;
    line-height: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm td th,
  .mw_wp_form.mw_wp_form_confirm td td, .mw_wp_form.mw_wp_form_preview td th,
  .mw_wp_form.mw_wp_form_preview td td {
    padding-bottom: 10px;
  }
  .mw_wp_form.mw_wp_form_confirm td tr:first-child th,
  .mw_wp_form.mw_wp_form_confirm td tr:first-child td, .mw_wp_form.mw_wp_form_preview td tr:first-child th,
  .mw_wp_form.mw_wp_form_preview td tr:first-child td {
    padding-top: 0;
  }
  .mw_wp_form.mw_wp_form_confirm td tr:last-child th,
  .mw_wp_form.mw_wp_form_confirm td tr:last-child td, .mw_wp_form.mw_wp_form_preview td tr:last-child th,
  .mw_wp_form.mw_wp_form_preview td tr:last-child td {
    padding-bottom: 0;
  }
}

.mwform-checkbox-field input {
  display: none;
}
.mwform-checkbox-field input:checked + .mwform-checkbox-field-text::before {
  background-image: url("../images/common/check.svg");
}

.mwform-checkbox-field-text {
  position: relative;
  padding-left: 40px;
  margin-right: 20px;
  cursor: pointer;
  line-height: 57px;
}
@media screen and (max-width: 1000px) {
  .mwform-checkbox-field-text {
    line-height: 32px;
  }
}
.mwform-checkbox-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #ccc;
}

.horizontal-item {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
}
.horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mwform-radio-field input {
  display: none;
}
.mwform-radio-field input:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

.mwform-radio-field-text {
  position: relative;
  padding-left: 40px;
  margin-right: 20px;
  cursor: pointer;
  display: inline-block;
  line-height: 57px;
}
@media screen and (max-width: 1000px) {
  .mwform-radio-field-text {
    line-height: 32px;
  }
}
.mwform-radio-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.mwform-radio-field-text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  width: 16px;
  background-color: #E60044;
  border-radius: 50%;
  opacity: 0;
}

.file-text {
  display: block;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 2;
}
.file-text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.file-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.file-text {
  word-break: break-all;
}

.sp-break {
  display: none !important;
}
@media screen and (max-width: 500px) {
  .sp-break {
    display: block !important;
  }
}

.form-agree {
  margin-top: clamp(20px, 2.5vw, 40px);
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 400;
  line-height: 2;
}
.form-agree::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.form-agree::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.form-agree {
  text-align: center;
}
.mw_wp_form_confirm .form-agree {
  display: none !important;
}
.form-agree a {
  color: #02417A;
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .form-agree {
    text-align: left;
  }
}

.form-wrap {
  margin-top: clamp(20px, 1.6875vw, 27px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.form-wrap input[type=checkbox] + .mwform-checkbox-field-text {
  margin-right: 0;
}

.form-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: clamp(24px, 2vw, 32px);
}
@media screen and (max-width: 500px) {
  .form-btns {
    flex-direction: column;
  }
}
.form-btns a,
.form-btns [type=submit] {
  width: 100%;
  max-width: 260px;
  height: 64px;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  padding: 1.25em;
  color: #333;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-image: url("../images/common/form_arrow.svg");
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: right 16px center;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
.form-btns a,
.form-btns [type=submit] {
  border-radius: 4px;
  overflow: clip;
  text-align: left;
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  opacity: 1;
  background-image: url("../images/common/form_arrow__hover.svg");
  background-color: #E60044;
  border: 1px solid #E60044;
  color: #fff;
}

.ui-datepicker {
  font-size: 13px !important;
}
.ui-datepicker span,
.ui-datepicker a,
.ui-datepicker th,
.ui-datepicker td {
  font-size: inherit !important;
}
.ui-datepicker th,
.ui-datepicker td {
  display: table-cell !important;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0;
}

.grecaptcha-badge {
  z-index: 1;
  width: 70px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

/* ↓以下の階層に固定ページ等のscssが格納されています。 */
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Products----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_front__products {
  margin-top: clamp(80px, 10vw, 160px);
}

.p_front__products___flex {
  display: flex;
  justify-content: space-between;
  gap: 96px;
}
@media screen and (max-width: 1000px) {
  .p_front__products___flex {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (min-width: 1001px) {
  .p_front__products___head {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .p_front__products___head br {
    display: block;
  }
}

.p_front__products___inner {
  margin-top: clamp(16px, 2.5vw, 40px);
}
@media screen and (min-width: 1001px) {
  .p_front__products___inner {
    flex: 1;
  }
}

.p_front__products___btn {
  margin-top: clamp(32px, 3.5vw, 56px);
}

.p_front__products___list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 4vw, 64px);
}

.p_front__products___link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
  padding-top: clamp(20px, 1.5vw, 24px);
  padding-bottom: clamp(20px, 1.5vw, 24px);
  box-sizing: border-box;
  background-color: #F2F4F5;
}
@media (hover: hover) {
  .p_front__products___link:hover {
    opacity: 1;
  }
  .p_front__products___link:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p_front__products___link {
    transition: all 0s;
  }
  .p_front__products___link:active {
    opacity: 1;
  }
  .p_front__products___link:active img {
    scale: 1.05;
  }
}

.p_front__products___tmb {
  aspect-ratio: 282/144;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.p_front__products___tmb img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_front__products___tmb img {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_front__products___tmb img {
    transition-duration: 300ms;
  }
}

.p_front__products___text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-left: clamp(20px, 1.5vw, 24px);
  padding-right: clamp(20px, 1.5vw, 24px);
  box-sizing: border-box;
}

.p_front__products___label {
  display: block;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .p_front__products___label {
    font-size: 18px;
  }
}

.p_front__products___slider .slick-slide {
  margin: auto 0;
  padding-right: 24px;
}

.p_front__products___slider .slick-dots {
  display: flex;
  width: 100%;
  position: relative;
  bottom: unset;
  margin-top: 6px;
}
.p_front__products___slider .slick-dots li {
  width: 100%;
  height: 3px;
  margin: 0;
  padding: 0;
}
.p_front__products___slider .slick-dots li button {
  color: transparent;
  width: 100%;
  height: 3px;
  background: #E6E6E6;
  border: none;
  padding: 0;
  cursor: pointer;
}
.p_front__products___slider .slick-dots li button::before {
  display: none;
}
.p_front__products___slider .slick-dots li.slick-active button {
  background: #02417A;
}

.p_front__txtslider {
  margin-top: clamp(64px, 10vw, 160px);
  width: 100%;
  overflow: clip;
  color: #02417A;
  opacity: 0.16;
}

.p_front__txtslider___inner {
  position: relative;
  z-index: -1;
  bottom: -1.75vw;
  display: flex;
  width: max-content;
  animation: text_slide 64s linear infinite;
}
@media screen and (min-width: 1601px) {
  .p_front__txtslider___inner {
    bottom: -24px;
  }
}

.p_front__txtslider span {
  display: inline-block;
  white-space: nowrap;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(4.5625rem, 17vw, 10.625rem);
  line-height: 1;
  padding-right: 0.3em;
  box-sizing: border-box;
  letter-spacing: 0.03em;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Business----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_front__business {
  position: relative;
  overflow: clip;
  color: #fff;
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(80px, 10vw, 160px);
}

.p_front__business___bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.p_front__business___bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .p_front__business___container {
    position: relative;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1000px) and (min-width: 1221px) {
  .p_front__business___container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1220px) {
  .p_front__business___container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) and (max-width: 1024px) {
  .p_front__business___container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1001px) {
  .p_front__business___container {
    position: relative;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1421px) {
  .p_front__business___container {
    margin-right: calc((100vw - 1410px) / 2);
  }
}
@media screen and (min-width: 1001px) and (max-width: 1420px) {
  .p_front__business___container {
    max-width: 1440px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 501px) and (max-width: 1024px) {
  .p_front__business___container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.p_front__business___side {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(72px, 7.5vw, 120px);
}
@media screen and (min-width: 1601px) {
  .p_front__business___side {
    max-width: 1400px;
    margin-left: auto;
  }
}
@media screen and (max-width: 1000px) {
  .p_front__business___side {
    flex-direction: column;
    gap: 40px;
  }
}

.p_front__business___wrap {
  position: relative;
  aspect-ratio: 707/668;
  width: 50.5%;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .p_front__business___wrap {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p_front__business___wrap picture {
  position: absolute;
}
.p_front__business___wrap picture:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 88.2602545969%;
}
.p_front__business___wrap picture:nth-of-type(2) {
  bottom: 0;
  right: 0;
  width: 40.7355021216%;
  z-index: 1;
}

@media screen and (min-width: 1001px) {
  .p_front__business___inner {
    align-content: flex-end;
    flex: 1;
  }
}

.p_front__business___lead {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
}
.p_front__business___lead + p {
  margin-top: clamp(16px, 1.5vw, 24px);
}

.p_front__business___btn {
  margin-top: clamp(32px, 2.5vw, 40px);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_front__company {
  margin-top: clamp(80px, 10vw, 160px);
}

.p_front__company___side {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .p_front__company___side {
    gap: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1001px) {
  .p_front__company___inner {
    flex-basis: 67.5%;
  }
}

.p_front__company___lead + p {
  margin-top: clamp(16px, 1.5vw, 24px);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
imageSlider----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_front__imageslider {
  position: relative;
  overflow: clip;
  margin-bottom: -12.5vw;
  margin-top: clamp(80px, 10vw, 160px);
}
@media screen and (max-width: 1000px) {
  .p_front__imageslider {
    margin-bottom: -25vw;
  }
}
@media screen and (max-width: 500px) {
  .p_front__imageslider {
    margin-bottom: -53.3333333333vw;
  }
}

.p_front__imageslider___container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.p_front__imageslider___inner {
  display: flex;
  gap: 16px;
  position: relative;
  animation: loop-slide-Right 40s infinite linear 1s both;
}

.p_front__imageslider___inner picture {
  width: clamp(306px, 30vw, 480px);
  height: auto;
  position: relative;
  box-sizing: border-box;
}
.p_front__imageslider___inner picture img {
  overflow: clip;
  aspect-ratio: 480/360;
  object-fit: cover;
}
.p_front__imageslider___inner picture:nth-of-type(even) {
  padding-top: clamp(26px, 2.5vw, 40px);
}
@keyframes loop-slide-Right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
recruit----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_front__recruit {
  padding-top: clamp(240px, 20.25vw, 324px);
  padding-bottom: clamp(80px, 10vw, 160px);
  background-color: #F2F4F5;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_front__recruit {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_front__recruit {
    transition-duration: 300ms;
  }
}
@media screen and (min-width: 1601px) {
  .p_front__recruit {
    padding-top: 20.25vw;
  }
}
@media screen and (max-width: 1000px) {
  .p_front__recruit {
    padding-top: 240px;
  }
}
.p_front__recruit.is_active {
  background-color: #555A65;
  color: #fff;
}

.p_front__recruit___side {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .p_front__recruit___side {
    gap: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1001px) {
  .p_front__recruit___inner {
    flex-basis: 57.6666666667%;
  }
}

.p_front__recruit___lead + p {
  margin-top: clamp(16px, 1.5vw, 24px);
}

.p_front__recruit___slider {
  overflow: clip;
  margin-top: clamp(56px, 4.5vw, 72px);
}
.p_front__recruit___slider .slick-list {
  overflow: visible;
}
.p_front__recruit___slider .slick-track {
  display: flex;
  align-items: center;
}

.p_front__recruit___slide___inner {
  transform: scale(0.8);
  transition: transform 0.3s;
  position: relative;
  border-radius: 50%;
  overflow: clip;
  aspect-ratio: 1/1;
  color: #E60044;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 8px;
  box-sizing: border-box;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_front__recruit___slide___inner {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_front__recruit___slide___inner {
    transition-duration: 300ms;
  }
}
.p_front__recruit___slide___inner {
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .p_front__recruit___slide___inner {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p_front__recruit___slide.slick-center .p_front__recruit___slide___inner {
  transform: scale(1);
}

.p_front__recruit___slide___text {
  font-size: clamp(1rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}

.p_front__recruit___slide___lebel {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}

.p_front__recruit___slide___num {
  display: block;
  font-size: clamp(3.625rem, 6.75vw, 6.75rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.p_front__recruit___slide___unit {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.p_front__recruit___slide___note {
  display: block;
  font-size: clamp(0.625rem, 1.6vw, 1rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
News----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_front__news {
  margin-top: clamp(80px, 7.5vw, 120px);
}

.p_front__news___list {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.p_front__news___link {
  display: flex;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 1.8;
  font-weight: 700;
  align-items: center;
  gap: 8px 24px;
  padding-top: clamp(24px, 2.5vw, 40px);
  padding-bottom: clamp(24px, 2.5vw, 40px);
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.p_front__news___link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  scale: 0 1;
  background-color: #E60044;
  transition: inherit;
  transform-origin: left;
}
.p_front__news___link:hover {
  opacity: 1;
}
.p_front__news___link:hover::before {
  scale: 1 1;
}
@media screen and (min-width: 601px) {
  .p_front__news___link {
    padding-left: 16px;
    padding-right: clamp(48px, 3.5vw, 56px);
  }
}
@media screen and (max-width: 600px) {
  .p_front__news___link {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p_front__news___ico {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-90deg);
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 600px) {
  .p_front__news___ico {
    display: none;
  }
}

.p_front__news___lead {
  font-size: inherit;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 501px) {
  .p_front__news___lead {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 500px) {
  .p_front__news___lead {
    -webkit-line-clamp: 1;
  }
}

.p_front__news___btn {
  margin-top: clamp(32px, 3.5vw, 56px);
}

.p_business__block {
  position: relative;
}

.p_business__bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
}

.p_business__strengths {
  position: relative;
  margin-top: clamp(56px, 5.875vw, 94px);
}

.p_business__line {
  display: block;
  position: absolute;
  z-index: -1;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  aspect-ratio: 816/106;
  width: 68%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .p_business__line {
    display: none;
  }
}
.p_business__line svg {
  display: block;
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
}
.p_business__line svg:first-of-type {
  left: 0;
}
.p_business__line svg:last-of-type {
  right: 0;
}
.p_business__line::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 2px;
  height: 37.7358490566%;
  border-left: 2px dashed rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1000px) {
  .p_business__line::before {
    display: none;
  }
}

.p_business__icon {
  width: clamp(150px, 15vw, 180px);
  margin-left: auto;
  margin-right: auto;
}

.p_business__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 48px;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .p_business__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p_business__item {
  counter-increment: mycounter;
  padding-top: clamp(24px, 2vw, 32px);
  padding-left: clamp(20px, 1.75vw, 28px);
  padding-right: clamp(20px, 1.75vw, 28px);
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.25);
}

.p_business__item p {
  position: relative;
  padding-left: clamp(32px, 2.5vw, 40px);
  box-sizing: border-box;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
}
.p_business__item p::before {
  content: counter(mycounter, decimal-leading-zero);
  display: block;
  position: absolute;
  top: clamp(5px, 0.4375vw, 7px);
  left: 0;
  color: #fff;
  background-color: #02417A;
  max-width: max-content;
  padding-top: clamp(3px, 0.25vw, 4px);
  padding-left: clamp(6px, 0.5vw, 8px);
  padding-right: clamp(6px, 0.5vw, 8px);
  padding-bottom: clamp(4px, 0.3125vw, 5px);
  border-radius: 40px;
  overflow: clip;
  box-sizing: border-box;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
  line-height: 0.6875;
}
.p_business__item p::before::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 0.6875) * (0.5em - 1px));
}
.p_business__item p::before::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 0.6875) * 0.5em);
}

.p_business__item picture {
  width: 65.2173913043%;
  margin-left: auto;
  margin-right: auto;
}

.p_business__side {
  display: flex;
  justify-content: space-between;
  gap: 72px;
  margin-top: clamp(80px, 7.5vw, 120px);
}
.p_business__side + .p_business__side {
  margin-top: clamp(56px, 5vw, 80px);
}
@media screen and (min-width: 1001px) {
  .p_business__side:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1000px) {
  .p_business__side {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 1001px) {
  .p_business__side > picture {
    flex-basis: 40.5%;
    flex-shrink: 0;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Message----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_message__side {
  display: flex;
  justify-content: space-between;
  gap: 72px;
}
@media screen and (max-width: 1000px) {
  .p_message__side {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 1001px) {
  .p_message__lead {
    flex: 1;
  }
}

@media screen and (min-width: 1001px) {
  .p_message__inner {
    flex-basis: 50%;
    flex-shrink: 0;
    margin-top: clamp(32px, 2.5vw, 40px);
  }
}

.p_message__owner {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 1em;
  margin-top: clamp(24px, 2vw, 32px);
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 2;
}

.p_message__class {
  display: block;
  font-size: inherit;
}

.p_message__name {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: inherit;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Profile----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_profile__block {
  max-width: 880px;
  margin-left: auto;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Access----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_access__side {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .p_access__side {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 1001px) {
  .p_access__nav {
    max-width: max-content;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1001px) {
  .p_access__inner {
    flex: 1;
  }
}

@media screen and (min-width: 1001px) {
  .p_access__nav___list {
    position: sticky;
    top: 110px;
    overflow-y: scroll;
  }
  .p_access__nav___list::-webkit-scrollbar {
    width: 10px;
  }
  .p_access__nav___list::-webkit-scrollbar-thumb {
    background-color: #C4C4C4;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    background-clip: padding-box;
  }
}
@media screen and (min-width: 1001px) and (max-height: 900px) {
  .p_access__nav___list {
    max-height: calc(100vh - 140px);
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .p_access__nav___list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
  }
}

.p_access__nav___item + .p_access__nav___item {
  margin-top: 8px;
}

.p_access__nav___link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 260px;
  padding: 15px 16px 15px 32px;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  overflow: clip;
}
@media screen and (max-width: 1000px) {
  .p_access__nav___link {
    width: 100%;
  }
}
.p_access__nav___link.c_anchor__active {
  background-color: #E60044;
  color: #fff;
}
.p_access__nav___link.c_anchor__active .p_access__nav___icon {
  background-color: #fff;
}
.p_access__nav___link.c_anchor__active .p_access__nav___icon path {
  fill: #E60044;
}
@media (hover: hover) {
  .p_access__nav___link:hover {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .p_access__nav___link:hover .p_access__nav___icon {
    background-color: #fff;
  }
  .p_access__nav___link:hover .p_access__nav___icon path {
    fill: #E60044;
  }
}
@media (hover: none) {
  .p_access__nav___link {
    transition: all 0s;
  }
  .p_access__nav___link:active {
    opacity: 1;
    background-color: #E60044;
    color: #fff;
  }
  .p_access__nav___link:active .p_access__nav___icon {
    background-color: #fff;
  }
  .p_access__nav___link:active .p_access__nav___icon path {
    fill: #E60044;
  }
}

.p_access__nav___label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.p_access__nav___icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  border-radius: 2px;
  overflow: clip;
  background-color: #E60044;
  box-sizing: border-box;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_access__nav___icon {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_access__nav___icon {
    transition-duration: 300ms;
  }
}
.p_access__nav___icon svg {
  display: block;
  width: 11px;
  height: auto;
}
.p_access__nav___icon path {
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_access__nav___icon path {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_access__nav___icon path {
    transition-duration: 300ms;
  }
}

.p_access__block + .p_access__block {
  margin-top: 64px;
}

.p_access__lead {
  margin-bottom: clamp(24px, 2vw, 32px);
}

.p_access__info {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(16px, 1.5vw, 24px);
}
@media screen and (max-width: 700px) {
  .p_access__info {
    flex-direction: column;
  }
}

@media screen and (min-width: 701px) {
  .p_access__map {
    flex: 1;
  }
}

.p_access__map iframe {
  width: 100%;
  height: 400px;
}

@media screen and (min-width: 701px) {
  .p_access__pic {
    flex-basis: 34.0909090909%;
    flex-shrink: 0;
  }
}
.p_access__pic img {
  width: 100%;
}

.p_exhibitions__side {
  display: flex;
  gap: 72px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .p_exhibitions__side {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 1001px) {
  .p_exhibitions__map {
    max-width: 39.1666666667%;
    flex-basis: 39.1666666667%;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1001px) {
  .p_exhibitions__nav {
    flex: 1;
  }
}
@media screen and (max-width: 600px) {
  .p_exhibitions__nav {
    width: 100%;
  }
}

.p_exhibitions__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 16px;
  max-width: max-content;
}
@media screen and (max-width: 600px) {
  .p_exhibitions__list {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }
}

.p_exhibitions__link {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  width: 260px;
  padding: 15px 16px 15px 32px;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  overflow: clip;
}
@media screen and (max-width: 600px) {
  .p_exhibitions__link {
    width: 100%;
    padding-left: clamp(18px, 2vw, 32px);
    padding-right: clamp(12px, 1vw, 16px);
  }
}
@media (hover: hover) {
  .p_exhibitions__link:hover {
    opacity: 1;
    background-color: var(--theme-color);
    color: #fff;
  }
  .p_exhibitions__link:hover .p_exhibitions__ico {
    background-color: #fff;
  }
  .p_exhibitions__link:hover .p_exhibitions__ico path {
    fill: var(--theme-color);
  }
}
@media (hover: none) {
  .p_exhibitions__link {
    transition: all 0s;
  }
  .p_exhibitions__link:active {
    opacity: 1;
    background-color: var(--theme-color);
    color: #fff;
  }
  .p_exhibitions__link:active .p_exhibitions__ico {
    background-color: #fff;
  }
  .p_exhibitions__link:active .p_exhibitions__ico path {
    fill: var(--theme-color);
  }
}

@media screen and (max-width: 600px) {
  .p_exhibitions__label {
    font-size: clamp(0.875rem, 1.6vw, 1rem);
  }
}

.p_exhibitions__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  border-radius: 4px;
  overflow: clip;
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  box-sizing: border-box;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_exhibitions__ico {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_exhibitions__ico {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 600px) {
  .p_exhibitions__ico {
    width: clamp(20px, 4.5714285714vw, 32px);
  }
}
.p_exhibitions__ico svg {
  display: block;
  width: 11px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p_exhibitions__ico svg {
    width: clamp(8px, 1.5714285714vw, 11px);
  }
}
.p_exhibitions__ico path {
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_exhibitions__ico path {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_exhibitions__ico path {
    transition-duration: 300ms;
  }
}

.p_exhibitions__block {
  margin-top: clamp(80px, 12.5vw, 200px);
}
.p_exhibitions__block + .p_exhibitions__block {
  margin-top: 64px;
}

.p_exhibitions__table th,
.p_exhibitions__table td {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 400;
  vertical-align: middle;
  line-height: 1.2;
}
@media screen and (min-width: 1001px) {
  .p_exhibitions__table th,
  .p_exhibitions__table td {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1001px) {
  .p_exhibitions__table th {
    width: 21.6666666667%;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .p_exhibitions__table th.p_exhibitions__area {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    width: 160px;
    min-width: 160px;
  }
  .p_exhibitions__table th.p_exhibitions__event {
    width: 160px;
    min-width: 160px;
  }
}

@media screen and (min-width: 1001px) {
  .p_exhibitions__table td {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.p_exhibitions__tr.is_end td:not(.p_exhibitions__held) {
  opacity: 0.3;
}

.p_exhibitions__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 112px;
  height: 33px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: clip;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.is_upcoming .p_exhibitions__btn {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.is_running .p_exhibitions__btn {
  background-color: var(--theme-color);
}
.is_end .p_exhibitions__btn {
  background-color: rgba(51, 51, 51, 0.3);
}
@media screen and (max-width: 1100px) {
  .p_exhibitions__btn {
    margin: 0;
  }
}

.p_exhibitions__btn__sp {
  width: 100%;
  padding: 0;
  padding-top: 32px;
}
.p_exhibitions__lead {
  margin-bottom: clamp(24px, 2vw, 32px);
}

@media screen and (max-width: 1000px) {
  .p_exhibitions__pc {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .p_exhibitions__sp {
    display: none;
  }
}
.p_exhibitions__sp .p_exhibitions__table {
  border-collapse: separate;
  border-spacing: 4px;
}
.p_exhibitions__sp .p_exhibitions__table tr:first-of-type th {
  padding-top: 0;
}

.p_exhibitions__head,
.p_exhibitions__data {
  padding-left: 0;
  padding-right: 0;
}
.p_exhibitions__tr.is_end .p_exhibitions__head,
.p_exhibitions__tr.is_end .p_exhibitions__data {
  opacity: 0.3;
}

.p_exhibitions__head {
  font-size: 12px !important;
  padding-bottom: 8px;
}

.p_ourwork__block + .p_ourwork__block {
  margin-top: clamp(56px, 4vw, 64px);
}

.p_ourwork__list {
  margin-bottom: clamp(32px, 3vw, 48px);
}

.p_ourwork__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1;
}
.p_ourwork__item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: clamp(6px, 0.5vw, 8px);
  height: auto;
  border-radius: 1px;
  overflow: clip;
  background-color: #E60044;
}
.p_ourwork__item + .p_ourwork__item {
  margin-top: 1em;
}

.p_ourwork__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px 24px;
}
@media screen and (max-width: 1000px) {
  .p_ourwork__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .p_ourwork__gallery {
    gap: 24px 16px;
  }
}

.p_ourwork__pic img {
  aspect-ratio: 282/210;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p_ourwork__caption {
  margin-top: 1em;
  font-size: clamp(0.75rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
}

.p_ourwork__caption small {
  display: block;
  margin-top: clamp(6px, 0.5vw, 8px);
  font-size: 12px;
  line-height: 1.2;
}

.p_interview__info {
  margin-top: clamp(24px, 2vw, 32px);
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
}
.p_interview__info p,
.p_interview__info span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.p_interview__year {
  margin-top: 1em;
  opacity: 0.3;
}

.p_interview__dtit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
}
.p_interview__dtit::before {
  content: "";
  display: block;
  position: relative;
  top: clamp(12px, 1.6vw, 16px);
  width: clamp(24px, 3.3333333333vw, 40px);
  height: 2px;
  flex-shrink: 0;
  background-color: #E60044;
}
.p_interview__dtit + .p_interview__data {
  margin-top: 1em;
}

.p_interview__data {
  padding-left: clamp(32px, 3.375vw, 54px);
}
.p_interview__data + .p_interview__dtit {
  margin-top: clamp(24px, 2vw, 32px);
}

.p_interview__block {
  margin-top: clamp(56px, 5.5vw, 88px);
}

.p_interview__pic {
  margin-bottom: clamp(56px, 5.5vw, 88px);
}

.p_faq__wrap + .p_faq__wrap {
  margin-top: clamp(48px, 4vw, 64px);
}

.p_faq__lead {
  margin-bottom: clamp(12px, 1vw, 16px);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}

.p_faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.p_faq__block {
  padding-top: clamp(24px, 2vw, 32px);
  padding-bottom: clamp(24px, 2vw, 32px);
  border: top;
}
.p_faq__block + .p_faq__block {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.p_faq__dtit .p_faq__label,
.p_faq__data {
  display: flex;
  gap: 32px;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
}
@media screen and (max-width: 500px) {
  .p_faq__dtit .p_faq__label,
  .p_faq__data {
    gap: 16px;
  }
}

.p_faq__dtit {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.p_faq__dtit .p_faq__label {
  font-size: inherit;
  font-weight: 700;
}
.p_faq__dtit .p_faq__label::before {
  content: "Q";
  display: inline-block;
  color: #E60044;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .p_faq__dtit .p_faq__label::before {
    line-height: 1.6666666667;
  }
}
.p_faq__dtit.is_open {
  border: none;
}

.p_faq__data {
  margin-top: clamp(16px, 1.5vw, 24px);
}
.p_faq__data::before {
  content: "A";
  color: #E60044;
  display: inline-block;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.p_faq__inner p a {
  color: #E60044;
  text-decoration: underline;
}

.p_faq__ico {
  display: block;
  position: absolute;
  position: relative;
  top: clamp(8px, 0.625vw, 10px);
  width: 12px;
  height: 12px;
  aspect-ratio: 12/7;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_faq__ico {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_faq__ico {
    transition-duration: 300ms;
  }
}
.p_faq__ico::before, .p_faq__ico::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 1px;
  background: #E60044;
}
.p_faq__ico::after {
  transform: rotate(90deg);
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is_open .p_faq__ico::after {
  transform: rotate(0);
}

.p_requirements__tab {
  counter-increment: mycounter;
}

.p_requirements__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: clamp(24px, 2vw, 32px);
  padding-bottom: clamp(24px, 2vw, 32px);
  padding-right: clamp(12px, 1vw, 16px);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.p_requirements__link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  scale: 0 1;
  background-color: #E60044;
  transition: inherit;
  transform-origin: left;
}
.p_requirements__link:hover {
  opacity: 1;
}
.p_requirements__link:hover::before {
  scale: 1 1;
}

.p_requirements__label {
  display: flex;
  gap: 1em;
}
.p_requirements__label::before {
  content: counter(mycounter, decimal-leading-zero);
  color: #E60044;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
詳細----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_requirements__btn {
  margin-top: clamp(56px, 5vw, 80px);
}

.p_contact__list {
  counter-reset: num;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(40px, 5vw, 80px);
}
@media screen and (min-width: 501px) {
  .p_contact__list {
    gap: clamp(24px, 2.5vw, 40px);
  }
}
@media screen and (max-width: 500px) {
  .p_contact__list {
    gap: 8px;
  }
}

.p_contact__tab {
  max-width: 296px;
  flex: 1;
  display: block;
  text-align: center;
  position: relative;
  background-color: #fff;
  border: 1px solid #02417A;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 2;
  font-weight: 700;
}
@media screen and (min-width: 501px) {
  .p_contact__tab {
    padding-top: clamp(10px, 0.6875vw, 11px);
    padding-bottom: clamp(12px, 0.8125vw, 13px);
  }
}
@media screen and (max-width: 500px) {
  .p_contact__tab {
    padding-top: 0.625em;
    padding-bottom: 0.5em;
  }
}
.p_contact__tab::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 50%;
  left: clamp(8px, 1vw, 16px);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.p_contact__active {
  background-color: #02417A;
  color: #fff;
}

.p_contact__line {
  display: block;
  flex: 1;
  height: 1px;
  background-color: #02417A;
  outline: none;
  border: none;
}
@media screen and (min-width: 501px) {
  .p_contact__line {
    max-width: 72px;
  }
}
@media screen and (max-width: 500px) {
  .p_contact__line {
    max-width: 32px;
  }
}

.p_contact__lead {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1em;
}

.p_contact__bnr {
  margin-bottom: clamp(80px, 7.5vw, 120px);
}

.p_contact__bnr___item {
  display: flex;
  position: relative;
  min-height: clamp(313px, 21.875vw, 350px);
}
@media (hover: hover) {
  .p_contact__bnr___item:hover {
    opacity: 1;
  }
  .p_contact__bnr___item:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p_contact__bnr___item {
    transition: all 0s;
  }
  .p_contact__bnr___item:active {
    opacity: 1;
  }
  .p_contact__bnr___item:active img {
    scale: 1.05;
  }
}

.p_contact__bnr___bg {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: clip;
}
.p_contact__bnr___bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_contact__bnr___bg img {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_contact__bnr___bg img {
    transition-duration: 300ms;
  }
}

.p_contact__bnr___info {
  margin-top: auto;
  max-height: max-content;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(32px, 3vw, 48px);
  box-sizing: border-box;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .p_contact__bnr___info {
    padding-top: 80px;
  }
}

.p_contact__bnr___label {
  display: block;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 1;
  text-transform: capitalize;
}

.p_contact__bnr___lead {
  margin-top: 16px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.p_contact__bnr___caption {
  margin-top: clamp(16px, 2vw, 32px);
}

.p_contact__btn {
  margin-top: clamp(48px, 3.5vw, 56px);
}

.p_policy__block + .p_policy__block {
  margin-top: 32px;
}

.p_policy__label {
  display: block;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 2;
}
.p_policy__label::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.p_policy__label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p_policy__label {
  font-weight: 700;
  margin-bottom: 8px;
}

.p_policy__text {
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 2;
}
.p_policy__text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.p_policy__text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p_policy__text {
  font-weight: 400;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
共通----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_products__side {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .p_products__side {
    flex-direction: column;
    gap: 56px;
  }
}

@media screen and (min-width: 1001px) {
  .p_products__nav {
    flex-basis: 240px;
    flex-shrink: 0;
  }
}

.p_products__nav___list {
  padding-top: clamp(16px, 1.5vw, 24px);
  padding-left: clamp(16px, 1.5vw, 24px);
  padding-right: clamp(16px, 1.25vw, 20px);
  padding-bottom: clamp(16px, 1.5vw, 24px);
  box-sizing: border-box;
  background-color: #F2F4F5;
  box-sizing: border-box;
  position: sticky;
  top: 110px;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .p_products__nav___list {
    overflow-y: scroll;
    padding-right: 12px;
  }
  .p_products__nav___list::-webkit-scrollbar {
    width: 10px;
  }
  .p_products__nav___list::-webkit-scrollbar-thumb {
    background-color: #C4C4C4;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    background-clip: padding-box;
  }
}
@media screen and (min-width: 901px) and (max-height: 900px) {
  .p_products__nav___list {
    max-height: calc(100vh - 140px);
  }
}
@media screen and (max-width: 1000px) {
  .p_products__nav___list {
    display: flex;
    gap: 24px;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1001px) {
  .p_products__nav___item + .p_products__nav___item {
    margin-top: 16px;
  }
}

.p_products__nav___link {
  display: block;
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.3;
}
.p_products__nav___link::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  aspect-ratio: 1/1;
  width: 8px;
  height: auto;
  background-color: #E60044;
  border-radius: 1px;
  overflow: clip;
  opacity: 0;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_products__nav___link::before {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__nav___link::before {
    transition-duration: 300ms;
  }
}
.p_products__nav___link.active {
  opacity: 1;
}
.p_products__nav___link.active::before {
  opacity: 1;
}
@media (hover: hover) {
  .p_products__nav___link:hover {
    opacity: 1;
  }
  .p_products__nav___link:hover::before {
    opacity: 1;
  }
}
@media (hover: none) {
  .p_products__nav___link {
    transition: all 0s;
  }
  .p_products__nav___link:active {
    opacity: 1;
  }
  .p_products__nav___link:active::before {
    opacity: 1;
  }
}

@media screen and (min-width: 1001px) {
  .p_products__inner {
    flex: 1;
  }
}

.p_products__label {
  color: #fff;
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 2px;
  overflow: clip;
  font-size: 13px;
  line-height: 1.2;
}
.p_products__label._news {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.04em;
  background-color: #E60044;
}
.p_products__label._discontinued {
  background-color: #9E9E9E;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
一覧----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_products__archive {
  margin-bottom: clamp(120px, 12.5vw, 200px);
}

@media screen and (min-width: 1001px) {
  .p_products__archive .p_products__side {
    gap: 64px;
  }
}

@media screen and (min-width: 1001px) {
  .p_products__archive .p_products__inner {
    flex: unset;
    width: 73.3333333333%;
  }
}

@media screen and (min-width: 1001px) {
  .p_products__archive___option .p_products__inner {
    width: 100%;
  }
}

.p_products__archive___headwrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(56px, 5vw, 80px);
}
@media screen and (min-width: 1001px) {
  .p_products__archive___headwrap {
    align-items: flex-end;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__archive___headwrap {
    flex-direction: column;
    gap: 32px;
  }
}

.p_products__archive___head {
  margin-bottom: 0;
}

.p_products__archive___btn {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 501px) {
  .p_products__archive___btn {
    justify-content: flex-end;
  }
}
.p_products__archive___btn___link {
  padding: 14px 14px 14px 24px;
  width: 100%;
  min-width: 210px;
  max-width: max-content;
}
.p_products__archive___btn___link .c_btn__label {
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
}
@media screen and (max-width: 500px) {
  .p_products__archive___btn___link {
    width: 100%;
    padding: 14px;
  }
}

.p_products__archive___block + .p_products__archive___block {
  margin-top: clamp(80px, 7.5vw, 120px);
}

.p_products__archive___list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .p_products__archive___list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .p_products__archive___list {
    gap: 32px 8px;
  }
}

.p_products__archive___link {
  display: block;
}
@media (hover: hover) {
  .p_products__archive___link:hover {
    opacity: 1;
  }
  .p_products__archive___link:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p_products__archive___link {
    transition: all 0s;
  }
  .p_products__archive___link:active {
    opacity: 1;
  }
  .p_products__archive___link:active img {
    scale: 1.05;
  }
}

.p_products__archive___pic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 272/197;
  width: 100%;
  height: auto;
  background-color: #F2F4F5;
  overflow: hidden;
}

.p_products__archive___pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_products__archive___pic img {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__archive___pic img {
    transition-duration: 300ms;
  }
}

.p_products__archive___label {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
}
@media screen and (max-width: 500px) {
  .p_products__archive___label {
    top: 8px;
    left: 8px;
  }
}

.p_products__archive___name {
  margin-top: 16px;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
  line-height: 1.4375;
}
.p_products__archive___name::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4375) * (0.5em - 1px));
}
.p_products__archive___name::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4375) * 0.5em);
}

.p_products__archive___bnr {
  width: 100%;
  margin-bottom: clamp(56px, 5vw, 80px);
}

.p_products__archive___bnr___link {
  gap: clamp(8px, 1vw, 16px);
  width: 100%;
  height: clamp(72px, 11.5555555556vw, 104px);
}
.p_products__archive___bnr___link ._label {
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 700;
}
.p_products__archive___bnr___link ._arrow {
  width: clamp(26px, 4.4444444444vw, 40px);
}
.p_products__archive___bnr___link ._arrow svg {
  width: clamp(10px, 1.5555555556vw, 14px);
}
@media (hover: hover) {
  .p_products__archive___bnr___link:hover .p_products__archive___bnr___icon path {
    fill: #fff;
  }
}
@media (hover: none) {
  .p_products__archive___bnr___link {
    transition: all 0s;
  }
  .p_products__archive___bnr___link:active .p_products__archive___bnr___icon path {
    fill: #fff;
  }
}

.p_products__archive___bnr___icon {
  display: block;
}
.p_products__archive___bnr___icon svg {
  display: block;
  aspect-ratio: 27/34;
  width: clamp(22px, 3vw, 27px);
  height: auto;
}
.p_products__archive___bnr___icon svg path {
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_products__archive___bnr___icon svg path {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__archive___bnr___icon svg path {
    transition-duration: 300ms;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
オプション・その他製品----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.p_products__archive___inner img {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.p_products__archive___inner table {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}

.p_products__archive___inner tr th,
.p_products__archive___inner tr td {
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-top: clamp(16px, 1.5vw, 24px);
  padding-bottom: clamp(16px, 1.5vw, 24px);
  padding-left: 16px;
  padding-right: 16px;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  height: auto;
}

.p_products__archive___inner tr th {
  background-color: #EAF5FF;
  width: 200px;
}

.p_products__archive___inner tr td {
  vertical-align: middle;
  background-color: #fff;
}

.p_products__option___block {
  overflow: clip;
}
.p_products__option___block + .p_products__option___block {
  margin-top: clamp(56px, 5vw, 80px);
}

@media screen and (min-width: 1001px) {
  .p_products__option___block___table tr th,
  .p_products__option___block___table tr td {
    width: auto;
    height: auto !important;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__option___block___table tr th,
  .p_products__option___block___table tr td {
    display: table-cell !important;
    white-space: nowrap;
    padding: 16px;
    height: auto !important;
  }
  .p_products__option___block___table tr th {
    min-width: 240px;
  }
  .p_products__option___block___table tr td {
    min-width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__option___block___table.is_block tr th,
  .p_products__option___block___table.is_block tr td {
    display: block !important;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.3);
    white-space: unset;
    width: 100% !important;
  }
}
.p_products__option___block___table.is_swipe {
  width: 100%;
  position: relative;
  padding: 5px 0;
  overflow: hidden;
  z-index: 1;
  overflow: auto;
  white-space: nowrap;
}
.p_products__option___block___table.is_swipe::-webkit-scrollbar {
  height: 10px;
}
.p_products__option___block___table.is_swipe::-webkit-scrollbar-track {
  background-color: rgba(2, 65, 122, 0.16);
}
.p_products__option___block___table.is_swipe::-webkit-scrollbar-thumb {
  background-color: #02417A;
}
.p_products__option___block___table.is_swipe th,
.p_products__option___block___table.is_swipe td {
  display: table-cell !important;
  white-space: nowrap;
  width: auto;
  min-width: 120px;
  vertical-align: middle;
}
@media screen and (min-width: 1101px) {
  .p_products__option___block___table.is_swipe::before {
    content: "※内容が画面に収まらない場合は、スクロールしてご覧ください。";
    display: block;
    color: #E60044;
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    font-weight: 700;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .p_products__option___block___table.is_swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .p_products__option___block___table.is_swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(221, 221, 221, 0.6);
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
  .p_products__option___block___table.is_swipe.__on::after, .p_products__option___block___table.is_swipe.__on::before {
    opacity: 0;
    z-index: -1;
    animation: none;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
詳細----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media screen and (min-width: 1001px) {
  .p_products__single .p_products__inner {
    flex: unset;
    width: 73.3333333333%;
  }
}

.p_products__single___head {
  margin-bottom: clamp(32px, 3vw, 48px);
}

.p_products__single___head .p_products__label {
  display: block;
  margin-bottom: 8px;
  max-width: max-content;
}

.p_products__single___lead {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4583333333;
}
.p_products__single___lead::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4583333333) * (0.5em - 1px));
}
.p_products__single___lead::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4583333333) * 0.5em);
}
.p_products__single___lead br {
  display: block;
}

.p_products__single___flex {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 4.5vw, 72px);
}
@media screen and (max-width: 1000px) {
  .p_products__single___flex {
    flex-direction: column;
    gap: 40px;
  }
}

.p_products__single___flex___inner {
  flex: 1;
}

@media screen and (min-width: 1001px) {
  .p_products__single___flex___images {
    width: 53.8636363636%;
    flex-shrink: 0;
  }
}

.p_products__single___flex___box .slick-track {
  margin: 0;
}

.p_products__single___flex___visual,
.p_products__single___flex___img {
  width: 100%;
  height: auto;
  background-color: #F2F4F5;
}
.p_products__single___flex___visual img,
.p_products__single___flex___img img {
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.p_products__single___flex___visual {
  aspect-ratio: 474/357;
}

.p_products__single___flex___slider img {
  aspect-ratio: 330/238;
  width: 100%;
  height: auto;
}

.p_products__single___flex___lists {
  margin-top: clamp(8px, 1vw, 16px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 12px 8px;
}

.p_products__single___flex___img {
  aspect-ratio: 152/111;
  cursor: pointer;
}

.p_products__single___flex___caption {
  margin-top: 8px;
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
}

.p_products__single___flex___img img {
  aspect-ratio: 108/80;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p_products__single___box + .p_products__single___btns {
  margin-top: clamp(40px, 3vw, 48px);
}
.p_products__single___box + .p_products__single___box {
  margin-top: 24px;
}

.p_products__single___dtit {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.p_products__single___item {
  display: block;
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.p_products__single___item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  aspect-ratio: 1/1;
  width: 8px;
  height: auto;
  background-color: #E60044;
  border-radius: 1px;
  overflow: clip;
}
.p_products__single___item + .p_products__single___item {
  margin-top: 16px;
}

.p_products__single___btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.p_products__single___btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 260px;
  padding: 16px 16px 16px 34px;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  overflow: clip;
}
@media (hover: hover) {
  .p_products__single___btn:hover {
    opacity: 1;
    color: #fff;
    background-color: #E60044;
    border: 1px solid #E60044;
  }
  .p_products__single___btn:hover .p_products__single___btn___ico path {
    fill: #fff;
  }
}
@media (hover: none) {
  .p_products__single___btn {
    transition: all 0s;
  }
  .p_products__single___btn:active {
    opacity: 1;
    color: #fff;
    background-color: #E60044;
    border: 1px solid #E60044;
  }
  .p_products__single___btn:active .p_products__single___btn___ico path {
    fill: #fff;
  }
}

.p_products__single___btn___ico {
  display: block;
}
.p_products__single___btn___ico path {
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_products__single___btn___ico path {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__single___btn___ico path {
    transition-duration: 300ms;
  }
}
.p_products__single___btn___ico._catalog {
  aspect-ratio: 24/20;
  width: 24px;
  height: auto;
}
.p_products__single___btn___ico._pdf {
  aspect-ratio: 20/24;
  width: 20px;
  height: auto;
}
.p_products__single___btn___ico svg {
  display: block;
}

.p_products__single___btn___label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.p_products__single___contents {
  background-color: #F2F4F5;
  margin-top: clamp(80px, 7.5vw, 120px);
  padding-top: clamp(80px, 7.5vw, 120px);
  padding-bottom: clamp(120px, 12.5vw, 200px);
}

.p_products__single___block + .p_products__single___block {
  margin-top: clamp(80px, 7.5vw, 120px);
}

.p_products__single___block___video iframe {
  aspect-ratio: 1200/675;
  max-width: 880px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.p_products__single___block___table table {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}

.p_products__single___block___table tr th,
.p_products__single___block___table tr td {
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-top: clamp(20px, 1.5vw, 24px);
  padding-left: clamp(16px, 1.5vw, 24px);
  padding-right: clamp(16px, 1.5vw, 24px);
  padding-bottom: clamp(20px, 1.5vw, 24px);
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p_products__single___block___table tr th {
  background-color: #EAF5FF;
  width: 240px;
}

.p_products__single___block___table tr td {
  vertical-align: middle;
  background-color: #fff;
}

.p_products__single___block___text {
  margin-top: clamp(32px, 2.5vw, 40px);
}

@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .p_products__single___block___table.swipe tr th,
  .p_products__single___block___table.swipe tr td {
    padding: 16px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .p_products__single___block___table.swipe tr th {
    min-width: 240px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .p_products__single___block___table.swipe tr td {
    min-width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .p_products__single___block___table.is_block table {
    border: none;
  }
  .p_products__single___block___table.is_block tr th {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .p_products__single___block___table.is_block tr th,
  .p_products__single___block___table.is_block tr td {
    padding: 16px;
    border: none;
  }
}
.p_products__single___back {
  margin-top: clamp(48px, 3.5vw, 56px);
}

:root {
  --features_width: 288px;
  --products_width: 360px;
}

@media screen and (max-width: 1000px) {
  :root {
    --features_width: 180px;
    --products_width: 240px;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --features_width: 130px;
    --products_width: 190px;
  }
}
.p_compare {
  padding-top: clamp(80px, 7.5vw, 120px);
  padding-bottom: clamp(120px, 12.5vw, 200px);
  background-color: #F2F4F5;
  overflow: clip;
}

.p_compare__block {
  position: relative;
  margin-top: 40px;
}

.p_compare__table {
  overflow: hidden;
}

.p_compare__table___inner {
  position: relative;
}

/* =========================
左カラム（固定）
========================= */
.p_compare__features {
  position: absolute;
  left: 0;
  top: 0;
  min-width: var(--features_width);
  width: var(--features_width);
  background: #02417A;
  color: #fff;
  z-index: 7;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.p_compare__features .p_compare__follow {
  background: #02417A;
}

.p_compare__features .p_compare__item {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

/* =========================
横スクロール
========================= */
.p_compare__wrapper {
  overflow-x: auto;
  margin-left: var(--features_width);
  padding-bottom: 8px;
}
.p_compare__wrapper::-webkit-scrollbar {
  height: 10px;
}
.p_compare__wrapper::-webkit-scrollbar-track {
  background-color: rgba(2, 65, 122, 0.16);
}
.p_compare__wrapper::-webkit-scrollbar-thumb {
  background-color: #02417A;
}

.p_compare__columns {
  display: flex;
}

/* =========================
商品
========================= */
.p_compare__product {
  position: relative;
  float: left;
  min-width: var(--products_width);
  width: var(--products_width);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #fff;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
/* 非選択を消す */
.p_compare__table.is_filtering .p_compare__product:not(.selected) {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

/* レイアウトから外す */
.p_compare__table.is_filtered .p_compare__product:not(.selected) {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

/* transition殺す */
.p_compare__table.no-transition .p_compare__product {
  transition: none !important;
}

/* =========================
ヘッダー
========================= */
.p_compare__follow {
  position: absolute;
  top: 0;
  padding-top: clamp(32px, 2.5vw, 40px);
  padding-left: clamp(24px, 2.5vw, 40px);
  padding-right: clamp(24px, 2.5vw, 40px);
  padding-bottom: clamp(32px, 2.5vw, 40px);
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 372px;
  font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  background-color: #fff;
  transition: height 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .p_compare__follow {
    height: 272px;
  }
}
@media screen and (max-width: 500px) {
  .p_compare__follow {
    height: 230px;
  }
}

.p_compare__image {
  position: relative;
  max-width: 100%;
  height: auto;
  transition: all 0.3s;
  margin-top: clamp(24px, 2vw, 32px);
  mix-blend-mode: multiply;
}
.p_compare__image img {
  mix-blend-mode: multiply;
  aspect-ratio: 276/200;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  .p_compare__image img {
    max-width: 140px;
  }
}

.p_compare__image___caption {
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s;
}

/* チェック */
.p_compare__check {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  aspect-ratio: 1/1;
  width: 24px;
  width: clamp(20px, 4.8vw, 24px);
  height: auto;
  background-color: #ccc;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_compare__check {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_compare__check {
    transition-duration: 300ms;
  }
}
.p_compare__check {
  cursor: pointer;
}
.p_compare__check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center center;
}
.selected .p_compare__check::before {
  background-image: url("../images/common/ico_check.svg");
}

.p_compare__list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding-top: 372px;
}
@media screen and (max-width: 1000px) {
  .p_compare__list {
    padding-top: 272px;
  }
}
@media screen and (max-width: 500px) {
  .p_compare__list {
    padding-top: 230px;
  }
}

.p_compare__item {
  padding-top: clamp(32px, 2.5vw, 40px);
  padding-left: clamp(20px, 1.5vw, 24px);
  padding-right: clamp(20px, 1.5vw, 24px);
  padding-bottom: clamp(32px, 2.5vw, 40px);
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  align-content: center;
  word-break: break-all;
}

.p_compare__lightbox {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 28px;
}

.p_compare__label {
  display: block;
  position: absolute;
  top: 80px;
  left: 40px;
  max-width: max-content;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .p_compare__label {
    top: 72px;
    left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .p_compare__label {
    top: 52px;
    left: 20px;
  }
}

/* =========================
比較ボタン
========================= */
.p_compare__btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.p_compare__btn___filter,
.p_compare__btn___reset {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  height: clamp(62px, 4.25vw, 68px);
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(0.9375rem, 2vw, 1.25rem);
  line-height: 1;
  cursor: pointer;
}
.p_compare__btn___filter:disabled,
.p_compare__btn___reset:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
@media screen and (max-width: 500px) {
  .p_compare__btn___filter,
  .p_compare__btn___reset {
    width: 100%;
  }
}

.p_compare__btn___filter {
  width: 452px;
}

.p_compare__btn___reset {
  width: 240px;
}

/* =========================
矢印UI
========================= */
.p_compare__navigation a {
  position: absolute;
  top: clamp(64px, 6.1538461538vw, 80px);
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: clamp(36px, 3.5vw, 56px);
  height: auto;
  border-radius: 4px;
  overflow: clip;
  background-color: #E60044;
  border: 1px solid #E60044;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.25s ease;
  pointer-events: auto;
}
.p_compare__navigation a svg {
  display: block;
  width: clamp(12px, 1.0625vw, 17px);
  height: auto;
}

.p_compare__navigation .is_prev {
  left: var(--features_width);
  rotate: 90deg;
}

.p_compare__navigation .is_next {
  right: 0;
  rotate: -90deg;
}

.p_compare__navigation .is_inactive {
  opacity: 0;
  pointer-events: none;
}

/* =========================
追従
========================= */
.p_compare__table:not(.is_fixed) .p_compare__follow {
  transform: translateX(0px) !important;
}

.p_compare__table.is_fixed .p_compare__follow {
  height: 280px;
  background-color: #fff;
  padding-top: clamp(20px, 1.5vw, 24px);
  padding-left: clamp(20px, 1.5vw, 24px);
  padding-right: clamp(20px, 1.5vw, 24px);
  padding-bottom: clamp(20px, 1.5vw, 24px);
}
@media screen and (max-width: 1000px) {
  .p_compare__table.is_fixed .p_compare__follow {
    height: 220px;
  }
}
@media screen and (max-width: 500px) {
  .p_compare__table.is_fixed .p_compare__follow {
    height: 170px;
  }
}

.p_compare__table.is_fixed .p_compare__check {
  width: clamp(18px, 1.25vw, 20px);
}

.p_compare__table.is_fixed .p_compare__product .p_compare__follow {
  position: fixed;
  top: clamp(64px, 6.1538461538vw, 80px);
  z-index: 5;
  width: var(--products_width);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

/* 左の見出し固定 */
.p_compare__table.is_fixed .p_compare__features .p_compare__follow {
  position: fixed;
  top: clamp(64px, 6.1538461538vw, 80px);
  width: var(--features_width);
  z-index: 6;
  background-color: #02417A;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

/* 矢印固定 */
.p_compare__table.is_fixed .p_compare__navigation a {
  position: fixed;
  top: clamp(120px, 11.5384615385vw, 150px);
}

.p_compare__table.is_fixed .p_compare__features .p_compare__follow,
.p_compare__table.is_bottom .p_compare__features .p_compare__follow,
.p_compare__table.is_fixed .p_compare__product .p_compare__follow,
.p_compare__table.is_bottom .p_compare__product .p_compare__follow {
  height: 280px;
  transition: height 0s ease;
}
@media screen and (max-width: 1000px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow {
    height: 220px;
  }
}
@media screen and (max-width: 500px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow {
    height: 170px;
  }
}
.p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__image,
.p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__image,
.p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__image,
.p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__image {
  transform: translateY(-40px) scale(0.6);
}
@media screen and (max-width: 1000px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__image,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__image,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__image,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__image {
    transform: translateY(-30px) scale(0.6);
  }
}
@media screen and (max-width: 500px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__image,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__image,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__image,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__image {
    transform: translateY(-22px) scale(0.6);
  }
}
.p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__image___caption,
.p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__image___caption,
.p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__image___caption,
.p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__image___caption {
  transform: translateY(-80px);
}
@media screen and (max-width: 1000px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__image___caption,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__image___caption,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__image___caption,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__image___caption {
    transform: translateY(-60px);
  }
}
@media screen and (max-width: 500px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__image___caption,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__image___caption,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__image___caption,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__image___caption {
    transform: translateY(-42px);
  }
}
.p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__label,
.p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__label,
.p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__label,
.p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__label {
  transform: translateY(-20px);
}
@media screen and (max-width: 1000px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__label,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__label,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__label,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__label {
    transform: translateY(-40px);
  }
}
@media screen and (max-width: 500px) {
  .p_compare__table.is_fixed .p_compare__features .p_compare__follow .p_compare__label,
  .p_compare__table.is_bottom .p_compare__features .p_compare__follow .p_compare__label,
  .p_compare__table.is_fixed .p_compare__product .p_compare__follow .p_compare__label,
  .p_compare__table.is_bottom .p_compare__product .p_compare__follow .p_compare__label {
    transform: translateY(-10px);
  }
}

/* =========================
下まで行ったら解除
========================= */
.p_compare__table.is_bottom .p_compare__product .p_compare__follow {
  position: absolute;
  width: var(--products_width);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  transition: 0s;
}

.p_compare__notes {
  margin-top: clamp(48px, 3.5vw, 56px);
}

/* list型 */
.p_archive__list {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.p_archive__link {
  display: flex;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 1.8;
  font-weight: 700;
  align-items: center;
  gap: 8px 24px;
  padding-top: clamp(24px, 2.5vw, 40px);
  padding-bottom: clamp(24px, 2.5vw, 40px);
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.p_archive__link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  scale: 0 1;
  background-color: #E60044;
  transition: inherit;
  transform-origin: left;
}
.p_archive__link:hover {
  opacity: 1;
}
.p_archive__link:hover::before {
  scale: 1 1;
}
@media screen and (min-width: 601px) {
  .p_archive__link {
    padding-left: 16px;
    padding-right: clamp(48px, 3.5vw, 56px);
  }
}
@media screen and (max-width: 600px) {
  .p_archive__link {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p_archive__ico {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-90deg);
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 600px) {
  .p_archive__ico {
    display: none;
  }
}

.p_archive__lead {
  font-size: inherit;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 501px) {
  .p_archive__lead {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 500px) {
  .p_archive__lead {
    -webkit-line-clamp: 1;
  }
}

/* flex型 */
.p_archive__side {
  display: flex;
  align-items: flex-start;
  gap: 24px 40px;
  box-sizing: border-box;
}
.p_archive__side + .p_archive__side {
  margin-top: clamp(60px, 5vw, 80px);
  padding-top: clamp(60px, 5vw, 80px);
  border-top: 1px solid #ddd;
}

.p_archive__side___pic {
  display: block;
  max-width: 400px;
  overflow: clip;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_archive__side___pic {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_archive__side___pic {
    transition-duration: 300ms;
  }
}
.p_archive__side___pic {
  width: 100%;
  height: auto;
  aspect-ratio: 1.3333333333;
}
.p_archive__side___pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: inherit;
}
.p_archive__side___pic:hover {
  opacity: 1;
}
.p_archive__side___pic:hover img {
  scale: 1.1;
}

.p_archive__side___inner {
  display: block;
  flex: 1;
}

.p_archive__side___lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
}

.p_archive__side___link {
  display: inline-block;
  font-size: inherit;
}

/* grid型 */
.p_post__card {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
}
@media screen and (min-width: 501px) {
  .p_post__card {
    gap: 40px;
  }
}
@media screen and (min-width: 501px) and (min-width: 1001px) {
  .p_post__card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .p_post__card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .p_post__card {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.p_post__card___link {
  opacity: 1;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .p_post__card___link {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .p_post__card___link {
    transition-duration: 300ms;
  }
}
.p_post__card___link:hover {
  opacity: 1;
}

.p_post__card___pic {
  display: block;
  transition: inherit;
  border-radius: 0px;
  overflow: clip;
  width: 100%;
  height: auto;
  aspect-ratio: 1.3333333333;
}
.p_post__card___pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: inherit;
}
.p_post__card___pic:hover {
  opacity: 1;
}
.p_post__card___pic:hover img {
  scale: 1.1;
}
.p_post__card___pic {
  background-color: #f3f3f3;
}

.p_post__card___inner {
  margin-top: clamp(10px, 1vw, 16px);
}

.p_post__card___info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p_single__block___head {
  margin-bottom: clamp(32px, 3vw, 48px);
}

.p_single__block___time {
  display: block;
  margin-bottom: clamp(16px, 1.5vw, 24px);
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1;
}

.p_single__block___lead {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
}

.p_single__block___image {
  display: block;
  margin-bottom: clamp(32px, 2.5vw, 40px);
}
.p_single__block___image img {
  display: block;
  width: 100%;
  height: auto;
}

.p_single__block___inner a {
  color: #02417A;
  text-decoration: underline;
}

.p_found__head {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  margin-bottom: clamp(40px, 3.5vw, 56px);
}

.p_found__caption {
  display: block;
  line-height: 2;
}
.p_found__caption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.p_found__caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p_found__caption {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
}

.p_found__label {
  font-size: inherit;
  line-height: 2;
}
.p_found__label::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.p_found__label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}

.p_found__menu {
  margin-top: clamp(32px, 4vw, 64px);
}
@media screen and (min-width: 901px) {
  .p_found__menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.p_found__menu ul .sub-menu,
.p_found__menu ul .children {
  display: none !important;
}
@media screen and (min-width: 901px) {
  .p_found__menu li {
    line-height: 1;
    padding-left: clamp(24px, 2vw, 32px);
    padding-right: clamp(24px, 2vw, 32px);
  }
  .p_found__menu li + li {
    border-left: 1px solid rgba(0, 0, 0, 0.3);
  }
}
.p_found__menu a {
  display: block;
  font-weight: 600;
  line-height: 1;
}
.p_found__menu a span {
  display: none;
}
@media screen and (max-width: 900px) {
  .p_found__menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
  }
  .p_found__menu a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.p_found__btn {
  margin-top: clamp(48px, 3.5vw, 56px);
}/*# sourceMappingURL=common.css.map */