@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap';

:root {
  --font-mincho: 'Zen Old Mincho', 'Hiragino Mincho ProN', 'MS PMincho', '游明朝', 'Yu Mincho', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 400;
  line-height: 160%;
  color: #000;
}

.l-container {
  width: 100%;
  max-width: 50rem;
  padding-right: 16px;
  padding-left: 16px;
  margin: auto;
}

@media (width >=768px) {
  .l-container {
    max-width: 54rem;
    padding-right: 32px;
    padding-left: 32px;
  }
}

.c-text-link {
  color: #89a0bc;
  text-decoration: underline;
  word-break: break-all;
}

.c-text-link:hover {
  text-decoration: none;
}

.c-label {
  display: grid;
  place-items: center;
  width: 100%;
  height: 3.25rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  background: #3d70a4;
  background: linear-gradient(0deg, rgb(61, 112, 164) 0%, rgb(214, 223, 240) 100%);
}

.c-button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-gap: 0;
  align-items: center;
  justify-content: space-around;
  max-width: 22.375rem;
  height: 3rem;
  margin: auto;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  color: white;
  background-color: #1255a3;
  border-color: #1255a3;
  border-style: solid;
  border-width: 1px;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}

.c-button.c-button--arrow {
  padding-right: 1rem;
}

.c-button.c-button--arrow::after {
  position: absolute;
  right: 10px;
  width: 8px;
  height: 13px;
  content: '';
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/button-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease-in-out;
}

.c-button.c-button--arrow:hover::after {
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/button-arrow-blue.svg');
}

.c-button:hover {
  color: #1255a3;
  background-color: white;
}

.c-button:hover span {
  transform: rotate(45deg);
}

.c-button.c-button--disabled {
  background-color: #aba6a6;
  border-color: #aba6a6;
}

.c-button.c-button--disabled:hover {
  color: white;
  background-color: #aba6a6;
}

.c-button.c-button--disabled:hover::after {
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/button-arrow.svg');
}

.c-button.c-button--request {
  background-color: #12a387;
  border-color: #12a387;
}

.c-button.c-button--request:hover {
  color: #12a387;
  background-color: white;
}

.c-cta-balloon {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  height: 28px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  line-height: 1;
  background-color: #f0f0f0;
  border-radius: 9999px;
}

@media (width >=1440px) {
  .c-cta-balloon {
    height: 36px;
    font-size: 20px;
  }
}

.c-cta-balloon::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin-right: auto;
  margin-left: auto;
  content: '';
  border-color: #fff200 transparent transparent;
  border-style: solid;
  border-width: 10px 6px 0;
}

.c-heading {
  margin-bottom: 3rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4285714286;
}

@media (width >=768px) {
  .c-heading {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.c-heading.c-heading--border {
  position: relative;
  padding-top: 1.5rem;
}

.c-heading.c-heading--border::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 1px;
  content: '';
  background-color: #1255a3;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.c-modal.is-show {
  visibility: visible;
  opacity: 1;
}

.c-modal__bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.c-modal__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 90%;
  max-width: 500px;
  height: 80%;
  max-height: 22.5rem;
  padding: 1.5rem 1rem;
  overflow: auto;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

@media (width >=768px) {
  .c-modal__wrapper {
    width: 74.074074%;
    height: 52.537313%;
    padding: 10px 30px;
  }
}

.c-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.c-modal__buttons {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3.1875rem;
}

@media (width >=375px) {
  .c-modal__buttons {
    gap: 2rem;
  }
}

@media (width >=768px) {
  .c-modal__buttons {
    gap: 3rem;
  }
}

.c-modal__button {
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 3rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.c-modal__button.c-modal__button--no {
  background-color: #000;
}

.c-modal__button.c-modal__button--yes {
  background-color: #1255a3;
}

.c-note {
  font-size: 0.625rem;
}

@media (width >=768px) {
  .c-note {
    font-size: 1.25rem;
  }
}

.js-mv {
  position: relative;
}

.p-intro,
.p-phase,
.p-cta,
.p-achievement__bg,
.p-ai-support,
.p-qa,
.p-product-sample,
.p-company {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (width >=768px) {

  .p-intro,
  .p-phase,
  .p-cta,
  .p-achievement__bg,
  .p-ai-support,
  .p-qa,
  .p-product-sample,
  .p-company {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-ai-support {
  color: white;
  background-color: #1d5596;
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/ai-support-bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.p-ai-support__heading {
  padding-top: 0.5rem;
  padding-left: 3.875rem;
  margin-bottom: 2rem;
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/intro__heading-ornament-2.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 2.9375rem;
}

.p-ai-support__lead {
  margin-bottom: 2em;
  font-weight: 700;
  line-height: 1.8;
}

.p-ai-support__block {
  padding: 2rem 1rem;
  margin-top: 3em;
  color: #000;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.73), rgba(143, 164, 190, 0.73));
}

@media (width >=768px) {
  .p-ai-support__block {
    padding: 2rem;
  }
}

.p-ai-support__subtitle,
.p-ai-support__text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

@media (width >=768px) {

  .p-ai-support__subtitle,
  .p-ai-support__text {
    font-size: 2rem;
  }
}

.p-ai-support__text {
  color: #1255a3;
}

.p-ai-support__text-border {
  position: relative;
  z-index: 1;
}

.p-ai-support__text-border::after {
  position: absolute;
  bottom: 0.125rem;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 0.4375rem;
  content: '';
  background-color: #cdd8e5;
  transform: translateX(-50%);
}

.p-ai-support__list {
  padding: 0;
  margin: 2em 0 0;
  list-style: none;
}

.p-ai-support__item {
  padding: 1rem;
  color: white;
  background-color: rgba(29, 85, 150, 0.52);
}

.p-ai-support__item+.p-ai-support__item {
  margin-top: 2em;
}

.p-ai-support__item-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-ai-support__item-text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-company__intro {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-company__info {
  gap: 2.5rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

@media (width >=768px) {
  .p-company__info {
    display: flex;
  }
}

.p-company__term {
  margin-bottom: 1rem;
  font-weight: 700;
}

.p-company__desc {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

@media (width >=768px) {
  .p-company__item {
    width: 50%;
  }
}

.p-company__img {
  width: 100%;
  max-width: 22.375rem;
  margin-right: auto;
  margin-bottom: 4rem;
  margin-left: auto;
}

@media (width >=768px) {
  .p-company__img {
    max-width: 42.5rem;
  }
}

.p-cta {
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/cta-bg.png');
  background-size: cover;
}

.p-cta__heading {
  width: fit-content;
  margin-right: auto;
  margin-bottom: 1.125rem;
  margin-left: auto;
  text-align: center;
}

.p-cta__heading-border {
  position: relative;
  z-index: 1;
}

.p-cta__heading-border::after {
  position: absolute;
  bottom: 0.125rem;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 0.4375rem;
  content: '';
  background-color: #cdd8e5;
  transform: translateX(-50%);
}

.p-cta__details {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  margin-top: 2rem;
  background-color: #fff;
}

@media (width >=768px) {
  .p-cta__details {
    grid-template-columns: 1fr 31.3888888889vw;
    padding: 2.5rem 2rem;
  }
}

@media (width >=1024px) {
  .p-cta__details {
    grid-template-columns: 1fr 21.1875rem;
    gap: 1.875rem;
  }
}

.p-cta__image {
  width: 100%;
  max-width: 22.375rem;
  margin: 0 auto;
}

@media (width >=768px) {
  .p-cta__image {
    order: 2;
    max-width: unset;
  }
}

@media (width >=768px) {
  .p-cta__details-button {
    width: 11.5rem;
    margin-left: 0;
  }
}

.p-cta__name {
  margin-top: 0.9375rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1255a3;
}

@media (width >=768px) {
  .p-cta__name {
    font-size: 1.5rem;
  }
}

.p-cta__desc {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-cta__message {
  margin-top: 1.1875rem;
  font-size: 0.75rem;
}

.p-cta__message-anchor {
  color: #14a287;
}

.p-cta__logo {
  max-width: 10.163125rem;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
}

/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  color: #fff;
  background-color: #0154a7;
}

.footer__wrap {
  padding-top: 32px;
  padding-bottom: 80px;
}

@media (width >=768px) {
  .footer__wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.footer__logo {
  width: 207px;
}

@media (width >=768px) {
  .footer__logo {
    width: 280px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 60px;
}

@media (width <=767px) {
  .footer__nav {
    display: block;
    margin-top: 32px;
  }
}

.footer__nav li a {
  font-size: 12px;
  color: #99bbdc;
  text-decoration: none;
}

.footer__nav li a span {
  display: inline-block;
  margin-right: 4px;
  font-size: 10px;
  transform: scale(0.6);
}

@media (width >=768px) {
  .footer__nav li a span {
    margin-right: 8px;
    transform: scale(1);
  }
}

@media (width <=767px) {
  .footer__nav li a {
    display: block;
    margin-bottom: 10px;
  }
}

.footer_copy {
  display: block;
  margin-top: 30px;
  color: #99bbdc;
}

@media (width <=767px) {
  .footer_copy {
    margin-top: 32px;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.p-footer {
  bottom: 0;
  width: 100%;
  padding-top: 3.125rem;
  padding-bottom: 1.25rem;
  font-size: 0.625rem;
  font-weight: normal;
  background-color: #fff;
}

@media (width >=768px) {
  .p-footer {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
    font-size: 1.25rem;
  }
}

.p-footer a {
  transition: opacity 0.3s ease-in-out;
}

.p-footer a:hover {
  opacity: 0.7;
}

.p-footer__contents {
  display: grid;
  gap: 0.9375rem;
}

@media (width >=768px) {
  .p-footer__contents {
    gap: 1.875rem;
  }
}

.p-footer__links-row {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2.5rem;
  justify-content: center;
  text-align: center;
}

@media (width >=768px) {
  .p-footer__links-row {
    gap: 5rem;
  }
}

.p-footer__links-col {
  display: inline;
}

.p-footer__copy-right {
  margin-right: -1em;
  margin-left: -1em;
  text-align: center;
}

.p-footer__sponsor {
  text-align: center;
}

.p-header {
  position: relative;
  height: 30.375rem;
  color: white;
  background-color: white;
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/header-bg.jpg');
  background-position: center center;
  background-size: cover;
}

@media (width >=768px) {
  .p-header {
    height: 41.75rem;
    background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/header-bg.jpg');
  }
}

.p-header__masthead {
  position: fixed;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  width: 100%;
  padding: 0.9375rem;
  transition: background-color 0.3s ease;
}

@media (width >=768px) {
  .p-header__masthead {
    justify-content: space-between;
    padding: 1.875rem 1.25rem;
  }
}

.p-header__masthead.is-active {
  background-color: rgba(30, 30, 30, 0.35);
}

.p-header__logo-group {
  top: 1.875rem;
  left: 2rem;
  z-index: 1;
  display: grid;
  grid-template-columns: 6.8125rem auto;
  grid-gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}

@media (width >=768px) {
  .p-header__logo-group {
    justify-content: start;
  }
}

@media (width >=1080px) {
  .p-header__logo-group {
    grid-template-columns: 10.5rem auto;
    width: unset;
    margin: unset;
  }
}

.p-header__logo-group-text {
  font-size: 0.6875rem;
}

@media (width >=768px) {
  .p-header__logo-group-text {
    font-size: 0.875rem;
  }
}

.p-header__catch {
  position: absolute;
  left: 50%;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
}

@media (width >=768px) {
  .p-header__catch {
    top: 14.9375rem;
    left: 3.75rem;
    display: block;
    width: unset;
    height: unset;
    text-align: left;
    transform: unset;
  }
}

@media (width >=1080px) {
  .p-header__catch {
    left: 50%;
    transform: translateX(-30rem);
  }
}

.p-header__catch-text-lg {
  margin-bottom: 2.5625rem;
  font-size: 1.6875rem;
  line-height: mathdiv(39, 27);
  word-break: keep-all;
}

@media (width >=768px) {
  .p-header__catch-text-lg {
    font-size: 2.625rem;
    line-height: mathdiv(61, 42);
  }
}

.p-header__catch-logo {
  width: 14.1875rem;
  margin: auto;
}

@media (width >=768px) {
  .p-header__catch-logo {
    width: 21.1875rem;
    margin: unset;
  }
}

.p-header__catch-logo-company {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 7.5rem;
  transform: translateX(-50%);
}

@media (width >=768px) {
  .p-header__catch-logo-company {
    position: static;
    width: 10.5rem;
    margin-top: 7.75rem;
    transform: unset;
  }
}

.p-header__buttons {
  position: fixed;
  bottom: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, 8.4375rem);
  gap: 1rem;
  margin: auto;
  transform: translateX(-50%);
}

@media (width >=768px) {
  .p-header__buttons {
    position: unset;
    transform: unset;
  }
}

.p-header__figure {
  max-width: 17.5rem;
  margin-top: 1.5rem;
}

@media (width >=768px) {
  .p-header__figure {
    position: absolute;
    top: 0;
    left: 23.5625rem;
    max-width: 18.75rem;
  }
}

@media (width >=1024px) {
  .p-header__figure {
    position: absolute;
    top: -0.5rem;
    left: 28.125rem;
    max-width: 28.125rem;
  }
}

@media (width >=1080px) {
  .p-header__figure {
    position: absolute;
    top: -0.5rem;
    left: 31.8125rem;
    max-width: 28.125rem;
  }
}

.p-intro {
  padding-bottom: 0;
  color: white;
  background-color: #a2b6cc;
}

.p-intro__heading {
  padding-top: 0.5rem;
  margin-bottom: 2rem;
}

@media (width >=768px) {
  .p-intro__heading {
    margin-bottom: 3.5rem;
  }
}

.p-intro__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.2;
  line-height: 1.7142857143;
}

@media (width >=768px) {
  .p-intro__text {
    font-size: 1rem;
  }
}

.p-intro__figure {
  display: inline-block;
  width: 100%;
  max-width: 67.5rem;
  margin-top: 2.25rem;
  margin-right: auto;
  margin-left: 0;
}

.p-product-sample {
  background-image: url('https://service.ryobi.co.jp/business_strategy/xdive-deepthegc/assets/images/p-product-sample-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 67.5rem;
}

@media (width >=1080px) {
  .p-product-sample {
    background-size: contain;
  }
}

.p-product-sample__heading {
  margin-bottom: 0.8em;
  font-weight: 700;
}

.p-product-sample__lead {
  margin-bottom: 2em;
  line-height: 1.8;
}

.p-product-sample__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-product-sample__item+.p-product-sample__item {
  margin-top: 3em;
}

.p-product-sample__item-grid {
  display: grid;
  gap: 1rem;
}

@media (width >=768px) {
  .p-product-sample__item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75rem;
  }
}

.p-product-sample__caption {
  max-width: 11.375rem;
  margin-bottom: 1.5rem;
}

.p-product-sample__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (width >=768px) {
  .p-product-sample__image {
    margin-bottom: 1.5em;
  }
}

.p-product-sample__desc {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-product-sample__desc p+p {
  margin-top: 0.8em;
}

.p-product-sample__desc-note {
  margin-top: 0;
  font-size: 0.75rem;
}

.p-product-sample__spec__item {
  padding-top: 1rem;
  border-top: 1px solid #707070;
}

.p-product-sample__spec {
  display: grid;
  gap: 2rem;
  padding: 0;
  margin-top: 4em;
  list-style: none;
}

@media (width >=768px) {
  .p-product-sample__spec {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75rem;
  }
}

.p-product-sample__spec__heading {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

@media (width >=768px) {
  .p-product-sample__spec__heading {
    margin-bottom: 1.5625rem;
  }
}

.p-product-sample__spec__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-product-sample__spec__detail {
  font-size: 0.75rem;
  line-height: 1.75;
}

.p-qa {
  background: linear-gradient(to bottom, #fff, #eae7e7);
}

.p-qa__hgroup {
  position: relative;
  width: fit-content;
  margin: 0 auto 7.9rem;
}

.p-qa__hgroup .c-heading-2 {
  margin-left: 0;
}

.p-qa__hgroup .c-heading-2-sub {
  margin-right: auto;
  margin-left: auto;
}

.p-qa__accordion {
  margin-top: 7.2rem;
  margin-bottom: 5.6rem;
}

.p-qa__details {
  position: relative;
  margin: 0 auto 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: #fff;
  border-radius: 4px;
}

.p-qa__details span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 0.25rem;
  padding: 1.5rem 3.75rem;
  margin: 0;
  font-weight: bold;
  cursor: pointer;
  background-color: green;
}

.p-qa__details span::before {
  content: '';
}

.p-qa__details span::after {
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  display: grid;
  place-content: center;
  width: 1.25rem;
  height: 0.25rem;
  margin: auto;
  font-size: 1.5rem;
  content: '';
  background-color: red;
  transform: translateY(10%);
}

.p-qa__details__summary {
  position: relative;
  display: block;
  padding: 1.5rem 1rem 1.5rem 2rem;
  margin: 0;
  margin-left: 1rem;
  font-weight: bold;
  line-height: 1.6;
  text-indent: -1rem;
  cursor: pointer;
}

@media (width >=768px) {
  .p-qa__details__summary {
    padding: 1.5rem 2rem 1.5rem 3.5rem;
  }
}

.p-qa__details__summary::before,
.p-qa__details__summary::after {
  position: absolute;
  top: 50%;
  left: -0.25rem;
  width: 12px;
  height: 2px;
  content: '';
  background-color: #000;
  border-radius: 1px;
  transition: all 0.25s ease;
  transform: translateY(-50%);
}

@media (width >=768px) {

  .p-qa__details__summary::before,
  .p-qa__details__summary::after {
    left: 1rem;
  }
}

.p-qa__details__summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-qa__details__content {
  position: relative;
  padding: 0 1rem 2rem 4rem;
  margin-left: 1rem;
  overflow: hidden;
  text-indent: -1rem;
}

@media (width >=768px) {
  .p-qa__details__content {
    padding: 0 3.75rem 2rem 5.625rem;
  }
}

.p-qa__details__content::before {
  position: absolute;
  top: 0.25rem;
  left: 1.5rem;
  width: 1px;
  height: 1rem;
  content: '';
  background-color: #000;
}

@media (width >=768px) {
  .p-qa__details__content::before {
    left: 2.5rem;
  }
}

.p-qa__details[open] .p-qa__details__summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.u-indent-4 {
  margin-left: 0.8em;
  text-indent: -0.8em;
}

.u-indent-\[18px\] {
  margin-left: 1.8em;
  text-indent: -1.8em;
}

.u-no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.font-zen-kaku-gothic-new {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

.u-font-zen-kaku-gothic-new {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 30px;
  font-style: normal;
}

.u-font-kumbh-sans {
  font-family: 'Kumbh Sans', sans-serif;
  font-variation-settings: 'YOPQ' 300;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
}

.u-bg-gradient {
  background: #8fa4be;
  background: linear-gradient(0deg, rgb(143, 164, 190) 0%, rgb(162, 182, 204) 100%);
}
