@charset "UTF-8";

/* ================================================== *
 *
 *    original reset css
 *
 * ================================================== */
* {box-sizing: border-box;}
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, 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,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, ection, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;background-color: transparent;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;} ol, ul {list-style: none;font-size: 0;} ol >li, ul >li {font-size: 16px;}dl {font-size: 0;} dl >dt, dl >dd {font-size: 16px;} blockquote, q {quotes: none;} blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;} table {border-collapse: collapse;border-spacing: 0;} img {max-width: 100%;height:auto;vertical-align: bottom;} button{font: inherit;line-height: 1; background-color: #fff;border: 1px solid #ccc;border-radius: 3px;cursor: pointer;outline: none;padding: 0.5em 1em;appearance: none;} iframe {width: 100%;height: 100%;border: none;display: block;}


/*==============================
 *
 *            base layout
 *
==============================*/
body {
    font-family:  'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    background: #eee;
    padding-top: 72px;
}
#wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}
#header,
#sub_nav,
#contents,
#footer {
    width: 100%;
    background: #fff;
}
.f_size10 {
    font-size: 10px;
}
.f_size11 {
    font-size: 11px;
}
.f_size12 {
    font-size: 12px;
}
.text_red {
    color: #e5004f;
}



/*==============================
 *            header
==============================*/
#header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    z-index: 999;
    transition: .3s;
}
#header {
    position: relative;
    height: 72px;
    border-bottom: 0.5px solid #ccc;
}

#header .h_logo {
    height: 72px;
    padding: 10px 8px 0  8px;
}


#header .h_logo img {
    width: 75%;
}

#header .trigger_wrap {
    position: absolute;
    display: inline-block;
    top: 12px;
    right: 8px;
}
#header .trigger_wrap .nav_trigger {
    position: relative;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #fbe9c9;
    border-radius: 2px;
    cursor: pointer;
}
#header .trigger_wrap .nav_trigger .trigger_icon {
    position: absolute;
    left: 5px;
    width: 36px;
    height: 3px;
    background: #fbe9c9;
    border-radius: 1px;
    transition-duration: .4s;
}
#header .trigger_wrap .nav_trigger .trigger_icon:nth-child(1) {
    top: 8px;
}
#header .trigger_wrap .nav_trigger .trigger_icon:nth-child(2) {
    top: 21px;
}
#header .trigger_wrap .nav_trigger .trigger_icon:nth-child(3) {
    top: 35px;
}
.active #header .trigger_wrap .nav_trigger .trigger_icon:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}
.active #header .trigger_wrap .nav_trigger .trigger_icon:nth-child(2) {
    opacity: 0;
}
.active #header .trigger_wrap .nav_trigger .trigger_icon:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}
#header .h_nav_wrap {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
}
#header .h_nav {
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition-duration: .6s;
}
.active #header .h_nav {
    height: auto;
    opacity: 1;
}
.active #header .h_nav > li {
    width: 100%;
    background: #fbe9c9;
    border-bottom: 2px solid #fff;
    text-align: center;
}
.active #header .h_nav > li > a {
    display: block;
    font-size: 16px;
    color: #000;
    padding: 1em 0;
    text-decoration: none;
}
.active #header .h_nav > li > a:hover {
    opacity: .6;
}

/*==============================
 *            sub nav
==============================*/
#sub_nav > li {
    display: inline-block;
    width: 33.333333%;
    background: #fbe9c9;
    border-left: 2px solid #fff;
    text-align: center;
    vertical-align: middle;
}
#sub_nav > li:first-child {
    border-left: none;
}
#sub_nav li > a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
}
#sub_nav li > a:hover {
    opacity: .6;
}
#sub_nav li:nth-child(2) > a {
    padding: 16px 0;
}

/*==============================
 *            footer
==============================*/
#footer {
    margin:0 auto;
}
#footer .f_nav li {
    position: relative;
    width: 100%;
    background: #595959;
    border-bottom: 1px solid #fff;
}
#footer .f_nav li:last-child {
    border-bottom: none;
}
#footer .f_nav li:before {
    position: absolute;
    top: 19px;
    left: 16px;
    display: inline-block;
    content: "";
    width: 12px;
    height: 16px;
    background: url(../top_img/ico_right_wh.png) no-repeat center center;
    background-size: contain;
}
#footer .f_nav li > a {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 16px 8px 16px 40px;
    text-decoration: none;
}
#footer .f_address {
    display: block;
    width: 100%;
    padding: 16px 8px 40px 8px;
    background: #fff;
    color: #000;
    font-size: 16px;
}
#footer .f_address strong {
    font-size: 16px;
    line-height: 3;
}

#footer .map{
	padding: 20px;
	background: #fbe9c9;
}

#footer p{
	margin: 0 auto;
	padding: 30px;
	background-color: #fbe9c9;
	color: #000;
}

/*==============================
 *            contents
==============================*/

#mainimg{
	width: 100%;
	height: auto;
}

#mainimg a img{
	background-image: url("../top_img/bg.jpg");
}

#contents img{
	margin: 0 auto;
	display: block;
}

#contents .box {
    width: 100%;
    margin: 0 auto;
    padding: 8px 16px;
}

#contents{
	margin: 0 auto;
	padding: 20px;
}

#contents p{
	margin-bottom: 20px;
}

#contents h3{
	margin: 20px 0;
	padding: 10px;
	font-size: 120%;
	font-weight: bolder;
	background-color: #fbe9c9;
}

.shohin{
	margin: 0 auto;
	padding: 30px;
	text-align: center;
	background-color: #fbe9c9;
}

#contents .box:first-child{
    padding-top: 0px;
}
.table_a {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #363636;
}
.table_a tr th,
.table_a tr td {
    padding: 10px;
    border: 1px solid #363636;
}

/*==============================
 *
 *            top page
 *
==============================*/
#toppage .slider .slick-prev,
#toppage .slider .slick-next {
    position: absolute;
    top: 40%;
    display: block;
    width: 36px;
    height: 72px;
    padding: 8px;
    border: none;
    background-color: transparent;
    z-index: 99;
}
#toppage .slider .slick-arrow img {
    width: 100%;
    height: auto;
    opacity: .6;
}
#toppage .slider .slick-prev {
    left: 8px;
}
#toppage .slider .slick-next {
    right: 8px;
}
#toppage .tel,
#toppage .pickup h2,
#toppage .policy h2 {
    width: calc(100% + 32px);
    margin: 8px auto 8px 16px;
}

#toppage .pickup .pickup_item {
    width: 100%;
  margin: 20px auto;
	text-align: center;
	background-color:#ffc0d9;

		
}

#toppage .pickup{
	margin: 20px 0;
	padding: 10px;
}

#toppage .pickup_item a{
	display:block;
	width:100%;
	padding:30px;
	text-align:center;
	text-decoration:none;
	border:1px solid;
	border-color:#ffc0d9;
	color: #323232;
}

#toppage .fb_area {
    text-align: center;
}
.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style]{
    width: 100% !important;
}

#gallery{
	margin: 0 auto;
}

#topnews {
	max-width: 1200px;
	max-height: auto;
	margin: 0 auto;
/*	border: 2px #2aa7e1 solid;*/
	padding: 40px 45px;
	font-size: 1.8rem;
	line-height: 2.8rem;
	background-color: #d01e7e;
}

#topnews {
	padding: 0 20px;
}
#topnews li{
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
}
#topnews a{
	color: #fff;
}

.topnews {
	max-width: 1200px;
	max-height: auto;	
	margin: 0 auto;
	padding: 10px;
	border-bottom: 2px #ffc0d9 solid;
}


#histot{
	margin: 0 auto;
	padding-top: 20px;
	max-width: 100%;
	max-height: 500px;
}


.en {
	width: 300px;
    height: 300px;
    margin: 20px auto 20px;
    text-decoration: none;
    display: block;
    text-align:center;
    color: #ffc0d9;
    background: #ffc0d9;
    border-radius: 50%;

}

.en2 {
	width: 300px;
    height: 300px;
    margin: 20px auto 20px;
    text-decoration: none;
    display: block;
    text-align:center;
    color: #ffc0d9;
    background: #ffc0d9;
    border-radius: 50%;

}

.en3 {
	width: 300px;
    height: 300px;
    margin: 20px auto 20px;
    text-decoration: none;
    display: block;
    text-align:center;
    color: #ffc0d9;
    background: #ffc0d9;
    border-radius: 50%;

}

.en p{
	line-height: 20px;
	margin: 0 auto;
	padding-top: 70px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
	
}

.en p{
	line-height: 20px;
	margin: 0 auto;
	padding-top: 70px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
	
}

.en2 p{
	line-height: 20px;
	margin: 0 auto;
	padding-top: 100px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
	
}

.en3 p{
	line-height: 20px;
	margin: 0 auto;
	padding-top: 100px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
	
}

.sec1{
	background-color: #d01e7e;
}

h4{
	font-weight: 900;
	background: #ffe7fc;
    padding: 20px 16px 0px;
}

h5{
	font-weight: 900;
	background:#fbe9c9;
    padding: 10px 10px;
}

.anser{
	background-color:#FFF4EB;
	padding: 10px 20px;
}

/*==============================
 *
 *            under page
 *
==============================*/
#cosme .box h2,
#inner .box h2,
#company .box h2,
#contact .box h2 {
    width: calc(100% + 32px);
    margin: 8px auto 0 -16px;
}
#cosme .box h3,
#inner .box h3,
#company .box h3 {
    margin-top: 16px;
}
#cosme .box > h3:nth-of-type(1),
#inner .box > h3:nth-of-type(1),
#company .box > h3:nth-of-type(1) {
    margin-top: 0;
}

#cosme .item_list01 .item,
#inner .item_list01 .item {
    background: #ffe7fc;
    border: 1px solid #fff;
    width: 100%;
}
#cosme .item_list01 .item dl dt,
#cosme .item_list01 .item dl dd,
#inner .item_list01 .item dl dt,
#inner .item_list01 .item dl dd {
    display: inline-block;
    width: 50%;
    padding:16px;
    font-size: 14px;
    vertical-align: top;
}
#cosme .item_list01 .item dl dt,
#inner .item_list01 .item dl dt {
    font-size: 12px;
    text-align: center;
}


.item_list02 .item,
.item_list02 .item {
    display: inline-block;
    width: 50%;
	height: 450px;
    background: #ffe7fc;
    border: 1px solid #fff;
    padding: 16px 0;
    vertical-align: bottom;
    overflow: hidden;
}
.item_list02 .item dl dt,
.item_list02 .item dl dd,
.item_list02 .item dl dt,
.item_list02 .item dl dd {
    font-size: 12px;
    text-align: center;
    padding: 0 1px;
}
.item_list02 .item dl dt strong,
.item_list02 .item dl dt strong {
    display: inline-block;
    width: auto;
    min-width: 12em;
	margin-top: 10px;
    margin-bottom: 16px;
    padding: 6px;
    background: #e4007f;
    line-height: 1;
    color: #fff;
    border-radius: 5px;
}
.item_list02 .item dl dd,
.item_list02 .item dl dd {
    padding: 6px 9px;
	text-align: left;
}





.item_list03 .item,
.item_list03 .item {
    display: inline-block;
    width: 50%;
	max-height: 350px;
    min-height: 280px;
    background: #ffe7fc;
    border: 1px solid #fff;
    padding: 16px 0;
    vertical-align: bottom;
    overflow: hidden;
}
.item_list03 .item dl dt,
.item_list03 .item dl dd,
.item_list03 .item dl dt,
.item_list03 .item dl dd {
    font-size: 12px;
    text-align: center;
    padding: 0 1px;
}
.item_list03 .item dl dt strong,
.item_list03 .item dl dt strong {
    display: inline-block;
    width: auto;
    min-width: 12em;
	margin-top: 10px;
    margin-bottom: 16px;
    padding: 6px;
    background: #e4007f;
    line-height: 1;
    color: #fff;
    border-radius: 5px;
}
.item_list03 .item dl dd,
.item_list03 .item dl dd {
    padding: 6px 9px;
	text-align: center;
}

#inner p {
    font-size: 18px;
    margin: 0;
    padding: 16px;
    background: #ffe7fc;
}
#inner p:last-child {
    padding-bottom: 32px;
}
#company .pic {
    padding: 16px;
    text-align: center;
}
#company .table_a {
    margin-bottom: 16px;
    font-size: 14px;
}
#company .map {
    width: 100%;
    height: 60vh;
}
#contact #form_wrap {
    margin: 16px;
}
#contact #form input,
#contact #form textarea {
    width: 100%;
    margin: 0;
    padding: 8px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
}
#contact #form button {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    background: #aaa;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    color: #fff;
}
#contact #form button:hover {
    opacity: .6;
}
#contact #form input:focus,
#contact #form textarea:focus {
    outline: none;
    border: 1px solid #666;
    -webkit-transition: all .3s;
    transition: all .3s;
}
#contact #form dl dt {
    padding-top: 16px;
}
#contact .back {
    text-align: center;
}
#contact .back a button {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    background: #aaa;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    color: #fff;
}


#shopdata{
	margin: 0 auto;
	padding: 10px 0 0;
}
