@charset "UTF-8";
@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=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Special+Gothic+Expanded+One&display=swap");
:root {
  /* custom color */
  --black: #000;
  --white: #fff;
  --kous-black: #333;
  --gray: #ddd;
  --blue: blue;
  --main_blue: #00aaf2;
  --dark_blue: #0068b7;
  --lightblue_bg: #f1f6f8;
  --border: #C9C9C9;
  --border_blue: #CED2D6;
  --time_color: #BBBCBE;
  /* template color */
  --main-color: var(--kous-black);
  --main-bg-color: var(--white);
  --main-border-color: #e1e1e1;
  /* footer */
  --footer-menu-border: var(--gray);
  --copyright-bg: var(--white);
  --copyright-color: var(--kous-black);
  /* hamburger menu */
  --hamburger-trigger-bg: var(--kous-black);
  --hamburger-trigger-bar: var(--white);
  --hamburger-bg: var(--dark_blue);
  --hamburger-border: var(--white);
  --hamburger-color: var(--white);
  /* pagenavi */
  --pagenavi-navi-bg: var(--blue);
  --pagenavi-navi-border: var(--white);
  /* contact page Navi*/
  --form-page-tab: #F1F6F8;
  --form-tab-border: transparent;
  --form-tab-line: #173F92;
  --form-page-active: #00AAF2;
  --form-active-color: var(--white);
  /* policy */
  --policy-dt-color: var(--kous-black);
  --policy-link-color: var(--dark_blue);
  /* 404 */
  --404-h1_color: var(--kous-black);
  --404-p_color: #C9C9C9;
  --404-menu-border: #C9C9C9;
}

/* form */
.mw_wp_form {
  --form-bg-color: #F1F6F8;
  --form-white: var(--white);
  --form-red: #c50000;
  --form-gray: #999999;
  --form-border: #cccccc;
  --form-policy-linkcolor: var(--dark_blue);
  --form-go-bg: var(--dark_blue);
  --form-go-color: var(--white);
  --form-back-bg: var(--dark_blue);
}

:root {
  font-size: 16px;
}

.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
}

.disp__only {
  display: none;
}
@media screen and (max-width: 900px) {
  .disp__only.--mobile {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .disp__only.--sp {
    display: block;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex._fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .flex._fdr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

body {
  color: var(--main-color);
  background: var(--white);
  font-weight: 500;
  font-family: "IBM Plex Sans JP", sans-serif;
  padding-top: clamp(68px, 10vw, 120px);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1280px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 900px) {
  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;
  }
}
@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;
  }
}
p,
th,
td,
li,
dt,
dd,
address {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
  line-height: 2;
  font-style: normal;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a.link {
  text-decoration: underline;
  display: inline;
}
a:hover {
  opacity: 0.6;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (min-width: 901px) {
  a[href^=tel] {
    pointer-events: none;
  }
}

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

.text-center {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .text-center {
    text-align: left;
  }
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

pre {
  padding: 30px 40px;
  background: #c71585;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  position: relative;
  z-index: 0;
}

.cm-style {
  overflow: clip;
}

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

.image--inline {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
}

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

th,
td {
  padding: 32px 20px;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  text-align: left;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
  border-bottom: 1px solid var(--border);
  line-height: 1.75;
}
@media screen and (max-width: 900px) {
  th,
  td {
    display: block;
    border: none;
    padding: 24px 0;
  }
}

th {
  width: 240px;
  border-bottom: 1px solid var(--main_blue);
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  th {
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: none;
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 900px) {
  td {
    padding-top: 0;
  }
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding-right: 40px;
  padding-left: 40px;
  overflow: clip;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.container._of {
  overflow: visible;
}
@media screen and (max-width: 450px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.over--left {
  width: auto;
  max-width: none;
  margin-left: calc((100vw - 1600px) / 2);
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .over--left .image {
    margin-right: -40px;
  }
}
@media screen and (max-width: 450px) {
  .over--left .image {
    margin-right: -20px;
  }
}

.over--right {
  width: auto;
  max-width: none;
  margin-right: calc((100vw - 1600px) / 2);
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .over--right .image {
    margin-left: -40px;
  }
}
@media screen and (max-width: 450px) {
  .over--right .image {
    margin-left: -20px;
  }
}

@media screen and (max-width: 1280px) {
  .over--left,
  .over--right {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 450px) {
  .over--left,
  .over--right {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.flickWrap {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .flickWrap {
    padding: 5px 0;
    overflow: auto;
    white-space: nowrap;
  }
  .flickWrap::before {
    margin-bottom: 20px;
    color: #f55;
    font-size: clamp(0.75rem, 1.5555555556vw, 0.875rem);
    content: "※表が見切れる場合は横スクロールでご覧ください。";
  }
  .flickWrap::-webkit-scrollbar {
    height: 5px;
  }
  .flickWrap::-webkit-scrollbar-track, .flickWrap::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

@media screen and (max-width: 900px) {
  .activeNav {
    height: 100%;
    overflow: hidden;
  }
}
.lazy {
  opacity: 0;
  position: relative;
  -webkit-transform: translate(0%, 50px);
          transform: translate(0%, 50px);
}
.lazy.--show {
  opacity: 1;
}

.lazy-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 901px) {
  .swap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.cm-wrapper {
  margin-top: 80px;
}

.cm-headline {
  margin-bottom: 32px;
}
.cm-headline h2 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
}
.cm-headline small {
  font-size: clamp(0.875rem, 1.7777777778vw, 1rem);
}

.cm-caption {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  margin-bottom: 20px;
}

.cm-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 72px;
}

@media screen and (min-width: 901px) {
  .cm-column_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.cm-column_pic {
  width: 33.3333333333%;
}

.cm-column_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cm-grid_column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 32px;
}

.cm-grid_column > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.cm-grid_column > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.cm-grid_column > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

/* .cm-grid_area{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 16px;
}
.cm-grid-content{
    &:nth-child(6n + 1){
        grid-row: 1 / 3;
        grid-column: 1;
    }
    &:nth-child(6n + 2){
        grid-row: 1;
        grid-column: 2;
    }
    &:nth-child(6n + 3){
        grid-row: 2;
        grid-column: 2;
    }
    &:nth-child(6n + 4){
        grid-row: 3 / 5;
        grid-column: 2;
    }
    &:nth-child(6n + 5){
        grid-row: 3;
        grid-column: 1;
    }
    &:nth-child(6n + 6){
        grid-row: 4;
        grid-column: 1;
    }
} */
.cm-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(80px, 13.3333333333vw, 120px);
  text-align: center;
}
.cm-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(0.8125rem, 1.6666666667vw, 0.9375rem);
  font-weight: 700;
  color: var(--kous-black);
}
.cm-list .pages {
  display: none;
}

.cm-list_archive {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cm-list_archive .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.cm-list_archive a,
.cm-list_archive span {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(32px, 4vw, 36px);
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(0.9375rem, 2.2222222222vw, 1.25rem);
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: none !important;
  box-sizing: border-box;
}
.cm-list_archive a:hover,
.cm-list_archive span:hover {
  opacity: 1;
  color: var(--white);
  background-color: #2260AA;
}
.cm-list_archive a.previouspostslink,
.cm-list_archive span.previouspostslink {
  width: 9px;
  height: 16px;
  color: transparent;
  position: relative;
  border: none;
  border-radius: 0;
}
.cm-list_archive a.previouspostslink::before,
.cm-list_archive span.previouspostslink::before {
  content: "";
  background: url("../images/icon/arr_prev-gray.png") no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cm-list_archive a.previouspostslink:hover,
.cm-list_archive span.previouspostslink:hover {
  background: transparent;
}
.cm-list_archive a.previouspostslink:hover::before,
.cm-list_archive span.previouspostslink:hover::before {
  -webkit-filter: brightness(0) saturate(100%) invert(29%) sepia(79%) saturate(631%) hue-rotate(174deg) brightness(99%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(29%) sepia(79%) saturate(631%) hue-rotate(174deg) brightness(99%) contrast(96%);
}
.cm-list_archive a.nextpostslink,
.cm-list_archive span.nextpostslink {
  width: 9px;
  height: 16px;
  color: transparent;
  position: relative;
  border: none;
  border-radius: 0;
}
.cm-list_archive a.nextpostslink::after,
.cm-list_archive span.nextpostslink::after {
  content: "";
  background: url("../images/icon/arr_next-gray.png") no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cm-list_archive a.nextpostslink:hover,
.cm-list_archive span.nextpostslink:hover {
  background: transparent;
}
.cm-list_archive a.nextpostslink:hover::after,
.cm-list_archive span.nextpostslink:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(29%) sepia(79%) saturate(631%) hue-rotate(174deg) brightness(99%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(29%) sepia(79%) saturate(631%) hue-rotate(174deg) brightness(99%) contrast(96%);
}
.cm-list_archive img {
  display: block;
  width: 8px;
}
.cm-list_archive .current {
  color: var(--white);
  background-color: #2260AA;
}
.cm-list_archive .previouspostslink img {
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.cm-list_archive .nextpostslink img {
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}

.cm-list_single {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cm-list_single [class*=cm-list] {
  min-width: 55px;
}

.cm-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 64px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  margin-top: 56px;
}
.cm-btn:hover {
  opacity: 1;
}

.cm-btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 240px;
  height: auto;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  line-height: 56px;
  font-weight: 700;
  color: var(--kous-black);
  background-color: var(--gray);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

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

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

.swipe {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .swipe._w::before {
    background-image: url(../images/svg_swipe-w.svg) !important;
  }
}
@media screen and (max-width: 900px) {
  .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;
    -webkit-animation: 2s ease-in-out alternate infinite please__swipe;
            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: var(--gray);
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: -1;
    -webkit-animation: none;
            animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    white-space: nowrap;
  }
}

@-webkit-keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
/* Objects */
.p-archive h2 {
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  margin-bottom: 10px;
}

.p-about-us_bg {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), color-stop(15%, var(--white)), color-stop(15%, var(--lightblue_bg)), to(var(--lightblue_bg)));
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 15%, var(--lightblue_bg) 15%, var(--lightblue_bg) 100%);
  padding-bottom: clamp(64px, 12.5vw, 160px);
}
.p-about-us_ch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(32px, 4.375vw, 56px);
}
@media screen and (max-width: 900px) {
  .p-about-us_ch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-us_ch .-lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 901px) {
  .p-about-us_ch .-inner {
    -ms-flex-preferred-size: 59.33%;
        flex-basis: 59.33%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-about-us_ch .-inner h3 {
  font-size: clamp(1.5rem, 3.5555555556vw, 2rem);
  line-height: 1.75;
}
.p-about-us_ch .-inner h3 + p {
  margin-top: clamp(24px, 3.5555555556vw, 32px);
}
.p-about-us_card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 24px;
  margin-top: clamp(56px, 8.125vw, 104px);
}
.p-about-us_card > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-about-us_card > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-about-us_card > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .p-about-us_card {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-us_card .-item {
  position: relative;
  background-color: var(--white);
  padding-top: clamp(88px, 10vw, 128px);
  padding-bottom: clamp(40px, 7.5vw, 96px);
  padding-left: clamp(32px, 3.75vw, 48px);
  padding-right: clamp(32px, 3.75vw, 48px);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-about-us_card .-item:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-about-us_card .-item:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.p-about-us_card .-item:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-about-us_card .-icon {
  position: absolute;
  top: clamp(20px, 1.875vw, 24px);
  right: clamp(20px, 1.875vw, 24px);
  aspect-ratio: 1/1;
  width: 48px;
  height: auto;
}
.p-about-us_card .-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(32px, 5.625vw, 72px);
}
.p-about-us_card .-head h3 {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  line-height: 1;
}
.p-about-us_card .-head span {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.5rem, 3.6666666667vw, 2.0625rem);
  color: var(--main_blue);
  line-height: 1.2;
  word-break: break-all;
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .p-about-us_card .-head {
    margin-bottom: 48px;
  }
  .p-about-us_card .-head span {
    font-size: 24px;
  }
}
.p-about-us_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(48px, 5.625vw, 72px);
  margin-top: clamp(80px, 10vw, 128px);
}
@media screen and (max-width: 900px) {
  .p-about-us_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .p-about-us_flex > figure {
    -ms-flex-preferred-size: 47.33%;
        flex-basis: 47.33%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-about-us_flex > figure {
    width: 100%;
  }
}
.p-about-us_flex .-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-us_flex .-inner h2 + p {
  margin-top: 56px;
}
.p-about-us_flex .-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 56px;
}
.p-about-us_flex + .p-about-us_bnr {
  margin-top: clamp(72px, 6.875vw, 88px);
}
.p-about-us_bnr + .p-about-us_flex {
  margin-top: clamp(120px, 12.5vw, 160px);
}
.p-about-us_bnr a {
  position: relative;
  display: block;
  overflow: hidden;
}
.p-about-us_bnr a > figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark_blue);
}
.p-about-us_bnr a > figure img {
  opacity: 0.3;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  min-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-us_bnr a .-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(8px, 0.78125vw, 10px);
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-about-us_bnr a .-inner p {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--main_blue);
  line-height: 1.2;
}
.p-about-us_bnr a .-inner h2 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  line-height: 1.5;
  color: var(--white);
}
.p-about-us_bnr a .-arrow {
  position: absolute;
  bottom: 16%;
  right: 2.67%;
}
@media (hover: hover) {
  .p-about-us_bnr a:hover {
    opacity: 1;
  }
  .p-about-us_bnr a:hover img {
    scale: 1.1;
    opacity: 0.5;
  }
  .p-about-us_bnr a:hover .c-arrow {
    background-color: var(--main_blue);
  }
  .p-about-us_bnr a:hover .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-about-us_bnr a:hover .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .p-about-us_bnr a:hover .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (hover: none) {
  .p-about-us_bnr a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-about-us_bnr a:active {
    opacity: 1;
  }
  .p-about-us_bnr a:active img {
    scale: 1.1;
    opacity: 0.5;
  }
  .p-about-us_bnr a:active .c-arrow {
    background-color: var(--main_blue);
  }
  .p-about-us_bnr a:active .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-about-us_bnr a:active .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .p-about-us_bnr a:active .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-about-job_ch hgroup {
  text-align: center;
}
@media screen and (max-width: 450px) {
  .p-about-job_ch hgroup {
    text-align: left;
  }
}
.p-about-job_ch hgroup h2 {
  font-size: clamp(1.5rem, 3.5555555556vw, 2rem);
  font-weight: 600;
  line-height: 1.75;
}
.p-about-job_ch hgroup h2 br {
  display: block;
}
@media screen and (max-width: 450px) {
  .p-about-job_ch hgroup h2 br {
    display: none;
  }
}
.p-about-job_ch hgroup h2 + p {
  margin-top: clamp(24px, 3.5555555556vw, 32px);
}
.p-about-job_anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 64px;
  background-color: var(--lightblue_bg);
  margin-top: clamp(72px, 6.25vw, 80px);
  margin-bottom: clamp(72px, 6.25vw, 80px);
  padding: clamp(20px, 1.875vw, 24px);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .p-about-job_anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px;
  }
  .p-about-job_anchor li {
    width: 216px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-about-job_anchor .-arrow {
  position: relative;
  display: block;
  aspect-ratio: 48/24;
  width: 48px;
  height: auto;
  background-color: var(--kous-black);
  border-radius: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-about-job_anchor .-arrow span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  overflow: hidden;
  display: block;
  aspect-ratio: 8/10;
  width: 8px;
  height: auto;
}
.p-about-job_anchor .-arrow span svg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.p-about-job_anchor .-arrow span svg:nth-of-type(2) {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.p-about-job_anchor li {
  line-height: 1.75;
}
.p-about-job_anchor a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-about-job_anchor a b {
  display: block;
  position: relative;
  top: 2px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: inherit;
}
@media (hover: hover) {
  .p-about-job_anchor a:hover {
    opacity: 1;
  }
  .p-about-job_anchor a:hover .-arrow {
    background-color: var(--main_blue);
  }
  .p-about-job_anchor a:hover .-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-about-job_anchor a:hover .-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
  }
  .p-about-job_anchor a:hover .-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (hover: none) {
  .p-about-job_anchor a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-about-job_anchor a:active {
    opacity: 1;
  }
  .p-about-job_anchor a:active .-arrow {
    background-color: var(--main_blue);
  }
  .p-about-job_anchor a:active .-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-about-job_anchor a:active .-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
  }
  .p-about-job_anchor a:active .-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-about-job_block + .p-about-job_block {
  margin-top: clamp(80px, 7.5vw, 96px);
}
.p-about-job_inner {
  background-color: var(--lightblue_bg);
  padding: clamp(40px, 7.5vw, 96px) clamp(20px, 7.5vw, 96px);
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .p-about-job_inner {
    padding-left: clamp(20px, 6.6666666667vw, 30px);
    padding-right: clamp(20px, 6.6666666667vw, 30px);
  }
}
.p-about-job_inner .-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 900px) {
  .p-about-job_inner .-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-job_inner .-head > h2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 901px) {
  .p-about-job_inner .-head > p {
    -ms-flex-preferred-size: 70.6349206349%;
        flex-basis: 70.6349206349%;
  }
}
.p-about-job_inner .-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6px 1fr 6px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 6px;
  margin-top: clamp(40px, 3.75vw, 48px);
}
.p-about-job_inner .-gallery > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-about-job_inner .-gallery > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-about-job_inner .-gallery > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 600px) {
  .p-about-job_inner .-gallery {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-job_inner .-flow {
  margin-top: clamp(56px, 5vw, 64px);
}
.p-about-job_inner .-flow dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(24px, 2.5vw, 32px) clamp(20px, 3.125vw, 40px);
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 901px) {
  .p-about-job_inner .-flow dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 900px) {
  .p-about-job_inner .-flow dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.p-about-job_inner .-flow dl + dl {
  margin-top: 8px;
}
.p-about-job_inner .-flow dt {
  font-weight: 600;
  color: var(--main_blue);
  line-height: 1.5;
}
@media screen and (min-width: 901px) {
  .p-about-job_inner .-flow dt {
    width: 192px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: clamp(20px, 3.5555555556vw, 32px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (min-width: 901px) {
  .p-about-job_inner .-flow dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: clamp(20px, 3.5555555556vw, 32px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: 1px solid var(--border);
    box-sizing: border-box;
  }
}
.p-about-job_inner .-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 5vw, 64px);
}
@media screen and (max-width: 900px) {
  .p-about-job_inner .-side {
    display: block;
  }
  .p-about-job_inner .-side figure {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-about-job_inner .-side .-large + .-text {
    margin-top: clamp(16px, 2.6666666667vw, 24px);
  }
}
.p-about-job_inner .-side._pic {
  margin-top: clamp(56px, 7.1111111111vw, 64px);
}
.p-about-job_inner .-side:not(._pic) {
  position: relative;
  margin-top: clamp(56px, 11.5555555556vw, 104px);
}
@media screen and (min-width: 901px) {
  .p-about-job_inner .-side:not(._pic) .-lead p {
    position: absolute;
    top: -28px;
  }
}
.p-about-job_inner .-side .-large {
  -ms-flex-preferred-size: 49.6031746032%;
      flex-basis: 49.6031746032%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-about-job_inner .-lead p {
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  line-height: 1.2;
  margin-bottom: clamp(12px, 1.7777777778vw, 16px);
}
.p-about-job_inner .-lead h3 {
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  font-weight: 600;
}
.p-about-job_inner .-lead + p {
  margin-top: clamp(16px, 2.6666666667vw, 24px);
}
.p-about-job_inner .-btn {
  margin-top: clamp(40px, 6.2222222222vw, 56px);
}
.p-about-job .-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.p-about-job .-back .-arrow {
  position: relative;
  display: block;
  aspect-ratio: 48/24;
  width: 48px;
  height: auto;
  background-color: var(--kous-black);
  border-radius: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-about-job .-back .-arrow span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  overflow: hidden;
  display: block;
  aspect-ratio: 8/10;
  width: 8px;
  height: auto;
}
.p-about-job .-back .-arrow span svg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.p-about-job .-back .-arrow span svg:nth-of-type(2) {
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
}
.p-about-job .-back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-about-job .-back a b {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
}
@media (hover: hover) {
  .p-about-job .-back a:hover {
    opacity: 1;
  }
  .p-about-job .-back a:hover .-arrow {
    background-color: var(--main_blue);
  }
  .p-about-job .-back a:hover .-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-about-job .-back a:hover .-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  .p-about-job .-back a:hover .-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (hover: none) {
  .p-about-job .-back a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-about-job .-back a:active {
    opacity: 1;
  }
  .p-about-job .-back a:active .-arrow {
    background-color: var(--main_blue);
  }
  .p-about-job .-back a:active .-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-about-job .-back a:active .-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  .p-about-job .-back a:active .-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-person._message {
  background-color: var(--lightblue_bg);
  padding-top: clamp(104px, 12.5vw, 160px);
  padding-bottom: clamp(80px, 12.5vw, 160px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .p-person._message {
    padding-top: clamp(104px, 12.5vw, 160px);
  }
}
.p-person._message .p-person_side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(48px, 5.625vw, 72px);
}
@media screen and (max-width: 900px) {
  .p-person._message .p-person_side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .p-person._message .p-person_side > figure {
    -ms-flex-preferred-size: 34.6666666667%;
        flex-basis: 34.6666666667%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-person._message .p-person_side .-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-person._message .p-person_side > figure img {
  border-radius: 10px;
}
.p-person._message .p-person_side figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  margin-top: clamp(12px, 1.7777777778vw, 16px);
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-person._message .p-person_side figcaption small {
  display: block;
  font-size: clamp(0.875rem, 1.6666666667vw, 0.9375rem);
}
.p-person._message .-inner span {
  display: block;
  margin-bottom: clamp(16px, 1.875vw, 24px);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  line-height: 1.3;
  color: var(--main_blue);
}
.p-person._message .-inner h2 {
  font-size: clamp(1.5rem, 3.5555555556vw, 2rem);
  font-weight: 600;
  line-height: 1.75;
}
.p-person._message .-inner h2 + p {
  margin-top: clamp(24px, 2.5vw, 32px);
}
.p-person._interview {
  margin-top: clamp(120px, 12.5vw, 160px);
}
.p-person._interview .p-person_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(72px, 9.765625vw, 125px);
}
@media screen and (max-width: 900px) {
  .p-person._interview .p-person_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .p-person._interview .p-person_nav {
    -ms-flex-preferred-size: 212px;
        flex-basis: 212px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-person._interview .p-person_nav ul {
    position: sticky;
    top: clamp(64px, 10.625vw, 136px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-person._interview .p-person_nav li + li {
  margin-top: clamp(24px, 3.125vw, 40px);
}
.p-person._interview .p-person_nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: relative;
  padding-left: clamp(32px, 4.4444444444vw, 40px);
}
.p-person._interview .p-person_nav a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(12px, 1.7777777778vw, 16px);
  height: 100%;
  background-color: var(--main_blue);
  border-radius: 60px;
}
.p-person._interview .p-person_nav a .-initial {
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.5rem, 3.3333333333vw, 1.875rem);
  line-height: 1.3;
}
.p-person._interview .p-person_nav a p {
  font-size: clamp(0.875rem, 1.6666666667vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 901px) {
  .p-person._interview .p-person_nav a:not(.is-active) {
    opacity: 0.3;
  }
}
@media (hover: hover) {
  .p-person._interview .p-person_nav a:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .p-person._interview .p-person_nav a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-person._interview .p-person_nav a:active {
    opacity: 1;
  }
}
.p-person._interview .p-person_contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-person._interview .p-person_wrap + .p-person_wrap {
  margin-top: clamp(120px, 11.25vw, 144px);
}
.p-person._interview .-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(48px, 4.375vw, 56px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .p-person._interview .-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
.p-person._interview .-head > figure {
  -ms-flex-preferred-size: 42.5925925926%;
      flex-basis: 42.5925925926%;
}
@media screen and (max-width: 600px) {
  .p-person._interview .-head > figure {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-person._interview .-head .-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-person._interview .-head .-inner h2 {
  font-size: clamp(1.125rem, 2.4444444444vw, 1.375rem);
  font-weight: 600;
  line-height: 1.75;
}
.p-person._interview .-head .-inner .-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(12px, 1.25vw, 16px);
  margin-top: clamp(12px, 1.25vw, 16px);
  line-height: 1;
}
.p-person._interview .-head .-inner .-info small {
  font-size: clamp(0.75rem, 1.6666666667vw, 0.9375rem);
  font-weight: 400;
}
.p-person._interview .-head .-inner .-info span {
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.5rem, 3.3333333333vw, 1.875rem);
}
.p-person._interview .-head .-inner .-btn {
  margin-top: clamp(32px, 3.75vw, 48px);
}
.p-person._interview dl {
  margin-top: 56px;
}
.p-person._interview dl dt {
  position: relative;
  padding-left: clamp(32px, 3.4375vw, 44px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
}
.p-person._interview dl dt::before {
  content: "Q.";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -6px;
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}
.p-person._interview dl dt + dd {
  margin-top: clamp(24px, 2.5vw, 32px);
}
.p-person._interview dl dd .-imgs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
  margin-top: clamp(40px, 4.375vw, 56px);
}
.p-person._interview dl dd .-imgs > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-person._interview dl dd .-imgs > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 600px) {
  .p-person._interview dl dd .-imgs {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-person._interview dl dd + dt {
  margin-top: clamp(48px, 4.375vw, 56px);
}
.p-person._interview .-message {
  background-color: var(--lightblue_bg);
  border-radius: 10px;
  margin-top: 56px;
  padding: clamp(40px, 3.75vw, 48px) clamp(24px, 4.375vw, 56px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-person._interview .-message span {
  display: block;
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.2;
}
.p-person._interview .-message span + p {
  margin-top: 16px;
}
.p-person .-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
@media screen and (min-width: 901px) {
  .p-person .-back {
    display: none;
  }
}
.p-person .-back .-arrow {
  position: relative;
  display: block;
  aspect-ratio: 48/24;
  width: 48px;
  height: auto;
  background-color: var(--kous-black);
  border-radius: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-person .-back .-arrow span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  overflow: hidden;
  display: block;
  aspect-ratio: 8/10;
  width: 8px;
  height: auto;
}
.p-person .-back .-arrow span svg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.p-person .-back .-arrow span svg:nth-of-type(2) {
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
}
.p-person .-back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-person .-back a b {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
}
@media (hover: hover) {
  .p-person .-back a:hover {
    opacity: 1;
  }
  .p-person .-back a:hover .-arrow {
    background-color: var(--main_blue);
  }
  .p-person .-back a:hover .-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-person .-back a:hover .-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  .p-person .-back a:hover .-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (hover: none) {
  .p-person .-back a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-person .-back a:active {
    opacity: 1;
  }
  .p-person .-back a:active .-arrow {
    background-color: var(--main_blue);
  }
  .p-person .-back a:active .-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-person .-back a:active .-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  .p-person .-back a:active .-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-culture + .p-culture {
  margin-top: clamp(96px, 10vw, 128px);
}
.p-culture_ch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(72px, 8.125vw, 104px);
}
@media screen and (max-width: 900px) {
  .p-culture_ch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-culture_ch .-lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 901px) {
  .p-culture_ch .-inner {
    -ms-flex-preferred-size: 59.3333333333%;
        flex-basis: 59.3333333333%;
  }
}
.p-culture_imgs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(24px, 3.75vw, 48px) 1fr clamp(24px, 3.75vw, 48px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(24px, 3.75vw, 48px);
}
.p-culture_imgs > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-culture_imgs > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-culture_imgs > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .p-culture_imgs {
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
}
.p-culture_imgs p {
  margin-top: clamp(16px, 2.6666666667vw, 24px);
  font-size: clamp(0.75rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
}

.p-requirements._l .c-title_lower {
  margin-bottom: clamp(56px, 5vw, 64px);
}
.p-requirements._l .p-requirements_sec + .p-requirements_sec {
  margin-top: clamp(120px, 10.3125vw, 132px);
}
.p-requirements._l .p-requirements_sec._requirements li + li {
  margin-top: 20px;
}
.p-requirements._l .p-requirements_sec._requirements a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: clamp(20px, 1.875vw, 24px);
  padding-left: clamp(22px, 3.1111111111vw, 28px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--lightblue_bg);
  border-radius: 10px;
}
.p-requirements._l .p-requirements_sec._requirements a p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-requirements._l .p-requirements_sec._requirements a span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  .p-requirements._l .p-requirements_sec._requirements a:hover {
    opacity: 1;
    background-color: var(--main_blue);
    color: var(--white);
  }
  .p-requirements._l .p-requirements_sec._requirements a:hover .c-arrow {
    background-color: var(--main_blue);
  }
  .p-requirements._l .p-requirements_sec._requirements a:hover .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-requirements._l .p-requirements_sec._requirements a:hover .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .p-requirements._l .p-requirements_sec._requirements a:hover .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-requirements._l .p-requirements_sec._requirements a:hover .-arrow {
    background-color: var(--white);
  }
  .p-requirements._l .p-requirements_sec._requirements a:hover .-arrow span path {
    fill: var(--kous_black);
  }
}
@media (hover: none) {
  .p-requirements._l .p-requirements_sec._requirements a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-requirements._l .p-requirements_sec._requirements a:active {
    opacity: 1;
    background-color: var(--main_blue);
    color: var(--white);
  }
  .p-requirements._l .p-requirements_sec._requirements a:active .c-arrow {
    background-color: var(--main_blue);
  }
  .p-requirements._l .p-requirements_sec._requirements a:active .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-requirements._l .p-requirements_sec._requirements a:active .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .p-requirements._l .p-requirements_sec._requirements a:active .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-requirements._l .p-requirements_sec._requirements a:active .-arrow {
    background-color: var(--white);
  }
  .p-requirements._l .p-requirements_sec._requirements a:active .-arrow span path {
    fill: var(--kous_black);
  }
}
.p-requirements._l .p-requirements_sec._flow ol {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 48px;
}
.p-requirements._l .p-requirements_sec._flow ol > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-requirements._l .p-requirements_sec._flow ol > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-requirements._l .p-requirements_sec._flow ol > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .p-requirements._l .p-requirements_sec._flow ol {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }
}
.p-requirements._l .p-requirements_sec._flow li {
  counter-increment: mycounter;
}
.p-requirements._l .p-requirements_sec._flow p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: clamp(16px, 2.2222222222vw, 20px);
  line-height: 1.5;
}
.p-requirements._l .p-requirements_sec._flow p b {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}
.p-requirements._l .p-requirements_sec._flow p::before {
  content: counter(mycounter, decimal-leading-zero) ".";
  display: block;
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.125rem, 2.6666666667vw, 1.5rem);
}
.p-requirements._s h2 {
  margin-bottom: clamp(56px, 5vw, 64px);
}
.p-requirements._s .-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(80px, 9.375vw, 120px);
}
.p-requirements._s .-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(32px, 3.125vw, 40px);
}
.p-requirements._s .-back a {
  color: var(--dark_blue);
  text-decoration: underline;
}
@media screen and (min-width: 901px) {
  .p-requirements._s table tr:first-of-type th,
  .p-requirements._s table tr:first-of-type td {
    padding-top: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-requirements._s table tr:last-of-type td {
    border-bottom: 1px solid var(--border);
  }
}

.p-infographic_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 18px;
}

.p-infographic_list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.p-infographic_list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 450px) {
  .p-infographic_list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-infographic_item {
  background-color: var(--lightblue_bg);
  border-radius: 10px;
  overflow: hidden;
}
.p-infographic_item .-head {
  width: 100%;
  max-width: 336px;
  padding-top: clamp(12px, 1.6666666667vw, 15px);
  padding-bottom: clamp(10px, 1.3333333333vw, 12px);
  padding-left: clamp(16px, 2.6666666667vw, 24px);
  padding-right: clamp(16px, 2.6666666667vw, 24px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--white);
  background-color: var(--dark_blue);
  border-bottom-right-radius: 10px;
  font-size: clamp(1rem, 2.2222222222vw, 1.25rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-infographic_item .-head {
    max-width: 90%;
  }
}
.p-infographic_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding-top: clamp(20px, 2.6666666667vw, 24px);
  padding-left: clamp(20px, 5.3333333333vw, 48px);
  padding-right: clamp(20px, 5.3333333333vw, 48px);
  padding-bottom: clamp(32px, 4.4444444444vw, 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .p-infographic_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-infographic_detail > figure {
    max-width: 150px;
  }
}
@media screen and (min-width: 901px) {
  .p-infographic_detail > figure {
    width: clamp(120px, 21.3333333333vw, 192px);
    -ms-flex-preferred-size: 38.7878787879%;
        flex-basis: 38.7878787879%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-infographic_detail .-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-infographic .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-infographic .num {
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  line-height: 1.5;
}
.p-infographic .num_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main_blue);
  font-family: "Special Gothic Expanded One", sans-serif;
  line-height: 1.5;
  font-size: clamp(3rem, 7.5555555556vw, 4.25rem);
}
.p-infographic .num._big {
  font-size: clamp(3rem, 7.5555555556vw, 4.25rem);
}
.p-infographic .num._middle {
  font-size: clamp(2.5rem, 5.3333333333vw, 3rem);
}
.p-infographic .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
}
.p-infographic .-text {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
}
.p-infographic .-text + .-text {
  margin-top: clamp(6px, 0.8888888889vw, 8px);
}
.p-infographic .txt_before {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}
.p-infographic .txt_after {
  font-size: clamp(1.125rem, 3.5555555556vw, 2rem);
  font-weight: 600;
}
.p-infographic .txt_after._middle {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
}

.p-contact h2 {
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  margin-bottom: 10px;
}
.p-contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 829px) {
  .p-contact_list {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_list {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.p-contact_tab {
  position: relative;
  width: 296px;
  color: var(--main-color);
  background: var(--form-page-tab);
  text-align: center;
  border: 1px solid var(--form-tab-border);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 700;
}
.p-contact_tab.active {
  color: var(--form-active-color);
  background: var(--form-page-active);
}
@media screen and (min-width: 829px) {
  .p-contact_tab {
    line-height: 54px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_tab {
    line-height: 34px;
  }
}
.p-contact_count {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 829px) {
  .p-contact_count {
    left: 16px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_count {
    left: 8px;
  }
}
.p-contact_line {
  display: block;
  height: 1px;
  background: var(--form-tab-line);
}
@media screen and (min-width: 829px) {
  .p-contact_line {
    width: 72px;
    -ms-flex-preferred-size: 72px;
        flex-basis: 72px;
  }
}
@media screen and (max-width: 828px) {
  .p-contact_line {
    width: 20px;
    -ms-flex-preferred-size: 20px;
        flex-basis: 20px;
  }
}

.p-policy dd {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
}
.p-policy dd a.link {
  color: var(--policy-link-color);
}
.p-policy dd + dt {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  color: var(--policy-dt-color);
  font-weight: 600;
  line-height: 2;
  margin-top: clamp(25px, 5.5555555556vw, 50px);
  margin-bottom: clamp(8px, 1.7777777778vw, 16px);
}
.p-policy dd + dt::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
.p-policy dd + dt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.p-policy li {
  position: relative;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  padding-left: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-policy li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.p-notfound_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(40px, 4.375vw, 56px);
}
.p-notfound_head p {
  color: var(--404-p_color);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 1.3;
}
.p-notfound_head h1 {
  color: var(--404-h1_color);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}
.p-notfound_menu {
  margin-top: clamp(40px, 4.375vw, 56px);
}
.p-notfound_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .p-notfound_menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}
.p-notfound_menu li {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 600;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .p-notfound_menu li {
    padding: 0;
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .p-notfound_menu li + li {
    border-left: 1px solid var(--404-menu-border);
  }
}
@media screen and (max-width: 900px) {
  .p-notfound_menu li + li {
    border-top: 1px solid var(--404-menu-border);
  }
}
.p-notfound_menu a {
  display: block;
  font-size: inherit;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-notfound_menu a {
    padding: 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (hover: hover) {
  .p-notfound_menu a:hover {
    opacity: 1;
    color: var(--dark_blue);
  }
}
@media (hover: none) {
  .p-notfound_menu a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-notfound_menu a:active {
    opacity: 1;
    color: var(--dark_blue);
  }
}
.p-notfound_txt {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  line-height: 2;
}
.p-notfound_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(80px, 9.375vw, 120px);
}

.p-news._l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(48px, 5.625vw, 72px);
  padding-bottom: clamp(72px, 6.25vw, 80px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid var(--border_blue);
}
.p-news._l + .p-news._l {
  margin-top: clamp(72px, 6.25vw, 80px);
}
@media screen and (max-width: 900px) {
  .p-news._l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-news._l .p-news_pic {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 901px) {
  .p-news._l .p-news_pic {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-news._l .p-news_text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-news._l .p-news_pic {
  aspect-ratio: 480/344;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-news._l .p-news_pic img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.p-news._l .p-news_pic.is-cover img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news._l .p-news_pic.is-contain {
  background-color: var(--lightblue_bg);
}
.p-news._l .p-news_pic.is-contain img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (hover: hover) {
  .p-news._l .p-news_pic:hover {
    opacity: 1;
  }
  .p-news._l .p-news_pic:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .p-news._l .p-news_pic {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-news._l .p-news_pic:active {
    opacity: 1;
  }
  .p-news._l .p-news_pic:active img {
    scale: 1.05;
  }
}
.p-news._l time {
  display: block;
  color: var(--time_color);
}
.p-news._l h2 {
  margin-top: clamp(20px, 2.6666666667vw, 24px);
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  font-weight: 600;
}
.p-news._l h2 + p {
  margin-top: clamp(32px, 4.4444444444vw, 40px);
}
.p-news._l .p-news_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (hover: hover) {
  .p-news._l .p-news_text:hover {
    opacity: 1;
  }
  .p-news._l .p-news_text:hover .c-arrow {
    background-color: var(--main_blue);
  }
  .p-news._l .p-news_text:hover .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-news._l .p-news_text:hover .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .p-news._l .p-news_text:hover .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (hover: none) {
  .p-news._l .p-news_text {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .p-news._l .p-news_text:active {
    opacity: 1;
  }
  .p-news._l .p-news_text:active .c-arrow {
    background-color: var(--main_blue);
  }
  .p-news._l .p-news_text:active .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-news._l .p-news_text:active .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .p-news._l .p-news_text:active .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-news._s {
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
}
.p-news._s .p-news_pic {
  margin-bottom: clamp(40px, 3.75vw, 48px);
}
.p-news._s .p-news_pic figure {
  aspect-ratio: 864/619;
  width: 100%;
  height: 100%;
}
.p-news._s .p-news_pic img {
  width: 100%;
  height: 100%;
}
.p-news._s .p-news_pic .is-cover img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news._s .p-news_pic .is-contain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-news._s time {
  display: block;
  margin-bottom: clamp(8px, 1.7777777778vw, 16px);
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 400;
  line-height: 1;
  color: var(--time_color);
}
.p-news._s h2 {
  padding-bottom: clamp(24px, 3.5555555556vw, 32px);
  margin-bottom: clamp(40px, 6.2222222222vw, 56px);
  border-bottom: 1px solid #D4D8DB;
  font-size: clamp(1.25rem, 2.6666666667vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
}
.p-news._s .p-news_inner {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 500;
}
.p-news._s .p-news_inner a {
  text-decoration: underline;
  color: var(--dark_blue);
}
.p-news._s .p-news_btn {
  margin-top: clamp(80px, 13.3333333333vw, 120px);
  padding-top: clamp(24px, 3.5555555556vw, 32px);
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-news._s .p-news_prev,
.p-news._s .p-news_next {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
}
.p-news._s .p-news_prev a,
.p-news._s .p-news_next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.p-news._s .p-news_prev a b,
.p-news._s .p-news_next a b {
  font-size: clamp(0.875rem, 1.6666666667vw, 0.9375rem);
  font-weight: 600;
  line-height: 1;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-news._s .p-news_prev a span,
.p-news._s .p-news_next a span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  aspect-ratio: 9/16;
  width: 9px;
  height: 16px;
}
.p-news._s .p-news_prev a span svg,
.p-news._s .p-news_next a span svg {
  width: 100%;
  height: 100%;
}
.p-news._s .p-news_prev a span svg path,
.p-news._s .p-news_next a span svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-news._s .p-news_prev a:hover,
.p-news._s .p-news_next a:hover {
  opacity: 1;
}
.p-news._s .p-news_prev a:hover b,
.p-news._s .p-news_next a:hover b {
  color: var(--dark_blue);
}
.p-news._s .p-news_prev a:hover span svg path,
.p-news._s .p-news_next a:hover span svg path {
  fill: var(--dark_blue);
}
.p-news._s .p-news_back {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-news._s .p-news_back a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-news._s .p-news_back a:hover {
  opacity: 1;
  color: var(--dark_blue);
}