@charset "UTF-8";
html{font-size: 62.5%;}
.w1300{
    max-width: 1300px;
    margin-inline: auto;
    padding: 0 20px;
}

.w1100{
    max-width: 1100px;
    margin-inline: auto;
    padding: 0 20px;
}
.w900{
    max-width: 900px;
    margin-inline: auto;
    padding: 0 20px;
}

.loop {
    display: flex;
    overflow: hidden;
}
.loop ul {
	display: flex;
	width: 100vw;
}
.loop li {
	width: 20vw;
    overflow: hidden;
    border-radius: 8px;
	margin: 0 5px;
}
.loop ul:first-child {animation: loop 100s -50s linear infinite;}
.loop ul:last-child {animation: loop2 100s linear infinite;}

@keyframes loop {
	0% {transform: translateX(100%);}
	to {transform: translateX(-100%);}
}
@keyframes loop2 {
	0% {transform: translateX(0);}
	to {transform: translateX(-200%);}
}

.low-page img{
    height: auto;
}

/* 戻る用ボタン */
.btn-main.back a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0; /* 左側に配置 */
    right: inherit;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    aspect-ratio: 1 / 1;
    border: 1.5px solid #807d6c;
    border-radius: 50%;
}

/* テキスト色はそのまま */
.btn-main.back a span {
    color: #807d6c;
    word-break: keep-all;
}
/* 戻る用ボタン */
.btn-main.back a:hover .btn-arw_move img {
    animation: btn-move-back 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes btn-move-back {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%); /* 左に動く */
    }
    50.1% {
        transform: translateX(100%);  /* 右に戻る */
    }
    100% {
        transform: translateX(0);
    }
}



/* 下層ヘッダー ---------------------------------------------------------------- */
.low-header {
    padding: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
  }
.low-header .ttl-area {
    flex: 1;
    padding-left: max(20px, calc((100% - 1300px) / 2 + 20px));
}
  
.low-header .img {
    flex: 1.65;
    overflow: hidden;
    border-radius: 10px;
}

.low-header h1{
    font-size: 5rem;
    font-weight: 500;
}
  
/* パンくず ------------------------------------------------------ */
.breadcrumb{
	margin-bottom: 6%;
}
.breadcrumb a{
	position: relative;
	color: #000;
	font-size: 1.4rem;
}
.breadcrumb a::after{
	content: "";
	width: 100%;
	height: 1px;
	background: #AD904C;
	position: absolute;
	bottom: -1px;
	left: 0;
}
.breadcrumb span{
	color: #000;
	font-size: 1.4rem;
}

/* 下層flex ------------------------------------------------------ */
.low-page .contents-ttl{
    margin-bottom: 2%;
}
.low-page .contents-ttl h2{
    font-size: 2.8rem;
    line-height: 1.6;
}
.low-page .contents-ttl h2.en{
    font-size: 3rem;
    line-height: 1.6;
}
.low-page .contents-ttl h2 .sp-block{
    display: none;
}
.low-page .contents-ttl p{
    font-size: 1.4rem;
    color: #898989;
}
.low-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 8%;
}
.low-flex .txt {
    flex: 0.95;
    padding-right: max(20px, calc((100% - 1300px) / 2 + 20px));
}
.low-flex.reverse .txt {
    flex: 0.95;
    padding-left: max(20px, calc((100% - 1300px) / 2 + 20px));
    padding-right: 0;
}
.low-flex .txt h3{
    font-size: 2.6rem;
    margin-bottom: 40px;
    line-height: 1.6;
}
.low-flex .txt p.mb{
    margin-bottom: 3%;
}
.low-flex .txt h3 .sp-block{
display: none;
}
.low-flex .txt .treat span{
    font-size: 1.8rem;
}
.low-flex .txt .treat{
    font-size: 3rem;
    font-weight: 400;
    color: #CBCBCB;
    margin-bottom: 10px;
}
.low-flex .img {
    flex: 1.13;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
}
.low-flex.reverse .img {
    flex: 1.13;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}


/* 私たちの想い ------------------------------------------------------ */
.our-vision .txt-center{
    text-align: center;
}
.our-vision .loop{
    margin-bottom: 5%;
}

/* 私たちの製品 ------------------------------------------------------ */
.our-product .flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.our-product .brand-list .flex::before{
    content: "";
    width: 24%;
    display: block;
    order: 1;
}
.our-product .brand-list .flex::after{
    content: "";
    width: 24%;
    display: block;
}
.our-product .flex li{
    width: 24%;
    margin-bottom: 3%;
}
.our-product .flex li .img{
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
}
.our-product .flex li p{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
}
.our-product .flex li span{
    font-size: 1.2rem;
    display: block;
}

.our-product .single-page-product .flex.contents{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 6%;
}
.our-product .single-page-product .flex.contents .img{
    width: 35%;
    overflow: hidden;
    border-radius: 10px;
    align-items: flex-start;
}
.our-product .single-page-product .flex.contents .txt{
    width: 62%;
}
.our-product .single-page-product .flex.contents .txt .btn-main{
    display: flex;
    justify-content: end;
    margin-top: 30px;
}
.low-page .flex.cta{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 10px;
}
.low-page .cta{
    padding: 5%;
    background: #EFEFEF;
    margin-bottom: 5%;
}
.low-page .cta br.sp-block{
    display: none;
}
.low-page .cta .btn-main a span{
    font-size: 2.2rem;
}

.low-page .cta p{
    font-size: 1.4rem;
}
.low-page .cta .btn-arw{
    background: #EFEFEF;
}

/* 下層お知らせ ------------------------------------------------------ */
.low-news .emergency a{
    padding: 0;
    margin-top: 20px;
    padding: 20px 32px 20px 12px;
    border-bottom: 1px solid #eaeaea;
}
.low-news .ttl-area{
    position: relative;
}
.emergency-ttl{
    position: relative;
    background: #ebe9e9;
    text-align: center;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
    z-index: 2;
    font-size: 1.8rem;
}
.low-news .ttl-area span{
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #999;
    top: 50%;
    left: 0;
}
.low-news .news-category{
    display: inline-block;
    margin-left: 10px;
    border-radius: 2px;
    color: #4B4545;
}
.low-news .emergency .news-category{
    color: #cd6f6f;
}
.low-news .post-content{
    margin-bottom: 50px;
}

.single-news-content h2{
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 30px;
}
.single-news-content h3{
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.single-news-content h4{
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.single-news-content h5{
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.single-news-content p{
    font-size: 1.6rem;
    margin-bottom: 30px;
}
.single-news-content figure{
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}
.single-news-content figure.wp-block-table{
    overflow: auto;
    border-radius: 0;
    margin-bottom: 30px;
}
.single-news-content figure.wp-block-table td{
    border: solid 1px #eaeaea;
}
.single-news-content figure.wp-block-table td:first-of-type{
    background: #ebe9e9;
}
.single-news-content .post-date{
    color: #898989;
    margin-bottom: 10px;
}
.single-news-content .btn-main{
    display: flex;
    justify-content: center;
}
.single-news-content .btn-main a{
    padding: 12px 0px 12px 12px;
}

.pagenation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
}

.pagenation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 25px;
    height: 25px;
    margin: 0 10px;
    font-size: 2.5rem;
}
.pagenation span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 25px;
    height: 25px;
    margin: 0 10px;
    font-size: 2.5rem;
}
.pagenation .prev{
    width: 35px;
    height: 35px;
    background-image: url(../images/low-page/p-arrow_left.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.pagenation .next{
    width: 35px;
    height: 35px;
    background-image: url(../images/low-page/p-arrow_right.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.pagenation a img {
    width: 24px;  /* 矢印画像のサイズ */
    height: 24px;
}

.pagenation .current {
    position: relative;
}
.pagenation .current::after{
    content: "";
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #333;
    left: 0;
}

/* Business ------------------------------------------------------ */
.our-business .business-contents{
    position: relative;
}
.our-business .top-img{
    width: 85%;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
    margin-bottom: 8%;
}
.our-business h3{
    font-size: 2rem;
    padding-left: max(20px, calc((100% - 1300px) / 2 + 20px));
    margin-bottom: 3%;
    line-height: 1.6;
}
.our-business h3 br.sp-block{display: none;}

.our-business .txt-contents{
    position: relative;
    margin-bottom: 5%;
}
.our-business .txt-area{
    width: 60%;
    padding-left: max(20px, calc((100% - 1300px) / 2 + 20px));
}
.our-business .txt-area p{
    padding-left: 5%;
}
.our-business .txt-area p.mb{
    margin-bottom: 3%;
}
.our-business .txt-area .btn-main a{
    margin-left: auto;
    margin-right: 0;
}
.our-business .bottom-img{
    width: 25%;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.our-business .bottom-img img{
    object-fit: cover;
}
.our-business  .business-contents_02 .bottom-img{
    bottom: inherit;
    top: 0;
}
.our-business .txt-area .btn-main:first-of-type a{
    padding-left: 30px;
}
.our-business .btn-main .ec-icon::after{
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/low-page/ec-icon.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.our-business .btn-main .ec-icon br.sp-block{
    display: none;
}

/* Company ------------------------------------------------------ */
.low-page .company  .contents-ttl{
    margin-bottom: 5%;
}
.company .low-flex{
    align-items: flex-start;
    gap: 3%;
}
.company .low-flex .img{
    flex: .8;
}
.company .low-flex .txt{
    flex: 1.1;
    padding-right: max(20px, calc((100% - 1300px) / 2 + 20px));
}
.company dl {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.company dt,
.company dd {
padding: 16px 0;
border-bottom: 1px solid #e5e5e5;
}

.company dt {
font-weight: 600;
color: #333;
}

.company dd {
margin: 0;
color: #555;
}

.company dd strong{
    font-weight: 500;
}

/* History ------------------------------------------------------ */
.history{
    position: relative;
    padding-left: max(20px, calc((100% - 1300px) / 2 + 20px));
}
.history .contents-ttl{
    margin-bottom: 3%!important;
}
.history .swiper-wrapper{
    align-items: stretch;
}
.history .history_swiper .swiper-slide{
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    height: auto;
}
.history .history_swiper .swiper-slide p.day{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #CBCBCB;
}
.history .history_swiper .swiper-slide p.day .en{
    display: inline-block;
    font-size: 3.5rem;
    margin-right: 2px;
}
.history .history_swiper .swiper-slide p.txt{
    font-size: 1.4rem;
}
.history_nav{
    position: absolute;
    display: flex;
    top: 10%;
    right: 10px;
}

.history_nav .swiper-button-prev,
.history_nav .swiper-button-next {
  position: static;           /* Swiperのabsolute解除 */
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #666;
  background: #fff;
  margin: 0 5px;
}

/* 矢印サイズ調整 */
.history_nav .swiper-button-prev::after,
.history_nav .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

/* hover */
.history_nav .swiper-button-prev:hover,
.history_nav .swiper-button-next:hover {
  border-color: #999;
  color: #333;
}

/* value ------------------------------------------------------ */
.our-value .bg-white{
    background: #fff;
    padding: 5% 0;
}
.our-value .bg-white .gray-line{
    border: solid 2px #F4F4F3;
}
.our-value .network{
    padding-top: 5%;
}
.our-value .network .contents-ttl h2{
    margin-bottom: 3%;
}
.our-value .network .contents-ttl p{
    color: #4B4545;
    font-size: 1.6rem;
}
.our-value .low-flex .gray-line .sp-img{
    display: none;
}

footer.low-page{
    padding-top: 8%;
}

/* privacy ------------------------------------------------------ */

.privacy h3{
    font-size: 2rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #eaeaea;
    margin-top: 50px;
}
.privacy h3:first-of-type{
    margin-top: 0;
}
.privacy p.mb{
    margin-bottom: 20px;
}
.privacy ul{
    padding-left: 16px;
    text-indent: -16px;
}
.privacy ul li{
    margin-bottom: 5px;
}


.inquiry-step{
    display: flex;
}
.inquiry-step .inquiry-flex{
    display: flex;
    flex-direction: column;
    width: 300px;
}
.inquiry-step .inquiry-flex li{
    margin-bottom: 40px;
}
.inquiry-step .inquiry-flex li:last-of-type{
    margin-bottom: 0px;
}
.inquiry-step .inquiry-flex li p{
    position: relative;
    display: inline-block;
    color: #c3c3c3;
}
.inquiry-step.first .inquiry-flex li:first-of-type p{
    color: #4B4545;
}
.inquiry-step.confirm .inquiry-flex li:nth-of-type(1) p, .inquiry-step.confirm .inquiry-flex li:nth-of-type(2) p{
    color: #4B4545;
}
.inquiry-step.thanks .inquiry-flex li:nth-of-type(1) p, .inquiry-step.thanks .inquiry-flex li:nth-of-type(2) p, .inquiry-step.thanks .inquiry-flex li:nth-of-type(3) p{
    color: #4B4545;
}
.inquiry-step .inquiry-flex li p::after{
    content: "";
    display: block;
    width: 1px;
    height: 25px;
    background: #333;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.inquiry-step .inquiry-flex li:last-of-type p::after{
    content: none;
}
.inquiry-step .thanks-area p.mb{
    margin-bottom: 20px;
}
.inquiry-step .inquiry-flex span{
    display: inline-block;
    margin-right: 10px;
}
#wpcf7-f115-o1{
    width: calc(100% - 300px);
}

.contact label{
	display: block;
	margin-bottom: 20px;
}
.contact label br{
	display: none;
}
.contact label .wpcf7-form-control-wrap{
	display: block;
	width: 100%;
}
input{
	width: 100%;
	height: 40px;
	border: 1px solid #dddddd!important;
    border-radius: 5px;
    padding-left: 5px;
}
select{
	border-radius: 0!important;
	width: 100%;
	height: 50px;
	border: 1px solid #dddddd!important;
    padding-left: 5px;
    color: #4B4545;
}
textarea{
    width: 100%;
    border-radius: 0!important;
	width: 100%;
	border: 1px solid #dddddd!important;
    padding-left: 5px;
}
input[type="checkbox"] {
    accent-color: #4B4545;
  }
.inquiry .date-label{
	display: block;
	margin-bottom: 30px;
}
.inquiry .btn p{
	position: relative;
}
.date-label input{
	cursor: pointer;
}

.inquiry .index{
    display: flex;
    align-items: center;
	margin-bottom: 5px;
    margin-top: 25px;
}
.inquiry .index.no-mt{
    margin-top: 0;
}
.inquiry label br{
    display: none;
}

.date-pp {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.date-pp label{
	display: flex;
	justify-content: center;
	align-items: center;
}
.date-pp input{
	width: 15px;
	height: 15px;
	margin-right: 5px;
	margin-top: 5px;
	font-size: 16px;
    margin-bottom: 0;
}
.date-pp .wpcf7-list-item{
	width: auto!important;
	margin-right: 0!important;
}
.date-pp span.wpcf7-list-item-label{
	width: auto!important;
	margin-right: 0!important;
	line-height: 1;
}
.date-pp .wpcf7-form-control, .date-pp .wpcf7-form-control-wrap{
	width: auto!important;
	margin-right: 0!important;
}
.date-pp-txt{
    font-size: 1.4rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
}
.date-pp-txt a{
	position: relative;
}
.date-pp-txt a::after{
	content: "";
	width: 90%;
	height: 1px;
	background: #4B4545;
	position: absolute;
	bottom: -1px;
	left: 50%;
    transform: translateX(-50%);
}
.Required{
	display: inline-block;
	font-size: 1.2rem;
	padding: 0px 10px;
	background: #4B4545;
	color: #fff!important;
	margin-left: 10px;
	vertical-align: bottom;
    margin-bottom: 2px;
    border-radius: 3px;
}

textarea{border-radius: 0!important;}

.screen-reader-response p{
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.4rem;
}
.wpcf7-response-output{
	text-align: center;
	font-size: 1.4rem;
	margin-top: 20px;
}
.screen-reader-response ul{
	display: none;
}

.wpcf7-not-valid-tip{
	font-size: 1.2rem;
	color: #ff0049;
}

.confirm_area,
.thanks_area {
	display: none;
}

.wpcf7-response-output{
	display: none;
}
.inquiry .btn{
    display: flex;
    justify-content: center;
}
.inquiry button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    padding: 12px 12px 12px 0;
    background: none;
    border: none;
    cursor: pointer!important;
}

.inquiry button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 30px;
    aspect-ratio: 1 / 1;
    border: 1.5px solid #807d6c;
    border-radius: 50%;
}

.inquiry button span {
    color: #807d6c;
    word-break: keep-all;
    font-size: 1.6rem;
}

.inquiry .btn-arw {
    position: relative;
    width: 36px;
    background: #f4f4f3;
    overflow: hidden;
}

.inquiry .btn-arw_move {
    line-height: 0;
    overflow: hidden;
}
.inquiry .btn-arw_move img{
    vertical-align: middle;
}

.inquiry button:hover .btn-arw_move img {
    animation: btn-move 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes btn-move {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    50.1% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
#wpcf7-f123-o1 label{
    display: block;
    margin-bottom: 20px;
}
.inquiry.confirm {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  /* 各ボタンラップ */
  .inquiry.confirm .back-wrap,
  .inquiry.confirm .submit-wrap{
    position: relative;
  }
  .inquiry.confirm .back-wrap > p{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    padding: 12px 0px 12px 12px;
  }

  .inquiry.confirm .submit-wrap > p{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    padding: 12px 12px 12px 0;
  }
  
  /* inputを全面クリック可能に */
  .inquiry.confirm input {
    position: relative;
    background: none;
    border: none;
    color: #807d6c;
    font-size: 16px;
    padding-right: 50px;
    cursor: pointer;
  }
  
  /* 丸 */
  .inquiry.confirm .back-wrap::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1.5px solid #807d6c;
    border-radius: 50%;
  }
  .inquiry.confirm .submit-wrap::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1.5px solid #807d6c;
    border-radius: 50%;
  }
  
  /* 矢印 */
  .inquiry.confirm .btn-arw {
    position: relative;
    display: flex;
    align-items: center;
    width: 60px;
    height: 20px;
    background: #f4f4f3;
    overflow: hidden;
  }
  
  
  /* アニメ */
  .inquiry.confirm .submit-wrap:hover .btn-arw_move img {
    animation: btn-move 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .inquiry.confirm .back-wrap:hover .btn-arw_move img{
    animation: btn-move-back 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  @keyframes btn-move {
    0% { transform: translateX(0); }
    50% { transform: translateX(100%); }
    50.1% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
  }

  @keyframes btn-move-back {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%); /* 左に動く */
    }
    50.1% {
        transform: translateX(100%);  /* 右に戻る */
    }
    100% {
        transform: translateX(0);
    }
}
  
  .wpcf7-spinner{display: none;}

  .inquiry.confirm{
    margin-top: 80px;
  }
  .inquiry.confirm input{
    margin-bottom: 0;
    border: none!important;
  }
  
  .inquiry.confirm .wpcf7-form-control.wpcf7-submit.inquery{
    padding-right: 0;
  }
  .inquiry #wpcf7-f123-o1 .index{
    color: #898989;
    font-size: 1.4rem;
  }

  .nf .btn-main{
    margin-top: 50px;
  }
  .wpcf7-not-valid-tip{
    display: block;
    font-size: 1.2rem!important;
  }