/*
Theme Name: jukuta-kokunai
Theme URI: 
Author: SMC-POWER
Version: 1.0
*/

@charset "utf-8";

html {
    scroll-padding-top: 180px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    font-weight: 400;
    /* overflow-x: hidden; */
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* html, body {
  margin: 0;
  padding: 0;
  overflow-x: visible;
  overflow-y: visible;
} */

/* コンテンツ幅 */
.inner {
    width: 1100px;
    margin: 0 auto;
}

.wrapper {
    padding-top: 139px;
    /* margin-top: 139px; */
}

/* 横並び */
.flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
}

.h2-sub {
    font-size: 20px;
    font-weight: 900;
    color: #004AA0;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 0 23px;
}

.h2-sub::before {
    content: "";
    width: 16px;
    height: 3px;
    background-color: #004AA0;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.h2-sub::after {
    content: "";
    width: 16px;
    height: 3px;
    background-color: #004AA0;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}


a {
    text-decoration: none;
}

p {
    font-size: 16px;
    /* line-height: 28px; */
}

.bold {
    font-weight: 700;
}

.medium {
    font-weight: 500;
}

/* ボタン */
.btn {
    font-size: 20px;
    font-weight: 900;
    width: 388px;
    height: 100px;
    /* display: block; */
    border-radius: 18px;
    border: 1px solid #004AA0;
    background-color: #fff;
    color: #004AA0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.btn-inner {
    display: flex;
    column-gap: 13px;
}

.btn p {
    font-size: 20px;
}

.btn:hover {
    background-color: #004AA0;
    color: #fff;
}

/* グリーン */
.btn__green {
    border: 1px solid #0F9450;
    color: #0F9450;
}

.btn__green:hover {
    background-color: #0F9450;
}

.btn-container {
    width: 855px;
    margin: 100px auto 80px auto;
}


/* a[href^="tel"],
a[href^="mailto"] {
    text-decoration: none !important;
    color: inherit;
} */





/*------------- ヘッダー --------------*/

.header {
    width: 100%;
    height: fit-content;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.notice-bar {
    width: 100%;
    height: 34px;
    background-color: #004AA0;
    color: #fff;
}

.notice-bar p {
    font-size: 14px;
    font-weight: 700;
    line-height: 33px;
    width: 85%;
    margin: 0 auto;
}

.header-inner {
    width: 100%;
    height: fit-content;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 105px;
    margin: 0 auto;
}

.site-title {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.site-title a {
    display: inline-block;
    line-height: 0;
}

.site-title a img {
    width: 15vw;
    height: auto;
}

.nav-global {
    width: 77%;
    max-width: 1145px;
}

/* グロナビ */
.nav-global__ul {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav-global__li a {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
}

/* ホバー */
.nav-global__li:hover a {
    font-weight: 700;
}

.nav-global__container {
    display: flex;
    column-gap: 17px;
}

.nav-global__red {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #E58076;
    width: 125px;
    height: 33px;
    text-align: center;
    line-height: 32px;
}

.nav-global__blue-container {
    display: flex;
    column-gap: 20px;
}

.nav-global__blue {
    text-align: center;
    line-height: 12px;
}

.nav-global__blue img {
    margin-bottom: 3px;
}

.nav-global__blue a {
    font-size: 12px;
    color: #003D89;
    text-align: center;
}

/* .nav-global__red a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
} */

/* .nav-global__red-container {
    display: flex;
    align-items: center;
    column-gap: 10px;
} */


/*------------- フッター --------------*/

.footer {
    background-color: #E5E5E5;
    padding: 100px 0 0 0;
}

.footer-inner {
    width: 1088px;
    margin: 0 auto;
    padding-bottom: 84px;
}

.footer address {
    font-size: 18px;
    font-weight: 500;
    line-height: 38px;
    margin: 32px 0 0 0;
}

.footer address a {
    color: #333;
}

.footer-nav__ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 708px;
}

.footer-nav__ul a {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.footer-nav-container {
    display: flex;
    align-items: flex-end;
    column-gap: 70px;
    margin-top: -20px;
}

.footer-contact {
    font-size: 20px;
    font-weight: 900;
    display: block;
    color: #D95346;
    width: 299px;
    height: 77px;
    line-height: 76px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #D95346;
    border-radius: 18px;
}

.footer-contact:hover {
    background-color: #D95346;
    color: #fff;
}

/* バナー */
.footer-banner-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 0 0;
}

.footer-banner-container a {
    width: 328px;
    display: block;

}


.footer-banner-container img {
    width: 100%;
    height: auto;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}



/* コピーライト */
.copyright {
    font-size: 10px;
    font-weight: 500;
    /* width: 100%; */
    background-color: #004AA0;
    padding: 21px 0 20px 0;
    color: #fff;
    display: block;
    text-align: center;
}

/* 追従ボタン */
.floating-button {
    position: fixed;
    bottom: 15%;
    right: 0;
    z-index: 9999;
    width: 93px;
}

.floating-button a {
    color: white;
}

.floating-button__sample {
    font-weight: 700;
    writing-mode: vertical-rl;
    background-color: #0F9450;
    width: 100%;
    padding: 14px 0;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.floating-button__kaigai {
    display: block;
    margin-bottom: 3px;
    width: 100%;
}

.floating-button__kaigai p:nth-of-type(1) {
    font-weight: 700;
    background-color: #004BA0;
    padding: 10px 0;
    text-align: center;
}

.floating-button__kaigai p:nth-of-type(2) {
    font-size: 12px;
    background-color: #0069E0;
    padding: 8px 10px 8px 12px;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-button__kaigai p:nth-of-type(2)::after {
    content: url(../img/floating-button__blue.svg);
}

.floating-button__contact {
    display: block;
    margin-bottom: 3px;
    width: 100%;
}

.floating-button__contact p:nth-of-type(1) {
    font-weight: 700;
    background-color: #D95346;
    padding: 10px 0;
    text-align: center;
}

.floating-button__contact p:nth-of-type(2) {
    font-size: 12px;
    background-color: #F1D9D7;
    color: #D95346;
    padding: 8px 10px 8px 12px;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-button__contact p:nth-of-type(2)::after {
    content: url(../img/floating-button__red.svg);
}


/*------------- 下層ページ共通 --------------*/

.lower-h1 {
    width: 100%;
    height: 300px;
    background-image: url(../img/lower-h1__bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lower-h1 h1 {
    font-size: 48px;
    /* font-size: 2.5vw; */
    font-weight: 700;
}


/*------------- トップページ --------------*/

/*---- MV ----*/
.mv {
    margin-top: 5.7vw;
}

.mv-inner {
    width: 68vw;
    margin: 0 auto;
}

.mv-text__container {
    position: relative;
}

.mv-catch {
    /* font-size: 60px; */
    font-size: 3vw;
    /* font-weight: 700; */
}

.mv-catch span {
    position: relative;
}

.mv-catch span::before {
    content: "ダイレクト";
    position: absolute;
    /* top: -13px; */
    top: -1.6vw;
    left: 0.4vw;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    font-size: 1vw;
    font-weight: 500;
}

.mv-text {
    /* font-size: 32px; */
    font-size: 1.6vw;
    /* font-weight: 500; */
    line-height: 3.1vw;
    /* margin: 40px 0 0 0; */
    margin: 2vw 0 0 0;
}

.mv-circle {
    /* font-size: 23px; */
    font-size: 1.2vw;
    font-weight: 700;
    /* line-height: 30px; */
    line-height: 1.5vw;
    text-align: center;
    color: #fff;
    /* width: 142px; */
    width: 7.3vw;
    height: 7.3vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-circle__red {
    background-color: #D90F22;
}

.mv-circle__blue {
    background-color: #004AA0;

}

.mv-circle__yellow {
    background-color: #F4E100;
    color: #333;
}

.mv-circle__container {
    display: flex;
    /* column-gap: 30px; */
    column-gap: 1.5vw;
    position: absolute;
    top: -10px;
    right: 0;
}

/* MV 画像 */
.mv-grid {
    /* width: 100%; */
    height: auto;
    margin-top: 6.25vw;
    position: relative;
    overflow: hidden;
}

.mv-grid-container {
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 50px; */
    /* width: 100%; */
    /* margin: 0 auto; */
    height: auto;
    height: fit-content;
}

.mv-grid__1,
.mv-grid__2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 45px 50px; */
    column-gap: 2.6vw;
}

.mv-grid__1 img,
.mv-grid__2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.mv-grid__1 {
    margin-left: -80px;
    /* margin-bottom: 45px; */
    margin-bottom: 2.3vw;
}

.mv-grid__2 {
    margin-right: -80px;
    /* margin-right: -4vw; */
}


/* 三角 */
.triangle-container {
    /* position: relative; */
    width: 100%;
    height: 10vw;
    filter: drop-shadow(0 -6px 6px rgba(0, 0, 0, 0.15));
    z-index: 1000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.triangle {
    width: 100%;
    height: 100%;
    background-color: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    /* position: relative; */
}

/* .triangle::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #707070;
    height: 82px;
    width: 2px;
    display: block;
} */




/*---- タイルのことなら、十九田陶業にお任せください！ ----*/
.introduction {
    margin-top: 150px;
    position: relative;
}

.triangle-line {
    position: absolute;
    top: -190px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #707070;
    height: 82px;
    width: 2px;
    z-index: 1000;
}

.introduction-catch {
    font-size: 46px;
    color: #004AA0;
    text-align: center;
}

.introduction-text {
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    width: fit-content;
    margin: 56px auto 66px auto;
}


/*---- 十九田陶業が選ばれる理由 ----*/
.reason {
    margin-top: 146px;
}

.reason-container {
    margin-top: 54px;
}

.reason-contents {
    width: 32%;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    padding: 68px 22px 44px 22px;
    box-sizing: border-box;
    background-color: #fff;
}

.reason-contents img {
    display: block;
    margin: 0 auto;
    width: 176px;
    height: 172px;
    margin-bottom: 60px;
}

.reason-contents__dl dt {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    color: #004AA0;
    margin-bottom: 23px;
}

.reason-contents__dl dd {
    font-size: 14px;
    line-height: 30px;
}

/* 背景画像 */
.reason {
    position: relative;
    z-index: 100;
    padding-bottom: 70px;
}

.reason::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 63%;
    background-image: url("../img/reason__bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1000;
}


/*---- 製品ラインアップ ----*/
.lineup {
    margin: 120px auto 0 auto;
}

.sample-link {
    text-align: center;
    margin-top: 30px;
}

.lineup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 70px;
    /* gap: 70px 10px; */
    margin: 32px auto 80px auto;
}

.sample-link a {
    font-weight: 700;
    color: #333333;
    border-bottom: 1px solid #333333;
}

.lineup-contents {
    display: block;
    width: 352px;
}

.lineup-contents h3 {
    font-size: 20px;
    font-weight: 700;
    color: #004AA0;
    margin-top: 14px;
    margin: 14px 0 20px 0;
    position: relative;
    padding-left: 25px;
}

.lineup-contents h3::before {
    content: url(../img/lineup-contents__h3.svg);
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
}

.lineup-img {
    position: relative;
    width: 352px;
    height: 220px;
    overflow: hidden;
}

.lineup-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
}


/* タグ */
.lineup-tag__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.lineup-tag__ul li {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    width: fit-content;
    padding: 3px 7px 4px 7px;
}

.tag-yellow {
    background-color: #9B8F00;
}

.tag-purple {
    background-color: #836EAC;
}

.tag-gray {
    background-color: #5D5D5D;
}

.tag-orange {
    background-color: #F47A00;
}

.tag-turquoise {
    background-color: #558EA3;
}

.tag-red {
    background: #D95346;
}

/* バナー */
.lineup-banner {
    width: 722px;
    margin: 0 auto;
    margin: 120px auto 0 auto;
}

.lineup-banner p {
    font-size: 24px;
    font-weight: 700;
    color: #D95346;
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto 20px auto;
}

.lineup-banner p::before {
    content: "＼";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}

.lineup-banner p::after {
    content: "／";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
}

.lineup-banner img {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

.lineup-banner a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.lineup-banner a:hover {
    transform: translateY(-10px);
}

/*---- 会社概要 ----*/
.wrapper-top .company {
    margin: 140px auto 0 auto;
    padding: 100px 0 130px 0;
}

.company {
    background-image: url(../img/company__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.company-dl {
    width: 100%;
    margin: 60px auto 45px auto;
}

.company-dl__flex {
    display: flex;
    height: 90px;
    margin-bottom: 16px;
}

.company-dl dt {
    font-size: 20px;
    font-weight: 700;
    width: 35%;
    background-color: #004AA0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-dl dd {
    font-size: 20px;
    font-weight: 500;
    width: 65%;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 64px 0 34px;
    box-sizing: border-box;
}

.company-dl dd a {
    color: #333;
}


/*---- カタログ ----*/
.catalog {
    margin: 100px auto 135px auto;
}

.catalog-container {
    width: 922px;
    margin: 40px auto 0 auto;
}

.catalog-container a {
    width: 436px;
    height: auto;
}

.catalog-container a img {
    width: 100%;
    height: auto;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.catalog-container a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.catalog-container a:hover {
    transform: translateY(-10px);
}


/*------------- 会社概要 --------------*/
.company_introduction {
    margin: 100px auto 70px auto;
}


.company_introduction-catch {
    font-size: 38px;
    color: #004AA0;
    line-height: 66px;
    text-align: center;
    margin-bottom: 40px;
}

.company_introduction-text {
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}


/*---- さまざまなお悩み・ご希望に対応いたします ----*/
.company_worries {
    background-color: #FFF9B2;
    padding: 70px 0 65px 0;
}

.company_worries__ul {
    width: 1010px;
    row-gap: 20px;
    margin: 40px auto 0 auto;
}

.company_worries__ul li {
    font-size: 16px;
    font-weight: 700;
    background-color: #fff;
    width: 49%;
    padding: 16px 10px 16px 10px;
    box-sizing: border-box;
    text-align: center;
}

.company_worries__ul li span {
    padding-left: 15px;
    position: relative;
}

.company_worries__ul li span::before {
    content: url("../img/check.svg");
    position: absolute;
    top: 2px;
    left: 0;
}



/*---- 会社概要 ----*/
.wrapper-company .company {
    /* margin: 140px auto 0 auto; */
    padding: 100px 0 90px 0;
}

dt.company-dl__philosophy {
    background-color: #D95346;
}



/*---- 沿革 ----*/
.history {
    margin: 110px auto 180px auto;
}


.history__dl {
    /* width: 945px; */
    width: 90%;
    margin: 50px auto 0 auto;
}

.history__dl div {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 25px;
}

.history__dl dt {
    font-size: 20px;
    font-weight: 700;
    width: 23%;
    color: #004AA0;
    line-height: 40px;
    position: relative;
}

.history__dl dt::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #004AA0;
    position: absolute;
    right: -12px;
    top: 12px;
    /* transform: translateY(-50%); */
}

.history__dl dd {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    /* width: calc(100% - 23% - 30px); */
    width: 73%;
}

.history__dl dt::after {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background: #004AA0;
    position: absolute;
    right: -3.5px;
    top: 20%;
    padding-bottom: 30px;
}

.history__dl div:last-of-type dt::after {
    display: none;
}





/*------------- よくある質問 --------------*/
.faq-product {
    /* margin-top: 110px; */
    margin: 110px auto 200px auto;
}

.faq-service h2,
.faq-product h2 {
    font-size: 26px;
    font-weight: 700;
    padding: 10px 24px;
    margin-bottom: 24px;
    text-align: left;
}

.faq-service h2 {
    background-color: #EAF5FF;
}

.faq-product h2 {
    background-color: #EAFCF0;
}

.faq-contents__dl {
    width: 100%;
}

.faq-contents__dl div {
    padding: 50px 90px 50px 100px;
    margin-bottom: 30px;
}

.faq-contents__dl div:last-child {
    margin-bottom: 0;
}

.faq-service .faq-contents__dl div {
    background-color: #EAF5FF;
}

.faq-product .faq-contents__dl div {
    background-color: #EAFCF0;
}

.faq-contents__dl dt {
    font-size: 20px;
    font-weight: 700;
    color: #004AA0;
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}

.faq-service .faq-contents__dl dt {
    color: #004AA0;
}

.faq-product .faq-contents__dl dt {
    color: #0F9450;
}


.faq-contents__dl dt::before {
    content: "Q";
    font-size: 22px;
    position: absolute;
    top: -3px;
    left: 0;
}

.faq-contents__dl dd {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    position: relative;
    padding-left: 30px;
}

.faq-contents__dl dd::before {
    content: "A";
    font-size: 22px;
    font-weight: 700;
    position: absolute;
    top: -3px;
    left: 2px;
}

.faq-contents__dl dd a {
    color: #333;
    border-bottom: 1px solid #333;
}


/*------------- 納入実績一覧 --------------*/

.works-archive {
    margin: 100px auto 70px auto;
}

.works-archive-text {
    font-size: 18px;
    line-height: 30px;
}

.works-list {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.works-item {
    width: 210px;
}

/* .works-item__thumb img{
	width:210px;
	height:210px;
	  object-fit: cover;
} */

.works-item__thumb img {
    width: 210px;
    /* height: 210px; */
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.works-item__title {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    text-align: left;
    color: #333;
}

/*  納入実績 */
.works-record {
    margin-bottom: 120px;
}

.works-record-container {
    margin-bottom: 70px;
}

.works-record-container:last-child {
    margin-bottom: 0;
}

.works-record h2 {
    background: #F2F5F9;
    font-size: 18px;
    font-weight: 500;
    padding: 1em;
    margin-bottom: 1em;
    /*     margin-top: 100px; */
    text-align: left;
}


.works-record ul {
    display: flex;
    flex-wrap: wrap;
}

.works-record ul li {
    font-size: 16px;
}

.works-record ul li::after {
    content: "／";
}



/*------------- 納入実績ページ --------------*/


/* 親：スライダー＋投稿本文を横並びに */
.works-container {
    display: flex;
    /*   gap: 40px; */
    justify-content: space-between;
    /*   align-items: flex-start; */
    /*   flex-wrap: wrap; */
    width: 90%;
    max-width: 980px;
    margin: 100px auto 150px auto;
}


/* スライダーとサムネイルをまとめたボックス */
.works-media {
    width: 45%;
}

/* メインスライダー */
.swiper.main-slider {
    width: 100%;
    /* .works-media の中でいっぱいに広がる */
    overflow: hidden;
    margin-bottom: 10px;
}

/* .swiper-slide {
  width: 100%;
  height: auto;
  text-align: center;
} */

.swiper-slide img {
    width: 100%;
    /*   height: auto; */
    /*   object-fit: cover; */
    /*   display: block; */
}

/* サムネイル */
.thumb-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.thumb-container__item img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    /*   display: block; */
}

/* 投稿本文側 */
.works-post {
    width: 50%;
    /* 	background-color:#242; */
}

.works-post h1 {
    font-size: 32px;
}

.works-post__product {
    margin-top: 20px;
    line-height: 28px;
    padding: 15px 0;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
}




/*------------- お問い合わせ --------------*/

.contact-wrapper {
    width: 845px;
    margin: 100px auto 120px auto;
    border-top: 1px dotted #ccc;
    overflow-x: hidden;
}

.form-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px dotted #ccc;
}

.form-item__label label {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    border-bottom: 1px dotted #ccc;
}

/* 項目名 */
.form-label {
    font-size: 16px;
    font-weight: 700;
}

/* 必須 */
.required {
    font-size: 12px;
    font-weight: 400;
    color: #DE5D50;
    margin-left: 7px;
}

/* 記入欄 */
.contact-wrapper form input {
    padding: 10px;
    box-sizing: border-box;
}

/* お名前 */
.name-fields input {
    width: 265px;
}

.name-fields p {
    display: flex;
    column-gap: 18px;
}

/* 住所 */
.postal-code-input {
    width: 120px;
    margin-left: 8px;
    margin-bottom: 23px;
}

.prefecture-input {
    width: 144px;
    margin-bottom: 23px;
}

.city-input,
.address-input {
    width: 548px;
    margin-bottom: 16px;
}

/* 電話 */
.tel-input {
    width: 144px;
    margin-right: 404px;
}

/* メール */
.email-input {
    width: 548px;
}

/* 内容 */
.contact-wrapper textarea {
    width: 548px;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
}

/* 送信ボタン */
input.radius-percent-0[type="submit"] {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #DE5D50;
    border: none;
    cursor: pointer;
    width: 283px;
    height: 57px;
    display: block;
    margin: 30px auto 0 auto;
    transition: background-color 0.3s ease;
}

input.radius-percent-0[type="submit"]:hover {
    background-color: #d33828;
}

/* プライバシーポリシー */
.wrapper-contact a {
    color: #004AA0;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
}

/* 認証マーク */
.cf-turnstile {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}


/*------------- プライバシーポリシー --------------*/
.privacy {
    margin: 100px auto 120px auto;
}

.privacy h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 7px 0;
    text-align: left;
}

.privacy p {
    line-height: 28px;
}


/*------------- サンクスページ --------------*/
.thanks-wrapper {
    margin: 50px auto 100px auto;
}

.thanks-wrapper h2 {
    margin-bottom: 30px;
}

.thanks-wrapper p {
    text-align: center;
    margin-bottom: 50px;
}


/*------------- 404 --------------*/
.wrapper-404 main{
    margin: 50px auto 100px auto;
}

.wrapper-404 h2 {
    margin-bottom: 30px;
}

.wrapper-404 p {
    text-align: center;
    margin-bottom: 50px;
}
