@charset "UTF-8";

/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
    font-family: var(--font-notoserifjp);
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.05em;
    line-height: 2;
    text-decoration: none;
}
a , 
a:hover{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.row {
    margin: 0;
}
/* 共通 */
:root {
    /* --color-beige: #F6F2EF; */
    --color-beige: #f6f3f1;
    --color-orange-1: #FC8559;
    --color-orange-2: #FBCF81;
    --color-red: #e91e15;
    --color-white: #fff;
    --color-black: #3e3e3e;
    --color-gray: #F2F2F2;
    --font-notoserifjp: 'Noto Serif JP', 'Noto Serif', serif;
    --font-notosansjp: 'Noto Sans JP', 'Noto Sans', sans-serif;
}
.color-beige {
    color: var(--color-beige);
}
.color-orange-1 {
    color: var(--color-orange-1);
}
.color-orange-2 {
    color: var(--color-orange-2);
}
.color-red {
    color: var(--color-red);
}
.color-white {
    color: var(--color-white);
}
.color-black {
    color: var(--color-black);
}
.color-gray {
    color: var(--color-gray);
}

.bg-beige {
    background-color: var(--color-beige);
}
.bg-orange-1 {
    background-color: var(--color-orange-1);
}
.bg-orange-2 {
    background-color: var(--color-orange-2);
}
.bg-red {
    background-color: var(--color-red);
}
.bg-white {
    background-color: var(--color-white);
}
.bg-black {
    background-color: var(--color-black);
}
.bg-gray {
    background-color: var(--color-gray);
}
html {
    font-size: 10px;
}
@media screen and (max-width: 769px) {
    html {
        font-size: 8px;
    }
}

/* 見出し */
.h1-title {
    font-size: 4.8rem;
    font-weight: 700;
    text-align: start;
    width: fit-content;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(110deg, var(--color-orange-1), #767AB6, var(--color-orange-1));
    padding: 14px;
}
.h1-title span {
    color: var(--color-white);
    font-family: var(--font-notosansjp);
    /* width: fit-content; */
    display: block;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    /* padding: 0 16px; */
    font-size: 4.8rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.8;
    text-align: center;
}
.op {
    opacity: 0;
    transform: translateY(30px);
}
.op-fadeInUp {
    animation: fadeInUp 1.5s cubic-bezier(0.17, 0.86, 0.11, 1.02) forwards;
}
.delay-1 {
    transition-delay: 0.15s;
    animation-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

.animation-delay-1 {
    animation-delay: 0.5s;
}

.animation-delay-2 {
    animation-delay: 1s;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.h1-subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    /* text-align: start; */
    font-family: var(--font-notosansjp);
    /* width: fit-content; */
    color:  var(--color-white);
    /* background: linear-gradient(90deg, var(--color-orange-1), #767AB6, var(--color-orange-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.h2-title {
    font-size: 4.2rem;
    font-weight: 700;
    text-align: center;
    padding: 0 20px 20px;
    width: fit-content;
    margin: 0 auto;
    border-bottom: 4px solid var(--color-orange-1);
    border-bottom: none;
    padding: 0;
    color: var(--color-orange-1);
    line-height: 1.5;
}

.h2-title-about {
    font-size: 2.8rem;
    padding: 20px;
    background-color: rgba(251, 191, 36);
    font-weight: bold;
    border-radius: 300px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}


.h3-title {
    font-size: 2.4rem;
    font-weight: 700;
    padding: 10px 20px;
    border-left: 6px solid var(--color-orange-1);
    line-height: 1.5;
}
@media screen and (max-width: 1240px) {
    .h1-title span {
        font-size: 4.2rem;
    }
}
@media screen and (max-width: 960px) {
    .h1-title span {
        white-space: normal;
        font-size: 3.2rem;
    }
}
@media screen and (max-width: 769px) {
    .h1-title {
        font-size: 3.2rem;
    }
    .h1-subtitle {
        font-size: 2.4rem;
    }
    .h1-title span {
        white-space: normal;
        font-size: 3.2rem;
    }
}

/* フォントサイズ */
.font-size-10 {
    font-size: 1rem;
}
.font-size-14 {
    font-size: 1.4rem;
}
.font-size-16 {
    font-size: 1.6rem;
}
.font-size-18 {
    font-size: 1.8rem;
}
.font-size-20 {
    font-size: 2rem;
}
.font-size-24 {
    font-size: 2.4rem;
}
.font-size-28 {
    font-size: 2.8rem;
}
.font-size-32 {
    font-size: 3.2rem;
}
.font-size-36 {
    font-size: 3.6rem;
}

/* 余白 */
/* 余白 */
.mt8 {
    margin-top: 0.8rem;
}
.mt16 {
    margin-top: 1.6rem;
}
.mt32 {
    margin-top: 3.2rem;
}
.mt48 {
    margin-top: 4.8rem;
}
.mt64 {
    margin-top: 6.4rem;
}
.mt80 {
    margin-top: 8rem;
}
.mt120 {
    margin-top: 12rem;
}
.mb8 {
    margin-bottom: 0.8rem;
}
.mb16 {
    margin-bottom: 1.6rem;
}
.mb32 {
    margin-bottom: 3.2rem;
}
.mb48 {
    margin-bottom: 4.8rem;
}
.mb64 {
    margin-bottom: 6.4rem;
}
.mb80 {
    margin-bottom: 8rem;
}
.mb120 {
    margin-bottom: 12rem;
}

section.container-fluid {
    padding: 120px 40px;
}
@media screen and (max-width: 769px) {
    section.container-fluid {
        padding: 80px 20px;
    }
}


/* ボタン */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    background: linear-gradient(90deg, #FA775C, #FC8D61);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1.8rem;
    border: 0;
    cursor: pointer;
    transition: 0.2s;
}
.btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    scale: 0.95;
    transition:  0.2s;
}

.btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.content-wrapper {
    margin: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

/* header */
body {
    padding-top: 80px;
}
header {
    height: 80px;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    gap: 16px;
}
header .logo a {
    display: flex;
    align-items: center;
    width: fit-content;
}
header .logo a img {
    width: 160px;
    height: auto;
}
@media screen and (max-width: 769px) {
    header {
        padding: 10px;
    }
    header .logo a img {
        width: 100px;
    }
    header .btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}


/* hero */
.hero {
    padding: 50px 80px;
    height: auto;
    background: url("/bizhub-wayo/images/topimg.png") no-repeat center center / cover;
    position: relative;
}
.hero::before {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #525067;
    opacity: 0.6;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
}
.hero-content-wrapper {
    justify-content: center;
    gap: 20px;
}
.hero-content {
    position: relative;
}
.hero-img {
    max-width: 480px;
}
.hero-img img {
    width: 100%;
}
.hero-contact-btn {
    display: none;
}
@media screen and (max-width: 960px) {
    .hero-contact-btn {
        display: flex;
    }
}
@media screen and (max-width: 769px) {
    .hero {
        padding: 50px 0px;
    }
    .hero-content {
        max-width: 360px;
        margin: 0 auto;
    }
    .h1-title span {
        font-size: 2.8rem;
        text-align: center;
    }
    .h1-subtitle {
        font-size: 2rem;
        text-align: center;
        /* margin: 20px auto; */
    }
    .troubles-content {
        gap: 40px;
    }   
}

/* troubles */
.troubles-content-item {
    max-width: 320px;
    margin: 0 auto;
}

.troubles-content img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    border-radius: 50%;
}

/* strength */
.strength-list-item {
    padding: 20px;
    border-left: 8px solid var(--color-orange-1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.strength-list-item dt {
    font-weight: 500;
}

/* company */
.company-content {
    gap: 40px;
}
.company-content-item {
    padding: 32px;
    border-radius: 10px;
    max-width: calc(100% - 40px);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 769px) {
    .company-content-item {
        max-width: none;
    }
}

.company-content-item img {
    display: block;
    width: 240px;
    margin: 0 auto;
}

/* case */
.case-content-info {
    padding: 32px;
    gap: 40px;
    border-radius: 10px;
}
.case-content-info li {
    margin-bottom: 8px;
}
.case-content-image {
    background-color: var(--color-beige);
    width: 30%;
    min-width: 160px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}
.case-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.case-content-info-title {
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}
.case-content-comment {
    gap: 20px;
}
.case-content-comment-title {
    display: flex;
    padding: 10px 20px;
    border-radius: 16px;
    background-color: var(--color-orange-1);
    height: auto;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    position: relative;
}
.case-content-comment-title::before {
    content: "";
    position: absolute;
    top: -36px;
    left: 30px;
    width: 0px;
    height: 0;
    border-style: solid;
    border-width: 36px 24px 0px 0px;
    border-color: transparent var(--color-orange-1) transparent transparent;
}
.case-content-comment-title h4 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-white);
}

/* flow */
#flow {
    position: relative;
}
.flow-steps {
    position: relative;
}
.flow-steps::before {
    content: "";
    display: block;
    border-top: 2px dotted var(--color-orange-1);
    width: 100%;
    position: absolute;
    left: 0;
    top: 28px;
}

.flow-steps .step-description p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.24em;
}

.step-number {
    font-size: 2.4rem;
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, var(--color-orange-1), #FBCF81);
    color: var(--color-white);
    letter-spacing: 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 769px) {
    .flow-steps {
        gap: 20px;
    }
    .flow-step {
        flex-direction: row;
    }
    .flow-steps .step-description p {
        writing-mode: unset;
        text-align: start;
    }
    .flow-steps::before {
        border-left: 2px dotted var(--color-orange-1);
        width: 0;
        height: 100%;
        left: 28px;
        top: 0;
    }
}

/* market */
.market-image {
    width: 100%;
    background-color: var(--color-gray);
    height: 500px;
}

/* faq */
/* .faq-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
}

.faq-table th, .faq-table td {
    border: 1px solid #dfdfdf;
    padding: 10px;
    text-align: left;
    color: var(--color-black);
    font-size: 1.8rem;
}

.faq-table th {
    background-color: var(--color-beige);
    font-weight: bold;
    font-size: 1.8rem;
}

.faq-table th.color-blue {
    color: #0C328F;
}

.faq-table th.color-orange-1 {
    color: var(--color-orange-1);
} */

.faq-content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 20px;
}
.faq-question {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
}
.faq-answer {
    margin-top: 10px;
    padding-left: 20px; 
}
.faq-answer p ,
.faq-answer strong {
    font-size: 1.8rem;
    color: #a8a8a8;
}


/* footer */
footer {
    padding: 80px 40px 10px;
}
.contact-content {
    padding: 32px;
    border-radius: 20px;
    border: 4px solid var(--color-gray);
}
.company-link {
    gap: 40px;
}
.company-link-item {
    padding: 3.2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 360px;
    transition: 0.2s;
}
.company-link-item:hover {
    background-color: #e3e3e3;
    transition: 0.2s;
}

.company-link-item .company-logo {
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
.company-link-item .company-logo img {
    width: 100%;
    height: auto;
}



/* -------------------
お問い合わせフォーム
------------------- */
.row {
    margin-right: 0;
    margin-left: 0;
}
.row>* {
    padding: 0;
}
.contact-wrapper {
    max-width: 750px;
    min-height: 100vh;
    padding: 50px 5%;
    position: relative;
}
.contact-wrapper .h2 {
    margin-bottom: 70px;
}
.contact-wrapper .contact-btn {
    margin: 10px auto 20px;
    color: #fff;
}
.contact-wrapper .col-12 {
    padding: 0 !important;
}
.col-form-label {
    margin-bottom: 5px;
    margin-bottom: 5px;
}
.contact-footer {
    padding-top: 0;
}
.contact-footer .footer-copyright {
    margin-top: 0;
}

.form-group {
    margin-bottom: 24px;
    padding: 0;
}
.cr-text span {
    font-size: 12px;
    color: #dddddd;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.aute-addr {
    background-color: #000000;
    color: #fff;
}
.aute-addr:hover {
    background-color: #585858;
    color: #fff;
}
.alert-warning {
    background-color: transparent;
    border: none;
}
.alert-danger {
    padding: 5px;
    margin-top: 10px;
    font-size: 1.4rem;
}
.conform-row {
    margin-bottom: 20px;
    border-bottom: 1px solid #c0c0c0;
}
.conform-row .col-form-label {
    margin-bottom: 4px;
    color: #c0c0c0;
}
.conform-text div {
    font-size: 1.6rem;
}

.flow-contact {
    position: fixed;
    height: 120px;
    bottom: 77px;
    right: 0;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    width: auto;
    padding: 0 20px;
    z-index: 5;
}

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

.contact-wrapper .col-12 {
    font-size: 14px;
    font-weight: 700;
}
.form-control {
    height: auto;
    font-size: 16px;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: 1px solid #c0c0c0;
}
.form-control::placeholder {
    color: #c0c0c0;
}
.badge-danger {
    color: #ff0016;
    background-color: transparent;
    padding: 0;
    margin-right: 4px;
    font-size: 1.6rem;
}
.purpose label ,
.privacy-policy label {
    font-size: 1.4rem;
}
.privacy-policy a {
    text-decoration: underline;
}
.purpose-checkbox {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}

@media screen and (max-width :1080px){
    .flow-contact {
        display: none !important;
    }
}

/* iframe */
.contact-iframe {
    /* position: absolute;
    top: 150px;
    right: 40px; */
    border-radius: 20px;
    /* width: calc(50vw - 80px); */
    width: 100%;
    max-width: 640px;
    min-width: 320px;
    overflow: hidden;
    height: calc(100vh - 250px);
    min-height: 700px;
}

.contact-iframe iframe {
    transform: translateY(-80px);
    height: calc(100% + 80px);
}

@media screen and (max-width :960px){
    .contact-iframe {
        display: none !important;
    }
    
}