/* all
---------------------------------------------------*/
html{}
body{color: #4D4D4D; font-family: "Noto Sans JP", serif; font-optical-sizing: auto; font-weight: 500; font-style: normal; font-size: 1rem; line-height: 150%;}
/* Use a value from 100 to 900*/
a {text-decoration: none;}
li{list-style: none;}



/* 共通
---------------------------------------------------*/
.red{
	color: #E50012;
}

.font_12{
	font-size: 0.75rem;
}

@media screen and (max-width: 576px) {
.sp_none{
	display: none;
}
}




/* header
---------------------------------------------------*/
header{
	margin:0;
	border-bottom: 1px solid #7F8080;
	width: 100%;
	background: #FFFFFF;
}
header a{
	color: #000000;
}
h1{
	padding: 0 10px;
	height: 95px;
}
h1 a img{
	height: 100%;
	max-width: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1185px) {
h1{
	width: 190px;
	height: 77px;
}
h1 a img{
	object-fit: contain;
}
}



/* nav
---------------------------------------------------*/
nav{
	margin: 0 auto;
	max-width: 1280px;
}



/* 本文をメニューの高さ分下げる */
#main {
  margin-top: 95px;
}
@media screen and (max-width: 1185px) {
#main {
  margin-top: 77px;/*h1幅変更による高さ変動*/
}
}

#navi {
	background-color: #FFF;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
}
/* 上部メニュー */
#menu {
	display: flex;
}
#menu li {
  position: relative;
  white-space: nowrap;
}
#menu li a {
  display: block;
}
#menu > li {
}
/* パソコンでは V を非表示 */
#menu > li .pd {
  display: none;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

/* スマホ用 */
@media screen and (max-width: 1185px) {
  /* 基本非表示 */

#navi {
	display: block;
}
  #menu {
    display: none;
  }
  #menu li {
    height: auto;
    width: 100%;
    padding: 5px 20px;
    border-bottom: 1px solid #DDD;
    white-space: nowrap;
  }
  #menu > li {
    margin-right: -20px;
  }
  /* V を表示 */
  #menu > li .pd {
    display: inline-block;
    width: 100%;
  }
  #menu li a {
    display: inline-block;
  }
  #menu li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu li i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}

/* ドロップダウンメニュー */
#menu li ul {
  position: absolute;
}
/* 子メニュー */
#menu > li > ul li {
  font-size: 14px;
  display: none;
  padding: 0px 20px;
  background-color: #FFF;
  border-left: 1px solid #7F8080;
  border-right: 1px solid #7F8080;
 /* border-bottom: 1px solid #7F8080;*/
}
#menu li ul li:first-child {
  border-top: 1px solid #7F8080;
}
#menu li ul li:last-child {
  border-bottom: 1px solid #7F8080;
}
#menu li ul li ul {
  top: -1px;
  left: 100%;
}
#menu li ul li ul li ul,
#menu li:nth-child(n+3) ul li ul {
  left: inherit;
  right: 100%;
}
#menu > li > ul {
  margin-left: -40px;
  width: auto;
}

/* パソコン用 */
@media screen and (min-width: 1185px) {
	nav{
		height: 95px;
	}
	/*親メニューの下部に表示*/
	#menu > li {
	  position: relative; /* 親メニューを基準に */
	}
	#menu > li > ul {
	  position: absolute;
	  top: 100%; /* 親メニューの下に配置 */
	  left: 0;
	  width: auto;
	  background-color: #FFF;
	  border: 1px solid #DDD;
	  display: none; /* 初期は非表示 */
	}
	#menu li{
		padding: 0 10px;
	}
	/* ホバー時に表示 */
	#menu > li:hover > ul {
	  display: block;
	}
	/*親メニューの下部に表示*/
	#menu , #menu li ,#menu li a{
		height: 100%;
	}
	#menu li a{
		align-content: center;
		font-size: 18px;
	}
	/*ホバー時に下線出現*/
	.link_underline > a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 8px;
	background: #E50012;
	bottom: -1px;       /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
	visibility: hidden; /*ホバー前に、アンダーラインを可視化しない*/
	}
	.link_underline > a:hover::after {
	visibility: visible; /*ホバー後、アンダーラインを可視化する*/
	}
	/*ホバー時に下線出現*/
	/*ホバー時に下線出現子要素*/
	.link_underline li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: #E50012;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
	}
	.link_underline li a:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
	}
	/*ホバー時に下線出現子要素*/
	#menu > li:hover > ul > li,
	#menu li ul li:hover > ul > li {
		display: block;
	}
	/*下矢印*/
	.arrow {
	  position: relative;
	}
	.arrow::before { /* くの字の表示設定 */
	  content: "";
	  margin: auto;
	  position: absolute;
	  bottom: calc(50% - 28px);
	  left: calc(50% - 7px);
	  width: 14px;    /* くの字を山なりに見た時、左側の長さ */
	  height: 14px;   /* くの字を山なりに見た時、右側の長さ */
	  border-top: 2px solid #E50012;     /* くの字を山なりに見た時、左側の太さと色 */
	  border-right: 2px solid #E50012;   /* くの字を山なりに見た時、右側の太さと色 */
	  transform: rotate(135deg);    /* くの字の向き */
	}	
	/*下矢印*/
	/* 子メニュー */
	#menu > li > ul li {
	  padding: 10px 20px;
	}

	/* ▼ ドロップダウン（子メニュー）を2列で表示 ▼ */
	#menu > li > ul.dorop_down_2 {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: white;
		grid-template-columns: repeat(2, minmax(200px, 1fr)); /* ★2列に */
		gap: /*8px 16px*/ 0;
		z-index: 1000;
		padding: 0px;
		max-height: none;           /* ★高さ制限を解除 */
		overflow-y: visible !important; /* ★スクロールバーを出さない */
		white-space: normal;        /* ★折り返しOKに */
	}
	#menu > li:hover > ul.dorop_down_2 {
		display: grid;
	}
	#menu > li > ul.dorop_down_2 li {
		border: none
	}
	.dorop_down_2 > li {
		width: 100%;
	}
	.dorop_down_2 > li {
		width: 100%;
		word-break: break-word;     /* 長い語でも折り返し可能に */
		white-space: normal;        /* 通常の折り返し挙動 */
		line-height: 1.2;           /* 行間にゆとりを持たせる */
	}
	.dorop_down_2 > li {
		padding: 0;
		margin: 0;
		line-height: 1;
		font-size: 0;
		box-sizing: border-box;
	}

	.dorop_down_2 > li > a {
		display: block;
		padding: 0; 
		margin: 0;
		line-height: 1.2;
		white-space: normal;
		word-wrap: break-word;
		overflow-wrap: break-word;
		text-decoration: none;
		box-sizing: border-box;
	}
	/* ▼ Grid内のliを整形（再調整） */
	.dorop_down_2 > li {
		padding: 0;
		width: 100%;
		box-sizing: border-box;
	}
	/* ▼ 各リンクの整形（ここが大事） */
	.dorop_down_2 > li > a {
		display: block;
		padding: 0px;
		text-decoration: none;
		line-height: 1.2;
		word-wrap: break-word;      /* 長い語を折り返す */
		white-space: normal;        /* 1行制限を解除して複数行OKに */
		max-width: 100%;            /* 親に対してはみ出さないように */
		overflow-wrap: break-word;  /* 文字列の途中でも折り返し可 */
		box-sizing: border-box;
	}
}
/* スマホ用 */
@media screen and (max-width: 1185px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * #menu {
    display: block;
  }
  #menu-navibtn:checked ~ * #menu > li {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu > li ul {
    line-height: 50px;
  }
  #menu > li > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  #menu li ul {
    position: static;
  }
  /* 子メニュー */
  #menu > li > ul {
    margin-left: initial;
    position: relative;
  }
  #menu li ul li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu ul li:last-child {
    border-bottom: none;
  }
  #menu > li > ul li {
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
  #menu li ul li ul {
    top: inherit;
    left: 0;
  }
  #menu li ul li:last-child {
    border-bottom: none;
  }
  /* 子メニューがクリックされた時 */
  #menu input[type="checkbox"]:checked ~ label ~ ul > li {
    max-height: inherit;
    overflow-y: visible;
    display: block;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ label .pd .angletoggle:before {
    content: "\f106";
  }
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 1185px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 20px;
    right: 10px;
  }
@media screen and (max-width: 1185px) and (min-width: 579px) {
  #navi #navibtn {
    top: 20px;
  }
}
	#navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}

/* menu2 */
.menu2_list{
	display: flex;
	font-size: 1rem;
}
.menu2_list > li{
	padding: 2px 5px;
	border-right: 1px dashed #000000;
	text-align: center;
}
.menu2_list > li:first-child{
	border-left: 1px dashed #000000;
}
@media screen and (max-width: 1185px) {
  #menu2 {
    display: block;
    position: absolute;
    top: 17px;
    right: 60px;
  }
}
.dropdown-menu input {
  display: block !important;
}

/* google検索虫眼鏡 */
.gsc-search-button svg {
	max-width: 13px;
}

/* dropdown-menu の基本スタイル */
#menu2 .dropdown{
	position: relative;
}
#menu2 .dropdown-menu {
	top: 21px !important;
	z-index: 1000;
	border-radius: 0 !important;
	border: 1px solid #7F8080 !important;
	width: 100vw !important;
}
@media screen and (min-width: 578px) and (max-width: 1184px) {
	#menu2 .dropdown-menu {
		top: 8px !important;
	}
}
.menu2_box1 {
	margin: 0 auto;
	width: 1280px !important;
}
@media screen and (max-width: 1280px) {
.menu2_box1 {
		width: 100vw !important;
	}
}
@media screen and (max-width: 579px) {
  #menu2 {
    top: 25px;
  }
  .menu2_list .fa-lg {
    font-size: 1.7rem;
  }
}
@media screen and  (min-width: 579px) {
	.shop_width {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}



/* メイン画像
---------------------------------------------------*/


/* maincontent
---------------------------------------------------*/
.container{
	margin: 0 auto;
	width: 1280px;
}
@media screen and (max-width: 1279px) {
.container{
	padding: 0 10px;
	width: calc(100% - 20px);
}
}

.container section{
	padding: 70px 0;
}

.h2_txt::first-letter{
	color: #E50012;
}

.hover-opacity {
  transition-property: opacity;
  transition-duration: 0.5s;
}
.hover-opacity:hover {
  opacity: 0.5; 
}

.right_arrow_after::after{
	content: '\3e';
	font-family: 'Font Awesome 5 Free';
	margin-left: 5px;
	color: #E50012;
}	

a {
	color: #4D4D4D;
}

a:hover{
	color: #E50012;
}

.bgcolor_pink{
	background-color: #FAF0F0;
}

.top_box1{
	border-top: 1px dashed #000000;
	border-bottom: 1px dashed #000000;
}

.top_box2{
	width: 150px;
}
.top_box3{
	width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
.top_box3{
	width: 100%;
}
}

.slider2 div{
}

.underline_redblack{
  position: relative;
  border-bottom: 5px solid #000000;/*右：黒*/
}
.underline_redblack::before{
  content: '';
  position: absolute;
  bottom: -5px;
  width: 40%;
  height: 5px;
  background: #E50012;/*左：赤*/
}

.top_box4 li{
	border-right: 1px dashed #000000;	
}

.top_box4 li:first-child{
	border-left: 1px dashed #000000;	
}

.wbr{
  /* CJKテキストでの折り返しを無効化 */
  word-break: keep-all;
}


/* footer
---------------------------------------------------*/
footer{
	background-color: #F0F0F0;
}

footer .container{
	padding: 70px 0 30px 0;
}

footer dt{
	margin-bottom: 5px;
	position: relative;
	display: inline-block;
	padding: 0 0 0 23px;
	vertical-align: middle;
	text-decoration: none;
}
footer dt::before,
footer dt::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.sample5-3::before{
	width: 20px;
	height: 20px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #E50012;
}
.sample5-3::after{
	left: 5px;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

footer dd{
	margin: 5px 0;
	padding: 0 0 0 23px;
}

footer dd:last-child{
	margin-bottom: 30px;
}

.dashedline_top{
	border-top: 1px dashed #000000;	
}





/* ページトップへ戻る
---------------------------------------------------*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #E50012;
    text-align: center;
    color: #FFFFFF;
    width: 50px;
    padding: 0;
    font-size: 20px;
	line-height: 50px;
    text-decoration: none;
	border-radius: 50%;
}
.pagetop a:hover {
    display: block;
    text-decoration: none;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}