@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000000;
    --link-color: #000099;
    --linkhover-color: #ccc;
    --back-color: #ffeed7;
    
    --white-color: #fff;
    --nav-color: rgb(229,148,36,0.7);
}
body {
    background: var(--white-color); 
    color: var(--base-color);
    font-family: "M PLUS Rounded 1c"; /* Googleフォント */
	text-align:left;
}
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
/*
h2 {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    text-align: center;display: flex;
	align-items: center;
	justify-content: center;
}
h2::before, h2::after {
    content:"";
    width:80px;
    height:1px;
    margin:0 10px;
    background-color: var(--border-color);
}*/
h3.underline {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}
h4 {
    padding-left: 1rem;
}
section {
    padding: 2rem 0 0 0;
}
/*ヘッダー
-------------------------------------*/
/*スマホ用メニュー
-------------------------------------*/	
.spnavi {
    display: none;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 10px 0 0 0;
}
nav li {
	flex: 1 0 auto;
    margin-bottom: 0;
}
nav li a {
    text-decoration: none;
    text-align: left;
	text-indent: .5em;
    width: 100%;
    color: #fff;
}
nav a:hover {
    color: #3f7eff; 

}
nav a {
    padding: 0.8em;
}

@media screen and (min-width:1081px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}
#navi {
    display: block !important;
}
}

.menu_icon{
	float:left;
	width:20px;
	height:20px;
	margin:0 4px 0 4px;
}
@media screen and (max-width: 1080px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 0px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button_1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 0px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button_2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 0px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
.navblock {
    margin-top: -10px;
}
}
    
/*top image(PC)*/

.head {
   /* background: url("../img/mainimg.jpg");/* 背景画像 */
   background-repeat: no-repeat;  
   background-position: center center;
	width:100%;
    height: 100%;
	
}




.head h1 {
	width:100%;
    height: 600px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--base-color); 
    margin: 0;
}

.head h1 img{
	width:500px;
	height:100px;
}

.head{
	  scrollbar-width: none;
}


/* サイトタイトル
-------------------------------------*/
@media screen and (max-width:1079px){
.head {
}

.head h1 {
	height:300px;
}

.head h1 img{
	width:300px;
	height:60px;
}}



.navblock {
    background: rgba(0,0,153,0.8);
}
.button {
    border-radius: 30px;
    height: 50px;
    line-height: 48px;
    color: var(--white-color);
}
.button:hover {
    border: 1px solid var(--linkhover-color);
    color: var(--linkhover-color);
}

/* キャッチコピー
-------------------------------------*/
.catchback {
	margin:0 auto;
	padding:0;
	text-align:center;


}
.catch {
    background: #000099;
    margin: .5rem;
    padding: .5rem;
    border: 1px solid #fff;
	border-radius:20px;
    text-align: center;
    line-height: 1.7;
	color:#fff;
}

@media screen and (max-width: 1080px){
.catch {
    background: #000099;
    margin: 2rem;
    padding: 2rem;
    border: 1px solid #fff;
	border-radius:20px;
    text-align: center;
    line-height: 1.7;
	color:#fff;
}}

/*センター寄せ*/
.center {
	text-align: center;
}
/* ニュース
-------------------------------------*/
.back-color {
	background-color:rgba(0,0,153,0.1);
}
.news {
    margin: 0 auto;
    max-width: 980px;
    padding: 2rem;
}
.news-list{
    list-style: none;
  }

.item{ margin-bottom: 20px;
	
}
.news-list .item a{
    display: flex;
    flex-wrap: wrap;
    color: var(--base-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}
.news-list .item:first-child a{
    border-top: 1px solid var(--border-color);
}
.news-list .item .date{
    min-width: 120px;
    color: #000099;
}
.news-list .item a:hover .title{
    color: var(--link-color);
	
}
.title{margin-bottom:10px;
	
}

/* メニュー
-------------------------------------*/
.menuback {
    background: url('../img/menuback.jpg');/* 背景画像 */
    background-repeat: no-repeat;
    padding: 15rem 0;
    margin-bottom: 3rem;
}
.menuback h2, .contactback h2 {
    text-shadow: 1px 2px 3px var(--white-color); 
}
/* マウスホバーで画像を拡大
-------------------------------------*/
.hoverbox{
	margin-top:1.5rem;
    max-height: 500px;
    overflow: hidden;
	border:1px solid #fff;
	border-radius: 16px;
	background: #807fcb;

}
.hoverbox-img{
    transition-duration: 0.3s;

}
.hoverbox-img:hover{
    transform: scale(1.3);
    transition-duration: 0.3s;

}
/* お問い合わせ
-------------------------------------*/
.contactback {
    background: url('../img/contactback.jpg');/* 背景画像 */
    background-repeat: no-repeat;
    background-position: center center;
    padding: 15rem 0;
}
/* Googleマップ
-------------------------------------*/
.gmap {
	margin: 3rem 0;
	text-align:left;
}
/*電話
-------------------------------------*/
a.tel {
    display: inline-block;
}
@media screen and (min-width:1081px){
a[href*="tel:"] { /* PC時は電話番号無効 */
    pointer-events: none;
    cursor: default;
}
}
/*ステップのリンク*/
.about_order a:link {
	margin-top:1rem;
	padding:.5rem;
	border:2px solid #000099;
	border-radius: 16px;
	font-size:2.3rem;
	display:block;
    background-color:rgba(0,0,153,0.7);
	color:#fff;
	}

.about_order a:hover {
	margin-top:1rem;
  padding:.5rem;
  border:2px solid #000099;
  border-radius: 16px;
  font-size:2.3rem;
  display:block;
  background-color:rgba(0,0,153,1.0);
      color:#fff;
	}


@media screen and (max-width: 1080px){
.about_order a:link {
	font-size:2rem;

	}
.about_order a:hover {
	font-size:2rem;

	}
}

/*最下部メニュー*/
.b_menu a{
	display: block;
    padding: 0.5em 0.5em;
    margin: .8em 0;
    background: rgba(0,0,153,0.2);
    box-shadow: 0px 0px 0px 6px rgba(0,0,153,0.2);
    border: dotted 2px rgba(0,0,153,0.4);
    border-radius: 8px;
	text-align: center;
	color:#000099;
	font-weight:bold;
}

.b_menu a:hover{
	display: block;
    padding: 0.5em 0.5em;
    margin: .8em 0;
    background: rgba(0,0,153,0.4);
    box-shadow: 0px 0px 0px 6px rgba(0,0,153,0.4);
    border: dotted 2px #fff;
    border-radius: 8px;
	text-align: center;
	color:#fff;
	font-weight:bold;
}



.b_menu p {
    margin: 0; 
    padding: 0;
}

.b_menu img {
    margin: 4px; 
    padding: 0;
	border:0px;
	width:30px;
	height:30px;
}

/*お問い合わせ
-------------------------------------*/
h3.stripe {
	position: relative;
	padding: 0.3em;
}
h3.stripe:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: repeating-linear-gradient(-45deg, var(--link-color), var(--link-color) 2px, var(--back-color) 2px, var(--back-color) 5px);
}
.button,input[type="submit"] {
    color: var(--white-color);
    background-color: var(--link-color);
    border: 1px solid var(--link-color);
    margin: 1rem;
}
.button:hover,input[type="submit"]:hover {
    color: var(--white-color);
    background-color: var(--linkhover-color);
    border: 1px solid var(--linkhover-color);
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 150px;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    border-radius: 10px;
}
input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,
input[type="text"]:focus,input[type="tel"]:focus,
input[type="url"]:focus,input[type="password"]:focus,textarea:focus,
select:focus {
  border: 1px solid var(--link-color);
}
/* SNS
-------------------------------------*/
.snsicon {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.snsicon li {
    width: 60px;
    list-style-type: none;
    margin:0;
    padding: 2rem 2rem 0 0;
}
.snsicon a:hover{
	opacity:0.7;
}
	

/*ステップ*/
.step {
    position: relative;
    margin: .5em 0 .5em 0 ;
    padding: 0.5em 1em;
	background:rgba(0,0,153,0.1);
	border:1px solid #fff;
	border-radius:16px;
	text-align: left;

}

.step1,.step2,.step3,.step4,.step4,.step5,.step6{
	background-repeat: no-repeat;
	background-position: bottom right;
}

.step1{	background-image:url("../img/step1.png");}
.step2{	background-image:url("../img/step2.png");}
.step3{	background-image:url("../img/step3.png");}
.step4{	background-image:url("../img/step4.png");}
.step5{	background-image:url("../img/step5.png");}
.step6{	background-image:url("../img/step6.png");}


.box-title {
    font-size: 1.8rem;
    color: #000099;
    font-weight: bold;
	text-align: center;
}
.step p {
    margin: 0; 
    padding: 0;
}



.kadomaru{

	text-align: center;
	padding:10px;
	margin-bottom:10px;
	color:#000099;
}
.kadomaru img{
	width:160px;
	height:160px;
	border:0;
}
@media screen and (max-width: 1080px){
.kadomaru img{
	width:25%;
	height:25%;
	border:0;
}}

.kadomaru a:hover{
	opacity: 0.8;
}

@media screen and (min-width:1081px){
.big_icon img{
	width:150px;
	height:150px;
}}

/*注意*/
/*notice*/
ul.notice{
	margin:0 0 20px 0;
	padding:6px;
	width:100%;
	border:2px solid #fff;
	border-radius: 20px;
	list-style:none;
	color:#333;
	text-align: left;
	background: #fff;

}
/*最下部メニュー*/
.b_menu a{
	display: block;
    padding: 0.5em 0.5em;
    margin: .8em 0;
    background: rgba(0,0,153,0.2);
    box-shadow: 0px 0px 0px 6px rgba(0,0,153,0.2);
    border: dotted 2px rgba(0,0,153,0.4);
    border-radius: 8px;
	text-align: center;
	color:#000099;
	font-weight:bold;
}

.b_menu a:hover{
	display: block;
    padding: 0.5em 0.5em;
    margin: .8em 0;
    background: rgba(0,0,153,0.4);
    box-shadow: 0px 0px 0px 6px rgba(0,0,153,0.4);
    border: dotted 2px #fff;
    border-radius: 8px;
	text-align: center;
	color:#fff;
	font-weight:bold;
}



.b_menu p {
    margin: 0; 
    padding: 0;
}

.b_menu img {
    margin: 4px; 
    padding: 0;
	border:0px;
	width:30px;
	height:30px;
}

table.pre_details{
	margin:0 auto;
	padding:0;
	width:100%;
	color:#000055;		
}


table.pre_details td{
    margin:5px;

}
table.pre_details td.t_center{
    margin:10px 5px 5px 5px;
	border:none;
	font-size:2.3rem;
	text-align: center;

}
table.pre_details td.t_col{
    margin:10px 5px 5px 5px;
	font-weight:bold;
	border:0 0 1px 0 solid #ccc;
	font-size:2rem;

}
table.pre_details td.t_left{
    width:40%;
    margin:5px;
}

/*table 事前準備*/
table.pre_details{
	margin:0 auto;
	padding:0;
	width:90%;
	font-size:1.6rem;
	margin-bottom:3rem;



	
}

@media screen and (max-width: 1080px){
	table.pre_details{
	margin:0 auto;
	padding:0;
	width:90%;
	font-size:1.6rem;
	margin-bottom:3rem;


	
}}

table.pre_details td{
    margin:.5em;
	padding:.2em;
	border:2px solid #fff;	


}
.t_center{
    margin:10px 5px 5px 5px;
	border:none;
	font-size:2rem;
	text-align: center;
	color:#000099;


}
.t_col{
    margin:10px 5px 5px 5px;
	font-weight:bold;
	font-size:1.8rem;
	color:  #00995e;
	text-align:left;

}
table.pre_details td.t_left{
    width:30%;
    margin:5px;
}
/*ご注文・配送について
-------------------------------------*/
.how dt,
.how dd {
    display: block;
    align-items: center;
    position: relative;
    margin: 0;
    padding: .5em;


}
.how dt {
    font-weight: bold;
	font-size:2rem;
	color:  #00995e;
}
.how dd {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2em;
	font-size:1.5rem;
}
.how dd + dt {
    margin-top: .5em;
}
@media screen and (min-width:1081px){p.tx_left{
	text-align: left;
	padding:1rem;}}
	
p.tx_left{text-align: left;
padding:1rem;}
/*フッター
-------------------------------------*/
footer {
	width: 100%;
    background-color: rgba(0,0,135,0.9); 
	


}

@media screen and (max-width: 924px) {
	footer {
	width: 100%;
    background-color: rgba(0,0,135,0.9); 
	position: fixed;
	bottom: 0;

}}
/* フッターメニュー
-------------------------------------*/
.footermenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
 }
@media screen and (max-width: 924px) {.footermenu{
    display: none;

}}
.footermenu li {
    margin-bottom: 0;
    padding: 1rem;
}
.footermenu a {
    color: #fff;
}

.footermenu a:hover {
    color: #3f7eff;
}


/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 0 0 10px 0;
	color:#fff;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background: #8383cd;
    border: 1px solid #fff;
    border-radius: 10%;
    padding-top: 30px;
    text-align: center;
    text-decoration: none;
  
}
#pagetop::after{
    content: "";
    display: block;
    border-top: 2px solid var(--white-color);
    border-right: 2px solid var(--white-color);
    width: 25%;
    height: 25%;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
#pagetop:hover{
    opacity: 0.5;
}
/* 下層ページヘッダー
-------------------------------------*/
.subhead {
    height: 400px;
    background: url('../img/subpageback.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
}
.subhead h1 {
    height: 400px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--base-color); 
    margin: 0;
}

.subhead h1 img{
	width:500px;
	height:100px;
}

@media screen and (max-width: 1080px){
.subhead {
    height: 300px;
    background: url('../img/subpageback.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
}
.subhead h1 {
    height: 300px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--base-color); 
    margin: 0;
}

.subhead h1 img{
	width:300px;
	height:60px;
}


}




/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 1080px){
h2,h3 {
    font-size: 2.2rem;
}
/*
h2::before, h2::after {
    width:30px;*/
}



/*ニュース
-------------------------------------*/
.news-list .item .title{
    margin-top: 1em;
}
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
/* フッターメニュー
-------------------------------------*/
.footermenu {
    flex-flow: row wrap;
}
.footermenu li {
    text-align: center;
}

/*よくある質問
-------------------------------------*/
.qa dt,
.qa dd {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: .5em;
}
.qa dt {
    font-weight: bold;
    color:#00995e;
	font-size:2rem;
}

@media (max-width: 1080px) {
	.qa dt {
    font-weight: bold;
    color:#00995e;
	font-size:1.8rem;
	}}

.qa dd {
    border-bottom: 1px dotted #000099;
    padding-bottom: 1em;
}


.qa dd + dt {
    margin-top: 1em;
}
.qa dt::before,
.qa dd::before {
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    border-radius: 50%;
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1em;
    line-height: 40px;
    text-align: center;
}

.qa dt::before {
    /*background-color: var(--base-color);*/
    content: '';
}

.qa dd::before {
   /* background-color: var(--link-color);*/
    content: '';
}