
@charset "UTF-8";
/* CSS Document */

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ヘッダーメニュー▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/* ▼▼▼ヘッダー▼▼▼*/
header{
    width: 100%;
    background-color: white;
    display: block;
    position: fixed;
    /* text-align: center; */
    height: 55px;
    z-index: 99;
    top: 0;
    /* transition: .3s; */
    /* visibility: hidden; */
}
#top-head {
	width: 100%;
	max-width: 1100px;
	/* top: 0; */
	z-index: 99;
	/* height: 55px; */
	margin: 0 auto;
	position: relative;
}
#head_inner {
	width: 100%;
	/* height: 55px; */
	/* max-width: 768px; */
	padding: 3px 7px 6px;
	/* background: url(/img/common-bg.png) repeat 0 0; */
	background-color: white;
	/* top: 0; */
	z-index: 999;
	position: fixed;
	display: flex;
	justify-content: space-between;
}

/* ▲▲▲ヘッダー▲▲▲ */

/*メニュー展開時のバックグラウンドスクロールロックテスト*/
.fixed {
	overflow: hidden;
}
/* ▼▼▼グローバルメニュー▼▼▼*/
.active #head_inner {
	filter: alpha(opacity=1);
	-ms-filter: "alpha(opacity=1)";
	-khtml-opacity: 1;
	-moz-opacity: 1;/* opacity: 1; */
}
.logo img {
    width: 88%;
}
#head_inner .logo {
	width: 100px;
	float: left;
	margin-top: 11px;
	margin-left: 15px;
}
#global-nav-main li, #global-nav-inquiry li {
	display: inline-block;
	text-align: center;
}
#global-nav-inquiry li.for_pc{
    display: none;
}
#global-nav-main {
	float: right;
	width: 150px;
	/* padding-top: 0; */
}
#global-nav-main li a span {
	display: block;
}
#global-nav-main > li {
	width: 33%;
	vertical-align: middle;
	font-size: 0.6em;
	/* padding: 0 4px; */
	line-height: 10px;
}
#global-nav-main > li > a > img {
	padding: 0 10px 5px;
}
#global-nav-main > li:nth-of-type(2) > a > img {
    padding-bottom: 6px;
}
#global-nav-inquiry {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #f16496;
}
#global-nav-inquiry > li {
	width: 33.3333%;
	/* font-size: 0.8em; */
	letter-spacing: 0.1em;
	line-height: 40px;
	height: 40px;
	/* padding: 3px 0; */
	/* background-color: #f16496; */
	font-weight:  bold;
}
#global-nav-inquiry li+li {
	border-left: 1px solid white;
	/* padding-top: 11px; */
}
#global-nav-inquiry li a {
	color: white;
	display: block;
}
/* ▲▲▲グローバルメニュー▲▲▲ */
/* ▼▼▼スマートフォンメニュー▼▼▼*/
/*toggleメニュー*/
.global-nav-toggle, .global-nav-toggle span {
	transition: all .4s;
	box-sizing: border-box;
}
.global-nav-toggle {
	position: relative;
	width: 31px;
	height: 23px;
	margin: 7px 0 0 10px;
	float: right;
}
.global-nav-toggle span {
	position: absolute;
	left: 0;
	width: 25px;
	height: 4px;
	background-color: #333;
	border-radius: 4px;
}
.global-nav-toggle span:nth-of-type(1) {
	top: 2px;
}
.global-nav-toggle span:nth-of-type(2) {
	top: 10px;
}
.global-nav-toggle span:nth-of-type(3) {
	bottom: 1px;
}
.global-nav-toggle::after {
	position: absolute;
	left: -4px;
	bottom: -15px;
	content: 'その他';
	display: block;
	width: 100%;
	color: #666;
	text-decoration: none;
	text-align: center;
	transition: all .4s;
	font-size: 0.6em;
	letter-spacing: 0;
}
.active .global-nav-toggle::after {
	content: 'CLOSE';
	bottom: -15px;
}
.active .global-nav-toggle span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.active .global-nav-toggle span:nth-of-type(2) {
	opacity: 0;
}
.active .global-nav-toggle span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}
/*toggleメニュー*/
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ハンバーガーメニューページ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
#global-nav-toggle-menu {
	position: absolute;
	width: 100%;
	/* max-height: 94vh; */
	max-height: 100vh;
	background: url(/img/common-bg.png) repeat;
	padding: 50px 0;
	/* top: -945px; */
	padding: 80px 0;
	bottom: 0;
	-webkit-transition: .6s ease-in-out;
	-moz-transition: .6s ease-in-out;
	transition: .6s ease-in-out;
	z-index: 9;
	overflow: scroll;
}
.active #global-nav-toggle-menu {
	-moz-transform: translateY(990px);
	-webkit-transform: translateY(990px);
	/* transform: translateY(990px); */
	transform: translateY(100%);
}
#global-nav-toggle-menu ul a {
	display: block;
}
#global-nav-toggle-menu ul:first-of-type {
	margin: 0 20px;
}
#global-nav-toggle-menu ul:first-of-type li {
	background: white;
	border-radius: 6px;
	margin: 6px 0;
	padding: 13px 0 13px 10px;
	font-size: 0.9em;
	position: relative;
}
#global-nav-toggle-menu ul:first-of-type li:after, #global-nav-toggle-menu ul:nth-of-type(2) li:last-of-type:after {
	font-family: 'FontAwesome';
	content: "\f054";
	position: absolute;
	right: 10px;
	bottom: 1.2em;
}
#global-nav-toggle-menu ul:nth-of-type(2) {
	width: 100%;
	margin: 40px 0;
	padding: 60px 20px;
	background-color: #ece0d3;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #F9F9F9), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #F9F9F9), color-stop(.75, #F9F9F9), color-stop(.75, transparent), to(transparent));
	-webkit-background-size: 7px 7px;
}
#global-nav-toggle-menu ul:after {
	content: "";
	clear: both;
	display: block;
}
#global-nav-toggle-menu ul:nth-of-type(2) li:nth-of-type(n+2) {
	width: 50%;
	float: left;
	padding: 0 3px;
}
#global-nav-toggle-menu ul:nth-of-type(2) li:nth-of-type(n+10) {
	width: 100%;
	margin-top: 40px;
	font-size: 0.78em;
	font-weight: bold;
}
#global-nav-toggle-menu ul:nth-of-type(2) li:last-of-type {
	background: white;
	border-radius: 6px;
	margin-top: 10px;
	padding: 13px 10px;
	font-size: 0.9em;
	position: relative;
}
#global-nav-toggle-menu ul:nth-of-type(n+3) {
	width: 100%;
	padding: 30px 40px 0;
}
#global-nav-toggle-menu ul:nth-of-type(3) li {
	width: 25%;
	max-width: 83px;
	height: 90px;
	float: left;
	padding: 0 9px;
	font-size: .7em;
	text-align: center;
	line-height:  1.4em;
}
#global-nav-toggle-menu ul:nth-of-type(3) li img {
	padding: 0 8px 5px;
}
#global-nav-toggle-menu ul:nth-of-type(4) li {
	width: 33.33%;
	display: inline-block;
	text-align: center;
	font-size: 0.8em;
	font-weight: bold;
}
#global-nav-toggle-menu ul:nth-of-type(4) li:first-child, #global-nav-toggle-menu ul:nth-of-type(4) li:nth-child(2) {
	width: 50%;
}
#global-nav-toggle-menu ul:nth-of-type(4) li a {
	text-decoration: underline;
	width: auto;
}
#global-nav-toggle-menu ul:nth-of-type(4) li:nth-of-type(-n+2) a::before {
	content: "▶︎";
	width: 20px;
	display: inline-block;
}
/* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ハンバーガーメニューページ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ▲▲▲スマートフォンメニュー▲▲▲ */
/* ▼▼▼PCメニュー▼▼▼*/
/*ドロップダウン*/
.drop_menu > div {
	visibility: hidden;
	opacity: 0;
	transition: .8s;
	top: 120%;
	width: 1100px;
	position: absolute;
	background-image: url("/img/common-bg-drop-menu.png"); 
	background-size: cover;
	/* background-position: 0 -83px; */
	background-repeat: repeat-x;
	background-position: bottom;
	left: 0;
	/* padding: 65px 17px 21px; */
	padding: 20px 17px 20px;
}
.drop_menu:hover > div {
	visibility: visible;
	opacity: 1;
	/* top: 77%; */
	top: 142%;
}
@media screen and (max-width: 360px) {
#global-nav-main {
	width: 150px;
}
#global-nav-toggle-menu ul:nth-of-type(n+3) {
	padding: 15px 10px;
}
}
@media screen and (min-width: 1024px) {
header {
	height: 85px;
	font-size: 14px;
	/* padding-left: 6px; */
}
#head_inner {
	margin: 0;
	padding: 0;
	max-width: fit-content;
}
#head_inner .logo {
	width: 100px;
	margin: 25px 0 0;
}
.logo img {
    width: 100%;
}
#global-nav-main li a span, #global-nav-inquiry span {
	display: inline;
}
#global-nav-inquiry span.br {
	display:block;
	line-height: 2px;
}
#global-nav-main {
	/* width: fit-content; */
	width: 100%;
	max-width: 500px;
	float: left;
	margin: 40px 0 0 4%;
}
/*店舗情報、らかんの魅力*/
#global-nav-main li a span.for_sp {
    display: none;
}
/*店舗情報、らかんの魅力*/



#global-nav-main li a {
	position: relative;
	bottom: 0;
}

#global-nav-main li a:hover , #global-nav-main li a.current {
    color: #e8447e;
}

#global-nav-main > li > a::after , #global-nav-main li a.current::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #e8447e;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .5s;
}
#global-nav-main > li a:hover::after , #global-nav-main li a.current::after {
  transform-origin: left top;
  transform: scale(1, 1);
}




#top-head #global-nav-main > li {
	font-size: 0.8em;
	letter-spacing: 2px;
	width: auto;
	padding: 0 8px;
	height: 16px;
}
#global-nav-main > li+li {
	/* border-left: 1px solid #666; */
}
#global-nav-inquiry {
	display: unset;
	width: 440px;
	/* bottom: unset; */
	top: 0;
	position: absolute;
	right: 0;
	z-index: 999;
	background-color: #fff;
}
#global-nav-inquiry .for_sp {
    display: none;
}
#global-nav-inquiry > li {
	float: right;
	/* width: 100px; */
	background-color: white;
	letter-spacing: 1px;
	/* border-radius: 5px; */
	/* padding: 7px 0; */
	height: 85px;
	font-size: 0.75em;
	/* line-height: 25px; */
	/* padding-top: 17px; */
	font-weight:  normal;
}
#global-nav-inquiry li.for_pc {
	display: inline-block;
}
#global-nav-inquiry > li.headerInquiry {
	width: 100px;
	background-color: #f26496;
	/* padding-top: 17px; */
	line-height: 26px;
}
#global-nav-inquiry > li.headerInquiry a:before {
	/* content: url("/img/common-icon-check.png"); */
	/* display: block; */
	/* position: relative; */
	right: 4px;
	top: 4px;
	/* text-align: center; */
}
#global-nav-inquiry > li:first-child {
	width: 100px;
	/* background-color: white; */
	/* padding-top: 19px; */
	/* line-height: 21px; */
	/* border-left: solid 1px #666; */
	/* margin: 12px 0; */
	/* height: 34px; */
}
#global-nav-inquiry > li:first-child a:before {
	/* content: url("/img/common-icon-online.png"); */
	/* display: block; */
	/* position: relative; */
	/* right: 4px; */
	/* top: 4px; */
	/* text-align: center; */
}
#global-nav-inquiry > li:nth-child(3) {
	width: 100px;
	/* background-color: white; */
	padding-top: 0;
	border-left: solid 1px #666;
	/* border-right: solid 1px #666; */
	margin: 16px 0;
	height: 53px;
}
#global-nav-inquiry > li:nth-child(3) > ul
 > li {
    margin: 13px 3px;
}
#global-nav-inquiry > li:nth-child(4) {
	width: 115px;
	/* background-color: white; */
	padding-top: 10px;
	/* border-left: solid 1px #666; */
	/* border-right: solid 1px #666; */
	/* margin: 16px 0; */
	/* height: 59px; */
	text-align: left;
}
#global-nav-inquiry > li:nth-child(4) li {
	text-align: left;
	padding: 0;
	height: 20px;
	display: block;
}
#global-nav-inquiry > li:nth-child(4) li+li {
    margin-top: 5px;
}
#global-nav-inquiry > li:nth-child(4) li a::before{
	top;
	position: relative;
	top: 4px;
	left: -8px;
}
#global-nav-inquiry > li:nth-child(4) li:nth-child(2) a::before{
	content: url(/img/common-icon-inquiry.png);
}
#global-nav-inquiry > li:nth-child(4) li:nth-child(1) a::before{
	content: url(/img/common-icon-catalogue.png);
}
#global-nav-inquiry li+li {
	/* border: none; */
	/* background-color: unset; */
	/* width: 91px; */
	/* height: 20px; */
	/* padding: 0; */
	/* font-size: 0.75em; */
	/* float: left; */
	/* display: block; */
}
#global-nav-inquiry > li+li a {
	color: #666;
	display: block;
}
#global-nav-inquiry > li+li a:hover {
	color: #fff3f7;
	text-decoration: none;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#global-nav-inquiry > li.headerInquiry a {
    color: white;
    font-size: 2em;
    margin-top:  0px;
}
#global-nav-inquiry > li.headerInquiry a span {
    /* display:  block; */
    line-height:  1;
}
#global-nav-inquiry li:before {
	/* right: 6px; */
	/* top: 1px; */
	/* position: relative; */
}
#global-nav-inquiry li a:hover {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	filter: alpha(opacity=60);
	-moz-opacity: 0.60;
	opacity: 0.60;
}

#global-nav-inquiry li.headerInquiry a:before, #global-nav-inquiry li:nth-of-type(3) a:before {
	/* display: inline-block; */
	/* position: relative; */
	/* vertical-align: middle; */
	/* margin-right: 9px; */
	/* width: 16px; */
}
#global-nav-inquiry li.headerInquiry a:before {
	/* content: url("/img/common-btn-catalogue.png"); */
	/* content: url("/img/common-icon-pc.png"); */
}
#global-nav-inquiry li:nth-of-type(3) a:before {
	/* content: url("/img/common-btn-Inquiry.png"); */
}
/*dropdownメニュー*/

#satsuei_menu > div {
	float: left;
}
.drop_menu-left {
	width: 40%;
}
.drop_menu-center {
	/*width: 37%;*/
	width: 41%;
}
.drop_menu-right {
	/*width: 23%;*/
	width: 19%;
}
#satsuei_menu ul {
	width: 98%;
	float: left;
	background-color: white;
	margin: 4px;
	padding: 15px 9px;
	border-radius: 7px;
}
#satsuei_menu ul li {
	width: 50%;
	font-size: 1.1em;
	height: auto;
	float: left;
	margin: 3px 0;
}
#satsuei_menu ul li:first-child {
	width: 100%;
	color: #e94a82;
	font-weight: 600;
	text-align: left;
	font-size: 1.3em;
	height: 35px;
	padding-top: 5px;
}
#satsuei_menu a {
	float: left;
	height: 43px;
	line-height: 43px;
}
#satsuei_menu img {
	width: auto;
	float: left;
	margin-right: 5px;
}
#satsuei_menu .drop_menu-right li {
	width: 100%;
}
#satsuei_menu .d-lines a {
	line-height: 28px;
	width: 100%;
	text-align: left;
}
#satsuei_menu .d-lines a span {
	line-height: 5px;
	display: block;
	font-size: 0.8em;
}


#global-nav-inquiry > li a.header-shop-inquiry::before {
    content: url(/img/common-icon-inquiry.png) !important;
}
#global-nav-inquiry > li a.header-shop-faq::before {
    content: url(/img/common-icon-faq.png) !important;
}


}
@media screen and (min-width: 1100px) {
header {}
#head_inner {
	/* max-width: 660px; */
}
#top-head #global-nav-main > li {
    font-size: 0.85em;
}
}
@media screen and (min-width: 1024px) and (max-width: 1099px) {

#global-nav-main li {
	padding: 0 1%;
}
#global-nav-main {
	max-width: unset;
	width: 43%;
	min-width: 510px;
	margin-left: 1%;
}
}
/* ▲▲▲PCメニュー▲▲▲ */
@media screen and (max-width: 360px) {
#global-nav-main > li {
	padding: 0;
}
}
/* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ヘッダーメニュー▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
/*0413店舗ページヘッダー分追記　中川*/
#global-nav-inquiry > li:nth-child(2).shopTell, #global-nav-inquiry > li:nth-child(3).shopAdress {
    display: none;
    }
@media screen and (min-width: 1024px) {
#global-nav-inquiry > li:nth-child(2).shopTell, #global-nav-inquiry > li:nth-child(3).shopAdress {
    width: 300px;
    margin: 0 10px 0 0; 
    display:  inline-block;
    float:  right;
    text-align:  right;
    height:  auto;
}
#global-nav-inquiry > li:nth-child(2).shopTell {
    font-size: 1.8em;
    letter-spacing: 3px;
    margin:  0;
    padding: 0;
    padding-right:  8px;
}
#global-nav-inquiry > li:nth-child(3).shopAdress {
    border:  none;     
}
#global-nav-inquiry > li:nth-child(2).shopTell a, #global-nav-inquiry > li:nth-child(3).shopAdress a {
    color:#3c3c3c;
}
#global-nav-inquiry > li:nth-child(2).shopTell a:before{
    content:  "";
    display:  inline-block;
    background-image:url(/img/common-icon-tel2.png);
    background-size:cover;
    width: 22px;
    height: 22px;
    margin-right: 10px;
}
#global-nav-inquiry > li:nth-child(3).shopAdress .headerBr {
    display: block;
}
#global-nav-inquiry > li:nth-child(3).shopAdress a {
    font-size: 1rem;
    line-height: 1.3em;
    text-decoration: underline;
}
}
/*スマートフォンボタン*/
#shopSp {
    display: flex;
    flex-flow: row wrap;
    justify-content:  space-around;
    width: 100%;
    padding: 0 2%;
    z-index: 9;
    position:  absolute;
    bottom: -90px;
    background-color:  white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
#shopSp p {
    width: 46%;
    border: solid 1px black;
    border-radius:  5px;
    margin: 14px 0 10px;
    padding: 10px;
    text-align:  center;
    font-size: 1em;
    position:  relative;
    letter-spacing: 1px;
}
#shopSp p a {
	width: 100%;
	display: inline-block;
}
#shopSp p:first-of-type {
    padding-left: 20px;
}
#shopSp p:first-of-type::before, #shopSp p:nth-of-type(2)::before {
    content:  "";
    display: inline-block;
    position:  absolute;
    width:  20px;
    height:  20px;
    left: 5px;
    top: 7px;
    background: url(/img/common-icon-inquiry2.png) no-repeat 0 0;
    background-size: contain;
}

#shopSp p:nth-of-type(2)::before {
    background: url(/img/common-icon-map.png) no-repeat 0 0;
    background-size: cover;
}
#shop_info-shop.sub_page #breadcrumb {
    margin-top:  55px;
}
main#shop_info.shopPage.sub_page {
    margin-top: 150px;
}

#shopSp p:nth-of-type(3) a {
    position: relative;
}
#shopSp p:nth-of-type(3) a::before {
    content:  "";
    display: inline-block;
    position:  absolute;
    width: 16px;
    height: 16px;
    left: -1.4em;
    top: 0;
    background: url(/img/common-icon-faq2.png) no-repeat 0 0;
    background-size: contain;
}
@media screen and (min-width: 1024px) {
#shopSp {
	display:none;
	visibility:  hidden;
}
#shop_info-shop.sub_page #breadcrumb {
    margin-top:  unset;
}
}
/*スマートフォンボタンend*/

/*ヘッダーメニュー（プロフィール種別）*/
#satsuei_menu .hdrMnuProfile a {
    line-height: 20px;
    display: block;
    width: 100%;
    text-align: left;
}
.hdrMnuProfileM a {
    font-size: 12px;
}

/*20201012-kash-100th-logo*/
#head_inner .logo {
	width: 150px;
	margin-top: 15px;
    margin-left: 5px;
}
@media screen and (min-width: 1024px){
#head_inner .logo {
	width: 180px;
	margin: 26px 13px 0 0;
        padding-left: 6px;
}
#global-nav-main {
	max-width: 440px;
}
}
@media screen and (max-width: 360px){
#head_inner .logo {
	width: 120px;
	margin-top: 19px;
	margin-left: 5px;
}
#global-nav-main {
	width: 135px;
}
#global-nav-main > li > a > img {
	padding: 0 8px 5px;
}
}

/* 20220919-kzm　ヘッダー調整 */
.global-nav-category-menu-content {
	display: flex;
}

/* 20230417-kzm ヘッダーサブメニュー追加 */
.s-sub-menu-box {
	background-color: #fff;
	padding: 1em 2em;
	width: 100%;
	margin: auto;
	position: relative;
	top: 100%;
	box-shadow: 0 4px 4px rgba(0,0,0,0.1);
	overflow: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.s-sub-menu-box::-webkit-scrollbar {
	display: none;
}

.s-sub-menu-box nav {
	max-width: 1100px;
	width: 320vw;
	margin: auto;
}

.s-sub-menu-list {
	width: calc(100% - 2em);
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
	gap: 1em;
}

.link-on > * {
	color: #e8457e;
}

.link-on:after {
	content:"";
	display: block;
	width: 100%;
	height: 4px;
	position: relative;
	top: 80%;
	background: #e8457e;
}

header.head-box {
	height: auto;
}

#top-head{
	height: 55px;
}

@media screen and (min-width: 1024px){
	/* main#s753 {
		margin-top: 128px;
	} */

	#top-head{
		height: 85px;
	}

	/* .link-on:after {
		top: 80%;
	} */

}

@media screen and (min-width: 1024px){
/* 230604 - ヘッダーレスポンシブ再対応 */
#global-nav-main {
	max-width: 480px;
	margin-left: 2%;
}

#main_menu #satsuei_menu.for_pc {
	display: grid;
	grid-template-columns: .9fr .9fr .5fr;
}

#main_menu #satsuei_menu.for_pc > * {
	width: 100%;
	float: none;
}

#main_menu #satsuei_menu.for_pc ul {
	display: flex;
	flex-flow: row wrap;
	/* grid-gap: .5rem; */
	float: none;
}

#main_menu #satsuei_menu.for_pc a {
	display: grid;
	/* display: flex; */
	grid-template-columns: .25fr .75fr;
	float: none;
	line-height: 1.5;
	height: auto;
}

#main_menu #satsuei_menu.for_pc li {
	float: none;
	font-size: 14px;
	margin: 4px 0;
}
	
#main_menu #satsuei_menu.for_pc p,
#main_menu #satsuei_menu.for_pc span {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: .05em;
	font-feature-settings: "palt";
	margin: auto 0;
	text-align: justify;
	height: auto;
	padding-top: initial;
	float: none;
}
#main_menu #satsuei_menu.for_pc span {
	font-size: .8em;
}
}

