/*
############
## common ##
############
*/

html {
    position: relative;
    scroll-behavior: smooth;
}

body::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-image: url(./assets/bg-pc.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -2;
}

body {
    font-family: "Noto Sans JP", sans-serif;
}

/* タイポグラフィ */

h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 36px;
}

h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
}

h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
}

p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
}

li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
}

/* 画像 */
img {
    width: 100%;
    height: 100%;
}

/* 表示制御 */
.is-pc {
    display: block;
}

.is-sp {
    display: none;
}

/* label */
.label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 27px;
}

.label-item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.label-text {
    font-size: 16px;
    font-weight: 400;
    margin-right: 40px;
}

.label-title {
    font-size: 40px;
    font-weight: 400;
}

.note-button {
    max-width: 120px;
    width: 100%;
    max-height: 30px;
    height: 100%;
    color: #f15d14;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 8px 16px;
}

.note-button a {
    font-size: 14px;
    font-weight: 400;
}

/*
###############
## common tb ##
###############
*/

@media (max-width: 1280px) and (min-width: 641px) {
    body::after {
        content: "";
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-image: url(./assets/bg-pc.png);
        background-size: 140% 100%;
        background-position: left bottom;
        background-repeat: no-repeat;
        z-index: -2;
    }
    section {
        padding: 0 20px;
    }

    /* タイポグラフィ */
    h1 {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 80px;
    }

    h2 {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 32px;
    }

    h3 {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 28px;
    }

    h4 {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 20px;
    }

    p {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
    }

    li {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
    }

    /* 画像 */
    img {
        width: 100%;
        height: 100%;
    }

    /* label */
    .label {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 27px;
    }

    .label-item {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

    .label-text {
        font-size: 15px;
        font-weight: 400;
        margin-right: 32px;
    }

    .label-title {
        font-size: 33px;
        font-weight: 400;
    }
}

@media (max-width: 1050px) and (min-width: 881px) {
    body::after {
        content: "";
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-image: url(./assets/bg-pc.png);
        background-size: 150% 100%;
        background-position: left bottom;
        background-repeat: no-repeat;
        z-index: -2;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    body::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-image: url(./assets/sp-bg.png);
        background-size: 100% 100%;
        background-position: bottom;
        background-repeat: no-repeat;
        z-index: -2;
    }
}

/*
###############
## common sp ##
###############
*/
@media (max-width: 640px) {
    body::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(./assets/sp-bg.png);
        background-size: 100% 100%;
        background-position: bottom;
        background-repeat: no-repeat;
        z-index: -2;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 12px;
    }

    h4 {
        font-size: 14px;
    }
    p {
        font-size: 12px;
    }

    li {
        font-size: 12px;
    }

    .ja {
        font-size: 12px;
    }

    /* フォントファミリーが見つからない。：要相談 */
    .en {
        font-size: 7px;
    }

    section {
        padding: 0 10px;
    }

    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }

    /* label */
    .label {
        gap: 5px;
    }

    .label-item {
        width: 12px;
        height: 12px;
    }

    .label-text {
        font-size: 11px;
        margin-right: 10px;
    }

    .label-title {
        font-size: 18px;
    }

    .note-button {
        max-height: 24px;
    }

    .note-button a {
        font-size: 12px;
    }
}

/*
############
## header ##
############
*/
#header {
    width: 100%;
    max-height: 40px;
    height: 100%;
    margin: 29px 0 231px;
}

/* ヘッダーコンテナ */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    margin: 0 16px 0 10px;
    position: relative;
    border-radius: 30px;
    background-color: rgba(148, 148, 148, 0.1);
}

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 130px;
}

.header-nav li:first-child {
    margin-left: 40px;
}
.header-nav li:last-child {
    margin-right: 10px;
}

/*
###############
## header-tb ##
###############
*/

@media (max-width: 1280px) and (min-width: 641px) {
    .header-nav ul {
        gap: 16px;
    }

    .header-nav li {
        font-size: 14px;
        padding-left: 4px;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .header-logo {
        max-width: 120px;
    }
}

/*
###############
## header-sp ##
###############
*/

/* メディアクエリ */
@media (max-width: 640px) {
    #header {
        max-height: 57px;
        height: 100%;
        margin: 0 0 120px;
    }

    .header-container {
        max-height: 57px;
        height: 100%;
        border-radius: 0;
        background-color: #ffffff;
        padding: 10px;
        margin: 0;
        position: relative;
    }

    .header-logo {
        max-width: 80px;
        width: 100%;
        max-height: 16px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
    }

    /* スマートフォンメニュー */
    .sp-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: auto;
        background-color: #f4f4f4;
        z-index: 1000;
        padding: 0 24px 16px;
        line-height: 3em;
        border-radius: 0 0 20px 20px;
    }

    .sp-hamburger.active .sp-menu {
        display: block;
    }

    /* ハンバーガーメニュー */
    .sp-hamburger .line {
        display: block;
        margin: 6px 0 6px auto;
        height: 2px;
        background: linear-gradient(to bottom, #f65a00, #fc006e, #df00dd);
        transition: all 0.3s ease;
    }

    .sp-hamburger .line:nth-child(1) {
        width: 30px;
    }

    .sp-hamburger .line:nth-child(2) {
        width: 20px;
    }

    .sp-hamburger .line:nth-child(3) {
        width: 10px;
    }

    /* ハンバーガーメニューアクティブ状態 */
    .sp-hamburger.active .line:nth-child(1) {
        width: 32px;
        transform: translateY(8px) rotate(45deg);
    }

    .sp-hamburger.active .line:nth-child(2) {
        width: 32px;
        opacity: 0;
    }

    .sp-hamburger.active .line:nth-child(3) {
        width: 32px;
        transform: translateY(-8px) rotate(-45deg);
    }

    .sp-hamburger {
        max-width: 200px;
        width: 100%;
        max-height: 310px;
        height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        position: relative;
        height: 56px;
        border-radius: 20px 20px 0 0;
        margin-top: 19px;
    }

    .sp-hamburger-menu {
        padding-left: 20px;
    }

    .sp-hamburger.active {
        background-color: #f4f4f4;
        padding: 10px;
    }

    .sp-menu li {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        line-height: 4em;
    }

    .sp-note {
        max-width: 58px;
        width: 100%;
        max-height: 13px;
        height: 100%;
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 8px;
    }

    .header-privacy {
        font-size: 12px;
    }
}

/*
###################
## first-section ##
###################
*/

#first {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.first-container {
    display: flex;
}

.first-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.first-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 90px;
    margin-bottom: 34px;
    line-height: 1.55;
    letter-spacing: 1.5px;
}

.first-text {
    margin-left: -7px;
}

.first-text p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 2px;
}

.first-text-last {
    letter-spacing: 4px;
    margin-left: 3px;
}

.first-label {
    max-width: 100px;
    width: 100%;
    height: auto;
    order: -1;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
    transform-origin: left center;
    padding-top: 54px;
    color: #7b7b7b;
    margin-left: -8px;
}

.first-label p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 12px;
    padding-top: 20px;
    padding-left: 36px;
    letter-spacing: 1px;
}

/*
######################
## first-section-tb ##
######################
*/

@media (max-width: 1050px) and (min-width: 641px) {
    .first-section {
        padding: 0 48px;
    }
    .first-label {
        display: none;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .first-title {
        font-size: 80px;
    }
}

@media (max-width: 640px) {
    .first-container {
        padding-left: 0;
    }

    .first-label {
        display: none;
    }
}

/*
######################
## first-section-sp ##
######################
*/

@media (max-width: 640px) {
    .first-section {
        padding: 0 24px;
        margin-bottom: 140px;
    }

    .first-title {
        font-size: 47px;
        margin-bottom: 16px;
        letter-spacing: 3px;
    }

    .first-text {
        margin-left: 0;
    }

    .first-text p {
        font-size: 11px;
    }
}

/*
#################
## mvv-section ##
#################
*/

.mvv-section {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.mvv-section::before {
    content: "";
    position: absolute;
    top: 16%;
    left: 0;
    width: 80%;
    height: 100%;
    background-image: url(./assets/mvv-bg.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
}

.vertical-line {
    display: block;
    width: 2px;
    height: 200px;
    background-color: #ffffff;
    margin: 216px auto 56px;
}

.vertical-line:last-of-type {
    margin: 30px auto;
}

.mvv-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 75px 0 0 134px;
}

.mission,
.vision,
.value {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 40px;
    color: #ffffff;
}

.mission h2,
.vision h2,
.value h2 {
    display: flex;
    flex-direction: column;
}

.ja {
    margin-bottom: 9px;
}

.en {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 24px;
    margin-bottom: 26px;
    margin-left: 7px;
}

.m-text,
.v-text,
.value-text {
    font-size: 56px;
    line-height: 1.7;
    letter-spacing: 14px;
    font-weight: bold;
}

.m-text {
    letter-spacing: 14px;
}
.v-text {
    letter-spacing: 8px;
}
.value-text {
    letter-spacing: 8px;
    margin-bottom: -8px;
}

/*
####################
## mvv-section-tb ##
####################
*/
@media (max-width: 1280px) and (min-width: 641px) {
    .mvv-container {
        padding: 75px 0 0 0;
    }
    .m-text,
    .v-text,
    .value-text {
        font-size: 32px;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .mvv-section::before {
        top: 16%;
    }

    .mvv-container {
        padding: 75px 0 0 0;
    }

    .vertical-line {
        margin: 120px auto 40px;
    }

    .vertical-line:last-of-type {
        margin: 24px auto 16px;
    }

    .mission,
    .vision,
    .value {
        padding-left: 24px;
    }

    .m-text,
    .v-text,
    .value-text {
        font-size: 32px;
    }
    .mission h2,
    .vision h2,
    .value h2 {
        font-size: 28px;
    }
    .en {
        font-size: 20px;
    }
}

/*
####################
## mvv-section-sp ##
####################
*/

@media (max-width: 640px) {
    .mvv-section {
        margin-bottom: 90px;
    }

    .vertical-line {
        display: none;
    }

    .mvv-section::before {
        top: -1%;
    }

    .mvv-container {
        padding: 8px 4px 0 16px;
        gap: 32px;
    }
    .mission,
    .vision,
    .value {
        padding-left: 0;
    }

    .mission h2,
    .vision h2,
    .value h2 {
        gap: 2px;
        padding-left: 0;
    }

    .ja {
        margin: 0;
    }

    .en {
        font-size: 10px;
        margin-left: 0;
        margin-bottom: 12px;
    }

    .m-text,
    .v-text,
    .value-text {
        font-size: 20px;
        line-height: 1.6;
        letter-spacing: 3.2px;
    }
}

/*
######################
## business-section ##
######################
*/

.business-section {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    color: #ffffff;
    margin: 0 auto 151px;
}

.business-container {
    padding-left: 210px;
    padding-right: 27px;
}

.business-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 93px 88px 0 91px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

/* タイトル */
#business .label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 64px;
    padding-left: 120px;
    color: #ffffff;
}

#business .label-item {
    background-color: #ffffff;
}
#business .label-text {
    margin-left: 5px;
    letter-spacing: 1px;
}

#business .label-title {
    letter-spacing: 2px;
}

.business-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 104px;
}

.business-flex-left {
    width: 40%;
}

.business-flex-right {
    width: 60%;
    padding-top: 37px;
}

.business-flex-title h3 {
    font-size: 36px;
    margin-bottom: 44px;
    line-height: 1.4;
    letter-spacing: 7px;
}

.business-flex-text {
    margin-bottom: 69px;
    line-height: 2.1;
}

.business-flex-list h4 {
    margin-bottom: 18px;
    letter-spacing: 3px;
    font-size: 24px;
}

.business-flex-list ul {
    line-height: 2.4;
}

.business-flex-list li {
    list-style: none;
    position: relative;
    padding-left: 13px;
    font-size: 14px;
    letter-spacing: 1.5px;
    word-break: keep-all;
    overflow-wrap: normal;
}

.business-flex-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.business-first,
.business-second {
    width: 100%;
    position: relative;
    margin-bottom: 45px;
}

/* 数字 */
#business .number {
    position: absolute;
    top: -20px;
    left: -16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f74b3a;
}

#business .number p {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 700;
}

.business-first-flex,
.business-second-flex {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 88px 40px 67px;
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 50px;
}

.business-second-flex {
    padding: 54px 88px 36px 67px;
}

.business-first-flex-left,
.business-second-flex-left {
    width: 60%;
}

.business-first-flex-right,
.business-second-flex-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.first-flex-right-image,
.second-flex-right-image {
    width: 100%;
    margin-bottom: 37px;
}

.business-first-flex-text,
.business-second-flex-text {
    margin-left: 24px;
    letter-spacing: 4px;
}

.first-flex-right-text,
.second-flex-right-text {
    margin-bottom: 38px;
    line-height: 1.7;
    font-size: 14px;
}

.business-first-flex-left h3,
.business-second-flex-left h3 {
    margin-bottom: 29px;
    letter-spacing: 3px;
}

.business-first-flex-text h4,
.business-second-flex-text h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 19px;
    margin-left: 10px;
}

.business-first-flex-text p,
.business-second-flex-text p {
    margin-bottom: 26px;
    letter-spacing: 0;
    line-height: 2;
    margin-left: 9px;
}

.business-first-flex-list h5,
.business-second-flex-list h5 {
    margin-bottom: 16px;
    font-weight: 400;
    text-align: left;
}

.business-first-flex-list {
    margin-left: 8px;
    font-size: 14px;
    align-self: flex-start;
    max-width: 100%;
    overflow-x: auto;
}

.business-first-flex-list ul {
    min-width: max-content;
}

.business-second-flex-list {
    max-width: 100%;
    overflow-x: auto;
}

.business-second-flex-list ul {
    min-width: max-content;
}

.business-first-flex-list li,
.business-second-flex-list li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    line-height: 2.4;
    letter-spacing: 1px;
    white-space: nowrap;
}

.business-first-flex-list li::before,
.business-second-flex-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

#business .note-button {
    align-self: flex-end;
}

/*
#########################
## business-section-tb ##
#########################
*/
@media (max-width: 1280px) and (min-width: 641px) {
    .business-container {
        padding-left: 20px;
    }

    .business-inner {
        padding: 40px 32px 0;
    }

    #business .label {
        margin-bottom: 24px;
        padding: 0 14px;
    }

    .business-flex-right {
        max-width: 480px;
        margin: 0 auto;
    }

    .business-first-flex,
    .business-second-flex {
        align-items: center;
        gap: 24px;
    }

    .business-first-flex,
    .business-second-flex {
        padding: 48px 72px 48px 48px;
    }

    .business-flex-title h3 {
        margin-bottom: 40px;
    }

    .business-flex-text {
        margin-bottom: 40px;
    }
    .business-first-flex-left h3,
    .business-second-flex-left h3 {
        margin-bottom: 16px;
        margin-left: 8px;
    }

    .business-flex-list h4 {
        margin-bottom: 16px;
    }

    .business-first-flex-text p,
    .business-second-flex-text p {
        margin-bottom: 24px;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .business-container {
        padding: 0;
    }
    .business-flex {
        flex-direction: column;
    }

    .business-flex-left,
    .business-flex-right,
    .business-first-flex-left,
    .business-first-flex-right,
    .business-second-flex-left,
    .business-second-flex-right {
        width: 100%;
    }
    .business-first-flex,
    .business-second-flex {
        flex-direction: column;
        padding: 56px 24px 48px;
    }

    .business-first-flex-right,
    .business-second-flex-right {
        padding: 0 24px;
    }
    #business .note-button {
        align-self: center;
    }
}

/*
#########################
## business-section-sp ##
#########################
*/

@media (max-width: 640px) {
    .business-section {
        margin-bottom: 96px;
    }
    .business-container {
        padding: 0;
    }
    .business-inner {
        padding: 47px 20px 0;
        border-radius: 30px;
    }

    .business-flex {
        padding: 0;
        gap: 24px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 38px;
    }

    .business-flex-left,
    .business-flex-right {
        width: 100%;
    }

    .business-first,
    .business-second {
        margin-bottom: 41px;
    }

    .business-first-flex,
    .business-second-flex {
        padding: 39px 20px 39px 18px;
        gap: 9px;
        flex-direction: column;
        align-items: center;
        border-radius: 30px;
    }

    .business-second-flex {
        padding: 36px 15px 21px 20px;
        gap: 22px;
    }

    .business-first-flex-left,
    .business-first-flex-right,
    .business-second-flex-left,
    .business-second-flex-right {
        width: 100%;
    }

    #business .label {
        margin-bottom: 19px;
        padding: 0 14px;
    }

    #business .number {
        top: -13px;
        left: -9px;
        width: 38px;
        height: 38px;
    }

    #business .business-second .number {
        top: -17px;
        left: -9px;
    }

    #business .number p {
        font-size: 17px;
    }
    .business-flex-right {
        max-width: 310px;
        margin: 0 auto;
        padding-top: 0;
    }

    .business-flex-title h3 {
        font-size: 32px;
        margin-left: 9px;
        margin-bottom: 23px;
    }

    .business-flex-text {
        margin-bottom: 33px;
        margin-left: 11px;
        line-height: 2.6;
        letter-spacing: 2px;
    }

    .business-flex-list {
        margin-left: 11px;
        margin-bottom: 5px;
    }

    .business-flex-list h4 {
        margin-bottom: 18px;
        font-size: 20px;
        letter-spacing: 4px;
    }

    .business-first-flex-text,
    .business-second-flex-text {
        margin-left: 0;
    }

    .business-flex-list li,
    .business-first-flex-list li,
    .business-second-flex-list li {
        font-size: 12px;
        line-height: 2.6;
        letter-spacing: 1px;
        padding-left: 10px;
    }

    .business-first-flex-left h3,
    .business-second-flex-left h3 {
        font-size: 19px;
        letter-spacing: 4px;
        margin-bottom: 19px;
    }

    .business-first-flex-text h4,
    .business-second-flex-text h4 {
        font-size: 16px;
        margin-left: 0;
        letter-spacing: 1.5px;
        margin-bottom: 13px;
    }

    .business-first-flex-text p {
        margin-bottom: 12px;
        margin-left: 0;
    }
    .business-second-flex-text p {
        margin-bottom: 19px;
        margin-left: 0;
    }

    .business-first-flex-list {
        margin-left: 0;
    }

    .business-first-flex-list h5,
    .business-second-flex-list h5 {
        margin-bottom: 2px;
        font-size: 12px;
    }

    .business-first-flex-list li,
    .business-second-flex-list li {
        font-size: 12px;
        line-height: 2;
        letter-spacing: 0;
        padding-left: 6px;
    }

    .first-flex-right-image {
        margin-bottom: 15px;
    }
    .second-flex-right-image {
        margin-bottom: 10px;
    }

    .first-flex-right-text {
        margin-bottom: 35px;
        line-height: 1.7;
        font-size: 12px;
        letter-spacing: 1px;
    }
    .second-flex-right-text {
        margin-bottom: 9px;
        line-height: 1.7;
        font-size: 12px;
        letter-spacing: 1px;
    }

    #business .note-button {
        align-self: center;
    }
}

/*
########################
## technology-section ##
########################
*/

.technology-section {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 91px;
    padding-right: 205px;
    padding-left: 30px;
    color: #ffffff;
}

.technology-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.technology-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 92px 0px 76px 16px;
    gap: 88px;
}

#technology .technology-third {
    width: 100%;
    padding: 0px 90px 48px;
    position: relative;
}

#technology .number {
    position: absolute;
    top: -22px;
    left: 75px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f74b3a;
}

#technology .number p {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 700;
}

.technology-flex-left {
    max-width: 600px;
    width: 70%;
}

.technology-flex-right {
    width: 30%;
}

.technology-flex-right h3 {
    margin-bottom: 44px;
    font-size: 39px;
    font-weight: 400;
    letter-spacing: 2px;
}

.technology-flex-list h4 {
    font-size: 27px;
    margin-bottom: 17px;
    font-weight: 400;
}

.technology-flex-list li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    line-height: 2.4;
    letter-spacing: 1px;
}

.technology-flex-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.technology-third-flex {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 88px 40px 61px;
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 50px;
}

.technology-third-flex-left {
    width: 60%;
}

.technology-third-flex-right {
    width: 40%;
}

.technology-third-flex-left h3 {
    letter-spacing: 5px;
    margin-bottom: 27px;
}

.technology-third-flex-text h4 {
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    margin-left: 28px;
}
.technology-third-flex-text p {
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 2px;
    margin-left: 28px;
}

.technology-flex-text p {
    font-size: 14px;
    margin-bottom: 34px;
    line-height: 2.5;
    letter-spacing: 1px;
}

.technology-third-flex-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.third-flex-right-image {
    width: 100%;
    margin-bottom: 24px;
}

.third-flex-right-text {
    margin-bottom: 38px;
    line-height: 1.7;
    font-size: 14px;
}

#technology .note-button {
    align-self: flex-end;
}

/*
###################
## technology-tb ##
###################
*/

@media (max-width: 1280px) and (min-width: 641px) {
    .technology-section {
        padding-right: 40px;
    }

    .technology-container {
        padding-right: 0;
    }

    .technology-flex {
        padding: 40px 32px;
        gap: 24px;
    }

    .technology-third-flex {
        padding: 56px 72px 56px 56px;
        gap: 24px;
    }
    #technology .technology-third {
        padding: 0 32px 40px;
    }

    #technology .number {
        top: -8px;
        left: 24px;
    }

    .technology-flex-left {
        width: 60%;
        max-width: 500px;
    }

    .technology-flex-right {
        width: 40%;
    }

    .technology-flex-right h3 {
        margin-bottom: 40px;
    }

    .technology-flex-text p {
        margin-bottom: 32px;
    }

    .technology-flex-list h4 {
        margin-bottom: 24px;
    }

    .technology-third-flex-left h3,
    .technology-third-flex-text h4,
    .technology-third-flex-text p {
        margin-bottom: 24px;
    }

    .technology-third-flex-left h3 {
        margin-left: 8px;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .technology-section {
        padding-right: 20px;
    }
    .technology-flex {
        flex-direction: column;
        padding: 40px 24px;
    }
    .technology-flex-left {
        width: 100%;
        order: 2;
    }

    .technology-flex-right {
        width: 100%;
        order: 1;
    }
    .technology-flex-text {
        margin-left: 0;
    }
    .technology-flex-list {
        margin-left: 0;
    }
    .technology-third-flex {
        flex-direction: column;
        padding: 56px 48px 24px;
    }

    .technology-third-flex-left {
        width: 100%;
    }

    .technology-third-flex-right {
        width: 100%;
    }
    #technology .note-button {
        align-self: center;
    }
}

/*
###################
## technology-sp ##
###################
*/

@media (max-width: 640px) {
    .technology-section {
        padding: 0 10px;
        margin-bottom: 92px;
    }
    .technology-container {
        width: 100%;
        padding-right: 0;
        border-radius: 30px;
    }

    .technology-flex {
        padding: 30px 24px 45px 24px;
        gap: 31px;
        flex-direction: column;
        align-items: center;
    }

    .technology-flex-left,
    .technology-flex-right,
    .technology-third-flex-left,
    .technology-third-flex-right {
        width: 100%;
    }

    .technology-flex-left {
        padding-top: 0;
    }

    .technology-flex-left {
        order: 2;
        max-width: 310px;
        margin: 0 auto;
    }

    .technology-flex-right {
        order: 1;
    }

    .technology-flex-right h3 {
        margin-bottom: 19px;
        font-size: 32px;
        letter-spacing: 3px;
        line-height: 1.4;
    }

    .technology-flex-text {
        margin-left: 0;
    }

    .technology-flex-text p {
        margin-bottom: 34px;
        letter-spacing: 2px;
        font-size: 12px;
        line-height: 2.9;
    }

    .technology-flex-list h4 {
        font-size: 24px;
        margin-bottom: 17px;
    }

    .technology-flex-list {
        margin-left: 0;
    }

    .technology-flex-list ul {
        padding-left: 0;
    }

    .technology-flex-list li {
        font-size: 12px;
        line-height: 2.8;
        letter-spacing: 2px;
        padding-left: 14px;
    }

    #technology .technology-third {
        padding: 0 20px 41px 20px;
    }

    .technology-third-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 34px 20px 3px;
        gap: 0;
        border-radius: 30px;
    }

    #technology .number {
        top: -21px;
        left: 11px;
        width: 38px;
        height: 38px;
    }

    #technology .number p {
        font-size: 17px;
    }

    .technology-third-flex-left h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .technology-third-flex-text h4 {
        font-size: 16px;
        margin-bottom: 14px;
        margin-left: 0;
        letter-spacing: 1.5px;
    }

    #technology .technology-third-flex-text p {
        font-size: 12px;
        margin-bottom: 23px;
        margin-left: 0;
        letter-spacing: 0;
        line-height: 2;
    }

    .technology-third-flex-list li {
        font-size: 12px;
        line-height: 2.6;
        letter-spacing: 1px;
        padding-left: 14px;
    }

    .third-flex-right-image {
        width: 94%;
        margin-bottom: 13px;
    }

    .third-flex-right-text {
        margin-bottom: 23px;
        line-height: 1.4;
    }

    #technology .note-button {
        align-self: center;
        margin-bottom: 16px;
    }
}

/*
########################
## entertainment-section ##
########################
*/

.entertainment-section {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    color: #ffffff;
    margin: 0 auto 151px;
}

.entertainment-container {
    padding-left: 210px;
    padding-right: 27px;
}

.entertainment-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 93px 88px 0 91px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.entertainment-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 104px;
}

.entertainment-flex-left {
    width: 40%;
}

.entertainment-flex-right {
    width: 60%;
    padding-top: 37px;
}

.entertainment-flex-title h3 {
    font-size: 36px;
    margin-bottom: 44px;
    line-height: 1.4;
    letter-spacing: 7px;
}

.entertainment-flex-text {
    margin-bottom: 69px;
    line-height: 2.1;
}

.entertainment-flex-list h4 {
    margin-bottom: 18px;
    letter-spacing: 3px;
    font-size: 24px;
}

.entertainment-flex-list ul {
    line-height: 2.4;
}

.entertainment-flex-list li {
    list-style: none;
    position: relative;
    padding-left: 13px;
    font-size: 14px;
    letter-spacing: 1.5px;
    word-break: keep-all;
    overflow-wrap: normal;
}

.entertainment-flex-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/*
########################
## entertainment-tb ##
########################
*/

@media (max-width: 1280px) and (min-width: 641px) {
    .entertainment-container {
        padding-left: 20px;
    }

    .entertainment-inner {
        padding: 40px 32px 0;
    }

    .entertainment-flex-right {
        max-width: 480px;
        margin: 0 auto;
    }

    .entertainment-flex-title h3 {
        margin-bottom: 40px;
    }

    .entertainment-flex-text {
        margin-bottom: 40px;
    }

    .entertainment-flex-list h4 {
        margin-bottom: 16px;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .entertainment-container {
        padding: 0;
    }
    .entertainment-flex {
        flex-direction: column;
    }

    .entertainment-flex-left,
    .entertainment-flex-right {
        width: 100%;
    }
}

/*
########################
## entertainment-sp ##
########################
*/

@media (max-width: 640px) {
    .entertainment-section {
        margin-bottom: 96px;
    }
    .entertainment-container {
        padding: 0;
    }
    .entertainment-inner {
        padding: 47px 20px 0;
        border-radius: 30px;
    }

    .entertainment-flex {
        padding: 0;
        gap: 24px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 38px;
    }

    .entertainment-flex-left,
    .entertainment-flex-right {
        width: 100%;
    }

    .entertainment-flex-right {
        max-width: 310px;
        margin: 0 auto;
        padding-top: 0;
    }

    .entertainment-flex-title h3 {
        font-size: 32px;
        margin-left: 9px;
        margin-bottom: 23px;
    }

    .entertainment-flex-text {
        margin-bottom: 33px;
        margin-left: 11px;
        line-height: 2.6;
        letter-spacing: 2px;
    }

    .entertainment-flex-list {
        margin-left: 11px;
        margin-bottom: 5px;
    }

    .entertainment-flex-list h4 {
        margin-bottom: 18px;
        font-size: 20px;
        letter-spacing: 4px;
    }

    .entertainment-flex-list li {
        font-size: 12px;
        line-height: 2.6;
        letter-spacing: 1px;
        padding-left: 10px;
    }
}

/*
#############
## company ##
#############
*/

.company-section {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: 0 auto 280px;
    padding: 0 30px;
}

.company-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "label label"
        "left right";
    gap: 0 72px;
    background-color: #ffffff;
    padding: 120px 150px 93px 90px;
    border-radius: 50px;
}

#company .label {
    grid-area: label;
    padding-bottom: 78px;
}

#company .label-item {
    background: linear-gradient(to bottom, #e84a31, #f95036, #f78018);
    width: 30px;
    height: 30px;
}

#company .label-text {
    background: linear-gradient(to bottom, #e84a31, #f95036, #f78018);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    letter-spacing: 2px;
    margin-right: 30px;
}

#company .label-title {
    font-weight: 500;
    background: linear-gradient(to bottom, #e84a31, #f95036, #f78018);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.company-box-left {
    grid-area: left;
    width: 100%;
    margin-left: 64px;
}

.company-box-right {
    grid-area: right;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: 37px;
}

.company-box-right img {
    height: auto;
    object-fit: contain;
}

.company-table {
    width: 100%;
}

.company-table tr {
    border-bottom: 1px solid #000000;
}

.company-table th {
    padding: 25px 45px 25px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 4px;
    text-align: left;
}

.company-table td {
    width: 100%;
    padding: 23px 0;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.company-table .address:first-of-type {
    border-bottom: none;
    padding-bottom: 23px;
}

/*
################
## company-tb ##
################
*/

@media (max-width: 1280px) and (min-width: 641px) {
    .company-section {
        margin-bottom: 160px;
    }
    .company-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "left"
            "right";
        padding: 64px;
        border-radius: 30px;
        gap: 16px;
    }

    .company-box-left {
        margin-left: 0;
    }

    .company-table th {
        padding: 32px 16px;
        white-space: nowrap;
    }

    .company-table td {
        padding: 32px 16px;
    }
    .company-box-right {
        max-width: 480px;
        margin: 0 auto;
    }

    #company .label {
        padding-bottom: 0;
    }
}

/*
################
## company-sp ##
################
*/

@media (max-width: 640px) {
    .company-section {
        padding: 0 10px;
        margin-bottom: 90px;
    }
    .company-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "left"
            "right";
        padding: 32px;
        border-radius: 20px;
        gap: 0;
    }

    #company .label {
        padding-bottom: 14px;
    }

    #company .label-text {
        font-size: 12px;
        letter-spacing: 0;
        margin-right: 10px;
    }

    .company-box-left {
        margin-left: 0;
    }

    .company-table th {
        font-size: 12px;
        white-space: nowrap;
        padding: 18px 38px 18px 10px;
    }

    #company .label-item {
        width: 12px;
        height: 12px;
    }

    .company-table td {
        font-size: 12px;
        padding: 18px 13px;
    }

    .company-box-right {
        max-width: 237px;
        margin: 0 auto;
    }
}

/*
##########
## join ##
##########
*/

.join-section {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: 0 auto 170px;
}

.join-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
}

#join .label {
    margin-top: 69px;
    margin-bottom: 85px;
}

#join .label-item {
    background-color: #ffffff;
}

#join .label-text {
    margin-right: 84px;
    letter-spacing: 2px;
    padding-top: 3px;
    font-size: 15px;
    color: #ffffff;
}
#join .label-title {
    color: #ffffff;
    letter-spacing: 2px;
}

.join-box-left {
    width: 50%;
    padding: 0 0 72px 91px;
    color: #ffffff;
}

.join-box-left-content h4 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.join-box-right {
    max-width: 690px;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-box-left-content {
    padding: 0 40px 0 88px;
}

.join-text {
    font-size: 14px;
    line-height: 2.3;
    letter-spacing: 2px;
    margin-bottom: 37px;
}

.join-text-second {
    font-size: 14px;
    line-height: 2.4;
    letter-spacing: 2px;
    margin-bottom: 89px;
}

.join-button {
    max-width: 183px;
    width: 100%;
    max-height: 40px;
    height: 100%;
    color: #f15d14;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 10px;
}

.join-button a {
    font-size: 16px;
    font-weight: 400;
}

/*
#############
## join-tb ##
#############
*/

@media (max-width: 1280px) and (min-width: 641px) {
    .join-section {
        margin-bottom: 160px;
    }
    .join-container {
        padding: 0 32px;
    }
    .join-box-left {
        width: 100%;
        padding: 0 24px;
    }
    .join-box-right {
        width: 100%;
        margin: 0 auto;
    }
    .join-box-left-content {
        padding: 0 24px;
    }
    #join .label {
        margin-bottom: 40px;
    }
    .join-text-second {
        margin-bottom: 72px;
    }
    .join-box-right {
        max-width: 480px;
    }
    .join-text {
        margin-bottom: 24px;
    }
}

@media (max-width: 1048px) and (min-width: 641px) {
    .join-container {
        flex-direction: column;
        padding: 0 24px;
    }
    .join-box-left {
        width: 100%;
        padding: 0 24px;
    }
    .join-box-left-content {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .join-button {
        align-self: center;
        margin-bottom: 56px;
    }
}

/*
#############
## join-sp ##
#############
*/

@media (max-width: 640px) {
    .join-section {
        margin-bottom: 96px;
    }
    .join-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .join-box-left {
        width: 100%;
    }

    .join-box-right {
        width: 100%;
        margin: 0 auto;
    }

    #join .label {
        margin: 0 0 33px 9px;
    }
    #join .label-text {
        font-size: 12px;
        margin-right: 32px;
        padding-top: 0;
    }

    .join-box-left {
        padding: 0;
    }

    .join-box-left-content {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .join-box-left-content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .join-box-left-content p {
        font-size: 12px;
        line-height: 2;
    }

    .join-text {
        margin-bottom: 24px;
    }

    .join-text-second {
        margin-bottom: 28px;
        letter-spacing: 1.5px;
    }

    .join-button {
        max-width: 143px;
        align-self: center;
        margin-bottom: 56px;
        padding: 10px;
    }
    .join-button a {
        font-size: 12px;
    }
}

/*
##########
## form ##
###########
*/

.form-section {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: 0 auto 190px;
    padding: 0 32px 0;
}

.form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 160px 150px 195px 90px;
    border-radius: 20px;
}

#form .label-item {
    background: linear-gradient(to bottom, #e84a31, #f95036, #f78018);
}

#form .label {
    margin-bottom: 32px;
}

#form .label-text {
    background: linear-gradient(to bottom, #e84a31, #f95036, #f78018);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    margin-right: 30px;
}

#form .label-title {
    font-weight: 500;
    background: linear-gradient(to bottom, #e84a31, #f95036, #f78018);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-detail {
    line-height: 1.8;
    letter-spacing: 1.2px;
    font-size: 14px;
    margin: 0 0 99px 64px;
}

/* フォームスタイル */
.form-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 56px;
}
.form-box p {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%;
}

.form-box label {
    font-size: 14px;
    margin-bottom: 11px;
    font-weight: bold;
    letter-spacing: 1.2px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 20px 28px;
    background-color: #ffffff;
    border-radius: 50px;
    color: #000000;
    -webkit-text-fill-color: #000000;
    font-size: 14px;
    letter-spacing: 1.2px;
    box-sizing: border-box;
    resize: none;
}

/* 入力済みテキストを黒に（プレースホルダーは別指定のためグレーのまま） */
.form-box input:-webkit-autofill,
.form-box input:-webkit-autofill:hover,
.form-box input:-webkit-autofill:focus {
    -webkit-text-fill-color: #000000;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #999999;
    opacity: 1;
}

.form-box input::-webkit-input-placeholder,
.form-box textarea::-webkit-input-placeholder {
    color: #999999;
    -webkit-text-fill-color: #999999;
}

.form-box textarea {
    border-radius: 30px;
}

.form-box-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}
.form-box-item.last {
    margin-bottom: 24px;
}

/* 送信完了メッセージ（送信前は非表示） */
.form-thank-you-message {
    display: none !important;
    width: 100%;
    margin-bottom: 24px;
    padding: 16px 0;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.form-thank-you-message.is-visible {
    display: block !important;
}

.form-bottom.is-submitted .box_check,
.form-bottom.is-submitted .form-button {
    display: none;
}

.form-bottom.is-submitted {
    flex-direction: column;
    align-items: flex-start;
}

/* チェックボックスと送信ボタン（縦並び・中央揃え） */
.form-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.box_check label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.box_check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: #ea6124;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #ea6124;
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.box_check input[type="checkbox"]:checked {
    background-color: #ffffff;
}

.box_check input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ea6124;
    font-size: 14px;
    font-weight: bold;
}

.check {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    letter-spacing: 2px;
}

.check a {
    color: #ea6124;
    border-bottom: 1px solid #ea6124;
    text-decoration: none;
}

.check span {
    color: #333333;
}

.form-button {
    max-width: 90px;
    width: 100%;
    max-height: 40px;
    height: 100%;
    color: #ffffff;
    background: linear-gradient(to bottom, #f65a00, #eb6223, #e44230);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-button button {
    padding: 10px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* フォームエラー表示のスタイル */
.google-form input.error,
.google-form textarea.error {
    border: 1px solid #ff0000;
}

.google-form .error-message {
    color: #ff0000;
    font-size: 12px;
    display: none;
}

.google-form input.error + .error-message,
.google-form textarea.error + .error-message {
    display: block;
}

.box_check label.error {
    color: #ff0000;
}

.box_check input.error + .check + .error-message {
    display: block;
}

/*
########################
## form-sp,tb common ##
########################
*/

@media (max-width: 1280px) {
    .form-container {
        padding: 64px;
        border-radius: 30px;
    }

    .form-detail {
        margin: 0 0 36px 0;
    }

    .form-box {
        padding-left: 0;
    }

    .form-box input,
    .form-box textarea {
        padding: 16px;
    }

    .form-bottom {
        padding-left: 0;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    #form .label {
        margin-bottom: 0;
        padding-bottom: 48px;
    }
}

/*
#############
## form-sp ##
#############
*/

@media (max-width: 640px) {
    .form-section {
        padding: 0 10px;
        margin-bottom: 96px;
    }
    .form-container {
        padding: 32px;
    }
    #form .label {
        padding-bottom: 32px;
    }
    #form .label-text {
        margin-right: 10px;
    }
    .form-box label {
        font-size: 12px;
        gap: 7px;
    }

    .form-box-item {
        margin-bottom: 16px;
    }

    .form-detail {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .box_check input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .check a,
    .check span {
        font-size: 12px;
    }
}

/*
############
## footer ##
############
*/
#footer {
    width: 100%;
    height: 100%;
    padding: 119px 180px 80px;
    background-color: #ffffff;
}

.footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 140px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
}

.footer-scroll-top {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.footer-scroll-top-button {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-scroll-top a {
    font-family: "Inter", sans-serif;
    font-size: 27px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    text-align: center;
}
.footer-scroll-top p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

/* フッター本文 */

.footer-company-info {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1.2px;
}

.company-name {
    margin-bottom: 25px;
}

.company-tokyo-address,
.company-address {
    margin-bottom: 27px;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* contactボタン */
.footer-contact {
    max-width: 150px;
    width: 100%;
    max-height: 150px;
    height: 100%;
    margin-left: auto; /* 右端に寄せるために追加 */
    margin-bottom: 35px;
}

.contact-link {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background: linear-gradient(to bottom, #f65a00, #fc006e, #df00dd);
    text-decoration: none;
}

.contact-link p {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

/* フッター下部 */
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid #858585;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-policies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-policies ul {
    display: flex;
}

.policies-line {
    margin: 0 10px;
}

.footer-copyright {
    font-size: 14px;
    letter-spacing: 2.3px;
}

/*
###############
## footer-tb ##
###############
*/

@media (max-width: 1280px) and (min-width: 641px) {
    #footer {
        padding: 94px 56px 80px;
    }

    .footer-logo {
        max-width: 480px;
    }

    .contact-link {
        width: 120px;
        height: 120px;
    }

    .contact-link p {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        line-height: 2;
    }
}

@media (max-width: 880px) and (min-width: 641px) {
    .footer-logo {
        max-width: 380px;
    }
}

/*
###############
## footer-sp ##
###############
*/
@media (max-width: 640px) {
    #footer {
        padding: 37px 10px 44px;
    }

    .footer-head {
        margin-bottom: 109px;
    }
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 76px;
    }

    .footer-logo {
        max-width: 226px;
        width: 100%;
        max-height: 37px;
        height: 100%;
    }

    .footer-scroll-top {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .footer-scroll-top-button {
        padding: 8px 12px;
    }

    .footer-scroll-top a,
    .footer-scroll-top p {
        font-size: 12px;
        margin-bottom: 0;
    }

    /* フッター本文 */

    .company-name {
        margin-bottom: 23px;
    }

    .company-tokyo-address {
        margin-bottom: 23px;
    }

    /* contactボタン */
    .footer-contact {
        margin-bottom: 0;
    }
    .contact-link {
        width: 80px;
        height: 80px;
        margin-left: auto;
        margin-right: 16px;
        padding: 10px 0;
    }
    .contact-link p {
        font-family: "Inter", sans-serif;
        font-size: 12px;
        font-weight: 400;
    }

    /* フッター下部 */
    .footer-bottom {
        flex-direction: column;
    }

    .company-address {
        margin-bottom: 0;
    }

    .footer-policies {
        font-size: 12px;
    }

    .footer-policies ul {
        font-size: 12px;
        display: flex;
        flex-wrap: wrap; /* 要素を折り返すことを許可 */
        margin: 0 8px; /* 各項目の間にスペース */
        justify-content: center;
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .footer-policies li {
        white-space: nowrap; /* 各単語が折り返されないように */
        line-height: 2;
    }

    .footer-policies .is-sp {
        flex-basis: 100%; /* この要素だけ改行されて次の行に */
        margin-bottom: 18px;
    }
    .footer-copyright {
        letter-spacing: 1px;
    }
}

/*
#####################
## privacy-section ##
#####################
*/

.privacy-section {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 280px;
    padding: 0 30px;
}

.privacy-container {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 150px 93px 90px;
    border-radius: 50px;
}

.privacy-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.privacy-updated {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    margin-bottom: 48px;
}

.privacy-block {
    margin-bottom: 40px;
}

.privacy-block h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.privacy-block p,
.privacy-block li {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.privacy-block ul {
    margin: 12px 0 0 24px;
    padding: 0;
}

.privacy-block li {
    margin-bottom: 8px;
}

.privacy-link {
    color: #f15d14;
    text-decoration: underline;
}

.privacy-footer-text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
    margin-top: 48px;
    margin-bottom: 0;
}

@media (max-width: 1280px) and (min-width: 641px) {
    .privacy-section {
        margin-bottom: 160px;
    }
    .privacy-container {
        padding: 64px 48px 64px;
        border-radius: 30px;
    }
    .privacy-title {
        font-size: 28px;
    }
    .privacy-block h2 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .privacy-section {
        margin-bottom: 120px;
        padding: 0 10px;
    }
    .privacy-container {
        padding: 40px 20px 48px;
        border-radius: 20px;
    }
    .privacy-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .privacy-updated {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .privacy-block h2 {
        font-size: 16px;
    }
    .privacy-block p,
    .privacy-block li {
        font-size: 14px;
    }
}
