@charset "utf-8";
/* CSS Document */

/*********************************************************
     共通
**********************************************************/
body {
	font-family: "Arial", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	letter-spacing: 0.1em;
	font-weight: 400;
	background-color: #f7f7f7
}
.detail {
    margin-top: 60px;
	padding:0;
}
.container {
	max-width:1200px;
	width:100%;
	margin:0 auto;
}
.row {
	margin:0;
}
.post_body {
	padding: 0 0 1em;
}
.post_body p:last-child {
	margin-bottom:0;
}
.mainpost {
	padding-top: 60px;
	margin-top:0;
}
.col_2 {
	display: -webkit-flex;
    display: flex;
}

/*** 文字 ****/
.tit_line span {
	position: relative;
	display: inline-block;
	padding: 0 55px;
	font-size:1.4rem;
}
p.tit_line span {
	font-size:1.2rem;
}
.tit_line span:before, .tit_line span:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: black;
}

.tit_line span:before {
  left:0;
}
.tit_line span:after {
  right: 0;
}
.sec_option .tit_line span:before,.sec_option .tit_line span:after {
	background-color:#c1c1c1;
}
.archive h1 {
	text-align: center;
	font-weight: bold;
	margin-bottom:1em;
}
a {
	color: #00aeef;
}
a:visited {
    opacity: 1;
	color: #00aeef;
}
.post_body h1, .post_body h2,.post_body h1 span, .post_body h2 span {
	border-bottom:none;
	padding: 0;
}
.sp_only {
	display: none;
}

@media only screen and (max-width: 767px) {
	body,p {
		font-size:0.8rem;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	.tit_line span {
		font-size: 1.2rem;
	}
}

/*** header ****/
.headline {
	background: #333;
	position: fixed;
	top:0;
    height: 60px;
    width: 100%;
    z-index: 300;
	padding: 0.5em 0;
}
.headline .container {
	max-width:100%;
}
.navbar-nav {
	
}
.headline h1 {
	font-size: unset;
    margin: 0;
}
.logo img {
	width: auto !important;
    height: 36px !important;
    max-width: initial !important;
}
@media only screen and (min-width: 576px) {
	.headline .col-sm-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 30%;
		max-width: 30%;
	}
}
/** ハンバーガー **/
.hamburger {
  position: absolute;
  right: 15px;
  top: 0px;
  width: 30px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 55px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
  font-size: 8px;
    text-align: center;
    padding-top: 41px;
	color: #fff;
}

.hamburger__line {
  position: absolute;
  left: 2px;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 14px;
}
.hamburger__line--2 {
  top: 23px;
}
.hamburger__line--3 {
  top: 33px;
}
.g-navi {
	position:relative;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-align-items: flex-end;
    align-items: flex-end;
	list-style:none;
    padding: 0 12vw 0 2vw;
	margin: 0;
}

.g-navi li  {
	height: 62px;
}

.g-navi li img {
	height:100%;
	width:auto;
	padding: 10px;
}

.global-nav {
  position: fixed;
  /*right: -320px;*/ /* これで隠れる */
  top: 0;
  width: 100%; /* スマホに収まるくらい */
  height: 0vh;
  padding-top: 60px;
  background-color: #e1e0db;
  transition: all .6s;
  z-index: 200;
  /*padding: 15px;*/
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.nav-open .global-nav  {
	height:100vh;
}
.global-nav > ul {
	margin:25px;
	padding:0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	list-style: none;
    gap: 15px;
}
.global-nav > ul li {
	padding:1em;
}
.global-nav > ul li a {
	text-decoration:none;
	color:#333;
}
.global-nav .h_btn {
	margin-top:50px;
}
.global-nav .h_btn li a {
	padding: 10px 30px;
	border-radius: 50em;
    font-size: 1.1rem;
	width: 320px;
    display: inline-block;
    text-align: center;
}
.global-nav .h_btn li a.mens_btn {
	background: #31b0e1;
    color: #ffffff;
}
.global-nav .h_btn li a.ladys_btn {
	background: #f186c1c7;
    color: #ffffff;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}

#head2.fixed {
    position: fixed;
    top: 0;
    z-index: 1;
}
.h_about {
	text-align: center;
	width:100%;
	padding-top: 20px;
}
.h_about > img {
	margin-bottom:10px;
}
.h_about p {
	margin:0;
}
.h_about p span {
	display: inline-block;
	margin-right:0.5em;
}
.h_about a {
	color:#333;
}
.h_about .sns {
	padding:0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	 -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	list-style: none;
}
.h_about .sns li {
	padding:0.5em;
}

@media only screen and (max-width: 1200px) {
	.navbar-expand-md {
		display: none;
	}
	.mainarea {
		padding:0;
	}
}
@media only screen and (max-width: 768px) {
	.headline .col-sm-6 {
		padding-left:0;
	}
	.logo img {
		height:30px;
	}
	.global-nav .h_btn {
		margin-top: 20px;
	}
	.global-nav > ul li {
		padding:0;
		font-size: 0.9rem;
	}
	.global-nav .h_btn li a {
		font-size:1rem;
	}
	.h_about {
		font-size: 0.9rem;
	}
	.h_about > img {
		width:260px;
	}
}
@media only screen and (max-width: 767px) {
	.global-nav > ul {
		display: block;
	}
	.global-nav > ul li {
		border-bottom:solid 1px #ccc;
		text-align: center;
		padding:10px;
	}
	.global-nav > ul.h_btn li {
		margin-bottom:8px;
		border: none;
        padding: 0;
	}
}

/** ぱんくず **/
.breadcrumb {
	background: none;
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
	font-size: 0.8rem;
}

/*** footer ****/
.pagetop {
	position:fixed;
	right:10px;
	bottom:10px!important;
	padding: 0;
}
.pagetop a {
	padding: 10px 15px;
    display: inline-block;
    border: solid 1px;
    background: #f6f6f6;
    border-radius: 10px;
}
.pagetop a:hover {
	text-decoration: none;
}
footer {
	background: #333333;
    color: #d7d7d7;
}
footer .row {
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
footer .row a {
	color: #d7d7d7;
}
footer .row .f_about {
	width:400px;
	line-height:1.8em;
}
footer .row .f_about img {
	margin-bottom:10px;
}
footer .row .f_about p {
	margin-bottom:0;
}
footer .row .f_about p span {
	display: inline-block;
	margin-right:0.5em;
}
footer .row .sns {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	list-style: none;
	padding:0;
	margin: 10px 0;
	width:350px;
}
footer .row .sns li {
	margin:5px;
}
footer .row .copy {
	padding:0;
	text-align: left;
	font-size:0.7rem;
}
footer .row .f_menu {
	width: calc(100% - 400px);
	padding:10px 0 0 50px;
	text-align: right;
}
footer .row .foot_menu {
	display: -webkit-flex;
    display: flex;
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style: none;
}
footer .row .foot_menu li {
	margin-left:3em;
	display: block;
	margin-bottom: 10px;
}
footer .row .f_menu > a {
	display: inline-block;
	margin-top:30px;
}
footer .row .f_menu > a img {
	border-radius: 50em;
}
@media only screen and (max-width: 1200px) {
	footer .row {
		display: block;
	}
	footer .row .f_menu,footer .row .f_about {
		width: 100%;
		padding: 0;
		text-align: center;
		margin-bottom: 40px;
	}
	footer .row .foot_menu {
		-webkit-justify-content: center;
    	justify-content: center;
		margin: 2em;
	}
	footer .row .foot_menu li {
		margin: 0em 1.5em 1em;
	}
	footer .row .sns {
		width:100%;
	}
	footer .row .copy {
		text-align: center;
	}
}
@media only screen and (max-width: 768px) {
	footer .row .foot_menu {
		font-size:0.8rem;
	}
	footer .row .f_menu > a {
		width: 280px;
   	 	margin: 0;
	}
	footer .row .f_about p {
		font-size:0.8rem;
	}
	footer .row .f_about > img {
		width:260px;
	}
}
@media only screen and (max-width: 767px) {
	footer .row .foot_menu {
		display: block;
		margin-top:0;
	}
	footer .row .foot_menu li {
		border-bottom: solid 1px #6f6c6c;
        padding: 10px;
        margin: 0;
	}
	footer .row .f_about p span {
		display: block;
	}
}

/*********************************************************
     アーカイブ
**********************************************************/
.detail.mens,.detail.ladys {
	width:1200px;
	margin:0 auto;
	padding-top:1rem;
}
.box_header_image_mens,.box_header_image_ladys {
	width:100%;
	height: 50.4vw;
	position:relative;
	top:60px;
}
.box_header_image_mens h1,.box_header_image_ladys h1 {
	position:absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.tax-mens-type h1,.tax-ladys-type h1 {
	text-align: center;
	font-size:1.8rem;
}
.post-type-archive-mens-winter .mainpost,.post-type-archive-ladys-winter .mainpost {
	margin-top:0;
	text-align: center;
}
.mainpost .box_top_bnr {
	margin-top:-90px;
	margin-bottom:60px;
	text-align: center;
	position:relative;
}
.mainpost .box_top_bnr .box_top_bnr_li {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	max-width: 1184px;
    margin: 0 auto;
	padding:0;
}
.mainpost .box_top_bnr .box_top_bnr_li li {
	width:calc(50% - 5px);
	padding:0;
	margin:0 0 10px;
	list-style: none;
}
.mainpost .box_top_bnr .box_top_bnr_li li.bnr_100 {
	width:100%;
}
.mainpost .txt_main {
	letter-spacing: 0.2em;
}
.mainpost .top_muryou {
	list-style: none;
	margin:50px 0 90px;
	padding:0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.mainpost .top_muryou li {
	width:260px;
	background: #97b5b7;
	color:#fff;
	padding:20px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin:0 10px;
}
#mens_wrap,#ladys_wrap  {
	background: #fff;
	padding:30px 15px;
	max-width:100%;
}
#mens_wrap .type-mens-winter,#mens_wrap .type-impact-suit,#ladys_wrap .type-ladys-winter {
	max-width:300px!important;
	flex: auto;
	text-align: left;
}
#mens_wrap .type-mens-winter .post_thumb,#mens_wrap .type-impact-suit .post_thumb,#ladys_wrap .type-ladys-winter .post_thumb {
	height:auto;
}
#mens_wrap .type-mens-winter .card-text,#mens_wrap .type-impact-suit .card-text,#ladys_wrap .type-ladys-winter .card-text {
	font-size:0.8rem;
}
#mens_wrap article.card .card-title,#ladys_wrap article.card .card-title {
	height:auto;
}
#mens_wrap article.card .card-title a,#ladys_wrap article.card .card-title a {
	color:inherit;
	font-weight: bold;
}
#mens_wrap article.card .box_item_subtxt ul,#ladys_wrap article.card .box_item_subtxt ul {
	list-style: none;
	margin-left:1em;
	margin-right:1em;
	padding:0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
#mens_wrap article.card .box_item_subtxt ul li,#ladys_wrap article.card .box_item_subtxt ul li {
	margin-right:5px;
	margin-bottom: 5px;
}
#mens_wrap article.card .box_item_subtxt ul li a,#ladys_wrap article.card .box_item_subtxt ul li a {
	font-size:0.8rem;
	border:solid 1px #ccc;
	padding:0 0.5em;
	display: block;
	color:inherit;
}
#mens_wrap article.card .item_top_txt,#ladys_wrap article.card .item_top_txt {
	margin:1rem 1rem .5rem 1rem;
	font-size:0.9rem;
}
.item_cat_list {
	list-style: none;
	margin:15px 15px 50px;
	padding:0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	
}
.item_cat_list li {
	margin:10px;
}
.item_cat_list li a {
	border:solid 1px #ccc;
	padding:0.5em 1em;
	display: block;
	color:inherit;
}
.box_red {
	font-size: 0.8rem;
    border: solid 1px #db0000;
    padding: 0 0.5em;
    display: inline-block;
    color: #db0000;
}
.f_cat {
	margin-top:50px;
}

/* スライド */
.main_slider {
	position: relative;
	width:100%;
	overflow:hidden;
	top: 0;
	z-index:-1;
}
.main_slider img {
	width:100%;
}
.main_slider video {
	width:100%;
}

@media only screen and (max-width: 768px) {
	.mainpost .box_top_bnr {
		width: 90%;
    	margin: 0 auto 60px;
	}
	.mainpost .top_muryou li {
		width:25%;
		padding: 12px
	}
	#mens_wrap .type-mens-winter,#ladys_wrap .type-ladys-winter {
		max-width: 33% !important;
	}
	
}
@media only screen and (max-width: 767px) {
	.box_header_image_mens {
		margin-bottom: 20px
	}
	.mainpost .box_top_bnr {
		margin-bottom:30px;
	}
	.mainpost .txt_main {
		font-size: 0.8rem;
    	line-height: 1.8em;
		letter-spacing: 0.1em;
	}
	.mainpost .top_muryou {
		display: block;
		font-size: 0.8rem;
		text-align: center;
		margin: 30px 0;
	}
	.mainpost .top_muryou li {
		width: 250px;
        padding: 10px;
        display: inline-block;
        margin-bottom: 6px;
	}
	.item_cat_list {
		font-size:0.8rem;
		margin: 0 0 30px;
	}
	.item_cat_list li {
		margin: 3px;
	}
	.item_cat_list li a {
		padding: 0.2em 0.5em;
	}
	#mens_wrap .type-mens-winter,#ladys_wrap .type-ladys-winter {
		max-width:50%!important;
		padding: 6px;
	}
	#mens_wrap article.card .box_item_subtxt ul,#ladys_wrap article.card .box_item_subtxt ul {
		font-size: 0.6rem;
	}
	.mainpost .box_top_bnr .box_top_bnr_li {
		display: block;
	}
	.mainpost .box_top_bnr .box_top_bnr_li li {
		width:100%;
	}
}


/** single **/
.single .ttl_h1 span {
	display: block;
	font-size:1rem;
}
.box_item_top {
	margin-bottom:30px;
}
.single .box_item_subtxt ul {
	list-style: none;
	margin-left:0em;
	margin-right:1em;
	padding:0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single .box_item_subtxt ul li {
	margin:0 1rem 0 0!important;
}
.single .box_item_subtxt ul li a {
	font-size:0.8rem;
	border:solid 1px #ccc;
	padding:0 0.5em;
	display: block;
	color:inherit;
}
.single .slick-list {
	padding:0!important;
}
.single .slick-slide {
	width:auto!important;
}
/*.single .slick-slide img {
	width:auto!important;
	height:300px!important;
}*/
.single .box_item_img {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	gap:10px;
	margin-bottom: 2em;
}
.single .box_item_img img {
	width: calc(50% - 5px);
}
.single .sec_option {
	background: #979797;
	color:#fff;
	padding:2em 0;
}
/*.single .sec_option.sec_point {
	background: #484848;
	color:#c1c1c1;
}*/
.single .sec_option h2,.single .sec_price h2 {
	text-align: center;
	line-height:1.2em;
	letter-spacing: 0.1em;
	margin-bottom:1em;
}
.single .sec_option h2 .kakko,.single .sec_price h2 .kakko {
	display: inline-block;
	font-size:1rem;
	position: relative;
    padding: 0rem 1rem;
    font-weight: bold;
    text-align: center;
	line-height: 1.8em;
}
.single .sec_option h2 .kakko::before,
.single .sec_option h2 .kakko::after,
.single .sec_price h2 .kakko::before,
.single .sec_price h2 .kakko::after {
    position: absolute;
    width: 11px;
    height: 12px;
    content: '';
}

.single .sec_option h2 .kakko::before,
.single .sec_price h2 .kakko::before{
    border-left: solid 2px;
    border-top: solid 2px;
    border-radius: 5px 0 0 0;
    top: 0;
    left: 0;
}

.single .sec_option h2 .kakko::after,
.single .sec_price h2 .kakko::after {
    border-right: solid 2px;
    border-bottom: solid 2px;
    border-radius: 0 0 5px 0;
    bottom: 0;
    right: 0;
}
.single .op_li {
	list-style: none;
	margin:0;
	padding:0;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	gap:30px 10px;
}
.single .op_li li {
	width:226px;
}
.single .op_li li:before {
	content:"";
	width:226px;
	height:226px;
	display: block;
	background-size:100%;
	background-repeat: no-repeat;
	border-radius: 20px;
    margin-bottom: 10px;
}
.single-ladys-winter .op_li li.op_innerneck:before {
	background-image: url(../images/option/op-5.jpg);
}
.single-mens-winter .op_li li.op_innerneck:before {
	background-image: url(../images/option/op-5m.jpg);
}
.single .op_li li.op_matamachi:before {
	background-image: url(../images/option/op-7.jpg);
}
.single .op_li li.op_hiji:before {
	background-image: url(../images/option/op-1b.jpg);
}
.single .op_li li.op_tekubi:before {
	background-image: url(../images/option/op-3.jpg);
}
.single .op_li li.op_ashikubi:before {
	background-image: url(../images/option/op-4.jpg);
}
.single .op_li li.op_aqua:before {
	background-image: url(../images/option/op-8.jpg);
}
.single .op_li li.op_scs_ude:before {
	background-image: url(../images/option/op-sns-ude.png);
}
.single .op_li li.op_scs_ashi:before {
	background-image: url(../images/option/op-sns-ashi.png);
}
.single .op_li li.op_ezin {
	width: 529px;
	border-radius: 20px;
	overflow: hidden;
}
.single .op_li li.op_ezin:before {
	display: none;
}
.single .op_li li p {
	margin-bottom:0;
	font-size:0.8rem;
}
.single .op_li li .tit,.single .op_li li .price_op {
	font-size:1rem;
}
.single .op_li li .price_op {
	margin-bottom:10px;
}
.single .sec_kiji {
	padding:2em 0;
}
.single .sec_kiji .li_sozai {
	list-style: none;
	padding:0;
}
.single .sec_kiji .li_sozai li {
	display: -webkit-flex;
    display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
}
.single .sec_kiji .li_sozai li:before {
	content:"";
	width:226px;
	height:226px;
	display: block;
	background-size:100%;
	background-repeat: no-repeat;
	border-radius: 20px;
    margin-bottom: 10px;
}
.single .sec_kiji .li_sozai li.mesh_jersey:before {
	background-image: url(../images/material/jersey-2.png);
}
.single .sec_kiji .li_sozai li.flat_jersey:before {
	background-image: url(../images/material/jersey-3.png);
}
.single .sec_kiji .li_sozai li.alljersey:before {
	background-image: url(../images/material/jersey-w.png);
}
.single .sec_kiji .li_sozai li.mesh_jersey_black:before {
	background-image: url(../images/material/jersey-2.jpg);
}
.single .sec_kiji .li_sozai li.flat_jersey_black:before {
	background-image: url(../images/material/jersey-3.jpg);
}
.single .sec_kiji .li_sozai li.alljersey_black:before {
	background-image: url(../images/material/jersey-4.png);
}
.single .sec_kiji .li_sozai li.ura_jersey:before {
	background-image: url(../images/material/jersey.png);
}
.single .sec_kiji .li_sozai li.airshoot:before {
	background-image: url(../images/material/shoot.jpg);
}
.single .sec_kiji .li_sozai li.cal:before {
	background-image: url(../images/material/cal.png);
}
.single .sec_kiji .li_sozai li.drymax:before {
	background-image: url(../images/material/silkyx.png);
}
.single .sec_kiji .li_sozai li.airboust:before {
	background-image: url(../images/material/legacy.png);
}
.single .sec_kiji .li_sozai li div {
	width: calc(100% - 260px);
	font-size: 0.9rem;
}
.single .sec_kiji .li_sozai li div h4 {
	font-size: 1.3rem;
	margin-bottom:0;
}
.box_line {
    margin: 10px 0 0;
    border: dashed 1px #838181;
    padding: 5px;
	width:100%!important;
}
.box_line p {
	margin:0;
}
.box_point {
	border: dashed 1px #bfbfbf;
    padding-bottom: 30px;
    margin-bottom: 10px;
	width: 100% !important;
	border-radius: 10px;
}
.airboust .box_point p {
	text-align: center;
	margin: 10px 0 0;
}
.li_color,.li_logo,.li_patch  {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
	list-style: none;
}
.li_color li {
    width: 140px;
    margin: 5px;
    font-size: 0.8rem;
	display: block !important;
}
.li_logo li {
    margin: 5px;
    width: 30%;
}
.li_patch li {
    margin: 5px;
    font-size: 0.8rem;
}
.airboust .box_point {
	padding-bottom: 0px;
}
.airboust .li_color li {
	width:110px;
}
.airboust .li_color li:before {
	display: none!important;
}
.li_color li img {
	width:100%;
	height:auto;
}
.price_tabl {
	width:100%;
	table-layout: fixed;
	margin-bottom:10px;
}
.sec_stitch,.sec_price {
	padding-top: 40px;
}
.price_tabl td,.price_tabl tr,.price_tabl th {
	border: solid 1px #c1c1c1;
	padding:10px;
	text-align:center;
}
.price_tabl th span {
	font-weight: normal;
    font-size: 0.8rem;
}

.price_tabl.silkyx th {
	background-color:#cab1dd;
}

.price_tabl.cal th,.price_tabl th.cal {
	background-color:#ebe5a3;
}
.price_tabl .jersey {
	background-color:#dbdbdb;
}

.price_tabl.legacy th,.price_tabl .shoot  {
	background-color:#e1b7c1;
}
@media only screen and (max-width: 768px) {
	.single .op_li {
		-webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	}
	.box_mainte .box_txt .col_2 .box_img {
		width: 50%;
	}
	.single .box_mainte .box_txt .col_2 .box_txt {
		width: calc(100% - 50%);
	}
	.box_point {
		padding-bottom:0;
	}
}
@media only screen and (max-width: 767px) {
	.breadcrumb {
		padding: 1em 0 0;
		font-size: 0.6rem;
	}
	.sec_logo .container {
		padding:0;
	}
	.single .ttl_h1 {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	.single .ttl_h1 span {
		font-size:0.8rem;
	}
	.box_img_slide {
		max-height:500px;
		overflow: hidden;
	}
	.single .box_item_img {
		display: block;
	}
	.single .box_item_img img {
		width:100%;
		margin-bottom: 5px;
	}
	.single .op_li li {
		width: 48%;
	}
	.single .op_li li:before {
		width:100%;
		height:calc(50vw - 30px);
	}
	.single .sec_kiji .li_sozai li {
		display: block;
		margin-bottom:20px;
	}
	.single .sec_kiji .li_sozai li:before {
		width: 150px;
        height: 150px;
        margin: 0 10px 10px 0;
        float: left;
	}
	.single .sec_kiji .li_sozai li div {
		width:100%;
	}
	.single .sec_kiji .li_sozai li div h4 {
		margin-bottom:0;
		font-size: 1rem;
        line-height: 1.4rem;
	}
	.li_color li,.airboust .li_color li {
        width: 20%;
		letter-spacing: 0;
    	line-height: 1.3;
		margin-bottom: 10px !important;
        font-size: 0.6rem;
    }
	.li_color li img,.airboust .li_color li img {
		margin-bottom:5px;
	}
	.li_patch li {
        width: 36vw;
    }
	.li_logo li {
		margin: 1%;
        width: 40vw;
	}
	.single .sec_kiji .li_sozai li div {
		font-size:0.8rem;
	}
	.price_tabl {
		overflow-x: auto;
		display: block;
	}
	.price_tabl tbody {
		display: block;
    	width: 700px;
	}
	.price_tabl:after {
		content:"横にスクロールできます";
		display: inline-block;
		margin-top:10px;
	}
	.single .box_mainte {
		display: block;
	}
	.single .box_mainte .box_txt {
		width:100%;
		margin: 10px 0;
	}
	
}
/**** カート *****/
.cart {
	text-align: center;
    margin: 50px 0 0;
	position:relative;
}
.cart a {
	background: #d60000;
    font-size: 2rem;
    padding: 20px 4em 29px;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}
.cart a img {
	margin: 0 30px -5px 0;
}
.cart .box_btn a {
	background: none;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	.cart a {
		padding: 10px 0 11px;
        width: calc(100% - 80px);
        position: fixed;
        bottom: 0;
        left: 0;
        font-size: 1.4rem;
		border-radius: 10px 10px 0 0;
		z-index: 100;
	}
	.cart a img {
		margin-right:20px;
	}
	.box_btn {
		width:80%;
		margin-left:auto;
		margin-right:auto;
	}
}
/**** なみなみ *****/
.custom-shape-divider-bottom-1756957072 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
	margin-top: 30px;
}

.custom-shape-divider-bottom-1756957072 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 52px;
}

.custom-shape-divider-bottom-1756957072 .shape-fill {
    fill: #FFFFFF;
}
/**** キッズバナー *****/
.bnr_kids {
	text-align: center;
	background: #fff url(../images/common/bg-kids.jpg) no-repeat center bottom;
	padding-top: 20px;
}
@media only screen and (max-width: 767px) {
	.bnr_kids {
		background: #fff;
		padding-top: 10px;
	}
}
/**** 採寸表 *****/
.sec_size .size-table {
	max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.size-table th,
.size-table td  {
	border: solid 1px #ccc;
	width:100px;
	text-align: center;
    padding: 10px;
}

/*********************************************************
     固定ページ
**********************************************************/

/***** common ********/
.post_body h1,.archive h1 {
	font-size: 4em;
    line-height: 0.8em;
}
.post_body h1 .kakko,.archive h1 .kakko {
	display: inline-block;
	font-size:1.4rem;
	position: relative;
    padding: 0rem 1rem;
    font-weight: bold;
    text-align: center;
	line-height: 1.8em;
}
.post_body h1 .kakko::before,
.post_body h1 .kakko::after,
.archive h1 .kakko::before,
.archive h1 .kakko::after{
    position: absolute;
    width: 11px;
    height: 12px;
    content: '';
}

.post_body h1 .kakko::before,
.archive h1 .kakko::before{
    border-left: solid 2px;
    border-top: solid 2px;
    border-radius: 5px 0 0 0;
    top: 0;
    left: 0;
}

.post_body h1 .kakko::after,
.archive h1 .kakko::after{
    border-right: solid 2px;
    border-bottom: solid 2px;
    border-radius: 0 0 5px 0;
    bottom: 0;
    right: 0;
}
.main_txt {
	margin-bottom:30px;
}
.main_txt p {
	margin-bottom:0;
}

@media only screen and (max-width: 768px) {
	.post_body h1,.archive h1 {
    	font-size: 3.5em;
	}
	.post_body h1 .kakko,.archive h1 .kakko {
		font-size: 1.2rem;
	}
	.main_txt p {
		margin-bottom:1em;
		font-size:0.9rem;
	}
}


/**** オーダー方法について *****/
.box_order {
	padding: 20px;
    border: solid 1px #ccc;
    margin-bottom: 15px;
    border-radius: 10px;
	position: relative;
}
.box_order h2 {
	font-size: 1.6rem;
	display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.box_order h2:before {
	content:"";
	width:80px;
	height:80px;
	display: block;
	top:20px;
	left:20px;
	border-radius:50em;
}
.order-01 h2:before  {
	background: url("../images/order/ico-01.png") no-repeat;
	background-size:100%;
}
.order-02 h2:before  {
	background: url("../images/order/ico-02.png") no-repeat;
	background-size:100%;
}
.order-03 h2:before  {
	background: url("../images/order/ico-03.png") no-repeat;
	background-size:100%;
}
.order-04 h2:before  {
	background: url("../images/order/ico-04.png") no-repeat;
	background-size:100%;
}
.order-05 h2:before  {
	background: url("../images/order/ico-05.png") no-repeat;
	background-size:100%;
}
.box_muryou {
	margin-top:50px;
}
.box_muryou p span {
	display: inline-block;
	padding:10px;
	font-weight: 600;
}
.box_muryou .box_pay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.box_muryou .box_pay div {
	margin: 10px;
    border: solid 1px #ccc;
    padding: 10px;
	border-radius: 10px;
	width:33%;
}
.box_muryou .box_pay div p {
	text-align:left;
	font-size: 0.95rem;
	line-height: 1.4em;
}
.box_muryou .box_pay div p b {
	display: block;
    white-space: nowrap;
    padding: 5px 0 15px;
    text-align: center;
}
.box_muryou .box_pay div img {
	margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
	.box_muryou .box_pay {
		display: block;
	}
	.box_muryou .box_pay div {
		width:100%;
		margin: 0 0 10px;
	}
	.box_muryou .box_pay div p {
		text-align: center;
		margin-bottom:0;
	}
	.box_order p {
		font-size:0.9rem;
	}
	.box_order h2 {
		font-size:1.4rem;
		margin-bottom:1em;
	}
}
@media only screen and (max-width: 767px) {
	.box_muryou {
		text-align: left!important;
	}
	.box_muryou p span {
		padding: 0;
	}
	.box_muryou .box_pay div p,.box_muryou .box_pay div p b {
		text-align: left;
	}

}
/** 採寸表 **/
.saisun_li {
	padding:0;
}
.saisun_li li {
    list-style: none;
    padding: 0;
    border: solid 1px #ccc;
	border-radius: 10px;
    clear: both;
    min-height: 200px;
	overflow: hidden;
	margin-bottom:10px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-align-items: start;
    align-items:  start;
}
.saisun_li li img {
    margin-right: 30px;
}
.saisun_li li div {
	padding:20px;
}
.ttl-h4 {
    font-size: 1.2em;
    margin: 0 0 1em;
}
@media only screen and (max-width: 768px) {
	.saisun_li li {
		min-height:auto;
	}
	.saisun_li li img {
		width:33vw;
		margin-right:0;
	}
	.saisun_li li div {
		padding: 10px 0 10px 15px;
	}
	.saisun_li li div .ttl-h4 {
		font-size: 1em;
		margin: 0 0 0.5em;
	}
	.saisun_li li div p {
		font-size:0.8rem;
	}
	
}

/**** メンテナンス *****/
.sec_mainte {
	background: #979797;
    color: #fff;
    padding: 2em 0;
	font-size: 0.9rem;
}
.box_mainte {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.box_mainte .box_txt {
	width:48%;
}
.box_mainte .box_txt .tit {
	    font-size: 1.2rem;
    font-weight: 600;
}
.box_mainte .box_txt .col_2 {
	margin-top:10px;
}
.box_mainte .box_txt .col_2 .box_txt {
	width: calc(100% - 300px);
	padding: 10px;
}
.box_mainte .box_txt ul {
	margin: 0 0 0 1.5em;
    padding: 0;
}
.box_mainte .box_txt ul li {
	margin-bottom:1em;
}
@media only screen and (max-width: 767px) {
	.t_repair table {
		font-size:0.7rem;

	}
}

/**** 特定商 *****/

.def_lst {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.def_lst dt {
	width: 30%;
    line-height: 1.6em;
    font-weight: bold;
    padding: 2%;
    border-bottom: 1px dashed rgb(204, 204, 204);
}
.def_lst dd {
    width: 67%;
    line-height: 1.6em;
    padding: 2%;
    border-bottom: 1px dashed rgb(204, 204, 204);
	margin:0;
}
@media only screen and (max-width: 767px) {
	.def_lst {
		display: block;
	}
	.def_lst dt,.def_lst dd {
		width: 100%;
		padding: 0;
	}
	.def_lst dt {
		border-bottom:none;
		padding-top:10px;
	}
	.def_lst dd {
		padding-bottom:10px;
	}
}

/***** お問い合わせ　*******/


/*********************************************************
     TOP
**********************************************************/
#top .page {
	display: -webkit-flex;
    display: flex;
	margin-top: 60px;
}
#top .page .box_top_mens,#top .page .box_top_ladys {
	width:50%;
	position:relative;
	overflow: hidden;
}
#top .page h2 img {
	width:auto;
	height:110px;
}
#top .page .box_top_mens .box_txt {
	position:absolute;
	top:40%;
	left:20%;
}
#top .page .box_top_mens .box_txt:before {
	content:"";
	width:70%;
	height:1px;
	background: #fff;
	top: 40%;
    left: -80%;
    position: absolute;
}
#top .page .box_top_ladys .box_txt {
	position:absolute;
	top:40%;
	right:20%;
}
#top .page .box_top_ladys .box_txt:before {
	content:"";
	width:70%;
	height:1px;
	background: rgb(255 255 255 / 60%);
	top: 40%;
    right: -80%;
    position: absolute;
}
.top_bnr {
	width:250px;
}
.top_bnr a {
	display: block;
	text-align: center;
	margin-bottom:10px;
	font-size: 0.9rem;
    padding: 3px 0;
}
#top .page .box_top_mens .top_bnr  {
	left: 22%;
}
#top .page .box_top_mens .top_bnr a  {
	background: rgb(30 148 207 / 65%);
	color:#fff;
}
#top .page .box_top_ladys .top_bnr {
	right: 22%;
}
#top .page .box_top_ladys .top_bnr a {
	background: rgb(213 105 189 / 65%);
	color:#fff;
}
#top .page .box_top_mens .top_bnr a:hover,#top .page .box_top_ladys .top_bnr a:hover {
	text-decoration: none;
}
@media only screen and (max-width: 768px) {
	#top .page {
		display:block;
	}
	#top .page .box_top_mens,#top .page .box_top_ladys {
		width:100%;
		height: 40vh;
	}
}
@media only screen and (max-width: 767px) {
	#top .page h2 img {
		width: auto;
		height: 80px;
	}
	#top .page .box_top_mens .box_txt {
		top: 16%;
    	left: 15%;
	}
	#top .page .box_top_ladys .box_txt {
		top:16%;
		right:15%;
	}
}

/*********************************************************
     フォーム（html用）
**********************************************************/
/*** フォーム ***/
.txt_caution {
	margin-top:1em;
}
.txt_caution p {
	margin-bottom:0.5em;
}
.txt_caution p span {
	color: #f9ff00;
	font-weight: bold;
}
form {
	margin-bottom:100px;
}
form select {
	padding:5px;
}
#formWrap {
	/*width:700px;
	margin:0 auto 50px;
	color:#555;
	line-height:120%;
	font-size:90%;*/
}
table.formTable{
	width:100%;
	margin:0 auto 50px;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
	text-align:left;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
table.formTable th span {
	position: relative;
    display: inline-block;
    background: #cc0303;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.8rem;
    margin-left: 10px;
    bottom: 3px;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
#formWrap h4 {
	margin-bottom:20px;
}
.box_thanks {
	text-align:center;
	padding:0 0 200px;
}
.box_thanks h2 {
	background:none;
	font-size: 1.8rem;
}
.box_thanks p {
	margin-bottom:1em;
}

.form_box {
	padding-top: 30px;
}
.form_tit {
	font-size: 4em;
    line-height: 0.8em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.form_tit .kakko {
    display: inline-block;
    font-size: 1.4rem;
    position: relative;
    padding: 0rem 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.8em;
}

table.form_item td,table.form_item th{
	border: 5px solid #f7f7f7;
	padding:10px;
	text-align:left;
}

table.form_item th{
	width:20%;
	font-weight:normal;
	background:#e5e5e5;
	text-align:left;
}
table.form_item th span {
	position: relative;
    display: inline-block;
    background: #cc0303;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.8rem;
    margin-left: 10px;
    bottom: 3px;
}
.form_item select {
	font-size:1.2rem;
	max-width: 600px;
}
.form_item td div {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	padding:5px 0;
}
.form_item td div.box_pulldown {
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-bottom: 15px;
	display: none;
}
.form_item td div.box_pulldown.active {
	display: block;
}
.form_item td div span {
	margin-right:10px;
}
.form_item td div.box_pulldown span {
	font-size: 0.8rem;
}
.form_item td span {
	padding: 10px;
    display: inline-block;
}
/*
.total {
	margin: 30px auto;
    font-size: 1.8rem;
	text-align: center;
}
.total {
	font-size: 1.8rem;
	font-weight:bold;
	color:#fb5b09;
	text-align:right;
	width:190px;
}
*/
.total {
	margin: 30px 0;
    font-size: 1.8rem;
}
.total input {
	font-size: 1.8rem;
	font-weight:bold;
	color:#fb5b09;
	text-align:right;
	width:190px;
}
.box_radio {
	margin: 15px;
}
.box_radio label {
	margin:0 10px;
}
.box_form_color {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.box_form_color dl {
	padding:15px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.box_form_color dl dt {
	margin-right:10px;
}
.box_select_logo {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin:30px;
}
.box_select_logo div {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
	margin: 5px;
}
.box_select_logo .form_logo {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
	margin-bottom: 0;
}
.box_select_logo .form_logo dd {
	margin-bottom:0;
}
table.form_size {
	width:100%;
	margin-top:20px;
}
table.form_size td,table.form_size th {
	padding:10px;
	text-align:left;
	border:1px solid #ccc;
}

table.form_size th {
	font-weight:normal;
	background:#7a7878;
	text-align:left;
}
table.form_size td {
	text-align:right;
}
.input_yubin {
	margin-bottom:10px;
}
table.form_size td.sub_txt {
	text-align: left;
    font-size: 0.8rem;
	width: 220px;
	line-height:1.6em;
}
.pull_tit {
	border: solid 1px #efefef;
    padding: 7px;
	cursor: pointer;
	margin-bottom: 5px;
}
.point_tit {
	margin:10px 0;
}
table.form_item .kids th,table.form_item .kids td {
	background: #e5f7c1;
}
.form_box .sec_option {
	text-align: center;
	margin-bottom: 2em;
}
.form_box .sec_option h2 {
	display: inline-block;
	position: relative;
    padding: 0rem 1rem;
    font-weight: bold;
    text-align: center;
	line-height: 1.8em;
	margin-top: 2em;
}
.form_tit .kakko:before,.form_tit .kakko:after,
.form_box .sec_option h2:before,.form_box .sec_option h2:after {
	position: absolute;
    width: 11px;
    height: 12px;
    content: '';
}
.form_box .sec_option h2:before,.form_tit .kakko:before {
	border-left: solid 2px;
    border-top: solid 2px;
    border-radius: 5px 0 0 0;
    top: 0;
    left: 0;
}
.form_box .sec_option h2:after,.form_tit .kakko:after {
	border-right: solid 2px;
    border-bottom: solid 2px;
    border-radius: 0 0 5px 0;
    bottom: 0;
    right: 0;
}
.form_box .sec_option h2:first-child {
	margin-top:0;
}

@media only screen and (max-width: 767px) {
	/*** フォーム ***/
	.form_tit {
    	font-size: 3.5em;
	}
	.form_tit .kakko {
		font-size: 1rem;
	}
	.form_box .sec_option h2 {
		font-size: 1.6em;
		margin-top:1em;
	}
	table.form_item th,table.form_item td {
		display:block;
		width: auto;
		border: none;
		vertical-align: middle;
	}
	table.form_item td {
		padding:10px 0;
	}
	table.form_item .kids td {
		padding:0 0 10px;
	}
	.form_item td div span {
		margin-right:0;
	}
	.box_form_color dl {
		display:block;
	}
	.box_form_color dl dt {
		margin-bottom:10px;
	}
	.txt_caution p {
		text-align:left; 
	}
	form {
		margin-bottom: 30px;
	}
	table.formTable {

	}
	table.formTable td, table.formTable th {
		display:block;
		width:auto;
	}
	table.formTable td {
		border:none;
	}
	table.formTable textarea,table.formTable input,table.formTable select {
		width:100%;
		padding:5px;
	}
	table.formTable input[type="radio"] {
		width: auto;
	}
	#formWrap {
		width:auto;
	}
	.box_thanks p {
		text-align:left;
	}
	.form_item td div,.box_form_color,.box_select_logo div {
		display:block;
	}
	.box_select_logo div {
		margin:5px 0;
	}
	.mailForm img {
		width:100%;
	}
	.box_select_logo {
		margin:30px 0;
	}
	.box_radio label {
		display:block;
		margin:10px;
	}
	table.form_size td, table.form_size th {
		display: inline-block;
		width: 50%;
		min-height: 50px;
	}
	.input_yubin {
		width:100px!important;
	}
	.total input {
		width:40%;
	}
	#formWrap {
		width:auto;
	}
	.form_item select {
		width: 100%;
	}
	table.form_size {
		border:none;
	}
	table.form_size td.sub_txt {
		width: 100%;
		display:block;
		border-top:none;
		margin: 0 0 10px;
		padding: 5px 10px 0;
	}
}
