@charset "UTF-8";
/* 汎用ボタン */
.c-btn a {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.14em;
  padding: 0.5em 1em;
  color: #fff;
  background: var(--subColor);
  border-radius: 3em;
  width: 100%;
  max-width: 18.4em;
  min-height: 3.38em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

.c-btn a.typeB {
  background: linear-gradient(152deg, var(--mainColor2), var(--mainColor));
}

.c-btn a:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

.c-btn a.fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
}

.c-btn a.left {
  margin-left: 0;
  margin-right: auto;
}

.c-btn a.right {
  margin-left: auto;
  margin-right: 0;
}

.c-btn a.center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .c-btn a {
    font-size: 2.26vw;
  }
}

@media screen and (max-width: 800px) {
  .c-btn a {
    font-size: 4.2vw;
  }
}

/* ブロック全体用リンク */
.c-blocklink a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 画像用リンク */
.c-imglink.left {
  text-align: left;
}

.c-imglink.center {
  text-align: center;
}

.c-imglink.right {
  text-align: right;
}

.c-imglink img {
  display: inline;
}

:root {
  --c-flex-gap: 20px;
}

.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-flex.gap {
  gap: var(--c-flex-gap);
}

.c-flex.gapLarge {
  gap: calc(var(--c-flex-gap) * 2);
}

.c-flex--2 > * {
  width: calc(100% / 2);
}

.c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

.c-flex--3 > * {
  width: calc(100% / 3);
}

.c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

.c-flex--4 > * {
  width: calc(100% / 4);
}

.c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

.c-flex--5 > * {
  width: calc(100% / 5);
}

.c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

.c-flex--6 > * {
  width: calc(100% / 6);
}

.c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

.c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-ul {
  list-style: none;
}

.c-ul > li {
  padding-left: 1em;
  position: relative;
}

.c-ul > li:before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.alignleft {
  margin-left: 0;
  margin-right: auto;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  margin-left: auto;
  margin-right: 0;
}

.font-10 {
  font-size: 1rem !important;
  line-height: 2rem;
}

.font-12 {
  font-size: 1.2rem !important;
  line-height: 2.2rem;
}

.font-14 {
  font-size: 1.4rem !important;
  line-height: 2.4rem;
}

.font-16 {
  font-size: 1.6rem !important;
  line-height: 2.6rem;
}

.font-18 {
  font-size: 1.8rem !important;
  line-height: 2.8rem;
}

.font-20 {
  font-size: 2rem !important;
  line-height: 3rem;
}

.font-22 {
  font-size: 2.2rem !important;
  line-height: 3.2rem;
}

.font-24 {
  font-size: 2.4rem !important;
  line-height: 3.4rem;
}

.font-26 {
  font-size: 2.6rem !important;
  line-height: 3.6rem;
}

.font-28 {
  font-size: 2.8rem !important;
  line-height: 3.8rem;
}

.font-30 {
  font-size: 3rem !important;
  line-height: 4rem;
}

.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #F4DF42));
  background: linear-gradient(transparent 50%, #F4DF42 50%);
  padding-bottom: 0.3em;
}

.u-bold {
  font-weight: bold;
}

.u-mainColor {
  color: var(--mainColor);
}

.u-subcolor {
  color: var(--subColor);
}

.u-accentcolor {
  color: var(--accentColor);
}

.u-emp {
  color: #BD0010;
}

.u-link {
  color: var(--accentColor);
}

.u-link[target="_blank"]:after {
  -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(88%) saturate(5321%) hue-rotate(194deg) brightness(91%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(65%) sepia(88%) saturate(5321%) hue-rotate(194deg) brightness(91%) contrast(85%);
}

.u-link:hover {
  border-bottom: 1px solid currentColor;
}

.u-blank {
  padding-right: 1em;
  position: relative;
}

.u-blank:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0.25em;
  width: 0.7em;
  height: 0.7em;
  background: url(../img/icon_external.svg) no-repeat center/contain;
}

.mt-5 {
  margin-top: 0.5em !important;
}

.mt-10 {
  margin-top: 1em !important;
}

.mt-15 {
  margin-top: 1.5em !important;
}

.mt-20 {
  margin-top: 2em !important;
}

.mt-25 {
  margin-top: 2.5em !important;
}

.mt-30 {
  margin-top: 3em !important;
}

.mt-35 {
  margin-top: 3.5em !important;
}

.mt-40 {
  margin-top: 4em !important;
}

.mt-45 {
  margin-top: 4.5em !important;
}

.mt-50 {
  margin-top: 5em !important;
}

.mt-55 {
  margin-top: 5.5em !important;
}

.mt-60 {
  margin-top: 6em !important;
}

main {
  overflow: hidden;
}

h2.heading .sub {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

h2.heading .sub:before {
  content: '';
  position: absolute;
  top: 0;
  left: -0.4em;
  width: 0.766em;
  aspect-ratio: 1 / 1;
  background: url(../img/ball001.png) no-repeat center/contain;
  z-index: -1;
  -webkit-animation: ball 6s ease-in-out 0s infinite normal forwards running;
          animation: ball 6s ease-in-out 0s infinite normal forwards running;
}

h2.heading .sub .gradient {
  background: linear-gradient(45deg, var(--mainColor), var(--mainColor2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.heading .main {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.12em;
  margin-top: 0.2em;
}

h2.heading + .subText {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 1.2em;
}

h2.heading.js-scroll .sub, h2.heading.js-scroll .main, h2.heading.js-scroll + .subText {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
}

h2.heading.js-scroll .main {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

h2.heading.js-scroll + .subText {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

h2.heading.is-scroll .sub, h2.heading.is-scroll .main, h2.heading.is-scroll + .subText {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  h2.heading .sub {
    font-size: 2.712vw;
  }
  h2.heading .main {
    font-size: 3.616vw;
  }
  h2.heading + .subText {
    font-size: 1.627vw;
  }
}

@media screen and (max-width: 800px) {
  h2.heading .sub {
    font-size: 4.6vw;
  }
  h2.heading .main {
    font-size: 5.64vw;
  }
  h2.heading + .subText {
    font-size: 3.58vw;
  }
}

.p-fv {
  position: relative;
  overflow: hidden;
}

.p-fv > *:not(.img) {
  position: absolute;
  top: 0;
  left: 0;
}

.p-fv img {
  width: 100%;
  max-width: none;
}

.p-fv .copy {
  top: 23.5%;
  left: 7.5%;
  width: 36%;
}

.p-fv .txt1 {
  font-size: 1.3177vw;
  font-weight: bold;
  letter-spacing: 0.15em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.5em;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
}

.p-fv .txt2 {
  margin-top: 10%;
  position: relative;
  z-index: 1;
  width: 96.3%;
}

.p-fv .txt2:before {
  content: '';
  position: absolute;
  top: -12%;
  left: -5%;
  width: 10.183%;
  aspect-ratio: 1 / 1;
  background: url(../img/fv_ball1.png) no-repeat center/contain;
  z-index: -2;
  -webkit-animation: ball 6s ease-in-out 0s infinite normal forwards running;
          animation: ball 6s ease-in-out 0s infinite normal forwards running;
}

.p-fv .txt2:after {
  content: '';
  position: absolute;
  top: -17%;
  left: 6.5%;
  width: 3.869%;
  aspect-ratio: 1 / 1;
  background: url(../img/fv_ball2.png) no-repeat center/contain;
  z-index: -1;
  -webkit-animation: ball 6s ease-in-out -1.5s infinite normal forwards running;
          animation: ball 6s ease-in-out -1.5s infinite normal forwards running;
}

.p-fv .txt3 {
  font-size: 1.2445vw;
  letter-spacing: 0.15em;
  margin-top: 1.5em;
}

.p-fv .c-btn a {
  font-size: 1.3177vw;
  margin-top: 2.5em;
}

.p-fv.js-scroll .img {
  -webkit-transition: 2s ease 0.3s;
  transition: 2s ease 0.3s;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-fv.js-scroll .copy {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
}

.p-fv.is-scroll .img {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
  -webkit-transform: none;
          transform: none;
}

.p-fv.is-scroll .copy {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  .p-fv .copy {
    top: 9%;
    left: 7%;
    width: 86.5vw;
  }
  .p-fv .txt1 {
    font-size: 3.58vw;
  }
  .p-fv .txt2 {
    margin-left: 4%;
    width: 93%;
  }
  .p-fv .txt3 {
    font-size: 3.85vw;
    margin-top: 1em;
    margin-left: 0.75em;
  }
  .p-fv .c-btn a {
    font-size: 4.1vw;
    margin: 1.8em auto 0;
  }
}

.p-introduction {
  padding-top: 100px;
}

.p-introduction .block1 {
  padding: 60px 0 40px;
  position: relative;
}

.p-introduction .block1:after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 50vw solid transparent;
  border-top: 8.785vw solid var(--baseColor);
  border-bottom: 0;
  z-index: 1;
}

.p-introduction .block1 figure {
  position: relative;
}

.p-introduction .block1 figure img {
  position: absolute;
  width: 100%;
  max-width: none;
}

.p-introduction .block1 figure figcaption {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding-top: 120%;
  white-space: nowrap;
}

.p-introduction .block1 li {
  width: 200px;
}

.p-introduction .block1 li:nth-child(1) img {
  top: -7%;
  left: -6%;
  width: 120%;
}

.p-introduction .block1 li:nth-child(2) img {
  top: 0%;
  left: 0%;
  width: 100%;
}

.p-introduction .block1 li:nth-child(3) img {
  top: 2%;
  left: -2%;
  width: 113%;
}

.p-introduction .block2 {
  padding: 110px 0 130px;
  position: relative;
}

.p-introduction .block2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #fff2d2, #f3d5d5);
  -webkit-animation: hue 5s linear 0s infinite normal forwards running;
          animation: hue 5s linear 0s infinite normal forwards running;
  z-index: -2;
}

.p-introduction .block2:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/introduction_texture.png) no-repeat center bottom/cover;
  z-index: -1;
  mix-blend-mode: multiply;
}

.p-introduction .block2 h3 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15em;
  color: #3f3936;
}

.p-introduction .block2 .txt1 {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-top: 2.2em;
}

.p-introduction .block2 .txt1 .l {
  font-size: 111.11%;
}

.p-introduction .block2 .txt1 .lu {
  position: relative;
  top: -0.25em;
}

.p-introduction .block2 .txt1 img {
  display: inline-block;
  margin: 0 0.25em;
}

.p-introduction .block2 .txt1 .logo1 {
  width: 3em;
}

.p-introduction .block2 .txt1 .logo2 {
  width: 4.166em;
  vertical-align: sub;
}

.p-introduction_step {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 3em;
  position: relative;
  z-index: 1;
}

.p-introduction_step:before {
  content: '';
  position: absolute;
  top: 0;
  left: 10.88%;
  width: 0px;
  height: 100%;
  border-left: 4px dotted var(--mainColor2);
  z-index: -1;
}

.p-introduction_step > li {
  background: #fff;
  border-radius: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-introduction_step > li:not(:first-child) {
  margin-top: 1.5em;
}

.p-introduction_step .txt {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 0.25em 2.2em;
}

.p-introduction_step.js-scroll > li:nth-child(2) .step {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.p-introduction_step.js-scroll > li:nth-child(2) .txt {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.p-introduction_step.js-scroll > li:nth-child(3) .step {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.p-introduction_step.js-scroll > li:nth-child(3) .txt {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.p-introduction_step.js-scroll .step {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.p-introduction_step.js-scroll .txt {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
}

.p-introduction_step.is-scroll .step, .p-introduction_step.is-scroll .txt {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) {
  .p-introduction .block1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8%;
  }
}

@media screen and (max-width: 1220px) {
  .p-introduction {
    padding-top: 10%;
  }
  .p-introduction .block1 {
    padding: 5% 0;
  }
  .p-introduction .blcok2 {
    padding: 20% 0 13%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-introduction .block2 .txt1 {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 800px) {
  .p-introduction {
    padding-top: 16%;
  }
  .p-introduction .block1 {
    padding: 10% 0 7%;
  }
  .p-introduction .block1 figure figcaption {
    font-size: 3.58vw;
    padding-top: 124%;
  }
  .p-introduction .block1 li {
    width: 44.35vw;
    margin: 0 auto;
  }
  .p-introduction .block1 li:not(:first-child) {
    margin-top: 1.8em;
  }
  .p-introduction .block1 li:nth-child(1) img {
    top: -4%;
    left: -14%;
    width: 120.23%;
  }
  .p-introduction .block1 li:nth-child(2) img {
    top: 4%;
    width: 100%;
  }
  .p-introduction .block1 li:nth-child(3) img {
    top: 5%;
    left: -12%;
    width: 113%;
  }
  .p-introduction .block2 {
    padding: 15% 0;
  }
  .p-introduction .block2 .txt1 {
    font-size: 4.2vw;
  }
  .p-introduction_step:before {
    left: 0;
    right: 0;
    margin: auto;
  }
  .p-introduction_step > li {
    border-radius: 20px;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 330px;
    margin: 0 auto;
  }
  .p-introduction_step > li:not(:first-child) {
    margin-top: 2em;
  }
  .p-introduction_step .step {
    position: absolute;
    top: -15px;
    left: 0;
  }
  .p-introduction_step .txt {
    font-size: 15px;
    text-align: center;
    padding: 1.5em 1em 1.7em;
  }
}

.p-about {
  padding: 100px 0 120px;
  background: #f9f4f1;
}

.p-about .c-body {
  margin-top: 65px;
}

.p-about .block1 .item:not(:first-child) {
  margin-top: 40px;
}

.p-about .block1 .img img {
  border-radius: var(--imageRadius);
}

.p-about .block1 .content {
  line-height: 1.75;
}

.p-about .block1 h3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.12em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.p-about .block1 h3:before {
  content: '';
  position: absolute;
  right: -6%;
  bottom: 0px;
  width: 33px;
  aspect-ratio: 1 / 1;
  background: url(../img/ball002.png) no-repeat center/contain;
  z-index: -2;
  -webkit-animation: ball 6s ease-in-out 0s infinite normal forwards running;
          animation: ball 6s ease-in-out 0s infinite normal forwards running;
}

.p-about .block1 h3:after {
  content: '';
  position: absolute;
  right: -11%;
  bottom: 23px;
  width: 16px;
  aspect-ratio: 1 / 1;
  background: url(../img/ball003.png) no-repeat center/contain;
  z-index: -1;
  -webkit-animation: ball 6s ease-in-out -1.5s infinite normal forwards running;
          animation: ball 6s ease-in-out -1.5s infinite normal forwards running;
}

.p-about .block2 {
  padding-top: 160px;
}

.p-about .block2 h3 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.17em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1.2em;
  position: relative;
}

.p-about .block2 h3:before, .p-about .block2 h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 1.5em;
  background: #b78a75;
}

.p-about .block2 h3:before {
  left: 0;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
}

.p-about .block2 h3:after {
  right: 0;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}

.p-about .block2 h4 {
  font-size: 2.2rem;
  font-weight: bold;
}

.p-about .block2 .flex {
  margin-top: 55px;
}

.p-about .block2 .img img {
  border-radius: var(--imageRadius);
}

.p-about .block2 .content {
  padding: 1.7em 1.5em;
}

.p-about .block2 .content ul {
  line-height: 1.8;
}

@media screen and (min-width: 801px) {
  .p-about .block1 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
  .p-about .block1 .item .img {
    width: 54.25%;
  }
  .p-about .block1 .item .content {
    width: calc(45.75% - 50px);
    margin-top: 2em;
  }
  .p-about .block1 .item .content p {
    max-width: 386px;
  }
  .p-about .block2 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
  .p-about .block2 .flex > * {
    width: calc(calc(100% - 50px) / 2);
  }
}

@media screen and (max-width: 1220px) {
  .p-about {
    padding: 10% 0 12%;
  }
  .p-about .block2 {
    padding-top: 16%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-about .block1 h3 {
    font-size: 1.989vw;
  }
  .p-about .block2 h3 {
    font-size: 2.26vw;
  }
  .p-about .block2 h4 {
    font-size: 1.989vw;
  }
}

@media screen and (max-width: 800px) {
  .p-about .c-body {
    margin-top: 12%;
  }
  .p-about .block1 .item {
    max-width: 600px;
    margin: 0 auto;
  }
  .p-about .block1 .content {
    margin-top: 2em;
  }
  .p-about .block1 h3 {
    font-size: 4.6vw;
    font-size: min(4.6vw,36px);
  }
}

.p-supports {
  padding: 100px 0 120px;
  background: #f0eae6;
}

.p-supports .block1 {
  margin-top: 70px;
}

.p-supports .block1 .img img {
  border-radius: var(--imageRadius);
}

.p-supports .block1 .txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.3em;
}

@media screen and (min-width: 801px) {
  .p-supports .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
  .p-supports .block1 > * {
    width: calc(calc(100% - 100px) / 3);
  }
}

@media screen and (max-width: 1220px) {
  .p-supports {
    padding: 10% 0 12%;
  }
  .p-supports .block1 {
    margin-top: 7%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-supports .block1 .txt {
    font-size: 1.627vw;
  }
}

.p-voice {
  padding: 100px 0 120px;
}

.p-voice .block1 {
  margin-top: 65px;
}

.p-voice .block1 .content {
  margin-top: 1em;
  padding: 0 1em;
  line-height: 1.7;
}

.p-voice .block1 .content > *:not(:first-child) {
  margin-top: 1.5em;
}

.p-voice .block1 h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-voice .block1 h3 .company {
  font-size: 137.5%;
  display: inline-block;
  margin-right: 0.5em;
}

.p-voice .block1 h3 .name {
  display: inline-block;
  margin-top: 0.3em;
}

@media screen and (min-width: 801px) {
  .p-voice .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
    margin-top: 40px;
  }
  .p-voice .block1 .item {
    max-width: 460px;
  }
  .p-voice .block1 p {
    max-width: 500px;
  }
}

@media screen and (max-width: 1220px) {
  .p-voice {
    padding: 10% 0 12%;
  }
  .p-voice .block1 {
    margin-top: 6%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-voice .block1 h3 {
    font-size: 1.627vw;
  }
}

@media screen and (max-width: 800px) {
  .p-voice .block1 .item:not(:first-child) {
    margin-top: 2em;
  }
  .p-voice .block1 .content > *:not(:first-child) {
    margin-top: 1em;
  }
  .p-voice .block1 h3 {
    font-size: 3.5vw;
  }
}

.p-company {
  padding: 100px 0 120px;
  background: #f0eae6;
}

.p-company_bg {
  background: #fff;
  -webkit-box-shadow: 0 0 3px gba(#000, 0.25);
          box-shadow: 0 0 3px gba(#000, 0.25);
  border-radius: 25px;
  margin-top: 65px;
  padding: 5% 6% 3.5%;
}

.p-company_bg .content {
  line-height: 1.7;
}

.p-company_bg h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.p-company_bg h3 + * {
  margin-top: 1.2em;
}

.p-company .block2 {
  margin-top: 120px;
}

.p-company .block2 h3 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.13em;
}

.p-company .block2 h4 {
  font-size: 2rem;
  font-weight: bold;
}

.p-company .block2 h4 img {
  width: 6.05em;
  display: inline-block;
  margin-right: 0.5em;
}

.p-company .block2 h5 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1em;
}

.p-company .block2 p {
  line-height: 1.7;
}

.p-company .block2 .bg {
  background: #fff;
  border-radius: 25px;
  padding: 5%;
  margin-top: 5%;
}

.p-company .block2 .item {
  margin-top: 4%;
}

.p-company .block2 .item .img img {
  border-radius: var(--imageRadius);
}

.p-company .block3 {
  margin-top: 110px;
}

.p-company .block3 h3 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.13em;
}

.p-company .block3 h4 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}

.p-company .block3 .img img {
  border-radius: var(--imageRadius);
}

.p-company .block3 .content {
  margin-top: 1.75em;
  line-height: 1.7;
}

.p-company .block3 .content > *:not(:first-child) {
  margin-top: 0.75em;
}

@media screen and (min-width: 801px) {
  .p-company_bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5%;
  }
  .p-company_bg .content {
    width: 52%;
  }
  .p-company_bg .img {
    width: 43%;
  }
  .p-company .block2 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .p-company .block2 .item .img {
    width: 45.68%;
  }
  .p-company .block2 .item .content {
    width: calc(54.32% - 40px);
  }
  .p-company .block3 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
  .p-company .block3 .item:not(:first-child) {
    margin-top: 42px;
  }
  .p-company .block3 .img {
    width: 41.14%;
  }
  .p-company .block3 .content {
    width: calc(58.86% - 50px);
  }
}

@media screen and (max-width: 1220px) {
  .p-company {
    padding: 10% 0 12%;
  }
  .p-company_bg {
    margin-top: 6%;
  }
  .p-company .block2 {
    margin-top: 12%;
  }
  .p-company .block3 {
    margin-top: 11%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-company_bg h3 {
    font-size: 2.17vw;
  }
  .p-company .block2 h3 {
    font-size: 2.712vw;
  }
  .p-company .block2 h4 {
    font-size: 1.8vw;
  }
  .p-company .block2 h5 {
    font-size: 1.6vw;
  }
  .p-company .block3 {
    margin-top: 11%;
  }
  .p-company .block3 h3 {
    font-size: 2.712vw;
  }
  .p-company .block3 h4 {
    font-size: 1.808vw;
  }
}

@media screen and (max-width: 800px) {
  .p-company_bg {
    border-radius: 2.56vw;
    margin-top: 12%;
    padding: 10% 8% 7%;
  }
  .p-company_bg h3 {
    font-size: 4.1vw;
  }
  .p-company .block2 h3 {
    font-size: 4.6vw;
  }
  .p-company .block2 h4 {
    font-size: 4.1vw;
  }
  .p-company .block2 h5 {
    font-size: 4.1vw;
  }
  .p-company .block2 h5 + * {
    margin-top: 1em;
  }
  .p-company .block2 .bg {
    border-radius: 2.56vw;
    padding: 10% 8% 7%;
  }
  .p-company .block2 .item {
    margin-top: 2.5em;
  }
  .p-company .block3 h3 {
    font-size: 4.6vw;
  }
  .p-company .block3 h4 {
    font-size: 4.1vw;
  }
  .p-company .block3 .item:not(:first-child) {
    margin-top: 1em;
  }
}

.p-cta {
  padding: 95px 0 100px;
  position: relative;
}

.p-cta:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/cta_texture.png) no-repeat center/cover;
  z-index: -1;
  -webkit-animation: hue 5s linear 0s infinite normal forwards running;
          animation: hue 5s linear 0s infinite normal forwards running;
}

.p-cta h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-align: center;
  color: #fff;
}

.p-cta h2 + p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #fff;
  margin-top: 1.2em;
}

.p-cta .c-body {
  margin-top: 35px;
}

.p-cta .block1 {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.p-cta .block1 h3 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15em;
  color: #fff;
  background: #3f3936;
  padding: 0.9em 1em;
}

.p-cta .block1 h4 {
  font-size: 1.8rem;
  font-weight: bold;
}

.p-cta .block1 .item {
  padding: 2em 2em 2.25em;
}

.p-cta .block1 .img img {
  border-radius: 5px;
  border: 1px solid #e8e0db;
}

.p-cta .block1 .content {
  font-size: 1.2rem;
}

.p-cta .block1 .c-btn a {
  font-size: 1.8rem;
}

@media screen and (min-width: 801px) {
  .p-cta .block1 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .p-cta .block1 .img {
    width: 50%;
  }
  .p-cta .block1 .content {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 1220px) {
  .p-cta {
    padding: 10% 0;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-cta h2 {
    font-size: 2.712vw;
  }
  .p-cta h2 + p {
    font-size: 1.446vw;
  }
}

@media screen and (max-width: 800px) {
  .p-cta h2 {
    font-size: 5.64vw;
  }
  .p-cta h2 + p {
    font-size: 3.58vw;
  }
  .p-cta .block1 h3 {
    font-size: 4.1vw;
  }
  .p-cta .block1 h4 {
    font-size: 4.1vw;
  }
  .p-cta .block1 .item {
    padding: 2em 1.7em 2.25em;
  }
  .p-cta .block1 .content {
    margin-top: 1em;
    font-size: 3vw;
  }
}

.p-article {
  padding: 130px 0 100px;
}

.p-article h2 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.14em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1.2em;
  position: relative;
}

.p-article h2:before {
  content: '';
  position: absolute;
  top: -0.2em;
  left: 0;
  width: 0.9615em;
  aspect-ratio: 1 / 1;
  background: url(../img/ball002.png) no-repeat center/contain;
  -webkit-animation: ball 6s ease-in-out 0s infinite normal forwards running;
          animation: ball 6s ease-in-out 0s infinite normal forwards running;
}

.p-article h2:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.6153em;
  aspect-ratio: 1 / 1;
  background: url(../img/ball003.png) no-repeat center/contain;
  -webkit-animation: ball 6s ease-in-out -1.5s infinite normal forwards running;
          animation: ball 6s ease-in-out -1.5s infinite normal forwards running;
}

.p-article_list {
  margin-top: 60px;
}

.p-article_list .img {
  border: 2px solid #dedede;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 0.60714;
}

.p-article_list .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-article_list .img + * {
  margin-top: 1em;
}

.p-article_list .date {
  color: rgba(0, 0, 0, 0.5);
}

.p-article_list .date + * {
  margin-top: 0.6em;
}

.p-article_list .title {
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-article_list a:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-article_list a:hover .title {
  color: var(--mainColor);
}

.p-article .c-btn a {
  font-size: 1.8rem;
  min-height: 2.8em;
}

@media screen and (min-width: 801px) {
  .p-article .l-container {
    max-width: 1226px;
  }
  .p-article_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 33px;
  }
  .p-article_list > li {
    width: calc(calc(100% - 99px) / 4);
  }
}

@media screen and (max-width: 1220px) {
  .p-article {
    padding: 13% 0 10%;
  }
  .p-article_list {
    margin-top: 6%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .p-article h2 {
    font-size: 2.35vw;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes hue {
  0%, 100% {
    -webkit-filter: hue-rotate(-15deg);
            filter: hue-rotate(-15deg);
  }
  50% {
    -webkit-filter: hue-rotate(15deg);
            filter: hue-rotate(15deg);
  }
}

@keyframes hue {
  0%, 100% {
    -webkit-filter: hue-rotate(-15deg);
            filter: hue-rotate(-15deg);
  }
  50% {
    -webkit-filter: hue-rotate(15deg);
            filter: hue-rotate(15deg);
  }
}

@-webkit-keyframes ball {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
  }
  50% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
}

@keyframes ball {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
  }
  50% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
}
