* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body { font-family: "Noto Sans JP";; line-height: 1.6; background: white; color: #2B3034; overflow-x: hidden; -webkit-overflow-scrolling: auto; }
.disp-sp { display: none !important; }
.disp-pc { display: block !important; }
section {
/*            border-bottom: 1px solid var(--Basic-lightergray, #D9DBE0); */
}
header {
    border-bottom: 1px solid var(--Basic-lightergray, #D9DBE0);
}
.header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 24px;
    text-align: center;
    z-index: 1000;
    height: 84px;
    border-bottom: 1px solid var(--Basic-lightergray, #D9DBE0);
    background-color: #fff;
}
.header .login {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Blue-deep-blue, #004FC5);
    font-weight: 700;
    height: 48px;
    width: 140px;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid var(--Basic-lightgray, #C9CCD2);
    background: var(--Basic-white, #FFF);
    margin-right: 12px;
    cursor: pointer;
}
.header .login:hover {
    background: #F4F5F6;
}
.header .login:active {
    background: #DEECFF;
}
.header .for-company {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 48px;
    width: 140px;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 4px;
}
.header .for-company:hover {
    background: #F4F5F6;
}
.header .for-company:active {
    background: #E7E8EB;
}
.header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
.header nav ul li {
    margin: 0 15px;
}
.header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.header .head-button {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
}
.header .eye-catch {
    width: 79px;
}
.slide {
  position: absolute !important;
  object-fit: cover;
  opacity: 0;
  animation: slideShow 18s infinite; /* 画像3枚 × 6秒 = 18秒周期 */
}

/* 画像ごとの開始時間をずらす */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }

@keyframes slideShow {
  0% { opacity: 0; }
  5% { opacity: 1; }  /* ここでフェードイン */
  33% { opacity: 1; } /* 表示を維持 */
  38% { opacity: 0; } /* ここでフェードアウト */
  100% { opacity: 0; }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px;
    padding-bottom: initial;
    padding-top: 79px;
    background: white;
    height: 558px;
}
.eye-catch2 {
    position: sticky;
/*    left: 6%; */
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1126px;
    margin: 0 auto;
/*
    width: 80%;
    max-width: 1200px;
*/
}
.hero-text {
    position: sticky;
/*    position: fixed; */
    flex: 1;
    text-align: right;
    margin-right: 13em;
/*    padding-left: 56px; */
    padding-left: 59rem;
}

.hero-text h1 {
    font-size: 38px;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.hero-text span {
    color: #1D5AF8;
}
.hero-text .charm {
    background: rgba(255, 255, 255, 0.68);
    text-wrap-mode: nowrap;
}
.hero-text .explanation {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans JP";
    padding: 12px 36px;
    padding-right: initial;
    margin-bottom: 40px;
}
.hero-text .register-btn {
    animation: sharp-glow 2s ease-in-out 5;
}
.hero img {
/*            max-width: 50%; */
    height: 480px;
}
.register-btn {
    width: 316px;
    padding: 12px 40px;
    background: var(--Gradient-blue-liner, linear-gradient(90deg, #1D5AF8 -0.24%, #5033FF 99.76%));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover Style */
.register-btn:hover {
    animation: sharp-glow 0s ease-in-out 0 !important;
    background-color: #3830CB;
    border-color: #c084fc;
    box-shadow: 0 0 10px 4px rgba(192, 132, 252, 0.5);
    color: #ffffff;
    text-shadow: 0 0 3px rgba(192, 132, 252, 0.3);
}

/* Glow Animation */
@keyframes sharp-glow {
    0% {
        border-color: rgba(192, 132, 252, 0.3);
        box-shadow: 0 0 0 rgba(192, 132, 252, 0);
        color: #ffffff;
        text-shadow: none;
    }
    50% {
        border-color: #c084fc;
        box-shadow: 0 0 10px 4px rgba(192, 132, 252, 0.9);
        color: #ffffff;
        text-shadow: 0 0 3px rgba(192, 132, 252, 0.4); 
    }
    100% {
        border-color: rgba(192, 132, 252, 0.3);
        box-shadow: 0 0 0 rgba(192, 132, 252, 0);
        color: #ffffff;
        text-shadow: none;
    }
}

.register-btn.head {
    width: 140px;
    height: 48px;
    margin-right: 12px;
    padding: 12px 0;
}
.register-btn .free-label {
    height: 32px;
    margin-right: 8px;
}

.login-btn, .signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background: var(--Gradient-blue-liner, linear-gradient(90deg, #1D5AF8 -0.24%, #5033FF 99.76%));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 340px;
    height: 40px;
    border: none;
}
.login-btn {
    background: #06F;
}
.login-btn:hover {
    background: #005BE2;
}
.login-btn:active {
    background: #004FC5;
}

.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background: var(--Green-LINE-adjusted, #02B04B);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 340px;
    height: 40px;
    border: none;
}
.line-btn:hover {
    background: #008236;
}
.line-btn:active {
    background: #006A37;
}
.signup-btn, .signup-disabled-btn {
    margin: 0 auto;
}
.signup-disabled-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background: #F4F5F6;
    color: #ABAFB8;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    width: 340px;
    height: 40px;
    border: none;
}
.register-btn:hover, .signup-btn:hover {
    background: var(--Gradient-blue-liner, linear-gradient(90deg, #1D5AF8 -0.24%, #5033FF 99.76%));
}
.button-area {
    margin-top: 80px;
    text-align: center;
}
#recommends {
    padding: 0;
    padding-top: 8px;
    border-bottom: 1px solid var(--Basic-lightergray, #D9DBE0);
}
#recommends .wrapper {
    max-width: 1269px;
}
#recommends img {
    max-width: 154px;
}
#problems {
    padding-bottom: 40px;
}
#problems img {
    width: 16%;
}
#problems .problem {
    justify-content: space-around;
    max-width: 1269px;
    margin: 0 auto;
    margin-top: 56px;
    margin-bottom: 56px;
}
#problems p {
    font-size: 32px;
    font-weight: 700;
}
#problems p span {
    color: #1D5AF8;
}
#problems .explanation {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-right: 96px;
}
#features {
    background: #F4F5F6;
}
#features p {
    font-size: 32px;
    font-weight: 700;
}
#features .box {
    background: white;
    width: 394px;
    height: 384px;
    padding: 24px 20px;
    border-radius: 8px;
    margin-top: 16px;
}
#features .box:not(:last-child) {
    margin-right: 24px;
}
#features .box .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 12px;
}
#features .box .explanation {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #363B3F;
}
#features .feature {
    margin-top: 24px;
    padding-bottom: 56px;
    flex-wrap: wrap;
}
#companies {
    background: #FAFAFB;
}
#companies .logo {
    max-width: 154px;
}
#companies .login {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 4px;
    color: var(--Blue-deep-blue, #004FC5);
    margin-bottom: 12px !important;
    border: 1px solid var(--Basic-lightgray, #C9CCD2);
}
#companies .login:hover {
    background: #F4F5F6;
}
#companies .login:active {
    background: #DEECFF;
}

#companies .layer-1, #companies .layer-2 {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 100;
    border-radius: 10px;
}
#companies .layer-1 .layer-msg p, #companies .layer-2 .layer-msg p {
    color: #FFF;
    font-size: 14px !important;
    font-weight: 500 !important;
}
#companies .layer-2 .layer-btn, #companies .layer-1 .layer-btn {
    margin: 0 auto;
    width: 140px;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
}
#companies .layer-1 .layer-button-area, #companies .layer-2 .layer-button-area {
    margin-top: 20px;
}
#companies .wrapper {
    max-width: 1184px;
    margin: 0 auto;
}
#companies p {
    font-size: 32px;
    font-weight: 700;
}
#companies .box {
    background: white;
    width: 382px;
    max-width: 382px;
    height: 300px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--Basic-lightgray, #E7E8EB);
}
#companies .box:not(:last-child) {
    margin-right: 24px;
}
#companies .box .title {
    font-size: 16px;
    font-weight: 700;
    max-width: 230px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
#companies .box .explanation {
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #363B3F;
}
#companies .box .explanation span {
    display: block;
}
#companies .box .evaluation {
  height: 15px;
  margin-top: 8px;
  margin-bottom: 10px;
}
#companies .box .tag {
  font-size: 12px;
  font-weight: 500;
}
#companies .box .sel-term {
    background: #EFF6FF;
    color: #0066FF;
    padding: 2px 4px;
    border-radius: 4px;
    margin-right: 8px;
}
#companies .box .sel-phase {
    background: #F4F5F6;
    padding: 2px 4px;
    border-radius: 4px;
}
#companies .box .unoffincial-offer {
    color: #0066FF;
    margin-left:auto;
}
#companies .box .category {
    font-size: 12px;
    height: 20px;
    margin-left: -4px;
    padding-left: 4px;
    padding-right: 5px;
    border-radius: 0 4px 4px 0;
    color: #004fc5;
    background-color: #deecff;
    margin-top: 0.5%;
}
#companies .tag-act {
    margin-top: 5px;
    margin-bottom: 5px;
/*    display: ruby; */
    display: flex;
    flex-wrap: wrap;
}
#companies .attention {
  margin-top: 64px;
}
#companies .attention .box:not(:last-child) {
  margin-right: 16px;
}
#companies .attention .box {
  background: white;
  width: 224px;
  height: 224px;
}
#companies .attention .box .title {
  margin-bottom: 12px;
}
#companies .swiper-container-2 .title {
    max-width: 250px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
#advisors {
    background: #F4F5F6;
}
#advisors p {
    font-size: 32px;
    font-weight: 700;
}
#advisors .box {
    display: flex;
    background: white;
    width: 604px;
    height: 193px;
    padding: 24px;
    border-radius: 8px;
}
#advisors .box:not(:last-child) {
    margin-right: 24px;
}
#advisors .box .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin-bottom: 12px;
}
#advisors .box .explanation {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #363B3F;
}
#advisors .box .advisor-explanation {
    margin-left: 24px;
}
#advisors .box img {
    width: 200px;
}
#advisors .advisor {
    margin-top: 40px;
}
#advisors .explanation-area {
    padding-bottom: 56px;
}
#flows {
    background: #FFFFFF;
}
#flows p {
    font-size: 32px;
    font-weight: 700;
}
#flows .box {
    background: white;
    width: 308px;
    height: 369px;
    padding: 24px 20px;
    border-radius: 8px;
}
#flows .box img {
    width: 284px;
}
#flows .box .title {
    display: flex;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 12px;
}
#flows .box .title span {
    display: flex;
    border-radius: 4px;
    background: var(--Blue-water, #EFF6FF);
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--Blue-brand-blue, #06F);
    margin-right: 8px;
    font-size: 18px;
}
#flows .box .explanation {
    width: 270px;
    height: 120px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #363B3F;
}
#flows .flow {
    margin-top: 40px;
    flex-wrap: wrap;
}
#voices {
    background: #F4F5F6;
}
#voices .wrapper {
/*    max-width: 1184px; */
    margin: 0 auto;
}
#voices p {
    font-size: 32px;
    font-weight: 700;
}
#voices .box {
    background: white;
    width: 394px;
    height: 386px;
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px
}
#voices .box:not(:last-child) {
    margin-right: 24px;
}
#voices .box img {
    border-radius: 50%;
    height: 109px;
}
#voices .box .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin-bottom: 12px;
}
#voices .box .explanation {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #363B3F;
}
#voices .box .profile {
    display: flex;
}
#voices .box .profile .photo {
    margin-right: 16px;
}
#voices .box .profile .elt {
    color:#FFFFFF;
    min-width: 58px;
    height: 32px;
    padding: 4px 8px;
    border-radius: 4px;
    background: var(--Basic-black-for-text, #363B3F);
    margin-right: 8px;
}
#voices .box .profile .ylt {
    text-align: left;
}
#voices .box .profile .grad {
    margin-bottom: 8px;
}
#voices .box .explanation-block {
    margin-top: 20px;
}
#voices .voice {
    margin-top: 40px;
    padding-bottom: 56px;
    flex-wrap: wrap;
}
.beta-symbol {
    border-radius: 4px;
    background: var(--Blue-water, #EFF6FF);
    color: var(--Blue-brand-blue, #06F);
    font-size: 14px;
    font-weight: 500;
    padding: 2px 4px;
}
.ml-8 {
    margin-left: 8px;
}

.container { width: 100vw;/* max-width: 1100px; margin: auto; */text-align: center; }
.section { padding: 56px 16px; }
.swiper-wrapper {
/*    overflow: hidden; */
}
.swiper-container {
    width: 100%;
    padding: 20px 0;
    position: relative;
    margin: 0 auto; /* 中央揃え */
}

.swiper-slide {
    background: #FAFAFB;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 10px;
}
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.swiper-button-next {
    background-image: url('/img/top/renewal/next.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    right: -30px;
}
.swiper-button-prev {
    background-image: url('/img/top/renewal/prev.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    left: -30px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none; /* デフォルトの矢印を非表示にする */
}
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}
/* モーダルのオーバーレイ */
.modal-overlay {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景をグレーにする */
    z-index: 1000; /* 他の要素より前面に表示 */
}

.modal-overlay-priority {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景をグレーにする */
    z-index: 1010; /* 他の要素より前面に表示 */
}
.modal-overlay-priority .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

/* モーダルのコンテンツ */
.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
/*            padding: 20px; */
    border-radius: 8px;
    z-index: 1001; /* オーバーレイより前面に表示 */
    width: 560px;
/*            height: 512px; */
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    font-size: 18px;
    font-weight: 700;
    padding: 24px;
    border-bottom: 1px solid var(--Basic-platinum, #E7E8EB);
}
.modal-footer {
    border-top: 1px solid var(--Basic-lightgray, #C9CCD2);
}
.modal-body {
    display: flex;
    justify-content: center;
    padding: 24px 24px 40px 24px;
}
.signup-body {
    height: 512px;
    overflow-y: auto;
}
.signup-content {
    height: 640px;
}
/* 閉じるボタン */
.close-button {
    position: absolute;
    right: 21px;
    cursor: pointer;
}
.input-title {
    font-size: 12px;
    color: #363B3F;
    line-height: 28px;
}
.input-area, .input-area-middle, .input-area-long {
    height: 40px;
    border: 1px solid var(--Basic-lightgray, #C9CCD2);
    border-radius: 4px;
    padding: 0 12px;
}
.input-area {
    width: 340px;
}
.input-area-middle {
    width: 240px;
}
.input-area-long {
    width: 488px;
}
.input-error {
    color: var(--Red-vivid-red, #FF2156);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
select {
    cursor: pointer;
}
.select-area {
    width: 240px;
    height: 40px;
    border: 1px solid var(--Basic-lightgray, #C9CCD2);
    border-radius: 4px;
    padding: 0 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('/img/top/renewal/down.png') no-repeat right 10px center;
    background-size: 16px 16px;
    padding-right: 30px;
}
.notice {
    color: #667085;
    font-size: 12px;
    margin-top: 8px;
}
.at-notice {
    color: #7E828A;
    font-size: 12px;
    margin-top: 8px;
}
.require {
    color: #FF2156;
    margin-left: 4px;
    font-size: 10px;
}
.basic-login {
    margin-top: 32px;
    text-align: center;
}
.basic-signup {
    margin-top: 12px;
    text-align: center;
}
.forget-password {
    font-size: 12px;
    color: var(--Blue-brand-blue, #06F);
    margin: 12px 0;
    display: block;
}
.no-password {
    font-size: 12px;
    color: var(--Basic-gray, #7E828A);
}
.go-register {
    font-size: 12px; 
    color: var(--Blue-brand-blue, #06F);
}
.agree-check {
    font-size: 14px;
}
.agree-check-link, .login-link {
    color: var(--Blue-brand-blue, #06F);
}
.login-link {
    font-size: 12px;
}
.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-wrapper input {
    padding-right: 40px;
}
.toggle-button {
    position: absolute;
    top: 22px;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
img.eye {
    width: 20px;
    height: 20px;
}
select {
    color: black;
}
.border {
    width: 180px;
    height: 1px;
    background: #C9CCD2;
    margin: 32px auto;
}
.footer {
    width: 100vw;
}
.flex {
    display: flex;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.flex-start {
    justify-content: flex-start;
}
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.block {
    display: block;
}
.ml-12 {
    margin-left: 12px;
}
.ml-50 {
    margin-left: 50px;
}
.mt-3 {
    margin-top: 3px;
}
.mt-20 {
    margin-top: 20px;
}
.mr-4 {
    margin-right: 4px;
}
.mr-8 {
    margin-right: 8px;
}
.pb-20 {
    padding-bottom: 20px;
}
.m-0-auto {
    margin: 0 auto;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.bold {
    font-weight: 700 !important;
    font-size: 14px !important;
}
.w-screen {
/*    width: 1309px !important; */
}


/* レスポンシブデザイン（タブレット） */
@media screen and (799px < width <= 1024px) {
html { overflow-x: hidden; }
    body {
        width: 100vw;
    }
    .hero {
        width: 100vw;
    }
/*
    .hero-text {
        margin-right: -24em;
        padding-left: initial;
    }
*/
    .hero-content {
        max-width: 889px;
    }
    .hero-text {
        position: sticky;
        /* position: fixed; */
        flex: 1;
        text-align: right;
        margin-right: 13em;
        padding-left: initial;
        padding-left: 39rem;
    }
    #companies .wrapper {
        width: 90%;
    }
    #advisors .advisor {
        display: grid;
    }
    #advisors .advisor:first-child {
        margin-top: 16px;
    }
    #advisors .advisor:not(:first-child) {
        margin-top: initial;
    }
    #advisors .box:not(:last-child) {
        margin-right: initial !important;
    }
    #advisors .box {
        margin-top: 16px;
    }
    #flows .flow {
/*        display: grid; */
    }
    #voices .voice {
        display: inline-block;
    }
    #companies .swiper-container-2 .swiper-slide {
        width: 213px !important;
    }
    #voices .box {
        margin: 0 auto;
        margin-top: 20px;
    }
    #voices .box:not(:last-child) {
        margin-right: initial !important;
    }
    .swiper-button-prev, .swiper-button-next, .swiper-pagination {
        display: none !important;
    }
}

/* レスポンシブデザイン（スマホ） */
@media screen and (width <= 799px) {
    body {
max-width: 100vw;
    }
    .disp-sp {
        display: block !important;
    }
    .disp-pc {
        display: none !important;
    }
    .register-btn.head {
        height: 40px;
        width: 88px;
    }
    .eye-catch2 {
        position: static;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        position: static;
        text-align: center;
        margin-right: 1em;
        margin-left: auto;
        margin-top: -100px;
        margin-bottom: 20px;
        padding-left: 0;
    }
    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 10px;
        line-height: 46px;
    }
    .hero-text .charm {
        text-align: right;
    }
    .hero-text .explanation {
        font-size: 16px;
    }
    .hero-text .register-btn {
        float: right;
        margin-top: -20px;
    }
    .hero img {
        height: initial;
    }
    .header {
        justify-content: space-between;
        padding: 12px 16px;
        height: 64px;
    }
    .header nav ul {
        flex-direction: column;
    }
    .header nav ul li {
        margin: 10px 0;
    }
    .header .eye-catch {
        width: 52px;
    }
    .header .login {
        height: 40px;
        width: 88px;
        padding: 0;
        margin-right: 0;
    }
    .header .for-company {
        display: none !important;
    }
    .hero {
        display: block;
        width: 100vw;
        padding: initial !important;
        margin-top: 63px;
        height: initial;
    }
    .register-btn {
        width: 247px;
        font-size: 14px;
        padding: 12px;
    }
    .register-btn .free-label {
        height: 30px;
        width: 44px;
        margin-right: 8px;
    }

    #problems p {
        font-size: 20px;
    }
    #problems p span {
        font-size: 20px;
    }
    #problems .problem {
        display: block;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    /* 3つ目以降のimgタグにマージン設定 */
    #problems .problem img:nth-child(n+3) {
        margin-top: 32px;
    }
    




    #problems .question {
        margin-left: 0;
        text-align: center;
    }
    #problems p {
        font-size: 20px;
        text-align: left;
        margin-left: 10%;
    }
    #problems img {
        width: 164px;
    }
    #problems .explanation {
        font-size: 16px;
        margin-right: 0;
        margin-left: 10%;
        text-align: left;
    }
    #features p {
        font-size: 20px;
    }
    #features .feature {
        display: block;
    }
    #features .box {
        width: 90%;
        height: initial;
        margin: 0 auto;
        margin-bottom: 16px;
        margin-right: auto !important;
        padding: 24px 16px;
    }
    #features .box .title {
        font-size: 16px;
    }
    #companies {
        background: #FFF;
    }
    #companies .box {
        width: 312px;
        height: 320px;
    }
    #companies .attention .box {
        width: 312px;
        min-height: 200px;
    }
    #companies p {
        font-size: 20px;
    }
    #companies .head-title {
        margin-left: 5%;
    }
    #companies .wrapper {
        width: initial;
    }
    #advisors p {
        font-size: 20px;
    }
    #advisors .head-title {
        margin-bottom: 40px;
    }
    #advisors .advisor {
        display: block;
        margin-top: 0;
    }
    #advisors .box {
        display: block;
        width: 90%;
        height: initial;
        margin: 0 auto;
        margin-bottom: 16px;
        margin-right: auto !important;
        padding: 24px 20px;
    }
    #advisors .box .title {
        font-size: 16px;
/*
        font-weight: 500;
        line-height: 30px;
        text-align: left;
*/
        margin-bottom: 8px;
    }
    #advisors .box .advisor-explanation {
        margin-left: 0;
        margin-top: 24px;
    }
    #flows p {
        font-size: 20px;
    }
    #flows .flow {
        display: block;
        margin-top: 0;
    }
    #flows .box {
        width: 308px;
        height: initial;
        padding: 20px 12px;
        margin: 0 auto;
    }
    #flows .box .title {
        font-size: 16px;
    }
    #flows .box .title span {
        font-size: 16px;
    }
    #voices p {
        font-size: 20px;
    }
    #voices .voice {
        display: block;
    }
    #voices .voice .profile-data {
/*        max-width: 200px; */
    }
    #voices .box {
        width: 90%;
        height: initial;
        margin: 0 auto !important;
        margin-bottom: 16px !important;
        padding: 24px;
    }
    #voices .box .title {
        margin-bottom: 8px;
    }
    #voices .box .explanation-block .title {
        font-size: 16px !important;
    }
    #voices .box .explanation-block .explanation {
        font-size: 16px !important;
        line-height: 24px;
    }
    #voices .box img {
        min-width: 80px;
        height: 80px;
    }
    #voices .box .profile .photo {
        display: flex;
        align-items: center;
    }
    #voices .box .profile .ylt {
        width: 154px;
    }
    .button-area {
        margin-top: 60px;
    }
    .register-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 46px;
    }
    .beta-explanation {
        margin-left: 5%;
        border-radius: 6px;
        background: var(--Blue-water, #EFF6FF);
        color: #004FC5;
        font-size: 12px !important;
        font-weight: 500;
        padding: 12px;
        width: max-content;
    }

    .section { padding: 40px 0; }
    
    .swiper-wrapper {
        padding-left: 20px;
    }
    .swiper-slide {
        background: #FFF;
    }

    /* モーダルのコンテンツ */
    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        border-radius: 8px;
        z-index: 1001; /* オーバーレイより前面に表示 */
        width: 90%;
    }
    .modal-content .drs-area {
        width: 100%;
    }
    .modal-content .no-flex {
        display: block;
    }
    .modal-content input:not([type="checkbox"]) {
        width: 100%;
    }
    .modal-content .ml-none {
        margin-left: 0;
    }
    .modal-content .sp-mt-16 {
        margin-top: 16px;
    }
    .modal-content .sp-pb-40 {
        padding-bottom: 40px;
    }
    .login-btn, .signup-btn, .line-btn {
        width: 100%;
    }
    .signup-disabled-btn {
        width: 90%;
    }
    .basic-signup {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .full {
        width: 100%;
    }
    /* box2つ毎に改行 */
/*
    #features .box {
        background: white;
        width: 394px;
        height: 384px;
        padding: 24px 20px;
        border-radius: 8px;
    }
    #features .box:not(:last-child) {
        margin-right: 24px;
    }
*/
}