@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
:root {
  --btn-color:#fff;
  --btnline-color:#000;
  --btntxt-color:#000;
  --btn-width:18rem;
  --en-color:colors(c_yellow);
  --ja-color:#be1e1e;
  --item-color:red;
  --list-color:#fff;
  --page-title-en-color:#80e10b;
  --base-gradation:linear-gradient(90deg, rgba(5, 100, 205, 1) 20%, rgba(60, 160, 255, 1) 100%) ;
  --reverse-gradation:linear-gradient(270deg, rgba(5, 100, 205, 1) 20%, rgba(60, 160, 255, 1) 100%) fixed;
  --base-gradation-opacity:linear-gradient(90deg, rgba(5, 100, 205, .5) 20%, rgba(60, 160, 255, .5) 100%) ;
  --base-content:1440;
  --btn-size:30rem;
}

@keyframes slideIcon {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0.5em);
  }
}
@keyframes reverseGradation {
  0% {
    background: var(--base-gradation);
  }
  100% {
    background: var(--reverse-gradation);
  }
}
/* アニメーション */
@keyframes img_rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
  background: #fff;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
button, input, textarea {
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
}

input[type=text], textarea, select, input[type=password] {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  width: 100%;
}

textarea {
  height: 10em;
}

button {
  cursor: pointer;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.l-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.l-contents {
  text-align: center;
  line-height: 1.6;
  display: grid;
  gap: 3.2rem;
}
@media (min-width: 1024px) {
  .l-contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .l-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .l-contents {
    padding: 0 5vw;
  }
}

.l-goods {
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .l-goods {
    margin-top: 1.6rem;
  }
}

.l-main {
  position: relative;
  width: 100%;
}
@media (max-width: 1023px) {
  .l-main {
    margin-top: 0;
  }
}

.l-header {
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  top: -3rem;
}
@media (max-width: 767px) {
  .l-header {
    top: 0rem;
  }
}

.l-footer {
  position: relative;
  width: 100%;
}

.p-top-company {
  --ja-color:#37b44b;
  --btn-color:#37b44b;
  --btnline-color:#37b44b;
}

.p-top-business {
  --ja-color:#e60000;
  --btn-color:#e60000;
  --btnline-color:#e60000;
}

.p-top-recruit {
  --ja-color:#ffdc00;
  --btn-color:#ffdc00;
  --btnline-color:#ffdc00;
}

.p-top-news {
  --ja-color:#323232;
  --btn-color:#fff;
  --btnline-color:#323232;
  --btntxt-color:#323232;
}

.p-top-interview {
  --ja-color:#e60000;
  --btn-color:#e60000;
  --btnline-color:#e60000;
}

.p-top__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
}
.p-top__heading .__en {
  font-weight: 700;
  font-size: 8rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-top__heading .__en {
    font-size: 6.4rem;
  }
}
.p-top__heading.a-6 .__en {
  font-weight: 700;
  font-size: 6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-top__heading.a-6 .__en {
    font-size: 4.8rem;
  }
}
@media (max-width: 767px) {
  .p-top__heading.a-6 .__en {
    font-weight: 700;
    font-size: 4rem;
    font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  }
}
.p-top__heading .__ja {
  font-weight: 500;
  font-size: 1.5rem;
}

.p-top-mv {
  display: flex;
  justify-content: center;
}
.p-top-mv img {
  max-width: 100%;
}

.p-top-main {
  z-index: 1;
}

.p-top-menu {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #f5f7f5;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-top-menu {
    padding-inline: 5vw;
  }
}
.p-top-menu img {
  max-width: 100%;
}
.p-top-menu__image {
  text-align: center;
}
.p-top-menu__image img {
  max-width: 100%;
}
.p-top-menu__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-top-menu__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-menu__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-menu__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-menu__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  --menu-color: 128, 225, 11;
}
@media (max-width: 767px) {
  .p-top-menu__items {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 2.4rem;
    justify-items: center;
  }
}
.p-top-menu__items .a-upper {
  --menu-color: 128, 225, 11;
}
.p-top-menu__items .a-lower {
  --menu-color: 65, 230, 255;
}
@media (min-width: 1024px) {
  .p-top-menu__items {
    height: 130rem;
  }
  .p-top-menu__items .a-lower {
    margin-top: -8rem;
  }
  .p-top-menu__items .a-first {
    align-self: end;
  }
  .p-top-menu__items .a-second {
    align-self: center;
  }
  .p-top-menu__items .a-third {
    align-self: start;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-menu__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-menu__items .a-first {
    align-self: end;
  }
  .p-top-menu__items .a-second {
    align-self: center;
  }
  .p-top-menu__items .a-third {
    align-self: start;
  }
}
.p-top-menu__link {
  display: grid;
  padding: 2.4rem;
  background: #fff;
  border-radius: 4rem;
  max-width: 37rem;
  justify-content: center;
  position: relative;
}
.p-top-menu__link .__title {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .p-top-menu__link .__title {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-menu__link .__title {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-top-menu__link .__title {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-top-menu__link .__title .__en {
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: rgb(var(--menu-color));
}
.p-top-menu__link .__title .__ja {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-top-menu__link:hover {
  background: rgba(var(--menu-color), 0.2);
}
.p-top-menu__link:after {
  content: "";
  display: block;
  background: url(../images/common/icon_arrow_w.svg) no-repeat center center/40%;
  background-color: rgb(var(--menu-color));
  border-radius: 50%;
  width: 4rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: 2.4rem;
  bottom: 3.2rem;
}

.p-top-news {
  background: #f5f7f5;
  border-radius: 6rem;
  overflow: hidden;
  --btn-width:24rem;
}
@media (max-width: 1440px) {
  .p-top-news {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-news {
    overflow: inherit;
    border-block: 1px solid #f5f7f5;
  }
}
.p-top-news__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 4rem;
}
@media (max-width: 1023px) {
  .p-top-news__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-news__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-top-news__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-news__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-news__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-news__title {
  text-align: center;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-news__title:before {
    right: 90%;
  }
}
@media (max-width: 767px) {
  .p-top-news__title {
    width: 60%;
    margin-inline-end: 0;
  }
}
.p-top-news__article {
  display: grid;
  line-height: 1.4;
  gap: 1.6rem;
}
.p-top-news__article .__link {
  padding: 1.5em;
  display: grid;
  grid-template-columns: 8em 1fr 5rem;
  line-height: 1.8;
  background: #fff;
  border-radius: 2rem;
  --arrow-bg-color: #000;
}
.p-top-news__article .__link:after {
  align-self: center;
}
@media (max-width: 767px) {
  .p-top-news__article .__link {
    grid-template-columns: 1fr;
  }
  .p-top-news__article .__link:after {
    justify-self: end;
  }
}
.p-top-news__article .__link {
  text-decoration: none;
}
.p-top-news__article .__link:hover {
  background: rgba(255, 220, 0, 0.3);
  opacity: 1;
}
.p-top-news__article .__category {
  font-weight: 400;
  font-size: 1.3rem;
  width: 10rem;
  align-self: start;
  text-align: center;
  padding: 0.2em 1em;
  background: #37b44b;
  border-radius: 2.5rem;
  color: #fff;
}
.p-top-news__article .__date {
  font-weight: 700;
}
.p-top-news__more {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-top-news__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about,
.page-item,
.page-history,
.page-data,
.page-mind,
.page-library {
  --heading-image: url(../images/common/bg_library.png);
  --page-title-en-color:#80e10b;
}

.page-news {
  --heading-image: url(../images/common/bg_news.png);
}

.page-entry {
  --heading-image: url(../images/common/bg_entry.png);
}

.page-contact {
  --heading-image: url(../images/common/bg_entry.png);
}

.page-dictionary01 {
  --heading-image: url(../images/dictionary/bg_dictionary_people01.png);
  --dictionary-color:#d255f5;
}

.page-dictionary02 {
  --heading-image: url(../images/dictionary/bg_dictionary_people02.png);
  --dictionary-color:#3cc8ff;
}

.page-dictionary03 {
  --heading-image: url(../images/dictionary/bg_dictionary_people03.png);
  --dictionary-color:#6e32f0;
}

.page-dictionary04 {
  --heading-image: url(../images/dictionary/bg_dictionary_people04.png);
  --dictionary-color:#80e10b;
}

.p-page-heading {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  height: 30rem;
  background: #fff no-repeat top center;
  background-image: var(--heading-image);
}
@media (max-width: 767px) {
  .p-page-heading {
    height: 16rem;
    background-size: 200%;
    display: grid;
    place-content: center;
  }
}
.p-page-heading__title {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  color: var(--heading-text-color);
}
.p-page-heading__title img {
  max-width: 100%;
}

.p-page-breadcrumbs {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 1.6rem;
}
@media (max-width: 1023px) {
  .p-page-breadcrumbs {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-page-breadcrumbs {
    padding-inline: 1.6rem;
  }
}
.p-page-breadcrumbs__list {
  display: flex;
  gap: 1em;
}
@media (max-width: 767px) {
  .p-page-breadcrumbs__list {
    flex-wrap: wrap;
  }
}
.p-page-breadcrumbs__list-item {
  font-size: 1.3rem;
}
.p-page-breadcrumbs__list-item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-page-breadcrumbs__list-item a:hover {
  text-decoration: none;
}
.p-page-breadcrumbs__list-item:has(a) {
  flex-shrink: 0;
}
.p-page-breadcrumbs__list-item:has(a):after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  margin-left: 10px;
  margin-bottom: 2px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  content: "";
}

@media (min-width: 1024px) {
  .p-page-contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-page-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-page-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-page-contents__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-page-contents__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-page-contents__inner {
    padding-inline: 1.6rem;
  }
}
.p-page-contents .a-bg2 {
  background: #f5f7f5;
}

.p-page-title1 {
  text-align: center;
  display: grid;
  justify-content: center;
  gap: 1.6rem;
}
.p-page-title1 .__en {
  color: var(--page-title-en-color);
  font-weight: 600;
  font-size: 1.8rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-page-title1 .__ja {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .p-page-title1 .__ja {
    font-size: 3.36rem;
  }
}
.p-page-title1.a-border {
  padding-bottom: 2.4rem;
  border-bottom: 2px solid #000;
}
.p-page-title1.a-middle .__ja {
  font-weight: 800;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-page-title1.a-middle .__ja {
    font-size: 2.88rem;
  }
}

.p-page-title2 {
  font-weight: 800;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-page-title2 {
    font-size: 2.88rem;
  }
}

.p-about img {
  max-width: 100%;
}
.p-about__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-about__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-about__title {
    padding-inline: 1.6rem;
  }
}
.p-about__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-about__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-about__inner {
    padding-inline: 1.6rem;
  }
}
.p-about__read {
  text-align: center;
  display: grid;
  gap: 1em;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-about__read {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about__read {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-about__read {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-about__read-title {
  font-weight: 700;
  font-size: 3.2rem;
  color: #008c3c;
}
@media (max-width: 1023px) {
  .p-about__read-title {
    font-size: 2.56rem;
  }
}
.p-about__read-text {
  display: grid;
  gap: 1em;
}
@media (min-width: 1024px) {
  .p-about__read-text {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about__read-text {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-about__read-text {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-about__read-text .__text1 {
  font-size: 1.5rem;
}
.p-about__read-text .__text2 {
  font-weight: 700;
  font-size: 2.5rem;
}
@media (max-width: 1023px) {
  .p-about__read-text .__text2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-about__read-image {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about__read-image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-about__read-image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-about-divisions {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #f5f7f5;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-about-divisions {
    padding-inline: 5vw;
  }
}
.p-about-divisions__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .p-about-divisions__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-about-divisions__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-divisions__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-divisions__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.p-about-division {
  background: #fff;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2.4rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-about-division {
    grid-template-columns: 1fr;
    padding: 2.4rem;
  }
}
.p-about-division .__image {
  text-align: center;
}
.p-about-division .__title {
  font-weight: 700;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-about-division .__title {
    font-size: 2.24rem;
  }
}
.p-about-division .__title_en {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #41e6ff;
}
.p-about-division .__text {
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .p-about-office {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-office {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-about-office {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-about-office__text {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .p-about-office__text {
    font-size: 1.44rem;
  }
}
.p-about-office__list {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .p-about-office__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-office__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-about-office__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 1023px) {
  .p-about-office__list {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-about-office__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-office__list .a-main {
  --office-image: url(../images/about/img_office_main.png);
}
.p-about-office__list .a-tokyo {
  --office-image: url(../images/about/img_office_tokyo.png);
}
.p-about-office__list .a-nigata {
  --office-image: url(../images/about/img_office_nigata.png);
}
.p-about-office__list .a-osaka {
  --office-image: url(../images/about/img_office_osaka.png);
}
.p-about-office__list .__place {
  width: 100%;
  aspect-ratio: 40/28;
  background: var(--office-image) no-repeat center center/cover;
  font-weight: 700;
  font-size: 5.7rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding-top: 15%;
}
@media (max-width: 1023px) {
  .p-about-office__list .__place {
    font-size: 4.56rem;
  }
}
.p-about-office__list .__address {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 1em;
}

.p-about-office__osaka {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: url(../images/about/img_osaka.png) no-repeat top 40% right/96%, url(../images/about/bg_osaka.png) no-repeat center center/cover;
  border-radius: 6rem;
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0);
  position: relative;
}
@media (max-width: 1023px) {
  .p-about-office__osaka {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-about-office__osaka {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 3);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-office__osaka {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 3);
  }
}
@media (max-width: 767px) {
  .p-about-office__osaka {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 3);
  }
}
@media (max-width: 767px) {
  .p-about-office__osaka {
    background: url(../images/about/img_osaka.png) no-repeat top 50% right/96%, url(../images/about/bg_osaka.png) no-repeat center center/cover;
  }
}
.p-about-office__osaka:after {
  content: "";
  display: block;
  width: clamp(10rem, 25%, 30rem);
  aspect-ratio: 1/1;
  background: url(../images/about/img_osaka_option.png) no-repeat center center/contain;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  right: 6.4rem;
}
.p-about-office__osaka__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-about-office__osaka__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-office__osaka__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-office__osaka__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-about-office__osaka__title {
  font-weight: 800;
  font-size: 8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .p-about-office__osaka__title {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
.p-about-office__osaka__text {
  margin-top: 2.4rem;
  line-height: 1.8;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .p-about-office__osaka__text {
    font-size: 1.44rem;
  }
}
.p-about-office__osaka__text .__note {
  font-weight: 400;
  font-size: 1.5rem;
}
@media (max-width: 1023px) {
  .p-about-office__osaka__text .__note {
    font-size: 1.2rem;
  }
}
.p-about-office__osaka__read {
  margin-inline: auto;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  line-height: 2.5;
  font-weight: 800;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #fff;
}
.p-about-office__osaka__read-wrap {
  margin-top: 48%;
  display: grid;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-office__osaka__read {
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .p-about-office__osaka__read {
    line-height: 1.6;
    font-weight: 800;
    font-size: 1.6rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}

.p-item img {
  max-width: 100%;
}
.p-item__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-item__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-item__title {
    padding-inline: 1.6rem;
  }
}
.p-item__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-item__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-item__inner {
    padding-inline: 1.6rem;
  }
}
.p-item__read {
  text-align: center;
  display: grid;
  gap: 1em;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-item__read {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item__read {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-item__read {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-item__read-title {
  font-weight: 700;
  font-size: 3.2rem;
  color: #008c3c;
}
@media (max-width: 1023px) {
  .p-item__read-title {
    font-size: 2.56rem;
  }
}
.p-item__read-text {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .p-item__read-text {
    font-size: 1.44rem;
  }
}
@media (min-width: 1024px) {
  .p-item__read-image {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item__read-image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-item__read-image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-item-case {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #f5f7f5;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-item-case {
    padding-inline: 5vw;
  }
}
.p-item-case__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .p-item-case__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-item-case__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-item-case__title {
  display: grid;
  gap: 1.6rem;
  text-align: center;
  line-height: 1.6;
  border-bottom: 2px dotted #000;
  padding-bottom: 2.4rem;
}
.p-item-case__title .__upper {
  color: #008c3c;
  font-weight: 900;
  font-size: 2.4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-item-case__title .__lower {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}
@media (max-width: 1023px) {
  .p-item-case__title .__lower {
    font-size: 3.36rem;
  }
}
@media (max-width: 767px) {
  .p-item-case__title .__lower {
    font-weight: 800;
    font-size: 2.8rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-item-case__title .__lower {
    font-size: 2.24rem;
  }
}
.p-item-case__text {
  line-height: 2.1;
}
.p-item-case__cloud {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.5fr 1fr;
  padding-bottom: 2.4rem;
  border-bottom: 2px dotted #000;
}
.p-item-case__cloud__wrap {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 3rem;
  padding: 6.4rem 8rem;
}
@media (max-width: 1023px) {
  .p-item-case__cloud__wrap {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-item-case__cloud__wrap {
    padding: 6.4rem 2.4rem;
  }
}
.p-item-case__cloud__title {
  text-align: center;
}
@media (max-width: 767px) {
  .p-item-case__cloud__title img {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__cloud {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    padding: 4rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-item-case__cloud {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    padding: 1.6rem 0rem;
  }
}
.p-item-case__cloud .__desc {
  line-height: 2.2;
  font-feature-settings: "palt";
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (max-width: 767px) {
  .p-item-case__cloud .__desc {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-item-case__cloud .__induction {
  grid-column: 1/2;
  grid-row: 2/3;
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__cloud .__induction {
    grid-column: 1/3;
    grid-row: 2/3;
    display: flex;
    flex-direction: row-reverse;
    gap: 1.6rem;
    width: 100%;
    align-items: start;
  }
  .p-item-case__cloud .__induction > img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .p-item-case__cloud .__induction {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .p-item-case__cloud .__induction .__btn {
    justify-self: center;
  }
}
.p-item-case__cloud .__point {
  font-weight: 700;
  font-size: 2rem;
  color: #008c3c;
}
.p-item-case__cloud .__image {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (max-width: 767px) {
  .p-item-case__cloud .__image {
    grid-column: 1/2;
    grid-row: 2/3;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__cloud .__image {
    text-align: center;
  }
  .p-item-case__cloud .__image img {
    max-width: 100%;
  }
}
.p-item-case__cloud__btn {
  --btn-width: 40rem;
  --btn-color:#000;
  --btnline-color:#fff;
  --btntxt-color:#fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 3.2rem;
  font-size: 4rem;
}
.p-item-case__cloud__btn.c-btn {
  --btn-width: 40rem;
  --btn-color:#000;
  --btnline-color:#fff;
  --btntxt-color:#fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 3.2rem;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .p-item-case__cloud__btn.c-btn {
    --btn-width: 28rem;
  }
  .p-item-case__cloud__btn.c-btn img {
    max-width: 80%;
  }
}
.p-item-case__cloud__btn.c-btn:after {
  content: "";
  display: block;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0.5rem;
  flex-shrink: 0;
  background: url(../images/common/icon_arrow_circle_w.svg) no-repeat center center/100%;
}
.p-item-case__cloud__btn.c-btn:hover {
  --btnline-color:#000;
}
@media (max-width: 767px) {
  .p-item-case__cloud__btn {
    --btn-width: 28rem;
  }
  .p-item-case__cloud__btn img {
    max-width: 80%;
  }
}
.p-item-case__cloud__btn:after {
  content: "";
  display: block;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0.5rem;
  flex-shrink: 0;
  background: url(../images/common/icon_arrow_circle_w.svg) no-repeat center center/100%;
}
.p-item-case__cloud__btn:hover {
  --btnline-color:#000;
}
.p-item-case__cloud-flow {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr 4rem 2.5fr;
  align-items: center;
}
@media (max-width: 1023px) {
  .p-item-case__cloud-flow {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-item-case__cloud-flow {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__cloud-flow {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-item-case__cloud-flow {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__cloud-flow {
    grid-template-columns: 1fr 4rem 2fr;
  }
}
.p-item-case__cloud-flow .__step {
  grid-row: 1/3;
  justify-self: center;
}
.p-item-case__cloud-flow .__arrow {
  grid-row: 1/3;
}
.p-item-case__cloud-flow .__custom,
.p-item-case__cloud-flow .__scratch {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  line-height: 1.6;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-case__cloud-flow .__custom,
  .p-item-case__cloud-flow .__scratch {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 767px) {
  .p-item-case__cloud-flow .__custom,
  .p-item-case__cloud-flow .__scratch {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .p-item-case__cloud-flow {
    grid-template-columns: 1fr 1fr;
  }
  .p-item-case__cloud-flow .__step {
    grid-row: 1/2;
    grid-column: span 2;
    justify-self: center;
  }
  .p-item-case__cloud-flow .__arrow {
    grid-row: 2/3;
    grid-column: span 2;
    justify-self: center;
  }
  .p-item-case__cloud-flow .__arrow img {
    transform: rotate(90deg);
  }
  .p-item-case__cloud-flow .__custom {
    align-self: start;
  }
  .p-item-case__cloud-flow .__scratch {
    align-self: start;
  }
  .p-item-case__cloud-flow .__flow-image {
    text-align: center;
  }
}
.p-item-case__support {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr auto;
}
@media (max-width: 1023px) {
  .p-item-case__support {
    grid-template-columns: 1fr;
  }
}
.p-item-case__support .__text {
  line-height: 2.1;
}

@media (min-width: 1024px) {
  .p-item-office {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-office {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-item-office {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-item-office__text {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .p-item-office__text {
    font-size: 1.44rem;
  }
}
.p-item-office__list {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .p-item-office__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-office__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-item-office__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 1023px) {
  .p-item-office__list {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-item-office__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-item-office__list .a-main {
  --office-image: url(../images/about/img_office_main.png);
}
.p-item-office__list .a-tokyo {
  --office-image: url(../images/about/img_office_tokyo.png);
}
.p-item-office__list .a-nigata {
  --office-image: url(../images/about/img_office_nigata.png);
}
.p-item-office__list .a-osaka {
  --office-image: url(../images/about/img_office_osaka.png);
}
.p-item-office__list .__place {
  width: 100%;
  aspect-ratio: 40/28;
  background: var(--office-image) no-repeat center center/cover;
  font-weight: 700;
  font-size: 5.7rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding-top: 15%;
}
@media (max-width: 1023px) {
  .p-item-office__list .__place {
    font-size: 4.56rem;
  }
}
.p-item-office__list .__address {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 1em;
}

.p-item-office__osaka {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: url(../images/about/img_osaka.png) no-repeat top 40% right/96%, url(../images/about/bg_osaka.png) no-repeat center center/cover;
  border-radius: 6rem;
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0);
  position: relative;
}
@media (max-width: 1023px) {
  .p-item-office__osaka {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-item-office__osaka {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 3);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-office__osaka {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 3);
  }
}
@media (max-width: 767px) {
  .p-item-office__osaka {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 3);
  }
}
@media (max-width: 767px) {
  .p-item-office__osaka {
    background: url(../images/about/img_osaka.png) no-repeat top 50% right/96%, url(../images/about/bg_osaka.png) no-repeat center center/cover;
  }
}
.p-item-office__osaka:after {
  content: "";
  display: block;
  width: clamp(10rem, 25%, 30rem);
  aspect-ratio: 1/1;
  background: url(../images/about/img_osaka_option.png) no-repeat center center/contain;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  right: 6.4rem;
}
.p-item-office__osaka__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-item-office__osaka__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-office__osaka__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-item-office__osaka__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-item-office__osaka__title {
  font-weight: 800;
  font-size: 8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .p-item-office__osaka__title {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
.p-item-office__osaka__text {
  margin-top: 2.4rem;
  line-height: 1.8;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .p-item-office__osaka__text {
    font-size: 1.44rem;
  }
}
.p-item-office__osaka__text .__note {
  font-weight: 400;
  font-size: 1.5rem;
}
@media (max-width: 1023px) {
  .p-item-office__osaka__text .__note {
    font-size: 1.2rem;
  }
}
.p-item-office__osaka__read {
  margin-inline: auto;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  line-height: 2.5;
  font-weight: 800;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #fff;
}
.p-item-office__osaka__read-wrap {
  margin-top: 48%;
  display: grid;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-item-office__osaka__read {
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .p-item-office__osaka__read {
    line-height: 1.6;
    font-weight: 800;
    font-size: 1.6rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}

.p-mind img {
  max-width: 100%;
}
.p-mind__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-mind__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-mind__title {
    padding-inline: 1.6rem;
  }
}
.p-mind__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-mind__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-mind__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-mind__image {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind__image {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-mind__image {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}

.p-mind-read {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #2e77be;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-mind-read {
    padding-inline: 5vw;
  }
}
.p-mind-read__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: center;
  display: grid;
  justify-content: center;
  gap: 2.4rem;
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-mind-read__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-mind-read__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-mind-read__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind-read__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-mind-read__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-mind-read__inner {
    text-align: left;
  }
}
.p-mind-read__title {
  font-weight: 700;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .p-mind-read__title {
    font-weight: 700;
    font-size: 2.8rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}
.p-mind-read__image img {
  animation: img_rotation 30s linear infinite;
}
.p-mind-read__text {
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .p-mind-read__text {
    font-size: 1.44rem;
  }
}
.p-mind-read__catch {
  font-weight: 700;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .p-mind-read__catch {
    font-weight: 700;
    font-size: 2.8rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-mind-read__catch {
    font-size: 2.24rem;
  }
}

.p-mind-reason__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1023px) {
  .p-mind-reason__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-mind-reason__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-mind-reason__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind-reason__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-mind-reason__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-mind-reason__title {
  font-weight: 800;
  font-size: 5.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.4;
  text-align: center;
  border-bottom: 2px solid #000;
  padding-bottom: 2.4rem;
  padding-inline: 2.4rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 1023px) {
  .p-mind-reason__title {
    font-size: 4.4rem;
  }
}
@media (max-width: 767px) {
  .p-mind-reason__title {
    font-size: 3.2rem;
  }
}
.p-mind-reason__title:after {
  content: "";
  display: block;
  width: 3.5rem;
  aspect-ratio: 32/35;
  background: #000;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.p-mind-reason__title:before {
  content: "";
  display: block;
  width: 3.6rem;
  aspect-ratio: 32/35;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: calc(100% - 4px);
  left: calc(50% + 1px);
  z-index: 2;
  transform: translateX(-50%) scale(90%);
}
.p-mind-reason__list {
  padding-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: reason_no 0;
}
@media (min-width: 1024px) {
  .p-mind-reason__list {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind-reason__list {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-mind-reason__list {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind-reason__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }
}
@media (max-width: 767px) {
  .p-mind-reason__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.p-mind-reason__list .__item {
  background: #37b44b;
  border-radius: 3rem;
  text-align: center;
  padding-block: 6rem 2.4rem;
  padding-inline: 2.4rem;
  position: relative;
}
@media (max-width: 1023px) {
  .p-mind-reason__list .__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding-block: 4rem 2.4rem;
  }
}
.p-mind-reason__list .__item:before {
  counter-increment: reason_no 1;
  content: counter(reason_no);
  background: #fff;
  border: 3px solid #008c3c;
  color: #008c3c;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 3.2rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-mind-reason__list .__text {
  margin-top: 1.6rem;
  display: grid;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-mind-reason__list .__text {
    margin-top: 0;
  }
}
.p-mind-reason__list .__text .__en {
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #ffdc00;
}
.p-mind-reason__list .__text .__ja {
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
}
@media (max-width: 1023px) {
  .p-mind-reason__list .__text .__ja {
    font-size: 1.92rem;
  }
}
@media (min-width: 1024px) {
  .p-mind-reason__video {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind-reason__video {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-mind-reason__video {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-mind-reason__video-title {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.p-mind-reason__video-wrap {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-mind-reason__video-wrap {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-mind-reason__video-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-mind-reason__video-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}

@media (min-width: 1024px) {
  .p-history {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-history {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 1024px) {
  .p-history {
    padding-top: calc(7.2rem * 0);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history {
    padding-top: calc(5.6rem * 0);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-history {
    padding-top: calc(4rem * 0);
    padding-bottom: calc(4rem * 1);
  }
}
.p-history__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-history__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-history__title {
    padding-inline: 1.6rem;
  }
}
.p-history__read {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-history__read {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history__read {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-history__read {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 1440px) {
  .p-history__read {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 1023px) {
  .p-history__read {
    font-size: 1.44rem;
  }
}
@media (max-width: 767px) {
  .p-history__read {
    text-align: left;
  }
}
.p-history__list-item:nth-of-type(odd) {
  background: #f5f7f5;
  border-block: 1px solid rgba(255, 255, 255, 0);
}
.p-history__list-item:last-of-type .p-history__list-card::before {
  background: #fff;
  height: 50%;
}
@media (max-width: 1440px) {
  .p-history__list-item {
    padding-inline: 1.6rem;
  }
}
.p-history__list-card {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 5.4rem 3.6rem;
  position: relative;
  padding-inline: 8.8rem 0;
}
@media (min-width: 1024px) {
  .p-history__list-card {
    padding-top: calc(7.2rem * 0.75);
    padding-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history__list-card {
    padding-top: calc(5.6rem * 0.75);
    padding-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-history__list-card {
    padding-top: calc(4rem * 0.75);
    padding-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-history__list-card {
    padding-inline: 4.8rem 0;
  }
}
.p-history__list-card:before {
  content: "";
  display: block;
  height: 130%;
  width: 6px;
  background: #37b44b;
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 5.4rem;
}
.p-history__list-card:after {
  content: "";
  display: block;
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #37b44b;
  position: absolute;
  z-index: 2;
  top: 5.4rem;
  left: 0;
}
.p-history__list-card .__item-year {
  font-weight: 700;
  font-size: 6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-history__list-card .__item-year {
    font-size: 4.8rem;
  }
}
@media (min-width: 1024px) {
  .p-history__list-card .__item-year {
    margin-top: -0.3em;
  }
}
@media (max-width: 767px) {
  .p-history__list-card .__item-year {
    margin-top: 0.2em;
  }
}
.p-history__list-card .__item-year .__month {
  font-weight: 700;
  font-size: 3.6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-history__list-card .__item-year:before {
  content: "";
  display: block;
  height: 6px;
  width: 6.4rem;
  background: #37b44b;
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 6.4rem;
}
@media (max-width: 767px) {
  .p-history__list-card .__item-year:before {
    width: 3.2rem;
  }
}
.p-history__list-card .__item-desc {
  margin-top: 1.6rem;
}
.p-history__list-card .__item-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
}
.p-history__list-card .__item-detail {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 48rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history__list-card .__item-detail {
    max-width: 38rem;
  }
}
.p-history__list-card .__item-image {
  position: absolute;
  left: 50%;
  transform: translate(30%, -10%);
  top: 50%;
}
.p-history__list-card .__item-image.a-last {
  top: unset;
  bottom: 0;
  transform: translateX(20%);
}
.p-history__list-card .__item-image img {
  max-width: 30vw;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history__list-card .__item-image {
    transform: translate(50%, -10%);
  }
}
@media (max-width: 767px) {
  .p-history__list-card .__item-image {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    margin-top: 1.6rem;
    text-align: center;
  }
  .p-history__list-card .__item-image img {
    max-width: 90%;
  }
  .p-history__list-card .__item-image.a-last {
    top: unset;
    bottom: 0;
    transform: unset;
  }
}

.p-history-partner__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-history-partner__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-history-partner__inner {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-history-partner__inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-history-partner__inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
.p-history-partner__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-history-partner__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-history-partner__list .__item {
  width: 100%;
  aspect-ratio: 3/2;
  border: 3px solid #cccccc;
}

.p-data__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-data__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-data__title {
    padding-inline: 1.6rem;
  }
}
.p-data__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-data__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-data__inner {
    padding-inline: 1.6rem;
  }
}
.p-data__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  justify-items: stretch;
}
@media (min-width: 1024px) {
  .p-data__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-data__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-data__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-data__list.a-sec {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-data__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-data__list.a-sec {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .p-data__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-data__list.a-sec {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-data__list-item {
  border: 4px solid #80e10b;
  padding: 4rem 2.4rem;
  position: relative;
}
.p-data__list-item.a-normal {
  display: grid;
  gap: 1.6rem;
  justify-items: stretch;
  text-align: center;
}
.p-data__list-item .__title {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-data__list-item .__count-num {
  font-weight: 700;
  font-size: 7.2rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-data__list-item .__unit {
  font-weight: 700;
  font-size: 2.8rem;
}
.p-data__list-item .__prefix {
  font-weight: 700;
  font-size: 1.6rem;
}
.p-data__list-item .__image {
  padding-inline: 0.8rem;
}
.p-data__list-item .__onchart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}
.p-data__list-item .__onchart_stu1 {
  position: absolute;
  width: 40%;
  max-width: 18.4rem;
  height: 6.4rem;
  left: 10%;
  top: 30%;
  text-align: left;
  background: url(../images/data/img_line1.svg) no-repeat top 20% right;
}
@media (max-width: 767px) {
  .p-data__list-item .__onchart_stu1 {
    left: 1%;
    background-position: top 20% left 50%;
  }
}
.p-data__list-item .__onchart_stu1 .__count-num {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-data__list-item .__onchart_stu1 .__unit {
  font-weight: 700;
  font-size: 2rem;
}
.p-data__list-item .__onchart_stu1 .__prefix {
  font-weight: 700;
  font-size: 1.6rem;
  background: #fff;
}
.p-data__list-item .__onchart_stu2 {
  position: absolute;
  width: 40%;
  max-width: 14.6rem;
  height: 10rem;
  padding-top: 4rem;
  left: 10%;
  top: 55%;
  text-align: left;
  background: url(../images/data/img_line2.svg) no-repeat top right;
}
@media (max-width: 767px) {
  .p-data__list-item .__onchart_stu2 {
    left: 1%;
  }
}
.p-data__list-item .__onchart_stu2 .__count-num {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-data__list-item .__onchart_stu2 .__unit {
  font-weight: 700;
  font-size: 2rem;
}
.p-data__list-item .__onchart_stu3 {
  position: absolute;
  width: 40%;
  max-width: 19rem;
  height: 6rem;
  left: 60%;
  top: 55%;
  text-align: right;
  background: url(../images/data/img_line3.svg) no-repeat bottom right;
}
.p-data__list-item .__onchart_stu3 .__count-num {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-data__list-item .__onchart_stu3 .__unit {
  font-weight: 700;
  font-size: 2rem;
}
.p-data__list-item .__onchart_stu3 .__prefix {
  display: inline-block;
  padding-right: 5.4rem;
}
.p-data__list-item .__cols {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.p-data__list-item .__cols .__count-num {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-data__list-item .__cols .__unit {
  font-weight: 700;
  font-size: 2rem;
}
.p-data__list-item .__col {
  width: 100%;
  display: grid;
  gap: 1.6rem;
  align-items: stretch;
  justify-items: stretch;
}
.p-data__list-item .__col:first-child {
  border-right: 2px solid #80e10b;
}

.p-news__article {
  display: grid;
  line-height: 1.4;
  gap: 1.6rem;
}
.p-news__article .__link {
  padding: 1.5em;
  display: grid;
  grid-template-columns: 8em 1fr 5rem;
  line-height: 1.8;
  background: #fff;
  border-radius: 2rem;
  --arrow-bg-color: #000;
}
.p-news__article .__link:after {
  align-self: center;
}
@media (max-width: 767px) {
  .p-news__article .__link {
    grid-template-columns: 1fr;
  }
  .p-news__article .__link:after {
    justify-self: end;
  }
}
.p-news__article .__link {
  text-decoration: none;
}
.p-news__article .__link:hover {
  background: rgba(255, 220, 0, 0.3);
  opacity: 1;
}
.p-news__article .__category {
  font-weight: 400;
  font-size: 1.3rem;
  width: 10rem;
  align-self: start;
  text-align: center;
  padding: 0.2em 1em;
  background: #37b44b;
  border-radius: 2.5rem;
  color: #fff;
}
.p-news__article .__date {
  font-weight: 700;
}

.p-entry {
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6rem;
}
@media (max-width: 1023px) {
  .p-entry {
    padding-inline: 5vw;
  }
}
.p-entry__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-entry__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-entry__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-entry__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-entry__inner2 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.p-entry__table {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.p-entry-howto-career {
  margin-bottom: 0;
  position: relative;
  border-radius: 0;
}
.p-entry-howto-career:after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(10rem, 25%, 26rem);
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  height: 30rem;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/entry/img_career_howto.png) no-repeat top right/contain;
  background-size: clamp(10rem, 20%, 26rem);
}
@media (max-width: 1023px) {
  .p-entry-howto-career:after {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-entry-howto-career:after {
    top: -10%;
  }
}
@media (max-width: 767px) {
  .p-entry-howto-career {
    padding-bottom: 6.4rem;
  }
}

.p-entry-howto {
  margin-bottom: 0;
  position: relative;
  background: url(../images/entry/img_fresh.png) no-repeat bottom left 10%;
  background-size: clamp(10rem, 25%, 30rem);
  border-radius: 0;
}
@media (max-width: 767px) {
  .p-entry-howto {
    padding-bottom: 6.4rem;
    background-position-x: left 20%;
  }
}
.p-entry-howto__text {
  text-align: center;
  line-height: 2.1;
}
@media (min-width: 1024px) {
  .p-entry-howto__text {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-howto__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-howto__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-entry-howto__btn {
  text-align: center;
  display: flex;
  justify-content: center;
  --btn-width:28rem;
}
@media (min-width: 1024px) {
  .p-entry-howto__btn {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-howto__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-howto__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}

.p-entry-occupation {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-entry-occupation {
    padding-inline: 5vw;
  }
}
.p-entry-occupation__list {
  --btn-width:30rem;
  --btn-color:#000;
  --btntxt-color:#fff;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-entry-occupation__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-occupation__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-entry-occupation__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-entry-contact {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: #e1f5e6;
  text-align: center;
  padding: 4rem 2.4rem;
  border-radius: 2rem;
  display: grid;
  gap: 2.4rem;
  justify-items: center;
}
@media (max-width: 1023px) {
  .p-entry-contact {
    padding-inline: 5vw;
  }
}
.p-entry-contact__title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #008c3c;
}
.p-entry-contact__detail {
  font-size: 1.5rem;
  line-height: 2.1;
}
.p-entry-contact__detail .__tel {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-entry-contact__btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  --btn-width:50rem;
}
@media (min-width: 1024px) {
  .p-entry-contact__btn {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-contact__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-contact__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-entry-contact__btn-text {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.p-entry-process {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #37b44b;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-entry-process {
    padding-inline: 5vw;
  }
}
.p-entry-process__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
@media (max-width: 1023px) {
  .p-entry-process__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-entry-process__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-process__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-entry-process__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-entry-process__circles {
  display: flex;
  gap: 6.4rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-entry-process__circles {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-process__circles {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-entry-process__circles {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 850px) {
  .p-entry-process__circles {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .p-entry-process__circles {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.p-entry-process__circle {
  width: 20rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  align-items: center;
  background-color: var(--process-color);
  position: relative;
}
.p-entry-process__circle:not(:last-child):after {
  content: "";
  position: absolute;
  display: block;
  width: 1.6rem;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #000;
  top: 50%;
  left: calc(100% + 3.2rem - 0.8rem);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-entry-process__circle:not(:last-child):after {
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: calc(100% + 3.2rem - 0.8rem);
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-entry-process__circle.a-doing {
  --process-color:#fff;
  --process-text-color:#000;
  --process-title-size:2rem;
}
.p-entry-process__circle.a-result {
  --process-color:#000;
  --process-text-color:#fff;
  --process-title-size:2.2rem;
}
.p-entry-process__circle .__no {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #37b44b;
}
.p-entry-process__circle .__title {
  font-weight: 700;
  font-size: var(--process-title-size);
  color: var(--process-text-color);
}
.p-entry-process__circle .__detail {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--process-text-color);
  line-height: 1.2;
}

.p-entry-for {
  margin-bottom: 0;
  position: relative;
}
.p-entry-for__text {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-entry-for__text {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-for__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-for__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-entry-for__btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  --btn-width:50rem;
}
@media (min-width: 1024px) {
  .p-entry-for__btn {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-for__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-for__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-entry-for__external-link {
  height: 9rem;
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  width: 100%;
  max-width: 50rem;
}
.p-entry-for__external-link.c-btn {
  height: 9rem;
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  width: 100%;
  max-width: 50rem;
}
.p-entry-for__external-link.c-btn:hover {
  background: #fff;
  border-color: #37b44b;
}
.p-entry-for__external-link.c-btn img {
  max-width: 90%;
}
.p-entry-for__external-link:hover {
  background: #fff;
  border-color: #37b44b;
}
.p-entry-for__external-link img {
  max-width: 90%;
}

.p-entry-schedule {
  margin-bottom: 0;
  position: relative;
}
.p-entry-schedule__text {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-entry-schedule__text {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-schedule__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-schedule__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-entry-schedule__btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  --btn-width:50rem;
}
@media (min-width: 1024px) {
  .p-entry-schedule__btn {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-schedule__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-entry-schedule__btn {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-entry-schedule__link {
  text-align: center;
}

.p-entry-recruit-contact {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-entry-recruit-contact {
    padding-top: calc(7.2rem * );
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-recruit-contact {
    padding-top: calc(5.6rem * );
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-entry-recruit-contact {
    padding-top: calc(4rem * );
    padding-bottom: calc(4rem * 1);
  }
}
.p-entry-recruit-contact__text {
  text-align: center;
  line-height: 2.1;
}
@media (min-width: 1024px) {
  .p-entry-recruit-contact__text {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entry-recruit-contact__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-entry-recruit-contact__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-entry-recruit-contact:after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(10rem, 25%, 26rem);
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  height: 18rem;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/entry/img_career_contact.png) no-repeat bottom left 15%/contain;
  background-size: clamp(10rem, 30%, 30rem);
  z-index: 10;
}
@media (max-width: 1023px) {
  .p-entry-recruit-contact:after {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-entry-recruit-contact:after {
    background-size: 30%;
  }
}

.p-application img {
  max-width: 100%;
}
.p-application__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-application__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-application__title {
    padding-inline: 1.6rem;
  }
}
.p-application__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-application__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-application__inner {
    padding-inline: 1.6rem;
  }
}
.p-application__read {
  text-align: center;
  display: grid;
  gap: 1em;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-application__read {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application__read {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-application__read {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-application__read-text {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .p-application__read-text {
    font-size: 1.44rem;
  }
}
@media (max-width: 767px) {
  .p-application__read-text {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .p-application__read-image {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application__read-image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application__read-image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-application-btn__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  --btn-color:#ffdc00;
  --btn-width:44rem;
}
@media (min-width: 1024px) {
  .p-application-btn__wrap {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-btn__wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-application-btn__wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}

.p-application-infosession {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-application-infosession {
    padding-inline: 5vw;
  }
}
.p-application-infosession__text {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2.1;
}
@media (min-width: 1024px) {
  .p-application-infosession__text.a-margin {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-infosession__text.a-margin {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-infosession__text.a-margin {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.p-application-case {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #f5f7f5;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-application-case {
    padding-inline: 5vw;
  }
}
.p-application-case__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .p-application-case__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-case__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-case__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-application-case__title {
  display: grid;
  gap: 0.2rem;
  text-align: center;
  line-height: 1.6;
  padding-bottom: 2.4rem;
  position: relative;
}
.p-application-case__title:after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.5rem;
  background: #37b44b;
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 50%;
  transform: translateX(-50%);
}
.p-application-case__title .__upper {
  color: #008c3c;
  font-weight: 900;
  font-size: 2.4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-application-case__title .__upper {
    font-size: 1.92rem;
  }
}
.p-application-case__title .__lower {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}
@media (max-width: 1023px) {
  .p-application-case__title .__lower {
    font-size: 3.36rem;
  }
}
@media (max-width: 767px) {
  .p-application-case__title .__lower {
    font-weight: 800;
    font-size: 2.8rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-application-case__title .__lower {
    font-size: 2.24rem;
  }
}
.p-application-case__title.a-middle .__lower {
  font-weight: 800;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-application-case__title.a-middle .__lower {
    font-size: 2.88rem;
  }
}
@media (max-width: 767px) {
  .p-application-case__title.a-middle .__lower {
    font-weight: 800;
    font-size: 2.4rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-application-case__title.a-middle .__lower {
    font-size: 1.92rem;
  }
}
.p-application-case__text {
  line-height: 2.1;
  text-align: center;
}
.p-application-case__subtitle {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .p-application-case__subtitle {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-case__subtitle {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-case__subtitle {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-application-case__schedule-datalist__wrap {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
.p-application-case__schedule-datalist.a-col2 .__group {
  grid-template-columns: 1fr;
}
.p-application-case__schedule-datalist .__group {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 767px) {
  .p-application-case__schedule-datalist .__group {
    grid-template-columns: 1fr;
  }
}
.p-application-case__schedule-datalist .__group:not(.__group-heading) .__datetime {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
}
.p-application-case__schedule-datalist .__group:not(.__group-heading) .__datetime .__day {
  border-right: 1px solid #ccc;
}
.p-application-case__schedule-datalist .__group:not(.__group-heading) .__datetime .__day,
.p-application-case__schedule-datalist .__group:not(.__group-heading) .__datetime .__time {
  padding: 1.6rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .p-application-case__schedule-datalist .__group:not(.__group-heading) .__datetime .__day,
  .p-application-case__schedule-datalist .__group:not(.__group-heading) .__datetime .__time {
    padding: 1.6rem 0.8rem;
    font-size: 1.5rem;
  }
}
.p-application-case__schedule-datalist .__group:not(.__group-heading) .__place {
  background: #e1f5e6;
  padding: 4rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: #008c3c;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .p-application-case__schedule-datalist .__group:not(.__group-heading) .__place {
    padding: 2.4rem 1.6rem;
    border-right: none;
  }
}
.p-application-case__schedule-datalist .__group-heading {
  border-block: 1px solid #ccc;
}
.p-application-case__schedule-datalist .__group-heading .__place,
.p-application-case__schedule-datalist .__group-heading .__datetime {
  background: #37b44b;
  color: #fff;
  text-align: center;
  padding: 0;
}
.p-application-case__schedule-datalist .__group-heading .__place .__day,
.p-application-case__schedule-datalist .__group-heading .__place .__time,
.p-application-case__schedule-datalist .__group-heading .__datetime .__day,
.p-application-case__schedule-datalist .__group-heading .__datetime .__time {
  padding: 1.6rem;
}
.p-application-case__schedule-datalist .__group-heading .__place .__day,
.p-application-case__schedule-datalist .__group-heading .__datetime .__day {
  border-right: 1px solid #ccc;
}
.p-application-case__schedule-datalist .__group-heading .__datetime {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-application-case__schedule-datalist .__group-heading .__place {
  padding: 1.6rem;
}
@media (max-width: 767px) {
  .p-application-case__schedule-datalist .__group-heading .__place {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}

.p-application-steplist {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 4px;
  justify-content: center;
  --step-arrow-width:3rem;
}
@media (max-width: 767px) {
  .p-application-steplist {
    flex-direction: column;
    padding-bottom: 4rem;
    line-height: 1.4;
  }
}

.p-application-steplist__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  max-width: 24rem;
  padding: 0 var(--step-arrow-width);
  flex: 1;
  list-style: none;
  background-color: #e1f5e6;
  color: #37b44b;
  text-align: center;
  clip-path: polygon(0% 0%, calc(100% - var(--step-arrow-width)) 0%, 100% 50%, calc(100% - var(--step-arrow-width)) 100%, 0% 100%, var(--step-arrow-width) 50%);
  margin: 0 -14px;
}
@media (max-width: 767px) {
  .p-application-steplist__item {
    max-width: 100%;
    height: auto;
    padding-block: 0.5em;
    padding: calc(var(--step-arrow-width) / 1) 0.5em;
    clip-path: polygon(0 0, 50% calc(var(--step-arrow-width) / 2), 100% 0, 100% calc(100% - var(--step-arrow-width) / 2), 50% 100%, 0 calc(100% - var(--step-arrow-width) / 2));
    margin: -8px 0;
  }
}

.p-application-steplist__item:first-child {
  clip-path: polygon(0% 0%, calc(100% - var(--step-arrow-width)) 0%, 100% 50%, calc(100% - var(--step-arrow-width)) 100%, 0% 100%);
  margin-left: 0;
  padding-left: 0;
}
@media (max-width: 767px) {
  .p-application-steplist__item:first-child {
    clip-path: polygon(0 0, 50% 0, 100% 0, 100% calc(100% - var(--step-arrow-width) / 2), 50% 100%, 0 calc(100% - var(--step-arrow-width) / 2));
    padding-left: 0.5em;
  }
}

.p-application-steplist__item:nth-last-of-type(odd) {
  background-color: #008c3c;
  color: #fff;
}

.p-application-steplist__item:nth-last-of-type(even) {
  background-color: #37b44b;
  color: #fff;
}

.p-application-steplist__inner {
  display: grid;
  gap: 0.8rem;
}
.p-application-steplist .step-text__upper {
  font-weight: 500;
  font-size: 1.6rem;
  display: block;
}
.p-application-steplist .step-text__lower {
  display: block;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}
.p-application-steplist__note {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-application-steplist__note {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-steplist__note {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-application-steplist__note {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-application-outline-table {
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
}
@media (max-width: 767px) {
  .p-application-outline-table tr {
    display: grid;
  }
}
.p-application-outline-table .__title {
  background: var(--table-title-bgcolor);
  color: var(--table-title-color);
  padding: 1.6rem;
  font-weight: 700;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  min-width: 10em;
}
.p-application-outline-table .__detail {
  background: var(--table-detail-bgcolor);
  color: var(--table-detail-color);
  padding: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
.p-application-outline-table .a-bold {
  font-weight: 700;
}

.p-application-internship-introduction {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #000;
  border-radius: 6rem;
}
@media (min-width: 1024px) {
  .p-application-internship-introduction {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-introduction {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-internship-introduction {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-application-internship-introduction__inner {
  padding-inline: 1.6rem;
  text-align: center;
  color: #fff;
  line-height: 2.2;
  font-size: 1.8rem;
  position: relative;
}
@media (min-width: 1024px) {
  .p-application-internship-introduction__inner {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-introduction__inner {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-internship-introduction__inner {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1023px) {
  .p-application-internship-introduction__inner {
    font-size: 1.44rem;
  }
}
@media (max-width: 767px) {
  .p-application-internship-introduction__inner {
    text-align: left;
  }
}
.p-application-internship-introduction__inner .__strong {
  color: #ffdc00;
  font-weight: 800;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-application-internship-introduction__inner .__strong {
    font-size: 2.88rem;
  }
}
.p-application-internship-introduction__inner .__strong-sub {
  font-weight: 800;
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-application-internship-introduction__inner .__strong-sub {
    font-size: 1.92rem;
  }
}
.p-application-internship-introduction__inner .__image {
  position: absolute;
  top: 15%;
  left: 80%;
  aspect-ratio: 200/444;
  width: 15%;
  max-width: 20rem;
}
@media (max-width: 77rem) {
  .p-application-internship-introduction__inner .__image {
    position: relative;
    float: right;
    top: unset;
    left: unset;
    width: 20%;
    margin-left: 1.6rem;
  }
}
.p-application-internship-case {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background: #37b44b;
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-application-internship-case {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-application-internship-case {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-application-internship-case__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-application-internship-case__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-application-internship-case__title {
  font-weight: 700;
  font-size: 10rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  font-style: italic;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-application-internship-case__title {
    font-size: 8rem;
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__title {
    font-weight: 700;
    font-size: 5.4rem;
    font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-application-internship-case__title {
    font-size: 4.32rem;
  }
}
.p-application-internship-case__card {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 4rem;
  position: relative;
}
@media (min-width: 1024px) {
  .p-application-internship-case__card {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__card {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__card {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (min-width: 1024px) {
  .p-application-internship-case__card {
    padding-top: calc(7.2rem * 0.75);
    padding-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__card {
    padding-top: calc(5.6rem * 0.75);
    padding-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__card {
    padding-top: calc(4rem * 0.75);
    padding-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 1023px) {
  .p-application-internship-case__card {
    padding-inline: 5vw;
  }
}
.p-application-internship-case__card__title {
  font-weight: 800;
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-application-internship-case__card__title {
    font-size: 2.88rem;
  }
}
.p-application-internship-case__card.a-onepoint1 .p-application-internship-case__onepoint {
  position: absolute;
  width: 25%;
  max-width: 24.5rem;
  min-width: 12rem;
  aspect-ratio: 245/212;
  bottom: -2%;
  left: 80%;
}
.p-application-internship-case__card.a-onepoint2 .p-application-internship-case__onepoint {
  position: absolute;
  width: 25%;
  max-width: 25rem;
  min-width: 12rem;
  aspect-ratio: 250/250;
  bottom: 10%;
  left: 80%;
}
@media (max-width: 1024px) {
  .p-application-internship-case__card.a-onepoint2 .p-application-internship-case__onepoint {
    bottom: -2%;
    left: 80%;
  }
}
.p-application-internship-case__card__outline {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  --table-title-bgcolor: #000;
  --table-title-color: #fff;
  --table-detail-bgcolor:#f5f7f5;
  --table-detail-color: #000;
}
@media (min-width: 1024px) {
  .p-application-internship-case__card__outline {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__card__outline {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__card__outline {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-application-internship-case__summary {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-application-internship-case__summary {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__summary {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__summary {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-application-internship-case__summary__title {
  font-weight: 800;
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-application-internship-case__summary__title {
    font-size: 2rem;
  }
}
.p-application-internship-case__summary__list {
  display: grid;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 1.6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .p-application-internship-case__summary__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__summary__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__summary__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__summary__list {
    grid-template-columns: repeat(1, 1fr);
    line-height: 1.4;
  }
}
.p-application-internship-case__summary__list .__item {
  text-align: center;
  padding: 1em;
  background: #ffeb78;
  border-radius: 2.5em;
  font-weight: 700;
  font-feature-settings: "palt";
}
.p-application-internship-case__summary__steplist {
  display: flex;
  gap: 4rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-application-internship-case__summary__steplist {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__summary__steplist {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__summary__steplist {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__summary__steplist {
    flex-direction: column;
  }
}
.p-application-internship-case__summary__steplist .__item {
  text-align: center;
  padding: 1em;
  background: #ffeb78;
  border-radius: 2rem;
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.p-application-internship-case__summary__steplist .__item:not(:last-child):after {
  content: "";
  position: absolute;
  display: block;
  width: 1.6rem;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #000;
  top: 50%;
  left: calc(100% + 2rem - 0.8rem);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-application-internship-case__summary__steplist .__item:not(:last-child):after {
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: calc(100% + 2.4rem - 0.8rem);
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-application-internship-case__summary__steplist .__item-date {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #37b44b;
  border-radius: 2.5em;
  text-align: center;
  padding: 0.8em 2em;
  font-weight: 700;
  font-feature-settings: "palt";
}
.p-application-internship-case__summary__steplist .__item-text {
  text-align: center;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.6;
}
.p-application-internship-case__text {
  text-align: center;
  line-height: 1.66;
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .p-application-internship-case__text {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship-case__text {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__text {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-application-internship-case__text {
    text-align: left;
  }
}
.a-onepoint1 .p-application-internship-case__text, .a-onepoint2 .p-application-internship-case__text {
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .a-onepoint1 .p-application-internship-case__text, .a-onepoint2 .p-application-internship-case__text {
    margin-inline: unset;
    width: 80%;
    text-align: left;
  }
}
.p-application-internship__images {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 1024px) {
  .p-application-internship__images {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-application-internship__images {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-application-internship__images {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 60rem) {
  .p-application-internship__images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-application-seminar {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #f5f7f5;
  border-radius: 6rem;
}
@media (max-width: 1023px) {
  .p-application-seminar {
    padding-inline: 5vw;
  }
}
.p-application-seminar-card {
  display: grid;
  gap: 4rem;
}

.p-cms-front p:not([class]) {
  line-height: 2;
}
.p-cms-front strong {
  font-weight: 700;
}
.p-cms-front .single-news__imgbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-cms-front .single-news__imgbox {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__imgbox {
    display: block;
  }
}
.p-cms-front .single-news__imgbox li {
  width: 48%;
  margin-top: 50px;
}
.p-cms-front .single-news__imgbox li img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__imgbox li {
    width: 100%;
    margin-top: 30px;
  }
}
.p-cms-front .single-news .banner {
  padding-bottom: 20px;
  text-align: -webkit-center;
}
.p-cms-front .single-news .banner p {
  color: #fff;
  background-color: #000;
  font-weight: 700;
}
.p-cms-front .single-news__grid {
  background-color: #fff;
  line-height: 2;
}
.p-cms-front .single-news__grid img {
  max-width: 100%;
  height: auto;
}
.p-cms-front .single-news__grid div .date {
  float: left;
  position: relative;
  padding: 2px 10px 0 40px;
}
.p-cms-front .single-news__grid div .date span {
  left: 0;
}
.p-cms-front .single-news__grid div .tag {
  float: left;
  border: 1px solid #39b54a;
  padding: 0 20px;
}
.p-cms-front .single-news__grid .content_ttl {
  width: 100%;
  display: inline-block;
  border-bottom: 2px solid #CCC;
  border-left: 5px solid #39b54a;
  font-weight: 700;
  padding: 10px 0 0 5px;
  margin-bottom: 30px;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid {
    padding: 30px 10px;
  }
  .p-cms-front .single-news__grid .content_ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.p-cms-front .single-news__grid a {
  color: #39b54a;
}
.p-cms-front .single-news__grid a:hover {
  text-decoration: underline;
}
.p-cms-front .single-news__grid h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  margin-top: 40px;
  width: 100%;
  border-bottom: 1px solid #CCC;
}
.p-cms-front .single-news__grid > h2:first-of-type {
  margin-top: 0;
}
.p-cms-front .single-news__grid h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  margin-top: 35px;
  width: 100%;
  border-bottom: 1px dashed #CCC;
}
.p-cms-front .single-news__grid h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  margin-top: 30px;
}
.p-cms-front .single-news__grid h5 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid h2 {
    margin-top: 30px;
    font-size: 18px;
  }
  .p-cms-front .single-news__grid h3 {
    margin-top: 30px;
    font-size: 17px;
  }
  .p-cms-front .single-news__grid h4 {
    margin-top: 20px;
    font-size: 16px;
  }
  .p-cms-front .single-news__grid h5 {
    margin-top: 20px;
    font-size: 14px;
  }
}
.p-cms-front .single-news__grid p,
.p-cms-front .single-news__grid table {
  margin-left: 20px;
}
.p-cms-front .single-news__grid ul {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid p,
  .p-cms-front .single-news__grid table {
    margin-left: 10px;
  }
  .p-cms-front .single-news__grid ul {
    margin-left: 30px;
  }
}
.p-cms-front .single-news__grid h1 + p + h2,
.p-cms-front .single-news__grid h1 + p + h3,
.p-cms-front .single-news__grid h1 + p + h4,
.p-cms-front .single-news__grid h1 + p + h5 {
  margin-top: 0;
}
.p-cms-front .single-news__grid img,
.p-cms-front .single-news__grid iframe {
  padding: 20px 0 20px;
}
.p-cms-front .single-news__grid .nospace {
  padding: 0;
}
.p-cms-front .single-news__grid span.sub {
  vertical-align: sub;
  font-size: 80%;
}
.p-cms-front .single-news__grid span.super {
  vertical-align: super;
  font-size: 80%;
}
.p-cms-front .single-news__grid span.small {
  font-size: 80%;
}
.p-cms-front .single-news__grid div.enclosure {
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  background: #dff1e1;
  border: solid 1px #008b13;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid div.enclosure {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
  }
}
.p-cms-front .single-news__grid .no_bullets {
  margin-top: 10px;
}
.p-cms-front .single-news__grid iframe.wp-embedded-content {
  width: 100%;
  max-width: 1000px;
}

.p-entryform {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-entryform {
    padding-inline: 5vw;
  }
}
.p-entryform__note {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-entryform__note {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entryform__note {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-entryform__note {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-entryform__note .__strong {
  color: #e60000;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-entryform__note {
    text-align: left;
  }
}
.p-entryform__select {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .p-entryform__select {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-entryform__select__text {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
.p-entryform__select__link {
  background: #37b44b;
  border-radius: 2.5em;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 2em;
  display: flex;
  gap: 1em;
}
.p-entryform__select__link input[type=radio] {
  transform: scale(155%);
}
@media (max-width: 767px) {
  .p-entryform__select__link {
    text-align: left;
  }
}
.p-entryform__block:not(.p-entryform__block.is_active) {
  display: none;
  position: absolute;
}
.p-entryform__link {
  font-weight: 700;
  color: #008c3c;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-entryform__link:hover {
  text-decoration: none;
}
.p-entryform__title {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  font-weight: 800;
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (min-width: 1024px) {
  .p-entryform__title {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-entryform__title {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-entryform__title {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-entryform-form {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 1024px) {
  .c-table__wrap {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-table__wrap {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .c-table__wrap {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.c-table-body {
  border-collapse: collapse;
}
.c-table-tr {
  margin-top: -1px;
}
@media (max-width: 767px) {
  .c-table-tr {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.c-table-th {
  border-collapse: collapse;
  background: #37b44b;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 2.4rem;
  border-block: 1px solid #cccccc;
  width: 8em;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-table-th {
    padding: 0.8rem 2.4rem;
    width: 100%;
  }
}
.c-table-td {
  border-collapse: collapse;
  background: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 2.4rem;
  border-block: 1px solid #cccccc;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-table-td {
    border-top: none;
  }
}

.page-dictionary .p-page-heading {
  height: 55rem;
}
.page-dictionary .p-page-heading img {
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-dictionary .p-page-heading {
    background-size: cover;
    height: unset;
    width: 100%;
    aspect-ratio: 1440/550;
  }
}
@media (max-width: 767px) {
  .page-dictionary .p-page-heading {
    background-size: cover;
    height: unset;
    width: 100%;
    aspect-ratio: 1440/550;
  }
}

.p-dictionary01 {
  --people01-image: url(../images/dictionary/img_people01_01.png);
  --people02-image: url(../images/dictionary/img_people01_02.png);
}

.p-dictionary02 {
  --people01-image: url(../images/dictionary/img_people02_01.png);
  --people02-image: url(../images/dictionary/img_people02_02.png);
}

.p-dictionary03 {
  --people01-image: url(../images/dictionary/img_people03_01.png);
  --people02-image: url(../images/dictionary/img_people03_02.png);
}

.p-dictionary04 {
  --people01-image: url(../images/dictionary/img_people04_01.png);
  --people02-image: url(../images/dictionary/img_people04_02.png);
}

.p-dictionary {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-dictionary {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-dictionary {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-dictionary__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-dictionary__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1023px) {
  .p-dictionary__title {
    font-size: 3.36rem;
  }
}
@media (max-width: 767px) {
  .p-dictionary__title {
    font-weight: 800;
    font-size: 2.4rem;
    font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-dictionary__title {
    font-size: 1.92rem;
  }
}
.p-dictionary__people {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: var(--dictionary-color);
  color: #fff;
  padding: 0.5em 1em;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 1023px) {
  .p-dictionary__people {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-dictionary__people {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary__people {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-dictionary__people {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-dictionary__people span {
  display: inline-block;
}
.p-dictionary__people .__note {
  font-weight: 500;
  font-size: 1.5rem;
}
.p-dictionary__read {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1.6rem;
  padding-block: 4rem;
}
@media (max-width: 1023px) {
  .p-dictionary__read {
    padding-inline: 5vw;
  }
}
.p-dictionary__read:not(:has(img)) {
  border-bottom: 2px dotted #000;
}
.p-dictionary__read:has(+ .p-dictionary__message) {
  border-bottom: none;
}
.p-dictionary__subtitle {
  color: var(--dictionary-color);
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.75;
  margin-bottom: 0.5em;
}
@media (max-width: 1023px) {
  .p-dictionary__subtitle {
    font-size: 1.76rem;
  }
}
.p-dictionary__talk {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .p-dictionary__talk {
    grid-template-columns: 6rem 1fr;
    gap: 1.6rem;
  }
}
.p-dictionary__talk:before {
  content: "";
  display: block;
  max-width: 7.5rem;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .p-dictionary__talk:before {
    max-width: 6rem;
  }
}
.p-dictionary__talk.a-people01:before {
  background: var(--people01-image) no-repeat center center/contain;
}
.p-dictionary__talk.a-people02:before {
  background: var(--people02-image) no-repeat center center/contain;
}
.p-dictionary__talk .__talk {
  line-height: 2;
}
.p-dictionary__talk .__talk .__name {
  font-weight: 700;
  font-size: 1.5rem;
}
.p-dictionary__talk .__talk .__text {
  font-weight: 400;
  font-size: 1.5rem;
}
.p-dictionary__image {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-dictionary__image {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary__image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-dictionary__image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-dictionary__image img {
  max-width: 100%;
}
.p-dictionary__message {
  display: flex;
  gap: 6.4rem;
}
@media (min-width: 1024px) {
  .p-dictionary__message {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary__message {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-dictionary__message {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-dictionary__message.a-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .p-dictionary__message {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
@media (max-width: 767px) and (max-width: 1440px) {
  .p-dictionary__message {
    padding-inline: 1.6rem;
  }
}
.p-dictionary__message-image {
  width: clamp(20vw, 50%, 57rem);
}
.p-dictionary__message-image img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-dictionary__message-image {
    overflow: hidden;
    width: 100%;
    text-align: center;
  }
  .p-dictionary__message-image img {
    border-radius: 6rem;
  }
}
.p-dictionary__message-comment {
  background: var(--dictionary-color);
  color: #fff;
  border-radius: 6rem;
  padding: 6.4rem;
  width: 100%;
  max-width: 60rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-dictionary__message-comment {
    margin-inline: auto;
    padding: 4rem 2.4rem;
  }
}
.p-dictionary__message-comment:before {
  content: "";
  display: block;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--dictionary-color);
  position: absolute;
  right: 100%;
  top: 50%;
  width: 2.5rem;
  height: 4rem;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .p-dictionary__message-comment:before {
    right: 50%;
    top: unset;
    bottom: calc(100% - 0.8rem);
    transform: rotate(270deg);
  }
}
.a-reverse .p-dictionary__message-comment:before {
  right: unset;
  left: 100%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .a-reverse .p-dictionary__message-comment:before {
    left: 50%;
    top: unset;
    bottom: calc(100% - 0.8rem);
    transform: rotate(270deg);
  }
}

.p-dictionary__message-comment__title {
  display: grid;
  gap: 1.6rem;
  padding-bottom: 2.4rem;
  border-bottom: 2px dotted #fff;
}
.p-dictionary__message-comment__title .__en {
  font-weight: 700;
  font-size: 4.8rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-dictionary__message-comment__title .__en {
    font-size: 3.84rem;
  }
}
.p-dictionary__message-comment__title .__ja {
  font-weight: 800;
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-dictionary__message-comment__title .__ja {
    font-size: 2rem;
  }
}
.p-dictionary__message-comment .__comment {
  margin-top: 2.4rem;
  line-height: 2;
}
.p-dictionary__message-comment .__comment-name {
  font-weight: 700;
  font-size: 1.5rem;
}
.p-dictionary__message-comment .__comment-text {
  font-weight: 400;
  font-size: 1.5rem;
}
.p-dictionary__list__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-dictionary__list__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-dictionary__list__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary__list__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-dictionary__list__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-dictionary__list-title {
  text-align: center;
}

.p-dictionary-people img {
  max-width: 100%;
}
.p-dictionary-people__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-dictionary-people__inner {
    padding-inline: 5vw;
  }
}
.p-dictionary-people__title {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.p-dictionary-people__list {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-dictionary-people__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary-people__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-dictionary-people__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 1);
  }
}
.p-dictionary-people .a-2_3years {
  --people-color:210, 85, 245;
}
.p-dictionary-people .a-5_6years {
  --people-color:60, 200, 255;
}
.p-dictionary-people .a-projectleader {
  --people-color: 110, 50, 240;
}
.p-dictionary-people .a-preg {
  --people-color: 128, 225, 11;
}
.p-dictionary-people__list-item a {
  display: block;
  border: 3px solid transparent;
  border-radius: 6rem;
  padding: 2.4rem;
}
.p-dictionary-people__list-item a:hover {
  background: rgba(var(--people-color), 0.2);
}
@media (max-width: 767px) {
  .p-dictionary-people__list-item a {
    border: 2px solid rgba(var(--people-color), 1);
    border-radius: 1.6rem;
    padding: 0 0 0.8rem;
    overflow: hidden;
  }
  .p-dictionary-people__list-item a:hover {
    background: rgba(var(--people-color), 0.2);
  }
}
.p-dictionary-people__list-item .__desc {
  display: grid;
  grid-template-columns: 1fr 8rem;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  row-gap: 1.6rem;
  align-items: center;
  margin-left: 4rem;
}
@media (min-width: 1024px) {
  .p-dictionary-people__list-item .__desc {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary-people__list-item .__desc {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-dictionary-people__list-item .__desc {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-dictionary-people__list-item .__desc {
    row-gap: 0.8rem;
  }
}
@media (max-width: 767px) {
  .p-dictionary-people__list-item .__desc {
    margin-inline: 0.8rem;
    grid-template-columns: 1fr 3.2rem;
    line-height: 1.2;
    row-gap: 0.8rem;
  }
}
.p-dictionary-people__list-item .__desc:after {
  content: "";
  width: 4.5rem;
  aspect-ratio: 1/1;
  background: url(../images/common/icon_arrow_w.svg) no-repeat center center/40%;
  background-color: rgb(var(--people-color));
  display: block;
  border-radius: 50%;
  grid-row: span 2;
}
@media (max-width: 767px) {
  .p-dictionary-people__list-item .__desc:after {
    width: 3.2rem;
    align-self: end;
    grid-row: span 1;
  }
}
.p-dictionary-people__list-item .__desc-title {
  font-weight: 700;
  font-size: 2.2rem;
  grid-row: 1/2;
  font-feature-settings: "palt";
}
@media (max-width: 1023px) {
  .p-dictionary-people__list-item .__desc-title {
    font-size: 1.76rem;
  }
}
@media (max-width: 767px) {
  .p-dictionary-people__list-item .__desc-title {
    grid-column: span 2;
    line-height: 1.4;
  }
}
.p-dictionary-people__list-item .__desc-text {
  color: rgb(var(--people-color));
  font-weight: 700;
  font-size: 1.6rem;
  grid-row: 2/3;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .p-dictionary-people__list-item .__desc-text {
    font-size: 1.28rem;
  }
}

.p-partner.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-partner.a-bg2 {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-partner.a-bg2 {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-partner.a-bg2 {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
.p-partner__image img {
  max-width: 100%;
}
.p-partner__text {
  text-align: center;
  line-height: 2;
}
@media (min-width: 1024px) {
  .p-partner__text {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-partner__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-partner__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-partner__text .__upper {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-partner__text .__middle {
  font-weight: 700;
  font-size: 2.2rem;
  color: #e60000;
}
.p-partner__text .__lower {
  font-size: 1.5rem;
}
@media (max-width: 1440px) {
  .p-partner-ideal {
    padding-inline: 1.6rem;
  }
}
.p-partner-ideal__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #2e77be;
  padding: 4rem 6.4rem;
  position: relative;
}
@media (max-width: 1023px) {
  .p-partner-ideal__inner {
    padding-inline: 5vw;
  }
}
.p-partner-ideal__inner:after {
  content: "";
  display: block;
  background: url(../images/partner/img_partner_01.png) no-repeat center center/contain;
  width: 20%;
  max-width: 18.6rem;
  aspect-ratio: 186/377;
  position: absolute;
  top: -6.4rem;
  right: 2.4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-partner-ideal__inner:after {
    max-width: 10rem;
    top: -3.2rem;
    right: 0.8rem;
  }
}
@media (max-width: 767px) {
  .p-partner-ideal__inner:after {
    max-width: 6rem;
    top: 11rem;
    right: 0.8rem;
  }
}
.p-partner-ideal__title {
  display: grid;
  gap: 0.8rem;
  text-align: center;
  color: #fff;
  border-bottom: 2px dotted #fff;
  padding-bottom: 4rem;
}
.p-partner-ideal__title .__en {
  font-weight: 800;
  font-size: 6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-partner-ideal__title .__en {
    font-size: 4.8rem;
  }
}
.p-partner-ideal__title .__ja {
  font-weight: 800;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-partner-ideal__title .__ja {
    font-size: 2.24rem;
  }
}
.p-partner-ideal__text {
  padding-block: 2.4rem;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.1;
}
@media (max-width: 1023px) {
  .p-partner-ideal__text {
    font-size: 1.76rem;
  }
}
.p-partner-ideal__list {
  color: #fff;
}
.p-partner-ideal__list .__item {
  display: flex;
  gap: 0.2em;
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-partner-ideal__list .__item:before {
  content: "・";
}
.p-partner-merit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
.p-partner-merit__wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 6.4rem;
  align-items: end;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-partner-merit__wrap {
    gap: 2.4rem;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .p-partner-merit__wrap {
    display: grid;
  }
}
.p-partner-merit__image {
  max-width: 24.5rem;
  width: 100%;
}
.p-partner-merit__image img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .p-partner-merit__image {
    position: absolute;
    width: 20%;
    top: -2%;
    right: -2%;
  }
}
@media (min-width: 1024px) {
  .p-partner-merit {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-partner-merit {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-partner-merit {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-partner-merit .__card {
  border-radius: 3rem;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.p-partner-merit .__card .__name {
  font-weight: 700;
  font-size: 2.2rem;
  background: #333333;
  color: #ffdc00;
  text-align: left;
  padding: 1em;
}
@media (max-width: 1023px) {
  .p-partner-merit .__card .__name {
    font-size: 1.76rem;
  }
}
@media (max-width: 767px) {
  .p-partner-merit .__card .__name {
    padding: 2.4rem 3.2rem;
  }
}
.p-partner-merit .__card .__name .__note {
  display: inline-block;
  margin-left: 1em;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .p-partner-merit .__card .__name .__note {
    font-size: 1.44rem;
  }
}
.p-partner-merit .__card .__info {
  padding: 2.4rem 3.2rem;
  line-height: 1.8;
  font-size: 1.5rem;
  height: inherit;
  flex-grow: 3;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-partner-merit .__card .__info {
    padding: 2.4rem 3.2rem;
  }
}
.p-partner-merit .__card .__info .__title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.8;
}
.p-partner-merit .__card .__info .__text {
  font-size: 1.5rem;
  line-height: 2;
  margin-top: 1em;
}
.p-partner-btn {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .p-partner-btn {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-partner-btn {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-partner-btn {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-partner-btn {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-partner-btn .p-partner-btn-arrow {
  --btn-color: #2e77be;
  --btnline-color: #2e77be;
  --btntxt-color:#fff;
  display: grid;
  grid-template-columns: 5rem auto 4.5rem;
  align-items: center;
  padding-inline: 2.4rem;
  gap: 0.2em;
  width: 100%;
  max-width: 55rem;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-partner-btn .p-partner-btn-arrow {
    grid-template-columns: 3.2rem auto 2.8rem;
  }
}
.p-partner-btn .p-partner-btn-arrow:hover {
  --btnline-color: #fff;
  border-color: var(--btn-color);
}
.p-partner-btn .p-partner-btn-arrow:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 5rem;
  aspect-ratio: 1/1;
  background: url(../images/common/icon_partner.svg) no-repeat center center/contain;
}
.p-partner-btn .p-partner-btn-arrow:hover:before {
  background: none;
  -webkit-mask-image: url(../images/common/icon_partner.svg);
          mask-image: url(../images/common/icon_partner.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btn-color);
}
.p-partner-btn .p-partner-btn-arrow:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 4.5rem;
  aspect-ratio: 1/1;
  background: url(../images/common/icon_arrow_circle_w.svg) no-repeat center center/contain;
}
.p-partner-btn .p-partner-btn-arrow:hover:after {
  background: none;
  -webkit-mask-image: url(../images/common/icon_arrow_circle_w.png);
          mask-image: url(../images/common/icon_arrow_circle_w.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btn-color);
}

.p-business .p-top-brand__btn {
  --btn-width:30rem;
  padding: 1.6rem 3.2rem;
}
.p-business .p-top-brand__btn img {
  max-width: 75%;
}
@media (max-width: 767px) {
  .p-business .p-top-brand__btn {
    --btn-width:28rem;
  }
}
.p-business__inner {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-business__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-business__table {
  width: 100%;
  --table-bg-color:#cccccc;
}
@media (max-width: 767px) {
  .p-business__table {
    --table-bg-color: #fff;
  }
}
.p-business__table .__row:first-of-type .__title,
.p-business__table .__row:first-of-type .__detail {
  border-top: 1px solid var(--table-bg-color);
}
@media (max-width: 767px) {
  .p-business__table .__row {
    display: grid;
  }
}
.p-business__table .__title,
.p-business__table .__detail {
  padding: 1.5em;
  border-bottom: 1px solid var(--table-bg-color);
}
@media (max-width: 767px) {
  .p-business__table .__title,
  .p-business__table .__detail {
    padding: 0.5em 1.5em;
  }
}
.p-business__table .__title {
  background: #008c3c;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
}
.p-business__table .__detail {
  font-size: 1.5rem;
  line-height: 2.1;
}
@media (max-width: 767px) {
  .p-business__table .__detail {
    padding-inline: 0;
  }
}
@media (min-width: 1024px) {
  .p-business__table .__link {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business__table .__link {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-business__table .__link {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-business__link {
  color: #37b44b;
}

.p-business-service.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-business-service.a-bg2 {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service.a-bg2 {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business-service.a-bg2 {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
.p-business-service__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-business-service__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business-service__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1023px) {
  .p-business-service__inner {
    padding-inline: 5vw;
  }
}
.p-business-service__categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-business-service__categories {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-business-service__category {
  border: 2px solid #37b44b;
  border-radius: 2.5em;
  background: #fff;
  color: #37b44b;
  cursor: pointer;
  transition: 0.3s;
  padding: 1em;
  text-align: center;
}
.p-business-service__category:hover {
  background: #37b44b;
  color: #fff;
}
.p-business-service__category.is_active {
  background: #37b44b;
  color: #fff;
}
.p-business-service__contents {
  overflow: hidden;
  border-radius: 3rem;
}
@media (min-width: 1024px) {
  .p-business-service__contents {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service__contents {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-business-service__contents {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-business-service__contents .__title {
  background: #333333;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  padding: 1em;
}
.p-business-service__contents .__detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  background: #fff;
  padding: 4rem 6.4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service__contents .__detail {
    padding: 4rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-business-service__contents .__detail {
    padding: 4rem 2.4rem;
    grid-template-columns: repeat(1, 1fr);
    font-size: 1.5rem;
  }
}
.p-business-service__item {
  background: #cccccc;
  border: 2px solid #cccccc;
  border-radius: 2.5em;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  padding: 1em 2em;
  text-align: center;
  line-height: 1.6;
}
.p-business-service__item:hover {
  background: #37b44b;
  border: 2px solid #37b44b;
  color: #fff;
}
.p-business-service__item.is_active {
  background: #37b44b;
  border: 2px solid #37b44b;
  color: #fff;
}
.p-business-service__video-title {
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 2rem;
}
.p-business-service__video .__video {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-business-service__video .__video {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service__video .__video {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-business-service__video .__video {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

@media (min-width: 1024px) {
  .p-business-ai_solution {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-business-ai_solution.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .p-business-ai_solution.a-bg2 {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution.a-bg2 {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution.a-bg2 {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
.p-business-ai_solution__wrap {
  border-block: 1px solid rgba(255, 255, 255, 0);
}
.p-business-ai_solution__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-business-ai_solution__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1023px) {
  .p-business-ai_solution__inner {
    padding-inline: 5vw;
  }
}
.p-business-ai_solution__categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution__categories {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-business-ai_solution__category {
  border: 2px solid #37b44b;
  border-radius: 2.5em;
  background: #fff;
  color: #37b44b;
  cursor: pointer;
  transition: 0.3s;
  padding: 1em;
  text-align: center;
}
.p-business-ai_solution__category a {
  color: currentColor;
}
.p-business-ai_solution__category:hover {
  background: #37b44b;
  color: #fff;
}
.p-business-ai_solution__category.is_active {
  background: #37b44b;
  color: #fff;
}
.p-business-ai_solution__contents {
  overflow: hidden;
  border-radius: 3rem;
}
@media (min-width: 1024px) {
  .p-business-ai_solution__contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution__contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution__contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-business-ai_solution__contents .__title {
  background: #333333;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  padding: 1em;
}
.p-business-ai_solution__contents .__detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  background: #fff;
  padding: 4rem 6.4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution__contents .__detail {
    padding: 4rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution__contents .__detail {
    padding: 4rem 2.4rem;
    grid-template-columns: repeat(1, 1fr);
    font-size: 1.5rem;
  }
}
.p-business-ai_solution__item {
  background: #cccccc;
  border: 2px solid #cccccc;
  border-radius: 2.5em;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  padding: 1em 2em;
  text-align: center;
  line-height: 1.6;
}
.p-business-ai_solution__item:hover {
  background: #37b44b;
  border: 2px solid #37b44b;
  color: #fff;
}
.p-business-ai_solution__item.is_active {
  background: #37b44b;
  border: 2px solid #37b44b;
  color: #fff;
}
.p-business-ai_solution__video-title {
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 2rem;
}
.p-business-ai_solution__video .__video {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-business-ai_solution__video .__video {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-ai_solution__video .__video {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-business-ai_solution__video .__video {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-news {
  background: #f5f7f5;
  overflow: hidden;
}
.p-news__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-news__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-news__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-news__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-news__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (min-width: 1024px) {
  .p-news__pagenation-wrap {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-news__pagenation-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-news__pagenation-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-news__pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.p-news__pagenation .__prev a,
.p-news__pagenation .__next a {
  display: block;
  border-radius: 50%;
  width: 4.5rem;
  aspect-ratio: 1/1;
  background: #f0f0f0;
}
.p-news__pagenation .__prev a:before,
.p-news__pagenation .__next a:before {
  content: "";
  background: url(../images/common/icon_arrow_b.svg) no-repeat center center/30%;
  display: block;
  width: 4.5rem;
  aspect-ratio: 1/1;
}
.p-news__pagenation .__prev a:before {
  transform: rotate(-180deg);
}
.p-news__pagenation .__num a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 3.5rem;
  aspect-ratio: 1/1;
  text-align: center;
}
.p-news__pagenation .__num a:hover {
  background: #f0f0f0;
}
.p-news__pagenation .__num.__current a {
  pointer-events: none;
  background: #000;
  color: #fff;
}

.p-news-detail__inner {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-news-detail__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-news-detail__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-news-detail__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1023px) {
  .p-news-detail__inner {
    padding-inline: 5vw;
  }
}
.p-news-detail__title {
  font-weight: 700;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.8;
  display: grid;
  gap: 0.5em;
  width: 100%;
  padding-inline: 0.2em;
  margin-bottom: 1em;
  position: relative;
}
@media (max-width: 1023px) {
  .p-news-detail__title {
    font-size: 2.24rem;
  }
}
.p-news-detail__title:after {
  content: "";
  width: calc(100% + 6px);
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -0.5em;
  left: -6px;
}
.p-news-detail__category {
  margin-bottom: 0.5em;
}
.p-news-detail__category .__category {
  font-weight: 400;
  font-size: 1.3rem;
  width: 10rem;
  align-self: start;
  text-align: center;
  padding: 0.2em 1em;
  background: #37b44b;
  border-radius: 2.5rem;
  color: #fff;
}
.p-news-detail__date-wrap {
  display: flex;
  gap: 1em;
}
.p-news-detail__date {
  font-weight: 700;
  font-size: 1.5rem;
}
.p-news-detail .__text {
  line-height: 1.8;
}
.p-news-detail__btn {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-news-detail__btn {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-news-detail__btn {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-news-detail__btn {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

@media (min-width: 1024px) {
  .p-customer_voice__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-customer_voice__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-customer_voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  justify-items: center;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .p-customer_voice__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-customer_voice__list-item {
  max-width: 54rem;
  overflow: hidden;
  border-radius: 3rem;
}
.p-customer_voice__list-link {
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
  background: #fff;
  transition: 0.3s;
  height: 100%;
}
.p-customer_voice__list-link .__image {
  width: 100%;
  aspect-ratio: 54/36;
  overflow: hidden;
}
.p-customer_voice__list-link .__image img {
  transition: 0.3s;
  width: 100%;
}
.p-customer_voice__list-link:hover {
  background: rgba(55, 180, 76, 0.3);
}
.p-customer_voice__list-link:hover .__image img {
  transform: scale(105%);
}
.p-customer_voice__list-link .__catch {
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
  line-height: 1.6;
  padding-inline: 1.6rem;
}
@media (max-width: 1023px) {
  .p-customer_voice__list-link .__catch {
    font-size: 1.76rem;
  }
}
.p-customer_voice__list-link .__name {
  margin-top: auto;
  border-top: 1px solid #cccccc;
  margin-inline: 4rem;
  text-align: center;
  padding-block: 3.2rem;
  display: grid;
  gap: 0.8rem;
}
.p-customer_voice__list-link .__name__company {
  font-weight: 700;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Arimo", sans-serif;
  line-height: 1.4;
}
.p-customer_voice__list-link .__name__person {
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-customer_voice__list-link .__name__person {
    font-size: 1.44rem;
  }
}
.p-customer_voice__movielist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-customer_voice__movielist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-customer_voice__movielist .__item-movie img {
  width: 100%;
}
.p-customer_voice__movielist .__item-caption {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 1em;
}

.p-customer_voice-detail img {
  max-width: 100%;
}
.p-customer_voice-detail__heading {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.p-customer_voice-detail__heading img {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .p-customer_voice-detail__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice-detail__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-customer_voice-detail__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-customer_voice-detail__title {
  font-weight: 700;
  font-size: 3.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.p-customer_voice-detail__introduction {
  line-height: 2.1;
}
@media (min-width: 1024px) {
  .p-customer_voice-detail__introduction {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice-detail__introduction {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-customer_voice-detail__introduction {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-customer_voice-detail__profiles {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-customer_voice-detail__profiles {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-customer_voice-detail__profile {
  background: #f5f7f5;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice-detail__profile {
    align-items: stretch;
  }
  .p-customer_voice-detail__profile .__image {
    width: 10rem;
    height: inherit;
    overflow: hidden;
    flex-shrink: 0;
  }
  .p-customer_voice-detail__profile .__image img {
    max-width: 220%;
    aspect-ratio: 18/24;
    transform: translateX(-25%);
  }
}
@media (max-width: 767px) {
  .p-customer_voice-detail__profile {
    display: grid;
  }
  .p-customer_voice-detail__profile .__image {
    text-align: center;
  }
}
.p-customer_voice-detail__profile .__desc {
  padding: 0.8rem 2.4rem;
  line-height: 1.4;
  font-feature-settings: "palt";
  display: grid;
  gap: 0.8rem;
  align-content: center;
}
.p-customer_voice-detail__profile .__desc-company {
  font-weight: 700;
  font-size: 2rem;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-customer_voice-detail__profile .__desc-division {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice-detail__profile .__desc-division {
    font-size: 1.4rem;
  }
}
.p-customer_voice-detail__profile .__desc-name {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.p-customer_voice-detail__profile .__desc-text {
  font-weight: 400;
  font-size: 1.5rem;
}
.p-customer_voice-detail__talk {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-customer_voice-detail__talk {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-customer_voice-detail__talk {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice-detail__talk {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-customer_voice-detail__talk {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-customer_voice-detail__talk-title {
  clear: both;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .p-customer_voice-detail__talk-title {
    font-size: 2.24rem;
  }
}
.p-customer_voice-detail__talk-title .__sub {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-customer_voice-detail__talk-title .__sub {
    font-size: 2rem;
  }
}
.p-customer_voice-detail__talk-title:before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.4rem;
  background: #37b44b;
  grid-row: span 2;
  margin-top: 0.7em;
}
@media (min-width: 1024px) {
  .p-customer_voice-detail__read {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-customer_voice-detail__read {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-customer_voice-detail__read {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 1);
  }
}
.p-customer_voice-detail__read .__text {
  padding-block: 0.5em;
  line-height: 2.1;
}
.p-customer_voice-detail__read .__text-name {
  display: inline-block;
  margin-right: 1em;
  font-weight: 700;
}
.p-customer_voice-detail__read .__inner_image {
  margin-block: 2.4rem;
}
.p-customer_voice-detail__read .__inner_image.a-pos-left {
  float: left;
  margin-right: 2.4rem;
}
.p-customer_voice-detail__read .__inner_image.a-pos-center {
  text-align: center;
}
.p-customer_voice-detail__read .__inner_image.a-pos-right {
  float: right;
  margin-left: 2.4rem;
}
@media (max-width: 767px) {
  .p-customer_voice-detail__read .__inner_image {
    text-align: center;
  }
  .p-customer_voice-detail__read .__inner_image.a-pos-left, .p-customer_voice-detail__read .__inner_image.a-pos-center, .p-customer_voice-detail__read .__inner_image.a-pos-right {
    margin: 2.4rem auto;
    float: none;
  }
}
.p-customer_voice-detail__btn {
  display: flex;
  justify-content: center;
  --btn-color: #37b44b;
  --btnline-color: #37b44b;
  --btntxt-color: #fff;
  --btn-width:24rem;
}

.p-common-entry__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-common-entry__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-common-entry__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-common-entry__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-common-entry__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-common-entry__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-common-entry__hook {
  background: #000;
  height: 9rem;
  border-radius: 5rem;
  display: grid;
  grid-template-columns: 4rem auto 4rem;
  align-items: center;
  grid-template-areas: ". title icon";
  padding-inline: 4rem;
  gap: 0.8rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-common-entry__hook {
    grid-template-columns: 2.4rem auto 2.4rem;
  }
}
.p-common-entry__hook-title {
  grid-area: title;
  text-align: center;
}
.p-common-entry__hook-icon {
  grid-area: icon;
  width: 30px;
  height: 30px;
  position: relative;
}
.p-common-entry__hook-icon:before, .p-common-entry__hook-icon:after {
  position: absolute;
  content: "";
  margin: auto;
  vertical-align: middle;
}
.p-common-entry__hook-icon:before {
  border-top: 2px solid #fff;
  width: 30px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.p-common-entry__hook-icon:after {
  border-left: 2px solid #fff;
  width: 0;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 14px;
  transition: 0.3s;
}
.p-common-entry__hook.is_open .p-common-entry__hook-icon:after {
  height: 0;
}
.p-common-entry__details {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
@media (max-width: 1023px) {
  .p-common-entry__details {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-common-entry__details {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-common-entry__details {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-common-entry__details {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-common-entry__list {
  display: grid;
  gap: 1.6rem;
}
.p-common-entry__list-link {
  border-radius: 5rem;
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  min-height: 9rem;
  display: grid;
  grid-template-columns: auto 4rem;
  align-items: center;
  gap: 0.8rem;
  padding-inline: 4rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.p-common-entry__list-link:after {
  --arrow-bg-color:#000;
  --arrow-width:4.5rem;
}
@media (max-width: 767px) {
  .p-common-entry__list-link {
    font-weight: 700;
    font-size: 1.6rem;
    text-align: left;
    padding-inline: 2.4rem;
    grid-template-columns: auto 2.4rem;
  }
  .p-common-entry__list-link:after {
    --arrow-bg-color:#000;
    --arrow-width:3.2rem;
  }
}
.p-common-entry__external {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 1.6rem;
}
.p-common-entry__external img {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.p-common-entry__external .p-common-entry__list-link {
  padding-inline: 1.6rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-contact {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-contact {
    padding-inline: 5vw;
  }
}
.p-contact__note {
  text-align: left;
}
.p-contact__link {
  font-weight: 700;
  color: #008c3c;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-contact__link:hover {
  text-decoration: none;
}
.p-contact__title {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  font-weight: 800;
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (min-width: 1024px) {
  .p-contact__title {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-contact__title {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-contact__title {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-privacypolicy {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: grid;
  gap: 2em;
}
@media (max-width: 1023px) {
  .p-privacypolicy {
    padding-inline: 5vw;
  }
}
.p-privacypolicy .__title {
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: 1px solid #cccccc;
  padding-block: 0.5em;
}
.p-privacypolicy .__text {
  padding-block: 0.5em;
}

.p-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.p-pagination__link {
  display: inline-block;
  padding: 0.5rem;
  color: #000;
  font-weight: 700;
  font-size: 1.5rem;
  transition: opacity 0.3s;
  background: #fff;
  display: grid;
  place-content: center;
  width: 2em;
  height: 2em;
  aspect-ratio: 1/1;
}
.p-pagination__link--prev, .p-pagination__link--next {
  color: #e60000;
}
.p-pagination__link--prev span, .p-pagination__link--next span {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
}
.p-pagination__link--prev span {
  rotate: 180deg;
}

.p-pagination__link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.p-pagination__disabled {
  pointer-events: none;
  display: none;
  opacity: 0.7;
}

.p-pagination .__current {
  background: #e60000;
  display: grid;
  place-content: center;
  width: 2em;
  height: 2em;
  aspect-ratio: 1/1;
  border-radius: 2em;
  color: #fff;
}

/*override*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.wp-pagenavi a {
  color: #000;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 3.5rem;
  aspect-ratio: 1/1;
  text-align: center;
}

.wp-pagenavi span.current {
  pointer-events: none;
  background: #000;
  color: #fff;
}

.wp-pagenavi a.page:hover,
.wp-pagenavi .first,
.wp-pagenavi .last {
  background: #f0f0f0;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: block;
  border-radius: 50%;
  width: 4.5rem;
  aspect-ratio: 1/1;
  background: #f0f0f0;
  font-size: 0;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
  content: "";
  background: url(../images/common/icon_arrow_b.svg) no-repeat center center/30%;
  display: block;
  width: 4.5rem;
  aspect-ratio: 1/1;
}

.wp-pagenavi .previouspostslink:before {
  transform: rotate(-180deg);
}

.p-sidefollow {
  position: fixed;
  right: -5px;
  top: 45%;
  border-radius: 3rem 0 0 3rem;
  border: 5px solid #fff;
  overflow: hidden;
  z-index: 91;
}
@media (max-width: 767px) {
  .p-sidefollow {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    border-radius: 0;
    width: 100%;
    border: none;
    border-top: 5px solid #fff;
  }
}
.p-sidefollow__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-sidefollow__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
  }
}
.p-sidefollow .a-partner {
  --side-bg-color:#2e77be;
  --side-icon:url(../images/common/icon_partner.svg) ;
}
.p-sidefollow .a-engineer {
  --side-bg-color:#23a5b4;
  --side-icon:url(../images/common/icon_engineer.svg);
}
.p-sidefollow__link {
  background: var(--side-bg-color);
  color: #fff;
  height: 18rem;
  writing-mode: vertical-rl;
  padding: 1.6rem 1.6rem;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
@media (max-width: 767px) {
  .p-sidefollow__link {
    writing-mode: unset;
    height: auto;
  }
}
.p-sidefollow__link:before {
  content: "";
  background-image: var(--side-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.8rem;
  aspect-ratio: 1/1;
}
.p-sidefollow__link:hover {
  opacity: 0.5;
}

.p-header {
  background: #fff;
  height: 11rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-header {
    height: 8rem;
  }
}
.p-header__inner {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  height: 8rem;
}
@media (max-width: 1023px) {
  .p-header__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-header__inner {
    padding-inline: 1.6rem;
  }
}
.p-header__logo {
  display: block;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  z-index: 110;
  pointer-events: none;
}
.c-megaopen .p-header__logo {
  z-index: 115;
}
.c-megaopen .p-header__logo img {
  filter: invert(100%);
}

@media (max-width: 767px) {
  .p-header__logo {
    margin-inline: unset;
    width: 55%;
  }
  .p-header__logo img {
    transition: 0.3s;
  }
}
@media (max-width: 767px) {
  .c-fixed .p-header__logo img {
    mix-blend-mode: difference;
    mix-blend-mode: screen;
  }
}
.p-header__logo-link {
  display: block;
  pointer-events: all;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1120px) {
  .p-header__sp-hide {
    display: none !important;
  }
}
.p-header__display-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}

.p-header-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 111;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.4rem;
}
.p-header-nav__list {
  width: 100%;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1023px) {
  .p-header-nav__list {
    display: block;
    height: auto;
  }
  .p-header-nav__list:not(:has(.p-header-nav__ddlists)) {
    margin-bottom: 0.8em;
  }
}
.p-header-nav__list-item {
  height: 5.2rem;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 8px solid #fff;
}
.p-header-nav__list-item:has(.p-header-nav__ddlists) > a .__ja {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-header-nav__list-item:has(.p-header-nav__ddlists) > a .__ja:after {
  position: absolute;
  left: calc(100% + 0.2em);
  top: 40%;
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 8/5;
  transition: all 0.2s;
}
@media (max-width: 1023px) {
  .p-header-nav__list-item:has(.p-header-nav__ddlists) > a .__ja:after {
    display: none;
  }
}
.p-header-nav__list-item:has(.p-header-nav__ddlists):hover > a .__ja:after {
  rotate: 180deg;
}
.p-header-nav__list-item:hover {
  border-bottom: 8px solid #ffdc00;
}
.p-header-nav__list-item a:hover {
  text-decoration: none;
  opacity: 1;
}
.p-header-nav__list-item:hover .p-header-nav__ddlists {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
.p-header-nav__hook {
  display: block;
  padding: 0.5em 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  pointer-events: all;
}
.p-header-nav__hook:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.p-header-nav__ddlists {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 8px);
  width: 54rem;
  border-radius: 6rem;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 4rem 4rem 8rem;
}
@media (max-width: 1023px) {
  .p-header-nav__ddlists {
    visibility: visible;
    opacity: 1;
    position: relative;
    transform: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    left: unset;
    width: 100%;
    background: none;
    padding: 0.8rem 0;
  }
}

.p-header-nav__ddlist {
  text-align: left;
}
.p-header-nav__ddlist__link {
  font-feature-settings: "palt";
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
  display: block;
  border-bottom: 1px solid #fff;
  padding: 2em 2em;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.4;
}
.p-header-nav__ddlist__link:after {
  content: "";
  -webkit-mask-image: url(../images/common/icon_arrow_b.svg);
          mask-image: url(../images/common/icon_arrow_b.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffdc00;
  width: 1.2rem;
  aspect-ratio: 12/10;
  display: block;
  transition: background-color 0.3s;
  flex-shrink: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-header-nav__ddlist__link {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1em 1em;
  }
}
.p-header-nav__ddlist__link:hover {
  background: #fff;
  color: #000;
}

.p-header-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background: #ffdc00;
  border: 2px solid #ffdc00;
  border-radius: 2.5em;
  color: #000;
  width: 18rem;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  margin-bottom: 8px;
  transition: background 0.3s;
  cursor: pointer;
}
.p-header-contact__wrap {
  position: relative;
  pointer-events: all;
}
@media (max-width: 1023px) {
  .p-header-contact__wrap {
    padding-inline: 0;
  }
}
@media (max-width: 1120px) {
  .p-header-contact {
    margin-inline: auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-header-contact:before {
  content: "";
  -webkit-mask-image: url(../images/common/icon_letter.svg);
          mask-image: url(../images/common/icon_letter.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #000;
  width: 2.2rem;
  aspect-ratio: 12/10;
  display: block;
  transition: background-color 0.3s;
}
.p-header-contact:hover {
  background: #fff;
  color: #000;
}
.p-header-contact:hover:before {
  background-color: #000;
}
@media (max-width: 1120px) {
  .p-header-contact__text {
    display: none;
  }
}
.p-header-contact__close {
  background: #000;
  color: #fff;
  margin-inline: auto 3rem;
  padding-block: 0.8rem 0.4rem;
}
.p-header-contact__close span {
  font-size: 4rem;
}
.p-header-contact__close:before {
  display: none;
}

.p-header-partner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background: #ffd900;
  border: 2px solid #ffd900;
  border-radius: 2.5em;
  color: #000;
  width: 20rem;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  transition: background 0.3s;
}
.p-header-partner__wrap {
  position: relative;
  margin-left: 0.8rem;
  pointer-events: all;
}
@media (max-width: 1023px) {
  .p-header-partner__wrap {
    padding-inline: 0;
  }
}
.p-header-partner:hover {
  background: #fff;
  color: #000;
}
.p-header-partner:hover:before {
  background-color: #ffd900;
}
.p-header-megamenu {
  background: #000;
  border-radius: 2.5em 0 0 2.5em;
  width: 10rem;
  height: 5.8rem;
  text-align: center;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  z-index: 110;
}
@media (max-width: 767px) {
  .p-header-megamenu {
    width: 6rem;
  }
}

.p-header-meganav {
  display: block;
  position: fixed;
  right: 0;
  top: -2.4rem;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6rem;
  padding: 12rem 4.8rem 4.8rem;
  pointer-events: all;
  transition: 0.3s;
  width: 100%;
  --meganav-color:#fff;
  --list-width:32rem;
  --flex-pos:column;
}
@media (max-width: 767px) {
  .p-header-meganav {
    padding: 12rem 0 4.8rem;
  }
}
.p-header-meganav__inner {
  z-index: 100;
  gap: 6.4rem;
  display: flex;
  width: 100%;
  justify-content: center;
  position: relative;
}
@media (max-width: 1130px) {
  .p-header-meganav__inner {
    gap: 4rem;
  }
}
@media (max-width: 1000px) {
  .p-header-meganav__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1.6rem;
    height: 80vh;
    overflow-y: scroll;
  }
}
@media (max-width: 767px) {
  .p-header-meganav__inner {
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 3vw;
    overflow-y: scroll;
    height: 85vh;
    align-content: start;
  }
}
.p-header-meganav__innerlist {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  padding-block: 1.6rem;
  width: 100%;
  min-width: 30rem;
  --item-width: 100%;
}
.p-header-meganav__innerlist + .p-header-meganav__innerlist {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    max-width: unset;
  }
  .p-header-meganav__innerlist .a-multi_col {
    grid-column: span 2;
  }
  .p-header-meganav__innerlist li:nth-child(-n+2) {
    border-top: 1px solid #fff;
  }
}
@media (max-width: 600px) {
  .p-header-meganav__innerlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-header-meganav__innerlist .a-multi_col {
    grid-column: span 2;
  }
}
@media (max-width: 370px) {
  .p-header-meganav__innerlist {
    grid-template-columns: repeat(1, 1fr);
    min-width: 26rem;
  }
  .p-header-meganav__innerlist .a-multi_col {
    grid-column: span 1;
  }
}
.p-header-meganav__innerlist li:first-of-type {
  border-top: 1px solid #fff;
}
@media (max-width: 1000px) {
  .p-header-meganav__innerlist.a-columns li:nth-child(-n+2) {
    border-top: 1px solid #fff;
  }
}
.p-header-meganav__link {
  font-weight: 500;
  font-size: 1.6rem;
  flex-shrink: 0;
  display: block;
  border-bottom: 1px solid #fff;
  padding: 1.5em 1.5em;
  color: #fff;
  position: relative;
  padding-right: 6.4rem;
  font-feature-settings: "palt";
  line-height: 1.4;
}
.p-header-meganav__link:after {
  content: "";
  -webkit-mask-image: url(../images/common/icon_arrow_b.svg);
          mask-image: url(../images/common/icon_arrow_b.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--meganav-color);
  width: 1.2rem;
  aspect-ratio: 12/10;
  display: block;
  transition: background-color 0.3s;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-header-meganav__link {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1em 1em;
  }
}
.p-header-meganav__link:hover {
  background: #fff;
  color: #000;
}
.p-header-meganav .a-nav-library {
  --meganav-color:#80e10b;
}
.p-header-meganav .a-nav-people {
  --meganav-color:#41e6ff;
}
.p-header-meganav .a-nav-entry {
  --meganav-color:#ffdc00;
}
.p-header-meganav .a-nav-other {
  --meganav-color:#d255f5;
}
@media (max-width: 1000px) {
  .p-header-meganav__group:has(.a-columns) {
    grid-column: span 2;
  }
  .p-header-meganav .a-columns {
    width: 100%;
    max-width: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-header-meganav__group:has(.a-columns) {
    grid-column: span 1;
  }
  .p-header-meganav .a-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-header-meganav__list-title {
  display: grid;
  gap: 0.8rem;
}
.p-header-meganav__list-title .__ja {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
.p-header-meganav__list-title .__en {
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: var(--meganav-color);
  font-style: italic;
}
@media (max-width: 767px) {
  .p-header-meganav {
    --list-width:16rem;
    --flex-pos:row;
  }
}
.p-header-meganav__group-other {
  width: 100%;
  border-top: 3px dotted #fff;
  grid-column: 1/-1;
}
.p-header-meganav__innerlist-other {
  padding-block: 2.4rem 0;
  display: grid;
  gap: 0.8rem 1.6rem;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 102.4rem;
  flex-wrap: wrap;
  justify-content: center;
  --item-width: 32rem;
}
@media (max-width: 480px) {
  .p-header-meganav__innerlist-other {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 390px) {
  .p-header-meganav__innerlist-other {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-header-meganav__innerlist-item {
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  max-width: var(--list-width);
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist-item {
    padding: 1em 1em;
    width: var(--item-width);
    font-weight: 700;
    font-size: 1.2rem;
    max-width: unset;
  }
}
.p-header-meganav__innerlist-item:hover {
  background: #fff;
  color: #000;
}
.p-header-meganav__innerlist-other-item {
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  width: 100%;
  max-width: var(--list-width);
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist-other-item {
    padding: 1em 1em;
    width: var(--list-width);
    font-weight: 700;
    font-size: 1.2rem;
    max-width: unset;
  }
}
.p-header-meganav__innerlist-other-item:hover {
  background: #fff;
  color: #000;
}
.p-header-meganav__overlay {
  display: none;
  width: 100vw;
  height: calc(100vh + 8rem);
  position: fixed;
  top: -8rem;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.p-header-meganav__overlay.is-open {
  display: block;
  pointer-events: all;
}

.p-header-contact-meganav {
  display: block;
  position: fixed;
  right: 0;
  top: -2.4rem;
  background: #ffdc00;
  border-radius: 6rem;
  padding: 2.4rem 8rem 4.8rem;
  pointer-events: all;
  transition: 0.3s;
  width: 100%;
  max-width: 76rem;
  z-index: 120;
  --meganav-color:#fff;
  --list-width:32rem;
  --flex-pos:column;
}
@media (max-width: 767px) {
  .p-header-contact-meganav {
    padding: 2.4rem;
  }
}
.p-header-contact-meganav__inner {
  gap: 6.4rem;
  width: 100%;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-header-contact-meganav__inner {
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 3vw;
    overflow-y: scroll;
    height: 85vh;
    align-content: start;
  }
}
.p-header-contact-meganav__title {
  font-weight: 700;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1;
}
.p-header-contact-meganav__title:before {
  content: "";
  -webkit-mask-image: url(../images/common/icon_letter.svg);
          mask-image: url(../images/common/icon_letter.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #000;
  width: 2.4rem;
  aspect-ratio: 20/20;
  display: block;
  transition: background-color 0.3s;
}
.p-header-contact-meganav__innerlist {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  padding-block: 1.6rem;
  width: 100%;
  min-width: 30rem;
  --item-width: 100%;
}
.p-header-contact-meganav__innerlist + .p-header-contact-meganav__innerlist {
  margin-top: 4rem;
}
.p-header-contact-meganav__innerlist li:first-of-type {
  border-top: 1px solid #000;
}
.p-header-contact-meganav__link {
  font-weight: 500;
  font-size: 1.6rem;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 1.5em 1.5em;
  color: #000;
  position: relative;
  font-feature-settings: "palt";
  line-height: 1.4;
}
.p-header-contact-meganav__link:after {
  content: "";
  background: url(../images/common/icon_arrow_w.svg) no-repeat center center/40%;
  background-color: #000;
  width: 4.5rem;
  aspect-ratio: 10/10;
  border-radius: 50%;
  display: block;
  transition: background-color 0.3s;
  right: 2.4rem;
  top: 50%;
}
@media (max-width: 767px) {
  .p-header-contact-meganav__link {
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1em 1em;
    gap: 0.8rem;
  }
  .p-header-contact-meganav__link:after {
    flex-shrink: 0;
    width: 3.2rem;
  }
}
.p-header-contact-meganav__link:hover {
  background: #fff;
  color: #000;
}
.p-header-contact-meganav__list-title {
  display: grid;
  gap: 0.8rem;
}
.p-header-contact-meganav__list-title .__ja {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
.p-header-contact-meganav__list-title .__en {
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: var(--meganav-color);
  font-style: italic;
}
@media (max-width: 767px) {
  .p-header-contact-meganav {
    --list-width: 16rem;
    --flex-pos: row;
  }
}
.p-header-contact-meganav__group-other {
  width: 100%;
  border-top: 3px dotted #fff;
  grid-column: 1/-1;
}
.p-header-contact-meganav__innerlist-item {
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  max-width: var(--list-width);
}
@media (max-width: 767px) {
  .p-header-contact-meganav__innerlist-item {
    padding: 1em 1em;
    width: var(--item-width);
    font-weight: 700;
    font-size: 1.2rem;
    max-width: unset;
  }
}
.p-header-contact-meganav__innerlist-item:hover {
  background: #fff;
  color: #000;
}
.p-header-contact-meganav__external {
  width: 80%;
  min-width: 28rem;
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-header-contact-meganav__external {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header-contact-meganav__external {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-header-contact-meganav__external {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-header-contact-meganav__external {
    width: 100%;
  }
}
.p-header-contact-meganav__external a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #000;
  border-radius: 3.5em;
  width: 100%;
  height: 9rem;
  text-align: center;
}
.p-header-contact-meganav__external a img {
  max-width: 90vw;
}
@media (max-width: 767px) {
  .p-header-contact-meganav__external a img {
    max-width: 60vw;
  }
}
.p-header-contact-meganav__overlay {
  display: none;
  width: 100vw;
  height: calc(100vh + 8rem);
  position: fixed;
  top: -8rem;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.p-header-contact-meganav__overlay.is-open {
  display: block;
  pointer-events: all;
}

.p-header-open {
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 110;
  transition: background-color 0.3s;
}
@media (max-width: 1023px) {
  .p-header-open {
    display: flex;
    height: 4.8rem;
    width: 4.8rem;
  }
}
.p-header-open__inner {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
}
.p-header-open span {
  display: block;
  margin: 0;
  border: none;
  width: 1.6rem;
  height: 0.2rem;
  background: #fff;
  transform-origin: 0% 50%;
  position: absolute;
  top: 0.2rem;
  left: 0;
  transition: 0.3s;
}
.p-header-open span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-header-open span:nth-of-type(3) {
  top: unset;
  bottom: 0.2rem;
}
.p-header-open.is-open {
  transition: background-color 0.3s;
}
.p-header-open.is-open span {
  left: 0;
}
.p-header-open.is-open span:nth-of-type(1) {
  transform: rotate(45deg);
  width: 2rem;
}
.p-header-open.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header-open.is-open span:nth-of-type(3) {
  top: unset;
  bottom: -0.2rem;
  transform: rotate(-45deg);
  width: 2rem;
}

.p-footer {
  background: #000;
}
.p-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1.6rem;
  justify-content: center;
  justify-items: center;
}
@media (max-width: 1023px) {
  .p-footer__inner {
    padding-inline: 5vw;
  }
}

.p-footer__copyright {
  font-weight: 500;
  font-size: 1.2rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-footer__copyright {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer__copyright {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-footer__copyright {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}

@media (min-width: 1024px) {
  .p-footer-nav {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer-nav {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-footer-nav {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-footer-nav__list {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 2em;
       column-gap: 2em;
  row-gap: 1.6rem;
}
@media (max-width: 1023px) {
  .p-footer-nav__list {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-footer-nav__list {
    flex-direction: column;
  }
}
.p-footer-nav__list a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  text-underline-offset: 0.2em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-footer-nav__list a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-footer-nav__list a {
    font-size: 1.4rem;
  }
}

.p-pagetop {
  position: fixed;
  right: 10px;
  z-index: 90;
  opacity: 0;
  transform: translateY(100px);
}
.p-pagetop > span {
  display: grid;
  place-content: center;
  text-align: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  transition: all 0.3s;
  cursor: pointer;
  background: #37b44b;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.p-pagetop > span:hover {
  opacity: 0.7;
}
.p-pagetop.upMove {
  animation: UpAnime 0.5s forwards;
}
.p-pagetop.downMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}