@charset "utf-8";


/* --- ResetCSS START --- */

/* 要素のフォントサイズやマージン・パディング */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
	font-weight: normal;
	font-style: normal;
    vertical-align:baseline;
}

/* スクロールバーを常に表示 */
html {
	overflow-y: scroll;
}

/* 行の高さをフォントサイズと同じに */
body {
    line-height:1;
}
 
/* section要素などをブロック要素へ変更 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* リストスタイルを削除 */
ol, ul {
    list-style:none;
}

/* 引用符の表示が出ないように */
blockquote, q {
    quotes:none;
}
 
/* blockquote要素、q要素の前後にコンテンツを追加しないように */
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるように */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できる
mark要素は、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/* テキストに打ち消し線を付ける */
del {
    text-decoration: line-through;
}
 
/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくように
マウスオーバー時にヘルプカーソルの表示が出るように */
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/* 水平罫線のデフォルトである立体的な罫線を不可視に */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/* 縦方向の揃え位置を中央揃えに指定 */
input, select {
    vertical-align:middle;
}

/* 画像を縦に並べたときに余白が出ないように */
img {
	vertical-align: bottom;
	font-size:0;
	line-height: 0;
	border: 0;
}

/* 文字を太字に */
strong {
	font-weight: 700;
}

/* サイズにpaddingとborderを含める */
*, *:before, *:after {
	box-sizing: border-box;
}

/* clearfix */
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/* --- ResetCSS END --- */




/* --- common --- */

body {
    font-size: 62.5%; /* フォントサイズのベースを10pxに */
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    padding-top: 90px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    outline: none;
	text-decoration: none;
	transition: 0.5s;
}

a:hover {
    opacity: 0.7;
}

.inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px;
}

.sup, .sup-u {
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: 0em;
  margin-left: 1px;
}

/*
.sup-u {
  font-size: 80%;
  vertical-align: bottom;
  position: relative;
  bottom: -0.3em;
  margin-left: 1px;
}
*/

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

    body {
        padding-top: 40px;
    }

}



/* --- header --- */

header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9990;
    background: #18988B;
    width: 100%;
    height: 90px;
}

header .inner {
    position: relative;
}

.main-title-l {
    width: 30%;
    margin: 30px 0px 0px 0;
	float: left;
}

.main-title {
    width: 40%;
    margin: 22px 0px 0px 0;
    /*position: absolute;
    top: 30px;
    left: 30px;*/
	float: left;
	text-align: center;
}

.main-title img {
    width: 170px;
}

.mail {
	text-align: right;
    width: 30%;
    margin: 37px 0 0px 0px;
	padding: 0 15px 0 0;
    /*position: absolute;
    top: 30px;
    right: 30px;*/
	float: right;
}

.mail a {
    font-size: 150%;
    color: #fff;
}

#toggle {
    display: none;
}

@media screen and ( min-width: 901px ) {
    nav {
        display: block !important;
    }
}

@keyframes fade-in {

    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }

}

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

    header {
        width: 100%;
        height: 40px;
    }

    .main-title {
        /*top: 7px;
        left: 10px;*/
        margin: 7px 0px 0px 0;
    }
	
	.main-title img {
    width: 100px;
}
	
    .mail {
        margin: 13px 0 0px 0px;
    }

    .mail a {
        font-size: 150%;
    }

    nav {
        display: none;
        position: absolute;
        top: 40px;
        left: 0px;
        width: 100%;
        height: calc( 100vh - 40px );
        background: #18988B;
        z-index: 9990;
        opacity: 0;
    }

    .open nav {
        display: block;
        opacity: 1;
        animation-duration: 0.5s;
        animation-name: fade-in;
    }

    .globalnavi {
        float: none;
        margin: 0px;
        /*position: static;
        top: 0;
        left: 0;*/
        padding-top: 15px;
    }

    .globalnavi li {
        display: block;
        font-size: 140%;
        margin-left: 0px;
    }

    .globalnavi li a {
        display: block;
        padding: 15px 15%;
    }
    
    .globalnavi li.pc {
        display: none;
    }
    
    .globalnavi li.sp {
        display: block;

    }

    .globalnavi li.sp span.accordion {
        display: block;
        position: relative;
        color: #fff;
        padding: 15px 15% 15px 15%;
        cursor: pointer;
    }
  
    /* 二本の横棒を作成する */
    .globalnavi li.sp span.accordion::before, .globalnavi li.sp span.accordion::after {
        content: '';
        display: block;
        width: 13px;
        height: 1px;
        border-radius: 5px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 8.5em;
        transform: translateY(-50%);
        margin-left: 15%;
    }

    /* 2本の横棒のうち一本は縦棒にする */
    .globalnavi li.sp span.accordion::after {
        /* 横棒を縦にするために90℃回転させる */
        transform: translateY(-50%) rotate(90deg);
        /* プラスからマイナスへの切り替えをゆっくり行いアニメーションさせる */
        transition: 0.5s;
    }

    /*
    プラスがクリックされたら縦棒を横にしてマイナスにする疑似要素
    jQueryで付け外しを行う
    */
    .globalnavi li.sp span.accordion.active::after {
        transform: translateY(-50%) rotate(0);
        transition: 0.5s;
    }
    
    .globalnavi li.sp ul.child-menu {
        display: none;
        background-color: rgba(255,255,255,0.2);
        padding: 10px 0;
    }

    .globalnavi li.sp ul.child-menu li {
        font-size: 100%;
    }



	/*開閉ボタン*/
	#toggle {
		display: block;
		width: 46px;
		height: 40px;
		position: absolute;
		top: 0px;
		right: 10px;
		z-index: 9999;
		cursor: pointer;
		padding: 12px 10px;
	}

	#toggle div {
		position: relative;
	}

	#toggle span{
		display: block;
		height: 1px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}

	#toggle span:nth-child(1){
		top: 0px;
	}

	#toggle span:nth-child(2){
		top: 8px;
	}

	#toggle span:nth-child(3){
		top: 16px;
	}

	/*開閉ボタンopen時*/
	.open #toggle span:nth-child(1) {
		top: 8px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
		background: #fff;
	}

	.open #toggle span:nth-child(2) {
		width: 0;
		left: 50%;
		background: #fff;
	}

	.open #toggle span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
		background: #fff;
	}

}



/* --- contents --- */

.contents, .contents a {
    color: #18988B;
}

.contents .inner {
    padding: 0px 30px;
}

.contents h1 {
    font-size: 300%;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 30px;
	text-align: center;
}

.contents h1::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 7px;
    background: linear-gradient(to right, #18988B, #ffffff);
}

.contents h2 {
    font-size: 300%;
    font-weight: 700;
    padding: 30px 0px 25px 0px;
}

.contents p {
    font-size: 160%;
    line-height: 1.8;
    color: #0A554D;
}

.main-img {
    margin: 20px 0px 30px 0px;
}

.list-lineup li {
    font-size: 160%;
    display: inline-block;
    margin-right: 45px;
    margin-bottom: 10px;
}

.list-lineup li a {
    color: #0A554D;
}

.list-category li {
    font-size: 160%;
    display: inline-block;
    margin-right: 45px;
    margin-bottom: 10px;
}

.list-category li a {
    color: #0A554D;
}

.product {
    display: flex;
    flex-wrap:wrap;
}

.product li {
    display: block;
    width: 140px;
    text-align: center;
    font-size: 150%;
    margin: 0px 6px 30px 6px;
}

.product li img {
    padding-bottom: 12px;
}

.product li a {
    display: block;
}

#inner, #outer-woven, #outer-knit, #sports-woven, #sports-knit, #textile-china, #textile-thailand {
    margin-top: -90px;
    padding-top: 90px;
}

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

    .contents h1 {
        font-size: 200%;
    }

    .contents h2 {
        font-size: 220%;
    }

    #inner, #outer-woven, #outer-knit, #sports-woven, #sports-knit, #textile-china, #textile-thailand {
        margin-top: -40px;
        padding-top: 40px;
    }
    
    .list-lineup {
        display: flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }

    .list-lineup li {
        text-align: center;
        font-size: 140%;
        display: block;
        width: 48%;
        margin-right: 0px;
        margin-bottom: 2%;
        border: solid 1px #E9F3F2;
    }

    .list-lineup li a {
        display: block;
        color: #0A554D;
        padding: 15px 5px;
    }
    
    .list-lineup li.current {
        color: #0A554D;
        padding: 15px;
        background-color: #E9F3F2;
    }

    .list-category {
        display: flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }

    .list-category li {
        text-align: center;
        font-size: 140%;
        display: block;
        width: 48%;
        margin-right: 0px;
        margin-bottom: 2%;
    }

    .list-category li a {
        display: block;
        color: #fff;
        padding: 15px 5px;
        background-color: #18988B;
    }

    .product li {
        display: block;
        width: 30%;
        font-size: 120%;
        margin: 0px 1.5% 30px 1.5%;
    }

    .product li img {
        padding-bottom: 10px;
    }

}



/* --- detail --- */

.hide {
    display: none;
}

.detail-title {
    font-size: 300%;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin: 0px 70px 10px 50px;
}

.detail-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0px 0px 0px;
}

.detail-img {
    text-align: center;
    margin: 0px 50px 10px 50px;
    
}

.detail-img img {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
}

.detail-txt {
    font-size: 160%;
    line-height: 1.6;
    color: #fff;
    margin: 0px 50px;
}

.detail-txt sup {
    font-size: 80%;
    vertical-align: top;
    position: relative;
    top: 0em;
    margin-left: 1px;
}

@media only screen and (max-width: 600px) {
    .detail-title {
        font-size: 200%;
        margin: 0px 50px 15px 40px;
    }
    
    .detail-img {
        margin: 0px 40px 20px 40px;
    }

    .detail-txt {
        font-size: 140%;
        margin: 0px 40px;
    }

}



/* --- footer --- */

footer {
    width: 100%;
    height: 100px;
    position: relative;
    background: #D0D5D7;
    margin-top: 50px;
    padding-bottom: 15px;
}

footer .inner {
    position: relative;
}

.footer-sitemap {
    text-align: center;
    padding: 18px 0 0 0;
}

.footer-sitemap li {
    font-size: 120%;
    display: inline-block;
    margin: 0 5%;
}

.footer-sitemap li a {
    color: #1B8878;
}

.footer-etc {
    text-align: right;
    margin: 35px 30px -12px 0px;
    /*position: absolute;
    top: 67px;
    right: 30px;*/
}

.footer-etc li {
    display: inline-block;
    padding: 0 8px;
    border-left: solid 1px #656D73;
}

.footer-etc li:first-child {
    border-left: none;
}

.footer-etc li a {
    color: #656D73;
}

.foot-title {
    display: block;
    text-align: center;
    width: 100%;
    height: auto;
}

.foot-title img {
    width: 160px;
}

.copyright {
    margin: -20px 0px 0px 30px;
    /*position: absolute;
    top: 67px;
    left: 30px;*/
    color: #656D73;
    line-height: 1.4;
}

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

    footer {
        height: inherit;
    }

    .footer-sitemap {
        display: none;
    }

    /*
    .footer-sitemap {
        padding: 0 0 10px 0;
    }

    .footer-sitemap li {
        font-size: 140%;
        display: block;
        margin: 0;
        border-bottom: solid 1px #fff;
    }
    
    .footer-sitemap li a {
        display: block;
        padding: 12px 0;
    }
    */

    .footer-etc {
        /*position: inherit;
        top: inherit;
        right: inherit;*/
        text-align: center;
        margin: 0px;
        padding: 10px 0 10px 0;
    }

    .footer-etc li {
        display: block;
        padding: 0 20px;
        margin-top: 20px;
        border-left: solid 1px #656D73;
    }

    .footer-etc li:first-child {
        border-left: none;
    }

    .footer-etc li a {
        color: #656D73;
    }

    .foot-title {
        padding-top: 18px;
        padding-bottom: 25px;
    }
    
    .foot-title img {
        width: 170px;
    }

    .copyright {
        /*position: inherit;
        top: inherit;
        left: inherit;*/
        text-align: center;
        color: #656D73;
        margin: 0px;
    }

}

#contact p {
    font-size: 160%;
    line-height: 1.8;
}

.contact {
	width: 100%;
}

.contact-form {
	width: 100%;
	margin-top: 50px;
}

.contact-form table {
	width: 100%;
}

.contact-form table th {
	width: 25%;
	background-color: #d2d2d2;
	color: #0e443c;
	padding: 7px 10px 7px 10px;
    font-size: 18px;
    }

.contact-form table td {
	width: 75%;
	background-color: #ffffff;
	padding: 7px 0 7px 45px;
    font-size: 18px;
    }


/*エラー*/
.form-error{
	margin-top: 50px;
    }

p.error_messe{
	color:#e50038;
    font-size: 18px;
    }

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

#contact p {
        font-size: 140%;
}
	
.contact-form {
	margin-top: 40px;
}
	
.contact-form table th {
	width: 100%;
	display: block;
	padding: 7px 10px 7px 10px;
    font-size: 16px;
    }

.contact-form table td {
	width: 100%;
	display: block;
	padding: 7px 0 7px 0;
    font-size: 16px;
    }
	
.form-error{
	margin-top: 40px;
    }
	
p.error_messe{
	color:#e50038;
    font-size: 16px;
    }
	
}


/* btn-cmn
---------------------------------------------------------- */
.btn-cmn {
  margin-top: 40px;
	width: 100%;
	text-align: center;
}

  /* color */
  a.primary ,
  input.primary ,
  button.primary { 
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    border: 0;
    border-radius: 0;
    display: inline-block;
    min-width: 320px;
    margin: 0 10px;
    padding: 10px 50px 10px 50px ;
    cursor: pointer;
    outline: none; /* クリックしたときに表示される枠線を消す */
	background: #1b8878;
	font-size: 24px;
	color: #ffffff;
	line-height: 1;
}

  a.primary2 ,
  input.primary2 ,
  button.primary2 { 
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    border: 0;
    border-radius: 0;
    display: inline-block;
    min-width: 320px;
    margin: 0 10px;
    padding: 10px 50px 10px 50px ;
    cursor: pointer;
    outline: none; /* クリックしたときに表示される枠線を消す */
	background: #ccd1d3;
	font-size: 24px;
	color: #ffffff;
	line-height: 1;
}

  a.primary:hover ,
  input.primary:hover ,
  button.primary:hover,
  a.primary2:hover ,
  input.primary2:hover ,
  button.primary2:hover{ 
	  opacity:0.7; }


.con-info {
	margin-top: 40px;
	width: 640px;
	text-align: center;
	border : solid 1px #1b8878;
	margin-right: auto;
	margin-left: auto;
    padding: 10px ;
}

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

  /* color */
  a.primary ,
  input.primary ,
  button.primary { 
    display: block;
    min-width: 100%;
    margin: 0;
    padding: 10px 20px 10px 20px ;
	font-size: 20px;
}

  a.primary2 ,
  input.primary2 ,
  button.primary2 { 
    display: block;
    min-width: 100%;
    margin: 0;
    padding: 10px 20px 10px 20px ;
	font-size: 20px;
}	
	
.con-info {
	margin-top: 40px;
	width: 100%;
	border : solid 1px #1b8878;
    padding: 10px ;
}

}

@media screen and (max-width:568px) {
	
  /* color */
  a.primary ,
  input.primary ,
  button.primary { 
    padding: 10px ;
	font-size: 18px;
}

  a.primary2 ,
  input.primary2 ,
  button.primary2 { 
    padding: 10px ;
	font-size: 18px;
}
	
.con-info p {
	font-size: 14px;
}
	
}

