@charset "UTF-8";

/*==================================
# 色・フォントの設定
===================================*/
:root {
  /* カラー */
  --black: #1A1A1A; /* フォントカラー */
  --color-main: #007286; /* メインカラー */
  --color-accent: #0E2B72; /* アクセントカラー */
  --gray: #CCCCCC;
  --red: #E50C21;
  --light-gray: #F2F2F2;
  --color-bg: #F8F8F8;
  --color-bg-accent: #E1EAED;
  --white: #fff;

  /* フォント */
  --font-main: "Zen Kaku Gothic New", sans-serif;
}


/*==================================
# ルートフォント
===================================*/
html {
  font-size: 62.5%;
}
@media (max-width: 1200px) and (min-width: 768px) {
  html {
    font-size: 0.83333vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--font-main);
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1.9375;
  font-weight: 500;
  background-color: var(--color-bg);
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 2;
  }
}

body.page-template-page-entry-php,
body.post-type-archive-entry,
body.single-entry {
  background-color: var(--white);
}

main {
  overflow-x: hidden;
}

picture {
  height: 100%;
}

a,
button {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

button:active {
  background-color: transparent !important;
  background-color: initial !important; /* active状態のスタイルを無効化 */
  color: #000 !important;
  color: initial !important;
  outline: none; /* フォーカス時のアウトラインを無効化（必要に応じて） */
}

/*==================================
# リセットCSS
===================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}


@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*==================================
# インナー
===================================*/
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.l-inner--sm {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 108.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-inner--sm {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.l-inner--404 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 107.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-inner--404 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

/*==================================
# 共通パーツ
===================================*/
.c-btn01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.9rem 1rem 0.9rem 3.3rem;
  background-color: var(--color-accent);
  border-radius: 100vh;
  min-width: 28rem;
  position: relative;
  border: 2px solid var(--color-accent);
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    font-size: 1.5rem;
    min-width: 26rem;
  }
}

.c-btn01__arrow {
  display: inline-block;
  background-color: var(--white);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn01__arrow {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.c-btn01__arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn01.c-btn01--mv {
  min-width: 26rem;
  padding: 1.1rem 1rem 1.1rem 5.5rem;
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, .3);
          box-shadow: 3px 3px 4px rgba(0, 0, 0, .3);
}
@media screen and (max-width: 767px) {
  .c-btn01.c-btn01--mv {
    min-width: 23rem;
    padding: 1rem 1rem 1rem 5.3rem;
  }
}

@media screen and (max-width: 767px) {
  .c-btn01.c-btn01--entry {
    font-size: 2rem;
    min-width: 31.5rem;
  }
}
.c-btn01.c-btn01--entry .c-btn01__arrow {
  display: inline-block;
  background-color: var(--white);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn01.c-btn01--entry .c-btn01__arrow {
    width: 4.2rem;
    height: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn01.c-btn01--entry .c-btn01__arrow::before {
    width: 1.7rem;
    height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-btn01.c-btn01--entry::after {
    width: 4.2rem;
    height: 4.2rem;
    right: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-btn01.c-btn01--entry::before {
    width: 1.6rem;
    height: 1.4rem;
    right: 2.2rem;
  }
}

@media (any-hover: hover) {
  .c-btn01:hover {
    background-color: var(--white);
    color: var(--color-accent);
  }
  .c-btn01:hover .c-btn01__arrow {
    background-color: var(--color-accent);
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
  .c-btn01:hover .c-btn01__arrow::before {
    background-color: var(--white);
  }
}
.c-btn02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    font-size: 1.6rem;
  }
}

.c-btn02__arrow {
  display: inline-block;
  background-color: var(--color-main);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn02__arrow {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.c-btn02__arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-btn02__arrow::before {
    width: 1.2rem;
    height: 1rem;
  }
}

@media (any-hover: hover) {
  .c-btn02:hover {
    color: var(--color-main);
  }
  .c-btn02:hover .c-btn02__arrow {
    -webkit-transform: translateX(0.7rem);
            transform: translateX(0.7rem);
  }
}
.c-btn03 {
  display: inline-block;
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  min-width: 22.5rem;
  border: 1px solid var(--color-accent);
  border-radius: 100vh;
  padding: 1rem 3rem 1rem 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn03 {
    font-size: 1.4rem;
    min-width: 20.3rem;
    padding: 0.8rem 3rem 0.8rem 2rem;
  }
}

.c-btn03::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1rem;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .c-btn03.c-btn03--drawer {
    font-size: 1.6rem;
    min-width: 22.3rem;
  }
}

@media (any-hover: hover) {
  .c-btn03:hover {
    color: var(--white);
    background-color: var(--color-accent);
  }
  .c-btn03:hover::before {
    background-color: var(--white);
    right: 1.2rem;
  }
}
.c-btn04 {
  display: inline-block;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.9rem 1rem 0.9rem 1rem;
  background-color: var(--color-accent);
  border-radius: 100vh;
  min-width: 28rem;
  border: 2px solid var(--color-accent);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn04 {
    font-size: 1.5rem;
    min-width: 32rem;
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
}

@media (any-hover: hover) {
  .c-btn04:hover {
    background-color: var(--white);
    color: var(--color-accent);
  }
}
.c-btn05 {
  display: inline-block;
  gap: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 3rem 0.9rem 1rem;
  background-color: var(--white);
  border-radius: 100vh;
  min-width: 28rem;
  position: relative;
  border: 2px solid var(--color-main);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn05 {
    font-size: 1.5rem;
    min-width: 26rem;
  }
}

.c-btn05__arrow {
  display: inline-block;
  background-color: var(--color-main);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  text-align: center;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn05__arrow {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.c-btn05__arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .c-btn05:hover {
    background-color: var(--color-main);
    color: var(--white);
  }
  .c-btn05:hover .c-btn05__arrow {
    background-color: var(--white);
    -webkit-transform: translateY(-50%) translateX(0.5rem);
            transform: translateY(-50%) translateX(0.5rem);
  }
  .c-btn05:hover .c-btn05__arrow::before {
    background-color: var(--color-main);
  }
}
.c-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-category-list {
    display: block;
    border: 1px solid var(--gray);
  }
}

.c-category-list__text {
  display: block;
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.4rem;
  text-align: left;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-category-list__text {
    font-size: 1.4rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    width: 100%;
    background-color: var(--light-gray);
    text-align: center;
    pointer-events: all;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .c-category-list__text::before {
    content: "";
    width: 1.2rem;
    height: 1px;
    background-color: var(--color-accent);
    position: absolute;
    top: 50%;
    right: 1.6rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .c-category-list__text::after {
    content: "";
    width: 1px;
    height: 1.2rem;
    background-color: var(--color-accent);
    position: absolute;
    top: 50%;
    right: 2.2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .c-category-list__text.open::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}

.c-category-list__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 3rem;
  border-left: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .c-category-list__body {
    padding: 2rem 1.5rem;
    border-left: none;
    border-top: 1px solid var(--gray);
  }
}

.c-category-list__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-category-list__items {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1.5rem;
  }
}

.c-category-list__item a {
  display: inline-block;
  width: 100%;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border: 1px solid var(--color-main);
  border-radius: 3rem;
  padding: 0.4rem 1rem;
}
@media screen and (max-width: 767px) {
  .c-category-list__item a {
    font-size: 1.3rem;
    padding: 0.6rem 1rem;
  }
}

.c-category-list__item.current a {
  background-color: var(--color-main);
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .c-category-list.c-category-list--accent {
    border: 1px solid var(--color-accent);
  }
}
.c-category-list.c-category-list--accent .c-category-list__item a {
  color: var(--color-accent);
  background-color: #E6E6E6;
  border: 1px solid #E6E6E6;
}
.c-category-list.c-category-list--accent .c-category-list__item.current a {
  background-color: var(--color-accent);
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .c-category-list.c-category-list--accent .c-category-list__body {
    border-top: 1px solid var(--color-accent);
  }
}

@media (any-hover: hover) {
  .c-category-list.c-category-list--accent .c-category-list__item a:hover {
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
    color: var(--white);
  }
}
.c-category {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border-radius: 100vh;
  border: 1px solid var(--color-main);
  min-width: 10.7rem;
}
@media screen and (max-width: 767px) {
  .c-category {
    font-size: 1.2rem;
    min-width: 9.2rem;
  }
}

.c-img img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .c-img img {
    border-radius: 1rem;
  }
}

.c-pagination {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 1.5rem;
  }
}

.c-pagination a,
.c-pagination span {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-pagination a,
  .c-pagination span {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.6rem;
    padding-bottom: 0.3rem;
  }
}

.c-pagination span.current {
  color: var(--white);
  background-color: var(--color-main);
}

@media (hover: hover) {
  .c-pagination a:hover {
    opacity: 0.5;
  }
}
.c-pagination a.next,
.c-pagination a.prev {
  border: none;
  position: relative;
}

.c-pagination a.next::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  top: 50%;
  left: 0.3rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.c-pagination a.prev::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  top: 50%;
  right: 0.3rem;
  -webkit-transform: translate(50%, -50%) rotate(-135deg);
          transform: translate(50%, -50%) rotate(-135deg);
}

.c-pagination.c-pagination--accent a,
.c-pagination.c-pagination--accent span {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.c-pagination.c-pagination--accent span.current {
  background-color: var(--color-accent);
}
.c-pagination.c-pagination--accent a.next::before {
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}
.c-pagination.c-pagination--accent a.prev::before {
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}
.c-pagination.c-pagination--accent a.next,
.c-pagination.c-pagination--accent a.prev {
  border: none;
}
.c-pagination.c-pagination--accent span.current {
  color: var(--white);
  background-color: var(--color-accent);
}

.c-section-title {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.8rem;
    gap: 0.8rem;
  }
}

.c-section-title::before {
  content: attr(data-en);
  display: inline-block;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    font-size: 5.4rem;
  }
}

.c-section-title.c-section-title--center {
  text-align: center;
}

.c-text {
  font-size: 1.6rem;
  line-height: 1.9375;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.c-text.c-text--lh2 {
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .c-text.c-text--lh2 {
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .c-text.c-text--sp-lh18 {
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px) {
  .c-text.c-text--sp12 {
    font-size: 1.2rem;
  }
}

.c-title01 {
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.3rem;
}
@media screen and (max-width: 767px) {
  .c-title01 {
    gap: 1.4rem;
    gap: 1rem;
  }
}

.c-title01 .en {
  font-size: 6.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-title01 .en {
    font-size: 4.3rem;
    letter-spacing: 0.05em;
    line-height: 1.1363636364;
    gap: 1rem;
  }
}

.c-title01 .en::before {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 0.4rem;
  background-color: var(--color-main);
  margin-top: 2rem;
  margin-top: 4.4rem;
}
@media screen and (max-width: 767px) {
  .c-title01 .en::before {
    width: 2.5rem;
    height: 0.3rem;
    margin-top: 1.5rem;
    margin-top: 1rem;
    margin-top: 2.6rem;
  }
}

.c-title01 .ja {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-title01 .ja {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .c-title01.c-title01--workplace .en {
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-title01.c-title01--sm {
    gap: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title01.c-title01--sm .en {
    font-size: 3.7rem;
    gap: 0.5rem;
  }
}
.c-title01.c-title01--sm .en::before {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 0.4rem;
  background-color: var(--color-main);
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-title01.c-title01--sm .en::before {
    width: 1rem;
    height: 0.2rem;
    margin-top: 1.5rem;
    margin-top: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title01.c-title01--sm .ja {
    font-size: 1.6rem;
  }
}

.c-title02 {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 2rem;
    gap: 1rem;
  }
}

.c-title02::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-title02::before {
    font-weight: 1.4rem;
  }
}

.c-title03 {
  color: var(--color-accent);
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title03 {
    font-size: 2.4rem;
    line-height: 1.5416666667;
  }
}

.c-title03.c-title03--md {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .c-title03.c-title03--md {
    font-size: 1.8rem;
    line-height: 1.1891891892;
  }
}

.c-title03.c-title03--sm {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-title03.c-title03--sm {
    font-size: 1.8rem;
  }
}

.c-title03.c-title03--color-main {
  color: var(--color-main);
}

.c-title04 {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  background-color: var(--color-bg-accent);
  padding: 2.7rem 4rem;
  border-radius: 2.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title04 {
    font-size: 1.5rem;
    padding: 1.2rem 2rem;
    border-radius: 1.2rem;
  }
}

.c-title04::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3.4rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: var(--color-bg-accent);
  position: absolute;
  bottom: -2.5rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .c-title04::after {
    width: 1.5rem;
    height: 1.5rem;
    bottom: -1.5rem;
    left: 2.2rem;
  }
}

.c-title05 {
  text-align: center;
}

.c-title05 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  color: var(--color-accent);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title05 span {
    font-size: 1.8rem;
    gap: 0.6rem;
  }
}

.c-title05 span::before,
.c-title05 span::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .c-title05 span::before,
  .c-title05 span::after {
    width: 0.8rem;
    height: 1px;
    margin-top: 0.4rem;
  }
}

.p-404__text {
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    padding-left: 0;
  }
}

.p-accordion__item {
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, .01);
          box-shadow: 0 0 7px rgba(0, 0, 0, .01);
  border-radius: 1.3rem;
  background-color: var(--color-bg-accent);
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__item {
    padding: 0 1.5rem 1rem 1.5rem;
  }
}

.p-accordion__item + .p-accordion__item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__item + .p-accordion__item {
    margin-top: 3rem;
  }
}

.p-accordion__btn {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 2rem 7rem 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-accordion__btn {
    font-size: 1.6rem;
    line-height: 1.875;
    padding: 2rem 4rem 1rem 0;
    gap: 1.5rem;
  }
}

.p-accordion__btn::before {
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-accordion__btn .arrow {
  display: inline-block;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background-color: var(--color-main);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-accordion__btn .arrow {
    width: 3rem;
    height: 3rem;
    top: calc(50% + 0.5rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-accordion__btn .arrow::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-accordion__btn .arrow::before {
    width: 1.6rem;
  }
}

.p-accordion__btn .arrow::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2.2rem;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-accordion__btn .arrow::after {
    height: 1.6rem;
  }
}

.p-accordion__btn.open .arrow::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-accordion__content {
  display: none;
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-bottom: 3rem;
  border-top: 1px solid #707070;
}
.p-accordion__content a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .p-accordion__content {
    padding-top: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.9642857143;
  }
}

.p-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.p-article__category {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid var(--color-main);
  border-radius: 4rem;
  padding: 0 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-article__category {
    font-size: 1rem;
    padding: 0 3rem;
  }
}

.p-article__time {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-article__time {
    font-size: 1.2rem;
  }
}

.p-article__title {
  color: var(--color-accent);
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  margin-top: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__title {
    font-size: 2rem;
    line-height: 1.8;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
}

.p-article__title::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-article__title::before {
    width: 3.5rem;
  }
}

.p-article__body {
  position: relative;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-article__body {
    margin-top: 4rem;
  }
}
.p-article__body::after {
  content: "";
  display: block;
  clear: both;
}
.p-article__body h2 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: var(--color-main);
  border-radius: 0.28em;
  padding: 0.3rem 1.5rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-article__body h2 {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    padding: 0.4rem 1.5rem;
    border-radius: 0.33em;
  }
}
.p-article__body h2:nth-of-type(n+2) {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-article__body h2:nth-of-type(n+2) {
    margin-top: 5rem;
  }
}
.p-article__body h3 {
  font-size: 2.4rem;
  line-height: 1.8333333333;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-article__body h3 {
    font-size: 1.6rem;
    line-height: 1.78125;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
}
.p-article__body h3::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-main);
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-article__body h3::before {
    margin-top: 1.4rem;
  }
}
.p-article__body h4 {
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-article__body h4 {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
}
.p-article__body p {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-article__body p {
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }
}
.p-article__body a {
  color: var(--color-main);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-article__body a {
    font-size: 1.5rem;
  }
}
.p-article__body figure {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.p-blog-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.6rem;
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
  border-bottom: 1px solid var(--gray);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-link {
    gap: 1.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-blog-list__item-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: absolute;
  top: 57%;
  right: 2.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-arrow {
    display: none;
  }
}

.p-blog-list__item-arrow::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.9rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-arrow::before {
    display: none;
  }
}

.p-blog-list__item-img {
  width: 18rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-img {
    width: 13rem;
  }
}
.p-blog-list__item-img img {
  aspect-ratio: 180/120;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-blog-list__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 18rem;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-body {
    padding-right: 0;
  }
}

.p-blog-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-blog-list__item-category {
  min-width: 13rem;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-category {
    min-width: 10rem;
  }
}

.p-blog-list__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-title {
    font-size: 1.4rem;
  }
}

.p-blog-list__item-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-blog-list__item-title {
    -webkit-line-clamp: 2;
    line-height: 1.5862068966;
    margin-top: 0.5rem;
  }
}

.p-blog-list__item:first-child .p-blog-list__item-link {
  padding-top: 0;
}

@media (any-hover: hover) {
  .p-blog-list__item-link:hover .p-blog-list__item-title {
    color: var(--color-main);
  }
  .p-blog-list__item-link:hover .p-blog-list__item-arrow {
    right: 1.3rem;
    background-color: var(--color-main);
  }
  .p-blog-list__item-link:hover .p-blog-list__item-arrow::before {
    background-color: var(--white);
  }
  .p-blog-list__item-link:hover .p-blog-list__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-box.p-box--sm {
  background-color: var(--white);
  border-radius: 2rem;
  padding: 4rem 6rem 2em 6rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-box.p-box--sm {
    padding: 1.5rem 1.5rem;
    border-radius: 1.5rem;
  }
}

.p-box.p-box--color {
  background-color: var(--color-bg-accent);
  border-radius: 2rem;
  padding: 6rem 6rem 6rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-box.p-box--color {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
    border-radius: 1.5rem;
  }
}

.p-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__list {
    display: none;
  }
}

.p-breadcrumb__list a {
  color: var(--color-accent);
}

.p-breadcrumb.p-breadcrumb--single {
  margin-top: 10rem;
}

.p-card02__link {
  display: block;
  height: 100%;
}

.p-card02__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-card02__img {
    border-radius: 1.2rem;
  }
}
.p-card02__img img {
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-card02__joining {
  text-align: right;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.p-card02__joining span {
  display: inline-block;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.6rem 2rem;
  background-color: var(--color-accent);
  margin-left: auto;
  border-radius: 1.5rem 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-card02__joining span {
    font-size: 1.2rem;
    border-radius: 1.2rem 0 1.2rem 0;
    padding: 0.4rem 2rem;
  }
}

.p-card02__body {
  margin-top: 1.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-card02__body {
    margin-top: 1.2rem;
  }
}

.p-card02__job {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-card02__job {
    font-size: 1.3rem;
  }
}

.p-card02__name {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-card02__name {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}

.p-card02__content {
  position: relative;
  min-height: 39.66rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-card02__content {
    min-height: 33.3rem;
  }
}

@media (any-hover: hover) {
  .p-card02 a:hover .p-card02__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-card02 a:hover .p-card02__body {
    color: var(--color-accent);
  }
}
.p-card03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-card03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.p-card03__img {
  width: 45.9330143541%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-card03__img {
    width: 100%;
  }
}
.p-card03__img img {
  aspect-ratio: 480/320;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-card03__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-card03__body {
    padding-top: 0;
  }
}

.p-card03__title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-card03__title {
    font-size: 1.8rem;
  }
}

.p-card03__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-card03__text {
    font-size: 1.4rem;
  }
}

.p-card03__btn {
  margin-top: 2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-card03__btn {
    margin-top: 1rem;
  }
}

.p-card04__img img {
  aspect-ratio: 328/218;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem 2rem 0 0;
}

.p-card04__body {
  background-color: var(--light-gray);
  border-radius: 0 0 2rem 2rem;
  padding: 1rem 2rem 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-card04__body {
    padding: 1rem 1.4rem 1rem 1.4rem;
  }
}

.p-card04__title {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-card04__title {
    font-size: 1.6rem;
  }
}

.p-card04__text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.9285714286;
}
@media screen and (max-width: 767px) {
  .p-card04__text {
    font-size: 1.3rem;
  }
}

.p-card05 {
  background-color: var(--white);
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 2.7rem 2rem 2.8rem 2rem;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-card05 {
    padding: 1.8rem 2rem 1.5rem 2rem;
  }
}

.p-card05::before {
  content: "";
  display: inline-block;
  width: 12.8rem;
  height: 11.8rem;
  background-color: var(--color-main);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  mask-size: contain;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-card05::before {
    width: 7.7rem;
    height: 7rem;
    margin-top: 1.2rem;
  }
}

.p-card05__title {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
  display: inline-block;
  border-radius: 3rem;
  border: 1px solid var(--color-main);
  min-width: 20rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .p-card05__title {
    font-size: 1.8rem;
  }
}

.p-card05__num {
  color: var(--color-accent);
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
  margin-top: 2.6rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.p-card05__num span {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-card05__num {
    margin-top: 0.7rem;
  }
}

.p-card05.p-card05--building::before {
  -webkit-mask-image: url(../images/img_building.png);
          mask-image: url(../images/img_building.png);
}

.p-card05.p-card05--people::before {
  -webkit-mask-image: url(../images/img_people.png);
          mask-image: url(../images/img_people.png);
}

.p-card05.p-card05--map::before {
  -webkit-mask-image: url(../images/img_map.png);
          mask-image: url(../images/img_map.png);
}

.p-card05.p-card05--graph::before {
  -webkit-mask-image: url(../images/img_graph.png);
          mask-image: url(../images/img_graph.png);
}

.p-card05.p-card05--arrow::before {
  -webkit-mask-image: url(../images/img_arrow.png);
          mask-image: url(../images/img_arrow.png);
}

.p-card05.p-card05--batch::before {
  -webkit-mask-image: url(../images/img_batch.png);
          mask-image: url(../images/img_batch.png);
}

.p-card06 {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--gray);
  position: relative;
}

.p-card06__img {
  overflow: hidden;
}
.p-card06__img img {
  aspect-ratio: 330/220;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-card06__body {
  padding: 0.8rem 2rem 1.4rem 2rem;
}

.p-card06__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-card06__categories span {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 0rem 1rem;
  border: 1px solid var(--color-main);
  border-radius: 100vh;
  min-width: 11.4rem;
}

.p-card06__time {
  font-size: 1.4rem;
  font-weight: 500;
}

.p-card06__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.2rem;
}

.p-card06__arrow {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--color-main);
  border-radius: 50%;
  position: absolute;
  bottom: 1.3rem;
  right: 1.6rem;
}

.p-card06__arrow::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.8rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .p-card06:hover .p-card06__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-cards01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 5.6rem;
     -moz-column-gap: 5.6rem;
          column-gap: 5.6rem;
  row-gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards01 {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.p-cards01__item {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
          box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  border-radius: 1.5rem;
}

.p-cards01__item-img {
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cards01__item-img {
    border-radius: 1.3rem 1.3rem 0 0;
  }
}
.p-cards01__item-img img {
  aspect-ratio: 350/234;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-cards01__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1.9rem 2rem 1.9rem 2rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards01__item-title {
    font-size: 1.6rem;
    padding: 1.6rem 2rem 1.6rem 2rem;
    border-radius: 0 0 1.3rem 1.3rem;
  }
}

.p-cards01__item-arrow {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards01__item-arrow {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.p-cards01__item-arrow::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.9rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .p-cards01__item:hover .p-cards01__item-title {
    color: var(--color-main);
  }
  .p-cards01__item:hover .p-cards01__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-cards01__item a:hover .p-cards01__item-arrow {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
    background-color: var(--color-main);
  }
  .p-cards01__item a:hover .p-cards01__item-arrow::before {
    background-color: var(--white);
  }
}
.p-cards03__item:nth-child(n+2) {
  margin-top: 6.5rem;
}

.p-cards03.p-cards03--gap40 .p-cards03__item:nth-child(n+2) {
  margin-top: 4rem;
}

.p-cards04 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cards04 {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.p-cards05 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-cards05 {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
}

.p-cards06 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.7rem;
     -moz-column-gap: 2.7rem;
          column-gap: 2.7rem;
  row-gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards06 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.p-cards07 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 9.2rem;
     -moz-column-gap: 9.2rem;
          column-gap: 9.2rem;
  row-gap: 9.3rem;
}
@media screen and (max-width: 767px) {
  .p-cards07 {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.p-cards07__item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  border-radius: 1.5rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
}

.p-cards07__item-img {
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
}
.p-cards07__item-img img {
  aspect-ratio: 477/318;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem 2rem 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards07__item-img img {
    aspect-ratio: 690/460;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

.p-cards07__item-body {
  border-radius: 0 0 2rem 2rem;
  padding: 1rem 2rem 2.4rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-cards07__item-body {
    padding: 0.7rem 1.7rem 1.8rem 1.7rem;
  }
}

.p-cards07__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-cards07__item-title {
  color: var(--color-main);
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-cards07__item-title {
    font-size: 1.8rem;
  }
}

.p-cards07__item-arrow {
  display: inline-block;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  background-color: var(--white);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards07__item-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-cards07__item-arrow::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards07__item-arrow::after {
    width: 1.2rem;
    height: 1rem;
  }
}

.p-cards07__item-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-cards07__item-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 0.3rem;
  }
}

.p-cards07.p-cards07--accent .p-cards07__item-title {
  color: var(--color-accent);
}
.p-cards07.p-cards07--accent .p-cards07__item-arrow {
  border: 1px solid var(--color-accent);
}
.p-cards07.p-cards07--accent .p-cards07__item-arrow::after {
  background-color: var(--color-accent);
}

@media (any-hover: hover) {
  .p-cards07__item a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-cards07__item a:hover .p-cards07__item-arrow {
    background-color: var(--color-main);
  }
  .p-cards07__item a:hover .p-cards07__item-arrow::after {
    background-color: var(--white);
  }
  .p-cards07.p-cards07--accent .p-cards07__item a:hover .p-cards07__item-arrow {
    background-color: var(--color-accent);
  }
}
.p-cards08 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 3.8rem;
     -moz-column-gap: 3.8rem;
          column-gap: 3.8rem;
  row-gap: 3rem;
  max-width: 92.6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cards08 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-cards08__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  background-color: var(--white);
  border-radius: 1.4rem;
  padding: 3rem 3rem 3rem 10.5rem;
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .05);
          box-shadow: 0 0 5px rgba(0, 0, 0, .05);
}
@media screen and (max-width: 767px) {
  .p-cards08__item a {
    padding: 1rem 1.8rem 1rem 5rem;
    font-size: 1.5rem;
  }
}

.p-cards08__item-img {
  width: 7.2rem;
  height: 7.2rem;
  background: url(../images/icon_acquire.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-cards08__item-img {
    width: 3rem;
    height: 3rem;
  }
}
.p-cards08__item-img img {
  width: 100%;
  height: auto;
}

.p-cards08__item-arrow {
  display: inline-block;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards08__item-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.p-cards08__item-arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .p-cards08__item-arrow::before {
    width: 1.2rem;
    height: 1rem;
  }
}

@media (any-hover: hover) {
  .p-cards08__item a:hover .p-cards08__item-arrow {
    -webkit-transform: translateY(0.7rem);
            transform: translateY(0.7rem);
  }
}
.p-cards09 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cards09 {
    gap: 2.5rem;
  }
}

.p-cards09__item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 5rem 6rem 5rem 6rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-cards09__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 1.5rem 4rem 1.5rem;
    gap: 2rem;
  }
}

.p-cards09__item-title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-accent);
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cards09__item-title {
    font-size: 1.8rem;
    margin-top: 0;
  }
}

.p-cards09__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-cards09__item-text {
    font-size: 1.4rem;
  }
}

.p-cards09__item-img {
  width: 44.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-cards09__item-img {
    width: 100%;
  }
}
.p-cards09__item-img img {
  aspect-ratio: 446/296;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards09__item-img img {
    aspect-ratio: 630/418;
    border-radius: 1.5rem;
  }
}

.p-cards10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-cards10 {
    gap: 5rem;
  }
}

.p-cards10__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-cards10__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-cards10__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-cards10__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-cards10__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-cards10__item-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
  background-color: var(--color-accent);
  text-align: center;
  padding: 0.2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards10__item-category {
    font-size: 1.7rem;
  }
}

.p-cards10__item-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-accent);
  margin-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-cards10__item-title {
    font-size: 1.8rem;
    margin-top: 0.8rem;
  }
}

.p-cards10__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards10__item-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 1.2rem;
  }
}

.p-cards10__item-img {
  width: 47.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-cards10__item-img {
    width: 100%;
  }
}
.p-cards10__item-img img {
  aspect-ratio: 474/316;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-cards11 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
  row-gap: 5.5rem;
  background-color: var(--white);
  padding: 6rem 6rem 5rem 6rem;
  border-radius: 4rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-cards11 {
    border-radius: 2.6rem;
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 5rem 1.5rem;
    row-gap: 4.5rem;
  }
}

.p-cards11__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-cards11__item {
    gap: 0;
  }
}

.p-cards11__item-img img {
  aspect-ratio: 294/196;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards11__item-img img {
    border-radius: 1.6rem;
  }
}

.p-cards11__item-title {
  color: var(--color-accent);
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards11__item-title {
    font-size: 1.7rem;
    margin-top: 1.5rem;
  }
}

.p-cards11__item-text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.5rem;
}

.p-cards12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
  background-color: var(--white);
  border-radius: 4rem;
  padding: 6rem 6rem 6rem 6rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-cards12 {
    padding: 2.6rem 1.5rem 4rem 1.5rem;
    border-radius: 2.6rem;
    gap: 3.5rem;
  }
}

.p-cards12__item {
  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: 6rem;
}
@media screen and (max-width: 767px) {
  .p-cards12__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-cards12__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-cards12__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-cards12__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards12__item-body {
    padding-bottom: 0;
  }
}

.p-cards12__item-title {
  position: relative;
}

.p-cards12__item-title::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--gray);
  position: absolute;
  top: 50%;
  left: 0;
}

.p-cards12__item-title span {
  display: inline-block;
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  background-color: var(--white);
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards12__item-title span {
    font-size: 1.8rem;
    padding-right: 1rem;
  }
}

.p-cards12__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards12__item-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 1.2rem;
  }
}

.p-cards12__item-img {
  width: 43.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-cards12__item-img {
    width: 100%;
  }
}
.p-cards12__item-img img {
  aspect-ratio: 432/288;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-cards13 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 104.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cards13 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-cards13__item {
  padding: 2.3rem 4.5rem 3rem 4.5rem;
  width: 38.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-cards13__item {
    padding: 0;
    width: 100%;
  }
}

.p-cards13__item:not(:last-child) {
  border-right: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-cards13__item:not(:last-child) {
    border-right: none;
  }
}

.p-cards13__item:nth-child(3n+1) {
  padding-left: 0;
  width: 33rem;
}
@media screen and (max-width: 767px) {
  .p-cards13__item:nth-child(3n+1) {
    width: 100%;
  }
}

.p-cards13__item:nth-child(3n) {
  padding-right: 0;
  width: 33rem;
}
@media screen and (max-width: 767px) {
  .p-cards13__item:nth-child(3n) {
    width: 100%;
  }
}

.p-cards13__item:nth-child(3n+2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .p-cards13__item:nth-child(n+2) {
    margin-top: 3rem;
  }
}

.p-cards13__item-img {
  width: 28.8rem;
}
@media screen and (max-width: 767px) {
  .p-cards13__item-img {
    width: 100%;
  }
}
.p-cards13__item-img img {
  aspect-ratio: 288/199;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards13__item-img img {
    aspect-ratio: 688/461;
  }
}

.p-cards13__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-cards13__item-title {
    font-size: 1.6rem;
    margin-top: 1.8rem;
  }
}

.p-cards13__item-title::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1.1rem;
}

.p-cards13__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-cards13__item-text {
    margin-top: 1.3rem;
  }
}

.p-cards13.p-cards13--sdgs .p-cards13__item-img {
  width: 19.2rem;
  margin-inline: auto;
}
.p-cards13.p-cards13--sdgs .p-cards13__item-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.p-cards13.p-cards13--sdgs .p-cards13__item-title {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-cards13.p-cards13--sdgs .p-cards13__item-title {
    margin-top: 2.2rem;
  }
}

.p-cards14 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 4.3rem;
     -moz-column-gap: 4.3rem;
          column-gap: 4.3rem;
  row-gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-cards14 {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

.p-cards14__item {
  background-color: var(--white);
  border-radius: 2rem;
  padding: 2rem 4rem 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-cards14__item {
    border-radius: 1.6rem;
    padding: 0.7rem 1.6rem 1.5rem 1.6rem;
  }
}

.p-cards14__title {
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-cards14__title {
    font-size: 1.6rem;
    padding-bottom: 0.5rem;
  }
}

.p-cards14__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-cards14__text {
    line-height: 1.3571428571;
    margin-top: 0.5rem;
  }
}

.p-philosophy-sec02 .p-cards15 {
   grid-template-columns: repeat(1, 1fr);
}
.p-philosophy-sec02 .p-cards15__item {
   display: unset;
}
.p-philosophy-sec02 .p-cards15__item-title::before {
  content: "一、";
  margin-top: 0;
  background: none;
  width: 3.6rem;
}


.p-cards15 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 4.1rem;
     -moz-column-gap: 4.1rem;
          column-gap: 4.1rem;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-cards15 {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.p-cards15__item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 3.2rem 3rem 3rem 3rem;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-cards15__item {
    padding: 1.6rem 1.6rem 1.6rem 1.6rem;
    gap: 0;
  }
}

.p-cards15__item-title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards15__item-title {
    font-size: 1.6rem;
    gap: 0.5rem;
  }
}

.p-cards15__item-title::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-cards15__item-title::before {
    font-size: 1.4rem;
    width: 0.8rem;
    height: 1px;
    margin-top: 1.2rem;
  }
}

.p-cards16__item {
  border-radius: 2rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 6rem;
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards16__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    gap: 0;
    border-radius: 1.5rem;
  }
}

.p-cards16__item:nth-child(n+2) {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-cards16__item:nth-child(n+2) {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cards16__item-body {
    display: contents;
  }
}

.p-cards16__item-img {
  width: 17rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-cards16__item-img {
    width: 10rem;
  }
}
.p-cards16__item-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-cards16__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-cards16__item-title {
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-cards16__item-title {
    width: calc(100% - 10rem);
    font-size: 1.6rem;
    line-height: 1.625;
    padding-left: 1.5rem;
  }
}

.p-cards16__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding-top: 1rem;
  border-top: 1px solid var(--gray);
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-cards16__item-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 1.5rem;
  }
}

.p-cards16__item-name {
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards16__item-name {
    text-align: left;
    font-size: 1.2rem;
    width: 100%;
    margin-top: 0.2rem;
  }
}

.p-cards16__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-cards16__item:nth-child(even) .p-cards16__item-title {
    padding-left: 0;
    padding-right: 1.5rem;
  }
}

.p-cards18 {
  background-color: var(--white);
  border-radius: 4rem;
  -webkit-box-shadow: 0 0 10px, rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px, rgba(0, 0, 0, .1);
  padding: 5.6rem 6rem 6rem 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 4.3rem;
     -moz-column-gap: 4.3rem;
          column-gap: 4.3rem;
  row-gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-cards18 {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    border-radius: 2rem;
    row-gap: 1.5rem;
  }
}

.p-cards18__item {
  background-color: var(--light-gray);
  padding: 2.5rem 3.5rem 3.5rem 3.5rem;
  border-radius: 2rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-cards18__item {
    padding: 2rem 1.5rem;
    border-radius: 1.6rem;
  }
}

.p-cards18__item-title {
  color: var(--color-accent);
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cards18__item-title {
    font-size: 1.5rem;
  }
}

.p-cards18__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-cards18__text {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    margin-top: 0.5rem;
  }
}

.p-cards19 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-cards19 {
    grid-template-columns: 1fr;
    gap: 2.7rem;
  }
}

.p-cards19__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-cards19__item-title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  background-color: var(--color-main);
  border-radius: 1.2rem 1.2rem 0 0;
  text-align: center;
  padding: 0.7rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-cards19__item-title {
    font-size: 1.7rem;
    padding: 0.4rem 1rem;
  }
}

.p-cards19__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.2142857143;
  padding: 1rem 1.6rem 1rem 1.6rem;
  background-color: var(--white);
  border-radius: 0 0 1.2rem 1.2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-cards20__item:nth-child(n+2) {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-cards20__item:nth-child(n+2) {
    margin-top: 1.5rem;
  }
}

.p-cards20__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cards20__item-title {
    font-size: 1.7rem;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.p-cards20__item-title span {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--color-accent);
  border-radius: 0.5rem;
  padding-bottom: 0.4rem;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-cards20__item-title span {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 2rem;
    border-radius: 0.3rem;
    padding-bottom: 0rem;
    margin-top: 0.4rem;
  }
}

.p-cards20__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding-top: 1rem;
  border-top: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-cards20__item-text {
    font-size: 1.4rem;
    line-height: 1.9642857143;
    padding-top: 0.5rem;
  }
}

.p-common-cta {
  overflow-x: clip;
  background-color: var(--color-main);
}

.p-common-cta__wrapper {
  margin-left: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-common-cta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-common-cta__img {
  width: 50vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-common-cta__img {
    width: 100%;
    height: 26.9rem;
  }
}
.p-common-cta__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-common-cta__body {
  width: 50%;
  padding: 8rem 0rem 10rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-common-cta__body {
    width: 100%;
    padding: 4rem 1.5rem 6rem 1.5rem;
  }
}

.p-common-cta__lead {
  color: var(--white);
  font-size: 3.0rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-common-cta__lead {
    font-size: 2.2rem;
  }
}

.p-common-cta__text {
  color: var(--white);
  margin-top: 3rem;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-common-cta__text {
    margin-top: 1.3rem;
    line-height: 2;
  }
}

.p-common-cta__btn {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-common-cta__btn {
    margin-top: 4.5rem;
    text-align: center;
  }
}

.p-contact-form {
  background-color: var(--white);
  border-radius: 3.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 5.3rem 8rem 7.5rem 8rem;
  max-width: 92rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 2.3rem 1.5rem 6rem 1.5rem;
    border-radius: 2rem;
  }
}

.p-contact-form.p-contact-form--gray {
  background-color: var(--light-gray);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-contact-form__item .text {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item .text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.p-contact-form__item + .p-contact-form__item {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item + .p-contact-form__item {
    margin-top: 1rem;
  }
}

.p-contact-form__label {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact-form__label {
    font-size: 1.4rem;
  }
}

.p-contact-form__label .hissu {
  display: inline-block;
  color: var(--white);
  background-color: var(--red);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 0 0.5rem;
  margin-left: 1rem;
}

.p-contact-form__input {
  margin-top: 0.3rem;
}

.p-contact-form__input.select {
  position: relative;
  width: 55.5%;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input.select {
    width: 100%;
  }
}

.p-contact-form__input.select::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  position: absolute;
  top: 2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input.select::after {
    top: 1.8rem;
  }
}

.p-contact-form__input input,
.p-contact-form__input select,
.p-contact-form__input textarea {
  width: 100%;
  border: 1px solid #999999;
  border-radius: 0;
  padding: 0.9rem 1.5rem;
  color: inherit;
  font-family: inherit;
  min-height: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: var(--white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact-form__input input::-webkit-input-placeholder,
.p-contact-form__input select::-webkit-input-placeholder,
.p-contact-form__input textarea::-webkit-input-placeholder {
  color: #989898;
}
.p-contact-form__input input::-moz-placeholder,
.p-contact-form__input select::-moz-placeholder,
.p-contact-form__input textarea::-moz-placeholder {
  color: #989898;
}
.p-contact-form__input input::-ms-input-placeholder,
.p-contact-form__input select::-ms-input-placeholder,
.p-contact-form__input textarea::-ms-input-placeholder {
  color: #989898;
}
.p-contact-form__input input::placeholder,
.p-contact-form__input select::placeholder,
.p-contact-form__input textarea::placeholder {
  color: #989898;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input input,
  .p-contact-form__input select,
  .p-contact-form__input textarea {
    padding: 0.2rem 1.5rem;
  }
}

.p-contact-form__input select {
  color: inherit;
  font-family: inherit;
}
.p-contact-form__input select::-webkit-input-placeholder {
  color: #989898;
}
.p-contact-form__input select::-moz-placeholder {
  color: #989898;
}
.p-contact-form__input select::-ms-input-placeholder {
  color: #989898;
}
.p-contact-form__input select::placeholder {
  color: #989898;
}

.p-contact-form__input textarea {
  height: 22rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input textarea {
    height: 22.5rem;
  }
}

.p-contact-form__privacy {
  padding: 20px 30px;
  overflow-y: auto;
  border: 1px solid #D1D1D1;
  height: 207px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__privacy {
    margin-top: 30px;
    padding: 16px 16px;
    height: 180px;
  }
}

.p-contact-form__privacy-text {
  color: gray;
  font-size: 14px;
  line-height: 1.4285714286;
}

.p-contact-form__privacy-text:nth-child(n+2) {
  margin-top: 16px;
}

.p-contact-form__item-note {
  color: gray;
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-note {
    margin-top: 5px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.p-contact-form__agreement {
  margin-top: 16px;
}

.p-contact-form__input-check {
  display: none;
}

.p-contact-form__input-check + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}

.p-contact-form__input-check + span::after,
.p-contact-form__input-check + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.p-contact-form__input-check + span::before {
  border: 1px solid #aaaaaa;
  background-color: var(--white);
  height: 13px;
  width: 13px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-contact-form__input-check + span::after {
  border: none;
  background: url(../images/icon-check.svg) no-repeat center center/contain;
  height: 16px;
  width: 16px;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

.p-contact-form__input-check:checked + span::after {
  display: block;
  opacity: 1;
}

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

.wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

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

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: var(--white);
  border: 1px solid gray;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 1.2em;
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #7fbfff; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 3px var(--white);
          box-shadow: inset 0 0 0 3px var(--white); /* 中心の色のスタイル */
}

.p-contact-form__agree {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 1.2rem;
    line-height: 1.7857142857;
  }
}
.p-contact-form__agree a {
  color: var(--color-accent);
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.p-contact-form__agree a::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon_link.svg);
          mask-image: url(../images/icon_link.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.4rem;
}

@media (any-hover: hover) {
  .p-contact-form__agree a:hover {
    opacity: 0.7;
  }
}
.wpcf7-spinner {
  display: none;
}

.p-contact-form__submit {
  margin-top: 4.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit {
    margin-top: 3rem;
  }
}

.p-contact-form__submit input {
  display: inline-block;
  min-width: 36rem;
  padding: 1.3rem 0;
  background-color: var(--color-accent);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 5rem;
  border: 1px solid var(--color-accent);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit input {
    font-size: 2rem;
    min-width: 31rem;
  }
}

@media (any-hover: hover) {
  .p-contact-form__submit input:hover {
    background-color: var(--white);
    color: var(--color-accent);
  }
}
.p-content-list {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-content-list {
    margin-top: 1rem;
  }
}

.p-content-list__item {
  background-color: var(--light-gray);
  border-radius: 2.4rem;
  padding: 1.8rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-content-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 1.6rem;
    border-radius: 1.8rem;
  }
}
.p-content-list__item dt {
  width: 26%;
  padding-right: 4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-content-list__item dt {
    width: 100%;
    font-size: 1.6rem;
    padding-right: 0;
    padding-bottom: 2rem;
  }
}
.p-content-list__item dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-left: 1px solid var(--gray);
  padding-left: 6.5rem;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
}
@media screen and (max-width: 767px) {
  .p-content-list__item dd {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--gray);
    padding-left: 0;
    font-size: 1.3rem;
    line-height: 1.85;
    padding-bottom: 0;
  }
}

.p-content-list__item:nth-child(n+2) {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-content-list__item:nth-child(n+2) {
    margin-top: 2rem;
  }
}

.p-content-block + .p-content-block {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-block + .p-content-block {
    margin-top: 5rem;
  }
}

.p-content-block__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-content-block__body {
    padding-top: 0;
  }
}

.p-content-block__title {
  color: var(--color-accent);
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  padding-left: 4rem;
  padding-top: 1rem;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-content-block__title {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}

.p-content-block__title::before {
  content: "Q";
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-block__title::before {
    font-size: 1.6rem;
    left: 0.2rem;
  }
}

.p-content-block__title::after {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 1px;
  background-color: #7d7d7d;
  position: absolute;
  top: 2.8rem;
  left: -0.6rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-content-block__title::after {
    width: 4rem;
    top: 2rem;
    left: -0.3rem;
  }
}

.p-content-block__image {
  width: 33.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content-block__image {
    margin-inline: auto;
    width: 90%;
  }
}
.p-content-block__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.p-content-block__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-block__text {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.9642857143;
    margin-top: 1.7rem;
  }
}

.p-content-block.p-content-block--right {
  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: 5rem;
}
@media screen and (max-width: 767px) {
  .p-content-block.p-content-block--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-content-block.p-content-block--right .p-content-block__image {
  width: 33.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content-block.p-content-block--right .p-content-block__image {
    margin-inline: auto;
    width: 90%;
  }
}
.p-content-block.p-content-block--right .p-content-block__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-content-block.p-content-block--right .p-content-block__image img {
    border-radius: 1rem;
  }
}

.p-content-block.p-content-block--left {
  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: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-block.p-content-block--left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
.p-content-block.p-content-block--left .p-content-block__image {
  width: 33.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content-block.p-content-block--left .p-content-block__image {
    margin-inline: auto;
    width: 90%;
  }
}
.p-content-block.p-content-block--left .p-content-block__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-content-block.p-content-block--left .p-content-block__image img {
    border-radius: 1rem;
  }
}

.p-content01 {
  background-color: var(--white);
  border-radius: 3rem;
  border: 1px solid var(--color-main);
  padding: 2.4rem 5.5rem 5rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-content01 {
    border-radius: 1.8rem;
    padding: 2rem 1.4rem 2.5rem 1.4rem;
  }
}

.p-content01__title {
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-content01__title {
    font-size: 1.8rem;
    text-align: center;
  }
}

.p-content01__list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-content01__list {
    margin-top: 1rem;
  }
}

.p-content01__item {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-content01__item {
    font-size: 1.5rem;
    line-height: 1.8666666667;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-content01__item:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-content01__item:nth-child(n+2) {
    margin-top: 2.2rem;
  }
}

.p-content01__item::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 2px;
  background-color: var(--color-main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-content01__item::before {
    width: 1.5rem;
    margin-top: 1.2rem;
  }
}

.p-content02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4.3rem;
  -webkit-column-gap: 4.3rem;
     -moz-column-gap: 4.3rem;
          column-gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-content02 {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

.p-content02__item {
  background-color: var(--white);
  border-radius: 2rem;
  border: 1px solid var(--color-accent);
  padding: 2rem 3.4rem 3rem 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-content02__item {
    border-radius: 1.8rem;
    padding: 1.2em 1.4rem 2rem 1.4rem;
  }
}

.p-content02__title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-content02__title {
    font-size: 1.5rem;
  }
}

.p-content02__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6875;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-content02__text {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }
}

.p-content03 {
  background-color: var(--white);
  border-radius: 2rem;
  padding: 5rem 6rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-content03 {
    padding: 2.7rem 1.8rem;
  }
}

.p-content03__item:nth-child(n+2) {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-content03__item:nth-child(n+2) {
    margin-top: 2.2rem;
  }
}

.p-content03__title {
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-content03__title {
    font-size: 1.5rem;
  }
}

.p-content03__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content03__text {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}

.p-content04 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.6rem;
     -moz-column-gap: 2.6rem;
          column-gap: 2.6rem;
  row-gap: 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-content04 {
    grid-template-columns: 1fr;
  }
}

.p-content04__item {
  border-radius: 2rem;
  position: relative;
  min-height: 19.5rem;
}
@media screen and (max-width: 767px) {
  .p-content04__item {
    min-height: 15rem;
  }
}

.p-content04__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding-left: 6rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-content04__item a {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.p-content04__item-title {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-content04__item-title {
    font-size: 2.2rem;
  }
}

.p-content04__item-arrow {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-content04__item-arrow {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.p-content04__item-arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-content04__item-arrow::before {
    width: 1.2rem;
    height: 1.1rem;
  }
}

.p-content04__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.p-content04__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-content04__item-img::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-content04__item a:hover .p-content04__item-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-content04__item a:hover .p-content04__item-arrow {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.p-content04__item a:hover .p-content04__item-arrow::before {
  background-color: var(--white);
}

.p-content07 {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
          box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  border-radius: 2rem;
}

.p-content07__title {
  background-color: var(--color-main);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-content07__title {
    font-size: 2.1rem;
    padding: 0.6rem 0;
  }
}

.p-content07__body {
  background-color: var(--white);
  padding: 4rem 6rem 3rem 6rem;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-content07__body {
    padding: 2rem 1.5rem;
  }
}

.p-content07__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-content07__list {
    grid-template-columns: 1fr;
  }
}

.p-content07__item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 1rem;
}

.p-content07__item-img img {
  aspect-ratio: 330/220;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-content07__item-title {
  color: var(--color-accent);
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content07__item-title {
    font-size: 1.7rem;
    margin-top: 0.5rem;
  }
}

.p-content07__item-title::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-accent);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1.3rem;
}
.p-content07__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
}

.p-content08 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-content08 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.p-content08__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-content08__body {
    padding-left: 0;
  }
}

.p-content08__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
}
@media screen and (max-width: 767px) {
  .p-content08__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.p-content08__img {
  width: 52.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-content08__img {
    width: 100%;
  }
}
.p-content08__img img {
  aspect-ratio: 522/348;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-content09 {
  background-color: var(--white);
  border-radius: 4rem;
  padding: 5rem 6rem 6rem 6rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-content09 {
    padding: 4rem 1.5rem 5rem 1.5rem;
    border-radius: 2.6rem;
  }
}

.p-content09__title {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-content09__title {
    font-size: 1.8rem;
  }
}

.p-content09__text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 3rem;
  line-height: 1.9375;
  max-width: 93rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-content09__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 1rem;
  }
}

.p-content10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-content10 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.5rem;
  }
}

.p-content10__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-content10__title span {
  display: inline-block;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background-color: var(--color-accent);
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-content10__title span {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
  }
}

.p-content10__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-content10__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 1rem;
  }
}

.p-content10__img {
  width: 46.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-content10__img {
    width: 100%;
  }
}
.p-content10__img img {
  aspect-ratio: 465/310;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.p-content11 {
  background-color: var(--white);
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 6rem 6rem 6rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-content11 {
    padding: 2rem 1.5rem 2rem 1.5rem;
  }
}

.p-content11__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9rem;
}
@media screen and (max-width: 767px) {
  .p-content11__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.6rem;
  }
}

.p-content11__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-content11__img {
  width: 32rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-content11__img {
    width: 100%;
  }
}
.p-content11__img img {
  aspect-ratio: 320/480;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-content11__img img {
    aspect-ratio: 630/420;
    border-radius: 1rem;
  }
}

.p-content11__img span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: var(--light-gray);
  border-radius: 5rem;
  padding: 0.3rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-content11__img span {
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
  }
}

.p-content11__title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-content11__title {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
  }
}

.p-content11__text {
  font-size: 1.6rem;
  line-height: 1.9375;
  font-weight: 500;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-content11__text {
    font-size: 1.4rem;
    margin-top: 1.3rem;
    line-height: 1.9642857143;
  }
}

.p-content11__movie {
  max-width: 83rem;
  margin-inline: auto;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-content11__movie {
    margin-top: 2.5rem;
  }
}
.p-content11__movie iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background-color: var(--gray);
}

.p-content12 {
  background-color: var(--white);
  padding: 3rem 5rem 4rem 5rem;
  border-radius: 1.7rem;
  color: var(--color-accent);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.46875;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-content12 {
    font-size: 1.5rem;
    line-height: 1.5666666667;
    text-align: left;
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 1rem;
  }
}

.p-content13 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-content13 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-content13__body {
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-content13__body {
    padding-left: 0;
  }
}

.p-content13__img {
  width: 31rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-content13__img {
    width: 22rem;
    margin-inline: auto;
  }
}
.p-content13__img img {
  aspect-ratio: 310/465;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.p-content13__profile {
  margin-left: -3.5rem;
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-content13__profile {
    margin-left: 0;
    margin-top: -2.2rem;
  }
}

.p-content13__name {
  display: inline-block;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--color-accent);
  padding: 0.2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-content13__name {
    line-height: 1.8;
    font-size: 2rem;
    padding: 0 1.5rem;
  }
}

.p-content13__company {
  display: inline-block;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--color-accent);
  padding: 0 1.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content13__company {
    font-size: 1.5rem;
    padding: 0 0.7rem;
    line-height: 1.5;
  }
}

.p-content13__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: -0.6rem;
}
@media screen and (max-width: 767px) {
  .p-content13__text {
    font-size: 1.4rem;
    line-height: 1.99;
    margin-top: 0;
  }
}

.p-content14 {
  background-color: var(--white);
  border-radius: 4rem;
  padding: 5rem 6rem 6rem 6rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-content14 {
    padding: 2.5rem 1.5rem 5rem 1.5rem;
    border-radius: 2.2rem;
  }
}

.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100dvh;
  background-color: var(--color-bg);
  padding-top: 12rem;
  padding-bottom: 10rem;
  display: none;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    padding-top: 7rem;
  }
}

.p-drawer__inner.l-inner {
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-drawer__inner.l-inner {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }
}

.p-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__nav-list01 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2rem;
  }
}
.p-drawer__nav-list01 .p-drawer__nav-item:nth-child(2) {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-list01 .p-drawer__nav-item:nth-child(2) {
    margin-top: 1rem;
  }
}
.p-drawer__nav-list01 .p-drawer__nav-item:nth-child(3) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-list01 .p-drawer__nav-item:nth-child(3) {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__nav-list02 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2rem;
  }
}
.p-drawer__nav-list02 .p-drawer__nav-item:nth-child(n+2) {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-list02 .p-drawer__nav-item:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.p-drawer__nav-item02 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item02 {
    margin-top: 1rem;
  }
}

.p-drawer__nav-item > a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item > a {
    padding: 0;
  }
}

.p-drawer__subnav-item > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-drawer__subnav-item > a {
    font-size: 1.3rem;
  }
}

.p-drawer__subnav-item a::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1px;
  background-color: var(--color-main);
}

.p-drawer__link {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__link {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__entry {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-drawer__entry a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  min-width: 27rem;
  background-color: var(--color-main);
  border-radius: 1.6rem;
  padding: 1.5rem 3rem 2rem 3rem;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-drawer__entry a {
    border-radius: 1.5rem;
    padding: 1rem 2.5rem 2rem 2.5rem;
  }
}
.p-drawer__entry a .en {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-drawer__entry a .en {
    font-size: 3.1rem;
  }
}
.p-drawer__entry a .ja {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-drawer__entry a .ja {
    font-size: 1.4rem;
  }
}

.p-header__entry-btn {
  display: inline-block;
  width: 3.8rem;
  height: 3.8rem;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__entry-btn {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.p-header__entry-btn::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-drawer__btn {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 14rem;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 4rem;
  }
}

.p-drawer__sns {
  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: 3rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__sns {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.p-drawer__sns-item a {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--white);
  font-size: 1.2rem;
}

.p-drawer__sns-item img {
  width: 2.4rem;
  height: 2.4rem;
}

@media (any-hover: hover) {
  .p-drawer__entry:hover .p-header__entry-btn {
    right: 1.7rem;
  }
  .p-drawer__sns-item a:hover {
    opacity: 0.7;
  }
  .p-drawer__nav-item a:hover {
    color: var(--color-main);
  }
}
.p-faq-sec + .p-faq-sec {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-faq-sec + .p-faq-sec {
    margin-top: 6rem;
  }
}

.p-faq-sec__body {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-faq-sec__body {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-flow-content {
    overflow-x: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-flow-content__img {
    width: 50.25rem;
  }
}
.p-flow-content__img img {
  width: 100%;
  height: auto;
}

.p-flow-list__item {
  background-color: var(--light-gray);
  border-radius: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.p-flow-list__item:not(:last-child)::before {
  content: "";
  display: inline-block;
  width: 5.9rem;
  height: 2.1rem;
  background-color: var(--color-main);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -3.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-flow-list__item:not(:last-child)::before {
    width: 5.2rem;
    height: 1.6rem;
    bottom: -2.8rem;
  }
}

.p-flow-list__item:nth-child(n+2) {
  margin-top: 4rem;
}

.p-flow-list__item-num {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-main);
  border-radius: 1.7rem 0 0 1.7rem;
  padding: 2.5rem 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-num {
    font-size: 2rem;
    padding: 2.5rem 1.5rem;
  }
}

.p-flow-list__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem 3rem 1rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-body {
    padding: 1rem 1.4rem 1rem 1.4rem;
  }
}

.p-flow-list__item-title {
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-title {
    font-size: 1.8rem;
  }
}

.p-flow-list__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-text {
    font-size: 1.3rem;
    line-height: 1.92;
  }
}

.p-flow-list02__item {
  background-color: var(--light-gray);
  border-radius: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow-list02__item {
    display: block;
    border: 1rem;
  }
}

.p-flow-list02__item:not(:last-child)::before {
  content: "";
  display: inline-block;
  width: 5.9rem;
  height: 2.1rem;
  background-color: var(--color-main);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -3.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-flow-list02__item:not(:last-child)::before {
    width: 5.2rem;
    height: 1.6rem;
    bottom: -3.2rem;
  }
}

.p-flow-list02__item:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-flow-list02__item:nth-child(n+2) {
    margin-top: 4.4rem;
  }
}

.p-flow-list02__item-num {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-main);
  border-radius: 1.7rem 0 0 1.7rem;
  padding: 2.5rem 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 16rem;
}
@media screen and (max-width: 767px) {
  .p-flow-list02__item-num {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    padding: 0.2rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    width: 100%;
  }
}

.p-flow-list02__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 2rem 3rem 2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow-list02__item-text {
    font-size: 1.3rem;
    padding: 1rem 1.4rem 1rem 1.4rem;
    line-height: 1.92;
  }
}

.p-footer {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__body {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1rem;
}

.p-footer__logo {
  width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 70%;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer_btn {
  margin-top: 9rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-footer_btn {
    margin-top: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav {
    margin-top: 5rem;
  }
}

.p-footer__nav-top a {
  display: inline-block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-top a {
    font-size: 1.4rem;
  }
}

.p-footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    margin-top: 1rem;
    gap: 0rem;
  }
}

.p-footer__nav-item > a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.3rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item > a {
    font-size: 1.4rem;
    padding: 0.52rem 0;
  }
}

.p-footer__subnav {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__subnav {
    margin-top: 1rem;
  }
}

.p-footer__subnav-item > a {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__subnav-item > a {
    font-size: 1.3rem;
  }
}

.p-footer__subnav-item > a::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1px;
  background-color: var(--color-main);
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 7.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.p-footer__sns-item a {
  display: inline-block;
  border-radius: 50%;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #666666;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.p-footer__copyright {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 7.5rem;
  }
}

@media (any-hover: hover) {
  .p-footer__logo a:hover {
    opacity: 0.7;
  }
  .p-footer__nav-top a:hover {
    color: var(--color-main);
  }
  .p-footer__nav-item a:hover {
    color: var(--color-main);
  }
  .p-footer__subnav-item a:hover {
    color: var(--color-main);
  }
  .p-footer__sns-item a:hover {
    opacity: 0.7;
  }
}
.p-fv {
  overflow-x: clip;
  padding-top: 13.3rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 11.3rem;
  }
}

.p-fv.p-fv--404 {
  overflow-x: clip;
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--404 {
    padding-top: 11rem;
  }
}
.p-fv.p-fv--404 .p-fv__title {
  margin-top: 0.5rem;
}

.p-fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--color-accent);
  gap: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 0;
    gap: 0.5rem;
  }
}
.p-fv__title .en {
  font-size: 7.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__title .en {
    font-size: 4.6rem;
  }
}
.p-fv__title .ja {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title .ja {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__title.p-fv__title--sm {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title.p-fv__title--sm .en {
    font-size: 3.75rem;
  }
}

.p-fv__img {
  height: 36rem;
  margin-right: calc(50% - 50vw);
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    height: 19rem;
    margin-top: 3rem;
  }
}
.p-fv__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 3rem 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-fv__img img {
    border-radius: 2rem 0 0 2rem;
  }
}

.p-fv.p-fv--workplace .p-fv__img {
  position: relative;
}
.p-fv.p-fv--workplace .p-fv__workplace {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: var(--color-accent);
  padding: 0 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--workplace .p-fv__workplace {
    font-size: 2rem;
    padding: 0 2rem;
    bottom: 2rem;
    left: 2rem;
  }
}

.p-fv.p-fv--voice .p-fv__img {
  position: relative;
}
.p-fv.p-fv--voice .p-fv__voice {
  position: absolute;
  bottom: 4rem;
  left: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--voice .p-fv__voice {
    bottom: 1.6rem;
    left: 1.6rem;
  }
}
.p-fv.p-fv--voice .p-fv__voice-name {
  color: var(--white);
  font-size: 3.6rem;
  font-weight: 700;
  background-color: var(--color-main);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
  gap: 1rem;
  padding: 0.5rem 2rem 0.8rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--voice .p-fv__voice-name {
    font-size: 2rem;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
  }
}
.p-fv.p-fv--voice .p-fv__voice-name .category {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--voice .p-fv__voice-name .category {
    font-size: 1.4rem;
  }
}
.p-fv.p-fv--voice .p-fv__voice-joining {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--voice .p-fv__voice-joining {
    margin-top: 0.4rem;
  }
}

.p-fv__voice-joining-label {
  display: inline-block;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 600;
  background-color: var(--white);
  padding: 0.5rem 2rem;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__voice-joining-label {
    font-size: 1.2rem;
    padding: 0.1rem 1.2rem;
  }
}

.p-fv__voice-joining-year {
  padding-right: 0.3rem;
}

.p-fv__voice-joining-type {
  padding-left: 0.3rem;
}

.p-fv.p-fv--job-article .p-fv__img {
  position: relative;
}
.p-fv.p-fv--job-article .p-fv__sub-title {
  display: inline-block;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: var(--color-accent);
  padding: 0 4rem;
  position: absolute;
  left: 3rem;
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv--job-article .p-fv__sub-title {
    font-size: 1.8rem;
    padding: 0 1.8rem;
    left: 2.5rem;
    bottom: 2rem;
  }
}

.p-fv.p-fv-recruitment .p-fv__img {
  position: relative;
}
.p-fv.p-fv-recruitment .p-fv__text {
  display: inline-block;
  color: var(--white);
  position: absolute;
  bottom: 5rem;
  left: 4.8rem;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  background-color: var(--color-accent);
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-fv.p-fv-recruitment .p-fv__text {
    font-size: 1.8rem;
    padding: 0 1.8rem;
    bottom: 2rem;
    left: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 7rem;
    width: 100%;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
  }
}

.p-header__logo {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    top: 1.5rem;
    left: 1.6rem;
  }
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.p-header__logo .img {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo .img {
    width: 19rem;
  }
}
.p-header__logo .img img {
  width: 100%;
  height: auto;
}

.p-header__logo .text {
  color: var(--color-accent);
  display: inline;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-header__logo .text {
    font-size: 1.4rem;
  }
}

.p-header__entry {
  position: fixed;
  top: 1.5rem;
  right: 9rem;
  z-index: 90;
}
@media screen and (max-width: 767px) {
  .p-header__entry {
    top: 1.7rem;
    right: 7rem;
  }
}

.p-header__entry a {
  display: inline-block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 15rem;
  text-align: center;
  background-color: var(--color-main);
  padding: 0.7rem 1rem;
  border-radius: 100vh;
  border: 2px solid var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-header__entry a {
    font-size: 1.5rem;
    min-width: 8.5rem;
    padding: 0.55rem;
  }
}

.p-header__hamburger {
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.7rem;
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 110;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 4.5rem;
    height: 4.5rem;
    top: 1.7rem;
    right: 1.6rem;
  }
}

.p-header__hamburger span {
  display: block;
  width: 2.4rem;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: 2rem;
  }
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: translateY(0.4rem) rotate(45deg);
          transform: translateY(0.4rem) rotate(45deg);
}

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: translateY(-0.4rem) rotate(-45deg);
          transform: translateY(-0.4rem) rotate(-45deg);
}

.p-header.top .p-header__logo .text {
  color: var(--white);
}

@media (any-hover: hover) {
  .p-header__entry a:hover {
    background-color: var(--white);
    color: var(--color-main);
  }
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}
.p-internship-program__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: var(--color-accent);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-internship-program__title {
    font-size: 2.2rem;
  }
}
.p-internship-program__title .num {
  color: var(--color-main);
  font-size: 6.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-internship-program__title .num {
    font-size: 4.2rem;
  }
}

.p-internship-program__head {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.5rem;
    gap: 2rem;
  }
}

.p-internship-program__slider {
  width: 42.7751196172%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding-bottom: 3.5rem;
  /* 前へ次への矢印カスタマイズ */
}
@media screen and (max-width: 767px) {
  .p-internship-program__slider {
    width: 100%;
    padding-bottom: 2.8rem;
  }
}
.p-internship-program__slider .swiper {
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-internship-program__slider .swiper {
    border-radius: 1rem;
  }
}
.p-internship-program__slider .swiper-slide img {
  aspect-ratio: 447/298;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.p-internship-program__slider .swiper-pagination {
  bottom: 0;
}
.p-internship-program__slider .swiper-pagination-bullet {
  background-color: var(--gray);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-internship-program__slider .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-internship-program__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-internship-program__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-internship-program__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.3rem 0.3rem;
  }
}
.p-internship-program__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-main);
}
.p-internship-program__slider .swiper-button-next {
  height: 7rem;
  width: 5rem;
  top: 45%;
  right: -0.3rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__slider .swiper-button-next {
    height: 6rem;
    width: 4rem;
  }
}
.p-internship-program__slider .swiper-button-prev {
  height: 7rem;
  width: 5rem;
  top: 45%;
  left: -0.3rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__slider .swiper-button-prev {
    height: 6rem;
    width: 4rem;
  }
}
.p-internship-program__slider .swiper-button-prev::after,
.p-internship-program__slider .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 7rem;
  width: 5rem;
  margin: auto;
}
.p-internship-program__slider .swiper-button-prev::after {
  background: url(../images/icon_slide_arrow.png) no-repeat center/contain;
}
.p-internship-program__slider .swiper-button-next::after {
  background: url(../images/icon_slide_arrow.png) no-repeat center/contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-internship-program__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-internship-program__season {
  display: inline-block;
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  border: 1px solid var(--color-accent);
  border-radius: 3rem;
  padding: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__season {
    font-size: 1.4rem;
    padding: 0 1.2rem;
  }
}

.p-internship-program__content-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.9285714286;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__content-text {
    font-size: 1.3rem;
    line-height: 1.92;
    margin-top: 1rem;
  }
}

.p-internship-program__recommend {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend {
    margin-top: 2rem;
  }
}

.p-internship-program__recommend-title {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend-title {
    font-size: 1.6rem;
  }
}

.p-internship-program__recommend-list {
  margin-top: 1rem;
  display: grid;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend-list {
    gap: 1.1rem;
  }
}
.p-internship-program__recommend-list.col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend-list.col2 {
    grid-template-columns: 1fr;
  }
}
.p-internship-program__recommend-list.col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend-list.col3 {
    grid-template-columns: 1fr;
  }
}
.p-internship-program__recommend-list.col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend-list.col4 {
    grid-template-columns: 1fr;
  }
}

.p-internship-program__recommend-item {
  background-color: var(--light-gray);
  border-radius: 1.7rem;
  padding: 1.6rem 1.6rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6428571429;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-internship-program__recommend-item {
    font-size: 1.3rem;
    border-radius: 1rem;
  }
}

.p-internship-program__detail {
  margin-top: 5rem;
}

.p-internship-program__detail-title {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-internship-program__detail-title {
    margin-left: 0;
  }
}

.p-internship-program__voice {
  margin-top: 5rem;
}

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

.p-voice-categories__text {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  padding-right: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 10rem;
}

.p-voice-categories__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1.7rem;
     -moz-column-gap: 1.7rem;
          column-gap: 1.7rem;
  row-gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 3rem;
  border-left: 1px solid #707070;
}

.p-voice-categories__item a {
  display: inline-block;
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem;
  min-width: 21.6rem;
  border-radius: 3rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--gray);
}

.p-voice-categories__item.current a {
  color: var(--white);
  background-color: var(--color-accent);
}

.p-job-content {
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-job-content {
    padding-bottom: 3.8rem;
  }
}

.p-job-content + .p-job-content {
  padding-top: 5rem;
  border-top: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-job-content + .p-job-content {
    padding-top: 2rem;
  }
}

.p-job-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-job-content__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
}

.p-job-content__img {
  width: 54rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-job-content__img {
    width: 100%;
  }
}
.p-job-content__img img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-job-content__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-job-content__body {
    padding-top: 0;
  }
}

.p-job-content__title {
  color: var(--color-main);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-job-content__title {
    font-size: 2rem;
  }
}

.p-job-content__title::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background-color: var(--color-main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-job-content__title::before {
    margin-top: 2rem;
  }
}

.p-job-content__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8125;
  letter-spacing: 0.06em;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-job-content__text {
    font-size: 1.4rem;
    line-height: 1.9642857143;
  }
}

.p-link-list01__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7222222222;
  border-bottom: 1px solid var(--gray);
  position: relative;
  padding: 1.7rem 0.4rem 1.6rem 0rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-link-list01__item a {
    font-size: 1.6rem;
    padding: 1.4rem 0.8rem 1.4rem 0rem;
  }
}

.p-link-list01__item-arrow {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-link-list01__item-arrow {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.p-link-list01__item-arrow::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.9rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

@media (any-hover: hover) {
  .p-link-list01__item a:hover {
    color: var(--color-main);
  }
  .p-link-list01__item a:hover .p-link-list01__item-arrow {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
    background-color: var(--color-main);
  }
  .p-link-list01__item a:hover .p-link-list01__item-arrow::before {
    background-color: var(--white);
  }
}
.p-link-list02 {
  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: 5rem;
}
@media screen and (max-width: 767px) {
  .p-link-list02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-link-list02__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  min-width: 15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-link-list02__item a {
    font-size: 1.6rem;
    padding-bottom: 0.8rem;
  }
}

.p-link-list02__item .arrow {
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-link-list02__item .arrow::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.9rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(90deg);
          transform: translate(50%, -50%) rotate(90deg);
}

@media (any-hover: hover) {
  .p-link-list02__item:hover .arrow {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
}
.p-link-list03 {
  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: 7rem;
}
@media screen and (max-width: 767px) {
  .p-link-list03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    row-gap: 1.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
  }
}

.p-link-list03__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  min-width: 26rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .p-link-list03__item a {
    font-size: 1.6rem;
    padding-bottom: 0.8rem;
    min-width: 0;
    width: 100%;
  }
}

.p-link-list03__item .arrow {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-link-list03__item .arrow {
    width: 2.3rem;
    height: 2.3rem;
  }
}

.p-link-list03__item .arrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.2rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(90deg);
          transform: translate(50%, -50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .p-link-list03__item .arrow::before {
    width: 1.1rem;
    height: 0.9rem;
  }
}

@media (any-hover: hover) {
  .p-link-list03__item:hover .arrow {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
}
.p-link-list04 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-link-list04 {
    grid-template-columns: 1fr;
  }
}

.p-link-list04__item a {
  display: block;
  background-color: var(--white);
  border-radius: 4rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 4.5rem 3.5rem 6.5rem 3.5rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-link-list04__item a {
    border-radius: 1rem;
    padding: 2rem 1.5rem 1em 1.5rem;
  }
}

.p-link-list04__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-link-list04__item-title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-link-list04__item-title {
    font-size: 1.6rem;
  }
}

.p-link-list04__item-arrow {
  width: 3.8rem;
  height: 3.8rem;
  background-color: var(--color-main);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-link-list04__item-arrow {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.p-link-list04__item-arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-link-list04__item-arrow::before {
    width: 1.2rem;
    height: 1rem;
  }
}

.p-link-list04__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-link-list04__item-text {
    font-size: 1.4rem;
    line-height: 1.9642857143;
    margin-top: 1rem;
  }
}

@media (any-hover: hover) {
  .p-link-list04__item a:hover .p-link-list04__item-arrow {
    -webkit-transform: translateY(0.8rem);
            transform: translateY(0.8rem);
  }
}
.p-mv {
  min-height: 76.8rem;
  background: url(../images/mv_bg_pc.jpg) no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 66.6rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 10rem;
    background: url(../images/mv_bg_sp.jpg) no-repeat center center/cover;
  }
}

.p-mv::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
}

.p-mv__inner {
  position: relative;
  z-index: 2;
}

.p-mv__title {
  color: #fff;
  font-size: 12.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 6rem;
  }
}

.p-mv__title .row {
  display: inline-block;
  padding: 0 1.2rem;
}

.p-mv__title .row:nth-child(n+2) {
  margin-top: 1.2rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title .row:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.p-mv__text {
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.6315789474;
  margin-top: 3rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, .35);
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.p-mv__btn {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    margin-top: 4rem;
  }
}

.p-page {
  padding-top: 3rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-page {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.p-page.p-page--job {
  padding-top: 4rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-page.p-page--job {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}

.p-page.p-page--voice {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page.p-page--voice {
    padding-top: 5rem;
  }
}

.p-page.p-page--voice-article {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-page.p-page--voice-article {
    padding-top: 4.5rem;
  }
}

.p-page.p-job-article {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page.p-job-article {
    padding-top: 5rem;
  }
}

.p-page.p-page--bottom0 {
  padding-bottom: 0;
}

.p-page.p-page--article {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page.p-page--article {
    padding-top: 2rem;
  }
}

.p-page.p-page--404 {
  padding-top: 3.5rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-page.p-page--404 {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
}

.p-point-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-point-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-point-list__item-num {
  display: inline-block;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: var(--color-accent);
  padding: 0.5rem 1.4rem 0.7rem 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-point-list__item-num {
    font-size: 1.7rem;
    padding: 0.4rem 1.2rem 0.6rem 1.2rem;
  }
}

.p-point-list__item-title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-point-list__item-title {
    font-size: 1.8rem;
  }
}

.p-point-list__item-text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-point-list__item-text {
    margin-top: 2.4rem;
  }
}

.p-point-list__item-img {
  width: 44.3170964661%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-point-list__item-img {
    width: 100%;
  }
}
.p-point-list__item-img img {
  aspect-ratio: 465/310;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-point-list__item-img img {
    border-radius: 1rem;
  }
}

.p-point-list__item:nth-child(n+2) {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-point-list__item:nth-child(n+2) {
    margin-top: 6rem;
  }
}

.p-point-list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-point-list__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-president-box {
  min-height: 30.5rem;
}
@media screen and (max-width: 767px) {
  .p-president-box {
    min-height: 0;
    min-height: initial;
  }
}

.p-president-box__img {
  width: 31rem;
  float: right;
  margin-left: 13rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-president-box__img {
    float: none;
    margin-left: 0;
    width: 22rem;
    margin-inline: auto;
    margin-bottom: 3rem;
  }
}
.p-president-box__img img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.p-president-box__img.p-president-box__img--left {
  width: 31rem;
  float: left;
  margin-left: 0;
  margin-right: 13rem;
}
@media screen and (max-width: 767px) {
  .p-president-box__img.p-president-box__img--left {
    float: none;
    margin-right: 0;
    width: 22rem;
    margin-inline: auto;
    margin-bottom: 3rem;
  }
}
.p-president-box__img.p-president-box__img--left img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.p-recruit-link__item {
  display: block;
  max-width: 74.6rem;
  margin-inline: auto;
  background-color: var(--white);
  border-radius: 1.8rem;
  border: 2px solid var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3.3rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-link__item {
    padding: 2rem 1rem;
  }
}

.p-recruit-link__img {
  width: 8.1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-link__img {
    width: 6.5rem;
  }
}
.p-recruit-link__img img {
  width: 100%;
  height: auto;
}

.p-recruit-link__text {
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-link__text {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    margin-left: 2rem;
    margin-right: 2.6rem;
  }
}

.p-recruit-link__arrow {
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--color-main);
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-recruit-link__arrow {
    width: 4rem;
    height: 4rem;
  }
}

.p-recruit-link__arrow::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.2rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

@media (any-hover: hover) {
  .p-recruit-link__item:hover .p-recruit-link__arrow {
    -webkit-transform: translateX(0.8rem);
            transform: translateX(0.8rem);
  }
}
.p-recruitment-detail {
  border: 1px solid #D5D5D5;
  border-radius: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail {
    border-radius: 1.6rem;
  }
}

.p-recruitment-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: 1px solid #D5D5D5;
}

.p-recruitment-detail__item dt {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 600;
  background-color: var(--color-main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 17rem;
  padding: 2rem 2rem 2rem 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail__item dt {
    min-width: 8.5rem;
    font-size: 1.2rem;
    padding: 1rem 0.4rem 1rem 0.4rem;
  }
}

.p-recruitment-detail__item dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  padding: 2rem 3.5rem 2rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail__item dd {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 1.2rem 2rem 1.2rem 2rem;
  }
}

.p-recruitment-detail__item:not(:last-child) dt {
  border-bottom: 1px solid var(--white);
}

.p-recruitment-detail__item:first-child dt {
  border-radius: 2.5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail__item:first-child dt {
    border-radius: 1.5rem 0 0 0;
  }
}
.p-recruitment-detail__item:first-child dd {
  border-radius: 0 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail__item:first-child dd {
    border-radius: 0 1.5rem 0 0;
  }
}

.p-recruitment-detail__item:last-child dt {
  border-radius: 0 0 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail__item:last-child dt {
    border-radius: 0 0 0 1.5rem;
  }
}
.p-recruitment-detail__item:last-child dd {
  border-radius: 0 0 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruitment-detail__item:last-child dd {
    border-radius: 0 0 1.5rem 0;
  }
}

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

.p-schedule {
  background-color: var(--white);
  border-radius: 4rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 6rem 6rem 6rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-schedule {
    padding: 4rem 1.5rem 4rem 1.5rem;
    border-radius: 2.4rem;
  }
}

.p-schedule__movie {
  max-width: 82rem;
  margin-inline: auto;
}
.p-schedule__movie iframe {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-schedule__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 6rem;
  max-width: 82rem;
  margin-inline: auto;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-schedule__list-item {
    margin-top: 2.5rem;
    gap: 1.5rem;
    padding-left: 0.5rem;
  }
}

.p-schedule__list-item + .p-schedule__list-item {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-schedule__list-item + .p-schedule__list-item {
    margin-top: 1rem;
  }
}

.p-schedule__list-item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 4.8rem);
  background-color: #707070;
  position: absolute;
  left: 2.2rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-schedule__list-item::before {
    height: calc(100% - 4rem);
    left: 2rem;
  }
}

.p-schedule__list-item:last-child::before {
  display: none;
}

.p-schedule__list-time {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 4.3rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-schedule__list-time {
    font-size: 1.5rem;
    min-width: 4rem;
    letter-spacing: 0.05em;
    margin-left: -0.5rem;
  }
}

.p-schedule__list-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-schedule__list-title {
  display: inline-block;
}

.p-schedule__list-title p {
  color: var(--white);
  background-color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-radius: 4rem;
  padding: 0.55rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-schedule__list-title p {
    font-size: 1.3rem;
    border-radius: 2rem;
    padding: 0.4rem 1.5rem;
  }
}

.p-schedule__list-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  margin-top: 2rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-schedule__list-text {
    font-size: 1.4rem;
    line-height: 1.9642857143;
    margin-top: 0.6rem;
    padding-bottom: 1.5rem;
  }
}

.p-schedule__list-item:last-child .p-schedule__list-text {
  padding-bottom: 0;
}

.p-tab {
  text-align: center;
}

.p-tab__items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #E6E6E6;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .p-tab__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1rem;
    background-color: transparent;
  }
}

.p-tab__item {
  display: inline-block;
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem;
  min-width: 21.6rem;
  border-radius: 3rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-tab__item {
    width: 100%;
    min-width: 0;
    background-color: #E6E6E6;
    font-size: 1.4rem;
  }
}

.p-tab__item.current {
  color: var(--white);
  background-color: var(--color-accent);
}

.p-panel__item {
  display: none;
  background-color: var(--white);
  border-radius: 4rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding: 5rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-panel__item {
    padding: 3rem 1.7rem;
    border-radius: 1.5rem;
  }
}

.p-talk-content__title {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-talk-content__title {
    font-size: 1.8rem;
  }
}

.p-talk-content__title {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__title {
    gap: 1.5rem;
  }
}

.p-talk-content__title span:first-child::after {
  content: "×";
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__title span:first-child::after {
    margin-left: 1.5rem;
  }
}

.p-talk-content__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8.6rem;
     -moz-column-gap: 8.6rem;
          column-gap: 8.6rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__items {
    margin-top: 3.2rem;
    gap: 2.6rem;
  }
}

.p-talk-content__item-img img {
  aspect-ratio: 480/320;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__item-img img {
    border-radius: 0.6rem;
  }
}

.p-talk-content__item-date {
  text-align: center;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__item-date {
    margin-top: 0.3rem;
  }
}
.p-talk-content__item-date span {
  display: inline-block;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background-color: var(--color-accent);
  padding: 0.3rem 1.2rem 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__item-date span {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}

.p-talk-content__item-name {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__item-name {
    font-size: 2rem;
  }
}

.p-talk-content__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375;
  letter-spacing: 0.06em;
  max-width: 82rem;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-talk-content__text {
    font-size: 1.4rem;
    line-height: 1.9642857143;
    margin-top: 1.6rem;
  }
}

.p-talk-list__item:nth-child(n+2) {
  margin-top: 7rem;
}

.p-talk-list__item-title {
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-title {
    font-size: 1.8rem;
    gap: 1rem;
  }
}

.p-talk-list__item-title::before {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 1px;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-title::before {
    width: 3rem;
  }
}

.p-talk-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-content {
    gap: 2.2rem;
    position: relative;
  }
}

.p-talk-list__item-content + .p-talk-list__item-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-content + .p-talk-list__item-content {
    margin-top: 3rem;
  }
}

.p-talk-list__item-icon {
  width: 7rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-icon {
    width: 5rem;
  }
}
.p-talk-list__item-icon img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.p-talk-list__item-name {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-name {
    font-size: 1.6rem;
    width: 5rem;
    text-align: center;
    position: absolute;
    top: 6rem;
    left: 0;
  }
}

.p-talk-list__item-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9375;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-list__item-text {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 0;
  }
}

.p-talk-message {
  max-width: 82.4rem;
  margin-inline: auto;
}

.p-talk-message__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-talk-message__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
  }
}

.p-talk-message__item:nth-child(n+2) {
  margin-top: 6rem;
}

.p-talk-message__item-img {
  width: 31.6747572816%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-talk-message__item-img {
    width: 90%;
    margin-inline: auto;
  }
}
.p-talk-message__item-img img {
  aspect-ratio: 261/348;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-talk-message__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-talk-message__item-body {
    padding-top: 0;
    width: 90%;
    margin-inline: auto;
  }
}

.p-talk-message__item-name {
  display: inline-block;
  color: var(--white);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
  background-color: var(--color-accent);
  padding: 0.2rem 4rem 0.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-talk-message__item-name {
    font-size: 2.3rem;
    padding: 0.2rem 2rem 0.2rem 1.5rem;
  }
}
.p-talk-message__item-name .small {
  display: inline-block;
  font-size: 1.6rem;
  margin-left: 1.3rem;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-talk-message__item-name .small {
    font-size: 1.3rem;
  }
}

.p-talk-message__item-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9375;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-talk-message__item-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.9642857143;
    margin-top: 1rem;
  }
}

.p-top-blog {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog {
    padding-top: 4.5rem;
    padding-bottom: 6rem;
  }
}

.p-top-blog__list {
  max-width: 104.6rem;
  margin-inline: auto;
  margin-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__list {
    margin-top: 5.2rem;
  }
}

.p-top-blog__btn {
  text-align: center;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__btn {
    margin-top: 6rem;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .p-top-blog__title.c-section-title.c-section-title--center {
    text-align: left;
  }
}

.p-top-crosstalk {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-color: var(--color-bg-accent);
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.p-top-crosstalk__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  padding-right: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.5rem;
    padding-right: 0;
  }
}

.p-top-crosstalk__body {
  margin-top: 4.1rem;
  padding-left: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk__body {
    padding-left: 0;
    margin-top: 2.5rem;
  }
}

.p-top-crosstalk__subtitle {
  color: var(--white);
  line-height: 1.7;
}
.p-top-crosstalk__subtitle .small {
  display: inline-block;
  font-size: 1.8rem;
  background-color: var(--color-accent);
  padding: 0 1.4rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk__subtitle .small {
    font-size: 1.4rem;
  }
}
.p-top-crosstalk__subtitle .main {
  display: inline-block;
  font-size: 2.5rem;
  background-color: var(--color-accent);
  padding: 0 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk__subtitle .main {
    font-size: 2rem;
  }
}

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

.p-top-crosstalk__btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk__btn {
    margin-top: 4rem;
    text-align: right;
  }
}

.p-top-crosstalk__img {
  width: 52.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-crosstalk__img {
    margin-top: 0;
    width: 100%;
  }
}
.p-top-crosstalk__img img {
  aspect-ratio: 522/348;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-top-data {
  padding-top: 7.8rem;
  padding-bottom: 7.8rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-top-data {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-top-data::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.5;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-data::before {
    height: 27.5rem;
  }
}

.p-top-data__inner {
  position: relative;
  z-index: 2;
}

.p-top-data__body {
  width: 54.6rem;
  background-color: var(--white);
  border-radius: 1.4rem;
  padding: 4.2rem 4.5rem 5.6rem 4.2rem;
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, .1);
          box-shadow: 0 0 11px rgba(0, 0, 0, .1);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-top-data__body {
    width: 100%;
    padding: 5rem 1.5rem 5rem 1.5rem;
    margin-top: -9rem;
  }
}

.p-top-data__text {
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-data__text {
    margin-top: 2.6rem;
  }
}

.p-top-data__btn {
  margin-top: 4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-data__btn {
    margin-top: 4rem;
  }
}

.p-top-data__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-data__img {
    position: static;
    height: 27.5rem;
  }
}
.p-top-data__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-interviews {
  padding-top: 8.5rem;
  overflow-x: clip;
  background-color: var(--color-bg-accent);
}
@media screen and (max-width: 767px) {
  .p-top-interviews {
    padding-top: 5rem;
  }
}

.p-top-interviews__body {
  margin-top: 5rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__body {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.p-top-interviews__slider {
  margin-top: 6rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top-interviews__slider {
    margin-top: 5.5rem;
    margin-left: calc(50% - 50vw);
  }
}

.p-top-interviews__btn {
  text-align: right;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-interviews__btn {
    margin-top: 5rem;
  }
}

.p-top-job {
  padding-top: 7.5rem;
  overflow-x: clip;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20rem, #E1EAED));
  background: linear-gradient(transparent 0% 20rem, #E1EAED 20rem 100%);
}
@media screen and (max-width: 767px) {
  .p-top-job {
    padding-top: 7.6rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5rem, #E1EAED));
    background: linear-gradient(transparent 0% 5rem, #E1EAED 5rem 100%);
  }
}

.p-top-job::before {
  content: "";
  display: inline-block;
  width: 119%;
  height: 27rem;
  background-color: var(--color-bg-accent);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%/100% 100% 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-job::before {
    height: 9rem;
  }
}

.p-top-job__inner {
  position: relative;
  z-index: 2;
}

.p-top-job__text {
  margin-top: 3.2rem;
  max-width: 76rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-job__text {
    margin-top: 3.5rem;
  }
}

.p-top-job__list {
  margin-top: 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-job__list {
    margin-top: 5.4rem;
    max-width: 90%;
    margin-inline: auto;
  }
}

.p-top-job__btn {
  text-align: right;
  margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
  .p-top-job__btn {
    margin-top: 6rem;
  }
}

.p-top-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-link {
    grid-template-columns: 1fr;
  }
}

.p-top-link__item {
  display: block;
  position: relative;
  padding: 7rem 8rem 8.8rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-link__item {
    padding: 3.3rem 4rem 4.6rem 4rem;
  }
}

.p-top-link__item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-top-link__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-top-link__title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.p-top-link__title::before {
  content: attr(data-en);
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-link__title::before {
    font-size: 3.7rem;
  }
}

.p-top-link__btn {
  display: inline-block;
  width: 4.5rem;
  height: 4.4rem;
  background-color: var(--color-main);
  border-radius: 50%;
  position: absolute;
  bottom: 4.2rem;
  right: 5rem;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-link__btn {
    width: 3.4rem;
    height: 3.4rem;
    bottom: 2.2rem;
    right: 2rem;
  }
}

.p-top-link__btn::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.4rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-link__btn::before {
    width: 1.4rem;
    height: 1.2rem;
  }
}

.p-top-link__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.p-top-link__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .p-top-link__item:hover .p-top-link__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-top-link__item:hover .p-top-link__btn {
    right: 4.2rem;
  }
}
.p-top-message {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: var(--color-bg-accent);
}
@media screen and (max-width: 767px) {
  .p-top-message {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}

.p-top-message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.5rem;
  margin-top: 3.5rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6.5rem;
    padding-left: 0;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-message__body {
    padding-left: 0;
  }
}

.p-top-message__subtitle {
  color: var(--white);
  line-height: 1.7;
}
.p-top-message__subtitle .small {
  display: inline-block;
  font-size: 1.8rem;
  background-color: var(--color-accent);
  padding: 0 1.4rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__subtitle .small {
    font-size: 1.4rem;
  }
}
.p-top-message__subtitle .main {
  display: inline-block;
  font-size: 2.5rem;
  background-color: var(--color-accent);
  padding: 0 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__subtitle .main {
    font-size: 2rem;
  }
}

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

.p-top-message__btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__btn {
    margin-top: 4rem;
    text-align: right;
  }
}

.p-top-message__img {
  width: 52.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__img {
    width: 100%;
    margin-top: 0;
  }
}
.p-top-message__img img {
  aspect-ratio: 640/427;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-top-sns {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-top-sns {
    padding-top: 6rem;
  }
}

.p-top-sns__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-sns__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-sns__img {
  width: 58.3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-sns__img {
    width: 100%;
  }
}
.p-top-sns__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 2rem 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-sns__img img {
    border-radius: 1.3rem 1.3rem 0 0;
  }
}

.p-top-sns__body {
  background-color: var(--color-main);
  padding: 3rem 3rem 3rem 4rem;
  border-radius: 0 2rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-sns__body {
    padding: 2rem 1.5rem 3rem 1.5rem;
    border-radius: 0 0 1.3rem 1.3rem;
  }
}

.p-top-sns__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-top-sns__title {
    font-size: 1.4rem;
  }
}

.p-top-sns__title::before {
  content: attr(data-en);
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-sns__title::before {
    font-size: 3.7rem;
    line-height: 1.5;
  }
}

.p-top-sns__text {
  color: var(--white);
  margin-top: 1.8rem;
}

@media (any-hover: hover) {
  .p-top-sns__link:hover {
    opacity: 0.7;
  }
}
.p-top-topics {
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
}

.p-top-topics__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .2);
          box-shadow: 0 0 8px rgba(0, 0, 0, .2);
}
@media screen and (max-width: 767px) {
  .p-top-topics__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-topics__title {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  background-color: var(--color-main);
  text-transform: uppercase;
  text-align: center;
  min-width: 15.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 1.8rem 2rem;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-topics__title {
    font-size: 2.4rem;
    line-height: 1;
    padding: 1rem 2rem;
    border-radius: 1.3rem 1.3rem 0 0;
  }
}

.p-top-topics__item {
  background-color: var(--white);
  border-radius: 0 1rem 1rem 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item {
    border-radius: 0 0 1.3rem 1.3rem;
  }
}

.p-top-topics__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 13rem 1rem 2.3rem;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1.8rem 6rem 3rem 1.8rem;
  }
}

.p-top-topics__item-arrow {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: absolute;
  top: 50%;
  right: 3.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item-arrow {
    width: 2.7rem;
    height: 2.7rem;
    right: 1.6rem;
    top: 63%;
    right: 1.6rem;
  }
}

.p-top-topics__item-arrow::after {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item-arrow::after {
    height: 0.8rem;
  }
}

.p-top-topics__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 22.2rem;
}
.p-top-topics__item-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 12.7rem;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item-category {
    min-width: 11.4rem;
  }
}

.p-top-topics__item-time {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item-time {
    font-size: 1.4rem;
  }
}

.p-top-topics__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-topics__item-title {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    -webkit-line-clamp: 2;
    margin-top: 1rem;
  }
}

@media (any-hover: hover) {
  .p-top-topics__item-link:hover .p-top-topics__item-title {
    color: var(--color-main);
  }
  .p-top-topics__item-link:hover .p-top-topics__item-time {
    color: var(--color-main);
  }
  .p-top-topics__item-link:hover .p-top-topics__item-arrow {
    right: 2.5rem;
    background-color: var(--color-main);
  }
  .p-top-topics__item-link:hover .p-top-topics__item-arrow::after {
    background-color: var(--white);
  }
}
.p-top-vision {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-vision {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.p-top-vision__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-vision__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }
}

.p-top-vision__body {
  margin-top: 2.8rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-vision__body {
    padding-left: 0;
    margin-top: 2.5rem;
  }
}

.p-top-vision__link {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-vision__link {
    margin-top: 3.5rem;
  }
}

.p-top-vision__img {
  width: 54.8885077187%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-vision__img {
    width: 100%;
    margin-top: 0;
  }
}
.p-top-vision__img img {
  aspect-ratio: 640/427;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.p-top-work {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-work {
    padding-top: 4.5rem;
    padding-bottom: 6rem;
  }
}

.p-top-work__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.5rem;
  }
}

.p-top-work__body {
  margin-top: 1.8rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__body {
    padding-left: 0;
  }
}

.p-top-work__link {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__link {
    margin-top: 2.8rem;
  }
}

.p-top-work__img {
  width: 54.8885077187%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__img {
    width: 100%;
    margin-top: 0;
  }
}
.p-top-work__img img {
  aspect-ratio: 640/427;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-work__img img {
    border-radius: 1rem;
  }
}

.p-top-workplace {
  overflow-x: clip;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-workplace {
    padding-bottom: 6rem;
  }
}

.p-top-workplace__img {
  height: 47.8rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top-workplace__img {
    height: 33rem;
  }
}
.p-top-workplace__img picture {
  height: 100%;
}
.p-top-workplace__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-top-workplace__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18rem;
  padding-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-workplace__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-top: 5rem;
  }
}

.p-top-workplace__body {
  margin-top: 1.8rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-workplace__body {
    padding-left: 0;
  }
}

.p-top-workplace__text {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-workplace__text {
    margin-top: 4.4rem;
  }
}

.p-top-workplace__btn {
  margin-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-workplace__btn {
    margin-top: 5rem;
    text-align: right;
  }
}

.p-top-workplace__link {
  width: 39rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 6rem;
  margin-top: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-workplace__link {
    width: 100%;
    margin-right: 0;
    margin-top: 3rem;
  }
}

.p-voice-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 7.4rem;
     -moz-column-gap: 7.4rem;
          column-gap: 7.4rem;
  row-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-archive {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 3rem;
  }
}

.p-voice-archive a {
  display: block;
  height: 100%;
}

.p-voice-archive__item-img {
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-img {
    border-radius: 1.2rem;
    border-radius: 1rem;
  }
}
.p-voice-archive__item-img img {
  aspect-ratio: 300/400;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-img img {
    aspect-ratio: 330/440;
    border-radius: 1rem;
  }
}

.p-voice-archive__item-img.p-voice-archive__item-img--sm img {
  aspect-ratio: 300/246;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
}

.p-voice-archive__item-joining {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  z-index: 2;
}

.p-voice-archive__item-joining span {
  display: inline-block;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.6rem 2rem;
  background-color: var(--color-accent);
  margin-left: auto;
  border-radius: 1.5rem 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-joining span {
    font-size: 1rem;
    border-radius: 1.2rem 0 1.2rem 0;
    padding: 0.2rem 1rem;
  }
}

.p-voice-archive__item-body {
  margin-top: 1.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-body {
    margin-top: 1.2rem;
    padding-right: 0;
    margin-top: 0.6rem;
  }
}

.p-voice-archive__item-arrow {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-arrow {
    width: 2.2rem;
    height: 2.2rem;
    bottom: 0.5rem;
  }
}

.p-voice-archive__item-arrow::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.1rem;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-arrow::after {
    width: 1rem;
    height: 0.8rem;
  }
}

.p-voice-archive__item-job {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-job {
    font-size: 1.3rem;
  }
}

.p-voice-archive__item-name {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item-name {
    font-size: 2rem;
    line-height: 1.3;
  }
}

@media (any-hover: hover) {
  .p-voice-archive__item a:hover .p-voice-archive__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-voice-archive__item a:hover .p-voice-archive__item-body {
    color: var(--color-accent);
  }
  .p-voice-archive__item a:hover .p-voice-archive__item-arrow {
    background-color: var(--color-accent);
  }
  .p-voice-archive__item a:hover .p-voice-archive__item-arrow::after {
    background-color: var(--white);
  }
}
.p-voice-archive__item.single .p-voice-archive__item-joining span {
  display: inline-block;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.6rem 2rem;
  background-color: var(--color-accent);
  margin-left: auto;
  border-radius: 1.5rem 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item.single .p-voice-archive__item-body {
    margin-top: 1.5rem;
  }
}
.p-voice-archive__item.single .p-voice-archive__item-arrow {
  bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-voice-archive__item.single .p-voice-archive__item-arrow {
    bottom: 0;
  }
}

.p-voice-archive02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 7.4rem;
     -moz-column-gap: 7.4rem;
          column-gap: 7.4rem;
  row-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02 {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 3rem;
  }
}

.p-voice-archive02 a {
  display: block;
  height: 100%;
}

.p-voice-archive02__item-img {
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-img {
    border-radius: 1.2rem;
    border-radius: 1rem;
  }
}
.p-voice-archive02__item-img img {
  aspect-ratio: 300/246;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-voice-archive02__item-joining {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  z-index: 2;
}

.p-voice-archive02__item-joining span {
  display: inline-block;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.6rem 2rem;
  background-color: var(--color-accent);
  margin-left: auto;
  border-radius: 1.5rem 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-joining span {
    font-size: 1rem;
    border-radius: 1.2rem 0 1.2rem 0;
    padding: 0.2rem 1rem;
  }
}

.p-voice-archive02__item-body {
  margin-top: 1.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-body {
    margin-top: 1.2rem;
    padding-right: 0;
    margin-top: 0.6rem;
  }
}

.p-voice-archive02__item-arrow {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  position: absolute;
  right: -1.5rem;
  bottom: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-arrow {
    width: 1.8rem;
    height: 1.8rem;
    bottom: 0rem;
    right: -0.2rem;
  }
}

.p-voice-archive02__item-arrow::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.1rem;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-arrow::after {
    width: 0.8rem;
    height: 0.6rem;
  }
}

.p-voice-archive02__item-job {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-job {
    font-size: 1.3rem;
  }
}

.p-voice-archive02__item-name {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voice-archive02__item-name {
    font-size: 2rem;
    line-height: 1.6;
    line-height: 1;
    margin-top: -0.4rem;
  }
}

@media (any-hover: hover) {
  .p-voice-archive02__item a:hover .p-voice-archive02__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-voice-archive02__item a:hover .p-voice-archive02__item-body {
    color: var(--color-accent);
  }
  .p-voice-archive02__item a:hover .p-voice-archive02__item-arrow {
    background-color: var(--color-accent);
  }
  .p-voice-archive02__item a:hover .p-voice-archive02__item-arrow::after {
    background-color: var(--white);
  }
}
.p-voice-archive03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  row-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03 {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 3rem;
  }
}

.p-voice-archive03 a {
  display: block;
  height: 100%;
}

.p-voice-archive03__item-img {
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-img {
    border-radius: 1.2rem;
    border-radius: 1rem;
  }
}
.p-voice-archive03__item-img img {
  aspect-ratio: 327/218;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-img img {
    aspect-ratio: 330/270;
    border-radius: 1rem;
  }
}

.p-voice-archive03__item-joining {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  z-index: 2;
}

.p-voice-archive03__item-joining span {
  display: inline-block;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.8rem 2.5rem;
  background-color: var(--color-accent);
  margin-left: auto;
  border-radius: 1.5rem 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-joining span {
    font-size: 1rem;
    border-radius: 1.2rem 0 1.2rem 0;
    padding: 0.2rem 1rem;
  }
}

.p-voice-archive03__item-body {
  margin-top: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-body {
    margin-top: 1.2rem;
    padding-right: 0;
    margin-top: 0.6rem;
  }
}

.p-voice-archive03__item-arrow {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-arrow {
    width: 1.8rem;
    height: 1.8rem;
    bottom: 0rem;
    right: -0.2rem;
  }
}

.p-voice-archive03__item-arrow::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.1rem;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-arrow::after {
    width: 0.8rem;
    height: 0.6rem;
  }
}

.p-voice-archive03__item-job {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-job {
    font-size: 1.3rem;
  }
}

.p-voice-archive03__item-name {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-voice-archive03__item-name {
    font-size: 2rem;
    line-height: 1.6;
    line-height: 1;
    margin-top: 0rem;
    padding-right: 2rem;
  }
}

@media (any-hover: hover) {
  .p-voice-archive03__item a:hover .p-voice-archive03__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-voice-archive03__item a:hover .p-voice-archive03__item-body {
    color: var(--color-accent);
  }
  .p-voice-archive03__item a:hover .p-voice-archive03__item-arrow {
    background-color: var(--color-accent);
  }
  .p-voice-archive03__item a:hover .p-voice-archive03__item-arrow::after {
    background-color: var(--white);
  }
}
.p-voice-list {
  max-width: 85rem;
  margin-inline: auto;
}

.p-voice-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0rem;
  }
}

.p-voice-list__item-img {
  width: 12rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-voice-list__item-img {
    width: 8rem;
  }
}
.p-voice-list__item-img img {
  width: 100%;
  height: auto;
}
.p-voice-list__item-img.sm img {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-voice-list__item-img.sm img {
    width: 7rem;
  }
}

.p-voice-list__item-text {
  background-color: var(--light-gray);
  width: 80.2352941176%;
  padding: 3.6rem 5rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-list__item-text {
    width: 100%;
    padding: 1rem 1.6rem;
    font-size: 1.3rem;
  }
}

.p-voice-list__item-text::before {
  content: "";
  display: inline-block;
  width: 4.2rem;
  height: 3.2rem;
  background-color: var(--light-gray);
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  position: absolute;
  right: calc(100% - 1px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-voice-list__item-text::before {
    display: none;
  }
}

.p-voice-list__item:nth-child(n+2) {
  margin-top: 2.3rem;
}

.p-voice-list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-voice-list__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-voice-list__item:nth-child(even) .p-voice-list__item-text::before {
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  left: calc(100% - 1px);
}

.p-voice-sec03 {
  background-color: var(--white);
  padding-top: 8rem;
  padding-bottom: 11.5rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-voice-sec03 {
    padding-top: 3.5rem;
    padding-bottom: 6.5rem;
  }
}

.p-voice-sec03__slider {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-sec03__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 3rem;
  }
}

.p-voice__catch {
  color: var(--color-accent);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-voice__catch {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    text-align: left;
    margin-bottom: 3.5rem;
  }
}

.p-voice__catch:nth-of-type(n+2) {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-voice__catch:nth-of-type(n+2) {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-voice-sec03__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .p-voice-sec03__slider .swiper-wrapper {
    display: inline;
    display: initial;
  }
}
.p-worklifebalance-sec02 {
  background-color: var(--color-bg-accent);
  padding-top: 7rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-worklifebalance-sec02 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-workplace-info-list {
  background-color: var(--white);
  padding: 6rem 6rem 6rem 6rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-workplace-info-list {
    padding: 4rem 1.6rem 4rem 1.6rem;
  }
}

.u-bg-color {
  background-color: var(--color-bg-accent);
  padding-top: 7rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .u-bg-color {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}

.u-bg-color100 {
  background-color: var(--color-bg-accent);
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .u-bg-color100 {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.u-bg-color80 {
  background-color: var(--color-bg-accent);
  padding-top: 8rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .u-bg-color80 {
    padding-top: 3rem;
    padding-bottom: 7rem;
  }
}

.u-bg-color90 {
  background-color: var(--color-bg-accent);
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .u-bg-color90 {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.u-bg-round {
  padding-top: 12.5rem;
  padding-bottom: 12rem;
  overflow-x: clip;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20rem, #E1EAED));
  background: linear-gradient(transparent 0% 20rem, #E1EAED 20rem 100%);
}
@media screen and (max-width: 767px) {
  .u-bg-round {
    padding-top: 8.6rem;
    padding-bottom: 5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5rem, #E1EAED));
    background: linear-gradient(transparent 0% 5rem, #E1EAED 5rem 100%);
  }
}

.u-bg-round {
  padding-top: 12.5rem;
  padding-bottom: 12rem;
  overflow-x: clip;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20rem, #E1EAED));
  background: linear-gradient(transparent 0% 20rem, #E1EAED 20rem 100%);
}
@media screen and (max-width: 767px) {
  .u-bg-round {
    padding-top: 8.6rem;
    padding-bottom: 6rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5rem, #E1EAED));
    background: linear-gradient(transparent 0% 5rem, #E1EAED 5rem 100%);
  }
}

.u-bg-round.u-bg-round-feature {
  padding-top: 11rem;
  padding-bottom: 12rem;
  overflow-x: clip;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20rem, #E1EAED));
  background: linear-gradient(transparent 0% 20rem, #E1EAED 20rem 100%);
}
@media screen and (max-width: 767px) {
  .u-bg-round.u-bg-round-feature {
    padding-top: 7.5rem;
    padding-bottom: 5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5rem, #E1EAED));
    background: linear-gradient(transparent 0% 5rem, #E1EAED 5rem 100%);
  }
}
.u-bg-round.u-bg-round-feature::before {
  top: 4rem;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .u-bg-round.u-bg-round-feature::before {
    height: 9rem;
    top: 1rem;
  }
}

.u-bg-round::before {
  content: "";
  display: inline-block;
  width: 119%;
  height: 27rem;
  background-color: var(--color-bg-accent);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%/100% 100% 0 0;
}
@media screen and (max-width: 767px) {
  .u-bg-round::before {
    height: 9rem;
  }
}

.u-bg-round__inner {
  position: relative;
  z-index: 2;
}

.u-bg-round.u-bg-round-sm::before {
  top: 4rem;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .u-bg-round.u-bg-round-sm::before {
    height: 9rem;
    top: 1rem;
  }
}

.p-bg-half {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(41rem, #E1EAED));
  background: linear-gradient(transparent 0 41rem, #E1EAED 41rem 100%);
}
@media screen and (max-width: 767px) {
  .p-bg-half {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(28rem, #E1EAED));
    background: linear-gradient(transparent 0 28rem, #E1EAED 28rem 100%);
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

.u-mt1rem {
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .u-mt20 {
    margin-top: 1rem;
  }
}

.u-mt20sp20 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .u-mt20sp20 {
    margin-top: 2rem;
  }
}

.u-mt20sp40 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .u-mt20sp40 {
    margin-top: 4rem;
  }
}

.u-mt30 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .u-mt30 {
    margin-top: 1.5rem;
  }
}

.u-mt30sp30 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .u-mt30sp30 {
    margin-top: 3rem;
  }
}

.u-mt30sp25 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .u-mt30sp25 {
    margin-top: 2.5rem;
  }
}

.u-mt30sp35 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .u-mt30sp35 {
    margin-top: 3.5rem;
  }
}

.u-mt40 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .u-mt40 {
    margin-top: 3rem;
  }
}

.u-mt40sp20 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .u-mt40sp20 {
    margin-top: 2rem;
  }
}

.u-mt40sp40 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .u-mt40sp40 {
    margin-top: 4rem;
  }
}

.u-mt40sp50 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .u-mt40sp50 {
    margin-top: 5rem;
  }
}

.u-mt50 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt50 {
    margin-top: 4rem;
  }
}

.u-mt50sp30 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt50sp30 {
    margin-top: 3rem;
  }
}

.u-mt50sp50 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt50sp50 {
    margin-top: 5rem;
  }
}

.u-mt50sp25 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt50sp25 {
    margin-top: 2.5rem;
  }
}

.u-mt50sp60 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt50sp60 {
    margin-top: 6rem;
  }
}

.u-mt60 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .u-mt60 {
    margin-top: 4.5rem;
  }
}

.u-mt60sp30 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .u-mt60sp30 {
    margin-top: 3rem;
  }
}

.u-mt60sp35 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .u-mt60sp35 {
    margin-top: 3.5rem;
  }
}

.u-mt60sp40 {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .u-mt60sp40 {
    margin-top: 4rem;
  }
}

.u-mt70 {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .u-mt70 {
    margin-top: 5rem;
  }
}

.u-mt70sp40 {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .u-mt70sp40 {
    margin-top: 4rem;
  }
}

.u-mt70sp30 {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .u-mt70sp30 {
    margin-top: 3rem;
  }
}

.u-mt70sp60 {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .u-mt70sp60 {
    margin-top: 6rem;
  }
}

.u-mt80 {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .u-mt80 {
    margin-top: 5rem;
  }
}

.u-mt80sp40 {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .u-mt80sp40 {
    margin-top: 4rem;
  }
}

.u-mt90 {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .u-mt90 {
    margin-top: 6rem;
  }
}

.u-mt90sp40 {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .u-mt90sp40 {
    margin-top: 4rem;
  }
}

.u-mt90sp50 {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .u-mt90sp50 {
    margin-top: 5rem;
  }
}

.u-mt100 {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .u-mt100 {
    margin-top: 7rem;
  }
}

.u-mt100sp30 {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .u-mt100sp30 {
    margin-top: 3rem;
  }
}

.u-mt100sp40 {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .u-mt100sp40 {
    margin-top: 4rem;
  }
}

.u-mt100sp50 {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .u-mt100sp50 {
    margin-top: 5rem;
  }
}

.u-mt110 {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .u-mt110 {
    margin-top: 6rem;
  }
}

.u-mt110sp50 {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .u-mt110sp50 {
    margin-top: 3rem;
  }
}

.u-mt120 {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .u-mt120 {
    margin-top: 6rem;
  }
}

.p-philosophy-sec01 .u-max920 {
  text-align: left;
  font-size: 2.8rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-philosophy-sec01 .p-content12 {
    font-size: 1.7rem;
  }
  .p-philosophy-sec01 .p-content12 p {
    margin-left: 2.0em;
    text-indent: -2.0em;
  }


}

.u-max920 {
  max-width: 92rem;
  margin-inline: auto;
}

.u-text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .u-sp-text-center {
    text-align: center;
  }
}

.u-text-center-pc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-center-pc {
    text-align: left;
  }
}
/*# sourceMappingURL=styles.css.map */
