@charset "UTF-8";

/* CSS Document */
* {
    box-sizing: border-box
}

body {
    font-family: 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin: 0
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0
}

a {
    color: inherit
}

img {
    vertical-align: top;
}

/* header */
header {
    background-image: url(../img/integrated-cp/header.jpg);
    padding: 20px;
    color: #fff;
}

.head_wrap {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.logo img {
    height: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    align-items: center;
    font-size: 16px;
    line-height: 1em;
}

nav a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    header {
        padding: 12px 20px;
    }

    .logo {
        height: 16px;
    }

    nav {
        display: none;
    }
}

/* section */
section {
    padding: 80px 20px 0;
}

.sec_wrap {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.sec_title {
    font-size: 36px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 30px;
}

.sec_text {
    font-size: 18px;
    line-height: 1.6em;
    font-weight: bold;
    margin-bottom: 30px;
}

.sec_image {
    width: 100%;
}

.sec_notes {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    section {
        padding-top: 30px;
    }

    .sec_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sec_text {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 20px;
    }

    .sec_text br {
        display: none;
    }

    .sec_image {
        margin-bottom: 10px;
    }

    .sec_notes {
        font-size: 10px;
    }

}

/* main */
#top {
    padding: 30px 0;
    margin-bottom: 0;
}

.main_image {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 10px;
}

.main_image.sp {
    display: none;
}

.main_lead {
    display: inline-block;
    background: linear-gradient(90deg, #B11F2E, #E84C3D);
    color: #fff;
    font-feature-settings: 'palt';
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 15px;
    line-height: 1.4em;
    font-weight: bold;
    padding: 8px 16px 9px;
    border-radius: 8px;
}

.main_lead span {
    font-size: 18px;
    line-height: 1.4em;
    color: #ff0;
}

@media screen and (max-width: 767px) {
    #top {
        padding: 10px 0;
    }

    .main_image.sp {
        display: block;
    }

    .main_image.pc {
        display: none;
    }

    .main_lead {
        font-size: 13px;
        padding: 6px 12px 7px;
        border-radius: 6px;
    }

    .main_lead span {
        font-size: 16px;
    }
}

/* strong */
#strong {
    background: linear-gradient(45deg, rgb(198, 255, 221), rgb(251, 215, 134), rgb(247, 121, 125));
    padding: 20px;
}

#strong .sec_text {
    margin-bottom: 10px;
}

.strong_list {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.strong_list li {
    max-width: 240px;
    width: 100%;
    list-style: none;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
}

.strong_list li strong {
    display: block;
    font-size: 36px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.strong_list li span {
    display: block;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    #strong {
        padding: 10px 20px;
    }

    .strong_list {
        gap: 10px;
    }

    .strong_list li {
        padding: 10px;
    }

    .strong_list li strong {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .strong_list li span {
        font-size: 10px;
    }
}

/* about */
#about .sec_text {
    margin-bottom: 50px;
}

#about .sec_image {
    margin-bottom: 20px;
}

#about .sec_wrap {
    padding-bottom: 80px;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
    #about .sec_text {
        margin-bottom: 20px;
    }

    #about .sec_wrap {
        padding-bottom: 30px;
    }
}

/* merit */
#merits .sec_wrap {
    margin-bottom: 80px;
}

#merits .sec_title {
    margin-bottom: 50px;
}

.sec_merit {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: auto;
}

.merit_item img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #merits .sec_wrap {
        margin-bottom: 30px;
    }

    #merits .sec_title {
        margin-bottom: 20px;
    }

    .sec_merit {
        gap: 10px;
    }
}

/* result */
#results .sec_text {
    margin-bottom: 50px;
}

#results {
    background: linear-gradient(45deg, rgb(198, 255, 221), rgb(251, 215, 134), rgb(247, 121, 125));
    padding: 80px 20px;
}

.sec_result {
    max-width: 670px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: auto;
}

.result_item {
    max-width: 320px;
}

.result_item img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #results .sec_text {
        margin-bottom: 20px;
    }

    #results {
        padding: 30px 20px;
    }

    .sec_result {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* acount */
#acounts .sec_wrap {
    margin-bottom: 80px;
}

#acounts .sec_title {
    margin-bottom: 50px;
}

.sec_acount {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    margin: auto;
}

.acount_item img {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #999;
}

@media screen and (max-width: 767px) {
    #acounts .sec_wrap {
        margin-bottom: 30px;
    }

    #acounts .sec_title {
        margin-bottom: 20px;
    }

    .sec_acount {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }
}

/* voice */
#voices {
    background: linear-gradient(45deg, rgb(198, 255, 221), rgb(251, 215, 134), rgb(247, 121, 125));
    padding: 80px 20px;
}

#voices .sec_title {
    margin-bottom: 50px;
}

.sec_voice {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: auto;
}

.voice_item img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #voices {
        padding: 30px 20px;
    }

    #voices .sec_title {
        margin-bottom: 20px;
    }

    .sec_voice {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

/* contact */
#contact .sec_wrap {
    margin-bottom: 80px;
}

.contact_btn {
    display: inline-block;
    padding: 21px 30px;
    background-color: #cb1427;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1em;
    border-radius: 30px;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    #contact .sec_wrap {
        margin-bottom: 30px;
    }

    .contact_btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

/* mtg */
#meeting {
    background-color: #f2f4f8;
    padding: 80px 20px;
}

@media screen and (max-width: 767px) {
    #meeting {
        padding: 30px 20px;
    }
}

/* footer */
footer {
    background-color: #cb1427;
    color: #fff;
}

.footer_wrap {
    max-width: 1000px;
    margin: auto;
    padding: 29px 20px;
    text-align: center;
}

.footer_text {
    font-size: 12px;
    line-height: 1em;
}

@media screen and (max-width: 767px) {
    .footer_wrap {
        padding: 20px;
    }

    .footer_text {
        font-size: 10px;
    }
}

/* floating_btn */
.floating_btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    animation-name: updown;
    animation-delay: 0s;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0)
    }
}

.floating_btn p {
    background: linear-gradient(90deg, #B11F2E, #E84C3D);
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1em;
    padding: 21px 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.floating_btn.is-hidden {
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width:767px) {
    .floating_btn {
        width: 80%;
        margin: auto;
        left: 0;
        right: 0;
        bottom: 10px;
    }

    .floating_btn p {
        font-size: 14px;
        padding: 18px 30px;
    }
}