@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを16px→18pxに設定（解像度基準1300） */
  font-size: clamp(1rem, 1.23vw, 1.6rem);
  font-size: clamp(1rem, 1.38vw, 1.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333;
  text-align: justify;
  line-height: 1.944;
  text-wrap: pretty;
}
@media screen and (max-width: 959px) {
  body {
    /* bodyの基本サイズを16pxに設定（解像度基準768） */
    font-size: clamp(1rem, 1.9vw, 1.5rem);
  }
}
@media screen and (max-width: 519px) {
  body {
    /* bodyの基本サイズを14pxに設定（解像度基準375） */
    font-size: clamp(1rem, 3.733vw, 1.4rem);
  }
}

.f-en {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  overflow-x: hidden;
}

.drawer--open {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 134rem; /* コンテンツ幅1300px */
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .l-inner {
    padding: 0 1.5rem;
  }
}

.l-inner--1030 {
  max-width: 1070px;
}

.l-inner--narrow {
  max-width: 98rem;
}

@media screen and (max-width: 959px) {
  .l-inner--tab0 {
    padding: 0;
  }
}

.l-main {
  margin-top: min(8.1vw, 10.1rem);
}
@media screen and (max-width: 959px) {
  .l-main {
    margin-top: 7.9vw;
  }
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 14.3vw;
  }
}

/* component
------------------------------------------------ */
.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 2rem 0 2rem 2rem;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .c-header {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header {
    padding: 1rem 1rem;
  }
}

.c-header__logo {
  width: 28vw;
  max-width: 39.6rem;
}
@media screen and (max-width: 519px) {
  .c-header__logo {
    width: 55vw;
  }
}

.c-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  margin-right: 0.5rem;
  padding-bottom: 0.7rem;
}
@media screen and (max-width: 959px) {
  .c-header__nav {
    display: none;
  }
}

.c-header__menu {
  position: relative;
  padding: 0 1.5rem;
}
.c-header__menu::before {
  content: "／";
  position: absolute;
  left: -0.8rem;
}
.c-header__menu:first-child::before {
  display: none;
}

.c-header__hamburger {
  display: none;
  position: fixed;
  top: min(3.1rem, 2.7vw);
  right: min(2.2rem, 1.9vw);
  z-index: 100;
  width: 3.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
@media screen and (max-width: 959px) {
  .c-header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    position: absolute;
    top: 50%;
    right: 1.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.5rem;
    height: auto;
    border: none;
    -webkit-filter: none;
            filter: none;
  }
}

.c-header__hamburger-close {
  position: absolute;
  top: 94%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-weight: 600;
  font-size: 1.15rem;
  opacity: 0;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.c-header__hamburger-border {
  position: relative;
  width: 100%;
  height: 0.2rem;
  background-color: #333;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border {
    width: 100%;
    height: 3px;
  }
}

.c-header__hamburger-border--top {
  top: 0;
}

.c-header__hamburger-border--middle {
  margin: 0.8rem 0;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border--middle {
    margin: 5px 0;
  }
}

.c-header__hamburger-border--bottom {
  bottom: 0;
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: 9.6px;
  -webkit-transform: translate(0%, 0) rotate(-215deg);
          transform: translate(0%, 0) rotate(-215deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--top {
    top: 7.6px;
  }
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  bottom: 9.6px;
  -webkit-transform: translate(0%, 0) rotate(215deg);
          transform: translate(0%, 0) rotate(215deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--bottom {
    bottom: 7.6px;
  }
}
.c-header__hamburger--open .c-header__hamburger-close {
  opacity: 1;
}

.c-header__drawer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease 0;
  transition: all 0.7s ease 0;
}

.c-header__drawer-modal--open {
  opacity: 1;
  visibility: visible;
}

.c-header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 12vw 12vw 5rem;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-color: #fff;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  overflow: hidden scroll;
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    padding: 18vw 3.4rem 2rem;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
  width: min(0.5rem, 1.25vw);
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.c-header__drawer-menus {
  font-size: 1.357em;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .c-header__drawer-menus {
    font-size: 1.28em;
  }
}

.c-header__drawer-menu {
  display: block;
  margin-top: min(1.2rem, 1vw);
}
@media screen and (max-width: 959px) {
  .c-header__drawer-menu {
    margin-top: 0;
    padding: 1.3rem 0;
    font-weight: bold;
    border-bottom: 1px solid #ededed;
  }
}
.c-header__drawer-menu:first-child {
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .c-header__drawer-menu--top {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .c-header__drawer-menu--anchor {
    display: none;
  }
}

.c-header__accordion {
  display: none;
  padding: 1.3rem 0;
  font-weight: bold;
  border-bottom: 1px solid #ededed;
}
@media screen and (max-width: 959px) {
  .c-header__accordion {
    display: block;
  }
}

.c-header__accordion-head {
  position: relative;
}
.c-header__accordion-head span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  aspect-ratio: 1;
  width: 2.5rem;
  height: auto;
  background-color: #003cb4;
  border-radius: 50%;
}
.c-header__accordion-head span::before, .c-header__accordion-head span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-header__accordion-head span::after {
  width: 1px;
  height: 40%;
}

.c-header__accordion-head--open span::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.c-header__accordion-head--open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.c-header__accordion-detail {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-header__accordion-detail ul {
  font-size: 0.88em;
  list-style: none;
  overflow: hidden;
}
.c-header__accordion-detail ul li {
  margin-top: 1.7rem;
}
.c-header__accordion-detail ul li::before {
  content: "—　";
  display: inline-block;
}

.c-header__accordion-detail--open {
  grid-template-rows: 1fr;
}

.c-side {
  position: fixed;
  z-index: 30;
  top: min(9.2vw, 11.5rem);
  right: 0;
  -webkit-transform: translateY(-4.5%);
          transform: translateY(-4.5%);
}
@media screen and (max-width: 959px) {
  .c-side {
    top: 10vw;
  }
}
@media screen and (max-width: 519px) {
  .c-side {
    top: auto;
    bottom: 0;
    z-index: 19;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .c-side__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1px;
  }
}

.c-side__menu {
  display: block;
  margin-top: 1px;
  aspect-ratio: 80/147;
  width: 7.5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: white;
  font-weight: bold;
  letter-spacing: 1.5px;
  background-color: #ff0000;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0 86%, 0 14%);
}
@media screen and (max-width: 959px) {
  .c-side__menu {
    width: 6.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-side__menu {
    margin: 0;
    aspect-ratio: 124/60;
    width: 33.333%;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    background: none;
    background-color: #ff0000;
    /* 角の切り落とし量 */
    --cut: 13px;
    clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%, 0 var(--cut));
  }
}

.c-slide-arrow {
  position: absolute;
  top: calc(50% - 1vw);
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  aspect-ratio: 1;
  width: 3vw;
  max-width: 4rem;
  height: auto;
  background-image: url(../images/common/icon_left_bl.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .c-slide-arrow {
    width: 4vw;
  }
}
@media screen and (max-width: 519px) {
  .c-slide-arrow {
    width: 8vw;
  }
}
.c-slide-arrow:hover, .c-slide-arrow:active {
  opacity: 0.8;
}

.c-slide-arrow--next {
  left: auto;
  right: 0;
  background-image: url(../images/common/icon_right_bl.png);
}

.c-news {
  width: 100%;
  background-image: url(../images/top_new/bg_news.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .c-news {
    background-image: none;
  }
}

.c-news--archive {
  margin-top: 17.5rem;
  background: none;
}
@media screen and (max-width: 959px) {
  .c-news--archive {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 519px) {
  .c-news--archive {
    margin-top: 7rem;
  }
}

.c-news__bg {
  background-color: #fff;
}

.c-news__inner {
  margin: 0 auto;
  padding-bottom: 11.6rem;
  max-width: 94rem;
}
@media screen and (max-width: 519px) {
  .c-news__inner {
    padding-bottom: 10rem;
  }
}

.c-news__head {
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
@media screen and (max-width: 959px) {
  .c-news__head {
    -webkit-transform: none;
            transform: none;
  }
}

.c-news__container {
  margin-top: 5rem;
}
@media screen and (max-width: 519px) {
  .c-news__container {
    margin-top: 4rem;
  }
}

.c-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.3rem;
  background-color: #daedff;
  border-radius: 5rem;
}

.c-news__date {
  position: relative;
  padding: 0.4rem 4.5rem;
  width: 22%;
  color: white;
  font-family: "Noto Serif", serif;
  font-size: 0.95em;
  font-weight: 600;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #003cb4;
  border-radius: 5rem;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 959px) {
  .c-news__date {
    padding: 0.4rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-news__date {
    padding: 0 1rem;
    width: 7.6rem;
    font-size: 0.8em;
    letter-spacing: 0;
  }
}
.c-news__date::after {
  content: "▶";
  position: absolute;
  right: 15%;
}
@media screen and (max-width: 959px) {
  .c-news__date::after {
    display: none;
  }
}

.c-news__title {
  padding-left: 4rem;
  width: 78%;
  font-size: 1em;
  color: #003cb4;
}
@media screen and (max-width: 519px) {
  .c-news__title {
    padding: 0.5rem 1rem;
  }
}
.c-news__title a {
  display: block;
  width: 100%;
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-news__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin: 5rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875em;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-news__more {
    font-size: 1em;
  }
}
.c-news__more img {
  width: 4rem;
}
@media screen and (max-width: 519px) {
  .c-news__more img {
    width: 3.5rem;
  }
}
.c-news__more a {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  width: 4rem;
  height: auto;
  background-image: url(../images/common/icon_right_wh.png);
  background-size: contain;
}
.c-news__more a:hover {
  background-image: url(../images/common/icon_right_blue.png);
  opacity: 1;
}

.c-head01__logo {
  margin-right: 0.5rem;
  width: 6.3rem;
  vertical-align: sub;
}
@media screen and (max-width: 519px) {
  .c-head01__logo {
    margin-right: 0.3rem;
    width: 13vw;
  }
}

.c-head01__en {
  font-family: "Noto Serif", serif;
  font-size: 5.3rem;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-head01__en {
    font-size: 10vw;
    line-height: 1;
  }
}
.c-head01__en::after {
  content: "｜";
  padding-left: 0.8rem;
  font-weight: 400;
  font-size: 0.8em;
  vertical-align: text-top;
}
@media screen and (max-width: 519px) {
  .c-head01__en::after {
    display: none;
    padding-left: 0;
  }
}

.c-head01__title {
  font-size: 2.6rem;
  font-weight: 800;
  vertical-align: text-bottom;
}
@media screen and (max-width: 519px) {
  .c-head01__title {
    display: block;
    font-size: 7vw;
    line-height: 1.5;
  }
}

.c-contactFooter {
  padding: 17rem 0 14rem;
}
@media screen and (max-width: 959px) {
  .c-contactFooter {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .c-contactFooter {
    padding: 10rem 0;
  }
}

.c-contactFooter--page {
  margin-top: 15rem;
  padding-top: 0;
}
@media screen and (max-width: 959px) {
  .c-contactFooter--page {
    margin-top: 12rem;
  }
}

.c-contactFooter-space {
  padding-bottom: 14rem;
}
@media screen and (max-width: 959px) {
  .c-contactFooter-space {
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contactFooter-space {
    padding-bottom: 10rem;
  }
}

.c-contactFooter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
  margin-top: 10rem;
}
@media screen and (max-width: 959px) {
  .c-contactFooter__container {
    gap: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contactFooter__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8rem;
    margin-top: 8rem;
  }
}

.c-contactFooter__card {
  position: relative;
  padding: 4rem 3rem;
  aspect-ratio: 426/267;
  width: calc(50% - 5rem);
  height: auto;
  text-align: center;
  background-color: #fbf7ef;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-contactFooter__card {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .c-contactFooter__card {
    width: 100%;
  }
}

.c-contactFooter__icon {
  width: 6.3rem;
}

.c-contactFooter__title {
  margin-top: 1.5rem;
  font-size: 1.68em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-contactFooter__title {
    font-size: 1.6em;
  }
}

.c-contactFooter__tel {
  color: #003cb4;
  font-size: 2.4em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-contactFooter__tel {
    font-size: 2em;
  }
}

.c-contactFooter__form {
  margin-top: 2.3rem;
  padding: 0.3rem 4rem;
  font-size: 1.12em;
  font-weight: bold;
  border: 1px solid #003cb4;
  border-radius: 5rem;
}
.c-contactFooter__form:hover {
  color: white;
  background-color: #003cb4;
  opacity: 1;
}

.c-footer__bg {
  background-color: #fbf7ef;
}

.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  margin: 0 auto;
  padding: 10rem 2rem;
  max-width: 139rem;
  background-color: #fbf7ef;
}
@media screen and (max-width: 1200px) {
  .c-footer__container {
    gap: 3vw;
  }
}
@media screen and (max-width: 959px) {
  .c-footer__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem 3vw;
    padding: 8rem 2rem;
  }
}

.c-footer__brand {
  width: 37.5rem;
  max-width: 100%;
}
@media screen and (max-width: 959px) {
  .c-footer__brand {
    width: 43vw;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__brand {
    width: 37rem;
  }
}

.c-footer__addr {
  padding-left: 28%;
  margin-top: 0.1rem;
  font-size: 0.66em;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 959px) {
  .c-footer__addr {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__addr {
    font-size: 0.93em;
  }
}
@media screen and (max-width: 230px) {
  .c-footer__addr {
    white-space: wrap;
  }
}

.c-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 1200px) {
  .c-footer__nav {
    gap: 2vw;
  }
}
@media screen and (max-width: 959px) {
  .c-footer__nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem 1rem;
  }
}

.c-footer__nav-wrap {
  font-size: 1.12em;
  font-weight: bold;
  list-style: none;
  white-space: nowrap;
}
@media screen and (max-width: 959px) {
  .c-footer__nav-wrap {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__nav-wrap {
    width: calc(50% - 0.5rem);
    white-space: initial;
  }
}
.c-footer__nav-wrap ul {
  font-size: 0.85em;
  font-weight: 400;
  list-style: none;
  line-height: 1.6;
}

.c-footer__nav-wrap--small {
  font-size: 0.812em;
  font-weight: 400;
}

.c-footer__copyright {
  padding: 0.6rem 1rem;
  width: 100%;
  color: white;
  font-size: 0.875em;
  text-align: center;
  background-color: #003cb4;
}

.c-pagetop {
  position: fixed;
  z-index: 30;
  bottom: 2rem;
  right: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 519px) {
  .c-pagetop {
    bottom: 19vw;
    right: 1rem;
    font-size: 1.2rem;
  }
}
.c-pagetop img {
  margin-bottom: 1rem;
  width: 1.5rem;
  vertical-align: initial;
}
@media screen and (max-width: 519px) {
  .c-pagetop img {
    margin-bottom: 0.8rem;
    width: 1.3rem;
  }
}

.c-case {
  padding: 20rem 0 35rem;
}
@media screen and (max-width: 959px) {
  .c-case {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .c-case {
    padding: 10rem 0;
  }
}

.c-case--page {
  margin-top: 7.5rem;
  padding: 0;
}

.c-case--list {
  padding: 0;
}

.c-case__head {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #003cb4;
  font-size: 2.18em;
  font-weight: bold;
  letter-spacing: 1rem;
  border: 3px solid #003cb4;
  border-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .c-case__head {
    letter-spacing: 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-case__head {
    width: 100%;
    font-size: 1.6em;
    letter-spacing: 0;
  }
}
.c-case__head span {
  display: inline-block;
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 743px) {
  .c-case__head span {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 519px) {
  .c-case__head span {
    display: block;
    padding: 1rem;
    text-align: center;
  }
}
.c-case__head span:nth-child(2) {
  padding-left: 3rem;
  color: #ff0000;
}
.c-case__head span:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 3px solid #ff0000;
  border-radius: 2rem;
}
.c-case__head span:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  aspect-ratio: 34/19;
  width: 3.4rem;
  height: auto;
  background-image: url(../images/common/fukidashi.png);
  background-size: contain;
}

.c-case__slides {
  margin-top: 15.5rem;
  padding: 0 6rem;
  max-width: 157rem;
}
@media screen and (max-width: 959px) {
  .c-case__slides {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .c-case__slides {
    margin-top: 8rem;
    padding: 0 3.5rem;
  }
}
.c-case__slides .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-case__slides .slick-slide {
  height: auto !important;
}

.c-case__slides--page {
  margin-top: 5rem;
}

.c-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.6rem 4.3rem;
}
@media screen and (max-width: 959px) {
  .c-case__list {
    gap: 4vw;
  }
}
@media screen and (max-width: 519px) {
  .c-case__list {
    gap: 4rem;
  }
}

.c-case__card {
  margin: 0 2.2rem;
  padding: 6rem 4.4rem 5rem;
  background-color: #fbf7ef;
  border-radius: 2.5rem;
}
@media screen and (max-width: 959px) {
  .c-case__card {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-case__card {
    margin: 0 1rem;
    padding: 3rem 2rem;
  }
}

.c-case__card--list {
  margin: 0;
  width: calc(33.333% - 2.8666666667rem);
}
@media screen and (max-width: 959px) {
  .c-case__card--list {
    width: calc(50% - 2vw);
  }
}
@media screen and (max-width: 519px) {
  .c-case__card--list {
    width: 100%;
  }
}

.c-case__image {
  display: block;
}
.c-case__image img {
  aspect-ratio: 313/270;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-case__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5.3rem;
}
@media screen and (max-width: 959px) {
  .c-case__cats {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-case__cats {
    margin-top: 3rem;
  }
}

.c-case__term {
  padding: 0 1rem;
  color: white;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 0.5rem;
  background-color: #1f338b;
}

.c-case__term--red {
  background-color: #ff0000;
}

.c-case__title {
  margin-top: 2.3rem;
  font-size: 1.375em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-case__title {
    margin-top: 1.5rem;
  }
}
.c-case__title small {
  padding-left: 0.6rem;
  font-weight: 500;
}

.c-case__read {
  margin-top: 1.5rem;
  font-size: 1.31em;
  line-height: 1.6;
}
@media screen and (max-width: 519px) {
  .c-case__read {
    font-size: 1.2em;
  }
}

.c-page-header {
  position: relative;
}

.c-page-header__head {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 2rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: white;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 959px) {
  .c-page-header__head {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 519px) {
  .c-page-header__head {
    font-size: 4vw;
  }
}

.c-page-header__en {
  display: block;
  font-family: "Noto Serif", serif;
  font-size: 2.5em;
  font-weight: 600;
}

@media screen and (max-width: 519px) {
  .c-page-header__en--long {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 959px) {
  .c-page-header__en--long2 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 519px) {
  .c-page-header__en--long2 {
    font-size: 1.7em;
  }
}

.c-page-header__bg {
  aspect-ratio: 1920/411;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 959px) {
  .c-page-header__bg {
    aspect-ratio: auto;
    height: 29vw;
  }
}
@media screen and (max-width: 519px) {
  .c-page-header__bg {
    height: 35vw;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 3.2rem;
  margin: 5rem auto auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .c-pagination {
    gap: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-pagination {
    gap: 2rem;
  }
}
.c-pagination .page-numbers {
  aspect-ratio: 1;
  width: 4rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #333;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .c-pagination .page-numbers {
    width: 3.5rem;
  }
}
.c-pagination .page-numbers:hover {
  color: white;
  background-color: #003cb4;
  opacity: 1;
}
.c-pagination .next, .c-pagination .prev {
  position: absolute;
  left: calc(100% + min(1.6rem, 4vw));
  font-weight: bold;
}
.c-pagination .next:hover, .c-pagination .prev:hover {
  color: white;
  background-color: #003cb4;
}
.c-pagination .prev {
  left: auto;
  right: calc(100% + min(1.6rem, 4vw));
}
.c-pagination .current {
  color: white;
  background-color: #003cb4;
}
.c-pagination .dots {
  pointer-events: none;
  border: none;
}

.c-page {
  margin-top: 17.5rem;
}
@media screen and (max-width: 959px) {
  .c-page {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 519px) {
  .c-page {
    margin-top: 7rem;
  }
}

/* ページコンテンツの最初の要素が見出し文字の場合は文字自体が見た目以上の高さを持つためその分をマージンから引く */
.c-page--mt {
  margin-top: 16rem;
}
@media screen and (max-width: 959px) {
  .c-page--mt {
    margin-top: 11rem;
  }
}
@media screen and (max-width: 519px) {
  .c-page--mt {
    margin-top: 7rem;
  }
}

.c-btn {
  display: block;
  position: relative;
  aspect-ratio: 184/40;
  width: 28rem;
  max-width: 100%;
  max-height: 6.3rem;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border: 1px solid #003cb4;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .c-btn {
    width: 24rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-btn {
    font-size: 1.2em;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  aspect-ratio: 1;
  width: 2.2rem;
  height: auto;
  background-image: url(../images/common/icon_right_blue02.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-btn::after {
    width: 5vw;
  }
}
.c-btn:hover {
  opacity: 1;
  color: white;
  background-color: #003cb4;
  border-color: #003cb4;
}
.c-btn:hover::after {
  background-image: url(../images/common/icon_right_wh03.png);
}

.c-btn--more {
  margin: 5rem 0 0 auto;
  padding: 0.4rem 5rem;
  aspect-ratio: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875em;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .c-btn--more {
    padding: 0.4rem 5.3rem;
    height: 3.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-btn--more {
    padding: 0.4rem 5.8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1em;
  }
}
.c-btn--more::after {
  width: 1.4rem;
}

.c-btn--center {
  margin: 10rem auto 0;
}
@media screen and (max-width: 519px) {
  .c-btn--center {
    margin-top: 6rem;
  }
}

.c-btn--round {
  aspect-ratio: auto;
  padding: 1rem 5rem;
  width: 100%;
  height: 8.4rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  border: none;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .c-btn--round {
    height: 7rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-btn--round {
    padding: 1rem 2rem;
    height: 6rem;
    font-size: 1.6rem;
  }
}
.c-btn--round::after {
  right: 5rem;
  width: 4rem;
  background-image: url(../images/common/icon_right_bl.png);
}
@media screen and (max-width: 519px) {
  .c-btn--round::after {
    right: 1.5rem;
    width: 3rem;
  }
}
.c-btn--round:hover::after {
  background-image: url(../images/common/icon_right_wh04.png);
}

.c-head02 {
  position: relative;
  padding-bottom: 1.4rem;
  font-size: 2.125em;
}
.c-head02::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 13rem;
  height: 0.5rem;
  background-color: #003cb4;
}
.c-head02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #daedff;
}

.c-head02--section {
  margin-top: 11rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 959px) {
  .c-head02--section {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .c-head02--section {
    margin-top: 7rem;
  }
}

.c-head03 {
  position: relative;
  padding: 0.63rem 2.8rem;
  font-size: 1.75em;
  background-color: #daedff;
}
.c-head03::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.87rem;
  height: 100%;
  background-color: #003cb4;
}

.c-head04 {
  position: relative;
  padding-left: 2.8rem;
  font-size: 1.5em;
  line-height: 1.3;
}
.c-head04::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.87rem;
  height: 100%;
  background-color: #003cb4;
}

.c-head04--section {
  margin: 6rem 0 3rem;
}
@media screen and (max-width: 519px) {
  .c-head04--section {
    margin: 4rem 0 2rem;
  }
}

.c-2col {
  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: 3rem;
}
@media screen and (max-width: 519px) {
  .c-2col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-2col__content {
  width: 50.5%;
}
@media screen and (max-width: 519px) {
  .c-2col__content {
    width: 100%;
  }
}

.c-2col__image {
  width: 49.5%;
  max-width: 49rem;
}
@media screen and (max-width: 519px) {
  .c-2col__image {
    width: 100%;
  }
}

.c-2col__image--47 {
  max-width: 47rem;
}

.c-challenge__2col {
  margin-top: 4.5rem;
}
.c-challenge__2col .c-2col__content,
.c-challenge__2col .c-2col__image {
  width: 50%;
  max-width: none;
}
@media screen and (max-width: 519px) {
  .c-challenge__2col .c-2col__content,
  .c-challenge__2col .c-2col__image {
    width: 100%;
  }
}

.c-challenge__merit {
  position: relative;
  margin-top: 19rem;
  padding: 10rem 2rem 6rem;
  background-color: #fbf7ef;
  border-radius: 3rem;
}
@media screen and (max-width: 519px) {
  .c-challenge__merit {
    margin-top: 12rem;
    padding: 7rem 1.5rem 5rem;
  }
}

.c-challenge__merit-head {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1.8rem 5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-size: 2.125em;
  font-weight: bold;
  letter-spacing: 1rem;
  color: white;
  text-align: center;
  background-color: #003cb4;
  border-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .c-challenge__merit-head {
    letter-spacing: 0rem;
  }
}
@media screen and (max-width: 519px) {
  .c-challenge__merit-head {
    padding: 2rem 1rem;
    width: 100%;
    font-size: 1.6em;
    line-height: 1.4;
  }
}
.c-challenge__merit-head::before {
  content: "";
  position: absolute;
  top: calc(100% - 0.8px);
  left: 66%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  aspect-ratio: 34/19;
  width: 3.4rem;
  height: auto;
  background-image: url(../images/common/fukidashi_blue.png);
  background-size: contain;
}

.c-challenge__merit-content {
  margin: 0 auto;
  padding: 3.5rem 2rem;
  max-width: 100rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 519px) {
  .c-challenge__merit-content {
    padding: 2.5rem 1.5rem;
  }
}
.c-challenge__merit-content ul {
  margin: 0 auto;
  max-width: 60rem;
  list-style: none;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .c-challenge__merit-content ul {
    width: 85%;
  }
}
@media screen and (max-width: 519px) {
  .c-challenge__merit-content ul {
    width: 90%;
    padding-left: 2rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.c-challenge__merit-content ul li {
  position: relative;
  margin-top: 1rem;
}
@media screen and (max-width: 519px) {
  .c-challenge__merit-content ul li {
    margin-top: 1.5rem;
  }
}
.c-challenge__merit-content ul li:first-child {
  margin-top: 0;
}
.c-challenge__merit-content ul li::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: -3.5rem;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  aspect-ratio: 20/14;
  width: 2.7rem;
  height: auto;
  background-image: url(../images/common/icon_check.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-challenge__merit-content ul li::before {
    top: 1.4rem;
    left: -2.6rem;
    width: 2.2rem;
  }
}

.c-challenge__partner {
  margin: 4rem auto 4rem 0;
  width: 51rem;
  max-height: 6.3rem;
}
@media screen and (max-width: 519px) {
  .c-challenge__partner {
    margin: 3rem 0;
    max-height: 5rem;
  }
}

.c-challenge__contact {
  text-align: center;
}
.c-challenge__contact h3 {
  position: relative;
  margin-top: 8rem;
  font-size: 2.125em;
}
@media screen and (max-width: 519px) {
  .c-challenge__contact h3 {
    font-size: 1.9em;
  }
}
.c-challenge__contact h3::after {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 7rem;
  height: 0.3rem;
  background-color: #ff0000;
}
.c-challenge__contact p {
  margin-top: 8rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-challenge__contact p {
    margin-top: 6rem;
    font-size: 1.55rem;
  }
}

.c-post {
  margin-top: 8rem;
}
@media screen and (max-width: 959px) {
  .c-post {
    margin-top: 6rem;
  }
}
.c-post h2, .c-post h3, .c-post h4 {
  position: relative;
  margin: 6rem 0 3rem;
}
.c-post h2 {
  padding-bottom: 1.4rem;
  font-size: 2.125em;
}
.c-post h2::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 13rem;
  height: 0.5rem;
  background-color: #003cb4;
}
.c-post h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #daedff;
}
.c-post h3 {
  padding: 0.63rem 2.8rem;
  font-size: 1.75em;
  background-color: #daedff;
}
.c-post h3::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.87rem;
  height: 100%;
  background-color: #003cb4;
}
.c-post h4 {
  padding-left: 2.8rem;
  font-size: 1.5em;
  line-height: 1.3;
}
.c-post h4::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.87rem;
  height: 100%;
  background-color: #003cb4;
}
.c-post .wp-block-columns {
  /* WPエディター標準のCSSを邪魔しないようにする */
  gap: min(10rem, 7.69vw);
  margin-top: 4.4rem;
}
@media screen and (max-width: 959px) {
  .c-post .wp-block-columns {
    gap: 3vw;
  }
}
.c-table {
  width: 100%;
  min-width: 100rem;
  border-collapse: collapse;
}
.c-table thead {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  background-color: #003cb4;
}
@media screen and (max-width: 959px) {
  .c-table thead {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-table thead {
    font-size: 1.6rem;
  }
}
.c-table thead th {
  padding: 2.5rem 0 2.5rem 5rem;
}
@media screen and (max-width: 959px) {
  .c-table thead th {
    padding: 2rem 0 2rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-table thead th {
    padding-left: 2rem;
  }
}
.c-table thead th:last-child {
  padding-right: 5rem;
}
@media screen and (max-width: 959px) {
  .c-table thead th:last-child {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-table thead th:last-child {
    padding-right: 2rem;
  }
}
.c-table tbody tr {
  background-color: #fff;
}
.c-table tbody tr:nth-child(2n) {
  background-color: #fbf7ef;
}
.c-table tbody td {
  padding: 2.5rem 0 2.5rem 5rem;
}
@media screen and (max-width: 959px) {
  .c-table tbody td {
    padding: 2rem 0 2rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-table tbody td {
    padding-left: 2rem;
  }
}
.c-table tbody td:last-child {
  padding-right: 5rem;
}
@media screen and (max-width: 959px) {
  .c-table tbody td:last-child {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-table tbody td:last-child {
    padding-right: 2rem;
  }
}

.c-table--76 {
  min-width: 76rem;
}

.c-interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.5rem;
}
@media screen and (max-width: 959px) {
  .c-interview {
    gap: 4rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview {
    gap: 5rem;
  }
}

.c-interview--list {
  gap: 10rem;
}
@media screen and (max-width: 959px) {
  .c-interview--list {
    gap: 4rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview--list {
    gap: 5rem;
  }
}

.c-interview__card {
  position: relative;
  width: calc(33.333% - 3rem);
}
@media screen and (max-width: 959px) {
  .c-interview__card {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .c-interview__card {
    width: 100%;
  }
}

.c-interview__card--list {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 959px) {
  .c-interview__card--list {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .c-interview__card--list {
    width: 100%;
  }
}

.c-interview__catch {
  position: absolute;
  top: 7%;
  left: 7%;
  color: #1f338b;
  font-size: 1em;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  word-break: keep-all;
}
.c-interview__catch span {
  padding: 0.7rem 0;
  background-color: #fff;
}

.c-interview__catch--list {
  font-size: 1.65em;
}
@media screen and (max-width: 959px) {
  .c-interview__catch--list {
    font-size: 1em;
  }
}
.c-interview__catch--list span {
  padding: 1rem 0;
}

.c-interview__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.3rem 0.6rem;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1;
  background-color: #f0f0f0;
}
@media screen and (max-width: 959px) {
  .c-interview__num {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview__num {
    font-size: 2rem;
  }
}
.c-interview__num img {
  width: 1.4rem;
}
@media screen and (max-width: 959px) {
  .c-interview__num img {
    width: 1.3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview__num img {
    width: 1.2rem;
  }
}

.c-interview__num--list {
  gap: 0.8rem;
  padding: 0.3rem 0.8rem;
  font-size: 2.4em;
}
@media screen and (max-width: 959px) {
  .c-interview__num--list {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview__num--list {
    font-size: 2rem;
  }
}
.c-interview__num--list img {
  width: 2.1rem;
}
@media screen and (max-width: 959px) {
  .c-interview__num--list img {
    width: 1.3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview__num--list img {
    width: 1.2rem;
  }
}

.c-interview__img {
  aspect-ratio: 400/225;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-interview__name {
  margin-top: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .c-interview__name {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview__name {
    font-size: 1.6rem;
  }
}
.c-interview__name small {
  font-size: 0.89em;
  font-weight: 500;
}

.c-interview__name--list {
  margin-top: 1.4rem;
  font-size: 1.5em;
}
@media screen and (max-width: 959px) {
  .c-interview__name--list {
    margin-top: 0.5rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-interview__name--list {
    font-size: 1.6rem;
  }
}
.c-interview__name--list small {
  font-size: 0.84em;
}

.c-bn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  aspect-ratio: 700/280;
  width: 100%;
  max-width: 70rem;
  height: auto;
  border: 1px solid #003cb4;
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .c-bn {
    border-radius: 2rem;
  }
}

.c-bn__img {
  width: 56%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-bn__body {
  width: 44%;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.c-bn__icon {
  width: 9%;
}
@media screen and (max-width: 519px) {
  .c-bn__icon {
    width: 12%;
  }
}

.c-bn__head {
  margin: 2.3rem 0;
  color: #003cb4;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-bn__head {
    margin: 0.5rem 0;
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .c-bn__head--long {
    font-size: 1.7rem;
  }
}

.c-bn__arrow {
  width: 4rem;
}
@media screen and (max-width: 519px) {
  .c-bn__arrow {
    width: 18%;
  }
}

.c-2card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10rem;
  margin: 0 auto 0;
  max-width: 94rem;
}
@media screen and (max-width: 959px) {
  .c-2card {
    gap: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-2card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-2card--mt {
  margin-top: 20rem;
}
@media screen and (max-width: 959px) {
  .c-2card--mt {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 519px) {
  .c-2card--mt {
    margin-top: 13rem;
  }
}

.c-2card__card {
  position: relative;
  padding: 4rem 3rem;
  aspect-ratio: 426/267;
  width: calc(50% - 5rem);
  height: auto;
  color: white;
  text-align: center;
  border: 1px solid #003cb4;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-2card__card {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .c-2card__card {
    width: 100%;
  }
}

.c-2card__icon {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18%;
}
@media screen and (max-width: 519px) {
  .c-2card__icon {
    width: 20%;
  }
}

.c-2card__icon--message {
  -webkit-transform: translate(-33%, -50%);
          transform: translate(-33%, -50%);
}

.c-2card__title {
  position: absolute;
  bottom: 26%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #003cb4;
  font-size: 1.43em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .c-2card__title {
    bottom: 22%;
    font-size: 1.5em;
  }
}

.c-2card__card2 {
  aspect-ratio: 432/366;
  width: calc(50% - 5rem);
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #003cb4;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-2card__card2 {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .c-2card__card2 {
    width: 100%;
  }
}

.c-2card__icon2 {
  width: auto;
  height: 6.1rem;
}
@media screen and (max-width: 959px) {
  .c-2card__icon2 {
    height: 5rem;
  }
}

.c-2card__title2 {
  margin: 2.5rem 0 3rem;
  color: #003cb4;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .c-2card__title2 {
    margin: 1.5rem 0 2rem;
    font-size: 2.2rem;
  }
}

.c-2card__obi {
  padding: 1rem;
  width: 100%;
  min-height: 9rem;
  color: white;
  font-size: 1.7rem;
  line-height: 1.5;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #003cb4;
}
@media screen and (max-width: 959px) {
  .c-2card__obi {
    min-height: 7.2rem;
  }
}

.c-frame {
  padding: 5rem;
  background-color: #fbf7ef;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-frame {
    padding: 3rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-frame {
    padding: 1rem;
  }
}

@media screen and (max-width: 519px) {
  .c-frame--qa {
    padding: 3rem 1rem;
  }
}

@media screen and (max-width: 959px) {
  .c-frame--rec-info {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-frame--rec-info {
    padding: 4rem 2rem;
  }
}

.c-frame__wrap {
  padding: 5rem;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .c-frame__wrap {
    padding: 3rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-frame__wrap {
    padding: 3rem 1.5rem;
  }
}
.c-frame__wrap table {
  width: 100%;
  font-size: 1.8rem;
  border-collapse: collapse;
}
@media screen and (max-width: 959px) {
  .c-frame__wrap table {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-frame__wrap table {
    font-size: 1.6rem;
  }
}
.c-frame__wrap table tr:last-child th, .c-frame__wrap table tr:last-child td {
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (max-width: 519px) {
  .c-frame__wrap table tr:last-child th {
    border-bottom: none;
  }
}
.c-frame__wrap table th, .c-frame__wrap table td {
  padding: 1.2rem 4rem;
  border-top: 1px solid #b3b3b3;
}
@media screen and (max-width: 959px) {
  .c-frame__wrap table th, .c-frame__wrap table td {
    padding: 1.2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-frame__wrap table th, .c-frame__wrap table td {
    display: block;
    padding: 0 2rem 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .c-frame__wrap table th {
    padding-right: 0;
    width: 11rem;
  }
}
@media screen and (max-width: 519px) {
  .c-frame__wrap table th {
    padding: 1.5rem 2rem 0.5rem;
    width: 100%;
    font-size: 1.05em;
  }
}
@media screen and (max-width: 519px) {
  .c-frame__wrap table td {
    border-top: none;
  }
}

.c-others__ol {
  counter-reset: listnum;
}
.c-others__ol li {
  position: relative;
  padding-left: 2rem;
  list-style: none;
}
.c-others__ol li::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  position: absolute;
  left: 0rem;
}

.c-others__ol-kakko {
  counter-reset: listnum;
}
.c-others__ol-kakko li {
  position: relative;
  padding-left: 4.6rem;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .c-others__ol-kakko li {
    padding-left: 4rem;
  }
}
.c-others__ol-kakko li::before {
  counter-increment: listnum;
  content: "（ " counter(listnum) " ）";
  position: absolute;
  left: 0rem;
}

.c-others__ul li {
  position: relative;
  padding-left: 2rem;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .c-others__ul li {
    padding-left: 1.5rem;
  }
}
.c-others__ul li::before {
  content: "・";
  position: absolute;
  left: 0rem;
}

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

.c-others__table {
  width: 100%;
  border-collapse: collapse;
}
.c-others__table th, .c-others__table td {
  padding: 1rem 1.5rem;
  border: 1px solid #a3a3a3;
}
@media screen and (max-width: 519px) {
  .c-others__table th, .c-others__table td {
    padding: 1rem;
  }
}
.c-others__table th {
  color: white;
  text-align: center;
  background-color: gray;
}

.c-contact__info {
  padding-bottom: 5rem;
}
.c-contact__info span {
  color: #ff0000;
}

.c-contact__cf7 {
  padding-bottom: 7rem;
}
@media screen and (max-width: 519px) {
  .c-contact__cf7 {
    padding-bottom: 5rem;
  }
}

.c-contact__input {
  display: block;
}

.c-contact__confirm {
  display: none;
}

table.c-contact__table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 959px) {
  table.c-contact__table {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  table.c-contact__table {
    font-size: 1.5rem;
  }
}
table.c-contact__table th {
  padding: 2rem 4rem;
  width: 30%;
}
@media screen and (max-width: 959px) {
  table.c-contact__table th {
    padding: 2rem 2rem;
    width: 39%;
  }
}
@media screen and (max-width: 519px) {
  table.c-contact__table th {
    padding: 2rem 0 0;
    width: 100%;
  }
}
table.c-contact__table th span {
  color: #ff0000;
}
table.c-contact__table th p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.8rem;
}
table.c-contact__table th.tel p {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
table.c-contact__table td {
  padding: 1.5rem 0;
}
@media screen and (max-width: 519px) {
  table.c-contact__table td {
    padding: 1rem 0 2rem;
  }
}
table.c-contact__table td.birth p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
@media screen and (max-width: 959px) {
  table.c-contact__table td.birth p {
    gap: 0.5rem;
  }
}
table.c-contact__table input[type=text],
table.c-contact__table input[type=email],
table.c-contact__table input[type=tel],
table.c-contact__table textarea,
table.c-contact__table select {
  padding: min(0.8rem, 2vw) min(1rem, 2.5vw);
  width: 100%;
  max-height: min(18rem, 45vw);
  background-color: #fff;
  border: solid 0.5px #a4a4a4;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
table.c-contact__table input[type=text]:focus,
table.c-contact__table input[type=email]:focus,
table.c-contact__table input[type=tel]:focus,
table.c-contact__table textarea:focus,
table.c-contact__table select:focus {
  border-width: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
table.c-contact__table select {
  padding-right: min(3.5rem, 8.8vw);
  background-image: url(../images/icon_selectbox.png);
  background-size: 15px 6px;
  background-position: 91% 50%;
}
table.c-contact__table .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-top: min(0.5rem, 1.3vw);
  margin-right: min(2rem, 5vw);
  line-height: 1.3;
}
table.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
table.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
table.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: min(0.4rem, 1vw);
  left: 0;
  aspect-ratio: 1;
  width: min(1.5rem, 3.8vw);
  height: auto;
  background: #fff;
  border: 1px solid #898989;
  border-radius: 50%;
}
table.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span::after {
  content: "";
  position: absolute;
  top: min(1.15rem, 2.9vw);
  left: min(0.3rem, 0.8vw);
  padding: min(0.2rem, 0.5vw);
  aspect-ratio: 1;
  width: min(0.9rem, 2.3vw);
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #003cb4;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0;
}
table.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + span::after {
  opacity: 1;
}
table.c-contact__table .wpcf7-list-item {
  display: block;
}
table.c-contact__table .wpcf7-list-item input[type=checkbox] {
  display: none;
}
table.c-contact__table .wpcf7-list-item input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2rem;
  cursor: pointer;
}
table.c-contact__table .wpcf7-list-item input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border: 2px solid #003cb4;
  border-radius: 2px;
}
table.c-contact__table .wpcf7-list-item input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  border-bottom: 3px solid #003cb4;
  border-left: 3px solid #003cb4;
  margin-top: -0.2em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
table.c-contact__table .wpcf7-list-item input[type=checkbox]:checked + span::after {
  opacity: 1;
}
table.c-contact__table .wpcf7-not-valid-tip {
  display: block;
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
}

.c-contact__privacy {
  margin-top: 6rem;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .c-contact__privacy {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__privacy {
    font-size: 1.5rem;
  }
}
.c-contact__privacy a {
  text-decoration: underline;
}

.wpcf7-acceptance {
  display: block;
  position: relative;
  margin: min(2rem, 5vw) auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .wpcf7-acceptance {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .wpcf7-acceptance {
    font-size: 1.5rem;
  }
}
.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: min(2rem, 5vw);
  height: 100%;
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: min(0.2rem, 0.5vw);
  aspect-ratio: 1;
  width: min(1.8rem, 4.5vw);
  height: auto;
  background-color: #fff;
  border: 1px solid #333;
  vertical-align: middle;
  cursor: pointer;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  content: "";
  position: absolute;
  top: 50%;
  left: 1%;
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
          transform: translate(0%, -50%) rotate(-45deg);
  width: min(1.3rem, 3.3vw);
  height: min(0.5rem, 1.3vw);
  border-left: solid 2px #333;
  border-bottom: solid 2px #333;
}
.wpcf7-acceptance a {
  text-decoration: underline;
}

.c-contact__btn p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(1.5rem, 3.8vw);
  margin: min(5rem, 12.5vw) auto 0;
}

.c-contact__reset,
input[type=submit] {
  display: block;
  margin: 4rem auto 0;
  padding: 2rem 2rem;
  width: 30rem;
  max-width: 100%;
  height: 8.4rem;
  font-size: 2rem;
  text-align: center;
  color: white;
  background-color: #003cb4;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .c-contact__reset,
  input[type=submit] {
    margin-top: 3rem;
    font-size: 1.8rem;
    height: auto;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__reset,
  input[type=submit] {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
.c-contact__reset:hover,
input[type=submit]:hover {
  opacity: 0.8;
}

.c-contact__reset {
  color: #519ecd;
  background-color: #d0e4ef;
}

.c-contact__value {
  padding: 1rem 0;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-spinner {
  display: none;
  margin-top: min(1rem, 2.5vw);
}

.wpcf7-response-output {
  border: none;
}

.wpcf7-form-control-wrap.recaptcha {
  display: block;
  margin: min(2rem, 5vw) auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-contact__ssl {
  margin-top: min(5rem, 12.5vw);
}

.c-contact__thanks {
  width: 100%;
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
}

.p-top-mv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-61%, -50%);
          transform: translate(-61%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: white;
}
@media screen and (max-width: 519px) {
  .p-top-mv__head {
    gap: 1rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-top-mv__catch {
  font-size: 5em;
  font-weight: 300;
  line-height: 1.4;
  -webkit-filter: drop-shadow(7px 7px 5px black);
          filter: drop-shadow(7px 7px 5px black);
}
@media screen and (max-width: 959px) {
  .p-top-mv__catch {
    font-size: 5.5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__catch {
    font-size: 7vw;
  }
}

.p-top-mv__en {
  padding-bottom: 1.5rem;
  font-size: 1.12em;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .p-top-mv__en {
    padding-bottom: 1vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__en {
    padding: 0;
    font-size: 2vw;
  }
}

.p-top-mv__movie {
  position: relative;
  margin-top: -6.2%;
}
@media screen and (max-width: 1300px) {
  .p-top-mv__movie {
    margin-top: -6.6%;
  }
}
@media screen and (max-width: 959px) {
  .p-top-mv__movie {
    margin-top: -6.2%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__movie {
    margin-top: -7.8%;
  }
}
@media screen and (max-width: 400px) {
  .p-top-mv__movie {
    margin-top: -6.2%;
  }
}
.p-top-mv__movie::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__movie iframe {
  position: relative;
  z-index: 0;
  aspect-ratio: 560/315;
  width: 100%;
  height: auto;
}

.p-top-mv__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6vw;
  max-width: 8.7rem;
}
@media screen and (max-width: 519px) {
  .p-top-mv__play {
    width: 10vw;
  }
}

.p-top-mv__video {
  width: 100%;
  height: auto;
}

.p-top-mv__scroll {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  color: white;
  font-size: 0.8em;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-top-mv__scroll {
    display: none;
  }
}
.p-top-mv__scroll span {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.p-top-mv__scroll img {
  display: block;
  margin: 0.2rem auto 0;
  width: 1.3rem;
}

.p-top-mv__btn {
  display: block;
  margin: 5rem auto 0;
  padding: 0.3rem 4rem;
  max-width: 296.65px;
  font-size: 1.12em;
  font-weight: bold;
  text-align: center;
  border: 1px solid #003cb4;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .p-top-mv__btn {
    margin-top: 4rem;
  }
}
.p-top-mv__btn:hover {
  color: white;
  background-color: #003cb4;
  opacity: 1;
}

.p-top-area {
  width: 100%;
  padding: min(6rem, 5.2vw) 0 min(1rem, 0.9vw);
  background-color: #FFFAF1;
}
@media screen and (max-width: 519px) {
  .p-top-area {
    margin-top: min(2.5rem, 6.7vw);
    padding: min(2.5rem, 6.7vw) 0 min(2rem, 5.3vw);
    background-color: #fffcfe;
  }
}

.p-top-area__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: min(1rem, 0.9vw);
}
@media screen and (max-width: 519px) {
  .p-top-area__switch {
    position: relative;
    aspect-ratio: 465/407;
    width: 100%;
    height: auto;
    background-color: #FFFAF1;
    border: solid 0.5px black;
  }
}

.p-top-area__tab {
  display: none;
}
@media screen and (max-width: 519px) {
  .p-top-area__tab {
    display: block;
    position: absolute;
    top: 0;
    left: min(3rem, 8vw);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    padding: min(0.2rem, 0.5vw) 7%;
    color: white;
    font-weight: 500;
    background-color: #003cb4;
    border: solid 0.5px black;
  }
}
.p-top-area__tab input {
  display: none;
}

.p-top-area__tab--japan {
  left: 7%;
}

.p-top-area__tab--yamagata {
  left: 31.2%;
}

.p-top-area__tab--okitama {
  left: 59%;
}

/* チェックされたradioを含むlabelの「直後のdiv」だけ表示 */
@media screen and (max-width: 519px) {
  .p-top-area__tab:has(input:checked) {
    color: #003cb4;
    background-color: #fffcfe;
  }
}

@media screen and (max-width: 519px) {
  .p-top-area__tab:has(input:checked) + .p-top-area__content {
    display: block;
  }
}

.p-top-area__content {
  position: relative;
}
@media screen and (max-width: 519px) {
  .p-top-area__content {
    display: none;
  }
}

.p-top-area__content--okitama {
  padding-top: 5.5%;
  width: 34.5%;
}
@media screen and (max-width: 519px) {
  .p-top-area__content--okitama {
    padding: min(1.5rem, 4vw);
    width: 100%;
    height: 100%;
  }
}

.p-top-area__content--yamagata {
  padding-top: 1.5%;
  width: 39.8%;
}
@media screen and (max-width: 519px) {
  .p-top-area__content--yamagata {
    padding: min(1.5rem, 4vw);
    width: 100%;
    height: 100%;
  }
}

.p-top-area__content--japan {
  padding-top: 2%;
  width: 25.7%;
}
@media screen and (max-width: 519px) {
  .p-top-area__content--japan {
    padding: min(1.5rem, 4vw);
    width: 100%;
    height: 100%;
  }
  .p-top-area__content--japan a {
    width: 100%;
    height: 100%;
    text-align: center;
  }
}

.p-top-area__head {
  position: absolute;
  top: 0;
  left: 0;
  color: #003cb4;
  font-size: clamp(1rem, 2.6vw, 3rem);
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .p-top-area__head {
    display: none;
  }
}

@media screen and (max-width: 519px) {
  .p-top-area__map {
    width: auto;
    height: 100%;
  }
}

.p-top-reco {
  padding: 21rem 0 22rem;
}
@media screen and (max-width: 959px) {
  .p-top-reco {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-reco {
    padding: 8rem 0 10rem;
  }
}

.p-top-reco__slides {
  position: relative;
  margin: 0 auto;
  padding: 0 6rem;
  max-width: 157rem;
}
@media screen and (max-width: 519px) {
  .p-top-reco__slides {
    padding: 0 4rem;
  }
}
.p-top-reco__slides .slick-list {
  padding-bottom: 2%;
}

.p-top-reco__card {
  position: relative;
  margin: 0 min(3rem, 2vw);
}

.p-top-reco__image {
  display: block;
}
.p-top-reco__image img {
  aspect-ratio: 298/196;
  width: 100%;
  height: auto;
  border-radius: 3.4rem;
}

.p-top-reco__title {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  padding: 0.4rem 1.3rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  background-color: #fff;
}

.p-top-solution {
  overflow: hidden;
}

.p-top-solution__inner {
  position: relative;
  z-index: 1;
  padding: 23rem 0 18rem;
  background-image: url(../images/top/bg_solution_02.png);
  background-size: cover;
  background-position: bottom center;
  border-bottom-left-radius: 16rem;
  border-bottom-right-radius: 16rem;
}
@media screen and (max-width: 959px) {
  .p-top-solution__inner {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-solution__inner {
    padding: 8rem 0 10rem;
  }
}

.p-top-solution__head {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #003cb4;
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 519px) {
  .p-top-solution__head {
    font-size: 1.7em;
    letter-spacing: 0;
  }
}
.p-top-solution__head::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #003cb4;
}
.p-top-solution__head::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 966/138;
  width: 100.5rem;
  max-width: 100vw;
  height: auto;
  background-image: url(../images/top/solution_white.png);
  background-size: contain;
}

.p-top-solution__container {
  position: relative;
  margin-top: 18rem;
  background-size: 100% 100%;
}
@media screen and (max-width: 760px) {
  .p-top-solution__container {
    background: none;
  }
}
@media screen and (max-width: 519px) {
  .p-top-solution__container {
    margin-top: 8rem;
  }
}
.p-top-solution__container::before {
  content: "";
  position: absolute;
  top: 49.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 1993/1023;
  width: 100vw;
  width: auto;
  height: 100%;
  background-image: url(../images/top/bg_line_02.png);
  background-size: 100%;
}
@media screen and (max-width: 959px) {
  .p-top-solution__container::before {
    display: none;
  }
}

.p-top-solution__content {
  position: relative;
  margin: 0 auto;
  padding: 7rem 7.8rem 11.3rem;
  max-width: 95.6rem;
}
@media screen and (max-width: 519px) {
  .p-top-solution__content {
    padding: 0 2rem;
  }
}

.p-top-solution__content--bottom {
  padding-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-top-solution__content--bottom {
    margin-top: 7rem;
    padding-top: 0;
  }
}

.p-top-solution__label {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  padding-bottom: 0.7rem;
  aspect-ratio: 157/75;
  width: 15.7rem;
  height: auto;
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  -ms-flex-line-pack: end;
      align-content: end;
  background-color: #7ac943;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 959px) {
  .p-top-solution__label {
    right: 7.8rem;
    mix-blend-mode: initial;
  }
}
@media screen and (max-width: 519px) {
  .p-top-solution__label {
    display: none;
  }
}

.p-top-solution__label--reverse {
  left: 7.8rem;
  right: auto;
  -webkit-transform: translateY(-74%);
          transform: translateY(-74%);
}

.p-top-solution__title {
  color: #003cb4;
  font-size: 1.375em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 519px) {
  .p-top-solution__title {
    letter-spacing: 0;
  }
}

.p-top-solution__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9rem;
  position: relative;
  margin-top: 6.2rem;
  width: calc(100% + 9.5rem);
}
@media screen and (max-width: 1285px) {
  .p-top-solution__body {
    width: calc(100% + 6.8vw);
  }
}
@media screen and (max-width: 1150px) {
  .p-top-solution__body {
    width: calc(100% + 7.5vw);
  }
}
@media screen and (max-width: 959px) {
  .p-top-solution__body {
    gap: 4rem;
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-solution__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
  }
}

.p-top-solution__body--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: -9.5rem;
}
@media screen and (max-width: 1285px) {
  .p-top-solution__body--reverse {
    margin-left: -6.8vw;
  }
}
@media screen and (max-width: 1150px) {
  .p-top-solution__body--reverse {
    margin-left: -7.5vw;
  }
}
@media screen and (max-width: 959px) {
  .p-top-solution__body--reverse {
    margin-left: 0;
  }
}

.p-top-solution__img {
  aspect-ratio: 401/258;
  width: 50.1%;
  max-width: 40rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 519px) {
  .p-top-solution__img {
    width: 100%;
    max-width: none;
  }
}

.p-top-solution__text {
  width: calc(100% - 9rem - 40rem);
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 959px) {
  .p-top-solution__text {
    width: calc(49.9% - 4rem);
  }
}
@media screen and (max-width: 519px) {
  .p-top-solution__text {
    width: 100%;
  }
}

.p-top-worry {
  margin-top: -20.3rem;
  padding: 47rem 0 18rem;
  background-image: url(../images/top/bg_worries.png);
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .p-top-worry {
    margin-top: 0;
    padding: 17rem 0 12rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry {
    margin-top: 0;
    padding: 10rem 0;
  }
}

.p-top-worry__head {
  margin: 0 auto;
  padding: 1.5rem 4rem;
  width: 73rem;
  max-width: 100%;
  font-size: 1.88em;
  text-align: center;
  letter-spacing: 1rem;
  background-color: white;
  border-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .p-top-worry__head {
    letter-spacing: 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__head {
    padding: 0.8rem;
    font-size: 1.6em;
    letter-spacing: 0;
  }
}
.p-top-worry__head span {
  position: relative;
  display: inline-block;
  width: 10%;
}
@media screen and (max-width: 519px) {
  .p-top-worry__head span {
    width: 7%;
  }
}
.p-top-worry__head img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 130%;
  max-width: none;
}
@media screen and (max-width: 959px) {
  .p-top-worry__head img {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__head img {
    width: 170%;
  }
}

.p-top-worry__head2 {
  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: 1.65rem;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  width: 72.4rem;
  max-width: 100%;
  font-size: 1.94em;
  line-height: 1;
  background-color: white;
  border-radius: 2rem;
}
@media screen and (max-width: 519px) {
  .p-top-worry__head2 {
    gap: 1%;
    padding: 1.5rem 0.8rem;
    font-size: 1.6em;
  }
}
.p-top-worry__head2 img {
  width: 9.5%;
}
@media screen and (max-width: 959px) {
  .p-top-worry__head2 img {
    width: 9%;
  }
}
.p-top-worry__head2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.p-top-worry__head2 em {
  display: block;
  padding: 0 0.5rem 0 1.7rem;
  font-style: normal;
  color: #003cb4;
  font-size: 2.057em;
}
@media screen and (max-width: 519px) {
  .p-top-worry__head2 em {
    padding: 0 0 0.3rem;
    font-size: 1.2em;
  }
}
.p-top-worry__head2 em:nth-child(2) {
  padding: 0 1rem 0 0.5rem;
}
@media screen and (max-width: 519px) {
  .p-top-worry__head2 em:nth-child(2) {
    padding: 0 0 0.3rem;
  }
}

.p-top-worry__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13rem 12rem;
  margin-top: 18rem;
}
@media screen and (max-width: 959px) {
  .p-top-worry__container {
    gap: 7rem 5rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__container {
    gap: 8rem;
    margin-top: 8rem;
  }
}

.p-top-worry__card {
  position: relative;
  aspect-ratio: 590/500;
  width: calc(50% - 6rem);
  height: auto;
  background-color: #fff;
  border: 1.7rem solid #fff0f0;
  border-radius: 10rem;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: 2rem 2rem 1rem rgba(0, 157, 230, 0.1);
          box-shadow: 2rem 2rem 1rem rgba(0, 157, 230, 0.1);
}
@media screen and (max-width: 959px) {
  .p-top-worry__card {
    width: calc(50% - 5rem);
    border-radius: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__card {
    width: 100%;
    border-width: 1.5rem;
  }
}
.p-top-worry__card:hover {
  opacity: 1;
}
.p-top-worry__card:hover .p-top-worry__more {
  color: white;
  background-color: #003cb4;
  border-color: #003cb4;
}
.p-top-worry__card:hover .p-top-worry__more::after {
  background-image: url(../images/common/icon_right_wh03.png);
}

.p-top-worry__title {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #003cb4;
  font-size: 1.75em;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-top-worry__title {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__title {
    font-size: 1.65em;
  }
}

.p-top-worry__image {
  position: absolute;
  bottom: 18%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 65.5%;
}

.p-top-worry__more {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(23%, 90%);
          transform: translate(23%, 90%);
  aspect-ratio: 184/40;
  width: 18.4rem;
  font-size: 0.875em;
  font-weight: 400;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border: 1px solid #003cb4;
}
@media screen and (max-width: 519px) {
  .p-top-worry__more {
    padding: 0.4rem 4rem;
    font-size: 1em;
    -webkit-transform: translate(1.5rem, 90%);
            transform: translate(1.5rem, 90%);
  }
}
.p-top-worry__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  aspect-ratio: 1;
  width: 1.4rem;
  height: auto;
  background-image: url(../images/common/icon_right_blue02.png);
  background-size: contain;
}

.p-top-rec {
  padding: 18rem 0 20rem;
  background-image: url(../images/top_new/bg_recruit.jpg);
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .p-top-rec {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-rec {
    padding: 10rem 0;
  }
}

.p-top-rec__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6.5rem;
  margin-top: 10rem;
}
@media screen and (max-width: 959px) {
  .p-top-rec__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8rem;
  }
}

.p-top-rec__card {
  position: relative;
  aspect-ratio: 619/414;
  width: 62rem;
  height: auto;
  background-color: #fff;
  border-top-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .p-top-rec__card {
    aspect-ratio: 1.3;
    width: 85%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-rec__card {
    width: 100%;
  }
}
.p-top-rec__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 144/120;
  width: 14.4rem;
  height: auto;
  background-color: #ff0000;
}
@media screen and (max-width: 959px) {
  .p-top-rec__card::before {
    width: 30%;
  }
}

.p-top-rec__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 73%;
}
.p-top-rec__image > img {
  aspect-ratio: 448/281;
  width: 45rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 959px) {
  .p-top-rec__image > img {
    width: 100%;
  }
}
.p-top-rec__image h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.4rem;
  position: absolute;
  bottom: -1px;
  right: -0.7px;
  padding: 1.5rem 0 0 1.8rem;
  color: #003cb4;
  font-size: 1.43em;
  font-weight: bold;
  line-height: 1;
  background-color: #fff;
}
@media screen and (max-width: 519px) {
  .p-top-rec__image h3 {
    gap: 1rem;
    padding: 1rem 0 0 1.3rem;
    font-size: 1.3em;
  }
}
.p-top-rec__image h3 img {
  width: 2rem;
}
@media screen and (max-width: 519px) {
  .p-top-rec__image h3 img {
    width: 1.5rem;
  }
}

.p-top-rec__en {
  position: absolute;
  top: 15%;
  left: 4.5%;
  font-family: "Noto Serif", serif;
  font-size: 1.08em;
  font-weight: bold;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 519px) {
  .p-top-rec__en {
    top: 8%;
    left: 3.3%;
  }
}

.p-top-about {
  padding: 17rem 0 20rem;
}
@media screen and (max-width: 959px) {
  .p-top-about {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-about {
    padding: 10rem 0;
  }
}

.p-top-about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11.3rem;
  margin-top: 10rem;
}
@media screen and (max-width: 959px) {
  .p-top-about__container {
    gap: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-about__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8rem;
    margin-top: 8rem;
  }
}

.p-top-about__card {
  position: relative;
  aspect-ratio: 244/222;
  width: calc(33.333% - 7.5333333333rem);
  height: auto;
  border: 1px solid #333;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .p-top-about__card {
    width: calc(33.333% - 2.6666666667rem);
  }
}
@media screen and (max-width: 519px) {
  .p-top-about__card {
    width: 80%;
  }
}
.p-top-about__card a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-about__icon {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24%;
}
@media screen and (max-width: 519px) {
  .p-top-about__icon {
    width: 26%;
  }
}

.p-top-about__icon--message {
  -webkit-transform: translate(-33%, -50%);
          transform: translate(-33%, -50%);
}

.p-top-about__title {
  position: absolute;
  bottom: 18%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #003cb4;
  font-size: 1.43em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-top-about__title {
    font-size: 1.5em;
  }
}

.p-top-link {
  padding: 17rem 0 20rem;
  background-image: url(../images/top_new/bg_link.jpg);
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .p-top-link {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-link {
    padding: 10rem 0;
  }
}

.p-top-link__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  margin: 9rem auto 0;
  padding: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 519px) {
  .p-top-link__container {
    display: block;
    margin-top: 8rem;
    text-align: center;
  }
}

.p-top-link__logo {
  -ms-flex-line-pack: center;
      align-content: center;
}
.p-top-link__logo img {
  width: auto;
  height: 3.2rem;
}

.p-top-link__sepa {
  display: inline-block;
  margin: 0 4rem;
  width: 0.5px;
  height: 6.3rem;
  background-color: #333;
}
@media screen and (max-width: 519px) {
  .p-top-link__sepa {
    margin: 2rem 0;
    width: 100%;
    height: 0.5px;
  }
}

.p-single__title {
  margin-top: -1.5rem;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .p-single__title {
    margin-top: -1rem;
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-single__title {
    font-size: 3.2rem;
  }
}

.p-single__date {
  display: block;
  margin: 2rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 959px) {
  .p-single__date {
    font-size: 1.2em;
  }
}

.p-single__content {
  margin-top: 8rem;
}
@media screen and (max-width: 959px) {
  .p-single__content {
    margin-top: 6rem;
  }
}
.p-single__content h2, .p-single__content h3, .p-single__content h4 {
  position: relative;
  margin: 6rem 0 3rem;
}
.p-single__content h2 {
  padding-bottom: 1.4rem;
  font-size: 2.125em;
}
.p-single__content h2::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 13rem;
  height: 0.5rem;
  background-color: #003cb4;
}
.p-single__content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #daedff;
}
.p-single__content h3 {
  padding: 0.63rem 2.8rem;
  font-size: 1.75em;
  background-color: #daedff;
}
.p-single__content h3::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.87rem;
  height: 100%;
  background-color: #003cb4;
}
.p-single__content h4 {
  padding-left: 2.8rem;
  font-size: 1.5em;
  line-height: 1.3;
}
.p-single__content h4::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0.87rem;
  height: 100%;
  background-color: #003cb4;
}

.p-single__back {
  margin: 10rem auto 0;
}
@media screen and (max-width: 519px) {
  .p-single__back {
    margin-top: 6rem;
  }
}

.p-case__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
}
@media screen and (max-width: 519px) {
  .p-case__tags {
    gap: 1rem;
  }
}

.p-case__term {
  padding: 0 1.3rem;
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #1f338b;
  border-radius: 0.5rem;
}
@media screen and (max-width: 959px) {
  .p-case__term {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-case__term {
    padding: 0 1rem;
    font-size: 1em;
  }
}

.p-case__term--red {
  background-color: #ff0000;
}

.p-case__title {
  margin-top: 4rem;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .p-case__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-case__title {
    margin-top: 3rem;
    font-size: 3.2rem;
  }
}

.p-case__lease {
  margin-top: 3rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .p-case__lease {
    margin-top: 2rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-case__lease {
    margin-top: 1rem;
    font-size: 2.3rem;
  }
}

.p-case__eyecatch {
  margin: 8rem auto 0;
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 959px) {
  .p-case__eyecatch {
    margin-top: 6rem;
  }
}
.p-case__eyecatch img {
  width: 100%;
  height: auto;
}

.p-case__company {
  position: relative;
  margin-top: 10rem;
  padding: 7.5rem;
  background-color: #fbf7ef;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .p-case__company {
    margin-top: 8rem;
    padding: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-case__company {
    margin-top: 6rem;
    padding: 2rem;
  }
}

.p-case__company-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 2.7rem;
  width: 100%;
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 519px) {
  .p-case__company-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-case__company-logo {
  padding-right: 7rem;
  width: 50%;
  text-align: right;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 959px) {
  .p-case__company-logo {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-case__company-logo {
    padding-right: 0;
    padding-bottom: 3rem;
    width: 100%;
  }
}
.p-case__company-logo img {
  width: 80%;
}
@media screen and (max-width: 959px) {
  .p-case__company-logo img {
    width: 100%;
  }
}

.p-case__company-info {
  padding-left: 5rem;
  width: 50%;
  font-size: 2rem;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.5;
  word-wrap: break-word;
  border-left: 1px solid #003cb4;
}
@media screen and (max-width: 959px) {
  .p-case__company-info {
    padding-left: 3rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-case__company-info {
    padding-top: 2rem;
    padding-left: 0;
    width: 100%;
    font-size: 1.6rem;
    border-top: 1px solid #003cb4;
    border-left: none;
  }
}

.p-case__company-name {
  padding-bottom: 1.5rem;
  font-size: 1.15em;
}

.p-sus__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(8rem, 6.15vw);
}
@media screen and (max-width: 1230px) {
  .p-sus__menus {
    gap: 3vw;
  }
}
@media screen and (max-width: 959px) {
  .p-sus__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
}

.p-sus__menu {
  padding: 3.5rem 5rem 6rem;
  width: 50%;
  background-color: #fbf7ef;
  border-radius: 3rem;
}
@media screen and (max-width: 1230px) {
  .p-sus__menu {
    padding: 3rem 3rem 5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-sus__menu {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .p-sus__menu {
    padding: 2rem 1.5rem 3rem;
  }
}

.p-sus__menu-head {
  position: relative;
  padding-bottom: 0.7rem;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-sus__menu-head {
    font-size: 2.3rem;
  }
}
.p-sus__menu-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7rem;
  height: 0.3rem;
  background-color: #ff0000;
}

.p-sus__btn {
  margin-top: 2.4rem;
}
.p-sus__btn:first-of-type {
  margin-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-sus__btn:first-of-type {
    margin-top: 3rem;
  }
}

.p-sus__btn2 {
  margin: 10rem auto 0;
  max-width: 55rem;
  border: 1px solid #003cb4;
}
@media screen and (max-width: 959px) {
  .p-sus__btn2 {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-sus__btn2 {
    margin-top: 6rem;
  }
}

.p-sus__list {
  margin-top: 13rem;
}
@media screen and (max-width: 959px) {
  .p-sus__list {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-sus__list {
    margin-top: 7rem;
  }
}

.p-sus__table {
  margin-top: 4.5rem;
}
@media screen and (max-width: 1000px) {
  .p-sus__table {
    overflow: scroll;
  }
}

.p-sus__table-caution {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-sus__table-caution {
    display: block;
  }
}

.p-sus__sdgs {
  margin-top: 13rem;
}
@media screen and (max-width: 959px) {
  .p-sus__sdgs {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-sus__sdgs {
    margin-top: 7rem;
  }
}
.p-sus__sdgs p {
  margin-top: 3.5rem;
}
.p-sus__sdgs img {
  display: block;
  margin: 6rem auto;
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 519px) {
  .p-sus__sdgs img {
    margin-top: 4rem;
  }
}

.p-esg__info {
  margin-top: 3.5rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-esg__info {
    font-size: 1.8rem;
  }
}

.p-esg__container {
  margin-top: 9rem;
}
@media screen and (max-width: 519px) {
  .p-esg__container {
    margin-top: 8rem;
  }
}

.p-esg__content {
  margin-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-esg__content {
    margin-top: 3rem;
  }
}

.p-esg__subsidy {
  margin: 14.7rem auto 0;
  padding: 4rem 0 6.7rem;
  width: 100%;
  max-width: 100rem;
  text-align: center;
  background-color: #fff;
  border: 1px solid #003cb4;
  border-radius: 3rem;
}
@media screen and (max-width: 519px) {
  .p-esg__subsidy {
    margin-top: 10rem;
    padding: 3rem 0 4rem;
  }
}
.p-esg__subsidy h4 {
  position: relative;
  padding-bottom: 1rem;
  color: #003cb4;
  font-size: 1.75em;
}
.p-esg__subsidy h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 7rem;
  height: 0.3rem;
  background-color: #ff0000;
}
.p-esg__subsidy a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 5.5rem;
  padding: 2.8rem 2rem;
  color: white;
  font-size: 1.8rem;
  background-color: #003cb4;
}
@media screen and (max-width: 959px) {
  .p-esg__subsidy a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-esg__subsidy a {
    gap: 1.5rem;
    margin-top: 4rem;
    font-size: 1.6rem;
    text-align: left;
  }
}
.p-esg__subsidy a::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  width: 4rem;
  min-width: 3rem;
  height: auto;
  background-image: url(../images/common/icon_right_wh02.png);
  background-size: contain;
}

.p-esg__btn {
  width: 51rem;
  border-width: 1.5px;
}
@media screen and (max-width: 519px) {
  .p-esg__btn::after {
    right: 1.5rem;
  }
}

.p-esg__space {
  margin-top: 13rem;
}
@media screen and (max-width: 959px) {
  .p-esg__space {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-esg__space {
    margin-top: 7rem;
  }
}

.p-rec__container {
  position: relative;
  margin: 0 auto;
  max-width: 120rem;
}

.p-rec__content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .p-rec__content {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec__content {
    position: initial;
    -webkit-transform: none;
            transform: none;
    font-size: 1.5rem;
  }
}
.p-rec__content h2 {
  font-size: 2.7em;
  background: #1E9CD7;
  background: -webkit-gradient(linear, left top, right top, from(rgb(30, 156, 215)), color-stop(55%, rgb(0, 117, 190)), to(rgb(0, 91, 151)));
  background: linear-gradient(90deg, rgb(30, 156, 215) 0%, rgb(0, 117, 190) 55%, rgb(0, 91, 151) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 959px) {
  .p-rec__content h2 {
    font-size: 5.9vw;
  }
}
@media screen and (max-width: 519px) {
  .p-rec__content h2 {
    font-size: 9vw;
  }
}
.p-rec__content p {
  margin-top: 5.5rem;
  line-height: 2.6;
}
@media screen and (max-width: 959px) {
  .p-rec__content p {
    margin-top: 2rem;
    line-height: 2;
  }
}

.p-rec__img {
  display: block;
  margin: 0 0 0 auto;
  width: 50%;
}
@media screen and (max-width: 519px) {
  .p-rec__img {
    margin-top: 3rem;
    width: 100%;
  }
}

.p-rec-info__table {
  padding: 5rem;
  background-color: #fbf7ef;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .p-rec-info__table {
    padding: 3rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table {
    padding: 1rem;
  }
}

.p-rec-info__table-wrap {
  padding: 5rem;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 959px) {
  .p-rec-info__table-wrap {
    padding: 3rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap {
    padding: 3rem 1.5rem;
  }
}
.p-rec-info__table-wrap table {
  width: 100%;
  font-size: 1.8rem;
  border-collapse: collapse;
}
@media screen and (max-width: 959px) {
  .p-rec-info__table-wrap table {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table {
    font-size: 1.6rem;
  }
}
.p-rec-info__table-wrap table tr:first-child th, .p-rec-info__table-wrap table tr:first-child td {
  padding: 6rem 4rem;
}
@media screen and (max-width: 959px) {
  .p-rec-info__table-wrap table tr:first-child th, .p-rec-info__table-wrap table tr:first-child td {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table tr:first-child th, .p-rec-info__table-wrap table tr:first-child td {
    padding: 0 2rem 1.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-rec-info__table-wrap table tr:first-child th {
    padding-right: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table tr:first-child th {
    padding: 1.5rem 2rem 0.5rem;
  }
}
.p-rec-info__table-wrap table tr:last-child th, .p-rec-info__table-wrap table tr:last-child td {
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table tr:last-child th {
    border-bottom: none;
  }
}
.p-rec-info__table-wrap table th, .p-rec-info__table-wrap table td {
  padding: 1.2rem 4rem;
  border-top: 1px solid #b3b3b3;
}
@media screen and (max-width: 959px) {
  .p-rec-info__table-wrap table th, .p-rec-info__table-wrap table td {
    padding: 1.2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table th, .p-rec-info__table-wrap table td {
    display: block;
    padding: 0 2rem 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .p-rec-info__table-wrap table th {
    padding-right: 0;
    width: 11rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table th {
    padding: 1.5rem 2rem 0.5rem;
    width: 100%;
    font-size: 1.05em;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__table-wrap table td {
    border-top: none;
  }
}

.p-rec-info__2card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  margin: 0 auto 0;
}
@media screen and (max-width: 959px) {
  .p-rec-info__2card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__2card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-rec-info__card {
  position: relative;
  width: calc(50% - 2.5rem);
  height: auto;
  background-color: #fff;
  border: 1px solid #003cb4;
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .p-rec-info__card {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__card {
    width: 100%;
  }
}

.p-rec-info__card-head {
  padding: 2rem;
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  background-color: #003cb4;
}
@media screen and (max-width: 959px) {
  .p-rec-info__card-head {
    font-size: 2.2rem;
  }
}

.p-rec-info__card-content {
  padding: 6.5rem 4.5rem 8rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-rec-info__card-content {
    padding: 4rem 3rem 5rem;
    font-size: 1.7rem;
  }
}

.p-rec-info__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 5rem;
  padding-bottom: 13rem;
  font-size: 1.8rem;
  text-align: left;
  line-height: 2.4;
}
@media screen and (max-width: 959px) {
  .p-rec-info__address {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__address {
    font-size: 1.6rem;
  }
}

.p-rec-info__address-wrap {
  width: calc(50% - 2.5rem);
}
@media screen and (max-width: 959px) {
  .p-rec-info__address-wrap {
    width: 100%;
  }
}

.p-rec-info__address-btn {
  margin: 5rem auto 0;
  padding: 0.5rem 5rem;
  aspect-ratio: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 6.3rem;
  border-color: #003cb4;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .p-rec-info__address-btn {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-rec-info__address-btn {
    padding: 0.5rem 2rem;
    width: 100%;
    font-size: 1em;
  }
}
.p-rec-info__address-btn::after {
  display: none;
}

.p-inter__top {
  position: relative;
  margin: 0 auto 0 0;
  aspect-ratio: 1685/692;
  width: 87vw;
  height: auto;
}
@media screen and (max-width: 1500px) {
  .p-inter__top {
    width: 94vw;
  }
}
@media screen and (max-width: 959px) {
  .p-inter__top {
    width: 98vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__top {
    aspect-ratio: 1.6;
    width: 100vw;
  }
}

.p-inter__card {
  position: absolute;
  z-index: 4;
  bottom: -0.5px;
  right: 9%;
  padding: 4% 2.3% 3%;
  width: 25%;
  background-color: #fff;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .p-inter__card {
    right: 8%;
    padding: 3% 2% 0;
    width: 33%;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__card {
    top: 60%;
    bottom: auto;
    right: 0%;
    padding: 1.5rem 1rem;
    width: 60%;
  }
}

.p-inter__title {
  color: #003cb4;
  font-size: min(2.8rem, 1.45vw);
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .p-inter__title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__title {
    font-size: 1.7rem;
  }
}

.p-inter__bar {
  margin: 13% 0;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .p-inter__bar {
    margin: 8% 0;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__bar {
    margin: 1.4rem 0;
  }
}

.p-inter__name {
  font-size: min(2.3rem, 1.19vw);
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-inter__name {
    font-size: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__name {
    font-size: 1.5rem;
  }
}
.p-inter__name small {
  display: block;
}
.p-inter__name span {
  display: block;
  color: #003cb4;
  font-size: 0.6em;
  font-weight: bold;
}

.p-inter__birth {
  margin-top: 0.5rem;
  font-size: 0.9em;
}

.p-inter__hobby {
  font-size: 0.9em;
}

.p-inter__mv {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 23%;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 519px) {
  .p-inter__mv {
    left: 0;
  }
}

.p-inter__monokuro {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 23%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .p-inter__monokuro {
    display: none;
  }
}
.p-inter__monokuro img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.3;
}

.p-inter__num {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  aspect-ratio: 572/513;
  width: auto;
  height: 65%;
  color: white;
  background-image: url(../images/interview/bg_top.png);
  background-size: 100% auto;
}
@media screen and (max-width: 519px) {
  .p-inter__num {
    height: 70%;
  }
}
.p-inter__num small {
  position: absolute;
  top: 12%;
  left: 29%;
  font-size: min(2.6rem, 1.35vw);
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-inter__num small {
    top: 1rem;
    left: auto;
    right: 1rem;
    font-size: 1rem;
  }
}
.p-inter__num span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: absolute;
  top: 23%;
  left: 29%;
  font-size: min(7rem, 3.5vw);
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .p-inter__num span {
    gap: 0.5rem;
    top: 3rem;
    left: auto;
    right: 1rem;
    font-size: 3rem;
  }
}
.p-inter__num span img {
  width: min(3.4rem, 1.77vw);
}
@media screen and (max-width: 519px) {
  .p-inter__num span img {
    width: 1.4rem;
  }
}

.p-inter__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 20rem auto 0 0;
  aspect-ratio: 1562/647;
  width: 80vw;
}
@media screen and (max-width: 1500px) {
  .p-inter__section {
    width: 90vw;
  }
}
@media screen and (max-width: 959px) {
  .p-inter__section {
    margin-top: 13rem;
    margin-bottom: 27rem;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__section {
    margin: 10rem 0 0;
    aspect-ratio: 1.6;
    width: 100vw;
  }
}
.p-inter__section:first-of-type {
  margin-top: 16rem;
}

.p-inter__section--reverse {
  margin-right: 0;
  margin-left: auto;
}

.p-inter__q {
  position: relative;
  width: 52%;
  height: 35%;
  background-image: url(../images/interview/bg_head_01.jpg);
  background-size: auto 110%;
  background-position: 0% 50%;
}
@media screen and (max-width: 519px) {
  .p-inter__q {
    height: 75%;
    background-position: 45% 50%;
  }
}
.p-inter__q h2 {
  position: absolute;
  top: 50%;
  left: calc(100% - 52rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 1.2rem 2.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #003cb4;
  font-size: min(2.4rem, 1.25vw);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  border: 1px solid #003cb4;
}
@media screen and (max-width: 1900px) {
  .p-inter__q h2 {
    left: calc(100% - 54rem);
  }
}
@media screen and (max-width: 1200px) {
  .p-inter__q h2 {
    left: 2vw;
  }
}
@media screen and (max-width: 959px) {
  .p-inter__q h2 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__q h2 {
    left: auto;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    padding: 1rem;
    font-size: 1.4rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 88%;
  }
}

.p-inter__q--reverse {
  background-image: url(../images/interview/bg_head_02.jpg);
  background-position: 80% 50%;
}
@media screen and (max-width: 519px) {
  .p-inter__q--reverse {
    background-position: 45% 50%;
  }
}
.p-inter__q--reverse h2 {
  left: auto;
  right: calc(100% - 52rem);
}
@media screen and (max-width: 1900px) {
  .p-inter__q--reverse h2 {
    right: calc(100% - 54rem);
  }
}
@media screen and (max-width: 1200px) {
  .p-inter__q--reverse h2 {
    right: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__q--reverse h2 {
    right: 50%;
  }
}

.p-inter__img {
  width: 48%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.p-inter__img--reverse {
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.p-inter__content {
  position: absolute;
  top: 35%;
  left: 0;
  width: 61%;
  min-height: 65%;
  padding: 4% 4% 0 2%;
  text-align: right;
  -ms-flex-line-pack: end;
      align-content: end;
  background-color: #fff;
  border-top-right-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .p-inter__content {
    top: 35%;
    bottom: auto;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__content {
    position: initial;
    top: 75%;
    margin-top: -15.5%;
    padding: 1.5rem 1.5rem;
    width: 95%;
    font-size: 1.3rem;
  }
}
.p-inter__content span {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.5;
}
.p-inter__content p {
  margin: 3% 0 0 auto;
  max-width: 60rem;
  text-align: justify;
}

.p-inter__content--reverse {
  left: auto;
  right: 0;
  padding: 4% 2% 0 4%;
  text-align: left;
  border-top-left-radius: 2rem;
  border-top-right-radius: 0;
}
@media screen and (max-width: 519px) {
  .p-inter__content--reverse {
    margin-right: 0;
    margin-left: auto;
  }
}
.p-inter__content--reverse p {
  margin-left: 0;
}

.p-inter__schedule {
  position: relative;
  margin: 20rem auto 0 0;
  width: 80vw;
  padding: 16rem 0 15rem;
  color: white;
  background-color: #003cb4;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
@media screen and (max-width: 1500px) {
  .p-inter__schedule {
    width: 90vw;
  }
}
@media screen and (max-width: 959px) {
  .p-inter__schedule {
    padding: 10rem 0 8rem;
    width: 100vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__schedule {
    margin-top: 12rem;
  }
}

.p-inter__schedule-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 0 auto;
  max-width: 108rem;
}
@media screen and (max-width: 1230px) {
  .p-inter__schedule-wrap {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-wrap {
    margin-left: 2rem;
  }
}

.p-inter__schedule-head {
  position: relative;
  padding: 3.3% 4%;
  color: white;
  font-size: min(3.3rem, 1.71vw);
  font-weight: bold;
  line-height: 1.6;
  border: 1px solid white;
  border-right: none;
}
@media screen and (max-width: 959px) {
  .p-inter__schedule-head {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-head {
    font-size: 2rem;
  }
}
.p-inter__schedule-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003cb4;
  mix-blend-mode: multiply;
}
.p-inter__schedule-head::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/interview/bg_schedule.jpg);
  background-size: cover;
}
.p-inter__schedule-head span {
  display: block;
  font-size: 0.6em;
}
.p-inter__schedule-head img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-inter__schedule-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0.2;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-bg {
    width: 60%;
  }
}
.p-inter__schedule-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #003cb4;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 60, 180, 0)), to(rgb(0, 60, 180)));
  background: linear-gradient(90deg, rgba(0, 60, 180, 0) 0%, rgb(0, 60, 180) 100%);
}
.p-inter__schedule-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-inter__caution {
  display: block;
  margin: 1rem 4rem 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
}
@media screen and (max-width: 959px) {
  .p-inter__caution {
    margin-right: 2rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__caution {
    font-size: 1rem;
  }
}

.p-inter__schedule-content {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  grid-template-rows: auto auto;
  gap: 15rem 12rem;
  margin: 10% 11% 0 0;
}
@media screen and (max-width: 959px) {
  .p-inter__schedule-content {
    gap: 3rem 2rem;
    margin: 10% 2rem 0 0;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-content {
    grid-template-columns: 1fr 1fr;
  }
}
.p-inter__schedule-content table {
  grid-column: 1/2;
  grid-row: 1/3;
  border-collapse: collapse;
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-content table {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
.p-inter__schedule-content table tr:last-child th, .p-inter__schedule-content table tr:last-child td {
  border: none;
}
.p-inter__schedule-content table th, .p-inter__schedule-content table td {
  padding: 2rem 0;
  border-bottom: 1px solid white;
}
.p-inter__schedule-content table th {
  width: 27%;
  font-family: "Noto Serif", serif;
  font-size: min(2.6rem, 1.35vw);
}
@media screen and (max-width: 959px) {
  .p-inter__schedule-content table th {
    width: 19%;
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-content table th {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 959px) {
  .p-inter__schedule-content table td {
    font-size: 1.75vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-content table td {
    font-size: 1.3rem;
  }
}
.p-inter__schedule-content table td span {
  display: block;
  font-size: 1.2em;
}
.p-inter__schedule-content img {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-content img {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-inter__schedule-content img:nth-of-type(2) {
  grid-row: 2/3;
}
@media screen and (max-width: 519px) {
  .p-inter__schedule-content img:nth-of-type(2) {
    grid-column: 2/3;
  }
}

.p-inter__others {
  position: relative;
  margin-top: 26rem;
  padding: 27rem 0 13.5rem;
  background-color: #f0f0f0;
}
@media screen and (max-width: 959px) {
  .p-inter__others {
    margin-top: 18rem;
    padding: 15rem 0 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__others {
    padding: 13rem 0 8rem;
  }
}

.p-inter__others-head {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2rem 5.8rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border: 0.28rem solid #003cb4;
  border-radius: 2rem;
}
@media screen and (max-width: 519px) {
  .p-inter__others-head {
    padding: 1.5rem 2.5rem;
  }
}
.p-inter__others-head::after {
  content: "";
  position: absolute;
  top: -0.28rem;
  right: -0.28rem;
  width: calc(50% + 0.28rem);
  height: calc(100% + 0.56rem);
  border: 0.28rem solid #ff0000;
  border-left: none;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.p-inter__others-head-en {
  color: #1f338b;
  font-size: min(5.4rem, 2.81vw);
}
@media screen and (max-width: 959px) {
  .p-inter__others-head-en {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__others-head-en {
    font-size: 2.8rem;
  }
}

.p-inter__others-head-ja {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  padding: 0 1.8rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: min(2rem, 1.04vw);
  font-weight: 900;
  background-color: #f0f0f0;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .p-inter__others-head-ja {
    font-size: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__others-head-ja {
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
  }
}

.p-inter__others-slides article {
  margin: 0 6rem;
  font-size: min(1.2rem, 0.62vw);
}
@media screen and (max-width: 959px) {
  .p-inter__others-slides article {
    margin: 0 2rem;
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__others-slides article {
    margin: 0 0.7rem;
    font-size: 1.3rem;
  }
  .p-inter__others-slides article .c-interview__name {
    font-size: 1em;
  }
}

.p-inter__btn {
  display: block;
  margin: 15rem auto 0;
  padding: 0.2rem 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(2rem, 1.04vw);
  font-weight: 900;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #333;
}
@media screen and (max-width: 959px) {
  .p-inter__btn {
    margin-top: 10rem;
    font-size: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-inter__btn {
    margin-top: 8rem;
    font-size: 1.4rem;
  }
}

.p-message__head {
  font-size: 3.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 959px) {
  .p-message__head {
    font-size: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-message__head {
    font-size: 2.6rem;
  }
}

.p-message__content {
  margin-top: 5rem;
}
@media screen and (max-width: 519px) {
  .p-message__content {
    margin-top: 3rem;
  }
}
.p-message__content p {
  margin-top: 3rem;
}
@media screen and (max-width: 519px) {
  .p-message__content p {
    margin-top: 2rem;
  }
}

.p-message__daihyo {
  margin-top: 4rem;
  text-align: right;
}
.p-message__daihyo img {
  width: 12rem;
}
@media screen and (max-width: 959px) {
  .p-message__daihyo img {
    width: 11rem;
  }
}

.p-lease__btn {
  padding: 2.2rem 5rem;
  max-width: 65rem;
  height: auto;
  max-height: none;
  border: 1px solid #003cb4;
}
@media screen and (max-width: 519px) {
  .p-lease__btn {
    padding: 1.3rem 5.5rem 1.3rem 2rem;
    line-height: 1.5;
  }
}

.p-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 519px) {
  .p-company {
    gap: 3rem;
  }
}

.p-company__card {
  width: calc(33.333% - 2.6666666667rem);
}
@media screen and (max-width: 959px) {
  .p-company__card {
    width: 100%;
  }
}

.p-company__head {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-company__head {
    font-size: 2rem;
  }
}

.p-company__address {
  margin-top: 1.5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 519px) {
  .p-company__address {
    font-size: 1.5rem;
  }
}

.p-company__images {
  margin-top: 3rem;
}
@media screen and (max-width: 959px) {
  .p-company__images {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-company__images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-company__images iframe {
  aspect-ratio: 60/45;
  width: 100%;
  height: auto;
}

.p-qa__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 2rem;
}

.p-qa__btn {
  width: calc(25% - 1.5rem);
  max-height: none;
  color: #333;
  font-size: 1.9rem;
  white-space: nowrap;
  border: 1px solid #003cb4;
}
@media screen and (max-width: 1290px) {
  .p-qa__btn {
    width: calc(50% - 1rem);
    font-size: 2rem;
  }
}
@media screen and (max-width: 1190px) {
  .p-qa__btn {
    padding: 1rem 3rem;
    width: calc(50% - 1rem);
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .p-qa__btn {
    width: 100%;
    font-size: 1.6rem;
  }
}
.p-qa__btn::after {
  right: 2rem;
  width: 11%;
  max-width: 4rem;
  -webkit-transform: translate(0%, -50%) rotate(90deg);
          transform: translate(0%, -50%) rotate(90deg);
}
@media screen and (max-width: 1190px) {
  .p-qa__btn::after {
    right: 2rem;
  }
}

.p-qa__anchor {
  margin-top: -1rem;
  padding-top: 1rem;
}

.p-qa__accordion {
  margin-top: 4.8rem;
  padding: 2.5rem 5rem;
  background-color: #fff;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .p-qa__accordion {
    margin-top: 3rem;
    padding: 2rem 4rem 2rem 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-qa__accordion {
    padding: 2rem 1.5rem;
  }
}
.p-qa__accordion:first-of-type {
  margin-top: 0;
}

.p-qa__q {
  position: relative;
  padding-left: 5rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  text-wrap: auto;
}
@media screen and (max-width: 959px) {
  .p-qa__q {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-qa__q {
    padding-left: 3rem;
    padding-right: 3rem;
    font-size: 1.6rem;
  }
}
.p-qa__q span {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-qa__q span {
    font-size: 2rem;
    line-height: unset;
  }
}
@media screen and (max-width: 519px) {
  .p-qa__q span {
    font-size: 1.6rem;
  }
}
.p-qa__q span:first-of-type {
  position: absolute;
  left: 0;
  color: #003cb4;
}
.p-qa__q span:last-of-type {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  aspect-ratio: 1;
  width: 4rem;
  height: auto;
  background-color: #003cb4;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .p-qa__q span:last-of-type {
    right: -3.2rem;
    width: 3rem;
  }
}
@media screen and (max-width: 959px) {
  .p-qa__q span:last-of-type {
    right: -2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-qa__q span:last-of-type {
    right: 0;
    width: 2.3rem;
  }
}
.p-qa__q span:last-of-type::before, .p-qa__q span:last-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.p-qa__q span:last-of-type::after {
  width: 2px;
  height: 40%;
}

.p-qa__q--open span:last-of-type::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-qa__q--open span:last-of-type::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-qa__a {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.p-qa__a--open {
  grid-template-rows: 1fr;
}

.p-qa__a-wrapper {
  overflow: hidden;
}

.p-qa__a-wrap {
  position: relative;
  margin-top: 4rem;
  padding-left: 5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-qa__a-wrap {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-qa__a-wrap {
    padding-left: 3rem;
    font-size: 1.4rem;
  }
}
.p-qa__a-wrap span {
  position: absolute;
  left: 0;
  color: #ff0000;
  font-size: 2.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .p-qa__a-wrap span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-qa__a-wrap span {
    font-size: 1.6rem;
  }
}
.p-qa__a-wrap ol {
  counter-reset: listnum;
}
.p-qa__a-wrap ol li {
  position: relative;
  padding-left: 2.5rem;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .p-qa__a-wrap ol li {
    padding-left: 2rem;
  }
}
.p-qa__a-wrap ol li::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  position: absolute;
  left: 0.5rem;
}

.p-history {
  margin-top: 10rem;
}
@media screen and (max-width: 959px) {
  .p-history {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .p-history {
    margin-top: 6rem;
  }
}

.p-history__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27rem;
}
@media screen and (max-width: 959px) {
  .p-history__tab {
    gap: 17rem;
  }
}
@media screen and (max-width: 519px) {
  .p-history__tab {
    gap: 6rem;
  }
}
.p-history__tab h2 {
  width: 35vw;
  max-width: 50rem;
  color: #003cb4;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3rem;
  border: 1px solid #333;
  border-bottom: none;
}
@media screen and (max-width: 519px) {
  .p-history__tab h2 {
    width: calc(50% - 3rem);
    font-size: 1.3em;
    letter-spacing: 0;
  }
}

.p-history__table {
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-history__table {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-history__table {
    font-size: 1.4rem;
  }
}

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

.p-history__year {
  padding: 2.5rem 0;
  width: 12rem;
  color: white;
  text-align: center;
  line-height: 1.2;
  background-color: #003cb4;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 959px) {
  .p-history__year {
    width: 9rem;
  }
}
@media screen and (max-width: 519px) {
  .p-history__year {
    width: 6rem;
  }
}
.p-history__year span {
  display: block;
  font-size: 2.2em;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-history__year span {
    font-size: 2em;
  }
}
@media screen and (max-width: 519px) {
  .p-history__year span {
    font-size: 1.6em;
  }
}
.p-history__year small {
  display: block;
  font-size: 1.11em;
}
@media screen and (max-width: 959px) {
  .p-history__year small {
    font-size: 1em;
  }
}

.p-history__left,
.p-history__right {
  position: relative;
  padding: 4.7rem 0 2.5rem;
  width: calc(50% - 6rem);
  line-height: 1.5;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 959px) {
  .p-history__left,
  .p-history__right {
    padding-top: 3.6rem;
    width: calc(50% - 4.5rem);
  }
}
@media screen and (max-width: 519px) {
  .p-history__left,
  .p-history__right {
    width: calc(50% - 3rem);
  }
}
.p-history__left::before,
.p-history__right::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  width: 5rem;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .p-history__left::before,
  .p-history__right::before {
    width: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-history__left::before,
  .p-history__right::before {
    width: 3rem;
  }
}

.p-history__left {
  padding-left: 1rem;
  text-align: right;
  background-color: #ebf5fd;
}
.p-history__left::before {
  right: 0;
  background-color: #c4def5;
}

.p-history__right {
  padding-right: 1rem;
  text-align: left;
  background-color: rgba(223, 221, 211, 0.46);
}
.p-history__right::before {
  left: 0;
  background-color: #dfddd3;
}

.p-history__event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}
@media screen and (max-width: 959px) {
  .p-history__event {
    gap: 1rem;
  }
}

.p-history__event--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-history__month {
  padding-right: 1rem;
  width: 5rem;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .p-history__month {
    padding-right: 0.7rem;
    width: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-history__month {
    padding-right: 0.1rem;
    width: 3rem;
  }
}

.p-history__content {
  width: calc(100% - 5rem - 2rem);
}
@media screen and (max-width: 959px) {
  .p-history__content {
    width: calc(100% - 4rem - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .p-history__content {
    width: calc(100% - 3rem - 1rem);
  }
}
.p-history__content span {
  display: block;
  padding-bottom: 0.5rem;
  font-size: 1.22em;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-history__content span {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 519px) {
  .p-history__content span {
    font-size: 1.05em;
  }
}

/* utility
------------------------------------------------ */
.u-pb0 {
  padding-bottom: 0;
}

.u-pr1 {
  padding-right: 1rem;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

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