@charset "UTF-8";


html {
    font-size: 100%;
}

body {
    background-color: #575C60;
    /* 背景色 */
    color: #fff;
    /* 全体の文字色　a要素を除く */
    font-family: 'KleeOne', 'Sansation', 'sans-serif';
}

h1 {
    width: 80%;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li::marker {
    font-size: 40%;
}

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


a:hover {
    opacity: 0.7;
}

body {
    font-family: "Klee One", cursive;
    font-weight: 300;
    font-style: normal;
}

.menu {
    font-family: "Sansation", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.description {
    font-size: 16px;
    line-height: 2;
}

/* =============================
ここからtitle共通
================================*/
.title {
    color: #fff;
    font-size: 36px;
    font-family: "Sansation", sans-serif;
    font-weight: 400;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #0e2f91 0%, #1b5a94 100%);
    /* opacity: 0.5; */
    animation: Grad 2s infinite alternate;
}

@keyframes Grad {
    0% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        -webkit-filter: hue-rotate(60deg);
        filter: hue-rotate(60deg);
    }
}

/* =============================
ここまでtitle共通
================================*/

/* =============================
ここからheader
================================*/
#header {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: flex-end; */
    height: 50px;
    margin: 2px 50px 20px;
    position: fixed;
    width: 80%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

#header .img_logo {
    max-width: 50px;
    height: auto;
    margin-bottom: -6px;
}

#header .name {
    font-size: 24px;
    font-weight: 200;
    margin-left: 10px;
}


#header .logo_text {
    display: flex;
    align-items: flex-end;
    margin-top: 3px;
}

.navi {
    margin: 30px 40px 0 7px;
    position: fixed;
    right: 10px;
    top: 2px;
    z-index: 100;
}

.navi .menu {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    list-style: none;
    font-size: 14px;
}

.navi .menu a {
    /* border: solid 1px blue; */
    margin-left: 20px;

}

.navi .menu li:last-child a {
    padding: 5px 20px;
    background: linear-gradient(150deg, #0e2f91 0%, #1b5a94 100%);
    /* opacity: 0.5; */
    animation: Grad 2s infinite alternate;
}

@keyframes Grad {
    0% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        -webkit-filter: hue-rotate(60deg);
        filter: hue-rotate(60deg);
    }
}

/* =============================
header_sp
================================*/
@media screen and (max-width: 767px) {
    #header {
        height: 40px;
        margin: 2px 20px 10px;
    }

    #header .img_logo {
        max-width: 40px;
        margin-bottom: -5px;
    }

    #header .name {
        font-size: 20px;
        margin-left: 5px;
    }

    /* ナビメニューを右に隠す */

    .menu a {
        margin-left: 0;
    }

    .navi {
        display: none;
    }

    /* ハンバーガーメニューを作る */
    #header .hamburger {
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: fixed;
        top: 5px;
        right: 10px;
        z-index: 200;
    }

    #header .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #FFF;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: all 0.4s;
    }

    #header .hamburger span:nth-of-type(1) {
        top: 16px;
    }

    #header .hamburger span:nth-of-type(2) {
        top: 25px;
    }

    #header .hamburger span:nth-of-type(3) {
        top: 34px;
    }

}

/* =============================
ここまでheader
================================*/


/* =============================
ここからmainvisual
================================*/

.slider {
    position: relative;
    /* これを追加 */
    z-index: 1;
    height: 100vh;
    margin-top: 62px;
    margin-bottom: 200px;
}


.catchphrase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 60px;
    color: #fff;
    z-index: 10;
    /* スライダー画像より前に表示 */
    text-align: center;
    text-shadow:
        0 0 1.5em black,
        0 0 1em black,
        0 0 0.3em black,
        0 0 0.2em black,
        0 0 0.1em black;
}

/* =============================
mainvisual_sp
================================*/
@media screen and (max-width: 767px) {
    .slider {
        margin-bottom: 100px;
    }

    .catchphrase {
        font-size: 28px;
    }
}

/* =============================
ここまでmainvisual
================================*/


/* =============================
ここからconcept
================================*/
.concept .concept_title {
    margin-bottom: 40px;
    color: #fff;
    font-size: 38px;
    font-weight: 400;
    display: flex;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
    padding: 10px 0 15px 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #071b55 0%, #07437b 100%);
    /* opacity: 0.5; */
    animation: Grad 3s infinite alternate;
}

@keyframes Grad {
    0% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        -webkit-filter: hue-rotate(60deg);
        filter: hue-rotate(60deg);
    }
}

.concept ul {
    padding-left: 20px;
}

/* 背景のグラデーションアニメーション */

.concept .description {
    width: fit-content;
    margin: auto;
    margin-bottom: 60px;
}

.concept .img_c {
    justify-content: center;
    margin: 40px;
}

.concept img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.concept {
    margin-bottom: 200px;
}

/* =============================
concept_sp
================================*/
@media screen and (max-width: 767px) {

    .concept .concept_title {
        margin-bottom: 40px;
        font-size: 20px;
    }

    .concept ul {
        padding-left: 20px;
    }

    .concept .description {
        font-size: 12px;
    }

    .concept img {
        height: 300px;
    }

    .concept {
        margin-bottom: 100px;
    }

}

/* =============================
ここまでconcept
================================*/


/* =============================
ここからworks
================================*/
.works {
    margin-bottom: 200px;
}

.works .title {
    margin-bottom: 5px;
}

.works .title_p {
    margin-bottom: 80px;
}

.works .ul_total {
    margin: 0 40px;
}

.works .item {
    display: flex;
    flex-wrap: wrap;
}

.works .item li {
    width: 30%;
    margin: 0 5% 5% 0;
    list-style: none;
    margin-bottom: 10px;
    /* overflow: hidden; */

}

.works .item li:first-child {
    width: 100%;
}

.works .item .img1 {
    width: 100%;
    height: 400px;
    /* object-fit: cover; */
    /* transition: all 0.3s; */
}

.works .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s;
}

.works .item .img1:hover {
    transform: scale(1.012);
}

.works .item img:hover {
    transform: scale(1.03);
}

.works .item li:nth-child(3n+1) {
    margin-right: 0;
}

.works .img {
    box-shadow: 5px 5px 10px rgb(65, 65, 65);
}

.works p {
    text-align: center;
    font-size: 16px;
    margin: 5px auto 5px;
}

.works .btn_sp {
    display: none;
}

/* =============================
works_sp
================================*/
@media screen and (max-width: 767px) {
    .works {
        margin-bottom: 60px;
    }

    .works .title {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .works .title_p {
        margin-bottom: 40px;
    }


    .works .item .img1 {
        height: 300px;
    }

    .works .btn_sp {
        display: none;
    }
}

/* =============================
ここまでworks
================================*/


/* =============================
ここからreason
================================*/
.reason .reason_block {
    position: relative;
    margin-bottom: 100px;
    margin-left: 40px;
    margin-right: 40px;
}

.reason .reason_t_p {
    width: 80%;
    color: #0e2f91;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 100px 40px 100px 40px;
    position: absolute;
    top: 50%;
    /* 上から50%の位置 */
    left: 40%;
    /* 左から50%の位置 */
    transform: translate(-50%, -50%);
    /* 要素の中心を正確に中央に移動 */
    z-index: 50;
}

.reason .reason_t_p2 {
    width: 80%;
    color: #0e2f91;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 100px 40px 100px 40px;
    position: absolute;
    top: 50%;
    /* 上から50%の位置 */
    left: 60%;
    /* 左から50%の位置 */
    transform: translate(-50%, -50%);
    /* 要素の中心を正確に中央に移動 */
    z-index: 50;
}

.reason .reason_title {
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    padding-bottom: 40px;
}

.reason .reason_img {
    text-align: right;
}

.reason .reason_img2 {
    text-align: left;
}

.reason img {
    width: 90%;
    height: 600px;
    object-fit: cover;
}

.reason {
    margin-bottom: 200px;
}

/* =============================
reason_sp
================================*/
@media screen and (max-width: 767px) {

    .reason {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .reason_block {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .reason .reason_t_p {
        padding: 40px;
    }

    .reason .reason_t_p2 {
        padding: 40px;
    }

    .reason .reason_title {
        font-size: 20px;
    }

    .reason .description {
        font-size: 14px;
        line-height: 1.8;
    }

    .reason img {
        height: 500px;
    }

}

/* =============================
ここまでreason
================================*/


/* =============================
ここからnews
================================*/
.news {
    margin-bottom: 200px;
}

.news .title {
    margin-bottom: 80px;
}

.news dl {
    margin-left: 50px;
}

.news .list {
    /* margin-left: 100px; */
    /* margin-right: 100px; */
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
}

.news .item {
    border-top: .1px solid #fff;
}

.news .month_p {
    display: flex;
    border-bottom: .1px solid #fff;
    padding: 0 150px;

}

.news .description {
    line-height: 4;
    color: #fff;
}

/* =============================
news_sp
================================*/
@media screen and (max-width: 767px) {
    .news {
        margin-bottom: 100px;
    }

    .news .title {
        margin-bottom: 40px;
        font-size: 24px;
    }

    .news dl {
        margin-left: 50px;
    }

    .news .list {
        margin-bottom: 20px;
    }

    .news .month_p {
        padding: 0 50px;

    }

    .news .description {
        font-size: 14px;
        line-height: 2.5;
    }
}

/* =============================
ここまでnews
================================*/


/* =============================
ここからaccess
================================*/
.access {
    margin-bottom: 200px;
    margin-left: 40px;
    margin-right: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.access .title_d {
    justify-content: flex-end;
    flex-direction: column;
    /* border: 1px solid orange; */
    min-width: 350px;
}

.access img {
    width: 65%;
    height: 500px;
    object-fit: cover;
}


.access .title {
    padding: 8px 0 8px 18px;
    justify-content: flex-start;
}

.access .description {
    color: #fff;
    margin-top: 20px;
    margin-right: 40px;
    margin-left: 15px;
    letter-spacing: 0.05em;
    /* border: 1px solid red; */
}

/* =============================
access_sp
================================*/
@media screen and (max-width: 767px) {
    .access {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 100px;
    }

    .access .title_d {
        min-width: 250px;
    }

    .access img {
        width: 50%;
        height: 300px;
        object-fit: cover;
    }

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

    .access .description {
        color: #fff;
        font-size: 10px;
        padding-right: 2px;
    }
}

/* =============================
ここまでaccess
================================*/

/* =============================
ここからcontact
================================*/
.contact {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
}

.contact .img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact .btn_block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */
}

.contact .btn1 {
    display: flex;
    justify-content: center;
    position: relative;
    width: 350px;
    padding: 40px 50px;
    margin: 40px;
    font-family: 'Sansation', 'sans-serif';
    border: solid 1px #fff;
    /* border: 1px solid red; */
}

.contact .btn2 {
    display: flex;
    justify-content: center;
    position: relative;
    width: 350px;
    /* height: 20px; */
    padding: 40px 50px;
    margin: 40px;
    background-color: #575C60;
    font-family: 'Sansation', 'sans-serif';
    /* border: 1px solid red; */

}

.contact .btn_tel {
    font-size: 36px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.contact .btn_mail {
    font-size: 36px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    /* border: 1px solid red; */
}

.contact .btn_mail p {
    margin: -15px;
}

.contact .small {
    font-size: 16px;
    line-height: 1;
    font-family: "Klee One", cursive;
}

.contact .btn_mail .small {
    font-size: 12px;
}

/* =============================
contact_sp
================================*/
@media screen and (max-width: 767px) {
    .contact {
        margin-bottom: 50px;
    }

    .contact .img img {
        height: 250px;
    }

    .contact .btn1 {
        width: 150px;
        padding: 25px 30px;
        margin: 20px;

    }

    .contact .btn2 {
        width: 150px;
        padding: 25px 30px;
        margin: 20px;

    }

    .contact .btn_tel {
        font-size: 20px;
    }

    .contact .btn_mail {
        font-size: 20px;
    }

    .contact .btn_mail p {
        margin: -5px;
    }

    .contact .small {
        font-size: 14px;
    }

    .contact .btn_mail .small {
        font-size: 12px;
    }

}

/* =============================
ここまでcontact
================================*/

/* =============================
ここからfooter
================================*/
.footer {
    /* vertical-align: middle; */
    text-align: center;
    margin-bottom: 100px;
    /* border: 1px solid red; */

}

.footer .menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

.footer a {
    font-size: 14px;
    margin: 0 20px;
}

.footer .company_name {
    font-family: "Sansation", sans-serif;
    font-size: 20px;
    margin: 40px;
}

.footer .footer_d {
    font-size: 10px;
    margin-bottom: 3px;
}

.footer .copyright {
    font-family: "Sansation", sans-serif;
    font-weight: 200;
    ;
}

/* =============================
footer_sp
================================*/
@media screen and (max-width: 767px) {
    .footer {
        margin-bottom: 50px;
    }

    .footer a {
        font-size: 10px;
        margin: 0 12px;
    }

    .footer .company_name {
        font-size: 18px;
        margin: 30px 20px 30px;
    }

    .footer .footer_d {
        font-size: 12px;
        margin-bottom: 3px;
    }

}

/* =============================
ここまでfooter
================================*/