@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/* --------------------------------
 * base
 * -------------------------------- */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #231815;
    background-color: #fff;
    font-family: 'Noto Serif JP', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* --------------------------------
 * header
 * -------------------------------- */

.header {}

/*.snap-containar {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow: auto;
}*/

.top_pic {}

.header .header_fixed {
    height: 10vh;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
    */
}
.global-nav ul{
    font-size: 0;
}
.global-nav .nav-item{
    display: inline-block;
}
.global-nav .nav-item a{
    display: block;
    letter-spacing: 1px;
    font-size: 1.4rem;
    padding: 14px 15px;
    color: #231815;
    transition: 0.3s ease;
}
.global-nav .nav-item a:hover{
    background-color: #231815;
    color: #fff;
}
.header .logo img {
    width: 150px;
}

.top_pic {
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    //scroll-snap-align: start;
    position: relative;
}

.top_pic.pic_01 {
    background-image: url(../images/top_pic01.jpg);
}

.top_pic.pic_02 {
    background-image: url(../images/top_pic02.jpg);
}

.top_pic img {}

.scroll {
    padding-top: 60px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(-50%, -50%);
    text-decoration: none;
    color: #fff;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 1.6rem;
    font-weight: bold;
    opacity: 0.9;
}

.scroll span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}

@keyframes sdb {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        transform: rotate(-45deg) translate(0, 0);
    }
}

/* --------------------------------
 * main
 * -------------------------------- */
.main {
    display: block;
    padding: 20px 0 0;
}

.accurate {
    text-align: center;
    margin: 150px 0 0;
    padding: 30px 0 0;
}

.accurate img {
    width: 230px;
}

.accurate_desc {
    margin: 30px auto 0;
    line-height: 1.9;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 1px;
}

.link {
    display: block;
    text-align: center;
    width: 550px;
    color: #231815;
    border: solid 1px;
    margin: 70px auto;
    padding: 15px 0;
    font-size: 1.7rem;
    transition: 0.3s ease;
}

.link:hover {
    background-color: #231815;
    color: #fff;
}

.service {
    width: 1000px;
    background-color: #EAE9E5;
    margin: 50px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
}

.service_item {
    width: 42%;
    padding: 0 0 0 110px;

}

.service_item .title {
    font-size: 1.6rem;
}

.service_item .service_list {
    list-style: none;
    margin: 40px 0 0;
}

.service_item .service_list li {
    font-size: 1.6rem;
    margin: 20px 0 0;
}

.pic_area_wrapper {
    width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px auto 0;
    font-size: 0;
}

.pic_item {
    width: 50%;
}
.pic_item > img{
    width: 100%;
    height: auto;
}
/* --------------------------------
 * evaluation
 * -------------------------------- */
.title.eva {
    font-size: 1.9rem;
    line-height: 1.9;
    letter-spacing: 1px;
    width: 800px;
    margin: 50px auto 0;
    padding: 50px 0 0;
}

.desc.eva {
    line-height: 2;
    font-size: 1.6rem;
    width: 800px;
    margin: 30px auto 0;
}

.cer_area {
    width: 1000px;
    background-color: #EAE9E5;
    margin: 90px auto 0;
    padding: 50px 80px 35px;
}

.cer_item {
    margin: 20px 0 0;
}

.cer_item:first-child {
    margin: 0;
}

.cer_item .heading {
    font-size: 1.6rem;
    position: relative;
    font-weight: normal;
}

.cer_item .heading::after {
    width: 750px;
    height: 1px;
    content: "";
    margin: 0 0 0 20px;
    background-color: #231815;
    display: inline-block;
    vertical-align: middle;

}

.cer_item:last-child .heading::after {
    width: 670px;
}

.cer_wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 40px auto 0;
}

.cer_figure {
    width: 27%;
}

.cer_figure img {
    width: 85%;
}

.cer_figure figcaption {
    padding: 13px 0;
    font-size: 1.5rem;
    line-height: 1.35;
}

.cer_figure:nth-child(n+4) {
    margin: 20px 0 0;
}

.link_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 700px;
    margin: 0 auto;
}

.link_wrapper .link {
    width: 43%;
}

/* --------------------------------
 * Company_Profile
 * -------------------------------- */
.top_pic.pic_03 {
    background-image: url(../images/top_pic03.jpg);
}

.top_pic.pic_04 {
    background-image: url(../images/top_pic04.jpg);
}

.president {
    width: 800px;
    margin: 50px auto 0;
    text-align: right;
    font-size: 1.4rem;
    line-height: 2.3;
}

.president img {
    width: 135px;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.president span {
    display: inline-block;
    text-align: left;
}

.qua {
    width: 800px;
    margin: 50px auto 0;
}

.qua .title,
.profile .title {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.qua .title::after,
.profile .title::after {
    width: 690px;
    height: 1px;
    content: "";
    margin: 0 0 0 20px;
    background-color: #231815;
    display: inline-block;
    vertical-align: middle;
}

.qua_figure {
    width: 500px;
    margin: 15px auto 0;
}

.qua_desc {
    font-size: 1.6rem;
    line-height: 1.75;
    padding: 15px 0 15px 15px;
}

.pic_figure {
    width: 100%;

}

.other {
    display: inline-block;
    margin: 30px 0 0;
    font-size: 1.3rem;
}

.other_list {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    margin: 30px 0 0;
}

.other_list li {
    margin: 5px 0 0;
    font-size: 1.4rem;
}

.other_list li:first-child {
    margin: 0;
}

.profile {
    width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding: 0 0 150px;
}

.profile_list {
    width: 100%;
    margin: 30px auto 0;
    text-align: left;
}

.profile_list .list_item th {
    font-size: 1.6rem;
    font-weight: normal;
    padding: 8px 18px 7px 0;
    letter-spacing: 1px;
}

.profile_list .list_item td {
    font-size: 1.6rem;
    padding: 8px 18px;
    line-height: 1.75;
    letter-spacing: 1px;
    position: relative;
    letter-spacing: 1px;
    color: #231815;
}

.profile_list .list_item td img {
    width: 120px;
    vertical-align: middle;
}

.map {
    display: inline-block;
    font-size: 1.5rem;
    padding: 2px 10px;
    color: #231815;
    border: solid 1px;
    vertical-align: middle;
    margin: 0 0 0 55px;
    position: absolute;
    top: 8px;
    right: 150px;
}

.company_pic {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
}

.link_wrapper.company::before {
    content: "";
    width: 300px;
}

.link_wrapper.company {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 50px auto 0;
    padding: 0 0 70px;
}

.link_wrapper.company .link {
    margin: 20px 0 0;
}

.fix-phone-under-menu {
    display: none;
}
/* --------------------------------
 * contact
 * -------------------------------- */
.heading.contact{
    padding: 30px 0;
    font-size: 2.3rem;
    text-align: center;
    letter-spacing: 1px;
}
.contact-form {
    padding: 50px 0 10px;
    width: 800px;
    margin: 100px auto 0;
}
.contact-form > .desc{
    font-size: 1.5rem;
    line-height: 1.9;
    padding: 20px 0;
}
.contact-form > .desc.hissu{
    color: #e80e0e;
    padding: 0 0 30px;
}
.contact-form .item {
    display: block;
    overflow: hidden;
    margin: 20px 0 0;
}

.contact-form .item.no-label {
    padding: 5px 0px 5px 60px;
}

.contact-form .item .label {
    float: left;
    padding: 10px;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.5;
}
.contact-form .item .label a{
    text-decoration: underline;
}
.contact-form .item .label > .req{
    color: #e80e0e;
}

.contact-form .item .radio-group {
    padding: 10px 0px 5px 60px;
}

.contact-form .item input[type="text"],
.contact-form .item input[type="tel"],
.contact-form .item input[type="email"],
.contact-form .item .select,
.contact-form .item textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    margin-left: 250px;
    width: 500px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 1.5rem;
    outline: none;
    border: solid 1px #231815;
    border-radius: 5px;
    background-color: #DCDDDD;
}

.contact-form .item ::placeholder {
    color: #ccc;
}

.contact-form .item textarea {
    resize: vertical;
    height: 200px;
    /*font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
}

.contact-form .item .select_wrapper {
    position: relative;
}

.contact-form .item .select_wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    right: 55px;
    width: 18px;
    height: 18px;
    border-right: solid 1px #231815;
    border-bottom: solid 1px #231815;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contact-form .item input[type="submit"]:hover {
    opacity: 0.6;
}

.contact-form .item input[type="checkbox"] {
    display: none;
}

.contact-form .item .la_privacy {
    position: relative;
    display: block;
    padding: 3px 3px 3px 45px;
    cursor: pointer;
    margin: 7px 0 0 250px;
    font-size: 15px;
}

.contact-form .item .la_privacy::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    margin-top: -8px;
    background: #fff;
    border: 1px solid #231815;
}

.contact-form .item input[type="checkbox"]:checked + label::after {
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    width: 17px;
    height: 7px;
    border-left: 2px solid #231815;
    border-bottom: 2px solid #231815;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.contact-form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    display: block;
    cursor: pointer;
    transition: 0.1s ease all
}
.submit{
    margin: 80px 0 0;
}
.submit .confirm{
    display: block;
    text-align: center;
    width: 550px;
    color: #231815;
    border: solid 1px #231815;
    margin: 70px auto;
    padding: 15px 0;
    font-size: 1.7rem;
    transition: 0.3s ease;
    font-family: serif;
    background-color: #fff;
}

.submit .confirm:hover{
    background-color: #231815;
    color: #fff;
}
/* --------------------------------
 * privacy policy
 * -------------------------------- */
.privacy_policy{
    width: 1000px;
    margin: 0 auto;
    padding: 150px 0 60px;
}
.title.pra{
    font-size: 2.3rem;
    padding:  0 0 30px;
    text-align: center;
}
.privacy_policy .subtitle{
    font-size: 1.5rem;
    padding: 45px 0 15px;
    font-weight: normal;
}
.privacy_policy .desc{
    text-align: justify;
    font-size: 1.5rem;
    line-height: 1.75;
}
.pra_list{
    list-style: none;
}
.pra_list li{
    text-align: justify;
    font-size: 1.5rem;
    padding: 15px 0;
    line-height: 1.75;
}
.pra_list > li:first-child{
    padding: 0 0 15px;
}
.pra_list > li:last-child{
    padding: 15px 0 0;
}
.list-seconds{
    list-style: none;
    padding: 10px 0 13px;
}
.list-seconds li{
    font-size: 1.5rem;
    line-height: 1.75;
    padding: 3px 0;
}
.subtitle.la{
    padding: 45px 0 20px;
    font-weight: normal;
}
/* --------------------------------
 * footer
 * -------------------------------- */
.footer {
    text-align: center;
    padding: 0 0 50px;
    margin: 150px 0 0;
}

.footer .logo {
    width: 60px;
}

.small {
    display: block;
    font-size: 1.4rem;
    line-height: 1.75;
    margin: 30px 0 0;
}
