/* -----------------------------------
   Font Face
----------------------------------- */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* -----------------------------------
   Base reset
----------------------------------- */
html,
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF;
    color: #333;
    overflow-x: hidden;
    /* prevent horizontal scroll */
    scroll-behavior: smooth;
}

p,
h1,
h2 {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* -----------------------------------
   Header
----------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5%;
    background-color: #ffffffb3;
    height: 80px;
    backdrop-filter: brightness(100%) blur(24px);
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); */
}

.header-logo {
    width: 200px;
    /* レイアウト用に宣言しておく方が安心 */
    height: 64px;
    display: block;
    /* Flex 子要素なら省略可 */
}

.header-logo img {
    display: block;
    /* 行間のズレ防止 */
    width: 100%;
    height: auto;
    /* 高さは比率維持で自動 */
}

#menu-btn-check:checked~.header-logo-sp {
    display: block
}

.menues {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menues p {
    margin: 0;
    padding: 8px 8px;
    color: black;
    text-align: center;
    font-size: 14px;
}

a {
    text-decoration: none;
}

.aa_kentei_btn {
    background: #266cb5ff;
    border-radius: 8px;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: auto;
    letter-spacing: 0em;
    line-height: 1.3;
    margin: 0px;
    padding: 8px 8px;
    text-align: center;
    width: auto;
    max-width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.aa_kentei_btn p {
    padding: 0px;
    color: #fff;
}

.aa_kentei_btn:hover {
    transform: translate(0, 4px);
}

/* Inquiry button (PC) */
.inquiry-button {
    padding: 12px 24px;

    font-size: 14px;

    background-color: #f09612ff;
    color: #fff;
    border-radius: 50px;

    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: -8px 8px 16px rgba(11, 62, 79, 0.159);
}

.inquiry-button:hover {
    transform: translate(0, 4px);
    box-shadow: none;
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    /* Hidden on PC */
}

/* -----------------------------------
   Modal menu (SP)
----------------------------------- */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.menu-btn i {
    width: 20px;
    height: 20px;
    font-size: 15px;

    text-align: center;
    align-content: center;
}

.menu-content {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    padding: 0px 16px;

    position: fixed;
    top: 0;
    right: 0;

    background: #e0e4eb;
    backdrop-filter: blur(24px);
    z-index: 99;
    transition: all 0.3s ease-in-out;
    display: none;
}

.menu-content.open {
    display: block;
    transition: all 0.3s ease-in-out;
}

.menu-content-inner {
    margin-top: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;

    text-decoration: none;
}

.menu-content-inner a {
    text-decoration: none;
}

.menu-content-inner p {
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;

    color: #000;
}

.aa_kentei_btn p {
    color: #fff;
}

.modal_button {
    width: 180px;
    text-align: center;
}

/* -----------------------------------
   Section - Firstview
----------------------------------- */
.section-firstview {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    margin-top: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 80px;
    background-image: url(../images/girl.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    overflow: visible;
    position: relative;
}

.firstview-container {
    width: 100%;
    max-width: 100%;
    padding: 0px;

    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
}

.firstview-text_block {
    width: 650px;
    max-width: 100%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;

    background: #ffffffe6;
    border-radius: 48px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.firstview-img_block {
    width: 80%;
}

.firstview-img_block img {
    width: 100%;
}

.firstview_button_group {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.firstview_button_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.firstview_button_block p {
    color: #1d3557ff;
    flex: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    height: auto;
    letter-spacing: 0em;
    line-height: 1.3;
    margin: 0px 0px 5px 0px;
    text-align: center;
    width: auto;
    max-width: 100%;
    justify-content: center;
}

.inquiry-button__firstview {
    padding: 16px 36px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    border: 1px solid #FFFFFF;
    border-radius: 78px;
    background-color: #f09612ff;

    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.bg-download_btn {
    background-color: #1d3557ff;
}


/* -----------------------------------
   Section Headings
----------------------------------- */
/* Many .section-xxx h2 styles are identical or nearly identical. 
   Combine them if the base is the same. */
.section-solutions h2,
.section-voices h2,
.section-flow h2,
.section-faq h2 {
    font-size: 48px;
    color: #f09612ff;
    font-weight: 500;
    margin-bottom: 40px;
}

.section-feature h2,
.section-purpose h2,
.section-about h2 {
    font-size: 48px;
    color: #f09612ff;
}

.section-purpose h2 {
    font-weight: 500;
    /* from the original code */
}

.section-about h2 {
    font-weight: 500;
    /* from the original code */
}

.about-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* -----------------------------------
   Section - Purpose
----------------------------------- */
.section-purpose {
    padding: 120px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 24px;

    background: #f8eee4ff;
}

.purpose-title_group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.purpose-title_group h2 {
    letter-spacing: 0.08em;
    font-style: normal;
    font-weight: 500;
}

.purpose-title {
    font-size: 32px;
}

.purpose-text {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

/* -----------------------------------
   Section - About
----------------------------------- */
.section-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
    gap: 40px;

    background-color: transparent;
}

.about-text {
    font-size: 20px;
    font-weight: 100;
    line-height: 1.8;
}

.about-image-wrap {
    text-align: center;
}

.about-image {
    width: 80%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.box-four {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-box-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-box {
    width: 43%;
    padding: 36px 32px;
    text-align: left;
}

.about-box-text {
    margin-top: 0;
    line-height: 1.6;
}

/* Common box style */
.boxStyle {
    /* background-color: #fff; */
    background: linear-gradient(54.39deg, #ffffff, rgba(153, 152, 198, 0));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: -8px 8px 56px rgba(12, 24, 58, 0.08);
}

/* Icon titles */
.textBoxHeader {
    height: 44px;
    display: flex;
    align-items: center;
}

.textBoxHeader p {
    font-size: 20px;
    font-weight: 700;
    color: #f09612ff;
}

.icon {
    background-color: #266cb5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.icon i {
    color: #fff;
}

/* -----------------------------------
   Section - Solutions
----------------------------------- */
.section-solutions {
    padding: 120px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-color: #f8eee4ff;
}

.section-solutions h2 {
    font-size: 36px;
}

.solutions-container {
    width: 1200px;
    max-width: 100%;
    padding: 24px;

    display: flex;
    justify-content: space-between;
    gap: 40px;

    background: #ffffffff;
    border-radius: 8px;
}

.solutions-text-group {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    gap: 24px;
}

.solutions-text {
    display: flex;
    gap: 4px;
}

.solutions-text_icon {
    color: #f09612ff;
    font-size: 28px;
}

.solutions-text_block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.solutions-text_block p {
    font-size: 20px;
}

.solutions-text_block span {
    font-size: 22px;
    font-weight: bold;
}

.solutions-image_block {
    width: 30%;
}

.solutions-image_block img {
    width: 100%;
}

/* -----------------------------------
   Section - Feature
----------------------------------- */
.section-feature {
    padding: 120px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    gap: 40px;
}

.feature-title_group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

.section-feature h2 {
    font-weight: lighter;
}

.feature-desc {
    font-size: 20px;
    font-weight: 100;
    line-height: 1.6;
}

.features-container {
    max-width: 1200px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.feature-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-card {
    width: 49%;
    height: 200px;
    padding: 36px 32px;

    display: flex;
    /* box-sizing: border-box; */
    text-align: left;
    justify-content: center;
    align-items: center;
    gap: 10px;

    backdrop-filter: blur(48px);
    background: #ffffffff;
    border: 1px solid rgba(255, 255, 255, 0.800000011920929);
    border-radius: 16px;
    box-shadow: -8px 8px 56px 0px rgba(12, 24, 58, 0.07999999821186066);
}

.feature-card_image {
    width: 100px;
}

.feature-card_image img {
    width: 100px;
    height: auto;
}

.feature-card_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-card_text p {
    font-size: 18px;
}

.feature-card_text span {
    font-size: 20px;
    color: #f09612ff;
}

.skill-box-text {
    padding-top: 16px;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.five-skills-image-wrap {
    flex: 1;
}

.five-skills-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

/* -----------------------------------
   Section - Supervisor
----------------------------------- */
.section-supervisor {
    padding: 120px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-color: #F8EEE3;
}

.supervisor-title {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    color: #f09612ff;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.supervisor-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    /* margin: 40px auto 0; */
    align-items: flex-start;
}

.supervisor-left {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.supervisor-name {
    font-weight: 500;
    font-size: 36px;
    margin: 0;
}

.supervisor-subname {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    margin: 0 0 16px;
}

.supervisor-profile p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.supervisor-comment-block {
    margin-top: 16px;
}

.supervisor-comment-title {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    margin: 0;
}

.supervisor-comment {
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
}

.supervisor-right {
    width: 330px;
    margin: auto 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(48px);

    background: rgba(255, 255, 255, 0.07999999821186066);
    border: 1px solid rgba(255, 255, 255, 0.800000011920929);
    border-radius: 16px;
    box-shadow: -8px 8px 56px 0px rgba(12, 24, 58, 0.07999999821186066);
}

.supervisor-photo {
    width: 330px;
    object-fit: cover;
    border-radius: 16px;
}

/* -----------------------------------
   Section - Voices
----------------------------------- */
.section-voices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
}

.voices-box-container {
    display: flex;
    gap: 16px;
    max-width: 1760px;
    justify-content: center;
}

.voice-box-four {
    display: flex;
    flex-direction: column;
    gap: 16px;

}

.voice-box {
    width: 50%;
    min-width: 300px;
    padding: 50px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    z-index: 1;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.voice-icon {
    width: 56px;
    height: 56px;
    background-color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.voice-title-block {
    display: flex;
    flex-direction: column;
}

.voice-title {
    font-size: 20px;
    font-weight: 700;
    color: #383A45;
    margin: 0;
}

.voice-subtitle {
    font-size: 14px;
    font-weight: 100;
    color: #266cb5;
    margin: 4px 0 0;
}

.voice-text {
    font-size: 18px;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------
   Section - Fee
----------------------------------- */
.section-fee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 80px;
    gap: 24px;
}

.section-fee h2 {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    color: #f09612ff;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.fee-text {
    font-size: 18px;
}

.fee-inquiry-button {
    border-radius: 78px;
    box-shadow: -8px 8px 56px 0px rgba(12, 24, 58, 0.07999999821186066);
    padding: 24px 64px;
    transition-delay: 0ms;
    transition-duration: 800ms;

    font-size: 20px;
}

/* -----------------------------------
   Section - Flow
----------------------------------- */
.section-flow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;

    background-color: #F8EEE3;
}

.process {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.process li {
    display: flex;
}

.process li p {
    writing-mode: vertical-rl;
    background: #f09612ff;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    height: 350px;
    width: 128px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    letter-spacing: 0.2em;
    text-align: center;
}

.process i {
    font-size: 32px;
    color: #f09612ff;
    padding-left: 10px;
    padding-right: 10px;
}

/* -----------------------------------
   Section - FAQ
----------------------------------- */
.section-faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-block {
    position: relative;
}

.Label {
    display: block;
    font-size: 20px;
    font-weight: normal;
    padding: 24px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
}

.Label::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: rotate(135deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
}

.hidden.toggle {
    display: none;
}

.content {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding: 0 24px;
}

.toggle:checked+.Label+.content {
    height: auto;
    padding-bottom: 24px;
}

.toggle:checked+.Label::before {
    transform: rotate(-45deg);
}

/* -----------------------------------
   Section - Contact
----------------------------------- */
.section-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
    background-color: #F8EEE3;
}

.contact-title {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    color: #f09612ff;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    gap: 48px;
    /* max-width: 1360px; */
    margin: 40px 0 0;
    align-items: flex-start;
}

.contact-info {
    width: 60%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-desc {
    font-size: 20px;
    align-self: left;
}

.contact-mail {
    display: flex;
    align-items: center;
    margin-top: 8px;
    align-self: left;
}

.contact-mail-link {
    text-decoration: underline;
    font-size: 20px;
    color: #333;
    margin-left: 8px;
}

.contact-form {
    width: 100%;
}

form {
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    padding: 32px 16px;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    align-content: flex-start;
    justify-content: flex-start;
}

.form-group-half {
    width: 48.5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.required {
    color: #fd0c10;
    font-weight: 300;
    margin-left: 5px;
}

#inputText,
textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    padding: 10px;
    box-shadow: none;
    margin-bottom: 0;
    outline: none;
}

textarea {
    height: 160px;
    resize: none;
}

.form-check {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.form-check a {
    text-decoration: underline;
    color: #333;
}

.form-buttons {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 16px;
}

.btn-download,
.btn-contact {
    display: inline-block;
    border-radius: 50px;
    padding: 15px;
    width: 40%;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    border: none;
}

.btn-download {
    border: 1px solid #266cb5;
    color: #266cb5;
    background-color: #fff;
}

.btn-download:hover {
    opacity: 0.8;
}

.btn-contact {
    background-color: #f09612;
    color: #fff;
}

.btn-contact:hover {
    opacity: 0.8;
}

/* -----------------------------------
   Section - Soon
----------------------------------- */
.section-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
    gap: 40px;
}

.section-soon h2 {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    color: #266cb5;
    font-weight: 500;
    margin: 0;
}

.soon-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
}

.soon-box {
    padding: 36px 32px;
    width: fit-content;
    text-align: center;
}

.soon-box-img {
    width: 100%;
    object-fit: cover;
}

.soon-box-title {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 24px;
}

.soon-box-text {
    font-size: 18px;
    color: #222;
    margin-top: 24px;
    line-height: 1.6;
    margin-bottom: 0;
}

.soon-inquiry-text {
    font-size: 18px;
    color: #222;
}

.btn-soon-inquiry {
    background-color: #f09612;
    color: #fff;
    border-radius: 50px;
    padding: 24px 64px;
    border: 1px solid #ffffff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.8s ease;
}

.btn-soon-inquiry:hover {
    transform: translate(0, 8px);
    background-color: #266cb5;
}

/* -----------------------------------
   Section - Kyodo
----------------------------------- */
.section-kyodo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 120px 80px;
    gap: 40px;
    overflow: hidden;
}

.kyodo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.kyodo-text-area {
    flex: 1;
}

.kyodo-title {
    color: #222;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
}

.kyodo-desc {
    color: #222;
    font-size: 20px;
    line-height: 1.5;
}

.kyodo-image-wrap {
    width: 50%;
    flex: none;
    padding: 10px;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.kyodo-image {
    width: 100%;
    object-fit: cover;
}

/* -----------------------------------
   Section - Manabi
----------------------------------- */
.section-manabi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
    gap: 40px;
    overflow: hidden;

    background-color: #f8eee4ff;
}

.manabi-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1760px;
    margin: 0 auto;
}

.manabi-image-wrap {
    width: 50%;
    height: 400px;
    padding: 10px;
    backdrop-filter: blur(48px);
    box-shadow: -8px 8px 56px 0px rgba(12, 24, 58, 0.07999999821186066);
    border-radius: 16px;
    z-index: 1;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.07999999821186066);
}

.manabi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.manabi-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.manabi-title {
    color: #222;
    font-size: 36px;
    font-weight: 300;
    margin: 0;
}

.manabi-subtitle {
    color: #222;
    font-size: 16px;
    font-weight: 700;
    margin: 24px 0 16px;
}

.manabi-desc {
    color: #222;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

/* -----------------------------------
   Footer
----------------------------------- */
footer {
    background-color: #ffffff;
    padding: 80px 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 1200px;
    max-width: 100%;
}

.footer-upper {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 200px;
    height: auto;
    cursor: pointer;
}

.footer-nav {
    display: flex;
    gap: 24px;
    text-align: center;
}

.footer-nav div p {
    color: #0E2228;
    padding: 12px;
    margin: 0;
}

.footer-lower {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-copyright {
    color: #969696;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    color: #969696;
}

.footer-links a {
    color: #969696;
    text-decoration: none;
}

/* -----------------------------------
   ThankPage
----------------------------------- */

.thankpage_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
}

h3 {
    font-weight: 100;
    font-size: 24px;
}

.icon__send {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F09612;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    width: 60px;
    height: 60px;
    text-align: center;
    margin: 0 auto;
}

.btn-download__thankpage {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F09612;
    color: #ffffff;
    border-radius: 78px;
    border: 1px solid #ffffff;
    margin-right: 20px;
    cursor: pointer;
    font-size: 18px;
    max-width: 300px;
    box-sizing: border-box;
    padding: 24px 64px;
    transition: all 0.5s ease;
    margin: 0 auto;
}

.btn-download__thankpage:hover {
    background-color: #ffc369;
}

/* -----------------------------------
   HERO IMAGE
----------------------------------- */
#hero-overlay {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background: #F8EDE4;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.0s ease;
    font-size: 35px;
}

#hero-overlay img {
    position: absolute;
    top: 150px;
    right: -200px;
    /* transform: translate(48px, -3px) rotate(50deg) scale(1); */
    transform: rotate(50deg) scale(1.2);
    width: 800px;
    height: auto;
    max-width: 100%;
    z-index: 0;
}

#hero-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* main-content は初期状態で非表示 */
#main-content.hidden {
    display: none;
}

/* -----------------------------------
   スマホ画面専用下部ボタングループ
----------------------------------- */
.buttom-button-group {
    width: auto;
    max-width: 100%;
    height: 80px;

    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;

    background: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: auto;

    z-index: 1;
}

/* -----------------------------------
   Media queries
----------------------------------- */
@media (min-width: 840px) {

    .sp-only,
    .sp-only-flex {
        display: none;
    }

    .md-only {
        display: none;
    }

    .pc-only,
    .pc-only-flex {
        display: flex;
    }

    .pc-md-only {
        display: block;
    }

    .pc-md-only-flex {
        display: flex;
    }
}

@media (max-width: 1140px) {
    .menues {
        display: none;
        /* show hamburger for smaller screens */
    }

    .hamburger-menu {
        display: block;
    }

    .firstview-text_block {
        width: 500px;
    }
}

@media (max-width: 840px) {

    .section-purpose,
    .section-about,
    .section-solutions,
    .section-five-skills,
    .section-supervisor,
    .section-voices,
    .section-fee,
    .section-flow,
    .section-faq,
    .section-contact,
    .section-soon,
    .section-kyodo,
    .section-manabi {
        padding: 64px 40px;
    }

    .section-firstview-container {
        padding-top: 20px;
        flex-direction: column;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }

    .kv-accent-title {
        align-items: center;
    }

    .section-purpose h2,
    .section-about h2 {
        font-size: 36px;
    }

    .purpose-title {
        font-size: 28px;
    }

    .purpose-text {
        font-size: 13px;
    }

    .about-text {
        font-size: 13px;
    }

    .about-box {
        width: 44%;
        padding: 16px;
    }

    .kv-text-area,
    .kv-image-area {
        width: 100%;
    }

    .kv-button-inquiry {
        margin-right: 20px;
        font-size: 16px;
        padding: 16px 40px;
    }

    .kv-consult-pc {
        width: 200px;
    }

    .kv-buttons {
        align-items: center;
        justify-content: center;
        height: 160px;
    }

    .kv-consult-sp {
        display: block;
        width: 80%;
    }

    .section-solutions h2 {
        font-size: 36px;
    }

    .solutions-container {
        width: 100%;
        align-items: center;
        margin: 0;
    }

    .solutions-box-title {
        font-size: 16px;
    }

    .solutions-box-text {
        font-size: 13px;
        line-height: 1.5;
        height: 58.5px;
    }

    .section-five-skills h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .five-skills-desc {
        font-size: 13px;
    }

    .five-skills-container {
        width: 100%;
        flex-direction: column;
    }

    .five-skills-boxes {
        width: 100%;
    }

    .five-skills-image-wrap {
        width: 100%;
        margin-top: 40px;
    }

    .five-skills-image {
        width: 100%;
        height: auto;
    }

    .supervisor-right {
        width: 100%;
        border: none;
        box-shadow: none;
    }

    .supervisor-photo {
        width: 80%;
        margin: 0 auto;
    }

    .section-supervisor,
    .supervisor-container {
        display: block;
    }

    .section-supervisor {
        padding: 64px 40px;
    }

    .supervisor-title {
        font-size: 36px;
    }

    .supervisor-name,
    .supervisor-subname {
        font-size: 28px;
    }

    .supervisor-comment-title {
        font-size: 13px;
    }

    .supervisor-comment {
        font-size: 13px;
    }

    .section-voices h2 {
        font-size: 36px;
    }

    .voice-title {
        font-size: 16px;
    }

    .voice-subtitle,
    .voice-text {
        font-size: 13px;
    }

    .section-fee h2,
    .section-flow h2,
    .section-faq h2 {
        font-size: 36px;
    }

    .fee-text {
        font-size: 14px;
    }

    .process {
        flex-direction: column;
        gap: 12px;
    }

    .process li {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .process li p {
        writing-mode: horizontal-tb;
        width: 80%;
        height: 54px;
        margin: 0 auto;
        padding: 8px 16px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .Label {
        font-size: 16px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-mail {
        justify-content: flex-start;
    }

    .section-soon h2 {
        font-size: 36px;
    }

    .soon-container {
        width: 100%;
        margin: 0;
    }

    .kyodo-container {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        margin: 0;
    }

    .kyodo-image-wrap {
        width: 100%;
        border: 1px solid white;
        overflow: hidden;
    }

    .kyodo-title {
        font-size: 36px;
    }

    .kyodo-desc {
        font-size: 13px;
    }

    .manabi-container {
        flex-direction: column-reverse;
        align-items: start;
        gap: 20px;
    }

    .manabi-image-wrap {
        width: 100%;
        border: 1px solid white;
        overflow: hidden;
    }

    .manabi-title {
        font-size: 28px;
    }

    .manabi-subtitle {
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .manabi-desc {
        font-size: 14px;
    }

    form {
        width: 100%;
        flex-direction: column;
    }

    .form-group-half {
        width: 100%;
    }

    .footer-links a {
        font-size: 14px;
    }

    .inquiry-button-large {
        width: 100%;
        text-align: center;
    }

    footer {
        width: 100%;
        padding: 40px;
        padding-bottom: 120px;
        align-items: start;
    }

    h1,
    h2 {
        font-size: 36px;
    }

    .section-firstview-container {
        gap: 0;
    }

    .section-firstview {
        width: 100%;
        padding: 80px 40px 0 40px;
        box-sizing: border-box;
    }

    .kv-accent {
        padding: 4px 8px;
        margin: 0 auto;
        font-size: 28px;
    }

    .kv-subtitle1 {
        font-size: 20px;
        text-align: left;
    }

    .kv-highlight {
        font-size: 24px;
    }

    .kv-title {
        font-size: 64px;
        text-align: center;
    }

    .kv-desc {
        font-size: 18px;
        text-align: center;
        margin: 16px 0;
    }

    .kv-image {
        position: static;
        width: 100%;
        border-radius: 24px;
        height: auto;
    }

    .footer-upper {
        display: none;
    }

    .footer-lower {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10%;
    }

    label,
    textarea,
    input,
    button,
    p {
        font-size: 14px;
    }

    .textBoxHeader p {
        font-size: 16px;
    }

    .icon {
        width: 36px;
        height: 36px;
    }

    .btn-soon-inquiry {
        padding: 16px 32px;
        font-size: 16px;
        transition: all 0.8s ease;
    }

    .btn-soon-inquiry:hover {
        transform: translate(0, 8px);
        background-color: #266cb5;
    }

    .pc-only,
    .pc-only-flex {
        display: none;
    }

    .md-only {
        display: block;
    }

    .sp-only,
    .sp-only-flex {
        display: none;
    }

    .pc-md-only {
        display: block;
    }

    .pc-md-only-flex {
        display: flex;
    }

    .backgroundImage_1 {
        position: absolute;
        top: 246px;
        right: -177px;
        bottom: 151px;
        transform: translate(48px, -3px) rotate(4deg) scale(1.28);
        width: 1487px;
        height: auto;
        max-width: 100%;
        z-index: 0;
    }

    .backgroundImage_2 {
        bottom: -277px;
        filter: brightness(142%) contrast(154%) saturate(200%);
        /* flex: none; */
        height: 145%;
        left: -93px;
        margin: 0 0 0 0;
        mix-blend-mode: screen;
        position: absolute;
        right: -887px;
        top: 785px;
        transform: translate(50px, -287px) rotate(152deg);
        width: 200%;
        z-index: 0;
        max-width: 200%;
        opacity: .7;
    }

    header {
        padding: 0px 16px;
    }

    header img {
        width: 200px;
        height: auto;
        z-index: 999;
    }

    .kv-accent {
        font-size: 28px;
    }

    .kv-text-area {
        gap: 16px;
    }

    .kv-accent-title {
        gap: 10px;
    }

    .kv-subtitle1 {
        font-size: 16px;
    }

    .kv-highlight {
        font-size: 18px;
    }

    .kv-title {
        font-size: 40px;
    }

    .kv-consult-sp {
        width: 200px;
    }

    .section-firstview {
        padding: 96px 16px 40px;
    }

    .kv-desc {
        font-size: 14px;
    }

    .kv-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .kv-button-inquiry {
        font-size: 14px;
        padding: 12px 36px;
        margin: 0;
    }

    .feature-title_group h2,
    .section-purpose h2,
    .section-about h2,
    .section-solutions h2,
    .section-five-skills h2,
    .section-soon h2,
    .section-faq h2,
    .section-flow h2,
    .section-fee h2 {
        font-size: 28px;
    }

    .sp-firstview {
        width: 100vw;
        padding-top: 64px;
    }

    .sp-firstview img {
        width: 100vw;
    }

    .section-purpose {
        gap: 32px;
        padding: 80px 16px 40px 16px;
    }

    .purpose-title {
        font-size: 20px;
    }

    .voice-title,
    .soon-box-title {
        font-size: 14px;
    }

    .purpose-text {
        font-size: 14px;
    }

    .about-box-container {
        flex-direction: column;
        gap: 16px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.5;
        margin: 24px 0px;
    }

    .about-image {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .section-about {
        padding: 80px 16px 40px;
        gap: 24px;
    }

    .about-box,
    .solutions-box {
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    .section-solutions {
        padding: 80px 16px 40px 16px;
    }

    .solutions-image_block {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .solutions-text_icon i {
        font-size: 20px;
    }

    .solutions-text-group {
        gap: 24px;
    }

    .solutions-text_block p {
        font-size: 14px;
    }

    .solutions-text_block span {
        font-size: 14px;
    }

    .about-upper {
        gap: 10px;
    }

    .solutions-container {
        flex-direction: column;
        align-items: center;
        padding: 12px;
        margin-bottom: 36px;
    }

    .section-feature {
        padding: 80px 16px 40px 16px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .feature-card {
        width: 100%;
        height: auto;
        padding: 12px;
        justify-content: flex-start;
        gap: 8px;
    }

    .feature-card_image {
        width: 50px;
        height: 50px;
    }

    .feature-card_image img {
        width: 50px;
        height: 50px;
    }

    .feature-card_text p {
        font-size: 13px;
    }

    .feature-card_text span {
        font-size: 14px;
    }

    .section-five-skills {
        padding: 80px 16px 40px;
    }

    .section-five-skills h2 {
        margin-bottom: 10px;
    }

    .five-skills-desc {
        margin-bottom: 0;
    }

    .five-skills-container {
        flex-direction: column-reverse;
        align-items: center;
        margin: 0;
    }

    .icon {
        width: 32px;
        height: 32px;
    }

    .skill-box {
        padding: 12px;
    }

    .skill-box-text,
    .skill-box-text p {
        font-size: 13px;
    }

    .section-supervisor {
        padding: 80px 16px 40px;
    }

    .supervisor-photo {
        width: 50%;
        height: auto;
    }

    .supervisor-subname {
        font-size: 14px;
    }

    .supervisor-comment-title {
        font-size: 20px;
    }

    .supervisor-comment {
        font-size: 14px;
    }

    .fee-inquiry-button {
        padding: 12px 36px;
        font-size: 14px;
    }

    .supervisor-title,
    .supervisor-name {
        font-size: 28px;
    }

    .section-voices {
        padding: 80px 16px 40px;
    }

    .section-voices h2 {
        font-size: 28px;
    }

    .voices-box-container {
        flex-direction: column;
        gap: 6px;
    }

    .voice-box-four {
        gap: 6px;

    }

    .voice-box {
        width: 100%;
        padding: 16px;
        gap: 16px;
        box-sizing: border-box;
    }

    .voice-icon {
        width: 40px;
        height: 40px;
    }

    .voice-title {
        font-size: 14px;
    }

    .voice-subtitle,
    .voice-text {
        font-size: 13px;
    }

    .section-fee {
        gap: 10px;
        padding: 80px 16px 40px;
    }

    .section-flow {
        padding: 80px 16px 40px;
    }

    .process {
        gap: 0;
    }

    .process li p {
        font-size: 16px;
        font-weight: lighter;
        padding: 16px;
    }

    .process i {
        color: #999;
    }

    .section-faq {
        padding: 80px 16px 40px;
    }

    .section-faq h2 {
        margin-bottom: 0;
    }

    .Label {
        font-size: 14px;
    }

    .faq-container {
        gap: 10px;
    }

    .section-contact {
        padding: 80px 16px 40px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-wrapper {
        justify-content: center;
    }

    .contact-info {
        width: 100%;
        text-align: center;
    }

    .contact-info-desc {
        font-size: 14px;
        text-align: left;
    }

    .contact-mail-link {
        font-size: 14px;
    }

    .fa-2x {
        font-size: 24px;
    }

    .section-kyodo {
        padding: 80px 16px 40px;
    }

    .kyodo-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .kyodo-desc {
        font-size: 14px;
    }

    .section-soon {
        padding: 80px 16px 40px;
    }

    .soon-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .soon-box {
        padding: 16px 14px;
    }

    .soon-inquiry-text {
        font-size: 14px;
    }

    .btn-soon-inquiry {
        padding: 12px 36px;
        font-size: 16px;
        transition: all 0.8s ease;
    }

    .soon-box-text {
        font-size: 13px;
    }

    .section-manabi {
        padding: 80px 16px 40px;
    }

    .manabi-subtitle {
        margin-top: 8px;
        margin-bottom: 16px;
    }

    .manabi-title {
        font-size: 24px;
    }

    .manabi-image-wrap {
        padding: 6px;
        height: 48%;
    }

    .footer-lower {
        flex-direction: column;
        align-items: end;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links {
        margin-top: 10px;
        justify-content: end;
        gap: 10px;
        flex-direction: row;
        width: 70%;
        flex-wrap: wrap;
    }

    .sp-only {
        display: block;
    }

    .sp-only-flex {
        display: flex;
    }

    .md-only {
        display: none;
    }

    .pc-md-only {
        display: none;
    }

    .pc-only,
    .pc-only-flex {
        display: none;
    }

    .pc-md-only-flex {
        display: none;
    }

    .backgroundImage_1 {
        position: absolute;
        top: 126px;
        right: -102px;
        bottom: -19px;
        transform: translate(48px, -3px) rotate(50deg) scale(1.28);
        width: 1407px;
        height: auto;
        max-width: 100%;
        z-index: 0;
    }

    .backgroundImage_2 {
        bottom: -277px;
        filter: brightness(142%) contrast(154%) saturate(200%);
        /* flex: none; */
        height: 145%;
        left: 198px;
        margin: 0 0 0 0;
        mix-blend-mode: screen;
        position: absolute;
        right: -1177px;
        top: 706px;
        transform: translate(50px, -287px) rotate(129deg);
        width: 100%;
        z-index: 0;
        max-width: 200%;
        opacity: .7;
    }

    .backgroundImage_3 {
        bottom: -284px;
        height: auto;
        left: auto;
        margin: 0 0 0 0;
        position: absolute;
        right: 90px;
        top: 4764px;
        width: 1064px;
        z-index: 0;
        max-width: 100%;
    }

    .backgroundImage_5 {
        bottom: -284px;
        height: auto;
        left: auto;
        margin: 0 0 0 0;
        position: absolute;
        right: 70px;
        top: 9494px;
        width: 1064px;
        z-index: 0;
        max-width: 100%;
    }

    .backgroundImage_6 {
        bottom: -191px;
        height: auto;
        left: -180px;
        margin: 0 0 0 0;
        position: absolute;
        right: auto;
        top: 10194px;
        width: 903px;
        z-index: 0;
        max-width: 100%;
    }

    #hero-overlay {
        display: flex;
        justify-content: left;
        padding-left: 20px;
        align-items: center;
    }

    #hero-overlay p {
        width: 80%;
        font-size: 33px;
    }
}