/*
共通CSS
*/
html {
	scroll-behavior: smooth;
}
#body_bg{
	background-image: url("../images/back.png");
	background-repeat: no-repeat;
	background-position: 98% center;
	background-size: contain;
	position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media screen and (max-width: 900px) {
	#body_bg{
		background-image: url(../images/back_sp.png);
		background-size: contain;
		background-position: bottom right;
		position: fixed;
		height: 60%;
		z-index: -1;
		width: 100%;
		bottom: 0;
		right: 0;
	}
}

.loader,
.loader:before,
.loader:after {
  background: #9c86d8;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #9c86d8;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

body *{
	font-family: YuMincho,'Yu Mincho',serif;
	font-weight: 400;
	font-style: normal;
}
body {
	display: none;
}
ul,
ul li{
	list-style: none;
}

a:link,
a:visited,
a:active{
	color: #000;
	text-decoration: none;
	transition-duration: 0.5s;
	opacity: 1.0;
}
a:hover{
	text-decoration: none;
	transition-duration: 0.5s;
	opacity: 0.5;
	cursor: pointer;
}

.css_button_1:link,
.css_button_1:visited,
.css_button_1:active{
	display: inline-block;
	color: #FFF;
	background-color: #242427;
	padding: 12px 40px;
	text-decoration: none;
}
.css_button_1:hover{
	text-decoration: none;
	background-color: #454549;
}

.css_button_2:link,
.css_button_2:visited,
.css_button_2:active{
	display: inline-block;
	color: #FFF;
	background-color: #242427;
	padding: 12px 40px;
	text-decoration: none;
}
.css_button_2:hover{
	text-decoration: none;
	background-color: #FFF;
}

.css_button_3:link,
.css_button_3:visited,
.css_button_3:active{
	display: inline-block;
	color: #FFF;
	background-color: #242427;
	padding: 20px 50px;
	text-decoration: none;
}
.css_button_3:hover{
	text-decoration: none;
	background-color: #454549;
}

.word_part {
	display: inline-block;
}

/* ヘッダーブロック */
header{
	width: 100%;
	position: fixed;
	z-index: 100;
	background-color: #FFF;
	/* height: 85px; */
}
/* オンラインショップリンク */
.online_shop_link{
	display: flex;
    justify-content: center;
    align-items: center;
}
.online_shop_link a {
    background-color: #9C86D8;
    /* padding: 37px 30px 31px; */
    font-size: 14px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    height: 86px;
    /* display: flex; */
    /* align-items: center; */
    align-content: center;
    /* flex-wrap: wrap; */
    padding-inline: 30px;
}
.online_shop_link a .img-top {
	display: none;
	position: absolute;
}

.online_shop_link a span:first-child::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 15px;
    background-image: url(../images/cart_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 3px;
}

.online_shop_link a:hover{
	background-color: #242427;
	color: #fff;
	opacity: 1;
	transition-duration: 0s;
}

.online_shop_link a:hover span:first-child::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 15px;
	background-image: url(../images/onlineshop_icon_w.svg);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

.online_shop_link a:link,
.online_shop_link a:visited,
.online_shop_link a:active{
	transition-duration: 0s;
}
.online_shop_link a:hover .img-top {
	display: inline;
}
.online_shop_link a img{
	margin-right: 4px;
}
.online_shop_link div{
	font-size: 14px;
	letter-spacing: 0.05em;
}

/* PCのヘッダーブロック */
/* header #pc_header_wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 0 0 auto;
} */
header #pc_header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 100%; */
    margin: 0 0 0 3%;
    /* padding-left: 3%; */
	gap: 5%;
	height: 86px;
}
header #sp_header_wrapper{
	display: none;
}
header #pc_header_wrapper #pc_header_left{
	/* width: 100%; */
    /* margin-left: 5px; */
    text-align: right;
    /* max-width: 270px; */
}
header #pc_header_wrapper #pc_header_center {
    width: 100%;
    /* max-width: 856px; */
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px 25px;
    /* display: inline; */
    /* margin: 0 0 0 auto; */
	max-width: max-content;
}
header #pc_header_wrapper #pc_header_center li{
	/* margin: 0 9px; */
	color: #777;
}
header #pc_header_wrapper #pc_header_center li a{
	font-family: YuMincho,'Yu Mincho',serif;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}
header #sp_header_wrapper #sp_header_right img{
	cursor: pointer;
}

.pc_header_menu_wrapper {
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#sp_header_menu_wrapper{
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	position: fixed;
	background-color: #FFF;
	width: 100%;
	height: 80%;
	max-height: 500px;
	min-height: 250px;
	z-index: 99;
	margin-top: -700px;
}
#sp_header_menu_wrapper #sp_header_menu{
	display: flex;
	width: 84%;
	height: 80%;
	max-height: 500px;
	margin-left: 16%;
	margin-top: 30px;
	flex-flow: column;
	justify-content: space-around;
}
#sp_header_menu_wrapper #sp_header_menu li{
	margin: 5px 0;
}
#sp_header_menu_wrapper #sp_header_menu li#sp_menu_other_link{
	display: flex;
}
#sp_header_menu_wrapper #sp_header_menu li#sp_menu_other_link a{
	display: block;
	margin-right: 10px;
}

#sp_header_menu_bg{
	position: fixed;
	display: none;
	background-color: #777;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	z-index: 98;
}
#sp_header_menu_wrapper #sp_header_online_link{
	display: flex;
	justify-content: center;
	align-items: end;
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}


/* @media(max-width: 1293px) {
	header #pc_header_wrapper{
		display: none;
	}
	header #sp_header_wrapper{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0px 25px;
		padding: 9px 0
	}
} */


@media(max-width: 1293px) {

	.online_shop_link a {
		white-space: normal;
	}

	.online_shop_link a .word_part {
		white-space: nowrap;
	}

	header #pc_header_wrapper {
		margin: 0 0 0 15px;
	}

	/* header #pc_header_wrapper #pc_header_center {
		gap: 8px 15px;
	} */

	header #pc_header_wrapper #pc_header_center {
		gap: 10px 20px;
	}

	header #pc_header_wrapper #pc_header_left a img {
		max-width: 170px;
	}

}

@media(max-width: 900px) {
	header #pc_header_wrapper{
		display: none;
	}
	header #sp_header_wrapper{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0px 25px;
		padding: 9px 0
	}
}


/* フッター */
footer{
	background-color: #242427;
}
footer *{
	color: #FFF;
}
footer #footer_wrapper{
	width: 90%;
	max-width: 900px;
	display: flex;
	padding: 40px 0;
	margin: 0 auto;
	justify-content: space-between;
}
footer #footer_wrapper #pc_footer_left{
	width: 100%;
    max-width: 575px;
}
footer #footer_wrapper #pc_footer_left #pc_footer_menu{
	display: flex;
	width: 100%;
	max-width: 580px;
	justify-content: space-around;
	margin-bottom: 25px;
}
footer #footer_wrapper #pc_footer_left #pc_footer_menu li{
	margin: 0 7px;
}
footer #footer_wrapper #pc_footer_left #pc_footer_menu li a{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #FFF;
}
footer #footer_wrapper #pc_footer_left #pc_footer_other_link{
	display: flex;
	margin-bottom: 100px;
}
footer #footer_wrapper #pc_footer_left #pc_footer_other_link li{
	margin: 0 10px;
}
footer #footer_wrapper #pc_footer_left #pc_footer_copyright{
	font-size: 12px;
}
footer #footer_wrapper #footer_right #sp_footer_copyright{
	display: none;
}
footer #footer_wrapper #footer_right{
	width: 100%;
    max-width: 224px;
}
footer #footer_wrapper #footer_right a#footer_online_link{
	border: 1px solid #FFF;
    padding: 22px 28px;
    position: relative;
    display: inline-block;
    color: #FFF;
	font-weight: 600;
}
footer #footer_wrapper #footer_right a#footer_online_link .img-top{
	display: none;
    position: absolute;
}
footer #footer_wrapper #footer_right a#footer_online_link:hover .img-top{
	display: inline;
}
footer #footer_wrapper #footer_right a#footer_online_link:hover{
	text-decoration: none;
    background-color: #FFF;
    opacity: 1;
	color: #242427;
	transition-duration: 0s;
}
footer #footer_wrapper #footer_right a#footer_online_link:link,
footer #footer_wrapper #footer_right a#footer_online_link:active,
footer #footer_wrapper #footer_right a#footer_online_link:visited{
	transition-duration: 0s;
}

footer #footer_wrapper a#footer_online_link div{
	margin: 0 5px;
}
footer #footer_wrapper #footer_right #sp_footer_other_link{
	display: none;
}
@media(max-width: 900px) {
	footer #footer_wrapper #pc_footer_left{
		display: none;
	}
	footer #footer_wrapper #footer_right{
		margin: 0 auto;
		width: 100%;
		max-width: 330px;
		text-align: center;
	}
	footer #footer_wrapper #footer_right #sp_footer_other_link{
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	footer #footer_wrapper #footer_right #sp_footer_other_link li{
		margin: 0 7px;
	}
	footer #footer_wrapper #footer_right a#footer_online_link{
		margin-bottom: 20px;
	}
	footer #footer_wrapper #footer_right #pc_footer_other_link li{
		margin: 0 10px;
	}
	footer #footer_wrapper #footer_right #sp_footer_copyright{
		font-size: 12px;
		font-weight: 100;
		display: block;
		text-align: center;
		color: #DDD;
	}
}


.pc_only{
	display: block;
}
.sp_only{
	display: none;
}
@media(max-width: 700px) {
	.pc_only{
		display: none;
	}
	.sp_only{
		display: block;
	}
}

#main_contents{
	padding-top: 86px;
}
@media(min-width: 1280px) {
	#sp_header_menu_wrapper{
		display: none !important;
	}
	#sp_header_menu_bg{
		display: none !important;
	}
}
@media(max-width: 1293px) {
	#main_contents{
		padding-top: 65px;
	}
}

/* トップページ画像 */

/* PC用トップページ画像 */
#index #pc_top_image{
	position: relative;
	width: 100%;
	margin-bottom: 60px;
}
#index #pc_top_image img{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
}
@media (min-width: 1801px){
	#index #pc_top_image,
	#index #pc_top_image img{
		height: 560px;
	}
}
@media (max-width: 1800px){
	#index #pc_top_image,
	#index #pc_top_image img{
		height: 450px;
	}
}
@media (max-width: 1400px){
	#index #pc_top_image,
	#index #pc_top_image img{
		height: 370px;
	}
}
/* スマホ用トップページ画像 */
#index #sp_top_image{
	position: relative;
	display: none;
	width: 100%;
	height: calc(100vw * 1.354);
	margin-bottom: 60px;
}
#index #sp_top_image img{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: calc(100vw * 1.354);
	max-width: 700px;
}
@media(max-width: 700px) {
	#index #sp_top_image{
		display: block;
	}
	#index #pc_top_image{
		display: none;
	}
}





/* PCのトップページのコンセプト */
#index #pc_top_concept{
	margin: 60px auto 250px;
}
#index #pc_top_concept h2{
	text-align: center;
	font-size: 26px;
	letter-spacing: 0.2em;
	margin-bottom: 25px;
	font-weight: 600;
}
#index #pc_top_concept h3{
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.1em;
	margin-bottom: 90px;
}
#index #pc_top_concept #pc_top_concept_value{
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.1em;
	/* margin-bottom: 50px; */
	line-height: 2.5em;
}
/* スマホのトップページのコンセプト */
#index #sp_top_concept{
	display: none;
	margin: 40px auto 150px;
}
#index #sp_top_concept h2{
	text-align: center;
	font-size: 22px;
	line-height: 1.5em;
	letter-spacing: 0.2em;
	margin-bottom: 25px;
}
#index #sp_top_concept h4{
	text-align: center;
	font-size: 13px;
	color: #555;
	letter-spacing: 0.1em;
	font-weight: 100;
	margin-bottom: 50px;
}
#index #sp_top_concept h3{
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
	line-height: 2em;
}
#index #sp_top_concept #sp_top_concept_value{
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
}
@media(max-width: 700px) {
	#index #pc_top_concept{
		display: none;
	}
	#index #sp_top_concept{
		display: block;
	}
}


/* トップページのニュース */
#index #news_block{
	width: calc(100% - 20px);
	max-width: 900px;
	margin: 0 auto 260px;
}
#index #news_block h1{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
    margin: 0 0 60px;
}
/* #index #news_block #last_news{
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
} */
#index #news_block #last_news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
}
/* #index #news_block #last_news .last_news-li{
	width: calc(100% / 3 - 30px);
} */

#index #news_block #last_news .last_news-li {
    width: auto;
}

#index #news_block #last_news .last_news-li:first-child{
    margin: 0 0px 50px 0;
}
#index #news_block #last_news .last_news-li:last-child{
    margin: 0 0px 0px 0px;
}
/* #index #news_block #last_news #last_news_image{
	max-width: 266px;
	width: 100%;
    margin-right: 40px;
} */

#index #news_block #last_news #last_news_image {
    max-width: none;
    width: 100%;
    margin-right: 0;
}

#index #news_block .news_list{
	width: 100%;
	max-width: 900px;
	text-align: right;
}
#index #news_block .news_list a{
	margin: 40px 0 0;
    border-bottom: 1px solid #000;
    width: 100%;
    max-width: 110px;
}
#index #news_block .news_list a:hover{
	text-decoration: none;
    transition-duration: 0.5s;
    opacity: 0.5;
    cursor: pointer;
}
/* #index #news_block #last_news #last_news_image img{
	object-fit: cover;
	width: 100%;
	max-width: 266px;
    max-height: 177px;
} */
#index #news_block #last_news #last_news_image img {
    object-fit: cover;
    width: 100%;
    max-width: none;
    /* max-height: 177px; */
	aspect-ratio: 266 / 177;
}

#index #news_block #last_news #last_news_image img.no_img {
    max-width: 175px;
	height: auto;
	aspect-ratio: 0;
}
#index #news_block #last_news #last_news_image.no_img_wrapper {
    aspect-ratio: 264 / 175;
    border: 1px solid gray;
    display: block;
    /* align-content: center; */
    /* text-align: center; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#index #news_block #last_news #last_news_content{
	margin: 20px auto 0;
}
#index #news_block #last_news #last_news_content #last_news_date{
	font-size: 14px;
	margin-bottom: 5px;
}
#index #news_block #last_news #last_news_content #last_news_title{
	font-size: 18px;
	line-height: 2em;
	min-height: 45px;
	font-weight: 600;
}
#index #news_block #last_news #last_news_content #last_news_value{
	font-size: 14px;
	line-height: 2em;
	margin-bottom: 5px;
}
#index #news_block #last_news #last_news_content #last_news_detail{
	text-align: right;
}
#index #news_block #last_news #last_news_content #last_news_detail{
	font-size: 14px;
	text-decoration: underline;
}
@media(max-width: 700px) {
	#index #news_block #last_news .last_news-li:first-child{
		margin: 0 0 30px;
	}
	#index #news_block #last_news .last_news-li{
		width: 100%;
		margin: 0 0px 30px;
	}
	#index #news_block .news_list{
		width: 90%;
	}
	#index #news_block{
		margin: 0 auto 150px;
	}
	#index #news_block h1{
		text-align: center;
	}
	#index #news_block #last_news{
		display: block;
	}
	#index #news_block #last_news #last_news_image{
		margin-right: initial;
		margin: 0 auto 30px;
	}
	#index #news_block #last_news #last_news_content{
		width: 100%;
		max-width: 266px;
		margin: 0 auto;
	}

	#index #news_block #last_news #last_news_image img.no_img {
		max-width: 220px;
	}
}


/* トップページの季節のバナーのエリア */
#index #season_block{
	width: 90%;
    max-width: 900px;
    margin: 0 auto 260px;
}
#index #season_block ul{
	width: calc(100% - 10px);
	max-width: 900px;
	margin: 0 auto;
}
#index #season_block ul li{
	margin-bottom: 30px;
}
#index #season_block ul li a{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #242427;
}
#index #season_block ul li a:hover{
	opacity: 1;
    background-color: #9C86D8;
}
#index #season_block ul li a img{
	width: 100%;
}
#index #season_block ul li a .product_left{
	width: 100%;
    max-width: 580px;
}
#index #season_block ul li a .product_right{
	width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#index #season_block ul li a .product_right h2{
	margin-bottom: 20px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}
#index #season_block ul li a .product_right p{
	color: #fff;
    font-size: 12px;
    font-weight: 600;
}




/* トップページの神戸 六也 */
#index #mutunari_block{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto 200px;
	display: flex;
	justify-content: center;
}
#index #mutunari_block #pc_mutunari_text{
	display: block;
}
#index #mutunari_block #sp_mutunari_text{
	display: none;
}
#index #mutunari_block .mutunari_text{
	width: calc(40% - 122px);
    min-width: 415px;
    margin-left: 5px;
    margin-right: 50px;
}
#index #mutunari_block .mutunari_text h1{
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0.5em;
}
#index #mutunari_block .mutunari_text h2{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 1em;
}
#index #mutunari_block .mutunari_text h5{
	font-size: 12px;
	margin-bottom: 3em;
}
#index #mutunari_block .mutunari_text .mutunari_title{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 1em;
	line-height: 24px;
}
#index #mutunari_block .mutunari_text .mutunari_value{
	font-size: 15px;
	line-height: 2em;
	margin-bottom: 2em;
	color: #555;
}
#index #mutunari_block #about_mutunari{
	margin-top: 50px;
	margin-bottom: 50px;
	width: 100%;
}
#index #mutunari_block #about_mutunari a{
	display: inline-block;
	text-decoration: none;
}
#index #mutunari_block #about_mutunari a:hover{
	opacity: 0.8;
}

#index #mutunari_block #mutunari_image{
	width: 47%;
	max-width: 580px;
	margin-right: 8%;
	position: relative;
}
#index #mutunari_block #mutunari_image img{
	width: 100%;
	position: relative;
	z-index: 92;
}
#index #mutunari_block #mutunari_image_bgcolor{
	position: absolute;
	top: 13%;
	left: 45%;
	width: 70%;
	height: calc(45vw * 0.7);
	max-height: 401px;
	background-color: #A08BDA;
	opacity: 0.8;
	z-index: 91;
}
@media(max-width: 900px) {
	#index #mutunari_block{
		display: block;
	}
	#index #mutunari_block .mutunari_text{
		width: 90%;
		min-width: initial;
		margin: 0 auto;
	}
	#index #mutunari_block #pc_mutunari_text{
		display: none;
	}
	#index #mutunari_block #sp_mutunari_text{
		display: block;
	}
	#index #mutunari_block #mutunari_image{
		width: 90%;
		margin-right: initial;
		margin: 0 auto 130px;
	}
	#index #mutunari_block #mutunari_image_bgcolor{
		width: 65%;
		left: 40%;
		height: calc(70.17vw * 0.9);
	}
	#index #mutunari_block #about_mutunari a img{
		width: 100%;
	}
}
@media(max-width: 700px) {
	#index #mutunari_block{
		margin-bottom: 150px;
	}
	#index #season_block {
		margin: 0 auto 150px;
	}
}

.shop_time .t-decoration{
	text-decoration: underline;
}

/* トップページの日本の母 */
#index #japan_mother_block{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto 150px;
	display: flex;
	justify-content: center;
}
#index #japan_mother_block #japan_mother_text{
	width: calc(40% - 70px);
	min-width: 415px;
	margin-left: 40px;
}
#index #japan_mother_block #japan_mother_text h1{
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0.5em;
}
#index #japan_mother_block #japan_mother_text h2{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 1em;
}
#index #japan_mother_block #japan_mother_text h5{
	font-size: 12px;
	margin-bottom: 3em;
}
#index #japan_mother_block #japan_mother_text .japan_mother_title{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 1em;
}
#index #japan_mother_block #japan_mother_text .japan_mother_value{
	font-size: 15px;
	line-height: 2em;
	margin-bottom: 2em;
	color: #555;
}
#index #japan_mother_block #japan_mother_text .japan_button a{
	display: inline-block;
}
#index #japan_mother_block #japan_mother_image{
	width: 46.5%;
	max-width: 580px;
	margin-left: 7.5%;
	margin-right: 20px;
	position: relative;
}
#index #japan_mother_block #japan_mother_image img{
	width: 100%;
	position: relative;
	z-index: 92;
}
#index #japan_mother_block #japan_mother_image_bgcolor{
	position: absolute;
	top: 15%;
	left: -15%;
	width: 45%;
	height: calc(45vw * 0.7);
	max-height: 401px;
	background-color: #C680B7;
	opacity: 0.8;
	z-index: 91;
}
#index #japan_mother_block #pc_japan_mother_online_link{
	display: inline;
}
#index #japan_mother_block #sp_japan_mother_online_link{
	display: none;
}
@media(max-width: 900px) {
	#index #japan_mother_block{
		display: block;
	}
	#index #japan_mother_block #japan_mother_image{
		width: 90%;
		margin-right: initial;
		margin: 0 auto 130px;
	}
	#index #japan_mother_block #japan_mother_image_bgcolor{
		top: 13%;
		width: 65%;
		height: calc(70.17vw * 0.9);
	}
	#index #japan_mother_block #japan_mother_text{
		width: 90%;
		min-width: initial;
		margin: 0 auto;
	}
	#index #japan_mother_block #pc_japan_mother_online_link{
		display: none;
	}
	#index #japan_mother_block #sp_japan_mother_online_link{
		display: inline;
	}
}
@media(max-width: 700px) {
	#index #japan_mother_block{
		margin-bottom: 150px;
	}
}
/* トップページのPRODUCTのエリア */
#index #product_block{
	padding: 100px 0 0;
	margin-bottom: 250px;
}
#index #product_block h2{
	text-align: center;
    margin-bottom: 65px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
}
#index #product_block ul{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}
#index #product_block ul li{
	margin-bottom: 30px;
}
#index #product_block ul li a{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	background-color: #242427;
	
}
#index #product_block ul li a .product_left{
	width: 100%;
    max-width: 580px;
}
#index #product_block ul li a .product_right{
	width: 100%;
	max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#index #product_block ul li a .product_right h2{
	margin-bottom: 20px;
	color: #fff;
	font-size: 19px;
    font-weight: 600;
}
#index #product_block ul li a .product_right p{
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
#index #product_block ul li img{
	width: 100%;
	max-width: 580px;
}
#index #product_block ul li a:hover{
	opacity: 1;
    background-color: #9C86D8;
}
@media(max-width: 700px) {
	#index #product_block{
		margin-bottom: 150px;
	}
	#index #season_block ul li a,
	#index #product_block ul li a{
		flex-direction: column;
	}
	#index #season_block ul li img,
	#index #season_block ul li a .product_left,
	#index #product_block ul li img,
	#index #product_block ul li a .product_left {
		width: 100%;
		max-width: 700px;
	}
	#index #season_block ul li a .product_right,
	#index #product_block ul li a .product_right {
		width: 100%;
		margin: 20px auto 0;
	}
	#index #season_block ul li a .product_right p,
	#index #product_block ul li a .product_right p{
		margin: 0 0 20px;
	}
}




/* トップページの店舗一覧のエリア */
#index #shop_list_block{
	margin-bottom: 250px;
}
#index #shop_list_block h2{
	text-align: center;
    margin-bottom: 65px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
}
#index #shop_list_block ul.pc_shop_list,
#index #shop_list_block ul.sp_shop_list{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
#index #shop_list_block ul.pc_shop_list li,
#index #shop_list_block ul.sp_shop_list li{
	width: 50%;
	max-width: 213px;
	margin: 0 12px;
	text-align: center;
}
#index #shop_list_block ul.pc_shop_list li .shop_image,
#index #shop_list_block ul.sp_shop_list li .shop_image{
	display: block;
	background-color: #FFF;
	margin-bottom: 20px;
}
#index #shop_list_block ul.pc_shop_list li .shop_image img,
#index #shop_list_block ul.sp_shop_list li .shop_image img{
	width: 100%;
	max-width: 900px;
}
#index #shop_list_block ul.pc_shop_list li a.shop_image:hover
#index #shop_list_block ul.sp_shop_list li a.shop_image:hover{
	opacity: 0.8;
}
#index #shop_list_block ul.pc_shop_list li .shop_name,
#index #shop_list_block ul.sp_shop_list li .shop_name{
	display: inline-block;
	margin: 0 auto;
	line-height: 24px;
    font-size: 14px;
    font-weight: 600;
}
#index #shop_list_block ul.sp_shop_list{
	display: none;
}
@media(max-width: 700px) {
	#index #shop_list_block{
		margin-bottom: 150px;
	}
	#index #shop_list_block ul.pc_shop_list{
		display: none;
	}
	#index #shop_list_block ul.sp_shop_list{
		display: block;
	}
}


/* トップページのその他のエリア(現状オンラインショップのみ) */
#index #other_block{
	width: 90%;
	margin: 0 auto 250px;
}
#index #other_block ul{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}
#index #other_block ul li{
	margin: 0 0 20px;
}
#index #other_block ul li .onshop_left{
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	max-width: 320px;
}
#index #other_block ul li .onshop_left h2{
	margin-bottom: 10px;
    color: #fff;
	font-size: 30px;
    font-weight: 400;
	letter-spacing: 0.1em;
    font-family: 'EB Garamond', serif;
	text-align: center;
}
#index #other_block ul li .onshop_left .oochumon_h2{
	margin-bottom: 10px;
    color: #fff;
	font-size: 25px;
    font-weight: 600;
	letter-spacing: 0.065em;
	font-family: YuMincho,'Yu Mincho',serif;
	text-align: left;
    margin-left: 40px;
}
#index #other_block ul li .onshop_left p{
	color: #fff;
    font-size: 14px;
    font-weight: 600;
	margin-left: 44px;
}
#index #other_block ul li .onshop_right{
	width: 100%;
    max-width: 580px;
}
#index #other_block ul li a{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #242427;
}
#index #other_block ul li img{
	width: 100%;
	max-width: 580px;
}
#index #other_block ul li a:hover{
	opacity: 1;
    background-color: #9C86D8;
}
#index #sp_other_banner{
	display: none;
}
.insta-gallery-feed.insta-gallery-square .insta-gallery-list .insta-gallery-item {
    padding: 20px !important;
}
/* ooguchi */

#ooguchi {
    padding-inline: 5%;
	box-sizing: border-box;
	overflow: hidden;
}

#ooguchi_static_page{
	width: 100%;
	margin: 0 auto;
}
.ooguchi_all{
	width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.ooguchi_all h2{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
	margin: 90px auto 56px;
}
.ooguchi_all .head_p{
	font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    margin: 0 auto 60px;
}
.ooguchi_all .ooguchi-head-image{
	position: relative;
	width: 100%;
    /* margin: 0 auto 120px; */
	margin: 0 auto 233px;
}
.ooguchi_all .ooguchi-head-image img{
	width: 100%;
}

.ooguchi_all .ooguchi-head-image #rich_field_image_bgcolor{
	position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 515px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: -1;
    transform: translate(15%, 16%);
	transform: translate(65px, 65px);
}

/* .ooguchi_all .ooguchi_event{
	width: 100%;
    display: flex;
    margin: 0 auto 150px;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
} */

.ooguchi_all .ooguchi_event {
    width: 100%;
    display: flex;
    margin: 0 auto 175px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px 70px;
}

.ooguchi_all .ooguchi_event #ooguchi_event-img{
	position: relative;
}
.ooguchi_all .ooguchi_event #ooguchi_event-img img{
	width: 100%;
}
.ooguchi_all .ooguchi_event #ooguchi_event-img #ooguchi_img_bgcolor{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: -1;
    /* transform: translate(-10%, 12%); */
	transform: translate(-65px, 65px);
    max-width: 479px;
}
.ooguchi_all .ooguchi_event #ooguchi_event-img #ooguchi_img_bgcolor img{
	width: 100%;
}
.ooguchi_all .ooguchi_event .event-text{
	width: 100%;
	max-width: 378px;
}
.ooguchi_all .ooguchi_event .event-text h3 {
	font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 auto 45px;
}
.ooguchi_all .ooguchi_event .event-text p{
	font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
.ooguchi_all .ooguchi-text h3{
	font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 auto 50px;
    text-align: center;
}
.ooguchi_all .ooguchi-text p{
	font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 470px;
}
.ooguchi_all .ooguchi_order-img{
	width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
	margin: 0 auto 162px;
}
.ooguchi_all .ooguchi_order-img img{
	width: calc(100%/3 - 10px);
}
.ooguchi_all .order-step .order-detail{
	width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto 150px;
}
.ooguchi_all .order-step .order-detail>li{
	width: 100%;
    border-bottom: 1px solid #000;
    margin: 0 auto 30px;
}
.ooguchi_all .order-step .order-detail>li ul{
	margin: 0 auto 10px;
}
.ooguchi_all .order-step .order-detail>li ul li:first-child{
	margin: 0 0 20px;
}
.ooguchi_all .order-step .order-detail>li ul li:last-child{
	margin: 0 0 30px;
}
.ooguchi_all .order-step .order-detail>li ul li:last-child p{
	font-size: 13px;
	line-height: 24px;
}
.ooguchi_all .order-step .order-detail>li ul li:first-child h3{
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}
.ooguchi_all .order-step .order-detail>li ul li:first-child h3 span{
	color: #FFF;
    font-weight: 100;
    background-color: #333;
    border: 1px solid #333;
    text-align: center;
    display: inline-block;
    font-size: 19px;
    padding: 6px 0px;
    margin: 0 10px 0 0;
    line-height: 36px;
    width: 100%;
    max-width: 50px;
}

.example {
    padding-bottom: 78px;
}

.ooguchi_example-img {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 45px;
}

.ooguchi_example-img img {
    max-width: 100%;
	width: 100%;
    aspect-ratio: 218 / 188;
    object-fit: cover;
}

.example-txt {
	font-size: 14px;
	text-align: center;
	line-height: 1.6
}

.order-step-txt {
    font-size: 16px;
    text-align: center;
    line-height: 1.95;
    padding-bottom: 50px;
}

.order-step {
    padding-bottom: 40px;
}

.ooguchi_all .introduction h2 {
	margin-bottom: 0;
}

.introduction .ooguchi_list_block {
	margin: 65px auto 150px;
}

.introduction .ooguchi_list_block li {
	margin: 0;
}

.introduction .ooguchi_list_block {
    gap: 0 75px;
    margin-bottom: 118px;
}

.ooguchi_all .text-phone{
	font-size: 18px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
    margin: 0 auto 30px;
}
.ooguchi_all .contact_bt{
	width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}
.ooguchi_all .contact_bt a{
	display: inline-block;
    padding: 22px 0px;
    margin-bottom: 4px;
    background-color: #000;
    color: #FFF;
    font-size: 16px;
    font-family: YuMincho,'Yu Mincho',serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 26px;
    width: 100%;
    max-width: 299px;
}
.ooguchi_all #contact_page h2 {
    text-align: left;
	margin-bottom: 135px;
}
/* .ooguchi_all #contact_page .wpcf7 form > div > div.contact_value > .wpcf7-submit{
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
} */

/* reCAPTCHA */
.recaptcha-wrapper {
	display: block;
	text-align: center;
	padding-bottom: 30px;
}
  
p.recaptcha {
	font-size: 11px;
	line-height: 1.8;
	text-align: left;
	display: inline-block;
}

a.recaptcha-link {
	text-decoration: underline;
}

.grecaptcha-badge {
	visibility: hidden;
}

.ooguchi_footer{
	width: 100%;
    background-color: rgb(156 134 216 / 20%);
    margin: 0 auto 200px;
    text-align: center;
    padding: 55px 0 33px;
}
.ooguchi_footer h3{
	font-size: 18px;
    line-height: 62px;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.ooguchi_footer .footer_phone{
	font-family: 'EB Garamond', serif;
	font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.15em;
    font-weight: 500;
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 10px;
}

.ooguchi_footer .tanto {
	font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.1em;
    margin: 20px 0 10px;
}

.ooguchi_footer p {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-bottom: 35px;
}

#contact_form .wpcf7 {
	margin-bottom: 46px;
}

#contact_form input.wpcf7-form-control.wpcf7-submit.has-spinner {
    max-width: 250px;
    height: 42px;
    letter-spacing: 15px;
    text-indent: 15px;
    font-size: 12px;
}

@media(max-width: 700px) {
	
	.ooguchi_all .ooguchi_order-img{
		margin: 0 auto 100px;
	}
	.ooguchi_all .ooguchi_event .event-text h3{
		text-align: center;
	}
	.ooguchi_all .ooguchi_event .event-text p{
		margin: 0 auto 30px;
	}
	.ooguchi_all .ooguchi_event {
		flex-direction: column-reverse;
		margin: 0 auto 135px;
	}
	.ooguchi_all h2 {
		letter-spacing: 0em;
		margin: 60px auto 40px;
		line-height: 45px;
		text-align: left;
	}
	#ooguchi{
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.ooguchi_all .ooguchi_event #ooguchi_event-img,
	.ooguchi_all .ooguchi-head-image{
		max-width: 290px;
	}

	.ooguchi_all .ooguchi-head-image {
		margin-bottom: 110px;
	}
	
	.ooguchi_all .ooguchi_event #ooguchi_event-img #ooguchi_img_bgcolor,
	.ooguchi_all .ooguchi-head-image #rich_field_image_bgcolor{
		max-width: 236px;
	}
	#index #other_block{
		margin-bottom: 150px;
	}
	#index #other_block ul li .onshop_right {
		width: 100%;
		max-width: 700px;
	}
	#index #other_block ul li img {
		width: 100%;
		max-width: 700px;
	}
	#index #other_block ul li a{
		position: relative;
	}
	#index #other_block ul li .onshop_left{
		position: absolute;
		margin: 0 0 0 20px;
	}
	#index #other_block ul li .onshop_left .oochumon_h2{
		margin-left: 0;
		color: #000;
	}
	#index #other_block ul li .onshop_left .oochumon_p{
		color: #000;
		line-height: 20px;
	}
	#index #other_block ul li .onshop_left h2{
		text-align: left;
	}
	#index #other_block ul li .onshop_left p{
		margin-left: 0;
	}
	.insta-gallery-feed.insta-gallery-square .insta-gallery-list .insta-gallery-item {
		padding: 12px !important;
	}

	.ooguchi_all .head_p {
		margin-bottom: 40px;
	}

	.example {
		padding-bottom: 15px;
	}

	.ooguchi_example-img {
		display: grid;
		max-width: 250px;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 45px;
		width: 100%;
		margin-inline: auto;
	}

	.introduction .ooguchi_list_block {
		margin: 30px auto 0px;
	}

	.ooguchi_all #contact_page h2 {
		margin-bottom: 50px;
		margin-top: 25px;
	}

	#contact_form .wpcf7 {
		margin-bottom: 10px;
	}

	.order-step {
		padding-bottom: 5px;
	}

	.ooguchi_footer {
		margin-bottom: 100px;
	}

}

/* AboutとColumnのエリア */
#index #about_column{
	width: 100%;
	margin-bottom: 250px;
	background-color: #242427;
	background-repeat: repeat;
	padding: 170px 0 120px;
}
#index #about_column ul{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
#index #about_column ul li{
	margin-bottom: 30px;
	background-color: #242427;
	width: 100%;
	max-width: 415px;
	margin: 0 10px;
}
#index #about_column ul li img{
	width: 100%;
	max-width: 415px;
}
#index #about_column ul li div{
	background: #242427;
	margin: 20px 0 50px;
}
#index #about_column ul li div h2{
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.2em;
	margin-bottom: 5px;
}
#index #about_column ul li div p{
	color: #fff;
	font-size: 13px;
	line-height: 24px;
}
#index #about_column ul li a:hover{
	opacity: 0.8;
}
@media(max-width: 700px) {
	#index #about_column {
		margin-bottom: 150px;
		background: #242427;
		border-left: none;
		padding: 80px 0 30px;
		width: 100%;
	}
	#index #about_column ul{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 90%;
	}
	
	
}


/* トップページのインスタグラム一覧のエリア */
#index #instagram_list_block{
	margin-bottom: 250px;
}
#index #instagram_list_block .instagram_gallery{
	width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
.insta-gallery-feed.loaded .insta-gallery-actions, .loaded.qligg-mfp-wrap .insta-gallery-actions {
    display: none;
}

#index #instagram_list_block .instagram-open{
	margin: 10px auto;
    text-align: center;
    width: 110px;
    border-bottom: 1px solid #000;
    padding: 0 0 5px;
}
#index #instagram_list_block .instagram-open a{
	font-family: 'EB Garamond', serif;
	font-size: 12px;
	letter-spacing: 0.05em;
	font-weight: 400;
	font-style: normal
}
#index #instagram_list_block h2{
	text-align: center;
	font-size: 24px;
	letter-spacing: 0.2em;
	margin-bottom: 65px;
	font-family: 'EB Garamond', serif;
}
#index #instagram_list_block ul{
	width: 90%;
    max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
#index #instagram_list_block ul li{
	width: 50%;
	max-width: 213px;
	margin: 0 12px;
	text-align: center;
}
#index #instagram_list_block ul li .shop_image{
	display: block;
	background-color: #FFF;
	margin-bottom: 20px;
}
#index #instagram_list_block ul li .shop_image img{
	width: 100%;
	max-width: 900px;
}
#index #instagram_list_block ul li a.shop_image:hover{
	opacity: 0.8;
}
#index #instagram_list_block ul li .shop_name{
	display: inline-block;
	margin: 0 auto;
}
@media(max-width: 700px) {
	#index #instagram_list_block{
		margin-bottom: 150px;
	}
}
@media(max-width: 600px) {
	#index #instagram_list_block ul{
		flex-wrap: wrap;
	}
	#index #instagram_list_block ul li{
		width: calc(50% - 24px);
	}
}



/* トップページのお問い合わせと採用の欄 */
#index #contact_recruit_block{
	display: flex;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto 200px;
}
/* 縦横比一定の正方形 */
/*
#index #contact_recruit_block .rect-wrap{
	width: 50%;
	max-width: 250px;
	margin: 0 35px;
}
*/
#index #contact_recruit_block .rect-wrap{
	width: 100%;
    max-width: 250px;
    margin: 0 35px;
}
#index #contact_recruit_block a.rect{
	display: flex;
    border: 1px solid #777;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.2em;
    height: 250px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
	font-weight: 600;
}
#index #contact_recruit_block a.rect:hover{
	text-decoration: none;
	background-color: #EEE;
}
@media(max-width: 600px) {
	#index #contact_recruit_block{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin: 125px 0;
	}
	#index #contact_recruit_block .rect-wrap{
		width: 100%;
		max-width: 500px;
		margin: 0 35px 20px;
	}
	#index #contact_recruit_block a.rect{
		padding-top: 12.5%;
		padding-bottom: 12.5%;
		height: unset;
	}

}




/**************************** お問い合わせ *********************************/
#contact{
	padding: 100px 0 !important;
}
#contact #shop_concept_inner #contact_link{
	text-align: center;
}

#contact_static_page #contact {
	width: calc(100% - 20px);
	max-width: 1000px;
	margin: 0 auto;
}
#contact_static_page #contact .contact_sp_only{
	display: none;
}
#contact_static_page #contact h1{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
    margin: 0 0 60px;
}
#contact_static_page #contact  .border{
	width: 100px;
	height: 10px;
	border-top: 1px solid #555;
	margin: 100px auto;
}
#contact_static_page #contact  .contact_page_explanation{
	font-size: 14px;
	margin-bottom: 60px;
	text-align: center;
	line-height: 2em;
}
#contact_static_page #contact  .contact_page_title{
	font-size: 20px;
	margin-bottom: 30px;
	text-align: center;
}
#contact_static_page #contact  #submit_button_block{
	width: 100%;
	text-align: center;
}
#contact_static_page #contact  .phone_contact_title{
	font-size: 20px;
	margin-bottom: 60px;
	text-align: center;
}
#contact_static_page #contact  .phone_contact_shop_list{
	margin-bottom: 100px;
}
#contact_static_page #contact  .phone_contact_shop_list li{
	margin-bottom: 50px;
}
#contact_static_page #contact  .phone_contact_shop_list li .shop_name{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}
#contact_static_page #contact  .phone_contact_shop_list li .shop_name div:nth-child(1){
	font-size: 16px;
}
#contact_static_page #contact  .phone_contact_shop_list li .shop_name div:nth-child(2){
	font-size: 36px;
}
#contact_static_page #contact  .phone_contact_shop_list li .time{
	text-align: center;
	font-size: 16px;
}


/* スマホ画面の時 */
@media screen and (max-width: 900px) {
	#contact_static_page #contact  #submit_button_block{
		margin-left: initial;
	}
	#contact_static_page #contact h1{
		margin-bottom: 40px;
		text-align: center;
	}
	#contact_static_page #contact  .contact_page_explanation{
		margin-bottom: 40px;
	}
	#contact_static_page #contact  .phone_contact_shop_list li .shop_name div:nth-child(1){
		font-size: 12px;
	}
	#contact_static_page #contact  .phone_contact_shop_list li .shop_name div:nth-child(2){
		font-size: 26px;
	}
	#contact_static_page #contact  .phone_contact_shop_list li .time{
		text-align: center;
		font-size: 12px;
	}
}

/* スマホ画面の時 */
@media screen and (max-width: 750px) {
	#contact{
		padding: 60px 0 50px !important;
	}
	#contact_static_page #contact .contact_sp_only{
		display: inline;
	}
}




/**************************** 店舗一覧 *********************************/
#shop_list{
	padding-top: 50px;
	padding-bottom: 200px;
}
#shop_list h1{
	width: calc(100% - 30px);
    max-width: 960px;
    color: #333;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
}
#shop_list ul#shop_list_ul{
	width: calc(100% - 30px);
	max-width: 1000px;
	margin: 0 auto;
}
#shop_list ul#shop_list_ul > li{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 150px;
}
#shop_list ul#shop_list_ul > li:first-child{
	padding-top: 75px;
}
#shop_list ul#shop_list_ul > li .shop_image{
	width: calc(60% - 20px);
	max-width: 500px;
	margin-right: 20px;
}
#shop_list ul#shop_list_ul > li .shop_image img{
	width: 100%;
}
#shop_list ul#shop_list_ul > li .shop_content{
	width: 40%;
	max-width: 500px;
}
#shop_list ul#shop_list_ul > li .shop_content .shop_name{
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 600;
}
#shop_list ul#shop_list_ul > li .shop_content .shop_address,
#shop_list ul#shop_list_ul > li .shop_content .shop_phone,
#shop_list ul#shop_list_ul > li .shop_content .shop_time{
	font-size: 14px;
	line-height: 2em;
	color: #111;
}
#shop_list ul#shop_list_ul > li .shop_content .shop_time{
	margin-bottom: 30px;
}
#shop_list ul#shop_list_ul > li .shop_content .shop_calendar{
	width: 100%;
	margin: 0 auto;
}
#shop_list ul#shop_list_ul > li .shop_map{
	width: 100%;
	margin-top: 60px;
    position: relative;
    padding-top: 400px;
    overflow: hidden;
}
#shop_list ul#shop_list_ul > li .shop_map iframe{
	position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: calc(100% + 150px + 150px);
    pointer-events: none;
}
#shop_list ul#shop_list_ul > li .shop_map-show{
	width: 100%;
	margin-top: 60px;
    position: unset;
    padding-top: 0;
    overflow: unset;
	height: 500px;
	overflow: hidden;
}
#shop_list ul#shop_list_ul > li .shop_map-show iframe{
	position: unset;
    top: unset;
    left: unset;
    width: 100%;
    height: 600px;
    pointer-events: unset;
	margin: -150px auto 0;
}
.gm-style .place-card-large{
	display: none !important;
}
.open_map{
	text-align: right;
    width: 100%;
    margin: 10px 0 0;
}
.open_map a{
	padding: 0 25px 5px 0px;
    border-bottom: 1px solid #000;
    font-size: 12px;
    font-family: YuMincho,'Yu Mincho',serif;
    font-weight: 400;
}
@media(max-width: 950px) {
	#shop_list h1{
		text-align: center;
	}
	#shop_list ul#shop_list_ul > li{
		display: block;
		padding-top: 75px;
	}
	#shop_list ul#shop_list_ul > li .shop_image{
		width: 100%;
		margin-right: initial;
		margin: 0 auto 20px;
	}
	#shop_list ul#shop_list_ul > li .shop_content{
		width: 100%;
		margin: 0 auto 20px;
	}
	#shop_list ul#shop_list_ul > li .shop_map{
		width: 100%;
		margin: 0 auto 20px;
	}
	#shop_list ul#shop_list_ul > li .shop_content .shop_name{
		text-align: center;
	}
	#shop_list {
		padding-top: 50px;
		padding-bottom: 75px;
	}
}



/**************************** ニュース詳細 *********************************/
#news_post_page #news{
	width: 100%;
	max-width: 1000px;
	margin: 50px auto 0;
	padding-bottom: 100px;
}
#news_post_page #news h1{
	width: calc(100% - 20px);
	font-size: 30px;
	letter-spacing: 0.2em;
	font-weight: 100;
	color: #333;
	margin: 0 auto 60px;
}
#news_post_page #news #news_detail{
	width: calc(100% - 20px);
	margin: 0 auto;
	display: flex;
}
#news_post_page #news #news_detail #news_left{
	width: calc(100% - 300px);
	margin-right: 100px;
}
#news_post_page #news #news_detail #news_left #news_date{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
#news_post_page #news #news_detail #news_left #news_date > div:nth-child(1){
	margin-right: 15px;
}
#news_post_page #news #news_detail #news_left #news_date > div:nth-child(2){
	font-size: 13px;
	border: 1px solid #333;
	padding: 3px;
}
#news_post_page #news #news_detail #news_left #news_title{
	font-size: 24px;
	margin-bottom: 40px;
}
#news_post_page #news #news_detail #news_left #news_image{
	width: 100%;
	margin-bottom: 40px;
}
#news_post_page #news #news_detail #news_left #news_image img{
	width: 100%;
}
#news_post_page #news #news_detail #news_left #news_body{
	font-size: 14px;
	color: #444;
	line-height: 2em;
	margin-bottom: 100px;
}
#news_post_page #news #news_detail #news_left #news_body p a{
	border-bottom: 1px solid #444;
}
#news_post_page #news #news_detail #news_left #news_body strong{
	font-weight: 700;
}
#news_post_page #news #news_detail #news_left #other_news_link{
	display: flex;
	justify-content: center;
}
#news_post_page #news #news_detail #news_left #other_news_link div{
	margin: 0 5px;
}
#news_post_page #news #news_detail #news_left #other_news_link div *{
	color: #555;
}
#news_post_page #news #news_detail #news_left #other_news_link div#news_list_link{
	padding: 0 40px;
	border-bottom: 1px solid #555;
	text-align: center;
}
@media(max-width: 860px) {

	#news_post_page #news #news_detail{
		width: 90%;
	}
	#news_post_page #news h1{
		text-align: center;
		margin: 0 auto 30px;
	}
	#news_post_page #news #news_detail{
		display: block;
	}
	#news_post_page #news #news_detail #news_left{
		width: 100%;
		max-width: 400px;
		margin: 0 auto 100px;
	}
	
}



/**************************** ニュースアーカイブ欄 *********************************/
#news_archive{
	width: 180px;
	margin: 0 10px;
}
#news_archive *{
	color: #555;
}
#news_archive #news_category_title{
	border-bottom: 1px solid #555;
	line-height: 1.8em;
	margin-bottom: 20px;
}
#news_archive #news_category_list{
	margin-bottom: 100px;
}
#news_archive #news_category_list li{
	font-size: 13px;
	margin-bottom: 20px;
}
#news_archive #news_year_month_title{
	border-bottom: 1px solid #555;
	line-height: 1.8em;
	margin-bottom: 20px;
}
#news_archive #news_year_month_list{
	margin-bottom: 100px;
}
#news_archive #news_year_month_list li{
	font-size: 13px;
	margin-bottom: 20px;
}
@media(max-width: 860px) {
	#news_archive{
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
}



/**************************** ニュース一覧 *********************************/

#news_archive_page #news{
	width: 90%;
	max-width: 1020px;
	margin: 50px auto 0;
	padding-bottom: 100px;
}
#news_archive_page #news h1{
	width: calc(100% - 20px);
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
    margin: 0 0 60px;
}
#news_archive_page #news #news_detail{
	display: flex;
	width: 100%;
	margin: 0 auto;
	gap: 80px;
}
#news_archive_page #news #news_detail #news_left{
	width: calc(100% - 200px);
}
#news_archive_page #news #news_detail #news_left #news_list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
/* #news_archive_page #news #news_detail #news_left #news_list li{
	display: flex;
	margin-bottom: 80px;
} */
#news_archive_page #news #news_detail #news_left #news_list li .news_image{
	/* width: 266px; */
	width: 100%;
	/* height: 177px; */
	/* margin-right: 40px; */
}
#news_archive_page #news #news_detail #news_left #news_list li .news_image img{
	/* width: 266px; */
	width: 100%;
	height: auto;
	aspect-ratio: 266 / 177;
	object-fit: cover;
}
#news_archive_page #news #news_detail #news_left #news_list li .news_content{
	/* width: calc(100% - 80px); */
	/* margin-right: 80px; */
}
#news_archive_page #news #news_detail #news_left #news_list li .news_content .news_date{
	font-size: 14px;
	color: #555;
	margin-top: 1em;
	margin-bottom: 1em;
}
#news_archive_page #news #news_detail #news_left #news_list li .news_content .news_title{
	font-size: 18px;
	color: #333;
	margin-bottom: 1em;
}
#news_archive_page #news #news_detail #news_left #news_list li .news_content .news_value{
	font-size: 14px;
	color: #555;
	margin-bottom: 1em;
	line-height: 1.7em;
}
#news_archive_page #news #news_detail #news_left #news_list li .news_content .news_detail{
	font-size: 14px;
	margin-bottom: 1em;
	line-height: 1.7em;
	text-align: right;
	text-decoration: underline;
}
#news_archive_page #news #news_detail #news_left #news_list li .news_content .news_detail a{
	color: #555;
	text-decoration: underline;
}

/* no img */
#news_archive_page #news #news_detail #news_left #news_list li .news_image img.no_img {
	max-width: 175px;
	height: auto;
	aspect-ratio: 0;
}

#news_archive_page #news #news_detail #news_left #news_list li .news_image.no_img_wrapper {
    aspect-ratio: 264 / 175;
    border: 1px solid gray;
    /* display: block; */
    /* align-content: center; */
    /* text-align: center; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ----------ニュース一覧----------- */
#news_archive_page #page_navi_block{
	margin-bottom: 40px;
}
#news_archive_page #page_navi_block #page_move_block{
	display: flex;
	justify-content: center;
}
#news_archive_page #page_navi_block #page_move_block span.page_number,
#news_archive_page #page_navi_block #page_move_block a.page_number{
	display: inline-block;
	width: 28px;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	padding: 10px 4px;
	margin: 0 5px;
}
#news_archive_page #page_navi_block #page_move_block span.page_dotted{
	margin: 5px 10px;
}
#news_archive_page #page_navi_block #page_move_block span.page_number{
	color: #FFF;
	font-weight: 100;
	background-color: #333;
	border: 1px solid #333;
}
#news_archive_page #page_navi_block #page_move_block a.page_number{
	font-weight: 100;
	border: 1px solid #333;
}
@media(max-width: 860px) {
	#news_archive_page #news h1{
		text-align: center;
		margin: 0 auto 30px;
	}
	#news_archive_page #news #news_detail{
		display: block;
	}
	#news_archive_page #news #news_detail #news_left{
		width: 100%;
	}
	#news_archive_page #news #news_detail #news_left #news_list{
		max-width: 400px;
		margin: 0 auto;
		grid-template-columns: 1fr;
	}
	#news_archive_page #news #news_detail #news_left #news_list li{
		display: block;
	}
	#news_archive_page #news #news_detail #news_left #news_list li .news_image{
		margin-right: initial;
		margin: 0 auto 20px;
	}
	#news_archive_page #news #news_detail #news_left #news_list li .news_content{
		width: 100%;
		max-width: 400px;
		margin-right: initial;
		margin: 0 auto 20px;
	}

	#news_archive_page #news #news_detail #news_left #news_list li .news_image img.no_img {
		max-width: 220px;
	}
}
/* chef page */
#chef{
	width: 100%;
	margin: 0 auto;
}
#chef div{
	margin: 90px auto 180px;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#chef div img{
	width: 100%;
}
#chef div h2{
	font-weight: 600;
    font-size: 47px;
    letter-spacing: 0.07em;
	margin: 0 0 20px;
}
#chef div h3{
	font-weight: 600;
    font-size: 24px;
    margin: 0 0 50px;
    letter-spacing: 0.3em;
}
#chef div p{
	font-weight: 400;
    font-size: 13px;
	line-height: 24px;
	text-align: left;
	width: 100%;
	max-width: 610px;
}
#chef div .chef_en{
	font-family: 'EB Garamond', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.02em;
    margin: 0 0 90px;
	text-align: center;
}
#chef div .chef_1{
	margin: 0 0 150px;
}
#chef div .chef_2,
#chef div .chef_3{
	margin: 150px 0 150px;
}
#chef div .chef_4{
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	/* margin: 150px 0 150px; */
	margin: 150px 0 50px;
}

#chef .mutsunari_btn_wrapper {
    margin: 0px auto 140px;
    max-width: 610px;
    align-items: flex-start;
}

@media screen and (max-width: 700px){
	#chef div p{
		width: 80%;
	}
	#chef div{
		margin: 60px auto 120px;
	}
	#chef div h2{
		margin: 0 0 15px;
	}
	#chef div h3{
		margin: 0 0 40px;
		max-width: 80%;
	}
	#chef div .chef_1{
		margin: 0 0 85px;
	}
	#chef div .chef_2,
	#chef div .chef_3{
		margin: 85px 0 85px;
	}
	#chef div .chef_4{
		/* margin: 85px 0 85px; */
		margin: 85px 0 40px;
	}
	#chef div .chef_en{
		margin: 0 0 60px;
	}

	#chef .mutsunari_btn_wrapper {
		margin: 0px auto 95px;
		max-width: 80%;
		align-items: center;
	}
}
/* rich field */
#rich_field{
	width: 100%;
    max-width: 1050px;
    margin: 90px auto 260px;
    display: flex;
    justify-content: center;
	align-items: center;
}
#rich_field #rich_field_image{
	width: 100%;
    max-width: 510px;
    position: relative;
}
#rich_field #rich_field_image img{
	width: 100%;
    position: relative;
    z-index: 92;
}
#rich_field #rich_field_image #rich_field_image_bgcolor{
	position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 440px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    transform: translate(16%, 16%);
}
#rich_field #rich_field_pc{
	width: 100%;
    max-width: 475px;
    margin: 0 20px 60px 0;
}
#rich_field #rich_field_pc h2{
	font-size: 24px;
    font-weight: 600;
	margin: 0 0 40px;
}
#rich_field #rich_field_pc h3{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
	margin: 0 0 90px;
}
#rich_field #rich_field_pc p{
	font-size: 13px;
    font-weight: 400;
	line-height: 24px;
}
#rich_field #rich_field_pc .rich_field_text{
	font-size: 17px;
    font-weight: 400;
	line-height: 36px;
	margin: 0 0 75px;
}
.full_img{
	width: 100%;
}
.full_img img{
	width: 100%;
}
.rich_field_chef{
	width: 100%;
    max-width: 1050px;
    margin: 200px auto 180px;
    display: flex;
    justify-content: center;
	align-items: flex-start;
}
.rich_field_chef #rich_field_box-chef{
	width: 47%;
    max-width: 450px;
    margin: 0 0px 0px 70px;
}
.rich_field_chef #rich_field_box-chef .chef_info{
	width: 100%;
}
.rich_field_chef #rich_field_box-chef .chef_info ul{
	display: flex;
}
.rich_field_chef #rich_field_box-chef .chef_info ul li:first-child{
	width: 100%;
	max-width: 92px;
}
.rich_field_chef #rich_field_box-chef .chef_info ul li{
	font-size: 13px;
	line-height: 24px;
}
.rich_field_chef #rich_field_box-chef p{
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
}
.rich_field_chef #rich_field_box-chef h2{
	font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.2em;
	margin: 15px 0 0px;
}
.rich_field_chef #rich_field_box-chef h3{
	font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid #000;
    padding: 0 0 10px 0px;
    margin: 55px 0 25px;
}
.rich_field_chef #rich_field_box-chef h2 span{
	font-family: 'EB Garamond', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2em;
	margin: 0 0 0 20px
}
.rich_field_chef #rich_field_image-chef{
	width: 47%;
    max-width: 383px;
    position: relative;
}
.rich_field_chef #rich_field_image-chef #image_bgcolor-chef{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 536px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    transform: translate(-25%, 12%);
    max-width: 282px;
}
.rich_field_chef #rich_field_image-chef img{
	width: 100%;
    position: relative;
    z-index: 92;
}
.rich_field-material{
	width: 90%;
    max-width: 900px;
    margin: 200px auto 180px;
}
.rich_field-material h3{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
}
.rich_field-material .rich_field-h4{
	font-weight: 600;
    font-size: 16px;
	margin: 35px 0 70px;
	line-height: 30px;
}
.rich_field-material ul{
	display: flex;
	margin: 0 0 80px;
}
.rich_field-material ul li:first-child{
	width: 100%;
    max-width: 543px;
    margin: 0 40px 0 0;
}
.rich_field-material ul li img{
	width: 100%;
}
.rich_field-material ul li h4{
	font-size: 18px;
    font-weight: 600;
	margin: 0 0 30px;
}
.rich_field-material ul li p{
	font-size: 13px;
    line-height: 24px;
}
#columns,
#contest{
	width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
#columns h2,
#contest h2{
	font-size: 24px;
    font-weight: 600;
	letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
    margin: 90px auto 0px;
}
#columns h3,
#contest h3{
	font-size: 16px;
    font-weight: 600;
    font-family: YuMincho,'Yu Mincho',serif;
    text-align: center;
    margin: 65px auto 90px;
	line-height: 30px;
}
#contest .award_list ul{
	display: flex;
    justify-content: flex-start;
    align-items: center;
	flex-wrap: wrap;
}
#columns .columns_list ul{
	display: flex;
    justify-content: flex-start;
	flex-wrap: wrap;
}
#columns .columns_list ul li div p,
#contest .award_list ul li div p{
	font-size: 14px;
    font-weight: 600;
    font-family: YuMincho,'Yu Mincho',serif;
	margin: 20px auto 80px;
	line-height: 26px;
}
#columns .columns_list ul li div p:hover{
    transition-duration: 0.5s;
    opacity: 0.5;
}
#columns .columns_list ul li{
	margin: 0 25px 0;
	width: 100%;
    max-width: 400px;
}
#contest .award_list ul li{
	margin: 0 25px 0;
}
#contest .chef_award{
	width: 90%;
    max-width: 760px;
    margin: 100px auto 180px;
}
#contest .chef_award ul{
	display: flex;
    justify-content: space-between;
}
#columns .columns_list ul li div a img,
#contest .chef_award ul li img{
	width: 100%;
}
#contest .chef_award p{
	text-align: center;
    margin: 25px 0 0;
    font-size: 14px;
    font-weight: 600;
    font-family: YuMincho,'Yu Mincho',serif;
    line-height: 30px;	
}
.product_list_block{
	width: 90%;
    max-width: 900px;
    margin: 150px auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.ooguchi_list_block {
    width: 100%;
    max-width: 900px;
    margin: 65px auto 150px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.ooguchi_list_block li,
.product_list_block li{
	width: calc(100%/3 - 40px);
    margin: 20px 20px;
}
.ooguchi_list_block li .ooguchi_title, .product_list_block li .product_title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0 50px;
    line-height: 22px;
}
.ooguchi_list_block li div img,
.product_list_block li div img{
	width: 100%;
}
#product_title .product-head-image{
	width: 100%;
}
#product_title .product-head-image img{
	width: 100%;
}
#product_title .product_head{
	width: 100%;
    max-width: 900px;
    margin: 90px auto 55px;
}
#product_title .product_head h2{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-align: left;
}
@media screen and (max-width: 1279px){
	.rich_field_chef{
		flex-direction: column;
		align-items: center;
		margin: 75px auto 120px;
	}
	.rich_field_chef #rich_field_image-chef{
		margin:  0 0 100px;
		width: 80%;
	}
	.rich_field_chef #rich_field_box-chef{
		margin: 0;
		width: 90%;
	}
	#rich_field{
		flex-direction: column;
	}
	#rich_field #rich_field_pc{
		width: 81%;
	}
	#rich_field #rich_field_image{
		width: 80%;
	}
	#rich_field #rich_field_pc h2 {
		margin: 0 0 20px;
	}
	#rich_field #rich_field_pc h3 {
		margin: 0px 0 60px;
	}
	#rich_field{
		margin: 60px auto 160px;	
	}
	#rich_field #rich_field_pc .rich_field_text {
		margin: 0 0 50px;
	}
}
@media screen and (max-width: 1000px){
	#columns .columns_list ul,
	#contest .award_list ul {
		justify-content: center;
	}
}
@media screen and (max-width: 900px){
	#contest .chef_award ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	#contest .chef_award ul li:first-child{
		margin: 0 0 20px;
	}
	#contest .chef_award {
		margin: 40px auto 120px;
	}
	#columns .columns_list ul li {
		margin: 0 0px 0;
	}
}
@media screen and (max-width: 700px){
	/* .ooguchi_all #contact_page .wpcf7 form > div > div.contact_value > .wpcf7-submit{
		top: unset;
		left: unset;
		transform: unset;
	} */
	.ooguchi_list_block{
		margin: 50px auto 100px;
	}
	.ooguchi_list_block li{
		width: calc(100%/2 - 20px);
		margin: 10px 10px;
	}
	.product_list_block li{
		width: calc(100%/2 - 20px);
		margin: 10px 10px;
	}
	#product_title .product_head {
		width: 90%;
		max-width: 900px;
		margin: 60px auto 45px;
	}
	#product_title .product_head h2 {
		font-size: 20px;
		text-align: center;
	}
	.product_list_block {
		margin: 60px auto;
	}
	.product_list_block li .product_title {
		font-size: 14px;
		margin: 15px 0 40px;
	}
	#columns h2,
	#contest h2 {
		font-size: 20px;
		text-align: center;
		margin: 60px auto 0px;
	}
	#columns h3,
	#contest h3 {
		margin: 40px auto 60px;
	}
	#rich_field #rich_field_image #rich_field_image_bgcolor {
		transform: translate(10%, 12%);
	}
	#rich_field #rich_field_pc {
		margin: 0 0px 60px 0;
	}
	.rich_field_chef #rich_field_image-chef {
		width: 60%;
	}
	.rich_field_chef #rich_field_image-chef #image_bgcolor-chef {
		transform: translate(-15%, 10%);
	}
	.rich_field_chef #rich_field_box-chef .chef_info ul li:first-child {
		max-width: 70px;
	}
	.rich_field-material {
		margin: 120px auto 120px;
	}
	.rich_field-material ul {
		flex-direction: column;
		margin: 0 0 65px;
	}
	.rich_field-material h3 {
		text-align: center;
	}
	.rich_field-material .rich_field-h4 {
		margin: 35px 0 60px;
	}
	.rich_field-material ul li p{
		margin: 0 0 30px;
	}
}
@media screen and (max-width: 400px){
	#rich_field #rich_field_image #rich_field_image_bgcolor {
		transform: translate(12%, 12%);
	}
	.rich_field_chef #rich_field_box-chef {
		width: 92%;
	}
	#rich_field #rich_field_pc h3 {
		font-size: 21px;
	}
	#rich_field #rich_field_pc h2 {
		margin: 0 15px 20px;
		text-align: center;
		line-height: 38px;
	}
	#rich_field #rich_field_pc p{
		text-align: center;
	}
	.rich_field_chef #rich_field_box-chef h2 {
		margin: 15px 0 0 50px;
	}
	.rich_field_chef #rich_field_box-chef h2 span{
		font-size: 12px;
	}
	.rich_field_chef #rich_field_box-chef .chef_ja{
		margin:  0 0 0 50px;
	}
	
}
/****************************************************************
                        商品紹介の詳細ページ
****************************************************************/
#product_post_page #main_contents{
	padding: initial !important;
}
#product_post_page #main_contents *{
	font-family: YuMincho, 'Yu Mincho', 'serif';
}
#ooguchi_detail,
#product_detail{
	display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    align-items: center;
}

#ooguchi_detail .product_mid,
#product_detail .product_mid{
	width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-around;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#ooguchi_detail .ooguchi_prev,
#product_detail .product_prev{
	width: 100%;
    max-width: 25px;
	position: absolute;
    top: 50%;
    left: 65px;
    transform: translate(0%, -50%);
}
#ooguchi_detail .ooguchi_next,
#product_detail .product_next{
	width: 100%;
    max-width: 25px;
    position: absolute;
    top: 50%;
    right: 65px;
    transform: translate(0%, -50%);
}
#ooguchi_detail #pdoduct_image,
#product_detail #pdoduct_image{
	width: 100%;
	max-width: 456px;
}
#ooguchi_detail #pdoduct_image #main_image,
#product_detail #pdoduct_image #main_image{
	width: 100%;
	margin: 0 0 3px;
}
#ooguchi_detail #pdoduct_image #main_image img,
#product_detail #pdoduct_image #main_image img{
	width: 100%;
	object-fit: cover;
}
#ooguchi_detail #pdoduct_image #ooguchi_ext_image_list,
#product_detail #pdoduct_image #product_ext_image_list{
	width: 100%;
	max-width: 456px;
	display: flex;
	justify-content: left;
	align-items: center;
}
#ooguchi_detail #pdoduct_image #ooguchi_ext_image_list img,
#product_detail #pdoduct_image #product_ext_image_list img{
	width: 100%;
	max-width: 148px;
	object-fit: cover;
	cursor: pointer;
}
#ooguchi_detail #product_info,
#product_detail #product_info{
	width: 100%;
	max-width: 380px;
	display: flex;
    flex-direction: column;
    justify-content: center;
	margin: 0 0 0 20px;
}
#product_detail #product_info #product_title{
	font-size: 20px;
	font-family: YuMincho, "Yu Mincho", "serif";
	font-weight: 600;
	border-bottom: 2px solid #B7B7B7;
    padding: 0 0 15px;
	line-height: 24px;
}
#product_detail #product_info #product_body{
	font-size: 13px;
	margin: 30px 0;
	line-height: 28px;
}
#product_detail #product_info #product_price{
	margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.5em;
    font-family: YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
#product_detail #product_info #product_ninacart_url{
	text-align: right;
}
#product_detail #product_info #product_ninacart_url .link_button{
	display: inline-block;
    padding: 14px 43px;
    margin-bottom: 4px;
    background-color: #000;
    color: #FFF;
	font-size: 12px;
    font-family: YuMincho,'Yu Mincho',serif;
    font-weight: 600;
    letter-spacing: 0.1em;
}
#product_title_en{
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #707070;
	padding-bottom: 5%;
	margin-bottom: 3%;
}

/*　スライダーテスト　*/
#product_detail .container{
  position:relative;
  margin:0 auto;
  height:40vw;
  display:flex;
  justify-content:center;
}

#product_detail .container .main-slider{
  position:relative;
  width:74vw;
  height:100%;
  overflow:hidden;
}

#product_detail .container .thumbnail-slider{
  position:relative;
  width:26vw;
  height:100%;
  line-height:0;
  overflow-y:auto; /* 垂直方向のスクロールを許可 */
}
 
#product_detail .container .thumbnail-slider .slide{
  position:relative;
  height:20%;  /* 5枚まで一度に表示 */
  overflow:hidden;
}
#modal_product_detail_block{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.product-box{
	position: relative;
}
.product-box #annie_swiper_prev{
	position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(0, -50%);
}
.product-box #annie_swiper_next{
	position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(0, -50%);
}
/**/
/* スマホ画面の時 */
@media screen and (max-width: 1000px) {
	#modal_staff_detail_block___modal_window_block,
	#modal_ooguchi_detail_block___modal_window_block,
	#modal_product_detail_block___modal_window_block{
		max-height: 94% !important;
		height: 100% !important;
		top: 3% !important;
	}
	#ooguchi_detail #product_info,
	#product_detail #product_info{
		max-width: 456px;
		margin: 0;
	}
	#product_detail #product_info #product_ninacart_url{
		text-align: center;
	}

	#modal_product_detail_block___modal_window_close_button{
		height: 70px !important;
		padding: 0 !important;
	}
	#ooguchi_detail,
	#product_detail{
		max-width: 456px;
		flex-direction: column;
		width: 70%;
		position: relative;
	}
	#ooguchi_detail .ooguchi_prev,
	#product_detail .product_prev{
		position: absolute;
		top: 50%;
		left: 0px;
		transform: translate(-30px, -50%);
	}
	#ooguchi_detail .ooguchi_next,
	#product_detail .product_next{
		position: absolute;
		top: 50%;
		right: 0px;
		transform: translate(35px, -50%);
	}
	#ooguchi_detail #pdoduct_image,
	#product_detail #pdoduct_image{
		margin: 0px auto 40px;
	}
	#product_detail #pdoduct_image #main_image img{
		width: 100%;
	}
	#product_detail #pdoduct_image #product_ext_image_list{
		max-width: 100%;
	}
	#product_detail #pdoduct_image #product_ext_image_list img{
		width: 100%;
	}
	#product_detail #product_info #product_title{
		font-size: 18px;
		font-weight: bold;
	}
	#product_detail #product_info #product_body{
		margin: 15px 0;
	}
	#product_detail #product_info #product_price{
		font-size: 16px;
		margin: 0 0 30px;
	}
	#modal_staff_detail_block___modal_window_close_button img,
	#modal_ooguchi_detail_block___modal_window_close_button img,
	#modal_product_detail_block___modal_window_close_button img{
		max-width: 50px !important;
	}
	#ooguchi_detail .product_mid,
	#product_detail .product_mid {
		flex-direction: column;
		position: unset;
		top: unset;
		left: unset;
		transform: unset;
	}
}
/* recruit page */
#recruit_block{
	width: 90%;
    max-width: 900px;
    margin: 90px auto 180px;
}
#recruit_block #recruit_block_large{
	width: 100%;
}
#recruit_block #recruit_block_large h2{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
    margin: 0 0 60px;
}
#recruit_block #recruit_block_large h3{
	font-size: 16px;
    font-weight: 600;
    font-family: YuMincho,'Yu Mincho',serif;
    text-align: center;
    margin: 0px auto 60px;
	line-height: 30px;
}
#recruit_block #recruit_block_large ul{
	display: flex;
    flex-direction: column;
}
#recruit_block #recruit_block_large ul{
	display: flex;
    flex-direction: column;
}
#recruit_block #recruit_block_large ul li{
	margin-bottom: 30px;
}
#recruit_block #recruit_block_large ul li a{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #242427;
}
#recruit_block #recruit_block_large ul li a .recruit_left{
	width: 100%;
	max-width: 580px;
}
#recruit_block #recruit_block_large ul li a .recruit_right{
	width: 100%;
	max-width: 320px;
}
#recruit_block #recruit_block_large ul li a .recruit_right p{
	color: #fff;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
	line-height: 30px;
}
#recruit_block #recruit_block_large ul li a .recruit_left img{
	width: 100%;
}
#recruit_block #recruit_block_large ul li a:hover{
	opacity: 1;
    background-color: #9C86D8;
}
@media screen and (max-width: 700px) {
	#recruit_block{
		margin: 60px auto 120px;
	}
	#recruit_block #recruit_block_large ul li a{
		flex-direction: column;
	}
	#recruit_block #recruit_block_large ul li a .recruit_left{
		max-width: unset;
	}
	#recruit_block #recruit_block_large ul li a .recruit_right{
		margin: 20px auto;
	}
	#recruit_block #recruit_block_large h2{
		text-align: center;
		margin: 0 0 45px;
	}
}
/* chef-message */
#chef-message{
	width: 100%;
}
#chef-message .chef-message_1,
#chef-message .chef-message_2{
	width: 100%;
    max-width: 1040px;
    margin: 100px auto 160px;
    display: flex;
    justify-content: flex-end;
}
#chef-message .chef-message_1 .pc_chef-message_text{
	width: 100%;
    max-width: 470px;
    margin-right: 50px;
}
#chef-message .chef-message_1 .chef-message_text3{
	max-width: 610px;
}
#chef-message .chef-message_1 .pc_chef-message_text h2{
	font-size: 24px;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 35px;
}
#chef-message .chef-message_1 .pc_chef-message_text .chef-message_value{
	font-size: 13px;
    line-height: 24px;
    color: #555;
    font-weight: 400;
    margin: 0 0 35px;
}
#chef-message .chef-message_1 .pc_chef-message_text .chef-message_title{
	font-size: 16px;
    font-weight: 600;
    line-height: 30px;
	margin: 0 0 30px;
}
#chef-message .chef-message_1 .chef-message_image{
	width: 100%;
    max-width: 537px;
    position: relative;
}
#chef-message .chef-message_1 .chef-message_image3{
	max-width: 382px;
}
#chef-message .chef-message_1 .chef-message_image .chef-message_image_bgcolor{
	position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    max-height: 444px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    max-width: 350px;
    transform: translate(85px, 80px);
}
#chef-message .chef-message_1 .chef-message_image3 .chef-message_image_bgcolor {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    max-height: 350px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    max-width: 350px;
    transform: translate(85px, 80px);
}
#chef-message .chef-message_1 .chef-message_image img{
	width: 100%;
    position: relative;
    z-index: 92;
}
#chef-message .chef-message_2{
	width: 100%;
    max-width: 1040px;
    margin: 100px auto 160px;
    display: flex;
    justify-content: flex-start;
}
#chef-message .chef-message_2 .chef-message_text{
	width: 100%;
    max-width: 600px;
	margin: 110px 0 0 50px;
}
#chef-message .chef-message_2 .chef-message_text4{
    max-width: 570px;
}
#chef-message .chef-message_2 .chef-message_text h2{
	font-size: 24px;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 35px;
}
#chef-message .chef-message_2 .chef-message_text .chef-message_title{
	font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 30px;
}
#chef-message .chef-message_2 .chef-message_text .chef-message_title4{
	margin: 0;
	text-align: right;
}
#chef-message .chef-message_2 .chef-message_text .chef-message_value{
	font-size: 13px;
    line-height: 24px;
    color: #555;
    font-weight: 400;
    margin: 0 0 35px;
}
#chef-message .chef-message_2 .chef-message_image{
	width: 100%;
    max-width: 392px;
    position: relative;
}
#chef-message .chef-message_2 .chef-message_image4{
	max-width: 414px;
}
#chef-message .chef-message_2 .chef-message_image .chef-message_image_bgcolor{
	position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    max-height: 335px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    max-width: 300px;
    transform: translate(-85px, 75px);
}
#chef-message .chef-message_2 .chef-message_image .chef-message-4{
	position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    max-height: 335px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    max-width: 300px;
    transform: translate(-85px, 65%);
}
#chef-message .chef-message_2 .chef-message_image4 .chef-message-4 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    max-height: 500px;
    background-color: #A08BDA;
    opacity: 0.8;
    z-index: 91;
    max-width: 300px;
    transform: translate(-85px, 80px);
}
#chef-message .chef-message_2 .chef-message_image img{
	width: 100%;
    position: relative;
    z-index: 92;
}
@media screen and (max-width: 1200px) {
	#chef-message {
		width: 90%;
		margin: 0 auto;
	}
	#chef-message .chef-message_1{
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 45px auto 160px;
	}
	#chef-message .chef-message_2{
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		flex-direction: column-reverse;
		margin: 0 auto 160px;
	}
	#chef-message .chef-message_1 .chef-message_image{
		max-width: 600px;
	}
	#chef-message .chef-message_1 .chef-message_image3 {
		max-width: 382px;
	}
	#chef-message .chef-message_1 .pc_chef-message_text {
		max-width: 600px;
		margin: 0 0 40px;
	}
	#chef-message .chef-message_2 .chef-message_text {
		margin: 0px 0 0 0px;
	}
	#chef-message .chef-message_2 .chef-message_text4 {
		margin: 0px 0 40px 0px;
	}
	#chef-message .chef-message_1 .pc_chef-message_text h2,
	#chef-message .chef-message_2 .chef-message_text h2{
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	#chef-message .chef-message_1 .chef-message_image,
	#chef-message .chef-message_2 .chef-message_image{
		width: 90%;
	}
	#chef-message .chef-message_2 .pc_chef-message_text ,
	#chef-message .chef-message_1 .pc_chef-message_text {
		width: 100%;
	}
	#chef-message .chef-message_1 .chef-message_image .chef-message_image_bgcolor {
		transform: translate(15px, 35px);
	}
	#chef-message .chef-message_2 .chef-message_image .chef-message_image_bgcolor {
		transform: translate(-15px, 35px);
	}
	#chef-message .chef-message_2 .chef-message_image .chef-message-4 {
		transform: translate(-15px, 35px);
		bottom: 0%;
		top: unset;
	}
	#chef-message .chef-message_1 .pc_chef-message_text .chef-message_title,
	#chef-message .chef-message_2 .chef-message_text .chef-message_title {
		font-size: 15px;
	}
}
#recruit_post{
	width: 100%;
    margin: 0 auto;
}
#recruit_post h2{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-family: YuMincho,'Yu Mincho',serif;
	margin: 60px auto 90px;
	width: 100%;
    max-width: 900px;
}
#recruit_post .recruit_post_list ul{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
	flex-wrap: wrap;
}
#recruit_post .recruit_post_list ul li{
	width: 100%;
	max-width: 410px;
	margin: 0 0 100px;
}
#recruit_post .recruit_post_list ul li .recruit_post_list-title{
	font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #ddd;
    padding: 0 0 10px;
    margin: 0 0 30px;
}
#recruit_post .recruit_post_list ul li .recruit_post_list-detail p{
	font-weight: 400;
    font-size: 13px;
	line-height: 24px;
}
#recruit_post .recruit_post_list ul li:nth-child(2n + 1){
	margin: 0 80px 100px 0;
}
#recruit_post_contact{
	text-align: center;
    margin: 40px auto 170px;
	background-color: rgb(156 134 216 / 30%);
    padding: 75px 0;
}
#recruit_post_contact #recruit_post_detail{
	font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
#recruit_post_contact #recruit_post_number{
	margin: 30px auto;
}
#recruit_post_contact #recruit_post_number .text{
	letter-spacing: 0.15em;
    font-weight: 500;
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-style: normal;
}
#recruit_post_contact #recruit_post_number .text img{
	width: 100%;
    max-width: 26px;
    margin: 0 5px 0 0;
}
#recruit_post_call_to{
	font-size: 14px;
    font-weight: 400;
}
.recruit_post_list{
	width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 900px;
}
.recruit_button {
    text-align: center;
    margin-bottom: 120px;
}

@media screen and (max-width: 1000px) {
	#recruit_post_contact {
		text-align: center;
		margin: 0px auto 120px;
		padding: 70px 0 60px;
		width: 100%;
		background-color: rgb(235 231 247 / 50%);
	}
	#recruit_post {
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.recruit_post_list{
		width: 90%;
		margin: 0 auto;
		max-width: 900px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#recruit_post .recruit_post_list ul{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		max-width: 900px;
		margin: 0 auto;
		justify-content: center;
	}
	#recruit_post .recruit_post_list ul li:nth-child(2n + 1) {
		margin: 0 0 80px;
	}
	#recruit_post .recruit_post_list ul li .recruit_post_list-title{
		text-align: center;
	}
	#recruit_post h2 {
		margin: 60px auto 50px;
		text-align: center;
	}
}
#staff{
	width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
#staff .staff_content .staff_top h2{
	margin: 90px 0 60px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
}
#staff .staff_content .staff_top h3{
	margin: 0px 0 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
#staff .staff_content .staff_top .staff_img_list{
	position: relative;
    width: 90%;
    max-width: 760px;
    margin: 0 auto 320px;
}
#staff .staff_content .staff_top .staff_img_list .staff-img01{
	position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
	width: 100%;
    max-width: 354px;
}
#staff .staff_content .staff_top .staff_img_list .staff-img02{
	transform: translate(0px, 80px);
	width: 100%;
    max-width: 448px;
}
#staff .staff_content .staff_top .staff_img_list .staff-img03{
	position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    transform: translate(0px, 110%);
	width: 100%;
    max-width: 545px;
}
#staff .staff_content .staff_category{
	margin: 0px 0 60px;
    font-size: 18px;
    font-weight: 600;
    padding: 180px 0 5px;
    border-bottom: 1px solid #000;
    color: #000;
}
#staff .staff_content .staff_list_block{
	display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
#staff .staff_content .staff_list_block li{
	width: calc(100% / 4 - 35px);
    margin: 0 46px 45px 0;
}
#staff .staff_content .staff_list_block li:nth-child(4n){
    margin: 0 0px 45px 0;
}
#staff .staff_content .staff_list_block li img{
	width: 100%;
}
.staff_start{
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 0.05em;
	text-align: right;
	margin: 60px 0 180px;
}
#staff_detail{
	width: 90%;
	max-width: 950px;
	display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 auto;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#staff_detail .staff_prev{
	width: 100%;
	max-width: 25px;
	position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-25px, -50%);
}
#staff_detail .staff_next{
	width: 100%;
    max-width: 25px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(30px, -50%);
}
#staff_detail #pdoduct_image{
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
    max-width: 900px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#staff_detail #pdoduct_image .staff_detail-right{
	width: 100%;
    max-width: 445px;
	overflow: auto;
    height: 57vh;
}
#staff_detail #pdoduct_image .staff_detail-right::-webkit-scrollbar{
	overflow: hidden;
    width: 13px;
    background: #FFF;
    border-radius: 3px;
}
#staff_detail #pdoduct_image .staff_detail-right::-webkit-scrollbar-thumb {
	overflow: hidden;
    background: #333;
    border: 5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
}
#ooguchi_detail .ooguchi_title,
#staff_detail #pdoduct_image .staff_detail-right .staff_detail-title{
	margin: 10px 0 40px;
    width: 100%;
}
#ooguchi_detail .ooguchi_title span,
#staff_detail #pdoduct_image .staff_detail-right .staff_detail-title span{
	border: 1px solid #949494;
    padding: 5px 20px;
    font-size: 13px;
    font-weight: 600;
}
#ooguchi_detail .ooguchi_body h4,
#staff_detail #pdoduct_image .staff_detail-right .staff_detail-content h4{
	font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px;
    border-bottom: 1px solid #949494;
    padding: 0 0 5px;
	letter-spacing: 0.05em;
}
#ooguchi_detail .ooguchi_body p,
#staff_detail #pdoduct_image .staff_detail-right .staff_detail-content p{
	font-size: 13px;
	line-height: 24px;
    margin: 0 0 40px;
}
#staff_detail #pdoduct_image #main_image{
	width: 100%;
    max-width: 391px;
}
#staff_detail #pdoduct_image #main_image img{
	width: 100%;
}
@media screen and (max-width: 1000px) {
	#staff_detail {
		position: unset;
		top: unset;
		left: unset;
		transform: unset;
		overflow-y: auto;
	}
	#staff_detail #pdoduct_image {
		justify-content: center;
		width: 80%;
	}
	#staff_detail #pdoduct_image .staff_detail-right {
		margin: 20px 0 0;
	}
	#staff_detail .staff_prev {
		width: 100%;
		max-width: 25px;
		position: absolute;
		top: 50%;
		left: 0%;
		transform: translate(10px, -50%);
	}
	#staff_detail .staff_next {
		width: 100%;
		max-width: 25px;
		position: absolute;
		top: 50%;
		right: 0px;
		transform: translate(0%, -50%);
	}
}
@media screen and (max-width: 900px) {
	#staff .staff_content .staff_list_block li{
		width: calc(100% / 3 - 35px);
		margin: 0 50px 45px 0;
	}
	#staff .staff_content .staff_list_block li:nth-child(4n){
		margin: 0 50px 45px 0;
	}
	#staff .staff_content .staff_list_block li:nth-child(3n){
		margin: 0 0px 45px 0;
	}
	#staff .staff_content .staff_top .staff_img_list {
		width: 100%;
		max-width: 525px;
		margin: 0 auto 300px;
	}
	#staff .staff_content .staff_top .staff_img_list .staff-img01{
		max-width: 248px;
	}
	#staff .staff_content .staff_top .staff_img_list .staff-img02{
		max-width: 310px;
	}
	#staff .staff_content .staff_top .staff_img_list .staff-img03{
		max-width: 380px;
		transform: translate(0px, 125%);
	}
	#staff .staff_content .staff_top h2 {
		margin: 60px 0 40px;
		font-size: 20px;
	}
	#staff .staff_content .staff_category{
		text-align: center;
		padding: 95px 0 5px;
	}
	.staff_start{
		margin: 60px 0 120px;
	}
}
@media screen and (max-width: 600px) {
	#staff .staff_content .staff_list_block li{
		width: calc(100% / 2 - 15px);
		margin: 0 30px 30px 0;
	}
	#staff .staff_content .staff_list_block li:nth-child(4n){
		margin: 0 0px 30px 0;
	}
	#staff .staff_content .staff_list_block li:nth-child(3n){
		margin: 0 30px 30px 0;
	}
	#staff .staff_content .staff_list_block li:nth-child(2n){
		margin: 0 0px 30px 0;
	}
	
	#staff .staff_content .staff_top .staff_img_list {
		max-width: 330px;
		margin: 0 auto 200px;
	}
	#staff .staff_content .staff_top .staff_img_list .staff-img01 {
		max-width: 150px;
	}
	#staff .staff_content .staff_top .staff_img_list .staff-img02 {
		max-width: 196px;
		transform: translate(0px, 40px);
	}
	#staff .staff_content .staff_top .staff_img_list .staff-img03 {
		max-width: 250px;
		transform: translate(0px, 120%);
	}
}
/* column page */
#column{
	/* padding: 85px 0 0; */
	width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
#column h2{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin: 90px auto 75px;
}
#column #column_detail{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
#column #column_detail .column_left{
	width: 100%;
    max-width: 610px;
}
#column #column_detail .column_left .column_content h4{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 40px;
	line-height: 28px;
}
#column #column_detail .column_left .column_content p{
	font-size: 13px;
	line-height: 24px;
	margin-bottom: 90px;
}
#column #column_detail .column_left .column_content p strong{
	font-weight: 600;
}
#column #column_detail .column_left .column_content img{
	width: 100%;
	margin: 0 0 20px;
}
.wp-block-image figcaption {
    margin-top: .0em ;
    margin-bottom: 20px;
	font-size: 13px;
	line-height: 24px;
}
#column #column_detail .column_left .column_title{
	font-size: 20px;
    font-weight: 600;
    margin: 0px auto 70px;
    letter-spacing: 0.1em;
	line-height: 30px;
}
#column #column_detail .column_left .column_image{
	width: 100%;
    margin: 0 0 40px;
}
#column #column_detail .column_left .column_image img{
	width: 100%;
}
#column #column_detail .column_right{
	max-width: 205px;
    width: 100%;
}
#column #column_detail .column_right h3{
	font-family: 'EB Garamond', serif;
    border-bottom: 1px solid #949494;
    padding: 0 0 5px;
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}
#column #column_detail .column_right ul{
	margin: 0 0 60px;
}
#column #column_detail .column_right ul li{
	margin: 0 0 5px;
}
#column #column_detail .column_right ul li a{
	font-size: 13px;
    line-height: 24px;
}
.nextlink{
	margin: 90px 0 0px;
}
.nextlink .nextlink-label{
	padding: 5px 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    border: 1px solid #181818;
    margin: 0 20px 0 0;
	display: inline-block;
}
.nextlink .page-number{
	border-bottom: 1px solid #949494;
    font-size: 14px;
    font-weight: 600;
	line-height: 24px;
}
.nextlink a:hover .page-number{
	border-bottom: unset;
}
.pagebreak-links{
	display: flex;
    margin: 60px 0 0;
    justify-content: center;
	width: 100%;
	max-width: 610px;
}
.pagebreak-links .post-page-numbers .page-number{
	border: 1px solid #555;
    color: #555;
    background: transparent;
	padding: 10px 12px;
    margin: 5px;
	font-size: 14px;
}
.pagebreak-links .current .page-number{
	padding: 10px 12px;
    margin: 5px;
    border: 1px solid #161514;
    background: #161514;
    color: #fff;
	font-size: 14px;
}
.column_detail_link{
	display: flex;
    flex-direction: row;
    justify-content: center;
	margin: 60px 0 170px;
	width: 100%;
	max-width: 610px;
}
.column_detail_link a{
	font-size: 13px;
}
.column_detail_link .columns_show-list{
	border-bottom: 1px solid #000;
    padding: 0px 20px 0;
    margin: 0 15px 0 15px;
}
@media screen and (max-width: 1000px) {
	#column #column_detail{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#column h2{
		text-align: center;
		margin: 60px auto 50px;
	}
	#column #column_detail .column_right {
		max-width: 610px;
	}
	.nextlink{
		margin: 60px 0 0;
	}
	.pagebreak-links{
		margin: 45px 0 0;
	}
	.column_detail_link {
		margin: 50px 0 75px;
	}
	.post-page-numbers{
		display: inherit;
		margin: 20px 0 0;
	}
	.online_shop_link a {
		padding-inline: 18px;
		letter-spacing: 0;
	}
}
@media screen and (max-width: 1000px) {
	#modal_staff_detail_block,
	#modal_ooguchi_detail_block,
	#modal_product_detail_block{
		height: 100%;
		overflow: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}
	#ooguchi_detail,
	#product_detail {
		margin: 70px auto 0;
	}
	#modal_staff_detail_block___modal_window_block,
	#modal_ooguchi_detail_block___modal_window_block,
	#modal_product_detail_block___modal_window_block{
		overflow: unset !important;
	}
	#staff_detail #pdoduct_image {
		margin: 70px auto 0;
	}
}
@media screen and (max-width: 400px) {
	.pagebreak-links {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}
@media screen and (max-height: 500px) {
	#modal_staff_detail_block,
	#modal_ooguchi_detail_block,
	#modal_product_detail_block{
		height: 100%;
		overflow: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}
	#product_detail {
		margin: 40px auto 0;
	}
	#modal_staff_detail_block___modal_window_block,
	#modal_ooguchi_detail_block___modal_window_block,
	#modal_product_detail_block___modal_window_block{
		overflow: unset !important;
	}
}
 
.noscroll {
	height: 100%;
  }
  
  .noscroll body {
	height: 100%;
	overflow: hidden;
  }
  
  .product-overlay {
	display: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	color: #fff;
	overflow-y: auto;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgb(115 97 87 / 60%);
	opacity: 1;
  }
  
  .product-overlay .close-product-overlay {
	  -webkit-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
	  width: 100%;
	  cursor: pointer;
	  position: absolute;
	  top: 0;
	  right: 0;
	  max-width: 60px;
  }
  
  .product-overlay .product {
	-webkit-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	opacity: 0;
	height: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	margin: auto;
	max-width: 1166px;
	background-color: #fff;
  }
  
  .product-overlay .product.active {
	  left: 0;
	  bottom: 0;
	  right: 0;
	  position: fixed;
	  width: 90%;
	  max-width: 570px;
	  z-index: 1001;
	  background-color: rgb(255, 255, 255);
	  opacity: 1;
	  height: 90%;
	  top: 0%;
  }
  .product-overlay .popup{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  .product-overlay .popup .image-area{
	  width: 90%;
	  margin: 0 auto;
	  text-align: center;
	  max-width: 450px;
  }
  .product-overlay .popup .image-area img{
	width: 70%;
	  display: block;
	  max-height: 80%;
	  /* height: 100%; */
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  position: absolute;
  }
  #contest .award_list ul li img{
	  width: 100%;
	  max-width: 250px;
  }
  #contest .award_list ul li img:hover{
	  opacity: 0.6;
	  cursor: pointer;
  }
  #contest .award_list ul,
  .award_list{
	  width: 100%;
  }
  @media screen and (max-width: 400px) {
	  .product-overlay .popup .image-area img {
	  width: 70%;
	  max-height: 40vh;
  }
  }
  @media screen and (max-height: 750px){
	  .product-overlay .popup .image-area{
		  width: 90%;
	  margin: 0 auto;
	  text-align: center;
	  height: 100%;
	  max-width: 90%;
	  max-height: 100%;
  }
  .product-overlay .popup .image-area img {
	  width: 80%;
	  object-fit: contain;
	  max-height: 90%;
	  height: 100%;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  position: absolute;
  }
  }
  .columns_list{
	width: 100%;
    margin: 0 auto 150px;
  }
  .columns_list ul{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columns_list ul li{
	margin: 0 auto 30px;
  }
  .columns_list ul li img{
	width: 100%;
  }
  .columns_list ul li p{
	font-size: 17px;
    font-weight: 600;
    margin: 20px auto 0;
    line-height: 30px;
    letter-spacing: 0.05em;
  }


  /**************************** 素材について *********************************/

  .material-top__content_wrapper {
    /* padding-top: 35px; */
	padding-top: 90px;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: 5%;
    padding-bottom: 90px;
}

.material-top__title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 52px;
}

.material-top__sub_title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 30px;
}

.c-material-txt {
    font-size: 14px;
    line-height: 2.1;
}

.material-content {
	padding-inline: 5%;
	padding-bottom: 50px;
	margin-inline: auto;
}

.material-content-item__title_en {
    font-size: 20px;
    font-weight: 600;
    display: block;
    padding-bottom: 11px;
}

.material-content-item__title_ja {
	font-size: 15px;
	font-weight: 600;
	display: block;
}

.material-content-item {
    display: grid;
    /* grid-template-columns: 1fr 1.8fr; */
	grid-template-columns: 1fr 450px;
    /* grid-auto-rows: auto auto; */
    gap: 30px 5%;
    padding-inline: 20px;
    /* max-width: 720px; */
	max-width: 800px;
    margin-inline: auto;
    /* align-items: center; */
    padding-bottom: 30px;
    margin-bottom: 35px;
}

.material-content-item:not(:last-child) {
    border-bottom: 1px solid #9e9e9f;
}

.material-content-item__title {
    /* grid-area: title; */
    margin: 0;
    width: 100%;
    height: auto;
	padding: 0 0 25px 0;
}

/* .material-content-item__img_wrapper {
	grid-area: img;
} */

.material-content-item__img {
    width: 100%;
	height: auto;
}

/* .material-content-item__txt_wrapper {
	grid-area: txt;
} */

.material-content-item:nth-child(even) {
	/* grid-template-columns: 1.8fr 1fr; */
	grid-template-columns: 450px 1fr;
}

.material-content-item:nth-child(even) .material-content-item__img_wrapper {
	order: 2;
}

.material-content-item:nth-child(even) .material-content-item__txt_wrapper {
	order: 1;
}

.material-pc_only {
	display: block;
}

@media screen and (max-width: 780px){ 

	.material-top__content_wrapper {
		max-width: calc(500px - 10%);
		padding-top: 55px;
		padding-bottom: 50px;
	}

	.material-top__title {
		padding-bottom: 35px;
	}

	.material-content-item {
		grid-template-columns: 1fr;
		grid-auto-rows: auto auto;
	}

	.material-pc_only {
		display: none;
	}

	.material-content-item:nth-child(even) {
		/* grid-template-columns: 1.8fr 1fr; */
		grid-template-columns: 1fr;
	}

	.material-content-item:nth-child(even) .material-content-item__img_wrapper {
		order: 0;
	}
	
	.material-content-item:nth-child(even) .material-content-item__txt_wrapper {
		order: 0;
	}

	.material-content {
		max-width: 500px;
		padding-bottom: 10px;
	}

}