/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 共通スタイル */
body {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    line-height: 1.6;
    color: #726B68;
    padding-top: 96px;
}

.inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 90vw;
    padding: 3.5em 0;
}

a {
    color: #726B68;
    text-decoration: none;
}

h2 {
    text-align: center;
    font-size: 40px;
    line-height: 0.75;
    margin-bottom: 1em;
}

h2 .en {
    font-size: 20px;
    color: #EF8585;
}

ul {
    list-style: none;
}

.btn li {
    display: inline-block;
}

.btn li a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0.5em
}

.btn li.contact_btn {
    background-color: #EF8585;
}

.btn li.quote_btn {
    background-color: #A5C4D4;
}

.company_list {
    text-align: center;
}

.company_list ul li {
    display: inline-block;
    width: calc(33% - 3em);
    margin: 0 0.5em;
}

.company_list ul li img {
    max-width: 300px;
    width: 100%;
}

.contact_area {
    background: #F1F0EF;
    text-align: center;
}

.contact_area p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1.5em;
}

.contact_area .btn li {
    width: calc(40% - 2em);
}

.contact_area .btn li a {
    width: 100%;
    padding: 1em;
}

.contact_area .btn li.quote_btn {
    margin-left: 2em;
}

/* フッター */
footer {
    background: #726B68;
    text-align: center;
    padding: 1.5em 0;
    font-size: 0.8em;
}

footer .inner {
    padding: 0;
}

footer p,
footer a {
    color: #fff;
}

footer ul li {
    display: inline-block;
    padding: 0 0.5em;
    border-right: 1px solid #fff;
}

footer ul li:first-child {
    padding-left: 0;
}

footer ul li:last-child {
    border: none;
    padding-right: 0;
}

/* レスポンシブ対応 */
@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

}

@media screen and (min-width: 1141px) {
    a:hover {
        opacity: 0.8;
    }

    footer ul {
        position: absolute;
    }
}

@media screen and (max-width: 1140px) {
    body {
        padding-top: 60px;
    }

    h2 {
        font-size: 1.7em;
    }

    h2 .en {
        font-size: 0.5em;
    }

    img {
        width: 100%;
    }

    .btn li a {
        font-size: 14px;
    }

    .company_list ul li {
        display: inline-block;
        width: calc(33% - 1em);
        margin: 0;
    }

    .contact_area p {
        font-size: 1.25em;
    }

    .contact_area .btn li {
        width: calc(50% - 1em);
    }

    .contact_area .btn li.quote_btn {
        margin-left: 0.5em;
    }

    footer {
        font-size: 0.7em;
    }
}

/*ヘッダー*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 0px 5px 2px #f1f0ef;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 a {
    display: flex;
}

header h1 img {
    max-width: 380px;
    vertical-align: middle;
}

.gnav-list {
    display: flex;
    gap: 1.5em;
    font-weight: bold;
}

.gnav-list li {
    list-style: none;
}


/* ハンバーガー基本形 */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #726B68;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

/* 変形時（バツ印） */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* レスポンシブ用 */
@media screen and (min-width: 1141px) {
    .gnav-list .current {
        border-bottom: 3px solid #EF8585;
        padding-bottom: 0.25em;

    }
}

@media screen and (max-width: 1140px) {
    header {
        height: 60px;
    }

    header h1 {
        width: 70vw;
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .gnav-list {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        border-radius: 0 0 0 8px;
        text-align: center;
    }

    .gnav-list.open {
        display: block;
        height: 100vh;
        box-shadow: 0px 0px 5px 2px #f1f0ef;
    }

    .gnav-list.open li a {
        display: block;
        padding: 1.5em 0;
        font-size: 5vw;
        border-bottom: 1px solid #f1f0ef;
    }

}

/* トップページ */
.top_visual {
    position: relative;
}

.top_visual img {
    width: 100%;
}

.top_visual .catch {
    position: absolute;
    z-index: 100;
    top: 35vh;
    left: 65vw;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.top_visual .catch p {
    margin-bottom: 1em;
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.8);
}

.top_visual .catch .btn li.quote_btn {
    margin-left: 0.5em;
}

.top_message {
    text-align: center;
    background: url(../img/bk_top.png);
    background-size: cover;
}

.top_message p {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    text-align: left;
    margin: 0 1em;
    line-height: 2;
}

.top_message p img {
    width: 200px;
}

.top_news {
    text-align: center;
    font-size: 20px;
}

.top_news ul li {
    margin-bottom: 0.5em;
}

.top_news .date {
    margin-right: 1em;
}

.top_products {
    background: rgba(200, 217, 0, 0.15);
    text-align: center;
}

.top_products ul li {
    width: calc(50% - 2em);
    display: inline-block;
    position: relative;
}

.top_products ul li:last-child {
    margin-left: 2em;
}

.top_products ul li img {
    width: 100%;
}

/* レスポンシブ用 */
@media screen and (min-width: 1141px) {
    .top_visual .catch {
        top: 25vh;
        left: 55vw;
    }

    .top_visual .catch p {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 1140px) {
    .top_visual img {
        opacity: 0.75;
    }

    .top_visual .catch {
        top: 15vh;
        left: 65vw;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .top_visual .catch {
        top: calc(50% - 4em);
        left: 50%;
        font-size: 12px;
    }

    .top_visual .catch .btn li a {
        font-size: 10px;
    }

    .top_message p {
        margin: 0;
    }

    .top_message .illust {
        width: 30%;
    }

    .top_message .illust img {
        width: 100%;
    }

    .top_message .message {
        font-size: 12px;
        margin-left: 1em;
    }

    .top_news {
        text-align: left;
        font-size: 14px;
    }

    .top_products ul li {
        width: 100%;
    }

    .top_products ul li:last-child {
        margin-left: 0;
        margin-top: 2em;
    }
}

/*お知らせ*/
.news .inner {
    max-width: 780px;
    margin: 0 auto;
}

.news .inner p {
    margin-bottom: 1em;
}

.news .inner p:last-child {
    margin-bottom: 0;
}

.news h2 {
    text-align: left;
}

.news h2 .date {
    font-size: 0.5em;
    display: inline-block;
    margin-bottom: 1em;
}

/*会社案内*/
.about_company .content {
    max-width: 600px;
    margin: 0 auto;
}

.about_company .content dl {
    display: flex;
    margin: 0.25em
}

.about_company .content dl dt {
    background: #EF8585;
    color: #fff;
    text-align: center;
    width: 30%;
    padding: 1em;
}

.about_company .content dl dd {
    background: #F1F0EF;
    width: 70%;
    padding: 1em;
    margin-left: 0.25em;
}

.about_message {
    text-align: center;
}

.about_message p {
    margin-bottom: 2em;
    font-size: 20px;
    line-height: 2;
}

.about_company#open_hours .inner {
    padding-top: 0;
}

.about_company#open_hours .content dl dt {
    background: #A5C4D4;
}

/* レスポンシブ用 */
@media screen and (max-width: 768px) {
    .about_company .content {
        font-size: 14px;
    }

    .about_company .content dl dt {
        width: 30%;
    }

    .about_company .content dl dd {
        width: 70%;
    }

    .about_company .content dl dd.contactlink {
        font-size: 12px;
    }

    .about_message p {
        font-size: 14px;
    }
}

/*商品紹介*/
.products_list {
    text-align: center;
    background: url(../img/bk_top.png);
    background-size: cover;
}

.products_list li {
    display: inline-block;
}

.products_list li img {
    width: 100%;
}

.case_list {
    background: rgba(200, 217, 0, 0.07);
}

.case_list p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em;
}

.case_contents {
    max-width: 820px;
    margin: 0 auto 3em;
}

.case_contents:last-child {
    margin-bottom: 0;
}

.case_list h3 {
    font-size: 24px;
    color: #548BB0;
    border-left: 3px solid #C8DA00;
    padding-left: 0.5em;
    margin-bottom: 1em;
}

.case_list li {
    display: inline-block;
    width: calc(50% - 3em);
    margin-bottom: 1em;
}

.case_list li:nth-of-type(2n) {
    margin-left: 3em;
}

.case_list li:last-child {
    margin-bottom: 0;
}

.case_list li span {
    display: inline-block;
    vertical-align: middle;
}

.case_list li .illust {
    width: 20%;
}

.case_list li .txt {
    width: 80%;
    padding-left: 1em;
}

.case_list li img {
    width: 100%;
}

/* レスポンシブ用 */
@media screen and (min-width: 1141px) {
    #business_products li {
        width: calc(33% - 3em);
        margin: 0 3em 3em 3em;
    }

    #business_products li:first-child,
    #business_products li:nth-child(3),
    #business_products li:last-child {
        margin: 0;
    }

    #business_products li:nth-child(4) {
        margin-bottom: 0;
    }

    #private_products li {
        width: calc(50% - 3em);
        max-width: 380px;
        margin: 0 0 3em 3em;
    }

    #private_products li:first-child,
    #private_products li:nth-child(3) {
        margin: 0;
    }

}

@media screen and (max-width: 1140px) {
    .products_list li {
        width: calc(50% - 1em);
        margin: 0 0 1em 0;
    }

    .products_list li:nth-of-type(2n) {
        margin-left: 1em;
    }

    .products_list li:last-child,
    #private_products li:nth-child(3) {
        margin-bottom: 0;
    }

    .case_list {
        font-size: 14px;
    }

    .case_list h3 {
        font-size: 1.25em;
    }

    .case_list li {
        width: 100%;
    }

    .case_list li:nth-of-type(2n) {
        margin-left: 0;
    }

}

/*方針*/
.policy .f_date {
    text-align: right;
    font-size: 20px;
    margin-bottom: 1em;
}

.policy_contents {
    margin-bottom: 3em;
}

.policy_contents h3 {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.policy_contents p {
    margin-bottom: 1em;
}

.policy_contents a {
    text-decoration: underline;
}

.policy_contents:last-child,
.policy_contents p:last-child {
    margin-bottom: 0;
}

#privacy_policy h3 {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {

    #privacy_policy h2,
    #solicitation_policy h2 {
        font-size: 1.4em;
    }

}

@media screen and (max-width: 1140px) {
    .policy .f_date {
        font-size: 14px;
    }
}

/* フォーム */

.form p {
    text-align: center;
    margin-bottom: 1em;
}

.form form {
    max-width: 720px;
    margin: 0 auto
}

.form .form_row {
    margin-bottom: 2em;
}

.form .form_label {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.form .required {
    background-color: #EF8585;
    color: #fff;
    font-size: 0.8em;
    padding: 0 1em;
    margin-left: 0.5em;
}

.form input,
.form textarea {
    width: 100%;
    background: #F1F0EF;
    border: none;
    padding: 1em;
}

.form input {
    height: 3em;
}

.form textarea {
    height: 10em;
}

.form .form_button {
    text-align: center;
}

.form .form_button button {
    background: #EF8585;
    border: 0;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    width: 300px;
    border-radius: 40px;
    padding: 1em 0;
    cursor: pointer;
}

/* レスポンシブ用 */
@media screen and (max-width: 768px) {
    .form .form_button button {
        font-size: 16px;
    }
}

/*サンクスページ*/
.thanks p {
    text-align: center;
    margin-bottom: 1em;
}

/* レスポンシブ用 */
@media screen and (max-width: 768px) {
    .thanks p {
        font-size: 14px;
    }
}

/*確認画面*/
.form .form_button .correct_btn {
    color: #EF8585;
    background: #fff;
    border: 3px solid;
    padding: calc(1em - 3px);
    margin-top: 1em;
}