@charset "UTF-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}
.clearfix:after{
	content:"";
	display:block;
	clear:both;}
.clear{
	clear:both;
	}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
figure, figcaption,
article, section, nav, header, footer {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
    background:#fff;
	font-family:font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif ;
	color:#333;
    font-size:1.6rem;
    line-height: 1.8;
}

html {
  overflow-y: scroll;
    Font-size:62.5%;/*10px*/
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
    background:#fff;
	font-family:font-family: "sawarabi Mincho","ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif ;
	color:#333;
    font-size:1.6rem;
    line-height: 2em;
}
p{
    font-size:1.6rem;
    margin-top:12px;
}
@media screen and (min-width:640px) {
Font-size:1.5rem;
}
@media screen and (min-width: 1200px) {
Font-size:1.6rem;
}
a {text-decoration:none;}

img {border:none;}

#wrapper{
	width:100%;
	}

header{width:100%;
    height: 150px;
    background:#fff;
    z-index: 10;
    display: block!important;
}
#inner{
    position: relative;
    margin: 0 auto;
    width: 1260px;
    height: auto;
}
#effect{
	position:relative;
    width:100%;
    height: 150px;
    box-shadow:1px -5px 7px 7px rgba(204,204,204,0.4); 
}


header h1{
    float: left;
    width: 300px;
    padding-top: 20px;
    padding-left:20px;
}
#english{
    float: right;
    width: 120px;
    margin-top: 30px;
    margin-right: 50px;
    background: #555;
    color: #fff;
    text-align: center;
}
#english a{
    color: #fff;
    font-weight: bold;
}
#globalnavi{
	position: absolute;
    top:90px;
    right:30px;
	width:800px;
	padding-top:10px;
	padding-right:5px;
	text-align:center;
	height:auto;
}

#globalnavi input {
	display:none;}
#globalnavi label{
	position:absolute;
	top:10px;
	right:10px;
	z-index:3;}
nav{
    background: #fff;
    text-align: center;
    color: #333;
}

nav ul{
    margin: 0;
	list-style:none;
    display: flex;
    justify-content: center;
}
nav ul ul{
    display: block;
}
nav ul li{
position: relative;
    border-left: 1px solid #ccc;
	}
nav ul li:last-child {
    border-right: 1px solid #ccc;
}
nav ul li li:last-child {
    border-right: none;
}

nav ul li a{
    display: block;
  text-decoration: none;
  padding:3px 30px;
  transition:all .3s;
	text-align:center;
	color:#808080;
	font-weight:bold;
}
nav ul li li a{
  padding:10px 30px;
        border-left:none;
}
nav ul li a:hover{
	background-color:#094575;
    border-bottom:1px solid #fff;
	color:#fff;
}

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
  content:'';
  position: absolute;
  left:15px;
  top:9px;
  width:6px;
  height:6px;
  border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:32px;
  z-index: 4;
    /*形状を指定*/
  background:#094575;
  width:180px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
  color: #fff;
  border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
  border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
  background:#ccc;
    color:#000;
    border-left:none;
}
/*レスポンシブ対応*/
@media screen and (max-width:1024px){
  nav{
    padding: 0;
  }
  
  nav ul{
    display: block;
  }
  
nav ul li.has-child::before{
  content:'';
  position: absolute;
  left:20px;
  top:20px;
  width:15px;
  height:15px;
  border-top: 3px solid #000;
    border-right:3px solid #000;
    transform: rotate(135deg);
}

  nav li.has-child ul,
  nav li.has-child ul ul{
    position: relative;
  left:0;
  top:0;
  width:100%;
  visibility:visible;/*JSで制御するため一旦表示*/
  opacity:1;/*JSで制御するため一旦表示*/
  display: none;/*JSのslidetoggleで表示させるため非表示に*/
  transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
  
nav ul li a{
  border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
  left:20px;  
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
  left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
    }}


#slider{
    margin: 0 auto;
    clear: both;
}
.flexslider{
   float: left;
width:100%;
	height:auto;
    margin:auto;
    clear: both;
	}

#main{
	width:100%;
	height:auto;
	margin:0 auto;
}
#main a{
    color:#000;
}
#main a:hover{
    color:burlywood;
}

#news{
     width: 980px;
    height: auto;
    margin: 0 auto;
    clear: both;
}
#news h1{
    border:1px solid #333;
    padding:7px 10px;
    margin-bottom: 20px;
}
#news ul li{
    list-style: none;
    margin-top:10px;
    margin-left: 0;
}

#button{
    width: 300px;
    height: 70px;
    margin: 50px auto;
    border-radius: 35px;
    font-size: 2rem;
    font-weight: bold;
    background: #19448e;
    text-align: center;
    line-height: 70px;
    color:#fff;
}
#button2{
    width: 300px;
    height: 70px;
    margin: 50px auto;
    border-radius: 35px;
    font-size: 2rem;
    font-weight: bold;
    background: #b0ca71;
    text-align: center;
    line-height: 70px;
    color:#fff;
}
#button a{
    color:#fff;
}
#button2 a{
    color:#2c331d;
}
#order{
    width: 980px;
    height: auto;
    margin: 30px auto;
    clear: both;
    padding-bottom: 30px;
}
#order h1{
    font-size:5rem;
    font-family: serif;
    text-align: center;
    position: relative;
  background: #ebf6f7;
  box-shadow: 0px 0px 0px 5px #ebf6f7;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  color: #454545;
}
#order h1:after{
    position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #c1e4e9;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

#layout{
    width: 100%;
    margin: 20px auto;
}
.order1{
    float: left;
    width: 48%;
    height: auto;
}
.order1 img{
    margin: 0 auto;
    width: auto;
}
.order2{
    float: right;
    width: 48%;
    height: auto;
}
.order2 img{
    margin: 0 auto;
    width: auto;
}
.order3{
    display: flex;
     justify-content: center;
}
#afterfollow{
    width: 980px;
    height: auto;
    margin: 30px auto;
    clear: both;
    border-top:10px solid #4682b4;
    border-left:10px solid #4682b4;
    border-bottom: 10px solid #19448e;
    border-right: 10px solid #19448e;
    padding:50px;
}

#afterfollow h1{
    font-size:5rem;
    text-align: center;
}

#afterfollow h2{
    font-size: 3rem;
    margin:20px;
    color:#333;
    padding-left: 10px;
    box-shadow: 0px 0px 0px 10px #f0f8ff;
    border: dashed 2px #19448e;
    border-radius: 5px;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}
#gift{
    width: 980px;
    height: auto;
    margin: 30px auto;
    position: relative;
  background: -webkit-repeating-linear-gradient(-45deg, #ebf6f7, #ebf6f7 4px,#ffffff 3px, #ffffff 8px);
  background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 4px,#ebf6f7 3px, #ebf6f7 8px);
  border-radius: 7px;
    padding:50px;
    padding-top: 30px;
    box-shadow: 0px 0px 0px 10px #ebf6f7;
    border: dashed 7px #c1e4e9;
}
#gift h1{
    font-size:5rem;
    text-align: center;
    margin-bottom: 20px;
}
#postage{
    width: 980px;
    height: auto;
    margin: 30px auto;
    clear: both;
    border-top:10px solid #4682b4;
    border-left:10px solid #4682b4;
    border-bottom: 10px solid #19448e;
    border-right: 10px solid #19448e;
}
#postage h1{
    font-size:5rem;
    text-align: center;
    background: #ebf6f7;
}
#postage ul{
    list-style: none;
    margin: 0 auto;
    text-align: center;
}
#postage ul li{
    display: inline-block;
}
#postage p{
    margin: 20px;
}
#exchange{
    width: 980px;
    height: auto;
    margin: 30px auto;
    clear: both;
    border-top:10px solid #4682b4;
    border-left:10px solid #4682b4;
    border-bottom: 10px solid #19448e;
    border-right: 10px solid #19448e;
    padding:50px;
    padding-top: 30px;
}
#exchange h1{
    font-size:5rem;
    text-align: center;
    margin-bottom: 20px;
}
#exchange h2{
    font-size: 3rem;
    margin:20px;
    margin-top: 40px;
    color:#333;
    padding-left: 10px;
    box-shadow: 0px 0px 0px 10px #f0f8ff;
    border: dashed 2px #19448e;
    border-radius: 5px;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}
#kiji{
    width: 980px;
    height: auto;
    margin: 30px auto;
}
#kiji h1{
    font-size:5rem;
    text-align: center;
    margin-bottom: 20px;
    background: #ebf6f7;
    box-shadow: 0px 0px 0px 10px #ebf6f7;
    border: dashed 7px #c1e4e9;
    border-radius: 8px;
}
#kiji h1 a{
    color:#19448e;
}
#kiji h1 a:hover{
    color:#c1e4e9;
}

/*privacy policy他*/
#privacy{
    width: 980px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
}
#privacy h1,#company h1{
    font-size:3rem;
    width: 100%;
    color: #505050;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;/*行高*/
  background: #dbebf8;/*背景色*/
  vertical-align: middle;
  border-radius: 25px;
    }
#privacy h1:before,#company h1:before{
    content: '●';
  color: white;
  margin-right: 8px;
}

#privacy p{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 15px;
    padding: 10px;   
}
#company{
    width: 980px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;    
}
.table_wrp{
  overflow-x:auto;
  width:100%;
}
#company table{
    width: 100%;
    border: 1px solid #fff;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
    border-collapse:  collapse;
}
#company .text{
    text-align: center;
    font-size:2rem;   
}
#company th,td{
    border: solid 1px #fff;
    padding: 10px;
}
#company th{
    background: #89c3eb;
}
#company td{
    background: #f0f8ff;
}
/*お支払いについて他*/
#payment{
    width: 980px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;    
}
#payment h1{
    font-size:3rem;
    width: 100%;
    color: #505050;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;/*行高*/
  background: #c1e4e9;/*背景色*/
  vertical-align: middle;
  border-radius: 25px;
}
#payment h1:before{
    content: '!★';
  color: white;
  margin-right: 8px;
}
#payment ol,#order ol {
    counter-reset:number; /*数字をリセット*/
  list-style-type: none!important;
  padding:1rem;
}

#payment ol li,#order ol li{
    font-size:2rem;
    font-weight: bold;
    margin-top: 30px;
    background: #f0f8ff;
    position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 40px;
    border-radius: 15px;
}
#payment ol li:before,#order ol li:before{
    position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
    margin-left: 5px;
  background: #5c9ee7;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 2rem;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.samue{
    display: block;
    position: relative;
    width: 80%;
    height: auto;
        margin: 0 auto;
    margin-top: 30px;
}

.table1{
    width: 70%;
    border: 1px solid #fff;
    margin: 0 auto;
    margin-top: 30px;
    border-collapse:  collapse;
}
.table1 th,td{
    border: solid 1px #fff;
    padding: 10px;
}
.table1 th{
    background: #555;
    color:#fff;
}
.table1 td{
    background: #ccc;
}
#sagawa{
    width: 67%;
    margin:30px auto;
}
.e-collect{
    float: left;
    width: 40%;
    height: auto;
}
.e-credit{
    float: right;
    width: auto;
    height: auto;
}
.table2{
    width: 60%;
    border: 1px solid #ccc;
    margin: 0 auto;
    margin-top: 30px;
    border-collapse:  collapse;
}
.table2 th,td{
    border: solid 1px #ccc;
    padding: 10px;
}
.table2 th{
    background: #f0f8ff;
    color:#000;
text-align: left;
}
.table2 td{
    background: #fff;
    text-align: right;
    font-weight: bold;
}
/*領収書について*/
#recipt{
    width:980px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
  background: #ebf6f7;
  border-radius: 7px;
    padding:50px;
    padding-top: 30px;
    box-shadow: 0px 0px 0px 10px #ebf6f7;
    border: dashed 7px #c1e4e9;
}
#recipt h1{
    font-size:5rem;
    text-align: center;
    margin-bottom: 20px;
}
#recipt h2{
    font-size: 2rem;
    margin-top:30px;
    display: inline-block;
    width: 100%;
  line-height: 1.3;/*行高*/
  background: #fff;/*背景色*/
  vertical-align: middle;
  border-radius: 10px;
    box-shadow: 0px 0px 0px 10px #fff;
}
#recipt p{
    margin: 20px 0;
}
footer{
    margin-top:30px;
    text-align: center;
    font-weight: 300;
    background-color: #19448e;
    color: #fff;
}
footer ul{
     margin:10px 0;
	list-style:none;
    display: flex;
    justify-content: center;
}
footer ul li{
    border-left: 1px solid #fff;
    padding: 5px 30px;
    margin-top: 10px;
}
footer ul li a{
    color:#fff;
}
footer ul li a:hover{
    color:#333;
}
footer ul li:last-child{
    border-right: 1px solid #fff;
}
.page-top{
	margin:0px;
	padding:0px;}
.page-top p{
	margin:0px;
	padding:0px;
	position:fixed;
	z-index:15;
	right:20px;
	bottom:20px;}
.move-page-top{
	display:block;
	width:85px ;
	height:85px ;
	
	-webkit-transition:all 0.3s ;
	-moz-transition:all 0.3s ;
	transition:all 0.3s ;
	}
.move-page-top:hover{
	opacity:0.85;
	}
