@charset "UTF-8";
:root {
  --color-font-base: #000;
  --color-font-base-2: #34332E;
  --color-font-sub: #605E56;
  --color-base: #38393F;
  --color-base02: #F5F5F5;
  --color-main: #003662;
  --color-accent01: #06F;
  --color-accent02: #13527F;
  --color-white: #fff;
  --f-size-68: 6.8rem;
  --f-size-66: 6.6rem;
  --f-size-60: 6.0rem;
  --f-size-50: 5.0rem;
  --f-size-42: 4.2rem;
  --f-size-40: 4.0rem;
  --f-size-38: 3.8rem;
  --f-size-36: 3.6rem;
  --f-size-32: 3.2rem;
  --f-size-30: 3rem;
  --f-size-28: 2.8rem;
  --f-size-26: 2.6rem;
  --f-size-24: 2.4rem;
  --f-size-22: 2.2rem;
  --f-size-20: 2rem;
  --f-size-18: 1.8rem;
  --f-size-17: 1.7rem;
  --f-size-16: 1.6rem;
  --f-size-18: 1.8rem;
  --f-size-14: 1.4rem;
  --f-size-13: 1.3rem;
  --f-size-12: 1.2rem;
  --f-size-10: 1.0rem;
  --f-weight-300: 300;
  --f-weight-400: 400;
  --f-weight-500: 500;
  --f-weight-600: 600;
  --f-weight-700: 700;
}

@-webkit-keyframes underline02 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  33.3% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  66.6% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes underline02 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  33.3% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  66.6% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@-webkit-keyframes arrow02 {
  0% {
    -webkit-transform: scaleX(1) rotate(-180deg);
            transform: scaleX(1) rotate(-180deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  33.3% {
    -webkit-transform: scaleX(0) rotate(-180deg);
            transform: scaleX(0) rotate(-180deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  66.6% {
    -webkit-transform: scaleX(0) rotate(-180deg);
            transform: scaleX(0) rotate(-180deg);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(1) rotate(-180deg) translateX(100%);
            transform: scaleX(1) rotate(-180deg) translateX(100%);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@keyframes arrow02 {
  0% {
    -webkit-transform: scaleX(1) rotate(-180deg);
            transform: scaleX(1) rotate(-180deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  33.3% {
    -webkit-transform: scaleX(0) rotate(-180deg);
            transform: scaleX(0) rotate(-180deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  66.6% {
    -webkit-transform: scaleX(0) rotate(-180deg);
            transform: scaleX(0) rotate(-180deg);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(1) rotate(-180deg) translateX(100%);
            transform: scaleX(1) rotate(-180deg) translateX(100%);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
.l-header {
  padding: 30px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "游ゴシック", "Yu Gothic", Meiryo, sans-serif;
  background-image: url("/assets/images/common/header-bg01.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .l-header .l-header__logo {
    display: none;
  }
}
.l-header .l-header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-links {
    display: none;
  }
}
.l-header .l-header-links .l-header-links__item {
  color: #fff;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .l-header .l-header-links .l-header-links__item:hover {
    opacity: 0.6;
  }
}
.l-header .l-header-button {
  position: relative;
  width: 32px;
  height: 32px;
  display: -ms-grid;
  display: grid;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  pointer-events: auto;
  place-items: center;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .l-header .l-header-button {
    display: none;
  }
}
.l-header .l-header-button::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: width 0.1s, rotate 0.1s, translate 0.05s 0.1s, background 0.3s;
  transition: width 0.1s, rotate 0.1s, translate 0.05s 0.1s, background 0.3s;
  translate: 0px -0.4rem;
}
.l-header .l-header-button::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: width 0.1s, rotate 0.1s, translate 0.05s 0.1s, background 0.3s;
  transition: width 0.1s, rotate 0.1s, translate 0.05s 0.1s, background 0.3s;
  translate: 0px 0.4rem;
}
.l-header.is-Open {
  background-image: none;
}
.l-header.is-Open .l-header-button::before {
  rotate: 45deg;
  width: 3rem;
  translate: 0 0;
}
.l-header.is-Open .l-header-button::after {
  rotate: -45deg;
  width: 3rem;
  translate: 0 0;
}

.l-header-sp {
  width: 100%;
  height: 100vh;
  background-image: url("/assets/images/common/sp-header-bg01.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header-sp.is-Open {
  visibility: visible;
  opacity: 1;
}
.l-header-sp .l-header-sp__inner {
  width: calc(100% - 17.9487179487vw);
  height: 100%;
  background-color: #405D47;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.l-header-sp .l-header-sp-links {
  -webkit-padding-before: 150px;
          padding-block-start: 150px;
  padding-inline: 12.8205128205vw;
  display: -ms-grid;
  display: grid;
  row-gap: 40px;
}
.l-header-sp .l-header-sp-links .l-header-links__item {
  display: block;
  color: #fff;
  font-size: var(--f-size-16);
  line-height: 1.6;
}

.l-bottom-contact {
  background-image: url(/assets/images/index/page-bg.png);
  background-repeat: repeat;
  background-size: contain;
  -webkit-padding-before: 57px;
          padding-block-start: 57px;
  -webkit-padding-after: 77px;
          padding-block-end: 77px;
  position: relative;
}
.l-bottom-contact .l-bottom-contact__title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  position: absolute;
  top: -27px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.l-bottom-contact .l-bottom-contact__lead {
  text-align: center;
  font-weight: 400;
  line-height: 2;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}
.l-bottom-contact .l-bottom-contact-content {
  width: calc(100% - 480px);
  max-width: 960px;
  margin-inline: auto;
  padding-block: 18px;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media print, screen and (min-width: 768px) {
  .l-bottom-contact .l-bottom-contact-content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-bottom-contact .num-box {
  background-color: #fff;
}
.l-bottom-contact .num-box .num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.l-bottom-contact .num-box .num dt {
  width: 54px;
  -webkit-margin-end: 28px;
          margin-inline-end: 28px;
  text-align: end;
  font-size: var(--f-size-18);
  font-weight: 400;
  -webkit-margin-after: 3px;
          margin-block-end: 3px;
  display: inline-block;
}
.l-bottom-contact .num-box .num dd {
  font-size: var(--f-size-36);
  font-weight: 600;
  display: inline-block;
}
.l-bottom-contact .num-box .time dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  -webkit-margin-start: 70px;
          margin-inline-start: 70px;
}
.l-bottom-contact .num-box .time dt {
  background-color: #707070;
  border-radius: 5px;
  padding-block: 4px;
  padding-inline: 13px;
  text-align: center;
  font-size: var(--f-size-12);
  color: #fff;
  text-box: trim-both cap alphabetic;
}
.l-bottom-contact .num-box .time .dd {
  font-size: var(--f-size-14);
}
.l-bottom-contact .to-contact {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.l-bottom-contact .to-contact .label {
  font-size: var(--f-size-24);
  font-weight: 600;
}
.l-bottom-contact .to-contact .icon {
  content: "";
  display: block;
  width: 60px;
  height: 38px;
  background-image: url("/assets/images/common/icon-contact.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.l-footer .l-footer-contact {
  background-image: url("/assets/images/common/footer-contact-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-contact {
    padding-inline: 3.8461538462vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}
.l-footer .l-footer-contact .l-footer-contact__head {
  font-size: var(--f-size-68);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-contact .l-footer-contact__head {
    font-size: var(--f-size-60);
  }
}
.l-footer .l-footer-contact .l-footer-contact__btn {
  background: rgba(0, 0, 0, 0.75);
  padding-block: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .l-footer .l-footer-contact .l-footer-contact__btn {
    width: 640px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
    -webkit-padding-end: 30px;
            padding-inline-end: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-contact .l-footer-contact__btn {
    padding-block: 28px;
    padding-inline: 5.1282051282vw;
    gap: 4.1025641026vw;
  }
}
.l-footer .l-footer-contact .l-footer-contact__btn .label {
  font-size: var(--f-size-20);
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-contact .l-footer-contact__btn .label {
    font-size: var(--f-size-18);
    line-height: 1.7;
  }
}
.l-footer .l-footer-contact .l-footer-contact__btn .arrow {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #3D3C37;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.l-footer .l-footer-contact .l-footer-contact__btn .arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  -webkit-mask-image: url("/assets/images/common/link-arrow01.svg");
          mask-image: url("/assets/images/common/link-arrow01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media (any-hover: hover) {
  .l-footer .l-footer-contact .l-footer-contact__btn:hover::after, .l-footer .l-footer-contact .l-footer-contact__btn:hover .arrow::after {
    -webkit-animation: underline 0.5s forwards;
            animation: underline 0.5s forwards;
  }
}
.l-footer .l-footer-bottom {
  background-image: url("/assets/images/common/footer-bottom-bg.jpg");
  background-repeat: repeat;
  padding-block: 40px;
  display: -ms-grid;
  display: grid;
  row-gap: 40px;
  place-content: center;
}
.l-footer .l-footer-bottom .l-footer-bottom__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  color: var(--color-font-sub);
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-bottom .l-footer-bottom__nav {
    gap: 32px;
  }
}
.l-footer .l-footer-bottom .l-footer-bottom__nav .aboutProduct,
.l-footer .l-footer-bottom .l-footer-bottom__nav .privacy {
  font-size: var(--f-size-13);
  line-height: 2;
}
@media (any-hover: hover) {
  .l-footer .l-footer-bottom .l-footer-bottom__nav a:hover {
    opacity: 0.6;
  }
}
.l-footer .l-footer-bottom .l-footer-bottom__copy {
  color: #9F9F9F;
  font-size: var(--f-size-10);
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-bottom .l-footer-bottom__copy {
    gap: 6px;
  }
}

.l-container {
  position: relative;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%), linear-gradient(164deg, #FFF100 0.7%, #E4007F 25.52%, #E60012 50.35%, #920783 75.17%, #0052A5 100%);
}

.l-flcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-flcontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.l-flcontainer.-side-l {
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer.-side-l {
    padding-right: 120px;
  }
}
.l-flcontainer.-side-r {
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer.-side-r {
    padding-left: 120px;
  }
}
.l-flcontainer.js-fadein .l-flcontainer-content,
.l-flcontainer.js-fadein .l-flcontainer-image {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.l-flcontainer.fadeIn .l-flcontainer-image {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.l-flcontainer.fadeIn .l-flcontainer-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.l-flcontainer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.l-flcontainer-content p {
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer-content {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .l-flcontainer-content {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .l-flcontainer-image {
    width: 100%;
  }
}
.l-flcontainer-image img {
  width: 100%;
  height: auto;
}

.c-cnt-head {
  font-size: var(--f-size-32);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-cnt-head {
    font-size: 24px;
  }
}
.c-cnt-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: var(--color-accent01);
  position: absolute;
  left: -58px;
  top: 0.5lh;
}

.l-page-title {
  width: calc(100% - 160px);
  max-width: 1280px;
  margin-inline: auto;
  font-size: var(--f-size-60);
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page-title {
    width: calc(100% - 40px);
  }
}

.l-mv {
  width: 100%;
  line-height: 0;
}
.l-mv img {
  width: 100%;
  height: auto;
}

.c-section {
  width: calc(100% - 240px);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-section {
    width: calc(100% - 100px);
  }
}
.c-section-head {
  font-size: var(--f-size-32);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-section-head {
    font-size: 24px;
  }
}
.c-section-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: var(--color-accent01);
  position: absolute;
  left: -58px;
  top: 0.5lh;
}
@media screen and (max-width: 767px) {
  .c-section-head::before {
    width: 24px;
    left: -38px;
  }
}
.c-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.c-section-content p {
  font-weight: 300;
  line-height: 1.8;
}

@media print, screen and (min-width: 768px) {
  .toTop {
    display: block;
    width: myrem(60);
    position: fixed;
    bottom: 5.5%;
    right: 4.8%;
    z-index: 5;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .toTop {
    display: none;
  }
}

.l-breadclumbs {
  width: calc(100% - 160px);
  max-width: 1280px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 21px;
}
@media screen and (max-width: 767px) {
  .l-breadclumbs {
    width: calc(100% - 40px);
  }
}
.l-breadclumbs .l-breadclumbs__item {
  font-size: var(--f-size-15);
  color: #6B6B6B;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
}
.l-breadclumbs .l-breadclumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url("/assets/images/common/icon-breadclumbs.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-breadclumbs .l-breadclumbs__item:last-child {
  color: #000;
}

.c-link-morebtn {
  width: 220px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-link-morebtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #AFAFAF;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.c-link-morebtn .label {
  display: block;
  width: 100%;
  color: #6B6B6B;
  line-height: 2.2;
}
.c-link-morebtn .arrow {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #3D3C37;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-link-morebtn .arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000;
  -webkit-mask-image: url("/assets/images/common/link-arrow01.svg");
          mask-image: url("/assets/images/common/link-arrow01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media (any-hover: hover) {
  .c-link-morebtn:hover::after, .c-link-morebtn:hover .arrow::after {
    -webkit-animation: underline 0.5s forwards;
            animation: underline 0.5s forwards;
  }
}

.c-linkbtn-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: 260px;
  padding-block: 10px;
  padding-inline: 15px;
  background-color: #fff;
}
.c-linkbtn-01 .c-linkbtn-01__label {
  font-size: var(--f-size-18);
  font-weight: 600;
}
.c-linkbtn-01 .c-linkbtn-01__arrow {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background-image: url("/assets/images/common/icon-arrow01.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@-webkit-keyframes underline {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  33.3% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  66.6% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@keyframes underline {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  33.3% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  66.6% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@keyframes underline02 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  33.3% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  66.6% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@keyframes arrow02 {
  0% {
    -webkit-transform: scaleX(1) rotate(-180deg);
            transform: scaleX(1) rotate(-180deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  33.3% {
    -webkit-transform: scaleX(0) rotate(-180deg);
            transform: scaleX(0) rotate(-180deg);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  66.6% {
    -webkit-transform: scaleX(0) rotate(-180deg);
            transform: scaleX(0) rotate(-180deg);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(1) rotate(-180deg) translateX(100%);
            transform: scaleX(1) rotate(-180deg) translateX(100%);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
.c-card {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  row-gap: 40px;
}
@media print, screen and (min-width: 768px) {
  .c-card {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-card .c-card__item {
  display: -ms-grid;
  display: grid;
  row-gap: 4px;
}
.c-card .c-card__item .box {
  padding-inline: 7%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  position: relative;
}
.c-card .c-card__item .box::before {
  content: "";
  display: block;
  width: 16%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: -4%;
  top: 0%;
  -webkit-transform: rotate(-64deg);
          transform: rotate(-64deg);
}
.c-card .c-card__item .box .date {
  font-size: var(--f-size-20);
  line-height: 1.2;
  font-weight: 700;
}
.c-card .c-card__item .box .title {
  font-size: var(--f-size-20);
  line-height: 1.3;
  color: #222;
  font-weight: 500;
}
.c-card .c-card__item .box .tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 10px;
  color: #fff;
  background-color: #019E96;
  font-family: "Noto Sans";
}
.c-card .c-card__item .box .excerpt {
  font-size: var(--f-size-14);
  line-height: 1.4;
}

.c-comment {
  font-size: var(--f-size-12);
  font-weight: var(--f-weight-600);
  color: var(--color-base);
  text-align: end;
  line-height: 2;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers {
  cursor: pointer;
  display: inline-block;
  margin-right: 12px;
  padding: 8px 15px;
  color: #3E3E3A;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ccc;
}
.pagination .page-numbers.current {
  border: 1px solid #3D3C37;
  color: #000000;
}
.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  border-radius: 0;
  padding-inline: 0;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  padding: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #3D3C37;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers.next .arrow, .pagination .page-numbers.prev .arrow {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.pagination .page-numbers.prev {
  -webkit-margin-end: 24px;
          margin-inline-end: 24px;
}
.pagination .page-numbers.prev .arrow {
  background-image: url("/assets/images/common/pagenation-arrow01.svg");
}
.pagination .page-numbers.next {
  -webkit-margin-start: 24px;
          margin-inline-start: 24px;
}
.pagination .page-numbers.next .arrow {
  background-image: url("/assets/images/common/pagenation-arrow02.svg");
}

.u-fs20 {
  font-size: var(--f-size-20);
}

.u-fs50 {
  font-size: var(--f-size-50);
}

.u-fs60 {
  font-size: var(--f-size-60);
}

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

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: var(--f-weight-300);
  color: var(--color-font-base);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
  }
}
a {
  text-decoration: none;
  color: #000;
}

@media print, screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */