@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  font-size: 10px !important;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 6rem;
  }
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body.is-fixed {
    overflow: hidden;
  }
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

a,
button,
input[type=submit] {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

input[type=submit],
input[type=button],
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select,
input[type=date] {
  color: #000000;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}

button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

strong {
  font-weight: 700;
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.text-center {
  text-align: center;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* Swiper */
.swiper {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

/* アニメーション */
.scrollanime {
  /*ここで全体のアニメーション秒数を設定*/
  transition: all ease 1s;
  /*出現前は全て透明に*/
  opacity: 0;
}

/*classに応じて出現前の位置や大きさを設定*/
.toUp {
  transform: translateY(50px);
}

.toDown {
  transform: translateY(-50px);
}

.toLeft {
  transform: translateX(50px);
}

.toRight {
  transform: translateX(-50px);
}

.toBig {
  transform: scale(0.8);
}

/*画面に入った後は元の位置や大きさに戻る*/
.fadeIn.scrollanime {
  opacity: 1;
}

.fadeIn.toUp {
  transform: translateY(0);
}

.fadeIn.toDown {
  transform: translateY(0);
}

.fadeIn.toLeft {
  transform: translateX(0);
}

.fadeIn.toRight {
  transform: translateX(0);
}

.fadeIn.toBig {
  transform: scale(1);
}

/* c-contact-btn */
.c-contact-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0 3rem;
  width: 46rem;
  height: 9rem;
  background-image: linear-gradient(to bottom, #fcf145 0%, #f1e412 100%);
  border-radius: 999.9rem;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-contact-btn {
    max-width: 34.3rem;
    width: 100%;
    height: 6.9rem;
  }
}
.c-contact-btn__img {
  width: 2.8rem;
}
.c-contact-btn--nav {
  gap: 0 1rem;
  width: 20rem;
  height: 4.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact-btn--nav {
    gap: 0 2rem;
    max-width: 34.3rem;
    width: 100%;
    height: 5rem;
    font-size: 2rem;
    font-weight: 500;
  }
}
.c-contact-btn--nav .c-contact-btn__img {
  width: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact-btn--nav .c-contact-btn__img {
    width: 1.8rem;
  }
}

/* c-btn */
.c-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0 1rem;
  width: fit-content;
  padding: 1.3rem 3.5rem;
  border-radius: 999.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: #0d3387;
  color: #fff;
  white-space: nowrap;
}
.c-btn__img {
  width: 2.5rem;
}
.c-btn--accent {
  background-image: linear-gradient(to bottom, #fcf145 0%, #f1e412 100%);
  color: #000;
}
.c-btn--reverse {
  flex-direction: row-reverse;
}
.c-btn--reverse .c-btn__img {
  transform: scaleX(-1);
}

/* c-ttl */
.c-ttl {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0 1.6rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    margin-bottom: 5rem;
  }
}
.c-ttl__en {
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  color: #0d3387;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-ttl__en {
    font-size: 4rem;
  }
}
.c-ttl__ja {
  font-size: 1.4rem;
  font-weight: 500;
}

/* c-pagination */
.c-pagination {
  margin-top: 16rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.7rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 6rem;
  }
}
.c-pagination__prev {
  margin-right: 2.7rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__prev {
    margin-right: 1.2rem;
  }
}
.c-pagination__prev img {
  transform: rotate(-180deg);
}
.c-pagination__next {
  margin-left: 2.7rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__next {
    margin-left: 1.2rem;
  }
}
.c-pagination__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #fff;
  border-radius: 999.9rem;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #0d3387;
  border: 0.1rem solid #0d3387;
}
.c-pagination__item.is-active {
  background-color: #0d3387;
  color: #fff;
}

/* l-wrapper */
.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* l-inner */
.l-inner {
  max-width: 123.2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.l-inner--sm {
  max-width: 103.2rem;
}

/* l-common */
.l-common {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem 6rem;
}
@media screen and (max-width: 767px) {
  .l-common {
    flex-direction: column;
  }
}
.l-common__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.9rem;
  min-width: 38.1rem;
  width: 100%;
  height: 5rem;
  background-color: #fff;
  border-radius: 999.9rem;
  color: #0d3387;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-common__btn {
    gap: 0 0.7rem;
    font-size: 1.4rem;
    max-width: 34.3rem;
    min-width: auto;
  }
}
.l-common__btn__img {
  width: 2.1rem;
}
.l-common__sns {
  display: flex;
  flex-direction: column;
  min-width: 26.7rem;
  gap: 2.2rem 0;
}
@media screen and (max-width: 767px) {
  .l-common__sns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    min-width: auto;
    gap: 0 4rem;
  }
}
.l-common__sns__ttl {
  position: relative;
}
.l-common__sns__ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000;
  width: 100%;
  height: 0.1rem;
}
@media screen and (max-width: 767px) {
  .l-common__sns__ttl:before {
    width: 5rem;
    top: 1.6rem;
    left: auto;
    right: 0;
    transform: none;
  }
}
.l-common__sns__ttl span {
  position: relative;
  z-index: 1;
  background-color: #ecf2fb;
  font-size: 1.4rem;
  font-weight: 500;
  color: #4a4a4a;
  padding-right: 1.1rem;
}
@media screen and (max-width: 767px) {
  .l-common__sns__ttl span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 374px) {
  .l-common__sns__ttl span {
    font-size: 1.1rem;
    white-space: nowrap;
  }
}
.l-common__sns__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-common__sns__list {
    gap: 0 2.5rem;
  }
}
.l-common__sns__item a {
  display: block;
  width: 2.9rem;
}
@media screen and (max-width: 767px) {
  .l-common__sns__item a {
    width: 2.6rem;
  }
}

/* l-header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 6rem;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding-right: 5rem;
  padding-left: 5rem;
}
@media screen and (max-width: 991px) {
  .l-header__inner {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
.l-header__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 21.8rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 11.6rem;
  }
}
.l-header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 4.7rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 10.3rem 1.6rem 3.4rem;
    background-color: #ecf2fb;
  }
  .l-header__nav.is-active {
    transform: translateY(0);
  }
}
.l-header__nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav__list {
    flex-direction: column;
    gap: 3rem 0;
    margin-bottom: 6.1rem;
  }
}
.l-header__nav__item a {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-header__nav__item a {
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
}
.l-header__nav__item a:after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0;
  height: 0.1rem;
  background-color: #0d3387;
  transition: all 0.3s;
}
.l-header__nav__item.is-active a, .l-header__nav__item:hover a {
  color: #0d3387;
}
.l-header__nav__item.is-active a:after, .l-header__nav__item:hover a:after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #0d3387;
}
.l-header__nav .l-common {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav .l-common {
    display: flex;
    margin-top: 2.5rem;
    width: 100%;
  }
  .l-header__nav .l-common__btn {
    border: 0.1rem solid #0d3387;
  }
  .l-header__nav .l-common__sns {
    flex-direction: column;
    gap: 2.2rem 0;
    width: 26.7rem;
  }
  .l-header__nav .l-common__sns__ttl:before {
    width: 100%;
  }
  .l-header__nav .l-common__sns__ttl span {
    font-size: 1.4rem;
  }
  .l-header__nav .l-common__sns__ttl .is-sp {
    display: none !important;
  }
}
.l-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__toggle {
    display: block;
    position: relative;
    z-index: 2;
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 999.9rem;
    background-color: #ecf2fb;
    cursor: pointer;
    transition: all 0.3s;
  }
  .l-header__toggle__line {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 0.1rem;
    background-color: #0d3387;
    transition: all 0.3s;
  }
  .l-header__toggle__line:first-child {
    transform: translate(-50%, -0.6rem);
  }
  .l-header__toggle__line:nth-child(2) {
    transform: translate(-50%, 0rem);
  }
  .l-header__toggle__line:last-child {
    transform: translate(-50%, 0.6rem);
  }
  .l-header__toggle.is-active {
    background-color: #fff;
  }
  .l-header__toggle.is-active .l-header__toggle__line:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-header__toggle.is-active .l-header__toggle__line:nth-child(2) {
    opacity: 0;
  }
  .l-header__toggle.is-active .l-header__toggle__line:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

/* l-footer */
.l-footer {
  margin-top: auto;
}
.l-footer__top {
  padding: 10rem 0;
  background-color: #ecf2fb;
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    padding: 4rem 0;
  }
}
.l-footer__btm {
  background-color: #0d3387;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.6rem;
  text-align: center;
}
.l-footer__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem 0;
}
@media screen and (max-width: 1079px) {
  .l-footer__inner {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__logo {
  display: block;
  width: 34.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-right: auto;
    width: 26.7rem;
  }
}

/* l-main */
.l-main {
  position: relative;
  padding-top: 16rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 11rem;
  }
}
.l-main--sm {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-main--sm {
    padding-top: 6rem;
  }
}
.l-main--products-detail:before {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 100%;
  height: 8.0555555556vw;
  background-image: url("../img/common/wave_cta.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-main--products-detail:before {
    height: 8vw;
  }
}

/* l-box */
.l-box {
  padding-bottom: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .l-box {
    padding-bottom: 16vw;
  }
}

/* p-home */
.p-home__mv {
  padding: 8.3rem 0 0;
  height: 44.3055555556vw;
  background-image: url("../img/home/bg_mv.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__mv {
    padding: 4.7rem 0 0;
    height: 170.6666666667vw;
    background-image: url("../img/home/bg_mv_sp.jpg");
  }
}
.p-home__mv__inner {
  position: relative;
  max-width: 85.5555555556vw;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-home__mv__inner {
    max-width: none;
  }
}
.p-home__mv__ttl img {
  width: 32.7083333333vw;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttl img {
    width: 49.6vw;
  }
}
.p-home__mv__ttl span {
  font-family: "Roboto", sans-serif;
  font-size: 4.4444444444vw;
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttl span {
    display: inline-block;
    margin: 4vw 0;
    font-size: 12.8vw;
    line-height: 1;
  }
}
.p-home__mv__txt {
  font-size: 1.1111111111vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-home__mv__txt {
    font-size: 3.7333333333vw;
  }
}
.p-home__mv__img {
  position: absolute;
}
.p-home__mv__img:first-child {
  bottom: 3.5416666667vw;
  left: 4.5138888889vw;
  z-index: 1;
  width: 20vw;
  transition-delay: 0.1s;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img:first-child {
    bottom: 58.1333333333vw;
    left: 5.6vw;
    width: 42.6666666667vw;
  }
}
.p-home__mv__img:nth-child(2) {
  bottom: 6.6666666667vw;
  left: 17.2916666667vw;
  width: 19.8611111111vw;
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img:nth-child(2) {
    bottom: 64.8vw;
    left: 32.8vw;
    width: 42.4vw;
  }
}
.p-home__mv__img:nth-child(3) {
  bottom: 3.4027777778vw;
  left: 30.4166666667vw;
  z-index: 1;
  width: 19.9305555556vw;
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img:nth-child(3) {
    bottom: 57.8666666667vw;
    left: 60.8vw;
    width: 42.6666666667vw;
  }
}
.p-home__mv__img:nth-child(4) {
  bottom: 6.6666666667vw;
  left: 42.7083333333vw;
  width: 20vw;
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img:nth-child(4) {
    bottom: 14.9333333333vw;
    left: 11.7333333333vw;
    width: 40.8vw;
  }
}
.p-home__mv__img:nth-child(5) {
  bottom: 2.9861111111vw;
  left: 55.5555555556vw;
  z-index: 1;
  width: 20.1388888889vw;
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img:nth-child(5) {
    bottom: 7.4666666667vw;
    left: 37.8666666667vw;
    width: 41.0666666667vw;
  }
}
.p-home__mv__img:last-child {
  bottom: 6.6666666667vw;
  left: 67.9166666667vw;
  width: 20vw;
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-home__mv__img:last-child {
    bottom: 14.9333333333vw;
    left: 62.9333333333vw;
    width: 40.8vw;
  }
}
.p-home__mv__img img {
  width: 100%;
}
.p-home__concept {
  position: relative;
  padding: 8rem 0 9.7222222222vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home__concept {
    padding: 5rem 0 7.4rem;
  }
}
.p-home__concept__jamstec {
  position: absolute;
  top: 2.8rem;
  right: 0;
  width: 10.8rem;
}
@media screen and (max-width: 767px) {
  .p-home__concept__jamstec {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 8.5rem;
  }
}
.p-home__concept__jamstec img {
  width: 100%;
}
.p-home__concept__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-home__concept__inner {
    gap: 3rem 0;
  }
}
.p-home__concept__ttl {
  font-size: 3.2rem;
  color: #0d3387;
}
@media screen and (max-width: 767px) {
  .p-home__concept__ttl {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
.p-home__concept__txt {
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-home__concept__txt {
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
  }
}
.p-home__concept__txt02 {
  font-size: 1.3rem;
  line-height: 2.1;
  color: #0d3387;
}
@media screen and (max-width: 767px) {
  .p-home__concept__txt02 {
    font-size: 1.2rem;
    line-height: 1.9;
    text-align: left;
  }
}
.p-home__about {
  position: relative;
  padding-top: 6.9444444444vw;
  padding-bottom: 10rem;
  background-color: #0d3387;
}
@media screen and (max-width: 767px) {
  .p-home__about {
    padding-top: 13.3333333333vw;
    padding-bottom: 5rem;
  }
}
.p-home__about:before {
  content: "";
  position: absolute;
  top: -7.9861111111vw;
  left: 0;
  width: 100%;
  height: 8.0555555556vw;
  background-image: url("../img/common/wave.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
}
.p-home__about__ttl {
  max-width: 63.2rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-home__about__ttl {
    max-width: 25.2rem;
  }
}
.p-home__about__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 8.3rem;
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 0.1rem solid #fff;
}
@media screen and (max-width: 991px) {
  .p-home__about__body {
    flex-direction: column;
    gap: 3rem 0;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.p-home__about__img {
  max-width: 42.3rem;
}
@media screen and (max-width: 991px) {
  .p-home__about__img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__about__img {
    max-width: none;
  }
}
.p-home__about__img img {
  width: 100%;
}
.p-home__about__info {
  flex: 1;
}
.p-home__about__info .about-info__ttl {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__about__info .about-info__ttl {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.p-home__about__info .about-info__txt {
  margin-bottom: 3.7rem;
  line-height: 2.3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__about__info .about-info__txt {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-home__about__info .about-info__license {
  max-width: 62.2rem;
  width: 100%;
  padding: 3.7rem 8rem 3.7rem 3.5rem;
  background-color: #082360;
  border-radius: 1rem;
  border: 0.1rem solid #fff;
}
@media screen and (max-width: 991px) {
  .p-home__about__info .about-info__license {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__about__info .about-info__license {
    max-width: 34.3rem;
    padding: 3rem 1.9rem;
  }
}
.p-home__about__info .about-info__license__txt {
  margin-bottom: 2.3rem;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .p-home__about__info .about-info__license__txt {
    margin-bottom: 1.5rem;
    line-height: 2;
  }
}
.p-home__products {
  background-color: #ecf2fb;
}
.p-home__products__img {
  position: relative;
}
.p-home__products__img:after {
  content: "";
  position: absolute;
  bottom: -0.0694444444vw;
  left: 0;
  width: 100%;
  height: 8.0555555556vw;
  background-image: url("../img/common/wave_products.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .p-home__products__img:after {
    height: 11.2vw;
  }
}
.p-home__products__img img {
  width: 100%;
}
.p-home__products__inner {
  padding-top: 7rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-home__products__inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.p-home__products__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-home__products__ttl {
    margin-bottom: 3rem;
  }
}
.p-home__products__ttl .products-ttl__en {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #0d3387;
  margin-right: 3rem;
  padding-right: 5.2rem;
  border-right: 0.1rem solid #0d3387;
}
@media screen and (max-width: 767px) {
  .p-home__products__ttl .products-ttl__en {
    margin-right: 2rem;
    padding-right: 1.8rem;
    font-size: 3.2rem;
  }
}
.p-home__products__ttl .products-ttl__ja {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-home__products__ttl .products-ttl__ja {
    line-height: 1.6;
  }
}
.p-home__products__tab {
  display: flex;
  flex-direction: row;
  gap: 0 0.8rem;
  margin-bottom: 5rem;
  border-bottom: 0.1rem solid #0d3387;
}
@media screen and (max-width: 767px) {
  .p-home__products__tab {
    margin-bottom: 2rem;
    gap: 0 0.4rem;
  }
}
.p-home__products__tab .products-tab__item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 13.5rem;
  height: 5.1rem;
  background-color: #fff;
  border-radius: 1rem 1rem 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0d3387;
}
@media screen and (max-width: 767px) {
  .p-home__products__tab .products-tab__item a {
    width: auto;
    height: auto;
    padding: 0.5rem 0.62rem;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 374px) {
  .p-home__products__tab .products-tab__item a {
    font-size: 1rem;
  }
}
.p-home__products__tab .products-tab__item.is-active a {
  background-color: #0d3387;
  color: #fff;
}
.p-home__products__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6rem 2.5rem;
}
@media screen and (max-width: 991px) {
  .p-home__products__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-home__products__item .products-item__img {
  background-color: #fff;
  margin-bottom: 2rem;
  border: 0.1rem solid #e6eaf3;
}
.p-home__products__item .products-item__img img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
}
.p-home__products__item .products-item__ttl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-home__products__item .products-item__ttl {
    font-size: 1.4rem;
  }
}
.p-home__products__btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 23rem;
  width: 100%;
  height: 4.7rem;
  margin: 8rem auto 0;
  padding-right: 1.5rem;
  border-radius: 999.9rem;
  font-weight: 500;
  background-color: #0d3387;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__products__btn {
    margin-top: 5rem;
  }
}
.p-home__products__btn img {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 0.5rem;
}
.p-home__news {
  position: relative;
  z-index: 1;
  padding: 11.3rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-home__news {
    padding: 8rem 0 1rem;
  }
}
.p-home__news__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 9.8rem;
}
@media screen and (max-width: 767px) {
  .p-home__news__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-home__news__head {
  width: 22.8rem;
}
@media screen and (max-width: 767px) {
  .p-home__news__head {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news__head .c-btn {
    display: none;
  }
}
.p-home__news__ttl {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-home__news__ttl {
    flex-direction: row;
    align-items: flex-end;
    gap: 0 2rem;
    margin-bottom: 0;
  }
}
.p-home__news__ttl .news-ttl__en {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #0d3387;
}
.p-home__news__ttl .news-ttl__ja {
  font-size: 1.4rem;
  font-weight: 500;
}
.p-home__news__body {
  flex: 1;
}
.p-home__news .p-home__news__sp-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-home__news .p-home__news__sp-btn {
    display: flex;
    margin: 2rem auto 0;
  }
}

/* p-cta */
.p-cta {
  position: relative;
  padding: 7rem 0 10rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-bottom: 8rem;
  }
}
.p-cta--license{
  padding-bottom: 0;
}
.p-cta__ttl {
  width: fit-content;
  margin: 0 auto 3.5rem;
  padding-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 500;
  color: #0d3387;
  background-image: url("../img/common/line_cta.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl {
    margin-bottom: 2.4rem;
    padding-bottom: 2rem;
    font-size: 1.8rem;
    background-image: url("../img/common/line_cta_sp.svg");
    background-size: contain;
  }
}
.p-cta .c-contact-btn {
  margin: 0 auto;
}

/* p-license */
.p-license__inner {
  display: flex;
  flex-direction: column;
  gap: 8rem 0;
  max-width: 93.2rem;
}
.p-license__ttl {
  position: relative;
  margin-bottom: 5rem;
  padding-bottom: 1.3rem;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 0.1rem solid #d8dff0;
}
@media screen and (max-width: 767px) {
  .p-license__ttl {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.p-license__ttl:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 6rem;
  height: 0.3rem;
  border-radius: 999.9rem;
  background-color: #0d3387;
}
@media screen and (max-width: 767px) {
  .p-license__ttl:before {
    width: 4rem;
  }
}
.p-license__property {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3.2rem 8.6rem;
}
@media screen and (max-width: 991px) {
  .p-license__property {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-license__property {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem 0;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-license__property__item {
    width: 100%;
  }
}
.p-license__property__item .property-item__img {
  width: 18rem;
  margin: 0 auto 2rem;
}
.p-license__property__item .property-item__body {
  display: flex;
  flex-direction: row;
  gap: 0 2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-license__property__item .property-item__body {
    max-width: 27rem;
    width: 100%;
    margin: 0 auto;
  }
}
.p-license__property__item .property-item__num {
  padding-right: 1.8rem;
  border-right: 0.1rem solid #0d3387;
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0d3387;
}
.p-license__property__item .property-item__ttl {
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-license__property__item .property-item__txt {
  font-size: 1.4rem;
}
.p-license__flow {
  display: flex;
  flex-direction: column;
  gap: 6.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-license__flow {
    gap: 3.8rem 0;
  }
}
.p-license__flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem 0;
}
.p-license__flow__item:after {
  content: "";
  position: absolute;
  bottom: -3.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4rem 1.5rem 0 1.5rem;
  border-color: #0d3387 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-license__flow__item:after {
    bottom: -2.6rem;
  }
}
.p-license__flow__item:last-child::after {
  display: none;
}
.p-license__flow__item .flow-item__ttl {
  padding: 1.6rem 4rem;
  background-color: #ecf2fb;
  border-radius: 999.9rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.p-license__flow__item .flow-item__txt {
  padding: 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-license__flow__item .flow-item__txt {
    padding: 0 2rem;
  }
}

/* p-news */
.p-news {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-bottom: 2rem;
  }
}
.p-news__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.p-news__item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0 3rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #d8dff0;
}
@media screen and (max-width: 767px) {
  .p-news__item {
    flex-direction: column;
    gap: 1rem 0;
    padding: 1rem 0;
  }
}
.p-news__item__time {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.p-news__item__ttl {
  flex: 1;
}

/* p-news-detail */
.p-news-detail {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail {
    padding-bottom: 2rem;
  }
}
.p-news-detail__error {
  text-align: center;
}
.p-news-detail__meta {
  margin-bottom: 4rem;
}
.p-news-detail__time {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #0d3387;
}
.p-news-detail__ttl {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__ttl {
    font-size: 2rem;
    line-height: 1.7;
  }
}
.p-news-detail__img {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__img {
    margin-bottom: 3rem;
  }
}
.p-news-detail__txt {
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__txt {
    padding-bottom: 3rem;
  }
}
.p-news-detail .c-btn {
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-detail .c-btn {
    margin-top: 5rem;
  }
}

/* p-products-detail */
.p-products-detail {
  padding-top: 8rem;
  padding-bottom: 11.1111111111vw;
  background-color: #ecf2fb;
}
@media screen and (max-width: 767px) {
  .p-products-detail {
    padding-top: 4rem;
    padding-bottom: 21.3333333333vw;
  }
}
.p-products-detail__body {
  display: flex;
  flex-direction: row;
  gap: 3rem 3.6rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 991px) {
  .p-products-detail__body {
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
.p-products-detail__error {
  width: 100%;
  text-align: center;
}
.p-products-detail__slide {
  position: relative;
  aspect-ratio: 1;
  max-width: 60rem;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .p-products-detail__slide {
    max-width: none;
    width: 100%;
  }
}
.p-products-detail__slide .swiper-button-prev,
.p-products-detail__slide .swiper-button-next {
  top: min(30rem, 24vw);
  width: 3.6rem;
}
@media screen and (max-width: 991px) {
  .p-products-detail__slide .swiper-button-prev,
  .p-products-detail__slide .swiper-button-next {
    width: 2.8rem;
    top: 46vw;
  }
}
.p-products-detail__slide .swiper-button-prev img,
.p-products-detail__slide .swiper-button-next img {
  width: 100%;
}
.p-products-detail__slide .swiper-button-prev {
  transform: rotate(-180deg);
  left: -1.8rem;
}
@media screen and (max-width: 991px) {
  .p-products-detail__slide .swiper-button-prev {
    left: -0.9rem;
  }
}
.p-products-detail__slide .swiper-button-next {
  right: -1.8rem;
}
@media screen and (max-width: 991px) {
  .p-products-detail__slide .swiper-button-next {
    right: -0.9rem;
  }
}
.p-products-detail__swiper {
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 2.3rem;
}
.p-products-detail__swiper .swiper-slide {
  padding: 3rem;
  aspect-ratio: 1;
}
.p-products-detail__swiper .swiper-slide img {
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.p-products-detail__swiper-thumb .swiper-slide {
  border-radius: 0.5rem;
  cursor: pointer;
  border: 0.2rem solid transparent;
  background-color: #fff;
}
.p-products-detail__swiper-thumb .swiper-slide:hover {
  transition: all 0.3s;
  border-color: #0d3387;
}
.p-products-detail__swiper-thumb .swiper-slide.swiper-slide-thumb-active {
  border: 0.2rem solid #0d3387;
}
.p-products-detail__swiper-thumb .swiper-slide img {
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0.5rem;
}
.p-products-detail__info {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  width: 56.4rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 6.3rem 4.7rem;
}
@media screen and (max-width: 991px) {
  .p-products-detail__info {
    gap: 2rem 0;
    width: 100%;
    padding: 3rem 2rem;
  }
}
.p-products-detail__info__ttl {
  padding-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 0.1rem solid #0d3387;
}
@media screen and (max-width: 767px) {
  .p-products-detail__info__ttl {
    font-size: 2rem;
  }
}
.p-products-detail__info__price {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #0d3387;
  font-weight: 500;
}
.p-products-detail__info__price .info-price__num {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
}
.p-products-detail__info__price .info-price__tax {
  font-size: 1.5rem;
}
.p-products-detail__info__box {
  border-radius: 0.5rem;
  background-color: #fdfbe3;
  padding: 2rem 2.4rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-products-detail__info__box {
    padding: 1.2rem 1rem 2rem;
  }
}
.p-products-detail__info__box .info-box__ttl {
  margin-bottom: 1.3rem;
  padding: 0.3rem 0 0.3rem 3.7rem;
  background-image: url("../img/common/i_info.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 2.2rem;
  border-bottom: 0.1rem solid #0d3387;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-products-detail__info__box .info-box__ttl {
    margin-bottom: 0.9rem;
    padding: 1rem 0 1rem 3.2rem;
    font-size: 1.4rem;
  }
}
.p-products-detail__info__box .info-box__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-products-detail__info__box .info-box__list {
    gap: 0.9rem 0;
  }
}
.p-products-detail__info__box .info-box__item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0 1.1rem;
}
.p-products-detail__info__box .info-box__item__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 2.5rem;
  border-radius: 0.3rem;
  background-color: #0d3387;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-products-detail__info__box .info-box__item__ttl {
    width: auto;
    padding: 0 0.4rem;
  }
}
.p-products-detail__info__box .info-box__item__txt {
  flex: 1;
  font-size: 1.4rem;
}
.p-products-detail__info__box .info-box__item__txt a {
  font-size: 1.4rem;
  word-break: break-all;
  text-decoration: underline;
}
.p-products-detail .c-btn {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.faq{
  display: flex;
  flex-direction: column;
  grid-row-gap: 30px;
}
@media screen and (max-width: 767px){
  .faq{
    grid-row-gap: 15px;
  }
}
.faq__contents{
  background-color: #ecf2fb;
  padding: 20px;
  border-radius: 10px;
}
.faq__q{
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 20px;
  cursor: pointer;
  transition: all ease .3s;
  font-weight: 500;
  color: #0d3387;
}
.faq__q:hover{
  opacity: 0.7;
}
@media screen and (max-width: 767px){
  .faq__q{
    column-gap: 15px;
  }
  .faq__q:hover{
    opacity: 1;
  }
}
.faq__q::before{
  content: "Q";
  flex-shrink: 0;
  color: #0d3387;
  font-weight: bold;
  font-size: 1.5em;
  margin-top: -0.3em;
}
.faq__q::after{
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-right: solid 2px #0d3387;
  border-bottom: solid 2px #0d3387;
  transform: rotate(45deg);
  transition: all ease .3s;
  margin-right: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.faq__q.open::after{
  transform: rotate(-135deg);
}
.faq__a{
  padding-top: 0;
  font-size: 0.9em;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, padding .3s ease, opacity .1s ease;
}
@media screen and (max-width: 767px){
  .faq__a{
    font-size: 1em;
  }
}
.faq__a.open{
  padding-top: 1.2em;
  max-height: none;
  opacity: 1;
}
.faq__a:before{
  content: "A　";
  font-weight: bold;
}

















