@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;
  --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);
  }
}
*,
*: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;
  align-content: start;
}
@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:#e61414;
  --btn-color:#e61414;
  --btnline-color:#e61414;
}

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

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

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

.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 {
  padding-bottom: 10rem;
}
.p-top-mv img {
  max-width: 100%;
  width: 100%;
}
.p-top-mv .__image {
  margin-inline: 1.6rem;
}
.p-top-mv .slick-dots {
  bottom: -50px;
}

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

.p-top-news {
  background: #37b44b;
  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 #37b44b;
  }
}
.p-top-news__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 4rem;
  padding-block: 4rem 6.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-top: -8rem;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-news__title:before {
  content: url(../images/toppage/title_top_news.svg);
  position: absolute;
  right: 100%;
  top: 10%;
}
@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__title:before {
    content: "";
    background: url(../images/toppage/title_top_news.svg) no-repeat center center/100%;
    display: block;
    position: absolute;
    right: 80%;
    width: 100%;
    aspect-ratio: 262/142;
    top: -50px;
  }
}
.p-top-news__article {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  line-height: 1.4;
  border-top: 1px dotted #000;
}
@media (max-width: 1023px) {
  .p-top-news__article {
    padding-inline: 5vw;
  }
}
.p-top-news__article .__item {
  padding: 1.5em;
  border-bottom: 1px dotted #000;
  display: grid;
  grid-template-columns: 8em 1fr;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-top-news__article .__item {
    grid-template-columns: 1fr;
  }
}
.p-top-news__article .__date {
  font-weight: 700;
  color: #37b44b;
}
.p-top-news__article a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-top-news__article a:hover {
  text-decoration: none;
}
.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;
}

.p-top-introduction {
  font-feature-settings: "palt";
}
.p-top-introduction__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 12rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .p-top-introduction__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-introduction__inner {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__inner {
    padding-block: 4rem 26rem;
  }
}
.p-top-introduction__texts {
  display: grid;
  gap: 5.6rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 800;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  position: relative;
}
@media (max-width: 1280px) {
  .p-top-introduction__texts {
    gap: 4.8rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__texts {
    gap: 1.6rem;
  }
}
.p-top-introduction__texts:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 31rem;
  background: url(../images/toppage/img_top_introduction02.png) no-repeat center center/contain;
  position: absolute;
  bottom: -2.4rem;
  right: 110%;
  aspect-ratio: 310/556;
}
@media (max-width: 1120px) {
  .p-top-introduction__texts:before {
    content: "";
    display: none;
  }
}
.p-top-introduction__texts:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 12.2rem;
  background: url(../images/toppage/img_top_introduction01.png) no-repeat center center/contain;
  position: absolute;
  bottom: 10rem;
  left: 120%;
  aspect-ratio: 122/438;
}
@media (max-width: 1120px) {
  .p-top-introduction__texts:after {
    background: url(../images/toppage/img_top_introduction_sp.png) no-repeat center center/contain;
    bottom: unset;
    top: 70%;
    left: 50%;
    width: 100%;
    aspect-ratio: 212/242;
    max-width: 21.2rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__texts:after {
    background: url(../images/toppage/img_top_introduction_sp.png) no-repeat center center/contain;
    bottom: unset;
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    aspect-ratio: 212/242;
    max-width: 21.2rem;
  }
}
.p-top-introduction__texts .__text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.p-top-introduction__texts .__text-s {
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .p-top-introduction__texts .__text-s {
    font-size: 1.92rem;
  }
}
.p-top-introduction__texts .__text-m {
  font-size: 3.2rem;
}
@media (max-width: 1023px) {
  .p-top-introduction__texts .__text-m {
    font-size: 2.56rem;
  }
}
.p-top-introduction__texts .__text-l {
  font-size: 3.8rem;
}
@media (max-width: 1023px) {
  .p-top-introduction__texts .__text-l {
    font-size: 3.04rem;
  }
}
.p-top-introduction__texts .__text-ll {
  font-size: 8rem;
}
@media (max-width: 1023px) {
  .p-top-introduction__texts .__text-ll {
    font-size: 6.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__texts .__text-s {
    font-size: 2rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-introduction__texts .__text-s {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__texts .__text-m {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-introduction__texts .__text-m {
    font-size: 2.24rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__texts .__text-l {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-introduction__texts .__text-l {
    font-size: 2.56rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__texts .__text-ll {
    font-size: 6rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-introduction__texts .__text-ll {
    font-size: 4.8rem;
  }
}

.p-top-example {
  background: #f5f7f5;
  overflow: hidden;
  --heading-size:8;
}
.p-top-example__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .p-top-example__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-example__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-top-example__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-example__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-example__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-example__read {
  text-align: center;
  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-top-example__read {
    font-size: 2.24rem;
  }
}
@media (max-width: 767px) {
  .p-top-example__read {
    line-height: 1.8;
  }
}
.p-top-example__flows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-top-example__flows {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top-example__flow {
  position: relative;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-example__flow img {
    width: 20vw;
  }
}
@media (max-width: 767px) {
  .p-top-example__flow {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}
.p-top-example__flow:not(:last-of-type):after {
  content: "";
  display: block;
  background: #000;
  clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
  position: absolute;
  top: 35%;
  left: calc(100% + 1rem);
  width: 2.5rem;
  aspect-ratio: 25/40;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-example__flow:not(:last-of-type):after {
    top: 20%;
  }
}
@media (max-width: 767px) {
  .p-top-example__flow:not(:last-of-type):after {
    top: 105%;
    left: 18%;
    width: 1.6rem;
    transform: rotate(90deg);
  }
}
.p-top-example__flow .__text {
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 1.6rem;
  line-height: 1.6;
}
.p-top-example__flow .__catch {
  font-weight: 500;
  font-size: 2rem;
}

.p-top-reason__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1023px) {
  .p-top-reason__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-reason__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-top-reason__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-reason__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-reason__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-reason__inner:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 17.3rem;
  background: url(../images/toppage/img_top_reason.png) no-repeat center center/contain;
  position: absolute;
  top: -12rem;
  left: 0%;
  aspect-ratio: 173/236;
}
@media (max-width: 767px) {
  .p-top-reason__inner:before {
    width: 20%;
    top: -6.4rem;
    left: 2%;
  }
}
.p-top-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-top-reason__title {
    font-size: 4.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-reason__title {
    font-size: 3.2rem;
  }
}
.p-top-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-top-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-top-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-top-reason__list {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-reason__list {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-reason__list {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-reason__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }
}
@media (max-width: 767px) {
  .p-top-reason__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.p-top-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-top-reason__list .__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding-block: 4rem 2.4rem;
  }
}
.p-top-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-top-reason__list .__text {
  margin-top: 1.6rem;
  display: grid;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-top-reason__list .__text {
    margin-top: 0;
  }
}
.p-top-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: #ffeb78;
}
.p-top-reason__list .__text .__ja {
  font-weight: 800;
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #fff;
}
@media (max-width: 1023px) {
  .p-top-reason__list .__text .__ja {
    font-size: 1.92rem;
  }
}
@media (min-width: 1024px) {
  .p-top-reason__video {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-reason__video {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-reason__video {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-reason__video-title {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.p-top-reason__video-wrap {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-top-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-top-reason__video-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-reason__video-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}

.p-top-policy {
  overflow-x: hidden;
}
.p-top-policy__image img {
  width: 100%;
}
.p-top-policy__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 12rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .p-top-policy__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-policy__inner {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-policy__inner {
    padding-block: 4rem 21rem;
  }
}
.p-top-policy__texts {
  display: grid;
  gap: 4rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 800;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-policy__texts {
    gap: 1.6rem;
  }
}
.p-top-policy__texts:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 22.7rem;
  background: url(../images/toppage/img_top_policy01.png) no-repeat center center/contain;
  position: absolute;
  bottom: -2.4rem;
  right: 110%;
  aspect-ratio: 227/568;
}
@media (max-width: 1120px) {
  .p-top-policy__texts:before {
    content: "";
    display: none;
  }
}
.p-top-policy__texts:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 17.6rem;
  background: url(../images/toppage/img_top_policy02.png) no-repeat center center/contain;
  position: absolute;
  bottom: 10rem;
  left: 120%;
  aspect-ratio: 176/381;
}
@media (max-width: 1120px) {
  .p-top-policy__texts:after {
    background: url(../images/toppage/img_top_policy_sp.png) no-repeat center center/contain;
    bottom: unset;
    top: 70%;
    left: 50%;
    width: 100%;
    aspect-ratio: 210/234;
    max-width: 21rem;
  }
}
@media (max-width: 767px) {
  .p-top-policy__texts:after {
    background: url(../images/toppage/img_top_policy_sp.png) no-repeat center center/contain;
    bottom: unset;
    top: 85%;
    left: 25%;
    width: 100%;
    aspect-ratio: 210/234;
    max-width: 21rem;
  }
}
.p-top-policy__texts .__text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.p-top-policy__texts .__text-s {
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .p-top-policy__texts .__text-s {
    font-size: 1.92rem;
  }
}
.p-top-policy__texts .__text-m {
  font-size: 3.2rem;
}
@media (max-width: 1023px) {
  .p-top-policy__texts .__text-m {
    font-size: 2.56rem;
  }
}
.p-top-policy__texts .__text-l {
  font-size: 3.8rem;
}
@media (max-width: 1023px) {
  .p-top-policy__texts .__text-l {
    font-size: 3.04rem;
  }
}
.p-top-policy__texts .__text-ll {
  font-size: 8rem;
}
@media (max-width: 1023px) {
  .p-top-policy__texts .__text-ll {
    font-size: 6.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-policy__texts .__text-s {
    font-size: 2rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-policy__texts .__text-s {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-policy__texts .__text-m {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-policy__texts .__text-m {
    font-size: 2.24rem;
  }
}
@media (max-width: 767px) {
  .p-top-policy__texts .__text-l {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-policy__texts .__text-l {
    font-size: 2.56rem;
  }
}
@media (max-width: 767px) {
  .p-top-policy__texts .__text-ll {
    font-size: 6rem;
  }
}
@media (max-width: 767px) and (max-width: 1023px) {
  .p-top-policy__texts .__text-ll {
    font-size: 4.8rem;
  }
}

.p-top-brand {
  overflow: hidden;
  background: #f5f7f5;
}
@media (min-width: 1024px) {
  .p-top-brand {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-brand {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-brand {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1440px) {
  .p-top-brand {
    padding-inline: 1.6rem;
  }
}
.p-top-brand__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 3rem;
  padding: 6.4rem 8rem;
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.5fr 1fr;
}
@media (max-width: 1023px) {
  .p-top-brand__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-top-brand__inner {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-brand__inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-brand__inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-brand__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    padding: 4rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-brand__inner {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr auto auto;
    padding: 4rem 2.4rem;
  }
}
.p-top-brand__inner .__desc {
  line-height: 2.2;
  font-feature-settings: "palt";
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (max-width: 767px) {
  .p-top-brand__inner .__desc {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-top-brand__inner .__induction {
  grid-column: 1/2;
  grid-row: 2/3;
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-brand__inner .__induction {
    grid-column: 1/3;
    grid-row: 2/3;
    display: flex;
    flex-direction: row-reverse;
    gap: 1.6rem;
    width: 100%;
    align-items: start;
  }
  .p-top-brand__inner .__induction > img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .p-top-brand__inner .__induction {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.p-top-brand__inner .__point {
  font-weight: 700;
  font-size: 2rem;
  color: #008c3c;
}
.p-top-brand__inner .__image {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (max-width: 767px) {
  .p-top-brand__inner .__image {
    grid-column: 1/2;
    grid-row: 2/3;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-brand__inner .__image {
    text-align: center;
  }
  .p-top-brand__inner .__image img {
    max-width: 100%;
  }
}
.p-top-brand__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-top-brand__btn {
    --btn-width:30rem;
  }
  .p-top-brand__btn img {
    max-width: 80%;
  }
}
.p-top-brand__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-top-brand__btn:hover {
  --btnline-color:#000;
}

.p-top-service {
  z-index: 1;
}
@media (min-width: 1024px) {
  .p-top-service {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-service {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-service {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-service__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-top-service__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-service__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-top-service__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-service__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-service__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-service__inner img {
  max-width: 100%;
}

.p-top-voice {
  overflow: hidden;
  background: #f5f7f5;
}
@media (min-width: 1024px) {
  .p-top-voice {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-voice {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-voice {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
.p-top-voice__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-top-voice__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-voice__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-top-voice__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-voice__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-voice__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-top-voice__list {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-top-voice__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top-voice__list .__item {
  overflow: hidden;
  border-radius: 3rem;
  position: relative;
}
.p-top-voice__list .__item:after {
  content: "";
  display: block;
  background: #fff url(../images/common/icon_arrow_b.svg) no-repeat center center/40%;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 2;
  pointer-events: none;
}
.p-top-voice__list .__image img {
  width: 100%;
  transition: 0.3s;
}
.p-top-voice__list .__meta {
  position: absolute;
  width: 100%;
  padding: 1.6rem 2.4rem;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  text-align: left;
  line-height: 1.8;
}
.p-top-voice__list .__meta .__company {
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 1023px) {
  .p-top-voice__list .__meta .__company {
    font-size: 1.28rem;
  }
}
.p-top-voice__list .__meta .__name {
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.p-top-voice__list .__item-link:hover .__image img {
  transform: scale(105%);
}

.p-top-customer {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-top-customer {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-customer {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-customer {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1440px) {
  .p-top-customer {
    padding-inline: 1.6rem;
  }
}
.p-top-customer__title {
  font-weight: 800;
  font-size: 3.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
}
.p-top-customer__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-customer__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-top-customer__inner {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-customer__inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-customer__inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
.p-top-customer__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-top-customer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-customer__list .__item {
  width: 100%;
  aspect-ratio: 3/2;
  border: 3px solid #cccccc;
}

.p-top-doors img {
  width: 100%;
}

.page-about {
  --heading-image: url(../images/about/bg_company.png);
  --heading-text-color:#fff;
  --heading-text-shadow: 0 0 3px rgba(0,0,0,.7);
}

.page-governance {
  --heading-image: url(../images/governance/bg_governance.png);
  --heading-text-color:#000;
  --heading-text-shadow:unset;
}

.page-partner {
  --heading-image: url(../images/partner/bg_partner.png);
  --heading-text-color:#fff;
  --heading-text-shadow:unset;
}

.page-business {
  --heading-image: url(../images/business/bg_business.png);
  --heading-text-color:#fff;
  --heading-text-shadow:unset;
}

.page-news {
  --heading-image: url(../images/news/bg_news.png);
  --heading-text-color:#fff;
  --heading-text-shadow:unset;
}

.page-contact {
  --heading-image: url(../images/contact/bg_contact.png);
  --heading-text-color:#fff;
  --heading-text-shadow:unset;
}

.page-customer_voice {
  --heading-image: url(../images/customer_voice/bg_customer_voice.png);
  --heading-text-color:#fff;
  --heading-text-shadow:unset;
}

.p-page-heading {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  height: 20rem;
  background: #fff no-repeat center center;
  background-image: var(--heading-image);
}
@media (max-width: 1023px) {
  .p-page-heading {
    padding-inline: 5vw;
  }
}
.p-page-heading__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  height: inherit;
  display: grid;
  gap: 1.6rem;
  align-content: center;
  color: var(--heading-text-color);
}
@media (max-width: 1023px) {
  .p-page-heading__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-page-heading__title {
    padding-inline: 1.6rem;
  }
}
.p-page-heading__title .__ja {
  font-weight: 800;
  font-size: 3.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
  text-shadow: var(--heading-text-shadow);
}
.p-page-heading__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;
}

.p-page-breadcrumbs {
  width: 100%;
  max-width: 1120px;
  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;
}
.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):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-title__border {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  border-bottom: 1px solid #000;
  text-align: center;
  padding-bottom: 1em;
}
@media (max-width: 1023px) {
  .p-page-title__border {
    font-size: 3.36rem;
  }
}

.p-page-title__min {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
  padding-bottom: 1em;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .p-page-title__min {
    font-size: 3.36rem;
  }
}

.p-page-title__green {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
  padding-bottom: 1em;
  position: relative;
}
@media (max-width: 1023px) {
  .p-page-title__green {
    font-size: 3.36rem;
  }
}
.p-page-title__green:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.5rem;
  background: #37b44b;
}

.p-page-title__bg-green {
  background: #e1f5e6;
  color: #37b44b;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 1em;
}

.p-page-title__bg-green2 {
  background: #37b44b;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 1em;
}

.p-page-title__text-green {
  color: #37b44b;
  font-weight: 700;
  font-size: 2.8rem;
}

.p-about.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-about.a-bg2 {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about.a-bg2 {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about.a-bg2 {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (min-width: 1024px) {
  .p-about.a-bg2 {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about.a-bg2 {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about.a-bg2 {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-about__title {
  text-align: center;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 1.6rem;
}
.p-about__title .__en {
  font-weight: 600;
  font-size: 1.6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #37b44b;
}
.p-about__title .__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-about__title .__ja {
    font-size: 2.88rem;
  }
}
.p-about__image {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-about__image {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-about__image {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-about__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__image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-about__image {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-about__image img {
  max-width: 100%;
}
.p-about__text {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2.1;
}
@media (max-width: 1023px) {
  .p-about__text {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-about__text {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-about__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-about__text p {
  margin-bottom: 1em;
}
.p-about__sign {
  text-align: right;
}
.p-about__sign .__position {
  font-weight: 800;
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  display: inline-block;
  margin-right: 1em;
}
.p-about__lower_movie {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-about__lower_movie {
    padding-inline: 5vw;
  }
}
.p-about__lower_movie iframe {
  width: 100%;
  aspect-ratio: 640/360;
  height: auto;
}
.p-about__lower_movie__caption {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-about__lower_movie__caption {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about__lower_movie__caption {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about__lower_movie__caption {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
.p-about__upper_movie {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-about__upper_movie {
    padding-inline: 5vw;
  }
}
.p-about__upper_movie iframe {
  width: 100%;
  aspect-ratio: 640/360;
  height: auto;
}
.p-about__upper_movie__caption {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-about__upper_movie__caption {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about__upper_movie__caption {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about__upper_movie__caption {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0);
  }
}

.p-about-company.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-about-company.a-bg2 {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-company.a-bg2 {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-company.a-bg2 {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
.p-about-company__inner {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-about-company__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-company__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-company__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1023px) {
  .p-about-company__inner {
    padding-inline: 5vw;
  }
}
.p-about-company__table {
  width: 100%;
  --table-bg-color:#cccccc;
}
@media (max-width: 767px) {
  .p-about-company__table {
    --table-bg-color: #fff;
  }
}
.p-about-company__table .__row:first-of-type .__title,
.p-about-company__table .__row:first-of-type .__detail {
  border-top: 1px solid var(--table-bg-color);
}
@media (max-width: 767px) {
  .p-about-company__table .__row {
    display: grid;
  }
}
.p-about-company__table .__title,
.p-about-company__table .__detail {
  padding: 1.5em;
  border-bottom: 1px solid var(--table-bg-color);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-about-company__table .__title,
  .p-about-company__table .__detail {
    padding: 0.5em 1.5em;
  }
}
.p-about-company__table .__title {
  background: #008c3c;
  color: #fff;
  font-weight: 700;
}
.p-about-company__partner {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-about-company__partner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-company__partner .__logo {
  border: 1px solid #cccccc;
  width: 100%;
  aspect-ratio: 42/28;
  display: grid;
  place-content: center;
}
.p-about-company__partner .__text {
  margin-top: 1.6rem;
  text-align: center;
}
.p-about-company__partner .__title {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-about-company__partner .__desc {
  font-size: 1.4rem;
  margin-top: 1em;
}
.p-about-company__office {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (min-width: 1024px) {
  .p-about-company__office__wrap {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-company__office__wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about-company__office__wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 1023px) {
  .p-about-company__office {
    gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-about-company__office {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-company__office .__card {
  border-radius: 3rem;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.p-about-company__office .__card .__name {
  font-weight: 700;
  font-size: 2.2rem;
  background: #333333;
  color: #fff;
  text-align: center;
  padding: 1em;
}
@media (max-width: 1023px) {
  .p-about-company__office .__card .__name {
    font-size: 1.76rem;
  }
}
.p-about-company__office .__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-about-company__office .__card .__info {
    padding: 1.6rem;
  }
}
.p-about-company__office .__card .__address,
.p-about-company__office .__card .__tel {
  text-align: center;
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}
.p-about-company__office .__card .__tel {
  text-align: center;
}
.p-about-company__office .__card .__access {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1em;
  border-top: 1px solid #cccccc;
  margin-block: 1em 1.5em;
  padding-top: 1em;
  padding-inline: 2em;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .p-about-company__office .__card .__access {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
}
.p-about-company__office .__card .__map {
  margin-top: auto;
}
.p-about-company__office .__card .__map iframe {
  width: 100%;
  aspect-ratio: 44/28;
}
.p-about-company__chart {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-about-company__chart {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-about-company__chart {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-company__chart {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-company__chart {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-about-company__chart img {
  max-width: 100%;
}

.p-about-philosophy .a-person1 {
  position: relative;
}
.p-about-philosophy .a-person1:before {
  content: "";
  display: block;
  background: url(../images/about/img_about_philosophy_person1.png) no-repeat center center/contain;
  width: 10%;
  max-width: 11.3rem;
  aspect-ratio: 113/353;
  position: absolute;
  top: 2.4rem;
  left: 10%;
}
@media (max-width: 767px) {
  .p-about-philosophy .a-person1:before {
    top: 20%;
  }
}
.p-about-philosophy .a-person1:after {
  content: "";
  display: block;
  background: url(../images/about/img_about_philosophy_person2.png) no-repeat center center/contain;
  width: 10%;
  max-width: 10.7rem;
  aspect-ratio: 107/315;
  position: absolute;
  top: 55%;
  right: 10%;
}
@media (max-width: 767px) {
  .p-about-philosophy .a-person1:after {
    top: 100%;
  }
}
.p-about-philosophy .a-person2 {
  position: relative;
}
.p-about-philosophy .a-person2:before {
  content: "";
  display: block;
  background: url(../images/about/img_about_philosophy_person3.png) no-repeat center center/contain;
  width: 10%;
  max-width: 11.1rem;
  aspect-ratio: 111/370;
  position: absolute;
  bottom: 101%;
  left: 10%;
}
.p-about-philosophy.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-about-philosophy.a-bg2 {
    padding-top: calc(7.2rem * 1);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy.a-bg2 {
    padding-top: calc(5.6rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy.a-bg2 {
    padding-top: calc(4rem * 1);
    padding-bottom: calc(4rem * 1);
  }
}
.p-about-philosophy__catch {
  background: #37b44b;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  font-weight: 800;
  font-size: 3.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-about-philosophy__catch {
    font-size: 2.56rem;
  }
}
@media (min-width: 1024px) {
  .p-about-philosophy__catch {
    margin-top: calc(7.2rem * 0);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy__catch {
    margin-top: calc(4rem * 0);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__catch {
    margin-top: calc(4rem * 0);
    margin-bottom: calc(4rem * 1);
  }
}
.p-about-philosophy__text {
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-about-philosophy__text {
    font-size: 1.76rem;
  }
}
@media (min-width: 1024px) {
  .p-about-philosophy__text {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__text {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 1);
  }
}
.p-about-philosophy__vision {
  display: grid;
  gap: 1.6rem;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-about-philosophy__vision {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy__vision {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__vision {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 1023px) {
  .p-about-philosophy__vision {
    padding-inline: 5vw;
  }
}
.p-about-philosophy__vision-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  --title-bg-color: #37b44b;
  --title-text-color: #fff;
}
@media (max-width: 767px) {
  .p-about-philosophy__vision-item {
    grid-template-columns: 1fr;
  }
}
.p-about-philosophy__vision-item.a-total {
  border: 3px solid #37b44b;
  --title-bg-color: #ffd900;
  --title-text-color: #000;
}
.p-about-philosophy__vision-item__title {
  display: grid;
  align-items: center;
  align-content: center;
  background: var(--title-bg-color);
  color: var(--title-text-color);
  padding: 1em 1em 1em 2em;
  line-height: 1.4;
  font-feature-settings: "palt";
  font-weight: 800;
  font-size: 2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-about-philosophy__vision-item__title {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__vision-item__title {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 1em;
  }
}
.p-about-philosophy__vision-item__title .__note {
  font-weight: 800;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-indent: -0.5em;
  display: inline-block;
}
@media (max-width: 1023px) {
  .p-about-philosophy__vision-item__title .__note {
    font-size: 1.28rem;
  }
}
.p-about-philosophy__vision-item__detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 1em 1em 1em 2em;
  line-height: 1.8;
  font-size: 1.5rem;
}
.a-total .p-about-philosophy__vision-item__detail {
  font-weight: 800;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

.p-about-philosophy__vision-item .__em {
  color: #37b44b;
  font-weight: 700;
  font-size: 1.8rem;
}
.p-about-philosophy__vision-item.a-total .__em {
  font-weight: 800;
  font-size: 2.5rem;
}

.p-about-philosophy__vision-item .__group {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: center;
  flex-wrap: wrap;
}
.p-about-philosophy__vision-item .__group .__title {
  width: 7em;
}
.p-about-philosophy__vision-image {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-about-philosophy__vision-image {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy__vision-image {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__vision-image {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy__vision-image img {
    width: 80%;
  }
}
.p-about-philosophy__table {
  width: 100%;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  --table-bg-color:#cccccc;
}
@media (max-width: 1023px) {
  .p-about-philosophy__table {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-about-philosophy__table {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-philosophy__table {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__table {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about-philosophy__table {
    --table-bg-color: #fff;
  }
}
.p-about-philosophy__table .__row:first-of-type .__title,
.p-about-philosophy__table .__row:first-of-type .__detail {
  border-top: 1px solid var(--table-bg-color);
}
@media (max-width: 767px) {
  .p-about-philosophy__table .__row {
    display: grid;
  }
}
.p-about-philosophy__table .__title,
.p-about-philosophy__table .__detail {
  padding: 1.5em;
  border-bottom: 1px solid var(--table-bg-color);
  line-height: 1.4;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .p-about-philosophy__table .__title,
  .p-about-philosophy__table .__detail {
    padding: 0.5em 1.5em;
  }
}
.p-about-philosophy__table .__title {
  background: #333333;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  width: 25%;
}
@media (max-width: 767px) {
  .p-about-philosophy__table .__title {
    width: 100%;
  }
}

.p-about-history {
  background: linear-gradient(90deg, #f5f7f5 0%, #f5f7f5 50%, #fff 50%, #fff 100%);
  --year-color:#000;
}
@media (min-width: 1024px) {
  .p-about-history {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-about-history {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (min-width: 1024px) {
  .p-about-history {
    padding-top: calc(7.2rem * 0);
    padding-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history {
    padding-top: calc(5.6rem * 0);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-history {
    padding-top: calc(4rem * 0);
    padding-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-about-history {
    background: #fff;
  }
}
.p-about-history__list {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  align-content: start;
  grid-auto-rows: 6.4rem;
}
@media (max-width: 1023px) {
  .p-about-history__list {
    padding-inline: 3vw;
  }
}
@media (max-width: 767px) {
  .p-about-history__list {
    grid-template-columns: repeat(1, 1fr);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.p-about-history__list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #37b44b;
  transform: translateX(-50%);
  height: calc(100% - 6.4rem - 2.5rem);
  z-index: 2;
}
@media (max-width: 767px) {
  .p-about-history__list:before {
    left: 4vw;
  }
}
.p-about-history__list-item {
  position: relative;
}
.p-about-history .a-timeline {
  left: 0;
  grid-column: 1/2;
  grid-row: span 4;
  --grid-bg-color:#fff;
  margin-top: 4rem;
}
.p-about-history .a-timeline:after {
  content: "";
  background: #b3b3b3;
  display: block;
  width: 8rem;
  height: 0.4rem;
  position: absolute;
  right: 2px;
  top: 6.7rem;
  z-index: 0;
}
.p-about-history .a-timeline img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .p-about-history .a-timeline:after {
    right: unset;
    left: 3px;
  }
}
.p-about-history .a-history {
  text-align: left;
  grid-column: 2/3;
  grid-row: span 3;
  --grid-bg-color:#fff;
  position: relative;
}
.p-about-history .a-history:not(.a-notline):before, .p-about-history .a-history:not(.a-notline):after {
  content: "";
  display: block;
  position: absolute;
  background: #37b44b;
}
.p-about-history .a-history:not(.a-notline):before {
  border-radius: 50%;
  width: 2.5rem;
  aspect-ratio: 1/1;
  left: -1.25rem;
  top: 2rem;
}
.p-about-history .a-history:not(.a-notline):after {
  width: 6.5rem;
  height: 0.4rem;
  left: -1.25rem;
  top: 3.1rem;
}
@media (max-width: 767px) {
  .p-about-history .a-history:not(.a-notline):before {
    left: 0;
    left: -0.8rem;
    top: 3.55rem;
  }
  .p-about-history .a-history:not(.a-notline):after {
    left: -0.4rem;
    top: 4.8rem;
  }
}
@media (min-width: 1024px) {
  .p-about-history .a-history.a-notline {
    margin-top: 8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history .a-history.a-notline {
    margin-top: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history .a-history .p-top-brand__btn {
    width: 40vw;
  }
  .p-about-history .a-history .p-top-brand__btn img {
    width: 70%;
  }
}
.p-about-history .a-point {
  --grid-bg-color:#ffeb78;
  padding: 2.4rem 4rem;
  margin-top: 4rem;
}
.p-about-history .a-point + .a-point {
  margin-top: 2.4rem;
}
.p-about-history .a-point .__ninsho {
  font-feature-settings: "palt";
}
.p-about-history .a-point .__ninsho-year {
  color: #37b44b;
  font-weight: 700;
}
.p-about-history .a-person1 {
  position: relative;
}
.p-about-history .a-person1:after {
  content: "";
  background: url(../images/about/img_history01.png) no-repeat center center/contain;
  display: block;
  z-index: 1;
  position: absolute;
  top: 80%;
  right: 10%;
  width: 20%;
  max-width: 7.3rem;
  aspect-ratio: 72/111;
}
.p-about-history .a-person2 {
  position: relative;
}
.p-about-history .a-person2:after {
  content: "";
  background: url(../images/about/img_history_1981.png) no-repeat center center/contain;
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 20%;
  max-width: 11rem;
  aspect-ratio: 110/313;
}
@media (max-width: 1023px) {
  .p-about-history .a-person2:after {
    right: -1%;
    bottom: 90%;
    width: 15%;
  }
}
.p-about-history .a-person3 {
  position: relative;
}
.p-about-history .a-person3:after {
  content: "";
  background: url(../images/about/img_history_1987.png) no-repeat center center/contain;
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -30%;
  right: -1%;
  width: 20%;
  max-width: 8.9rem;
  aspect-ratio: 89/281;
}
@media (max-width: 1023px) {
  .p-about-history .a-person3:after {
    bottom: -5%;
    right: -1%;
    width: 15%;
  }
}
.p-about-history .a-person4 {
  position: relative;
}
.p-about-history .a-person4:after {
  content: "";
  background: url(../images/about/img_history_2002.png) no-repeat center center/contain;
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 40%;
  max-width: 20rem;
  aspect-ratio: 200/302;
}
@media (max-width: 1023px) {
  .p-about-history .a-person4:after {
    bottom: -5%;
    right: -1%;
    width: 25%;
  }
}
.p-about-history__list-item__content {
  width: 90%;
  max-width: 48rem;
  background: var(--grid-bg-color);
  padding: 2.4rem 4.8rem;
  display: grid;
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}
.a-history .p-about-history__list-item__content {
  margin-inline: auto 0;
  padding: 0;
}

@media (max-width: 767px) {
  .p-about-history__list-item__content {
    width: 90%;
    max-width: unset;
    margin-inline: auto 0;
    padding: 2.4rem;
  }
  .a-history .p-about-history__list-item__content {
    margin-inline: auto 0;
    padding: 2.4rem;
  }
  .a-timeline .p-about-history__list-item__content {
    background: #f5f7f5;
  }
}
.p-about-history__list-item__content .__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-about-history__list-item__content .__year {
    font-size: 4.8rem;
  }
}
.p-about-history__list-item__content .__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;
}
.a-timeline .p-about-history__list-item__content .__year {
  font-weight: 700;
  font-size: 3.6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #37b44b;
}

.p-about-history__list-item__content .__title {
  font-size: 1.8rem;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.p-about-history__list-item__content .__text {
  font-size: 1.5rem;
  line-height: 1.8;
  font-feature-settings: "palt";
}
.p-about-history__list-item__note {
  width: 90%;
  max-width: 48rem;
  --grid-bg-color:#ffeb78;
  background: var(--grid-bg-color);
  padding: 2.4rem 4rem;
  margin-inline: auto 0;
}
.p-about-history__list-item__note .__text {
  font-size: 1.5rem;
  line-height: 1.8;
}
.p-about-history__list-item[data-row="1"] {
  grid-row: span 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="1"] {
    grid-row: span 1;
  }
}
.p-about-history__list-item[data-row="2"] {
  grid-row: span 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="2"] {
    grid-row: span 2;
  }
}
.p-about-history__list-item[data-row="3"] {
  grid-row: span 3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="3"] {
    grid-row: span 3;
  }
}
.p-about-history__list-item[data-row="4"] {
  grid-row: span 4;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="4"] {
    grid-row: span 4;
  }
}
.p-about-history__list-item[data-row="5"] {
  grid-row: span 5;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="5"] {
    grid-row: span 5;
  }
}
.p-about-history__list-item[data-row="6"] {
  grid-row: span 6;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="6"] {
    grid-row: span 6;
  }
}
.p-about-history__list-item[data-row="7"] {
  grid-row: span 7;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="7"] {
    grid-row: span 7;
  }
}
.p-about-history__list-item[data-row="8"] {
  grid-row: span 8;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="8"] {
    grid-row: span 8;
  }
}
.p-about-history__list-item[data-row="9"] {
  grid-row: span 9;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="9"] {
    grid-row: span 9;
  }
}
.p-about-history__list-item[data-row="10"] {
  grid-row: span 10;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="10"] {
    grid-row: span 10;
  }
}
.p-about-history__list-item[data-row="11"] {
  grid-row: span 11;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="11"] {
    grid-row: span 11;
  }
}
.p-about-history__list-item[data-row="12"] {
  grid-row: span 12;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="12"] {
    grid-row: span 12;
  }
}
.p-about-history__list-item[data-row="13"] {
  grid-row: span 13;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="13"] {
    grid-row: span 13;
  }
}
.p-about-history__list-item[data-row="14"] {
  grid-row: span 14;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="14"] {
    grid-row: span 14;
  }
}
.p-about-history__list-item[data-row="15"] {
  grid-row: span 15;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="15"] {
    grid-row: span 15;
  }
}
.p-about-history__list-item[data-row="16"] {
  grid-row: span 16;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="16"] {
    grid-row: span 16;
  }
}
.p-about-history__list-item[data-row="17"] {
  grid-row: span 17;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="17"] {
    grid-row: span 17;
  }
}
.p-about-history__list-item[data-row="18"] {
  grid-row: span 18;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="18"] {
    grid-row: span 18;
  }
}
.p-about-history__list-item[data-row="19"] {
  grid-row: span 19;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="19"] {
    grid-row: span 19;
  }
}
.p-about-history__list-item[data-row="20"] {
  grid-row: span 20;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-about-history__list-item[data-tabrow="20"] {
    grid-row: span 20;
  }
}

@media (min-width: 1024px) {
  .p-governance-security .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-security .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-security .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-governance-security.a-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-governance-security.a-bg2 {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-security.a-bg2 {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-governance-security.a-bg2 {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-governance-security__inner {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-governance-security__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-security__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-security__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-security__inner {
    flex-direction: column;
  }
}
.p-governance-security__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-security__image {
  text-align: center;
}
.p-governance-security__basic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (min-width: 1024px) {
  .p-governance-security__basic__wrap {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-security__basic__wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-governance-security__basic__wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 1023px) {
  .p-governance-security__basic {
    gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-governance-security__basic {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-governance-security__basic .__card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.p-governance-security__basic .__card .__name {
  font-weight: 700;
  font-size: 1.8rem;
  background: #37b44b;
  color: #fff;
  padding: 1em;
}
@media (max-width: 1023px) {
  .p-governance-security__basic .__card .__name {
    font-size: 1.44rem;
  }
}
.p-governance-security__basic .__card .__text {
  padding: 2.4rem 3.2rem;
  line-height: 2.1;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .p-governance-security__basic .__card .__text {
    padding: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .p-governance-qualification .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-qualification .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-qualification .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-governance-qualification__inner {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-governance-qualification__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-qualification__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-qualification__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-qualification__inner {
    flex-direction: column;
  }
}
.p-governance-qualification__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-qualification__image {
  text-align: center;
}
.p-governance-qualification__details {
  display: grid;
  width: 100%;
  grid-template-columns: 12rem auto;
  border-block: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .p-governance-qualification__details {
    grid-template-columns: 1fr;
  }
}
.p-governance-qualification__details .__title {
  background-color: #e1f5e6;
  color: #37b44b;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 1em;
  line-height: 1.6;
  display: grid;
  align-items: center;
}
.p-governance-qualification__details .__detail {
  padding: 2.4rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-governance-qualification__details .__detail {
    padding-inline: 0;
  }
}
.p-governance-qualification__list {
  display: grid;
  gap: 0.5em;
}
.p-governance-qualification__list .__item {
  font-size: 1.5rem;
  display: flex;
  gap: 0.2em;
  line-height: 1.6;
}
.p-governance-qualification__list .__item:before {
  content: "・";
}
.p-governance-qualification__iso {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  padding-inline: 4rem;
}
@media (min-width: 1024px) {
  .p-governance-qualification__iso {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-qualification__iso {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-qualification__iso {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-qualification__iso {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
    padding-inline: 1.6rem;
  }
}
.p-governance-qualification__iso .__title {
  font-weight: 700;
}
.p-governance-qualification__iso-text {
  line-height: 2.1;
  font-size: 1.6rem;
  position: relative;
}
.p-governance-qualification__iso-text:first-of-type:after {
  background: #cccccc;
  content: "";
  position: absolute;
  right: -4rem;
  top: 0;
  height: 100%;
  width: 1px;
}
@media (max-width: 767px) {
  .p-governance-qualification__iso-text:first-of-type:after {
    height: 1px;
    width: 100%;
    right: unset;
    left: 0;
    top: calc(100% + 1.2rem);
  }
}

@media (min-width: 1024px) {
  .p-governance-policy .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-policy .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-policy .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-governance-policy__inner {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-governance-policy__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-policy__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-policy__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-policy__inner {
    flex-direction: column;
  }
}
.p-governance-policy__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-policy__sign {
  line-height: 2.1;
  font-size: 1.5rem;
  text-align: right;
}
.p-governance-policy__image {
  text-align: center;
}
.p-governance-policy__list {
  counter-reset: listno 0;
}
@media (min-width: 1024px) {
  .p-governance-policy__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-policy__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-governance-policy__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-governance-policy__list.a-gap {
  display: grid;
  gap: 1.5em;
}
.p-governance-policy__list .__noitem {
  position: relative;
  display: flex;
  gap: 0.2em;
}
.p-governance-policy__list .__noitem:before {
  counter-increment: listno 1;
  content: counter(listno) ".";
}
.p-governance-policy__list .__noitem.a-em:before {
  font-weight: 700;
}
.p-governance-policy__list .__noitem-text {
  width: 100%;
}
.p-governance-policy__list .__title {
  font-weight: 700;
}

@media (min-width: 1024px) {
  .p-governance-intellectual_property .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-intellectual_property .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-intellectual_property .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (min-width: 1024px) {
  .p-governance-intellectual_property__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-intellectual_property__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-intellectual_property__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-governance-intellectual_property__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-intellectual_property__sign {
  line-height: 2.1;
  font-size: 1.5rem;
  text-align: right;
}
.p-governance-intellectual_property__list {
  counter-reset: listno 0;
  display: grid;
  gap: 1em;
}
@media (min-width: 1024px) {
  .p-governance-intellectual_property__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-intellectual_property__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-governance-intellectual_property__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-governance-intellectual_property__list .__noitem {
  position: relative;
  display: flex;
  gap: 0.2em;
}
.p-governance-intellectual_property__list .__noitem:before {
  counter-increment: listno 1;
  content: counter(listno) ".";
  font-weight: 700;
}
.p-governance-intellectual_property__list .__title {
  font-weight: 700;
}

@media (min-width: 1024px) {
  .p-governance-competition .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-competition .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-competition .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (min-width: 1024px) {
  .p-governance-competition__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-competition__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-competition__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-governance-competition__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-competition__sign {
  line-height: 2.1;
  font-size: 1.5rem;
  text-align: right;
}
.p-governance-competition__list {
  counter-reset: listno 0;
  display: grid;
  gap: 1.5em;
}
@media (min-width: 1024px) {
  .p-governance-competition__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-competition__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-governance-competition__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-governance-competition__list .__noitem {
  position: relative;
  display: flex;
  gap: 0.2em;
}
.p-governance-competition__list .__noitem:before {
  counter-increment: listno 1;
  content: counter(listno) ".";
  font-weight: 700;
}
.p-governance-competition__list .__title {
  font-weight: 700;
}

@media (min-width: 1024px) {
  .p-governance-anti_socials .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-anti_socials .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-anti_socials .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (min-width: 1024px) {
  .p-governance-anti_socials__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-anti_socials__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-anti_socials__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-governance-anti_socials__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-anti_socials__sign {
  line-height: 2.1;
  font-size: 1.5rem;
  text-align: right;
}
.p-governance-anti_socials__list {
  counter-reset: listno 0;
}
@media (min-width: 1024px) {
  .p-governance-anti_socials__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-anti_socials__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-governance-anti_socials__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-governance-anti_socials__list .__noitem {
  position: relative;
  display: flex;
  gap: 0.2em;
  font-weight: 700;
}
.p-governance-anti_socials__list .__noitem:before {
  counter-increment: listno 1;
  content: counter(listno) ".";
}

@media (min-width: 1024px) {
  .p-governance-privacy .p-page-contents__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-privacy .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-governance-privacy .p-page-contents__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-governance-privacy__title {
  font-weight: 700;
  font-size: 2.4rem;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #cccccc;
  color: #37b44b;
}
@media (min-width: 1024px) {
  .p-governance-privacy__inner {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-privacy__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-privacy__inner {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-governance-privacy__inner2 {
  width: 100%;
}
.p-governance-privacy__text {
  line-height: 2.1;
  font-size: 1.5rem;
}
.p-governance-privacy__sign {
  line-height: 2.1;
  font-size: 1.5rem;
  text-align: right;
}
.p-governance-privacy__list {
  counter-reset: listno 0;
}
@media (min-width: 1024px) {
  .p-governance-privacy__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-privacy__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-governance-privacy__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-governance-privacy__list:has(.__noitem) {
  display: grid;
  gap: 1em;
}
.p-governance-privacy__list .__noitem {
  position: relative;
  display: flex;
  gap: 0.2em;
}
.p-governance-privacy__list .__noitem:before {
  counter-increment: listno 1;
  content: counter(listno) ".";
}
.p-governance-privacy__list .__noitem.a-em:before {
  font-weight: 700;
}
.p-governance-privacy__list .__noitem-text {
  width: 100%;
}
.p-governance-privacy__list .__title {
  font-weight: 700;
}
.p-governance-privacy__list .__item {
  font-size: 1.5rem;
  display: flex;
  gap: 0.2em;
  line-height: 1.6;
}
.p-governance-privacy__list .__item:before {
  content: "・";
}
.p-governance-privacy__contact {
  background: #f5f7f5;
  padding: 4rem;
  margin-top: 2.4rem;
}
.p-governance-privacy__contact-title {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-governance-privacy__table {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-governance-privacy__table {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-privacy__table {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-governance-privacy__table {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-governance-privacy__table thead th {
  background: #37b44b;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  border-top: 1px solid #cccccc;
}
.p-governance-privacy__table thead th:first-of-type {
  border-right: 1px solid #cccccc;
}
.p-governance-privacy__table tbody th {
  background: #e1f5e6;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  color: #37b44b;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 2.4rem;
}
@media (min-width: 1024px) {
  .p-governance-privacy__table tbody th {
    padding-top: calc(7.2rem * 0.25);
    padding-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-governance-privacy__table tbody th {
    padding-top: calc(5.6rem * 0.25);
    padding-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-governance-privacy__table tbody th {
    padding-top: calc(4rem * 0.25);
    padding-bottom: calc(4rem * 0.25);
  }
}
.p-governance-privacy__table tbody td {
  border-bottom: 1px solid #cccccc;
  padding-inline: 2.4rem;
}
.p-governance-privacy__group__wrap {
  display: grid;
  gap: 1em;
  line-height: 2.1;
}
.p-governance-privacy__group-title {
  font-weight: 700;
  font-size: 1.5rem;
}
.p-governance-privacy__link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-governance-privacy__link:hover {
  text-decoration: none;
}

.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: #e61414;
}
.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: 15%;
    top: -2%;
    right: 0%;
  }
}
@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: #ffeb78;
  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 {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1023px) {
  .p-business-service__categories {
    padding-inline: 5vw;
  }
}
@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__lists:not(.p-business-service__lists.is_active) {
  display: none;
  position: absolute;
}
.p-business-service__contents {
  overflow: hidden;
  border-radius: 3rem;
}
@media (min-width: 1024px) {
  .p-business-service__contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-business-service__contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-business-service__contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.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);
  -moz-column-gap: 1.6rem;
       column-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 {
  color: #000;
  transition: 0.3s;
  padding: 1em 0.5em;
  text-align: left;
  line-height: 1.6;
  border-bottom: 2px dotted #cccccc;
  display: flex;
  -moz-column-gap: 0.2em;
       column-gap: 0.2em;
}
.p-business-service__item:before {
  content: "・";
}
.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);
  }
}
.p-business-service__video .__video iframe {
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 16/9;
  height: auto;
}

@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(3, 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;
  display: block;
}
.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(1, 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__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-news__inner {
    padding-inline: 5vw;
  }
}
.p-news__article {
  display: grid;
  line-height: 1.4;
  border-top: 1px dotted #000;
}
.p-news__article .__item {
  padding: 1.5em;
  border-bottom: 1px dotted #000;
  display: grid;
  grid-template-columns: 8em 1fr;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-news__article .__item {
    grid-template-columns: 1fr;
  }
}
.p-news__article .__date {
  font-weight: 700;
  color: #37b44b;
}
.p-news__article a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-news__article a:hover {
  text-decoration: none;
}
@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;
  border-left: 6px solid #37b44b;
  display: grid;
  gap: 0.5em;
  width: 100%;
  padding-inline: 1em;
  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__date-wrap {
  display: flex;
  gap: 1em;
}
.p-news-detail__date {
  color: #37b44b;
  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-contact {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  min-height: 70vh;
}
@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-__pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.p-__pagenation .__prev a,
.p-__pagenation .__next a {
  display: block;
  border-radius: 50%;
  width: 4.5rem;
  aspect-ratio: 1/1;
  background: #f0f0f0;
}
.p-__pagenation .__prev a:before,
.p-__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-__pagenation .__prev a:before {
  transform: rotate(-180deg);
}
.p-__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-__pagenation .__num a:hover {
  background: #f0f0f0;
}
.p-__pagenation .__num.__current a {
  pointer-events: none;
  background: #000;
  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;
}
@media (max-width: 767px) {
  .p-header__logo {
    margin-inline: unset;
    width: 40%;
  }
  .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: 0.8rem;
}
.p-header-nav__list {
  width: 100%;
  display: flex;
  gap: 1.6rem;
  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;
}
.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 .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: 100%;
  width: 40rem;
  border-radius: 2rem;
  background: #333333;
  color: #fff;
  padding: 1.6rem 2.4rem;
}
@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: center;
  padding-block: 0.8rem;
}
@media (min-width: 1024px) {
  .p-header-nav__ddlist {
    padding: 0.8rem 1.6rem;
  }
}
.p-header-nav__ddlist > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  display: block;
  text-align: left;
  line-height: 1.2;
}

.p-header-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background: #37b44b;
  border: 2px solid #37b44b;
  border-radius: 2.5em;
  color: #fff;
  width: 18rem;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  transition: background 0.3s;
}
.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: #fff;
  width: 2.2rem;
  aspect-ratio: 12/10;
  display: block;
  transition: background-color 0.3s;
}
.p-header-contact:hover {
  background: #fff;
  color: #37b44b;
}
.p-header-contact:hover:before {
  background-color: #37b44b;
}
@media (max-width: 1120px) {
  .p-header-contact__text {
    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: -6rem;
  background: #323232;
  padding: 12rem 4.8rem 4.8rem;
  pointer-events: all;
  transition: 0.3s;
  width: 100%;
  max-width: 112rem;
  --list-width:32rem;
  --flex-pos:column;
}
@media (max-width: 767px) {
  .p-header-meganav {
    padding: 12rem 0 8rem;
    height: calc(100vh + 6rem);
  }
}
.p-header-meganav__inner {
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 102.4rem;
  justify-content: center;
  position: relative;
  padding-bottom: 6.4rem;
  overflow-y: scroll;
  max-height: calc(100dvh - 12rem);
  padding-inline-end: 0.8rem;
}
@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;
  gap: 0.8rem;
  padding-block: 1.6rem;
  width: 100%;
  max-width: 32rem;
  --item-width: 100%;
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: start;
    max-width: unset;
  }
  .p-header-meganav__innerlist .a-multi_col {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .p-header-meganav__innerlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-header-meganav__innerlist .a-multi_col {
    grid-column: span 2;
  }
}
@media (max-width: 330px) {
  .p-header-meganav__innerlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-header-meganav__innerlist .a-multi_col {
    grid-column: span 1;
  }
}
.p-header-meganav__link {
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
}
@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__list-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
@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-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: #333333;
}
.p-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 4rem 1.6rem;
}
@media (max-width: 1023px) {
  .p-footer__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer__inner {
    gap: 2.4rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .p-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 4rem 1.6rem 1.6rem;
    padding-bottom: 10rem;
  }
}

.p-footer-info {
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: start;
}
.p-footer-info__address, .p-footer-info__tel {
  margin-top: 2.4rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2;
}
.p-footer-info__address .__address, .p-footer-info__tel .__address {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.5em;
}
.p-footer-info__address .__item-zip, .p-footer-info__tel .__item-zip {
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer-info {
    order: 2;
  }
  .p-footer-info__address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-footer-info {
    order: 2;
  }
  .p-footer-info__tel {
    margin-top: 0;
  }
}

.p-footer__copyright {
  grid-column: 1/3;
  text-align: left;
}
@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);
  }
}
.p-footer__copyright-text {
  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: 768px) and (max-width: 1023px) {
  .p-footer__copyright {
    width: 100%;
    text-align: center;
    grid-column: 1/2;
    order: 3;
  }
}
@media (max-width: 767px) {
  .p-footer__copyright {
    grid-column: 1/2;
    order: 3;
    margin-top: 2.4rem;
  }
}

.p-footer-nav {
  color: #fff;
  display: flex;
  flex-direction: column;
  max-height: 52rem;
  flex-wrap: wrap;
  -moz-column-gap: 6.4rem;
       column-gap: 6.4rem;
  row-gap: 4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer-nav {
    order: 1;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .p-footer-nav {
    max-height: none;
    grid-template-columns: repeat(2, auto);
    row-gap: 2.4rem;
    margin-bottom: 4rem;
    order: 1;
    padding-bottom: 4rem;
    border-bottom: 1px solid #fff;
  }
}
.p-footer-nav a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  text-underline-offset: 0.2em;
}
.p-footer-nav a:hover {
  text-decoration: underline;
}
.p-footer-nav__group {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  max-width: 45%;
}
@media (max-width: 767px) {
  .p-footer-nav__group {
    max-width: 100%;
  }
}
.p-footer-nav__group-name {
  font-weight: 700;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  border-bottom: 1px solid #fff;
  padding-bottom: 1em;
}
.p-footer-nav__list {
  line-height: 2;
}
.p-footer-nav__list > a {
  font-weight: 500;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .p-footer-nav__list {
    width: 100%;
  }
}
.p-footer-nav__list-item {
  list-style: disc;
  margin-left: 0.8em;
}
.p-footer-nav__list-item::marker {
  line-height: 2;
  font-size: 80%;
}

.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);
  }
}