@charset "utf-8";

@media screen and (max-width:950px) {
	.head_navi_ul {
    display: none;
}
#sp_navi {
	display: inherit;
}

/*ハンバーガー関連ここから*/
input[type="checkbox"].menu-trigger {
    display: none;
 }
/* 背景と全体クリック領域 */
#hamburger {
    position: fixed;
    top: 15px;
    right: 24px;
    width: 40px;
    height: 40px;
    z-index: 1001;
    cursor: pointer;
}
/* ラベルを背景全体に広げて中央配置 */
#hamburger > label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}
/* ハンバーガー線部分 */
.hamburger-lines {
  position: relative;
  width: 32px;
  height: 22px;
}

.hamburger-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #424445;
  border-radius: 2px;
  transition: all 0.4s;
}

.hamburger-lines span:nth-of-type(1) {
  top: 8px;
}

.hamburger-lines span:nth-of-type(2) {
  top: 20px;
}

/* チェック時のアニメーション */
input.menu-trigger:checked + #hamburger label .hamburger-lines span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
  background-color: #424445;
	height: 0.1em;
}

input.menu-trigger:checked + #hamburger label .hamburger-lines span:nth-of-type(2) {
  transform: translateY(-7px) rotate(45deg);
  background-color: #424445;
	height: 0.1em;
}

/* menu文字 */
.menu-text {
    margin-top: 4px;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
}

/* ポインターを手にする */
#hamburger:hover {
  cursor: pointer;
}

/*ハンバーガー関連ここまで*/


/*スマホメニュー本体関連ここから*/
	
#sp_navi_box {

}
#sp_navi_contact {
    background-color: #FFFFFF;
}
#sp_navi_contact p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}
#sp_navi_contact p #sp_navi_tel {
	pointer-events:none;
}
#sp_navi_contact p a {
    text-decoration: none;
    text-align: center;
    border: 1px solid #424445;
    padding: 8px;
    display: block;
}
#sp_navi_contact p .sp_menu_map-mail {
    background-color: #424445;
}
#sp_navi_contact p a img {
    width: 20px;
}
.sp_navi_txt {
    font-size: 16px;
    color: #98320D;
    font-weight: bold;
    line-height: 1.4em;
    text-align: center;
}
.sp_navi_tel {
    font-size: 28px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp_navi_tel a {
    text-decoration: none;
	pointer-events: none;
}

.sp_navi_tel_icon {
    width: 24px;
    margin-right: 6px;
}

input[type="checkbox"].menu-trigger~#sp_navi_box {
    box-sizing: border-box;
    height: 100%;
    padding: 24px 24px 144px 24px;/*メニュー内部上下左右余白*/
    position: fixed;
    top: 72px;
    right: -304px;/*メニュー横幅①と合わせる*/
    transition: transform 0.3s linear 0s;/*0.3s は変化するのにかかる時間*/
    width: 304px;/*メニュー横幅①*/
    z-index: 1000;
    overflow: auto;
    background-color: #FFFFFF;
  }
input[type="checkbox"].menu-trigger~#sp_navi_box+#sp_navi_background {
    background-color: #333;/*黒背景部分背景色*/
    display: none;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
	top:72px;
    transition: all 0.3s linear 0s;/*0.3s は変化するのにかかる時間*/
    width: 100%;
    z-index: -1;
  }
input[type="checkbox"].menu-trigger:checked~#sp_navi_box {
    transform: translate(-300px);/*メニュー横幅①と合わせる*/
}
input[type="checkbox"].menu-trigger:checked~#sp_navi_box+#sp_navi_background {
    display: block;
    opacity: 0.5;/*黒背景部分透過度*/
    z-index: 999;
}


#sp_navi_box ul {
    padding: 0;
	margin: 0;
	list-style-type: none;
}
#sp_navi_box ul li a {
    text-decoration: none;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sp_parent-menu li {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #EDEDED;
    font-weight: 500;
    font-size: 15px;
    line-height: 1em;
}
#sp_navi_box #sp_parent-menu {
    margin-top: 16px;


}

.on-off {
	display: none;
}

.menu-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    appearance: none;  /* ← iOSの矢印防止 */
    padding-top: 16px;
    padding-bottom: 16px;
}
.menu-label::after {
	content: "+";
	font-size: 24px;
	font-weight: 400;
	margin-left: auto;
	margin-right: 8px;
	transition: transform 0.3s ease;
}
.on-off:checked + .menu-label::after {
	content: "−";
}
.sp_child-menu {
	background-color: #FFFFFF;
	display: flex;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;

}

.on-off:checked + .menu-label + .sp_child-menu {
	max-height: 400px;
}
.sp_child-menu-inner {
    padding: 16px;
    max-height: 400px; /* ← 追加 */
    overflow-y: auto;  /* ← 追加 */
    width: 100%;       /* 安定化のため */
    background-color: hsla(0,0%,0%,0.62);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sp_parent-menu .sp_child-menu li {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 1.55%;
    padding: 0;
    height: auto;
    font-size: 13px;
    font-weight: 500;
    line-height: 1em;
    color: #231815;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #FFFFFF;
}
#sp_parent-menu .sp_child-menu li:nth-child(3n) {
	margin-right: 0%;
}
#sp_parent-menu .sp_child-menu li a {
    padding-top: 10px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sp_parent-menu .sp_child-menu.wide li {
    width: 100%;
    margin-right: 0px;
    line-height: 1.4em;
}

}

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


body{
    margin: 0px;
    padding: 0px;
    line-height: 1;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    color: #424445;
}
img{
margin: 0;
padding: 0;
vertical-align: bottom;
height:auto;
}
h1,h2,h3,h4,h5,h6,p {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
line-height:1;
    letter-spacing: 0.03em;
    text-indent: 0.03em;
}
.cl {
clear: both;
}
a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
a {
color: inherit;
}
.yoko_scroll {
overflow: auto; /*中身スクロールする*/
white-space: nowrap; /*テーブルを入れた場合、セル内の文字を折り返ししないようにする*/
-webkit-overflow-scrolling: touch;/*惰性を与えてスムーズなスクロールにする*/
}
.yt{
position:relative;
width:100%;
padding-top:56.25%;
}
.yt iframe{
position:absolute;
top:0;
right:0;
width:100%;
height:100%;
}
.link_btn {
    text-align: center;
    margin-top: 8px;
}
.link_btn a {
    background-color: #424445;
    color: #FFFFFF;
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 16px;
    text-decoration: none;
    display: inline-block;
    min-width: 240px;
    background-image: url(../images/btn_arrow_wht.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 8px auto;
    font-size: 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.txt_wht {
	color: #ffffff;
}
.pc_only {
	display: none;
}
.sp_only {
	display: inherit;
}
header {
    position: fixed;
    width: 100%;
    background-color: #FFFFFF;
    top: 0px;
    z-index: 1000;
}

#head_logo img {
    width: 100%;
}
#head_logo {
    width: 112px;
}
#header_inner {
    padding-left: 2.3%;
    padding-right: 2.3%;
    height: 56px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
#head_right {
    /* [disabled]margin-top: auto; */
}
.head_navi_ul {
    padding: 0px;
    margin-top: 24px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
    display: none;
    justify-content: flex-end;
}
.head_navi_ul li {
    margin-left: 16px;
    font-size: 15px;
}
#sp_navi {
	display: inherit;
}
#hamburger {
    top: 8px;
    right: 16px;
}
input[type="checkbox"].menu-trigger~#sp_navi_box {
    top: 56px;
  }
input[type="checkbox"].menu-trigger~#sp_navi_box+#sp_navi_background {
	top:56px;
  }
#sp_navi_contact p #sp_navi_tel {
	pointer-events:inherit;
}

.h2h2_abc {
    font-family: "Jost", sans-serif;
    margin-bottom: 12px;
    font-size: 14px;
}
.h2_h2 h2 {
    letter-spacing: 0.05em;
    font-size: 20px;
}
.h2_h2 {
    text-align: center;

}

.h2_h2.ma_bottom619 {
    margin-bottom: 6.19%;
}
.h2_h2.ma_bottom846 {
    margin-bottom: 8.46%;
}


.h2_h2.ma_bottom538 {
    margin-bottom: 5.38%;
}
.h2_h2.ma_bottom461 {
    margin-bottom: 7.69%;
}
.list_UL {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
}
.list_UL.li_column3 {
}

.list_li_img img {
    width: 100%;
    z-index: 90;
}
.list_UL li {

}
.list_UL.li_column3 li {
    width: 30.76%;
    margin-right: 3.84%;
    margin-bottom: 3.84%;
}


.list_UL.li_column3 li:nth-child(3n) {
    margin-right:0px;
}
.list_UL.li_column4 li {
    width: 22.3%;
    margin-right: 3.6%;
    margin-bottom: 3.6%;
}
.list_UL.li_column4 li:nth-child(4n) {
    margin-right:0px;
}
.list_text_box {
    background-color: #FFFFFF;
    margin-top: -32px;
    margin-right: 16px;
    z-index: 100;
    position: relative;
    margin-left: 16px;
}
#top_product .list_text_box {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

.list_cate {
    color: #FFFFFF;
    background-color: #DC0003;
    width: fit-content;
    margin-left: auto;
    font-size: 12px;
    padding-top: 6px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 8px;
}
#top_news .list_UL.li_column3 li {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 24px;
}
.news_list_text {
    padding: 16px;
}
.news_li_head {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.news_list_text p {
    font-size: 14px;
    line-height: 1.5em;
}
.news_list_text .list_date {
    color: #FFFFFF;
    background-color: #424445;
    width: fit-content;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
    margin-bottom: 8px;
}

.news_list_text h3 {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 4px;
    font-weight: 500;
}
	
#top_product .list_UL.li_column3 li {
    width: 48.46%;
    margin-right: 3.08%;
    margin-bottom: 16px;
}
#top_product .list_UL.li_column3 li:nth-child(2n) {
	margin-right: 0%;
}
.top_product_text p {
    font-size: 14px;
    margin-top: 6px;
}
.top_product_text {
    padding: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#top_product .top_product_text {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 8px;
}

.top_product_text h3 {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.inner1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.works_list_text {
    padding: 16px;
}
.works_list_text h3 {
    font-weight: 500;
    font-size: 17px;
}

.list_UL.li_column4 li .list_li_inner .list_text_box {
    margin-right: 24px;
    margin-top: -32px;
}
.service_list_text {
    padding: 24px;
}
.service_list_UL1 {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}
.service_list_text .service_list_UL1 li {
    width: 47.69%;
    margin-right: 0px;
}
.service_list_UL1 li a {
    background-color: #424445;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}
.service_list_UL2 {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service_list_text .service_list_UL2 li {
    width: auto;

}
.service_list_UL2 li a {
    text-decoration: none;
    font-size: 13px;
}
#maker_wrap {
	padding-top: 5.38%;
    padding-right: 5.38%;
    padding-left: 5.38%;
    padding-bottom: 9.23%;
    background-image: url(../images/bg_gray.svg);
    background-repeat: no-repeat;
    background-size: 76% auto;
    background-position: right top;
}

#mkr_list-logo {
	padding: 0;
    margin: 0;
    list-style-type: none;
	display: flex;
    flex-wrap: wrap;
}
#mkr_list-logo li {
    border: 1px solid #D5D5D5;
    width: 32.3%;
    margin-right: 1.55%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1.55%;
}
#mkr_list-logo li:nth-child(6n) {
    margin-right: 1.55%;
}
#mkr_list-logo li:nth-child(3n) {
	margin-right: 0%;
}


/* モーダルを開くボタン */
.mkr_modal_trigger {
  cursor: pointer;
}

/* モーダル本体 */
.mkr_modal_wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
}

.mkr_modal_layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.mkr_modal_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px;
    background: #fff;
    width: 100%;
    max-width: 296px;
}

.mkr_modal_inner {
    position: relative;
    overflow-y: scroll;
    height: 100%;
    padding: 8px;
}

/* モーダルを閉じるボタン */
.mkr_modal_close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(50, 50, 50, 1);
    cursor: pointer;
    transition: opacity .6s;
}

.mkr_modal_close:hover {
  opacity: .6;
}

.mkr_modal_close:before,
.mkr_modal_close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}

.mkr_modal_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mkr_modal_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.mkr_modal_content {
}
.mkr_modal_content h3 {
    font-size: 17px;
    line-height: 1.4em;
    margin-bottom: 10px;
}
.mkr_modal_logo {
    max-width: 144px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}
.mkr_modal_img {
	margin-bottom: 4px;
	flex-direction: column;
}
	.mkr_modal_img img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    margin-bottom: 10px;
    display: block;
}
.mkr_modal_text {
    line-height: 1.5em;
}
#com_brand_txt{
	
}
#com_brand_txt p{
	font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
}

	
#maker_name {
    padding-top: 22px;
    padding-right: 8px;
    padding-left: 20px;
    padding-bottom: 12px;
    margin: 0;
    border: 1px solid #D5D5D5;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFFFFF;
}
#maker_name li {
    font-size: 13px;
    margin-right: 16px;
    margin-left: 16px;
    margin-bottom: 8px;
}
#foot_contact {
    background-image: none;
    background-repeat: no-repeat;
    padding-top: 10%;
    padding-right: 5.38%;
    padding-left: 5.38%;
    background-position: right top;
    background-size: 76% auto;
    padding-bottom: 0%;
}
#foot_contact_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot_contact_each {
    width: 100%;
    margin-bottom: 24px;
}
.foot_contact_img {
}
.foot_contact_img img {
    width: 100%;
}
.foot_contact_text {
    background-color: #FFFFFF;
    margin-top: -48px;
    margin-right: 64px;
    position: relative;
    padding: 16px;
}
.foot_contact_text h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}
.foot_contact_text h3 span {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-right: 16px;
}
.foot_contact_text p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
}
.foot_contact_text p a {
    text-decoration: none;
}
.foot_contact_text p .f_c_tel {
	pointer-events: inherit;
}
footer {
    padding-top: 10%;
    padding-right: 5.38%;
    padding-bottom: 10%;
    background-image: url(../images/footer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding-left: 5.38%;
    margin-bottom: 48px;
}
#foot_info {

}
#foot_logo {
    width: 144px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}
#foot_logo img {
    width: 100%;
}

#foot_info p {
    color: #FFFFFF;
    line-height: 1.6em;
    margin-left: 0%;
    font-size: 13px;
    text-align: center;
}
#foot_menu {
    padding-top: 32px;
    padding-right: 32px;
    padding-left: 10.76%;
    padding-bottom: 16px;
    background-color: hsla(0,0%,100%,0.87);
    margin-top: 3.84%;
    width: 100%;
    margin-bottom: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}
#foot_menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
#foot_menu ul li {
    width: 26.15%;
    margin-bottom: 12px;
}
#foot_menu ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

#foot_info #foot_copy {
    font-size: 10px;
    margin-top: 24px;
}
#foot_img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
	min-width:0px;
}
#foot_img img {
    width: 100%;
}
#sp_contact {
    display: flex;
    background-color: #424445;
    padding-right: 16px;
    padding-left: 16px;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1000;
}
#sp_contact p {
    color: #FFFFFF;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    line-height: 1em;
	display: inherit;
}
#sp_contact p a {
    text-decoration: none;
}
#sp_contact p a img {
    width: 20px;
    vertical-align: top;
    margin-right: 8px;
}

#sp_contact ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
}
#sp_contact ul li {
    width: 32px;
    height: 32px;
    background-color: #000000;
    border-radius: 4px;
    border: 2px solid #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 12px;
}
#sp_contact ul li a {
    padding: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
#sp_contact ul li a img {
    width: 100%;
}
#pagetit_wrap {
    position: relative;
    margin-top: 56px;
    padding-top: 32px;
}
#pagetit_wrap::after{
    content: "";
    position: absolute;
    width: 76.15%;
    height: 76.15%;
    background-color: #F4F4F4;
    right: 0px;
    z-index: -100;
    top: 0px;
}
#pagetitle {
    background-color: rgba(66,68,69,0.88);
    padding-top: 24px;
    padding-right: 24px;
    padding-left: 5.38%;
    padding-bottom: 24px;
    letter-spacing: 1px;
    width: 60%;
}
#pagetitle h1 {
    color: #ffffff;
    line-height: 1em;
    font-weight: 500;
    font-size: 20px;
}
#pt_abc {
    font-size: 14px;
    margin-top: 14px;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    display: block;
    line-height: 1em;
}
	.ico-tit{
	display: flex;
	align-items: center;
	margin-bottom: 6.92%;
}
.ico-tit_i{
	width: 56px;
	margin-right: 16px;
}
.ico-tit_i img{
	width: 100%;
}
.ico-tit h2{
	line-height: 1.3em;
    font-weight: 500;
    font-size: 18px;
	border-bottom: 1px solid #EBEDEF;
	        padding-bottom: 8px;
        margin-bottom: 12px;
}
.ico-tit_t{
	width: 100%;
}
.ico-tit_abc{
	font-size: 13px;
    margin-top: 0;
    font-family: "Jost", sans-serif;
	line-height: 1em;
	font-weight: 500;
}
.p-margin{
	margin-bottom: 3.84%;
}
	.br_pc{
		display: none;
	}
	.br_sp{
		display: inherit;
	}
}
