@charset "utf-8";

/* -------------------------------------共通 */
body{
	font-size: 1.6em;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.4em;
	color: #464646;
}
@media screen and (max-width: 700px) {
body{
	font-size: 1.3em;
}
}
@media screen and (max-width: 414px) {
body{
	font-size: 1.1em;
}
}

.series a{
	transition:opacity 0.5s;
}
.series a:hover{
	opacity: 0.7;
}

.main{
	width: 1200px;
	margin: 0 auto;
	padding: 90px 0;
}
@media screen and (max-width: 1199px) {
.main{
	width: 100%;
	padding: 90px 30px;
}
}
@media screen and (max-width: 700px) {
.main{
	padding: 40px 15px;
}
}



/* ++++++++++++++ PC/SP 表示非表示 */
@media screen and (min-width: 600px) {
	.sp{
		display:none;
	}
	.pc{
		display:block;
	}
}

@media screen and (max-width: 600px) {
	.sp{
		display:block;
	}
	.pc{
		display:none;
	}
}

/* ++++++++++++++ SP改行位置指定 */
@media screen and (min-width: 415px){
.br-sp {
	display: none; 
}
}

/* ++++++++++++++ テキスト */
.text_center{
	text-align: center;
}

.text1{
	padding-bottom: 15px;
}
.text2{
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	padding-bottom: 15px;
}
@media screen and (max-width: 700px) {
.text2{
	font-size: 1.4em;
}
}

/* ++++++++++++++ 画像 */
.img_center{
	text-align: center;
}
.img_center img{
	max-width: 100%;
}

/* ++++++++++++++ 下線タイトル */

.under_title{
	border-bottom: solid 1px #000;
	display: inline-block;
	font-weight: bold;
	font-size: 1.6em;
	padding:15px 10px;
	margin-bottom: 65px;
}
@media screen and (max-width: 700px) {
.under_title{
	font-size: 1.4em;
}
}
@media screen and (max-width: 414px) {
.under_title{
	margin-bottom: 30px;
}
}


.title_center{
	text-align: center;
}

/* ++++++++++++++ 左右線タイトル */

p.line_title {
  position: relative;
  display: inline-block;
  padding: 0 55px;
	font-size: 1.6em;
	font-weight: bold;
}
@media screen and (max-width: 700px) {
p.line_title{
	font-size: 1.4em;
}
}

p.line_title:before, p.line_title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

p.line_title:before {
  left:0;
}
p.line_title:after {
  right: 0;
}

/* ++++++++++++++ ドット線 */

.dot_line{
	border-bottom: dotted #d0d0d0;
	margin: 70px 0;
}
@media screen and (max-width: 414px) {
.dot_line{
	margin: 40px 0;
}
}

/* ++++++++++++++ ボタン */
.button1{
	text-align: center;
	margin-top: 50px;
}

.button1 p{
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
	background-color: #397237;
  border: 2px solid #397237;
	border-radius: 4px;
	padding: 10px 15px;
  color: #fff;
}
.button1 p::before,
.button1 p::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button1 p,
.button1::before,
.button1 p::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button1 p:hover {
  background-color: #fff;
  border-color: #397237;
  color: #397237;
}






.howto_wrap_button{
	text-align: center;
	margin-top: 50px;
}

.howto_wrap_button p{
	display: inline-block;
	border-bottom: solid medium #80caca;
	color: #80caca;
	font-weight: bold;
	font-size: 0.8em;
}

.howto_wrap_button p:hover{
	opacity: 0.7;
}

/* ++++++++++++++シリーズタイトル共通 */
p.series_title {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 1.6em;
  text-align: center;
font-weight: bold;
	margin-bottom: 35px;
}
@media screen and (max-width: 700px) {
p.series_title {
	font-size: 1.4em;
	margin-top: 20px;
}
}
@media screen and (max-width: 414px) {
p.series_title {
	margin-bottom: 10px;
}
}

p.series_title:before, p.series_title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 5px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

p.series_title:before {
  left:0;
}
p.series_title:after {
  right: 0;
}

/* ++++++++++++++flexbox */

/* 回り込みなし 端っこよせ */
.flex_box{
	display: flex;
	justify-content:space-between;
}

/* 回り込みあり 端っこよせ */
.flex_box2{
	display: flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

/* 回り込みあり 中央寄せ＆下余白(タオルの回り込み用) */
.flex_box3{
	display: flex;
	justify-content:center;
	flex-wrap:wrap;
	margin-bottom: 20px;
}
@media screen and (max-width: 414px) {
.flex_box3{
	margin-bottom: 0px;
}
}


/* ++++++++++++++背景色 */

.series{
	background-color: #dde8dd;
}

.background1{
	background-color: #faf6e7;
}

.aquadrop_bg{
	background-color:#bde4e1;
}

/* -------------------------------------header */

.header_bg{
	background-color: #000;
	padding: 10px;
}

.header_bg img{
	width: 10%;
	text-align: left;
}
@media screen and (max-width: 414px) {
.header_bg img{
	width: 25%;
}
}

/* -------------------------------------header下説明文 */


.item_1{
	width: 55%;
}
.item_2{
	width: 40%;
}
@media screen and (max-width: 700px) {
.item_1{
	width: 100%;
}
.item_2{
	width: 80%;
	margin: 20px auto;
}
}


/* -------------------------------------戻る追従ボタン */

#page-top {
    position: fixed;
    bottom: 30px;
    right: 0;
	z-index: 1;
}
#page-top a {
    width: 80px;
    display: block;
}
@media screen and (max-width: 414px) {
#page-top img,
#page-top a{
	width: 65px;
}
}

/* -------------------------------------シリーズから選ぶ */

.series_item{
	width: 32%;
	padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
.series_item{
	width: 48%;
}
}
@media screen and (max-width: 414px) {
.series_item{
	width: 80%;
	margin: 0 auto;
}
}

.series_item img{
	max-width: 100%;
}

.series p{
	margin-top: 20px;
}

.series .flex_box2{
	padding: 20px 0;
}

/* 最後のコンテンツを左寄せにする指定 */
.series .flex_box2:after {
    content: "";
    display: block;
    width: 32%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}

/* -------------------------------------各シリーズ共通（風呂敷・ガーゼタオル等） */

.series_description{
	width: 70%;
	margin: 20px auto 0;
	text-align: center;
}
@media screen and (max-width: 1199px) {
.series_description{
	width: 95%;
}
}

.product img{
	max-width: 100%;
}

.product_img{
	margin: 30px 0 0;
}

.product_under_title{
	border-bottom: solid 1px #000;
	display: inline-block;
	font-weight: bold;
	padding:10px;
	margin:75px 0 25px;
}
@media screen and (max-width: 414px) {
.product_under_title{
	margin:30px 10px 15px;
	padding: 0 0 7px;
	line-height: 1.4em;
}
}

/* .flex_box3 */
.pattern,
.pattern2{
	margin: 7px;
}
@media screen and (max-width: 1199px) {
.pattern{
	width: 25%;
}
}
@media screen and (max-width: 414px) {
.pattern{
	width: 29%;
	margin:5px;
}
}


@media screen and (max-width: 414px) {
.pattern2{
	width: 80%;
	margin:5px;
}
}



.button2{
	text-align: center;
  margin-top: 95px;
}
@media screen and (max-width: 1199px) {
.button2{
	margin-top: 50px;
	}
}


.button2 p{
	display: inline-block;
	padding:10px 15px;
  color: #397237;
  text-decoration :none;
  background: #fff;
  box-shadow: 4px 4px #397237;
  transition: .3s;
	border-radius: 4px;
	border:solid #397237 2px;
}

.button2 p:hover {
  box-shadow: 1px 1px #397237;
}

.button_wrap p{
	color: #80caca;
	 box-shadow: 4px 4px #80caca;
	border:solid #80caca 2px;
}
.button_wrap p:hover{
	box-shadow: 1px 1px #80caca;
}

.button_wrap{
	margin-bottom: 95px;
}


/* -------------------------------------aquadrop */

.aquadrop_title,
.aquadrop_description{
	color: #286f6b;
	text-align: center;
	margin-top: 25px;
}

.aquadrop_title{
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
.aquadrop_title{
	font-size: 1.4em;
}
}

.aquadrop_contents{
	border-radius: 4px;
	padding: 150px 55px;
	background-color: #fff;
	background-position: top , bottom;
	background-image: url(image/aquadrop/aquadrop_bg.gif) , url(image/aquadrop/aquadrop_bg.gif);
	background-repeat  : no-repeat;
	margin: 20px 0;
}
@media screen and (max-width: 414px) {
.aquadrop_contents{
	padding: 70px 10px;
	background-size: 180%;
}
}

@media screen and (max-width: 414px) {
.aquadrop_contents .text2{
	padding: 0;
	line-height: 1.2em;
}
}

.aquadrop_saigai{
	text-align: center;
	margin: 80px 0 20px;
	font-weight: bold;
}
@media screen and (max-width: 414px) {
.aquadrop_saigai{
	margin: 50px 0 20px;
	font-size: 0.8em;
}
}

.aquadrop_bg .button2 p{
  color: #286f6b;
  box-shadow: 4px 4px #286f6b;
	border:solid #286f6b 2px;
}
.aquadrop_bg .button2 p:hover {
  box-shadow: 1px 1px #286f6b;
}

@media screen and (max-width: 414px) {
.aquadrop_bg .img_center:first-of-type img{
	width: 50%;
}
}


/* -------------------------------------ガーゼタオルハンカチ */

.handkerchief_bg{
	background-color: #c3e7f2;
}

.handkerchief_contents{
	border-radius: 4px;
	padding: 55px;
	background-color: #fff;
	background-repeat  : no-repeat;
	margin: 20px 0;
}
@media screen and (max-width: 414px) {
.handkerchief_contents{
	padding: 30px 10px;
}
}


.handkerchief_bg .series_title,
.handkerchief_bg .series_description{
	color: #527079;
}

.handkerchief_bg .series_title{
	line-height: 1.2em;
}


.handkerchief_bg .button2 p{
  color: #527079;
  box-shadow: 4px 4px #527079;
	border:solid #527079 2px;
}
.handkerchief_bg .button2 p:hover {
  box-shadow: 1px 1px #527079;
}



/* -------------------------------------風呂敷の包み方ページ--------------- */

.howto_flex{
	display: flex;
	justify-content:center;
	flex-wrap:wrap;
}

.furoshiki_size{
	width: 40%;
	margin: 0 40px;
	text-align: center;
}

@media screen and (max-width: 900px) {
	.furoshiki_size{
		width: 100%;
	}
	.furoshiki_size:first-of-type{
		margin: 0 0 90px;
	}
	.furoshiki_size:nth-of-type(2){
		margin: 0;
	}
}


.furoshiki_size img{
	width: 80%;
}

.furoshiki_size p:first-of-type{
	background-color: #464646;
	color: #fff;
	border-radius: 4px;
	text-align: center;
	width: 70%;
	margin: 0 auto;
	padding: 5px 0;
}


.furoshiki_size p:nth-of-type(2){
	margin: 20px 0;
}

/* div要素の中で2個目 */
.mamusubi:nth-of-type(2){
	padding-bottom:90px;
}

.mamusubi p:first-of-type{
	font-size: 1.3em;
}
.mamusubi p:nth-of-type(2){
	margin: 20px 0;
}


.wrap_menu01,
.wrap_menu02,
.wrap_menu03,
.wrap_menu04,
.wrap_menu05{
	width: 30%;
	margin: 15px;
}

@media screen and (max-width: 900px) {
.wrap_menu01,
.wrap_menu02,
.wrap_menu03,
.wrap_menu04,
.wrap_menu05{
	margin: 5px;
}
}

@media screen and (max-width: 630px) {
.wrap_menu01,
.wrap_menu02,
.wrap_menu03,
.wrap_menu04,
.wrap_menu05{
	width: 45%;
	margin: 7px;
}
}

.wrap_menu01 p,
.wrap_menu02 p,
.wrap_menu03 p,
.wrap_menu04 p,
.wrap_menu05 p{
	border-radius: 4px;
	text-align: center;
	margin: 10px 0;
	padding: 5px;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
.wrap_menu01 p,
.wrap_menu02 p,
.wrap_menu03 p,
.wrap_menu04 p,
.wrap_menu05 p{
	font-size: 0.7em;
	padding: 0;
	}
}


.wrap_menu01 p{
	border:solid 2px #de7d99;
	color: #de7d99;
}
.wrap_menu02 p{
	border:solid 2px #a27bb5;
	color: #a27bb5;
}
.wrap_menu03 p{
	border:solid 2px #7da4de;
	color: #7da4de;
}
.wrap_menu04 p{
	border:solid 2px #81c8aa;
	color: #81c8aa;
}
.wrap_menu05 p{
	border:solid 2px #cab45d;
	color: #cab45d;
}


.wrap_balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 20px;
  padding: 15px 0 25px;
  width: 100%;
  color: #fff;
  background: #de7d99;
	text-align: center;
}
@media screen and (max-width: 768px) {
.wrap_balloon {
	padding: 10px 0 20px;
}
}

.wrap_balloon2 {
  background: #a27bb5;
}
.wrap_balloon3 {
  background: #7da4de;
}
.wrap_balloon4 {
  background: #81c8aa;
}
.wrap_balloon5 {
  background: #cab45d;
}


.wrap_balloon:before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #de7d99;
}
.wrap_balloon2:before {
  border-top: 15px solid #a27bb5;
}
.wrap_balloon3:before {
  border-top: 15px solid #7da4de;
}
.wrap_balloon4:before {
  border-top: 15px solid #81c8aa;
}
.wrap_balloon5:before {
  border-top: 15px solid #cab45d;
}


.wrap_balloon p:nth-of-type(2){
	font-size: 1.5em;
	margin-top: 5px;
}

.wrap_procedure_flex{
	display: flex;
	flex-wrap: wrap;
	justify-content :center;
	text-align: center;
}

.wrap_procedure_flex .item{
	width: 29%;
	margin: 20px;
}
@media screen and (max-width: 768px) {
	.wrap_procedure_flex .item{
	width: 43%;
	margin: 10px;
}
}
@media screen and (max-width: 319px) {
	.wrap_procedure_flex .item{
	width: 100%;
	margin: 10px;
}
}

.wrap_balloon p {
  margin: 0;
  padding: 0;
}

/* -------------------------------------フッター */
footer{
	background-color: #000;
}

footer p{
	color: #fff;
	padding: 40px 15px;
	text-align: center;
}