@charset "UTF-8";

:root {
    --corporate-blue: #01A8BD;
    --cv_orange: #F39800;
    --cv_red: #FF6E40;
    --product-blue: #62CBC7;
    --text-blue: #33A39F;
    --white: #fff;
    --black: #333;
    --grey: #4f4f4f;
    --separator: #e0e0e0;
    --bg-grey: #F4F6F6;
    --bg-corporate-blue:#E3F2F1;
    --bg-product-blue: #EBF9F9;
    --font-size-default: 16px;
    --font-size-headline: 40px;
    --font-size-strong: 18px;
    --font-size-mv: 50px;
    --font-size-mv-large: 60px;
    --font-size-mv-xlarge: 70px;
    --font-size-xlarge: 36px;
    --font-size-large: 24px;
    --font-size-middle: 20px;
    --margin-xlarge: 100px;
    --margin-large: 60px;
    --margin-middle: 40px;
    --margin-small: 32px;
    --margin-xsmall: 20px;
    --margin-contents: 24px;
    --section-padding: 100px 16px;
    --padding-card: 20px 24px;
}

@media screen and (max-width:769px) {
    :root {
        --font-size-default: 14px;
        --font-size-headline: 24px;
        --font-size-strong: 16px;
        --font-size-mv: 40px;
        --font-size-mv-large: 32px;
        --font-size-mv-xlarge: 50px;
        --font-size-xlarge: 28px;
        --font-size-large: 20px;
        --font-size-middle: 16px;
        --margin-xlarge: 70px;
        --margin-large: 40px;
        --margin-middle: 32px;
        --margin-small: 24px;
        --margin-xsmall: 16px;
        --margin-contents: 16px;
        --section-padding: 60px 16px;
        --padding-card: 16px 16px;
    }
}

body {
    font-size: var(--font-size-default);
    color: var(--black);
    letter-spacing: .03rem;
    line-height: 1.7;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
}

main {
    margin: 0 auto;
}

.text_strong {
    font-size: var(--font-size-strong);
    font-weight: bold;
}

.text_middle {
    font-size: var(--font-size-middle);
    font-weight: bold;
}

.text_large {
    font-size: var(--font-size-large);
    font-weight: bold;
}

.text_xlarge {
    font-size: var(--font-size-xlarge);
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-justify-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

section {
    padding: var(--section-padding);
}

.max-content {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

input {
    appearance: auto;
    border: 1px solid var(--separator);
}

.bg-grey {
    background: var(--bg-grey);
}

.bg-blue {
    background: var(--bg-product-blue);
}

/*header */
header {
    border-bottom: 1px solid var(--separator);
    height: 100px;
}

header div{
    height: 100%;
}

header > div {
    justify-content: space-between;
    padding: 0 16px;
}

header .logo_area,
header picture {
    width: 40%;
    max-width: 300px;
}

header .menu{
    flex-grow: 2;
    justify-content: end;
    align-items: center;
}

header .menu li {
    margin-left: 20px;
}

header .menu li:not(:last-child) a:hover {
    color: var(--corporate-blue);
    font-weight: bold;
}

header img {
    object-fit: contain;
}

h2 {
    font-size: var(--font-size-headline);
    font-weight: bold;
    text-align: center;
    margin-bottom: var(--margin-large);
}

h2 span {
    display: block;
    font-size: var(--font-size-large);
    color: var(--corporate-blue);
    margin-bottom: var(--margin-contents);
}

.cv_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: var(--cv_orange);
    color: var(--white);
    font-size: var(--font-size-strong);
    height: 64px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
}

header .cv_button{
    height: 50px;
    width: 160px;
    font-size: var(--font-size-default);
}

.cv_button:hover {
    opacity: 0.8;
}

footer {
    background: var(--grey);
    color: var(--white);
    padding: 60px;
    text-align: center;
}

.contact {
    background: var(--corporate-blue);
    position: relative;
}

.contact-bg {
    height: 1165px;
}

.contact form {
    flex-grow: 2;
    gap: var(--margin-middle) 0;
}

.contact label {
    margin-bottom: var(--margin-xsmall);
}

.contact .error {
    color: #db0e0e;
}


.contact input[type=text] {
    height: 50px;
}

.contact textarea {
    border: solid 1px var(--separator);
}

.contact input[type=checkbox] {
    height: 24px;
}

.contact .inputs div {
    margin-bottom: 8px;
}

.contact .content-inner {
    gap: 0 var(--margin-large);
    background: var(--white);
    border-radius: 8px;
    margin-top: var(--margin-xlarge);
    padding: 60px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
}

.faq dl {
    width: 60%;
    margin: 0 auto;
}

.faq dt {
    padding: 16px 24px;
    margin: 0 0 30px 0;
}

.faq dl dd:nth-child(n + 2) {
    margin-bottom: 24px;
}

.faq dt::before {
    content: "Q";
    color: var(--corporate-blue);
}

.faq dd span {
    display: block;
    margin: 0 16px;
    color: var(--cv_orange);
    font-weight: bold;
}

.menu_icon {
    display: none;
}

/*---------- page(thanks) -----------*/

.thanks p {
    font-size: var(--font-size-default);
    text-align: center;
    margin-bottom: 160px;
}
.thanks .content-inner {
    gap: 0 var(--margin-large);
    background: var(--white);
    border-radius: 8px;
    margin: var(--margin-xlarge) 0;
    padding: 60px;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
}
.u520_none {
    display: inline;
}

@media screen and (max-width: 1100px) {
    .menu li:not(:last-child)  {
        display: none;
    }
}

@media screen and (max-width: 769px) {
    header {
        height: 70px;
        position: relative;
    }

    .menu_container {
        visibility: visible;
        width: 40px;
        height: 40px;
    }

    .sp_menu li:focus-within {
        visibility: visible;
    }

    .menu_icon {
        display: inline-block;
    }

    .sp_menu > a {
        width: 40px;
        height: 40px;
        display: inline-block;
        background-image: url(/img/menu.png);
    }

    .close {
        width: 40px;
        height: 40px;
        display: block;
        background-image: url(/img/close.png);
    }

    .sp_menu > ul {
        display: none;
    }

    .sp_menu > ul {
        position: relative;
        top: 0;
        width: 100%;
        background: var(--white);
    }

    .sp_menu:focus-within ul {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 1;
        padding: var(--padding-card);
        box-shadow: 0 4px 2px #e0e0e0;
    }

    .sp_menu:focus-within ul .close {
        position: absolute;
        top: 0;
        right: 8px;
    }

    .sp_menu:focus-within ul li a {
        display: inline-block;
        width: 100%;
        padding: 16px 0;
    }

    .menu {
        display: none;
    }

    #contact .flex, #service .flex {
        flex-direction: column;
    }

    #contact > .flex {
        width: 95%;
    }

    .contact .content-inner {
        padding: var(--margin-large) var(--margin-contents);
    }

    #corporate .flex {
        flex-direction: column;
    }

    .faq .faq-container {
        flex-direction: column;
    }

    .faq .faq-container dl {
        width: 100%;
    }
}
@media screen and (max-width: 520px) {
    .u520_none {
        display: none;
    }
    .thanks p {
        text-align: left;
    }
}

/* safariのみメニュー非表示 */
::-webkit-full-page-media, :future, .sp_menu > a{
    display: none;
}