@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&display=swap");

/* =================================
ダミー用カラー
================================= */
:root {
  --color-primary: #333;
  --color-secondary: #fff;
  --color-gray: #808080;
  --color-gray-light: #f6f6f6;
  --color-gray-dark: #333;
}

/* =================================
  ベース
================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-primary);
  line-height: 1.5;
}

* {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =================================
  レイアウト
================================= */
.l-wrapper {
  width: 95%;
  max-width: 1240px;
  margin: auto;
  position: relative;
}

.l-page__main {
}

/* =================================
  コンポーネント
================================= */
a.c-btn {
  display: flex;
  border-radius: 999rem;
  gap: 1rem;
  background: var(--color-primary);
  color: var(--color-secondary);
  width: 320px;
  height: 64px;
  align-items: center;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    width: 345px;
    font-size: 19.406px;
  }
}

.c-btn__arrow {
  width: 1.7rem;
  display: flex;
}

.c-sectionTitle {
}

.c-sectionTitle__en {
  font-size: 24px;
  @media screen and (max-width: 768px) {
    font-size: 18px;
  }
}

.c-sectionTitle__ja {
  font-size: 40px;
  line-height: 1.3;
  font-weight: bold;
  @media screen and (max-width: 768px) {
    font-size: 28px;
  }
}

.c-floating {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 7px 0 11px;
  background: rgba(255, 255, 255, 0.86);
  z-index: 100;
  display: none;
  @media screen and (max-width: 768px) {
    padding: 18px 0;
  }
}

.c-floating__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-floating__close {
  cursor: pointer;
  position: absolute;
  top: 9px;
  right: 20px;
  width: 36px;
  padding: 0;
  @media screen and (max-width: 768px) {
    width: 28px;
    right: 5px;
    top: -14px;
  }
}

.c-floating__text01 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  @media screen and (max-width: 768px) {
    font-size: 12px;
  }
}

a.c-floating__btn {
  font-size: 20px;
  width: 450px;
  height: 72px;
  padding: 3px;
  @media screen and (max-width: 768px) {
    height: 56px;
    font-size: 16px;
  }
  .c-btn__arrow {
    margin: 0 28px 0 auto;
    @media screen and (max-width: 768px) {
      margin: 0 23px 0 auto;
    }
  }
}

.c-floating__btn-free {
  margin-right: auto;
  width: 66px;
  height: 66px;
  background: var(--color-secondary);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  @media screen and (max-width: 768px) {
    font-size: 15px;
    width: 52.183px;
    height: 52.183px;
  }
}

/* =================================
  ユーティリティ
================================= */
.u-hide_pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hide_sp {
    display: none;
  }
  .u-hide_pc {
    display: block;
  }
}

.u-font-en {
  font-family: "Anton", sans-serif;
}

/* =================================
  Header
================================= */
.l-header {
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  @media screen and (max-width: 768px) {
    padding: 30px 0;
  }
}

.l-header__inner {
  justify-content: space-between;
  display: flex;
}

.l-header__logo {
  width: 209px;
  @media screen and (max-width: 768px) {
    width: 150px;
  }
}

.l-header__cv {
}

a.l-header__btn {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999rem;
  background: var(--color-primary);
  width: 200px;
  height: 56px;
  @media screen and (max-width: 768px) {
    display: none;
  }
}

.l-header__btnIcon {
  width: 24px;
  @media screen and (max-width: 768px) {
  }
}

/* =================================
  Footer
================================= */
.l-footer {
  background: var(--color-primary);
  padding: 85px 0 120px;
  @media screen and (max-width: 768px) {
    padding: 60px 0 100px;
  }
}

.l-footer__wrapper {
}

.l-footer__cont {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}

.l-footer__logo {
  width: 294px;
  @media screen and (max-width: 768px) {
    width: 224px;
  }
}

.l-footer__nav {
  @media screen and (max-width: 768px) {
    width: 225px;
    margin: 0 auto;
  }
}

.l-footer__list {
  display: flex;
  gap: 30px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 20px;
  }
}

.l-footer__item {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.2;
  @media screen and (max-width: 768px) {
  }
}

.l-footer__copyright {
  color: var(--color-secondary);
  margin-top: 24px;
  text-align: right;
  font-size: 12px;
  @media screen and (max-width: 768px) {
    text-align: left;
    width: 225px;
    margin: 20px auto 0;
  }
}

/* =================================
  First View
================================= */
.p-fv {
  background: var(--color-gray-light);
  padding: 140px 0 88px;
  @media screen and (max-width: 768px) {
    padding: 90px 0 30px;
  }
}

.p-fv__text01 {
  font-size: 26.458px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 15.052px;
  }
}

.p-fv__text02 {
  font-size: 39.687px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 22.577px;
  }
}

.p-fv__title {
  margin-top: 10px;
  width: 540px;
  @media screen and (max-width: 768px) {
    width: 307px;
    margin-top: 5px;
  }
}

.p-fv__text03 {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  @media screen and (max-width: 768px) {
    margin-top: 292px;
    font-size: 15px;
  }
}

.p-fv__cv {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  @media screen and (max-width: 768px) {
    margin-top: 30px;
    align-items: center;
  }
}

.p-fv__copy {
  font-size: 15px;
  font-weight: 500;
  @media screen and (max-width: 768px) {
    font-size: 16.172px;
  }
}

.p-fv__btn {
  margin-top: 4px;
  @media screen and (max-width: 768px) {
  }
}

/* =================================
  Loop
================================= */
.p-loop {
  display: flex;
  align-items: flex-start;
  padding-bottom: 40px;
  overflow: hidden;
  @media screen and (max-width: 768px) {
    padding-bottom: 12px;
  }
}

.p-loop__list {
  display: flex;
  align-items: flex-start;
  max-width: none;
  animation: loop 20s linear infinite;
}

.p-loop__item {
  position: relative;
  height: fit-content;
  margin: 0 20px;
  width: 413px;
  @media screen and (max-width: 768px) {
    width: 268px;
    margin: 0 12px;
  }
  &:nth-child(even) {
    margin-top: 40px;
    @media screen and (max-width: 768px) {
      margin-top: 25px;
    }
  }
}

@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.p-loop__image {
  border-radius: 8px;
  overflow: hidden;
}

.p-loop__text {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: var(--color-primary);
  padding: 4px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  @media screen and (max-width: 768px) {
    padding: 2px 6px;
    font-size: 10px;
  }
}

/* =================================
  Trouble
================================= */
.p-trouble {
  background: var(--color-gray);
  padding: 40px 0 14px;
  @media screen and (max-width: 768px) {
    padding: 30px 0 50px;
  }
}

.p-trouble__container {
  border-radius: 8px;
  background: var(--color-secondary);
  margin: 0 auto;
  padding: 60px 10px;
  @media screen and (max-width: 768px) {
    padding: 28px 10px 38px;
  }
}

.p-trouble__container__inner {
  width: fit-content;
  margin: 0 auto;
  @media screen and (max-width: 768px) {
  }
}

.p-trouble__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 22px;
  }
}

.p-trouble__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
  margin: 24px auto 0;
  list-style-type: disc;
  list-style-position: inside;
  @media screen and (max-width: 768px) {
    margin-top: 16px;
    gap: 12px;
  }
}

.p-trouble__item {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    font-size: 15px;
  }
}

.p-trouble__bottom {
  display: flex;
  justify-content: center;
  gap: 35px;
  align-items: center;
  margin-top: 50px;
  @media screen and (max-width: 768px) {
    margin-top: 40px;
    flex-direction: column;
    gap: 6px;
  }
}

.p-trouble__image {
  width: 458px;
  flex-shrink: 0;
  @media screen and (max-width: 768px) {
    width: 332px;
  }
}

.p-trouble__textWrap {
  width: fit-content;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.p-trouble__text01 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    font-size: 24px;
    text-align: center;
    max-width: calc(100% + 10px);
    width: calc(100% + 10px);
    margin-left: -5px;
  }
}

.p-trouble__text02 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    font-size: 14px;
    text-align: center;
  }
}

/* =================================
  Service
================================= */
.p-service {
  background: var(--color-gray-light);
  padding: 60px 0 100px;
  @media screen and (max-width: 768px) {
  }
}

.p-service__blockList {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.p-service__blockItem {
  background: var(--color-secondary);
  border-radius: 8px;
  flex: 1;
  padding: 24px;
  @media screen and (max-width: 768px) {
  }
}

.p-service__blockTitle {
  font-size: 20px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
  }
}

.p-service__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 16px;
  @media screen and (max-width: 768px) {
  }
}

.p-service__item {
  flex: 1;
  @media screen and (max-width: 768px) {
  }
}

.p-service__text01 {
  margin-top: 10px;
  text-align: right;
  @media screen and (max-width: 768px) {
  }
}

/* =================================
  CTA
================================= */
.c-cta {
  background: var(--color-gray);
  padding: 40px 0 54px;
  @media screen and (max-width: 768px) {
  }
}

.c-cta__inner {
  @media screen and (max-width: 768px) {
  }
}

.c-cta__title {
}

.c-cta__title__en {
  font-size: 16px;
  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}

.c-cta__container {
  display: flex;
  margin-top: 16px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 30px;
  }
}

.c-cta__textWrap {
  @media screen and (max-width: 768px) {
  }
}

.c-cta__text01 {
  font-size: 32px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 26px;
    width: calc(100% + 8px);
    max-width: calc(100% + 8px);
    margin-left: -4px;
  }
}

.c-cta__text02 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}

.c-cta__btnWrap {
  @media screen and (max-width: 768px) {
    padding: 20px 20px 30px;
  }
}

.c-cta__copy {
  font-size: 15px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    text-align: center;
  }
}

.c-cta__btn {
  width: 434px;
  height: 72px;
  margin-top: 6px;
  @media screen and (max-width: 768px) {
  }
}

/* =================================
  Price
================================= */
.p-price {
  padding: 80px 0;
  background: var(--color-gray-light);
  @media screen and (max-width: 768px) {
  }
}

.p-price__list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 30px;
  }
}

.p-price__item {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-secondary);
  @media screen and (max-width: 768px) {
  }
}

.p-price__head {
  padding: 16px 0 32px;
  @media screen and (max-width: 768px) {
    padding: 12px 0 14px;
  }
}

.p-price__text01 {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  @media screen and (max-width: 768px) {
  }
}

.p-price__itemTitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  @media screen and (max-width: 768px) {
    font-size: 24px;
  }
}

.p-price__body {
  padding: 12px 24px 24px;
  @media screen and (max-width: 768px) {
    padding-top: 0;
    width: 100%;
  }
}

.p-price__numWrap {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1.5;
  @media screen and (max-width: 768px) {
  }
}

.p-price__num--strong {
  font-size: 84.667px;
  margin-right: 7px;
  @media screen and (max-width: 768px) {
  }
}
.p-price__unit {
  font-size: 31.75px;
  font-weight: 900;
  @media screen and (max-width: 768px) {
  }
}

.p-price__num--small {
  font-size: 39.75px;
  margin: 0 6px;
  @media screen and (max-width: 768px) {
  }
}

.p-price__text02 {
  font-size: 15px;
  margin-top: 8px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
  }
}

.p-price__checkList {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  @media screen and (max-width: 768px) {
  }
}

.p-price__checkItem {
  @media screen and (max-width: 768px) {
  }
}

.p-price__btn {
  margin: 40px auto 0;
  @media screen and (max-width: 768px) {
    margin-top: 30px;
    width: 320px;
  }
}

/* =================================
  Voice
================================= */
.p-voice {
  background: var(--color-gray);
  padding: 60px 0 100px;
  @media screen and (max-width: 768px) {
  }
}

.p-voice__list {
  margin-top: 50px;
  display: flex;
  gap: 32px;
  @media screen and (max-width: 768px) {
    margin-top: 40px;
    flex-direction: column;
    gap: 27px;
  }
}

.p-voice__item {
  flex: 1;
  padding: 44px 36px 32px;
  background: var(--color-gray-light);
  border-radius: 8px;
  @media screen and (max-width: 768px) {
    padding: 38px 16px 32px;
  }
}

.p-voice__text01 {
  font-size: 18px;
  font-weight: 500;
  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}

.p-voice__dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  gap: 12px;
  @media screen and (max-width: 768px) {
  }
}

.p-voice__term {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  @media screen and (max-width: 768px) {
  }
}

.p-voice__desc {
  width: calc(100% - 44px - 12px);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  @media screen and (max-width: 768px) {
  }
}

/* =================================
  Member
================================= */
.p-member {
  background: var(--color-gray-light);
  padding: 60px 0 100px;
  @media screen and (max-width: 768px) {
  }
}

.p-member__list {
  gap: 16px;
  display: flex;
  margin-top: 40px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    margin-top: 24px;
    gap: 40px;
  }
}

.p-member__item {
  @media screen and (max-width: 768px) {
  }
}

.p-member__image {
  width: calc(100% - 50px);
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.p-member__position {
  padding: 0 20px;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    padding: 0;
    font-size: 14px;
  }
}

.p-member__name {
  gap: 20px;
  margin-top: 2px;
  padding: 0 20px;
  display: flex;
  align-items: baseline;
  @media screen and (max-width: 768px) {
    gap: 16px;
    padding: 0;
  }
}

.p-member__name--ja {
  font-size: 22px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 20px;
  }
}

.p-member__name--en {
  font-size: 15px;
  @media screen and (max-width: 768px) {
    font-size: 13px;
  }
}

.p-member__text01 {
  margin-top: 8px;
  font-size: 18px;
  padding: 0 20px;
  @media screen and (max-width: 768px) {
    font-size: 15px;
    padding: 0;
  }
}

/* =================================
  Flow
================================= */
.p-flow {
  background: var(--color-gray);
  padding: 60px 0 60px;
  @media screen and (max-width: 768px) {
    padding: 40px 0 60px;
  }
}

.p-flow__list {
  margin-top: 40px;
  display: flex;
  gap: 72px;
  @media screen and (max-width: 768px) {
    margin-top: 24px;
    flex-direction: column;
  }
}

.p-flow__item {
  flex: 1;
  display: flex;
  gap: 16px;
  @media screen and (max-width: 768px) {
  }
}

.p-flow__image {
  width: 90px;
  flex-shrink: 0;
  @media screen and (max-width: 768px) {
    width: 80px;
  }
}

.p-flow__textWrap {
  @media screen and (max-width: 768px) {
  }
}

.p-flow__step {
  font-size: 18px;
  line-height: 1.3;
  @media screen and (max-width: 768px) {
  }
}

.p-flow__text01 {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  min-height: 2.6em;
  @media screen and (max-width: 768px) {
    font-size: 18px;
  }
}

.p-flow__text02 {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
  @media screen and (max-width: 768px) {
    font-size: 15px;
  }
  a {
    text-decoration: underline;
  }
}
/* =================================
  FAQ
================================= */
.p-faq {
  background: var(--color-gray-light);
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    padding: 40px 0 60px;
  }
}

.c-faq {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
  @media screen and (max-width: 768px) {
  }
}

.c-faq__item {
  @media screen and (max-width: 768px) {
  }
}

.c-faq__toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  @media screen and (max-width: 768px) {
    align-items: flex-start;
    gap: 12px;
    padding: 16px 40px 16px 16px;
  }
  span {
    border-radius: 4px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray);
    color: var(--color-secondary);
    font-size: 20px;
    @media screen and (max-width: 768px) {
      width: 24px;
      height: 24px;
      font-size: 16px;
      margin-top: 3px;
    }
  }
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 38px;
    right: 12px;
    width: 40px;
    height: 1px;
    background: var(--color-primary);
    transition: all 0.4s ease;
    @media screen and (max-width: 768px) {
      top: 30px;
      width: 24px;
    }
  }
  &::before {
    transform: rotate(90deg);
  }
  &.open {
    &::before {
      transform: rotate(0deg);
    }
  }
}

.c-faq__contents {
  display: none;
}

.c-faq__contents__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
  font-size: 16px;
  @media screen and (max-width: 768px) {
    align-items: flex-start;
    font-size: 15px;
    padding: 16px;
    gap: 12px;
  }
  span {
    border-radius: 4px;
    width: 30px;
    flex-shrink: 0;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray);
    color: var(--color-secondary);
    font-size: 20px;
    @media screen and (max-width: 768px) {
      width: 24px;
      height: 24px;
      font-size: 16px;
      margin-top: 3px;
    }
  }
}

/* =================================
  Contact
================================= */
.p-contact {
  padding: 80px 0 120px;
  background: var(--color-gray);
  @media screen and (max-width: 768px) {
    padding: 70px 0 60px;
  }
}

.p-contact__title {
  text-align: center;
  @media screen and (max-width: 768px) {
  }
}

.p-contact__text01 {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  @media screen and (max-width: 768px) {
    margin-top: 12px;
    font-size: 15px;
  }
}

.p-contact__container {
  width: 880px;
  margin: 20px auto 0;
  border-radius: 12px;
  background: var(--color-secondary);
  padding: 40px 80px;
  @media screen and (max-width: 768px) {
    margin-top: 16px;
    padding: 30px 20px 40px;
  }
}
