body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	color: #000;
}
ul {
	list-style-type: none;
}
a:hover {
	opacity: .7;
}

/* header */


.ec-layoutRole__header {
	background: #000;
	position: fixed;
	top: 0;
	z-index: 99;
	width: 100%;
}
.ec-headerNav {
    display: flex;
}

.ec-headerNaviRole {
	max-width: 1280px;
	padding: 20px;
	align-items: unset;
}

.ec-headerNav {
    display: flex;
}
.ec-headerNaviRole .ec-headerNaviRole__nav a {
	display: flex;
}

.ec-headerNaviRole .ec-headerNaviRole__search {
    margin-top: 0px;
	margin-left: 20px;
}

.ec-headerNav .ec-headerNav__itemLink {
    flex-shrink: 0;
	color: #fff;
}

.ec-headerNaviRole .ec-headerNaviRole__left {
    width: auto;
}

.ec-headerNaviRole__left h1 {
	margin: 0;
}

.ec-headerNaviRole__left h1 img {
	width: auto;
}
.header-tel {
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
	font-weight: bold;
	text-align: center;
}

.ec_icon {
	display: flex;
	align-items: center;
}

.ec_menu {
	margin-top: 15px;
}

.ec_menu nav ul {
	display: flex;
	list-style-type: none;
	margin: 0;
    padding: 0;
}

.ec_menu nav ul li {
    margin-left: 70px;
}

.ec_menu nav ul li:first-child {
    margin-left: 0px;
}

.ec_menu nav ul li a {
	color: #fff;
}

.ec-headerNaviRole .ec-headerNaviRole__right {
	flex-direction: column;
    align-items: end;
	width: auto;
	margin-left: auto;
}

.ec-headerNav .ec-headerNav__itemIcon {
    margin-right: 10px;
	color: #fff;
}

.ec-headerSearch .ec-headerSearch__keyword {
	border-radius: 0px;
	width: 230px;
	margin-right: 20px;
	background-color: #fff
}

.ec-headerSearch .ec-headerSearch__keyword .ec-icon {
	display: block;    	
}
.ec-cartNavi {
    border-radius: unset;
	margin-left: 15px;
}


#ec-category {
    background-color: #fff;
}

#ec-category ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    height: 70px;
	padding: 0;
}

#ec-category ul li {
    width: 120px;
    text-align: center;
}

#ec-category ul li > a{
    display: block;
    position: relative; /* .enと.jaの絶対配置の基準 */
    top: -7px;
	font-size: 15px;
    background-color: #FFF;
    transition: .5s; /* 0.5秒で値をなめらかに変化させる */
    font-family: 'Josefin Sans', sans-serif;
}
#ec-category ul li > a:hover{
	background-color: #FFF;
}
#ec-category ul .en,
#ec-category ul .ja {
	display: block; /* position指定がある時は無くても可 */
	width: 100%;
	position: absolute; /* .enと.jaを重ねて表示 */
	transition: .5s; /* 0.5秒で値をなめらかに変化させる */
}
#ec-category ul .en {
	opacity: 1; /* 普段は英語表記を表示 */
	color: #000;
}
#ec-category ul .ja {
	opacity: 0; /* 普段は日本語表記を透明に */
	color: #000;
}
#ec-category ul li > a:hover .en { /* aにホバーしたとき英語表記は透明に */
	opacity: 0;
}
#ec-category ul li > a:hover .ja { /* aにホバーしたとき日本語表記を表示 */
	opacity: 1;
}
/* end */


header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}


/* mv_wrap  */



.mv-wrap {
	width: 100vw;
    margin-left: calc(50% - 50vw);
	height: 100vh;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	overflow: hidden;
	position: sticky;
    top: 0px;
	z-index: 1;
}

.mv-wrap .container {
	position: absolute;
	top: 45%;
	height: 100vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
}
.mv-catch p {
	color: #fff;
	text-align: center;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 0.2em;
}
.mv-catch p:first-child {
	font-size: 120px;
    line-height: .8;
	margin-bottom: 30px;
}
.mv-catch p:last-child {
	font-size: 50px;
	line-height: 1;
}
.swiper {
	width: 100%;
	height: 100vh;
	margin: 0 calc(50% - 50vw);
}

.swiper-slide {
	width: 100%;
	height: 100%;
}
.swiper-slide img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.swiper .swiper-pagination-bullet {
	width: 12px; 
	height: 12px; 
	background: #fff; 
	opacity: 1; 
	margin: 0 7px!important;
}
.swiper .swiper-pagination-bullet-active {
	width: 12px; 
	height: 12px;
	background: #F49098;
	opacity: 1;
	margin: 0 7px!important;
}

.mv_wrap2 {
	height: 300px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.pic1 {
	background-image: url(../img/top/page_pic1.jpg);
}
.pic2 {
	background-image: url(../img/top/page_pic2.jpg);
}
.pic3 {
	background-image: url(../img/top/page_pic3.jpg);
}
.pic4 {
	background-image: url(../img/top/page_pic4.jpg);
}
.pic5 {
	background-image: url(../img/top/page_pic5.jpg);
}
.pic6 {
	background-image: url(../img/top/page_pic6.jpg);
}
.pic7 {
	background-image: url(../img/top/page_pic7.jpg);
}
.pic8 {
	background-image: url(../img/top/page_pic8.jpg);
}
.pic9 {
	background-image: url(../img/top/page_pic9.jpg);
}
.pic10 {
	background-image: url(../img/top/page_pic10.jpg);
}



/* main */

.ec-wrap {
	overflow: clip;
}

.ec-layoutRole .ec-layoutRole__contents {
    max-width: 1280px;
	padding: 0 20px;
}
.ec-layoutRole__mainBottom {
	position: relative;
	z-index: 2;
	background: #fff;
}
.ec-role {
	max-width: 1280px;
	padding: 0;
}


.ec-more {
	text-align: center;
	margin-top: 50px;
}
.ec-more a {
	display: inline-block;
    text-align: center;
    width: 250px;
    color: #fff;
    padding: 15px 20px;
    background: #B0121A;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 18px;
	position: relative;
}
.ec-more a::after {
	content: "";
	background: url("../img/top/right2.png");
	width: 10px;
	height: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
} 


.ec-morebtn {
	display: inline-block;
	vertical-align: middle;
    margin-left: 15px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: white;
    text-align: center;
    background: black;
    cursor: pointer;
	line-height: 1.35;
    transform: rotate(-90deg);
}
.ec-subtitle {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 60px;
}
.ec-subtitle::after {
	content: "";
	background-color: #B0121A;
	width: 100px;
	height: 3px;
}
.ec-subtitle .ec-secHeading {
	margin: 0 0 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px; 
}
.ec-subtitle .ec-secHeading__en {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 50px;
	letter-spacing: 0;
	font-weight: 400;
}
.ec-subtitle .ec-secHeading__ja {
	font-size: 16px;
}

/* introduction */

.ec-introduction {
	padding: 120px 0;
}
.bg {
    position: relative;
 	overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.bg1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: circle(100%);
	z-index: -1;
}
.bg1::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
    background: url(../img/top/bg-introduction.png) no-repeat center center/cover;
	z-index: -1;
}
.ec-introduction .ec-secHeading__en {
	color: #fff;
}
.ec-introduction .ec-secHeading__ja {
	color: #fff;
}
.ec-introduction .ec-subtitle::after {
	content: "";
	background-color: #fff;
	width: 100px;
	height: 3px;
}
.ec-introduction p {
	text-align: center;
	line-height: 2;
	color: #fff;
}
.ec-introduction p {
	margin-bottom: 30px;
}
.ec-introduction p:last-child {
	margin-bottom: 0px;
}

/* topics */

.ec-newsRole .ec-role {
	max-width: 1280px;
	padding: 0 20px;
	display: flex;
	gap: 100px;
}
.ec-newItemRole {
    padding: 0 0 20px;
}
.ec-newsRole .ec-newsRole__news {
    border: none;
    padding: 0px;
	flex-grow: 1;
}

.ec-newsRole .ec-newsRole__newsItem {
    padding: 0px;
	margin-bottom: 25px;
}

.ec-newsRole .ec-newsRole__newsItem:not(:last-of-type) {
   border-bottom: 0px;
}

.ec-newsRole {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 120px 0 0;
	background: #fff;
}

.ec-newsRole .ec-newsRole__newsHeading {
    align-items: baseline;
}

.ec-newsRole .ec-newsRole__newsDate {
    font-weight: bold;
}



/* pickup */

.ec-pickup {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 120px 20px;
	background: #E0E4E6;
}
.ec-pickup .ec-container {
	padding: 50px 30px;
	background: #fff;
}
.ec-pickup .ec-shelfRole {
	padding: 0;
	margin: 0;
	max-width: 1280px;

}
.ec-pickup .ec-shelfGrid {
	margin-bottom: 0px;
}
.ec-pickup .ec-shelfGrid .ec-shelfGrid__item {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-bottom: 30px;
    gap: 30px;
    border-bottom: 1px solid #ddd;
}
.ec-pickup .ec-shelfGrid .ec-shelfGrid__item:last-child {
	margin: 0;
}
.ec-pickup .ec-shelfGrid .ec-shelfGrid__item a {
	width: 20%;
	flex-shrink: 0;
}

.ec-shelfGrid__item dl {
	margin-bottom: 0px;
	margin-top: 1rem;
}

.item_price {
	margin-bottom: 0px;
	margin-top: 10px;
}
.item_price p {
	margin-top: 30px;
}
.item_price span {
	font-size: 13px;
}

.ec-shelfGrid .ec-shelfGrid__item { 
	margin-bottom: 30px;
}

/* works */

.ec-works {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 90px 0 120px 0;
	background: #fff;
}
.ec-container {
	max-width: 1280px;
	padding: 0 20px;
	margin: 0 auto;
}
.ec-works ul {
	display: flex;
    flex-wrap: wrap;
    gap: 30px 2.6%;
    margin: 0;
    padding: 0;
}
.ec-works ul li {
	width: 23%;
}
.ec-works ul li a {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 10px 20px;
	border: 1px solid #000;
	color: #000;
}
.works-txt {
	flex-grow: 1;
	text-align: center;
}
.works-txt p:last-child {
	font-size: 13px;
}

/* order flow */

.ec-order {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 120px 0;
	background: #E0E4E6;
}
.ec-order ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	margin: 0;
	padding: 0;
}
.ec-order ul li {
	background: #fff;
	width: 15%;
	padding: 50px 30px;
	text-align: center;
	position: relative;
}
.ec-order ul li::after {
	content: "";
	background: url("../img/top/right.png");
	width: 11px;
	height: 28px;
	position: absolute;
	right: -60px;
    top: 50%;
    transform: translateX(-50%);
}
.ec-order ul li:last-child::after {
	display: none;
}
.count {
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #000;
}
/* company */

.banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 90px 0 0px 0;
	background: #fff;
}
.banner-area {
    display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.banner-img {
	width: 31.5%;
}
.banner-img:first-child {
	border: 1px solid #ccc;
}
.banner-img p {
	text-align: center;
}
.banner-img img {
	width: 100%;
	height: auto;
}

/* company */

.ec-company {
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-attachment: fixed;
	padding: 120px 0;
}
.ec-company dl {
    display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 0 auto;
}
.ec-company dt {
    width: 20%;
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
	margin: 0;
}
.ec-company dd {
    width: 80%;
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
	margin: 0;
}
.company-map {
    display: flex;
	align-items: center;
	gap: 50px;
	width: 90%;
	margin: 80px auto 0; 
}
.company-map-right {
    flex-grow: 1;
}
.company-map iframe {
    width: 100%;
}

/* footer */


.ec-footerRole {
    padding-top: 80px;
	margin-top: 0px;
	border: 0px;
	background-color: #000;
}

.ec-footerRole .ec-footerRole__inner {
    max-width: 1280px;
    padding: 0 20px;
    color: #fff;
}

.ec-footerRole .ec-footerRole__inner img {
	width: auto;
}
.ec-footertitle__logo {
	margin-bottom: 40px;
}
.f-tel {
	display: flex;
	font-size: 15px;
	margin-top: 15px;
}
.f-tel:last-child {
	margin-top: 0px;
}
.f-tel p:first-child {
	margin-right: 10px;
}
.ec-footerRole__inner a {
    color: #fff;
}

.f-add {
	display: flex;
	font-size: 15px;
	margin-top: 15px;
}
.f-add p:first-child {
	margin-right: 10px;
}
.ec-footerRole__inner {
	display: flex;
}


.f-menu {
	width: 280px;
	margin-right: 50px;
	margin-left: auto;
}
.f-menu2 {
	margin-right: 0px;
	margin-left: 0px;
}
.f-menuin ul {
	width: 50%;
	padding: 0;
	margin: 0;
}
.f-menu ul a {
	color: #fff;
	font-size: 14px;
}
.f-menu ul li {
	margin-bottom: 15px;
}
.f-menuin {
	display: flex;
}


.f-menutitle {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
	color: #Fff;
}

.ec-footerRole__inner {
	color: #fff;
}



.ec-footerTitle__copyright {
	margin-top: 80px;
    text-align: center;
    padding: 10px 0;
    color: #fff;
	font-size: 13px;
}

.ec-footerTitle__copyright a {
    color: #Fff;
}
.pc {
	display: block;
}
.sp {
	display: none;
}

/* page_contents */

.other_page .ec-layoutRole__main {
	margin: 280px 0 120px;
}
.mypage .ec-layoutRole__main {
	margin: 280px 0 120px;
}
.cart_page .ec-layoutRole__main {
	margin: 280px 0 120px;
}
.registration_page .ec-layoutRole__main {
	margin: 280px 0 120px;
}
.page_contents {
	margin-top: 0px;
	margin-bottom: 60px;
}
.ec-searchnavRole {
	max-width: 1140px;
	padding: 0;
}
.ec-pageHeader h1 {
    margin: 50px 0px 50px;
	border: 0px;
	padding: 0;
}
.ec-contactRole p {
    margin: 0 0 20px;
}


/* 商品一覧 */

.product_page .ec-layoutRole__main {
	margin: 280px 0 90px;
}

.ec-searchnavRole {
	max-width: 1140px;
	padding: 0;
}
.product_page .ec-shelfRole {
    margin-bottom: 0px;
    margin-top: 0px;
	padding: 0;
}
.ec-searchnavRole .ec-searchnavRole__infos {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1140px;
	margin-bottom: 25px;
}
.ec-searchnavRole__actions {
	display: none;
}
.ec-topicpath {
    padding: 0 0 10px;
    border: 0;
    font-size: 16px;
}
.price02-default {
	margin-bottom: 10px;
}

.other .price02-default {
	display: none;
}
.other form {
	display: none;
}
.other .ec-productRole__btn {
	display: none;
}
.ec-shelfGrid__item.other 
{
	flex-direction: row;
	gap: 50px;
	width: 100%;
	padding-bottom: 30px!important;
	border-bottom: 1px dotted #ccc;
}
.other .ec-shelfGrid__item-image {
	flex-shrink: 0;
	width: 30%;
}
.other .product-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
}


/* ボタン */

.ec-blockBtn--action {
    background-color: #B0121A;
    border-color: unset;
	font-size: 13px;
}
.ec-blockBtn--action:hover {
    opacity: 0.7;
	background-color: #B0121A;
    border-color: unset;
}
.ec-blockBtn--action:disabled {
    opacity: 0.7;
	background-color: #B0121A;
    border-color: unset;
}
.btn-check:focus + .ec-blockBtn--action, .ec-blockBtn--action:focus {
    background-color: #B0121A;
    border-color: unset;
    box-shadow: unset;
}
.btn-check:checked + .ec-blockBtn--action, .btn-check:active + .ec-blockBtn--action, .ec-blockBtn--action:active, .ec-blockBtn--action.active, .show > .ec-blockBtn--action.dropdown-toggle {
    background-color: #B0121A;
    border-color: unset;
}
.btn-check:checked + .ec-blockBtn--action:focus, .btn-check:active + .ec-blockBtn--action:focus, .ec-blockBtn--action:active:focus, .ec-blockBtn--action.active:focus, .show > .ec-blockBtn--action.dropdown-toggle:focus {
    box-shadow: unset;/* フォーカス */
    outline: unset;
}

.ec-input select, .ec-birth select, .ec-select select, .ec-halfInput select, .ec-numberInput select, .ec-zipInput select, .ec-telInput select {
    font-size: 13px;
}
.ec-input input, .ec-birth input, .ec-select input, .ec-halfInput input, .ec-numberInput input, .ec-zipInput input, .ec-telInput input {
    font-size: 13px;
}


.ec-blockBtn--cancel {
    font-size: 13px;
}
.btn-check:checked + .ec-blockBtn--cancel, .btn-check:active + .ec-blockBtn--cancel, .ec-blockBtn--cancel:active, .ec-blockBtn--cancel.active, .show > .ec-blockBtn--cancel.dropdown-toggle {
    color: #333;
    background-color: #fff;
    border-color: unset;
}
.btn-check:focus + .ec-blockBtn--cancel, .ec-blockBtn--cancel:focus {
    color: #333;
    background-color: #fff;
    border-color: unset;
    box-shadow: unset;
}

.ec-inlineBtn--cancel {
    font-size: 13px;
	color: #333;
    background-color: #fff;
    border-color: unset;
    box-shadow: unset;
	width: 130px;
}

.btn-check:checked + .ec-inlineBtn--cancel, .btn-check:active + .ec-inlineBtn--cancel, .ec-inlineBtn--cancel:active, .ec-inlineBtn--cancel.active, .show > .ec-inlineBtn--cancel.dropdown-toggle {
    background-color: #fff;
    border-color: unset;
    box-shadow: unset;
	color: #333;
}
.ec-inlineBtn--cancel:hover {
    background-color: #fff;
    border-color: unset;
    box-shadow: unset;
	color: #333;
	opacity: 0.7;
}

.ec-inlineBtn--action {
    font-size: 13px;
	color: #fff;
    border-color: unset;
	width: 130px;
	background-color: #B0121A;
}
.btn-check:checked + .ec-inlineBtn--action, .btn-check:active + .ec-inlineBtn--action, .ec-inlineBtn--action:active, .ec-inlineBtn--action.active, .show > .ec-inlineBtn--action.dropdown-toggle {
    border-color: unset;
    box-shadow: unset;
}
.btn-check:focus + .ec-inlineBtn--action, .ec-inlineBtn--action:focus {
    color: #fff;
    background-color: #B0121A;
    border-color: #B0121A;
    box-shadow: unset;
}
.btn-check:checked + .ec-inlineBtn--action:focus, .btn-check:active + .ec-inlineBtn--action:focus, .ec-inlineBtn--action:active:focus, .ec-inlineBtn--action.active:focus, .show > .ec-inlineBtn--action.dropdown-toggle:focus {
    box-shadow: unset;/* フォーカス */
    outline: unset;
}
.ec-guest .ec-guest__actions a {
    color: #000;
}
.ec-totalBox .ec-totalBox__btn a {
    color: #000;
}
.ec-blockBtn {
    font-size: 13px;
}


/* 商品詳細 */

.ec-blockBtn--cancel {
    background-color: unset;
    border: 1px solid #333;
	color: #333;
}
.ec-blockBtn--cancel:hover {
    background-color: unset;
    border: 1px solid #333;
	color: #333;
	opacity: 0.7;
}
.ec-productRole__description {
	margin-top: 30px;
}
.ec-productRole {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1140px;
}
.ec-sliderItemRole {
	margin: 0;
    padding-left: 0px;
    padding-right: 30px;
    max-width: 1140px;
}
.ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 25px;
    padding-top: 20px;
	font-weight: bold;
}
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__btn {
	margin-bottom:0px;
}
.ec-price .ec-price__price {
    padding: 0 0.3em 0 0;
    font-size: 22px;
}
.ec-productRole .ec-productRole__price {
	border-bottom: 0px;
}
.ec-productRole .ec-productRole__tags {
    margin: 0px;
    padding: 0;
    padding-bottom: 0px;
    border-bottom: 0px dotted ;
}
.ec-productRole .ec-productRole__category {
    border-bottom: 0px;
}


/* お問合せ */

.ec-contactRole {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1140px;
}

.ec-input input, .ec-birth input, .ec-select input, .ec-halfInput input, .ec-numberInput input, .ec-zipInput input, .ec-telInput input {
    width: 92%;
}
.ec-input textarea {
	width: 92%;
}



.ec-off1Grid .ec-off1Grid__cell {
    margin-left: 0px;
}

/* 特定商 */

.ec-off1Grid .ec-off1Grid__cell {
    width: 100%;
}

.ec-borderedDefs {
    border-top: 0px dotted #ccc;
}

.ec-heading-bold {
	margin-top: 20px;
	margin-bottom: 20px;
}

.ec-borderedDefs dt {
	line-height: 2.5;
	padding: 25px 0;
    width: 23%;
	border-bottom: 1px solid #ccc;
}

.ec-borderedDefs dd {
    line-height: 2.5;
	width: 77%;
	margin: 0px;
	padding: 25px 0 25px 25px;
	border-bottom: 1px dotted #ccc;
}
.ec-borderedDefs dl {
    flex-wrap: nowrap;
    padding: 0px;
	border: 0px;
}
.ec-borderedDefs dl:first-child dt {
	padding: 5px 0 25px;
}
.ec-borderedDefs dl:first-child dd {
	padding: 5px 0 25px 25px;;
}
.ec-label {
    margin-bottom: 0px;
}


/* プライバシーポリシー */

.ec-privacy ol {
	padding: 0 0 0 1em;
}
.ec-privacy ol li ol {
	margin-top: 20px;
	margin-bottom: 20px;
}
.ec-privacy ol li ol li {
	margin-bottom: 20px;
	list-style: circle;
}
.ec-privacy ol li ol li span {
	margin-bottom: 10px;

}
.ec-off1Grid__cell {
	margin-bottom: 20px;
}
.pri-title {
	margin-bottom: 10px;
}

/* ご利用ガイド */

.ec-guide h2 {
    font-size: 22px;
    font-weight: bold;
	padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    margin: 0;
}
.ec-guide img {
    width: auto;
}
.ec-guide .ec-guidetitle {
	padding-top: 0px;
}
.ec-guide-in h3 {
	font-size: 16px;
	font-weight: bold;
}
.ec-guide-in h4 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 1em;
}
.ec-guide p {
	margin-top: 1em;
	line-height: 1.7; 
}
.ec-guide ol li {
	line-height: 1.7; 
}
.ec-notice {
	color: red;
}

.ec-registerRole {
    margin: 0;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1140px;
}
.pad {
	display: none;
}


@media (max-width: 1179px) {

.ec-headerSearch .ec-headerSearch__keyword {
    width: 180px;
}
.ec_concept {
	background-size: cover;
}
.ec-order ul {
    gap: 80px;
}
.ec-order ul li {
    width: 20%;
}
.ec-footertitle {
	margin-right: 15px;
}

.f-menu {
    width: 230px;
	margin-right: 15px;
}
.ec_menu nav ul li {
    margin-left: 30px;
}
.ec_concept_left {
	margin-right: 20px;
}
.ec_concept .ec-role h3 {
    font-size: 25px;
}
.ec_concept_right {
	width: 50%;
	flex-shrink: 0;
}
.ec-headerNav .ec-headerNav__item span {
	display: none;
}
.ec_concept_right p br {
	display: none;
}
.ec_menu nav ul li {
    margin-left: 25px;
    font-size: 14px;
}
.f-tel {
	flex-direction: column;
}
.f-add {
	flex-direction: column;
}
.pad {
	display: block;
}

}
@media (max-width: 1080px) {
	.mv-catch p:first-child {
		font-size: 100px;
		line-height: .8;
		margin-bottom: 30px;
	}
	.mv-catch p:last-child {
		font-size: 35px;
		line-height: 1;
	}
	
}
@media (max-width: 860px) {
	.ec-headerSearch .ec-headerSearch__keyword {
		margin-right: 10px;
	}
	
	.ec-newsRole .ec-role {
		gap: unset;
	}
	.ec-newsRole__news {
		margin-left: 50px;
	}
	.ec-works ul li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		padding: 10px 20px;
		border: 1px solid #000;
		color: #000;
	}
	.ec-order ul {
		gap: 30px;
	}
	.ec-order ul li {
		width: 25%;
	}
	.ec-order ul li::after {
		right: -30px;
		top: 50%;
	}
	.company-map-left {
		width: 40%;
	}
	.company-map-left img {
		width: 100%;
	}
	.company-map-right iframe {
		height: 300px;
	}
	#ec-category ul li > a {
		font-size: 13px;
	}
}
@media (max-width: 767px) {
.pc {
	display: none;
}
.pad {
	display: none;
}

.sp {
	display: block;
}
.ec-cartNavi {
    padding: 0;
	color: #fff;
}
.ec-headerNaviRole .ec-headerNaviRole__right {
    margin-right: 50px;
}
.ec-headerNav .ec-headerNav__itemIcon {
    margin-right: 0px;
}
.ec-headerNavSP {
	top: 20px;
    right: 10px;
    left: auto;
}
.ec-headerNaviRole .ec-headerNaviRole__left {
    width: 150px;
}
.header-tel {
	font-size: 13px;
    margin-top: 5px;
}
.ec-headerNaviRole {
    align-items: center;
}
.ec-headerSearch .ec-headerSearch__keyword {
	width: 100%;
	margin-left: 0;
}
	.header-tel a {
		color: #fff!important;
	}
	.f-tel a {
		color: #fff!important;
	}
	.ec-itemNav {
		display: none;
	}
	.ec-headerCategoryArea__heading {
		position: relative;
	}
	.ec-headerCategoryArea__heading::after {
		display: inline-block;
		width: 16px;
		height: 16px;
		content: "\f107";
		text-align: right;
		font-family: "Font Awesome 5 Free";
		font-size: 20px;
		font-weight: 900;
		color: #54687a;
		position: absolute;
		top: 40%;
        transform: translateY(-50%);
		right: 15px;
	}
	.ec-headerCategoryArea__heading.active::after {
		content: "\f106";
	}
	.ec-company dd a {
		color: #000;
	}
/* mv_wrap  */

.mv-wrap {
	height: 600px;
}

.mv-wrap .container {
	height: 600px;
}
.mv-catch p:first-child {
	font-size: 50px;
}
.mv-catch p:last-child {
	font-size: 20px;
	line-height: 1;
}
.swiper {
	width: 100%;
	height: 600px;
	margin: 0 calc(50% - 50vw);
}

.swiper-slide {
	width: 100%;
	height: 100%;
}
.swiper-slide img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}
	

/* draw */

.ec-drawerRole {
    top: 0;
    left: unset;
    right: 0;
}
.ec-drawerRole {
    transform: translateX(300px);
}
.ec-drawerRoleClose {
    left: unset;
    right: 270px;
}
.ec-drawerRole {
	background-color: #333;
}
.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item {
    background-color: #333;
}

/* main */
.ec-secHeading .ec-secHeading__line {
    margin: 0 10px 0 40px;
}
.ec-subtitle .ec-secHeading__en {
    font-size: 35px;
}

.ec-more a {
    width: 90%;
}

/* introduction */
	
.ec-introduction br {
    display: none;
}
.ec-introduction {
    padding: 80px 0;
}
	
/* news */

.ec-newsRole .ec-role {
    display: block;
}
.ec-newsRole .ec-newsRole__news {
    margin-left: 0;
}
.ec-newsRole {
    padding: 80px 0 0;
    background: #fff;
}
	
/* pickup */
.ec-pickup {
    padding: 80px 20px;
}
.ec-pickup .ec-shelfGrid .ec-shelfGrid__item {
    display: block;
	padding-left: 0;
}

	
/* works */
.ec-works {
    padding: 80px 0;
}
.ec-works ul li {
    width: 48.5%;
}
.works-txt p:last-child {
    font-size: 12px;
}

/* order */
.ec-order {
    padding: 80px 0;
}
.ec-order ul {
    flex-wrap: wrap;
}
.ec-order ul li {
    width: 42%;
    padding: 50px 0px;
}
/* banner */
.banner-area {
	flex-wrap: wrap;
}
.banner-img {
	width: 48.5%;
}	
	
/* company */

.ec-company {
    padding: 80px 0;
}
.ec-company dl {
    width: 100%;
}
.company-map {
	width: 100%;
	flex-direction: column;
	gap: 30px;
}
.company-map-left {
    width: 80%;
}
.company-map-right {
    width: 100%;
}
.ec-company dt {
    width: 100%;
    padding: 30px 0 0;
    border-bottom: unset;
}
.ec-company dd {
    width: 100%;
}

/* footer */

.ec-footerRole__inner {
    display: block;
}

	


.f-menu {
    width: 100%;
	margin-top: 0px;
}
.f-menu2 {
    width: 100%;
	margin-top: 30px;
}
.f-menuin {
	display: block;
}
.f-menuin ul {
    width: 100%;
	margin-bottom: 0px;
}
.f-menuin ul:first-child {
    width: 100%;
}
.f-menuin ul a {
    display: block;
}
.ec-footerRole__inner ul li {
	padding-bottom: 10px;
    border-bottom: 1px dotted #fff;
}
.ec-footerRole__inner ul li::before {
    content: "";
    margin-right: 0px;
}
.ec-footerTitle__copyright {
    margin-top: 30px;
}
.ec-footerTitle__copyright a {
    font-size: 12px;
}
.ec-footertitle {
	margin-top: 40px;
}

/* page */

.other_page .ec-layoutRole__main {
	margin: 180px 0 100px;
}
.mypage .ec-layoutRole__main {
	margin: 180px 0 100px;
}
.cart_page .ec-layoutRole__main {
	margin: 180px 0 100px;
}
.registration_page .ec-layoutRole__main {
	margin: 180px 0 100px;
}
/* カート */	
	
.ec-cartRole {
    padding: 0;
}
.ec-orderRole {
    padding: 0;
}

/* 商品一覧 */	

.product_page .ec-layoutRole__main {
    margin: 180px 0 70px;
}
.ec-shelfGrid__item.other {
    flex-direction: column;
	
}
.other .ec-shelfGrid__item-image {
    width: 100%;
}	
	
/* 商品詳細 */
.ec-sliderItemRole {
   	padding-right: 0;
}

/* contact */

.ec-contactRole p {
    margin: 16px 0 0;
}
.ec-contactRole .ec-para-normal {
    margin: 0 0 16px 0;
}
.ec-borderedDefs dl {
    display: block;
	padding: 0;
}
.ec-borderedDefs dt {
    width: 100%;
	border-bottom: 0px;
	padding: 10px 0 0 0;
}
.ec-borderedDefs dd {
    margin: 0;
	padding: 0 0 10px 0;
	width: 100%; 
}
.ec-borderedDefs dl:first-child dt {
	padding: 0;
}
.ec-borderedDefs dl:first-child dd {
	padding: 0 0 10px 0;
}

.ec-input input, .ec-birth input, .ec-select input, .ec-halfInput input, .ec-numberInput input, .ec-zipInput input, .ec-telInput input {
    width: 100%;
}
.ec-input textarea {
	width: 100%;
}




}

