@charset "utf-8";

/* ---------------------共通部分--------------------- */
html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

img {
    width: 100%;
    height: auto;
}

#about,
#flow,
#form {
    scroll-margin-top: 6vw; 
}

#support,
#future,
#effect,
#faq {
    scroll-margin-top: 12vw;
}

.delay03s {
    animation-delay: 0.3s;
}

.fadeUp {
    opacity: 0;
    transform: translateY(50px);
}
  
.fadeUp.is-animated {
    animation-name: fadeUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
}


/* ----------------------header--------------------- */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to right, #87d1ff 0%, #3551ff 100%);
    padding: .5vw 0;
}

.header__title-logo {
    display: flex;
    width: clamp(60px, 40%, 800px);
    height: auto;
    padding-left: 2vw;
    align-items: center;
}

.header__title-logo a {
    width: 50%;
    margin-right: 1vw;
}

picture.header__title-logo-image {
    width: 100%;
    height: auto;
}

h1 {
    font-size: clamp(6px, 1.2vw, 25px);
    align-items: center;
    color: #fff;
}

.header__title-button {
    width: 33%;
    display: flex;
    padding-right: 2vw;
    margin-top: .5vw;
}

.header__title-cta {
    width: 100%;
    height: auto;
}

.contact__cta-button {
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); 
}

.float-anim {
  animation: floatY 1.2s ease-in-out infinite;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.header__nav {
    width: 100%;
    background-color: #3957d5;
}

.header__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .4vw 0;
}

.header__menu li {
    margin: 0 1vw;
    list-style: none;
    line-height: 1.2vw;
}

.header__menu li a {
    font-size: clamp(6px, 1vw, 16px);
    font-weight: 500;
    letter-spacing: .5px;
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

.header__menu li a:hover {
    opacity: .5;
}

/* -----------------------mv----------------------- */
.mv__cta-list01 {
    width: 20%;
    height: auto;
    margin-top: 1vw;
    margin-left: 24vw;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv__cta-list01:hover {
  transform: translateY(8px);
}

.mv__cta-list02 {
    width: 30%;
    height: auto;
    margin-left: 24vw;
}

img.mv__cta-button--primary {
    width: 100%;
    height: auto;
    margin-top: -14vw;
}

img.mv__cta-button--secondary {
    width: 40%;
    height: auto;
    margin-top: .5vw;
    margin-left: .5vw;
}

/* -----------------------worries----------------------- */
#worries {
    width: clamp(200px, 65%, 1100px);
    margin: 10vw auto 6vw;
}

#worries h2 {
    font-size: clamp(10px, 1.3vw, 20px);
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    color: #3c3c3c;
}

#worries h2 span {
    font-size: clamp(14px, 2.2vw, 40px);
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
}

.worries__iist {
    display: flex;
    justify-content: center;
    margin: 3vw auto 1vw;
}

picture.worries__iist-image {
    width: 40%;
    height: auto;
    margin: 1vw;
}

img.worries__image {
    width: 1%;
    height: auto;
    margin: 1vw auto;
}

p.worries__text {
    font-size: clamp(10px, 1.8vw, 38px);
    text-align: center;
    margin: .3vw auto;
    font-weight: 900;
    color: #3c3c3c;
}

span.worries__text-small {
    font-size: 1.4vw;
    font-weight: 500;
}

span.worries__text-pt {
    color: #3957d5;
}

span.worries__text-solution {
    color: #cd5538;
    
}

/* -----------------------about---------------------- */
#about {
    width: 100%;
    padding: 1vw 0 4vw;
    background: url(../img/pt_about_background_pc.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about__block {
    width: clamp(200px, 75%, 1400px);
    margin: 3vw auto;
}

img.about__block-image {
    width: 25%;
    height: auto;
    padding-top: 4vw;
    margin: 0 auto;
}

h2.about__eyebrow {
    font-size: 1.4vw;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    margin: .5vw auto 2vw;
}

.about__contents {
    width: 45%;
    font-size: clamp(8px, 2vw, 36px);
    color: #3957d5;
    font-weight: 600;
    text-align: center;
    background: #fff;
    padding: .5vw 0;
    margin: .5vw auto;
}

span.about__contents-title {
    color: #cd5538;
    font-weight: 900;
}

#about h3 {
    font-size: clamp(8px, 2vw, 38px);
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    margin: .5vw auto 0;
}

#about h3 span {
    color: #f3e800;
    font-weight: 900;
}

picture.about__contents-image {
    width: 40%;
    height: auto;
    margin: 1vw auto;
}

/* -----------------------support---------------------- */
#support {
    width: clamp(200px, 75%, 1200px);
    margin: 6vw auto;
}

picture.support__title-image {
    width: 45%;
    margin: 1vw auto;
}

#support h2 {
    font-size: 1.4vw;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
    color: #393939;
    margin: 1vw auto 2vw;
}

#support p {
    font-size: clamp(6px, 1vw, 18px);
    font-weight: 500;
    text-align: center;
    line-height: 1.8vw;
    color: #393939;
}

picture.support__main-image {
    width: 65%;
    margin: 3vw auto;
}

/* -----------------------contact---------------------- */
#contact {
    width: 100%;
    background: #3957d5;
}

.contact__title {
  position: relative;
  top: -1.2vw;
  margin: 1vw auto;
  padding: .8vw .6vw;
  width: clamp(350px, 33%, 550px);
  color: #f3e800;
  font-size: clamp(8px, 1.1vw, 18px);
  font-weight: 900;
  letter-spacing: .1vw;
  text-align: center;
  background: #1435a1;
}

.contact__title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 15px solid #1435a1;
}

.contact__title p {
  margin: 0;
  padding: 0;
}

.contact__block {
    width: clamp(200px, 75%, 1300px);
    margin: 0 auto 2vw;
}

.contact__subtitle {
    display: flex;
    justify-content: center;
    align-items: end;
    width: clamp(400px, 55%, 700px);
    margin: auto;
    font-size: clamp(6px, 1.4vw, 26px);
    font-weight: 600;
    color: #fff;
}

.contact__subtitle-item {
     width: clamp(10px, 45%, 285px);
    display: flex;
    justify-content: center;
    align-items: end;
}

span.contact__subtitle-text {
    padding-left: .3vw;
    padding-bottom: .4vw;
}

.contact__subtitle img {
    width: 100%;
    height: auto;
    margin: .2vw;
}

.contact__subtitle p {
    padding-bottom: .3vw;
    font-size: clamp(6px, 1.4vw, 26px);
}

.contact__subtitle-join {
    padding: 0 3vw .5vw .5vw;
    font-size: clamp(6px, 1.4vw, 26px);
}

span.contact__subtitle-emp {
    font-size: 2vw;
    font-weight: 900;
    color: #f3e800;
}

p.contact__text {
    font-size: clamp(6px, 1vw, 18px);
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-top: .5vw;
}

.contact__cta {
    display: flex;
    justify-content: center;
    width: clamp(400px, 55%, 800px);
    margin: 2vw auto 3vw;
}

.contact__cta-button {
    margin: 0 .2vw;
}

.contact__cta-button img {
    width: 100%;
    height: auto;
}

img.contact__block-image {
    width: 10%;
    height: auto;
    margin-top: -11%;
    margin-left: 15%;
}

@media (max-width: 1000px) {
    img.contact__block-image {
    margin-left:  12%;
}
}

@media (max-width: 800px) {
    img.contact__block-image {
    margin-left:  5%;
}
}

/* -----------------------future---------------------- */
#future {
    width: clamp(200px, 75%, 1300px);
    margin: 6vw auto;
}

#future h2 {
    font-size: clamp(10px, 2vw, 32px);
    font-weight: 900;
    letter-spacing: .1vw;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(135, 209, 255, 1), rgba(53, 81, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#future h2 span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(10px, 6vw, 40px);
  line-height: 1;
  font-weight: 600;
}

p.future__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(10px, 1.2vw, 24px);
    letter-spacing: .2vw;
    text-align: center;
    color: #8ec4ff;
    padding-top: .5vw;
}

p.future__subtitle-text {
    font-size: clamp(10px, 1.4vw, 22px);
    font-weight: 600;
    letter-spacing: .1vw;
    color: #393939;
    text-align: center;
    margin: 1.5vw auto 3vw;
}

.future__block {
    width: 75%;
    padding-bottom: 3vw;
    margin: 3vw auto;
    display: flex;
    justify-content: center;
    align-items: end;
    border-bottom: 1px solid #c6c6c6;
}

.future__block-contents {
    width: 70%;
}

.future__block-number {
    width: 12%;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(6px, 1.5vw, 26px);
    font-weight: 550;
    text-align: center;
    letter-spacing: .1vw;
    color: #fff;
    padding: .4vw .8vw .4vw .2vw;
    background-image: linear-gradient(90deg, rgba(135, 209, 255, 1), rgba(53, 81, 255, 1));
    clip-path:polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.future__block-contents h3 {
    font-size: clamp(10px, 1.5vw, 30px);
    font-weight: 600;
    color: #3957d5;
    letter-spacing: .1vw;
    margin: .7vw 0 1vw;
}

.future__block-contents h4 {
    font-size: clamp(10px, 1.2vw, 19px);
    font-weight: 600;
    color: #393939;
}

p.future__block-subtitle {
    font-size: clamp(6px, 1vw, 16px);
    font-weight: 500;
    line-height: clamp(10px, 1.8vw, 28px);
    color: #393939;
    text-align: justify;
    margin: .4vw 0 1vw;
}

p.future__block-text {
    font-size: clamp(6px, .9vw, 15px);
    font-weight: 600;
    text-align: center;
    color: #363636;
    background-color: #efefef;
    border-radius: .3vw;
    padding: 1vw .4vw;
}

img.future__block-image {
    width: 30%;
    height: 30%;
    margin: 1.5vw 1.5vw 0 2vw;
}

/* -----------------------effect---------------------- */
#effect {
    width: clamp(200px, 75%, 1300px);
    margin: 6vw auto;
}

#effect h2 {
    font-size: clamp(10px, 2vw, 32px);
    font-weight: 600;
    text-align: center;
    color: #3957d5;
}

p.effect__subtext {
    font-size: clamp(6px, 1vw, 18px);
    font-weight: 500;
    text-align: center;
    line-height: clamp(10px, 1.8vw, 28px);
    color: #393939;
    margin: 1.5vw 0 3vw;
}

picture.effect__image {
    width: 65%;
    height: auto;
    margin: 2vw auto;
}

p.effect_attention {
    font-size: clamp(6px, .9vw, 16px);
    text-align: center;
    color: #7d7d7d;
}

/* -----------------------case---------------------- */
#case {
    width: 100%;
    height: 65vw;
    max-height: 1100px;
    margin: 6vw auto;
    background: linear-gradient(to bottom, #fff 0 30%, #3957d5 30% 100%);
}

@media (min-width: 2400px) {
    #case {
    max-height: 1250px;
}
}

#case h2 {
    position: relative;
    top: 2vw;
    font-size: clamp(6px, 2vw, 32px);
    font-weight: 600;
    text-align: center;
    color: #393939;
}

p.case__subtitle {
    position: relative;
    top: 2vw;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(6px, 1.3vw, 20px);
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.8vw;
    color: #939393;
}

.case__block {
    position: relative;
    top: clamp(20px, 12vw, 80px);
    width: clamp(200px, 55%, 1100px);
    margin: 0 auto;
    padding: 2vw 3.5vw 1vw;
    border-radius: .5vw;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.45);
}

.case__block-main {
    display: flex;
    justify-content: center;
    margin: 1vw;
    padding-bottom: 2vw;
}

picture.case__block-image {
    width: 40%;
    height: auto;
}

.case__block-title {
    width: 60%;
    padding-left: 2vw;
}

.case__block-tag {
    width: 30%;
    padding: .1vw 0;
    font-size: clamp(6px, 1vw, 18px);
    font-weight: 600;
    text-align: center;
    color: #3957d5;
    background-color: #d4e9ff;
}

.case__block-title h3 {
    padding: .8vw 0;
    font-size: clamp(6px, 1.5vw, 28px);
    font-weight: 600;
    line-height: clamp(10px, 2.2vw, 40px);
    color: #393939;
    border-bottom: 1px solid #aaaaaa;
}

p.case__block-company {
    padding-top: .8vw;
    font-size: clamp(6px, 1.1vw, 20px);
    font-weight: 600;
    color: #393939;
}

/* カード全体 */
.problem-card{
  width: 100%;
  margin: 1vw auto;
  display:flex;

}

/* 左のグレー帯 */
.problem-card__head{
  width: 25%;
  padding: 1vw 1.5vw;
  display:flex;
  align-items:center;
  gap:10px;
  background-color: #aaaaaa;
  color:#fff;
  border: 2px solid #aaaaaa;
  border-radius: .4vw 0 0 .4vw;
}

/* 右の本文 */
.problem-card__body{
  width: 75%;
  padding: 1vw;
  color: #7d7d7d;
  border: 2px solid #aaaaaa;
  border-radius: 0 .4vw .4vw 0;
}

/* タイポ調整 */
.problem-card__label{
  font-size: .9vw;
  font-weight:700;
  letter-spacing:.02em;
}

.problem-card__title{
  font-weight:900;
  font-size: clamp(6px, 1vw, 18px);
  margin:0;
}

/* アイコン（画像） */
.problem-card__icon{
  width: clamp(6px, 20%, 50px);
  height:auto;
  flex:0 0 auto;
  filter: brightness(0) invert(1); /* 必要なら白化調整 */
}

/* リスト */
.problem-card__list{
  margin:0;
  padding-left: 1.1em;
  line-height: 1.9;
}
.problem-card__list li{
  font-size: clamp(6px, 1vw, 16px);
  font-weight: 500;
}

.problem-card__head02{
  width: 25%;
  padding: 1vw 1.5vw;
  display:flex;
  align-items:center;
  gap:10px;
  background-color: #3957d5;
  color:#fff;
  border: 2px solid #3957d5;
  border-radius: .4vw 0 0 .4vw;
}

/* 右の本文 */
.problem-card__body02{
  width: 75%;
  padding: 1vw;
  color: #393939;
  border: 2px solid #3957d5;
  border-radius: 0 .4vw .4vw 0;
}

.case__cta {
    width: 45%;
    margin: 2vw auto;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case__cta:hover {
  transform: translateY(8px);
}

.case__cta img {
    width: 100%;
    height: auto;
}

/* -----------------------price---------------------- */
#price {
    width: clamp(200px, 55%, 1200px);
    margin: 6vw auto;
}

#price h2 {
    font-size: clamp(10px, 2vw, 32px);
    font-weight: 600;
    text-align: center;
    color: #393939;
}

p.price__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.3vw, 20px);
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.8vw;
    color: #939393;
    margin: 0 0 3vw;
}

.price__menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

picture.price__menu-list {
    width: 50%;
    height: auto;
    margin: 1vw;
}

picture.price__menu-list02 {
    width: 48.6%;
    height: auto;
    margin: 1vw;
}

picture.price__menu-custom {
    width: 75%;
    margin: 2VW auto;
}

picture.price__menu-example {
    width: 96%;
    margin: 3vw auto;
}

/* -----------------------flow---------------------- */
#flow {
    width: 100%;
    margin: 6vw auto -1.5vw;
    padding: 6vw 0;
    background-color: #d4e9ff;
}

#flow h2 {
    font-size: clamp(10px, 2vw, 32px);
    font-weight: 600;
    text-align: center;
    letter-spacing: .1vw;
    color: #393939;
}

p.flow__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.3vw, 20px);
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.8vw;
    color: #939393;
    margin: 0 0 3vw;
}

picture.flow__image {
    width: clamp(200px, 55%, 1200px);
    height: auto;
    margin: 3vw auto;
}

/* -----------------------faq---------------------- */
#faq {
    width: clamp(200px, 60%, 1000px);
    margin: 6vw auto ;
}

#faq h2 {
    font-size: clamp(10px, 2vw, 32px);
    font-weight: 600;
    text-align: center;
    color: #393939;
}

p.faq__subtitle {
    font-size: clamp(10px, 1.3vw, 20px);
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.8vw;
    color: #939393;
    margin: 0 0 3vw;
}

:root{
  --brand:#3957d5;           /* 青 */
  --brand-soft:#e9efff;      /* 薄い青 */
  --text:#393939;
  --muted:#5a5a5a;
  --border:#d9d9d9;
  --radius:10px;
}

/* 各項目 */
.faq__item{
  border-top: 1px solid var(--border);
  padding: 0;
}
.faq__item:last-of-type{ border-bottom: 1px solid var(--border); }

/* 質問部分 */
.faq__q{
  list-style: none;
  display: grid;
  grid-template-columns: 36px 1fr 24px; /* Qアイコン / テキスト / 矢印 */
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(6px,1.2vw,18px);
  color: var(--text);
  padding: 1.5vw;
}
.faq__q::-webkit-details-marker{ display:none; }

/* 回答部分 */
.faq__a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-top: 14px;
  background: #f6f6f6;
  padding: 1.5vw;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.9;
}
.faq__a p {
    font-size: clamp(6px,1.2vw,18px);
    text-align: justify;
    margin: 0; 

}
.faq__a p span {
    color: #3957d5; 
    font-weight: 600;
}

.faq__a a {
    color: var(--brand);
    text-decoration: underline;
}

/* Q / A 丸アイコン */
.qa-icon{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(6px, 1vw,18px);
  line-height: 1;
  flex: 0 0 auto;
}
.qa-icon--q{ background: var(--brand); color: #fff; }      /* Q → 青丸に白文字 */
.qa-icon--a{ background: #fff; color: var(--brand); border: 2px solid var(--brand); } /* A → 白丸青枠 */

/* 矢印ボタン */
.chev{
  justify-self: end;
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);                /* ＞ */
  transition: transform .25s ease, border-color .25s ease;
}

/* 開いたときの矢印＆文字色 */
.faq__item[open] .chev{ transform: rotate(-135deg); border-color: var(--brand); } /* ∧ */
.faq__item[open] .faq__q{ color: var(--brand); }

/* ---------------------form----------------------- */
#form {
    width: 100%;
    padding: 6vw 0;
    background-image: linear-gradient(to right, #87d1ff 0%, #3551ff 100%);
}

#form h2 {
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: end;
    font-size: clamp(10px, 1.6vw, 28px);
    font-weight: 600;
    letter-spacing: .1vw;
    color: #fff;
    text-align: center;
}

.form__inner-box {
    display: flex;
    justify-content: end;
    align-items: end;
}

span.form__inner-emp {
    color: #ffff00;
}

.form__image-box {
    width: 28%;
    display: flex;
    justify-content: center;
    align-items: end;
    margin: 0 2vw;
}


.form__inner-join {
    padding-right: 0vw;
}

#form h2 img {
    width: 100%;
    height: auto;
    margin: 0 .5vw;
}

img.form__image {
    width: clamp(10px, 20%, 300px);
    margin: 4vw auto 2vw;
}

.form__block {
    width: clamp(200px, 55%, 1000px);
    background-color: #fff;
    margin: 4vw auto;
    padding: 4vw 4vw 2vw;
    border-radius: .4vw;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.45);
}

label {
  height: clamp(12px, 3vw, 40px);
  margin-top: 0vw;
  align-items: center;
}

span.required {
    font-size: clamp(6px, 1vw, 12px);
    font-weight: 500;
    letter-spacing: .1vw;
    color: #fff;
    background-color: #cd5538;
    padding: .1vw .6vw;
    margin-left: 1vw;
    border-radius: .2vw;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group {
    margin-top: 2vw;
}

.form-group label {
  display: block;
}

.form-group__title {
    font-size: clamp(6px, 1.3vw, 18px);
    font-weight: 500;
    color: #393939;
}

/* ラジオ並び */
.radio-group{
  display:flex; flex-wrap: wrap;
  gap: 0 18px;       /* 行内の横間隔 */
}

/* ラジオ1個の見た目 */
.radio { display:inline-flex; align-items:center; gap: 6px; cursor: pointer; }
.radio input[type="radio"]{
  /* 標準ラジオを使い、色だけブランド色に */
  width: 18px; height: 18px;
  accent-color: #1e55e5;                  /* 選択時の青 */
  vertical-align: middle; /* 念のため */
}
.radio input[type="radio"]:focus-visible {
  outline: 2px solid #1e55e5;
  outline-offset: 2px;
  border-radius: 50%;
  line-height: 1;  
}

.radio span {
    font-size: clamp(6px, 1vw, 14px);
    color:#333;
    margin-left: .4vw;
}

textarea {
  width: 100%;
  max-width: 1000px;
  height: auto;
  padding: 1em;
  font-size: 16px;
  line-height: 1.6;
  border: none;
  border-radius: 6px;
  background-color: #eaf1f7; 
  resize: vertical;
  box-sizing: border-box;
}

.privacy-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2vw 3vw;
  margin: 2vw auto;
  background: #fdfdfd;
  font-family: 'Noto Sans CJK JP', sans-serif;
}

.privacy-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding: 2vw;
  margin: 2vw auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: clamp(6px, 1vw, 18px);
  line-height: clamp(6px, 1.7vw, 32px);
  color: #333;
}

.privacy-scroll h3 {
  font-size: 1rem;
  color: #393939;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.privacy-scroll p {
  margin: 0 0 1em;
  color: #393939;
}

.privacy-scroll .policy-date {
  text-align: right;
  font-size: clamp(6px, 1.2vw, 18px);
  line-height: clamp(12px, 2vw, 30px);
  color: #777;
}

input[type="checkbox"] {
  accent-color: #cd5538;
}

.privacy-agree {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(6px, 1.2vw, 18px);
  font-weight: 500;
  color: #cd5538;
}

.form-submit {
  text-align: center;
}

.submit-image {
  width: 50%;
  height: auto;
  border: none;
  background: none;
  padding: 0;
  margin: 3vw auto;
  display: block;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.submit-image:hover {
  transform: translateY(8px);
}
/* -----------------------footer__contact---------------------- */
#footer__contact {
    width: 100%;
    margin: 7.5vw auto -2vw;
}

.f-contact__title {
  position: relative;
  top: -1.2vw;
  margin: 1vw auto;
  padding: .8vw .6vw;
  width: clamp(350px, 33%, 550px);
  color: #f3e800;
  font-size: clamp(8px, 1.1vw, 18px);
  font-weight: 900;
  letter-spacing: .1vw;
  text-align: center;
  background: linear-gradient(to right, #87d1ff 45%, #3551ff 100%);
}

.f-contact__title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 15px solid #87d1ff;
}

.f-contact__title p {
  margin: 0;
  padding: 0;
}

.f-contact__block {
    width: clamp(200px, 75%, 1300px);
    margin: 0 auto 2vw;
}

.f-contact__subtitle {
    display: flex;
    justify-content: center;
    align-items: end;
    width: clamp(400px, 55%, 700px);
    margin: auto;
    font-size: clamp(6px, 1.4vw, 26px);
    font-weight: 600;
    color: #3957d5;
}

.f-contact__subtitle img {
    width: 100%;
    height: auto;
    margin: .2vw;
}

.f-contact__subtitle p {
    padding-bottom: .3vw;
    font-size: clamp(6px, 1.4vw, 26px);
}

span.f-contact__subtitle-emp {
    font-size: 2vw;
    font-weight: 900;
    color: #cd5538;
}

p.f-contact__text {
    font-size: clamp(6px, 1vw, 18px);
    font-weight: 600;
    color: #393939;
    text-align: center;
    margin-top: .5vw;
}

/* -----------------------footer---------------------- */
footer {
    width: 100%;
    background-color: #3551ff;
    padding: 6vw 0 1.5vw;
}

.footer__block {
    width: 90%;
    margin: 0 auto;
}

.footer__block img {
    width: 20%;
    height: auto;
}

.footer_block-menu {
    display: flex;
    justify-content: space-between;
    margin: 2vw 0 .5vw;
    padding-bottom: 4vw;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.footer_block-company {
    font-size: clamp(6px, 1.2vw, 18px);
    font-weight: 600;
}

.footer_block-company img {
    width: 20%;
    height: auto;
    margin: 1vw 0;
}

.footer_block-list {
    display: flex;
}

ul.footer_list-menu {
    border-left: 2px solid #1b3cbe;
    list-style: none;
    padding-left: 1vw;
    margin: 0 1.5vw;
}

ul.footer_list-menu li {
    font-size: clamp(6px, 1.2vw, 18px);
    line-height: clamp(12px, 2.4vw, 36px);
    font-weight: 600;
}

ul.footer_list-menu li a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

ul.footer_list-menu li a:hover {
    color: #fff;
    text-decoration: none;
    opacity: .5;
}

.footer__copyright {
    display: flex;
    justify-content: space-between;
}

.footer__copyright-link {
    display: flex;
}

.footer__copyright-link a {
    font-size: clamp(6px, 1vw, 16px);
    color: #fff;
    text-decoration: none;
    margin: 0 1vw;
    transition: .3s;
}

.footer__copyright-link a:hover {
    opacity: .5;
}

.footer__copyright-text {
    font-size: clamp(6px, 1vw, 16px);
    color: #fff;
}

/* -----------------------none---------------------- */
@media (min-width: 500px) {
    .drawer__button,
    .drawer__nav,
    br.pc_none,
    .float_button {
        display: none;
    }
}

/* --------------------------------------------------------Mobile------------------------------------------------------- */
@media (max-width: 500px) {

#about,
#flow,
#form {
    scroll-margin-top: 10vw; 
}

#support,
#future,
#effect,
#faq {
    scroll-margin-top: 28vw;
}

.header__nav,
.header__title-button,
.mv__cta-list01,
.mv__cta-list02,
br.mobile_none {
    display: none;
}

.header__title {
    height: 15vw;
}

.header__title-logo {
    width: 80%;
    height: auto;
    padding: 1vw 1vw 1vw 3vw;
}

.header__title-logo a {
    width: 13%;
    margin-right: 3vw;
}

picture.header__title-logo-image {
    width: 100%;
    height: auto;

}

h1 {
    font-size: 3vw;
    align-items: center;
    color: #fff;
}

.drawer__button {
    position: relative;
    right: 3vw;
    width: 8vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000; 
}

.drawer__button > span {
    display: block;
    position: absolute;
    left: 50%;
    width: 7.5vw;
    height: 2.3px;
    background-color: #fff;
    transform: translateX(-50%);
}

.drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;
}

.drawer__button.active > span:nth-child(2) { 
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
    
}
/* =========================
   ドロワーメニュー全体
========================= */
.drawer__nav {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; の省略 */
  z-index: 900; /* headerより背面 */
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* 開いたとき */
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   内側パネル
========================= */
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  margin-left: auto;
  background-color: #4057d7;
  display: flex;
  flex-direction: column;
  padding: 18vw 4vw 4vw;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

/* 開いたときにスライドイン */
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}

/* =========================
   メニューリスト
========================= */
.drawer__nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.drawer__nav__item {
  width: 100%;
}

/* 通常リンク */
.drawer__nav__link {
  display: block;
  font-size: 4.3vw;
  line-height: 10vw;
  color: #fff;
  text-decoration: none;
  padding: 2.5vw 1vw;
  border-bottom: 1px solid #fff;
  transition: opacity 0.1s;
}

.drawer__nav__link:hover {
  opacity: 0.6;
}

/* =========================
   CTAリンク（画像ボタン）
========================= */
.drawer__nav__item--cta .drawer__nav__link {
  padding: 0;
  border-bottom: none;
}

.drawer__nav__item--cta img {
  position: relative;
  top: 6vw;
  display: block;
  width: 94%;
  margin: 0 auto;
  height: auto;
}

/* =========================
   スクロール抑止
========================= */
body.active {
  overflow: hidden;
  height: 100%;
}

/* -----------------------mv----------------------- */
#mv {
    width: 100%;
}
/* -----------------------worries----------------------- */
#worries {
    width: 94%;
    margin: 14vw auto 18vw;
}

#worries h2 {
    font-size: 4.5vw;
}

#worries h2 span {
    position: relative;
    top: 2vw;
    font-size: 9vw;
    line-height: 10vw;
}

.worries__iist {
    flex-direction: column;
    margin: 16vw auto 1vw;
}

picture.worries__iist-image {
    width: 90%;
    height: auto;
    margin: 4vw auto;
}

img.worries__image {
    width: 3%;
    margin: 0 auto;
}

p.worries__text {
    font-size: 7vw;
    line-height: 9vw;
    margin: 4vw auto;
}

span.worries__text-small {
    font-size: 5vw;
}

/* -----------------------about---------------------- */
#about {
    width: 100%;
    padding: 14vw 0 22vw;
    background: url(../img/pt_about_background_sp.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about__block {
    width: 94%;
    margin: 3vw auto;
}

img.about__block-image {
    width: 65%;
    margin: 0 auto 1vw;
}

h2.about__eyebrow {
    font-size: 5vw;
    letter-spacing: 1px;
    margin: .5vw auto 5vw;
}

.about__contents {
    width: 90%;
    font-size: 5.2vw;
    padding: 1.5vw 0;
    margin: 1vw auto;
}

#about h3 {
    font-size: 6vw;
    font-weight: 600;
    line-height: 7vw;
    letter-spacing: 1px;
    margin: 2.5vw auto 9vw;
}

picture.about__contents-image {
    width: 90%;
    margin: 1vw auto;
}

/* -----------------------support---------------------- */
#support {
    width: 94%;
    margin: 16vw auto 28vw;
}

picture.support__title-image {
    width: 94%;
    margin: 4vw auto;
}

#support h2 {
    font-size: 4.7vw;
    letter-spacing: 1px;
    margin: 1vw auto 9vw;
}

#support p {
    width: 90%;
    margin: 0 auto;
    font-size: 3.7vw;
    text-align: justify;
    line-height: 7vw;
}

picture.support__main-image {
    width: 90%;
    margin: 9vw auto;
}

/* -----------------------contact---------------------- */
#contact {
    padding-bottom: 10vw;
}

.contact__title {
  top: -6vw;
  margin: 1vw auto;
  padding: 1.6vw .6vw;
  width: 80%;
  font-size: 4.5vw;
}

.contact__block {
    width: 94%;
    margin: 4vw auto 8vw;
}

.contact__subtitle {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    font-size: 3vw;
}

.contact__subtitle-item {
    width: 75%;
}

.contact__subtitle img {
    width: 96%;
    height: auto;
    margin: .2vw auto;
}

.contact__subtitle-join {
    padding: 0 0 0 1vw;
    font-size: 5.5vw;
}

.contact__subtitle p {
    padding: 2vw 0;
    font-size: 6vw;
}

span.contact__subtitle-emp {
    font-size: 8vw;
}

p.contact__text {
    font-size: 4vw;
    font-weight: 500;
    margin-top: 1vw;
}

.contact__cta {
    flex-direction: column;
    width: 90%;
    margin: 8vw auto 0;
}

.contact__cta-button {
    margin: 0 .2vw;
}

.contact__cta-button img {
    width: 100%;
    height: auto;
}

img.contact__block-image {
    display: none;
}

/* -----------------------future---------------------- */
#future {
    width: 94%;
    margin: 20vw auto;
}

#future h2 {
    font-size: 6vw;
    line-height: 7vw;
    letter-spacing: .1vw;
}

#future h2 span {
    font-size: 9vw;
    line-height: 9vw;
    vertical-align: bottom;
}

p.future__subtitle {
    font-size: 4vw;
    padding-top: 2vw;
}

p.future__subtitle-text {
    font-size: 4vw;
    letter-spacing: .4vw;
    margin: 6vw auto;
}

.future__block {
    width: 94%;
    padding-bottom: 10vw;
    margin: 3vw auto;
    flex-direction: column-reverse;
}

.future__block-contents {
    width: 100%;
}

.future__block-inner {
    display: flex;
    align-items: center;
}

.future__block-number {
    width: 16%;
    font-size: 6vw;
    padding: .6vw 3.5vw .6vw 0;
}

.future__block-contents h3 {
    font-size: 6.5vw;
    letter-spacing: 2px;
    padding-left: 2vw;
}

.future__block-contents h4 {
    font-size: 4.8vw;
    margin-top: 4vw;
}

p.future__block-subtitle {
    font-size: 3.8vw;
    line-height: 6.6vw;
    margin: 4vw 0;
}

p.future__block-text {
    font-size: 3.8vw;
    border-radius: 3vw;
    padding: 4vw;
}

img.future__block-image {
    width: 70%;
    height: auto;
    margin: 8vw auto;
}

/* -----------------------effect---------------------- */
#effect {
    width: 94%;
    margin: 16vw auto 2vw;
}

#effect h2 {
    font-size: 5vw;
}

p.effect__subtext {
    width: 90%;
    font-size: 3.8vw;
    text-align: justify;
    line-height: 6vw;
    margin: 8vw auto 5vw;
}

picture.effect__image {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

p.effect_attention {
    font-size: 3vw;
    margin-top: 5vw;
    color: #7c7c7c;
}

/* -----------------------case---------------------- */
#case {
    height: 340vw;
    max-height: 5000px;
    margin: 0 auto;
}

#case h2 {
    top: 32vw;
    font-size: 7vw;
    letter-spacing: 2px;
}

p.case__subtitle {
    top: 34vw;
    font-size: 4vw;
    letter-spacing: 3px;
    color: #919191;
}

.case__block {
    top: 48vw;
    width: 90%;
    margin: 0 auto;
    padding: 6vw 6vw 2vw;
    border-radius: 3vw;
}

.case__block-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1vw;
    padding-bottom: 2vw;
}

picture.case__block-image {
    width: 100%;
    height: auto;
    margin: auto;
}

.case__block-title {
    width: 100%;
    padding-left: 0;
    margin: 4vw 0 0;
}

.case__block-tag {
    width: 30%;
    padding: .6vw 0;
    font-size: 3.3vw;
}

.case__block-title h3 {
    padding: 1.5vw 0;
    font-size: 5vw;
    line-height: 7vw;
}

p.case__block-company {
    padding-top: 1.5vw;
    font-size: 4vw;
}

/* カード全体 */
.problem-card{
  width: 100%;
  margin: 4vw auto;
  flex-direction: column;
}

/* 左のグレー帯 */
.problem-card__head{
  width: 100%;
  padding: 2vw 1.5vw;
  justify-content: center;
  border-radius: 2vw 2vw 0 0;
}

/* 右の本文 */
.problem-card__body{
  width: 100%;
  padding: 2.5vw;
  border-radius: 0 0 2vw 2vw;
}

/* タイポ調整 */
.problem-card__label{
  font-size: 4vw;
  margin: 0 3vw 0 0;
  padding-top: .3vw;
}

.problem-card__title{
  font-size: 4.5vw;
  letter-spacing: 1px;
  margin:0 1vw;
}

/* アイコン（画像） */
.problem-card__icon{
  width: 8%;
  height:auto;
}

.problem-card__inner {
    display: flex;
}

/* リスト */
.problem-card__list{
  margin:0;
  padding-left: 1.1em;
  line-height: 6.5vw;
}

.problem-card__list li{
  font-size: 3.8vw;
  margin-bottom: 2vw;
}

.problem-card__head02{
  width: 100%;
  padding: 2vw 1.5vw;
  justify-content: center;
  border-radius: 2vw 2vw 0 0;
}

/* 右の本文 */
.problem-card__body02{
  width: 100%;
  padding: 2.5vw;
  border-radius: 0 0 2vw 2vw;
}

.case__cta {
    width: 100%;
    margin: 6vw auto;
}

.case__cta img {
    width: 96%;
    height: auto;
    margin: 0 auto;
}

/* -----------------------price---------------------- */
#price {
    width: 94%;
    margin: 20vw auto;
}

#price h2 {
    font-size: 7vw;
}

p.price__subtitle {
    font-size: 3.6vw;
    margin: 1.5vw 0 8vw;
}

.price__menu {
    flex-direction: column;
}

picture.price__menu-list {
    width: 95%;
    height: auto;
    margin: 2vw;
    margin-left: -1.82%;
}

picture.price__menu-list02 {
    width: 92%;
    height: auto;
    margin: 2vw;
}

picture.price__menu-custom {
    width: 92%;
}

picture.price__menu-example {
    width: 92%;
    margin: 14vw auto;
}

/* -----------------------flow---------------------- */
#flow {
    padding: 20vw 0 16vw;
}

#flow h2 {
    font-size: 7vw;
}

p.flow__subtitle {
    font-size: 3.6vw;
    margin: 1.5vw 0 8vw;
}

picture.flow__image {
    width: 85%;
    margin: 8vw auto;
}

/* -----------------------faq---------------------- */
#faq {
    width: 94%;
    margin: 20vw auto ;
}

#faq h2 {
    font-size: 7vw;
}

p.faq__subtitle {
    font-size: 3.6vw;
    margin: 1.5vw 0 10vw;
}

:root{
  --border:#7c7c7c;
}

.faq__item{
  width: 90%;
  margin: 0 auto;
  border-top: 1.5px solid var(--border);
}

.faq__item:last-of-type {
    border-bottom: 1.5px solid var(--border);
}

.faq__q{
  list-style: none;
  display: grid;
  grid-template-columns: 36px 1fr 24px; /* Qアイコン / テキスト / 矢印 */
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 3.8vw;
  color: var(--text);
  padding: 5vw 3vw;
}

/* 回答部分 */
.faq__a {
  padding: 1.5vw;
  font-size: 3.6vw;
  gap: 15px;
}

.faq__a p {
    font-size: 3.8vw;
}

/* 開いたときの矢印＆文字色 */
.faq__item[open] .faq__q{ padding: 5vw 3vw; }

.faq__q{ grid-template-columns: 28px 1fr 20px; gap: 15px; }
.qa-icon{ font-size: 16px; }
.faq__a{ grid-template-columns: 28px 1fr; padding: 12px; }

/* ---------------------form----------------------- */
#form {
    padding: 16vw 0;
}

#form h2 {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    font-size: 5.5vw;
    letter-spacing: 2px;
}

.form__image-box {
    width: 100%;
    margin: 0 0 4vw;
}

.form__inner-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 2vw;
}

.form__inner-join {
    padding-left: .6vw;
    padding-right: 0;
}

.form__inner-last {
    margin-top: -2.4vw;
}

#form h2 img {
    width: 65%;
    margin: 0 .5vw;
}

img.form__image {
    width: 40%;
    margin: 8vw auto;
}

.form__block {
    width: 88%;
    margin: 8vw auto;
    padding: 8vw 6vw 4vw;
    border-radius: 3vw;
}

label {
  height: auto;
}

span.required {
    font-size: 3vw;
    padding: .4vw 1.2vw;
    margin-left: 2vw;
    border-radius: 1vw;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  font-size: 4vw;
}

.form-group {
    margin: 2vw 0 4vw;
}

.form-group__title {
    font-size: 4vw;
    letter-spacing: 3px;
    margin-bottom: 1.5vw;
}

.radio-group {
    gap: 0 14px;
    row-gap: 4px;
}

.radio span {
    font-size: 3.3vw;
    margin-left: 1vw;
}

/* ラジオ1個の見た目 */
.radio { display:inline-flex; align-items:center; gap: 6px; cursor: pointer; }

.radio input[type="radio"]{
  /* 標準ラジオを使い、色だけブランド色に */
  width: 18px; height: 18px;
  accent-color: #1e55e5;                  /* 選択時の青 */
  vertical-align: middle; /* 念のため */
}

.radio input[type="radio"]:focus-visible {
  outline: 2px solid #1e55e5;
  outline-offset: 2px;
  border-radius: 50%;
  line-height: 1;  
}


textarea {
  height: 140px;
}

.privacy-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2vw 3vw;
  margin: 2vw auto;
  background: #fdfdfd;
  font-family: 'Noto Sans CJK JP', sans-serif;
}

.privacy-scroll {
  font-size: 3.3vw;
  line-height: 5.8vw;
  margin: 4vw auto;
}

.privacy-scroll h3 {
  font-size: 4vw;
  margin-bottom: 4vw;
}

.privacy-scroll p {
  margin: 0 0 1em;
  text-align: justify;
}

.privacy-agree {
  font-size: 4vw;
}

.form-submit {
  text-align: center;
}

.submit-image {
  width: 100%;
  margin: 8vw auto;
}
/* -------------------------float_button----------------------- */
.float_button {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.float_button-cta {
    width: 50%;
}

.float_button.show {
    opacity: 1;
    pointer-events: auto;
}


/* -----------------------footer__contact---------------------- */
#footer__contact {
    width: 100%;
    margin: 28vw auto 0;
    padding-bottom: 10vw;
}

.f-contact__title {
  top: -6vw;
  margin: 1vw auto;
  padding: 1.6vw .6vw;
  width: 80%;
  font-size: 4.5vw;
  background: #2037a2;
}

.f-contact__title:before {
    border-top: 15px solid #2037a2;
}

.f-contact__block {
    width: 94%;
    margin: 4vw auto 8vw;
}

.f-contact__subtitle {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    font-size: 3vw;
}

.f-contact__subtitle img {
    width: 96%;
    height: auto;
    margin: .2vw auto;
}

.f-contact__subtitle p {
    padding: 2vw 0;
    font-size: 5.5vw;
}

span.f-contact__subtitle-emp {
     font-size: 8vw;
}

p.f-contact__text {
    font-size: 4vw;
    font-weight: 500;
    margin-top: 1vw;
}

/* -----------------------footer---------------------- */
footer {
    width: 100%;
    padding: 20vw 0 26vw;
}

.footer__block {
    width: 90%;
}

.footer__block img {
    width: 70%;
    height: auto;
    margin: 0 auto;
}

.footer_block-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 2vw 0 .5vw;
    padding-bottom: 4vw;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.footer_block-company {
    font-size: 4vw;
    line-height: 6.5vw;
    font-weight: 500;
    margin: 10vw 0 0;
    padding-left: 1vw;
}

.footer_block-company img {
    position: relative;
    top: 87vw;
    left: 75%;
    width: 20%;
    height: auto;
    margin: 1vw 0;
}

.footer_block-list {
    width: 100%;
    display: flex;
    margin: 4vw auto 36vw;
}

ul.footer_list-menu {
    padding-left: 2vw;
    margin: 0 5vw 0 0;
}

ul.footer_list-menu li {
    font-size: 3.5vw;
    font-weight: 500;
    line-height: 9vw;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__copyright-link {
    display: flex;
    margin-top: -8vw;
}

.footer__copyright-link a {    
    font-size: 3.5vw;
    margin: 0 3vw;
}

.footer__copyright-text {
    margin: 3.5vw 0;
    font-size: 3.6vw;
    text-align: center;
}
}