@charset "UTF-8";
/* --------------------------------------------------
シングルページのため１つにまとめて作成、今後増えるようなら分割&@import


-------------------------------------------------- */
img {
  height: auto;
  /* width: auto\9; was the original*/
  border-style: none;
  vertical-align: bottom;
  max-width: 100%;
}
img[src$=".svg"] {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

a, a:link, a:visited, a:hover, a:active {
  color: #000;
  text-decoration: none;
}

/*-------------------------------------------------- */

html , body{
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		vertical-align: baseline;
		background: transparent;
		font-family: "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, header, section, article, aside, footer, figure, figcaption, nav {
	font-family: "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
body {
	position: relative;
}
.font_bc {
	font-family: 'Barlow Condensed';
	font-weight: 600;
}

.sp {
	display: none;
}

#container {
	min-width: 1020px;
	margin: auto;
	overflow: hidden;
}
.globalFooter {
	position: relative;
	z-index: 5;
}
/*header*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: auto;
	padding-top: 45px;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
header>.inner {
	display: block;
	height: 50px;
	width: 950px;
	padding: 0 35px;
	margin: auto;
}

#container.opn2 header {
	opacity: 1;
	transition: .5s;
	z-index: 20;
	visibility: visible;
}

#contents {
	z-index: 5;
}

#opening {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 25;
}
#container.opn #opening {
	pointer-events: none;
	height: 15px;
}
#opening>.inner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background:#c7000b;
	z-index: 25;
}

#bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 15px;
	background:#c7000b;
	opacity: 0;
	z-index: 21;
}

#bar.active {
	opacity: 1;
}

section {
	position: relative;
	background: #fff;
	z-index: 2;
}
#container.opn section>.inner {
	opacity: 1;
	transition: .3s;
}
section>.inner {
	opacity: 0;
}

h1 {
	float: left;
	display: block;
}
nav.dars-menu {
	float: left;
	width: 790px;
	margin: 3px auto 0;
}
nav.nav li {
	display: inline-block;
	margin-left: 55px;
	line-height: 16px;
}
nav.nav li>a {
	position: relative;
	display: block;
	height: 16px;
	width: auto;
}

.img_anim {
	position: relative;
}
.img_anim img {
	position: relative;
	opacity: 0;
	z-index: 2;
}
.open_anim {
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #c7000b;
	z-index: 3;
}
.img_anim:after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #c7000b;
	z-index: 1;
}


/*modal*/
#modal {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,0.8);
	z-index: 200;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#modal.open {
	visibility: visible;
}
#modal ul {
	height: 100%;
}
#modal li {
	position: absolute;
	width: 100%;
	height: 100%;
	visibility: hidden;
}
#modal li.active {
	visibility: visible;
}
#modal .inner {
	position: relative;
	width: 67%;
	height: 0;
	padding-bottom: 37.6875%;
}
#modal .inner iframe{
	display: block;
	width: 100%;
	height: 100%;
}
#modal #close,
#modal #close span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#modal #close {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 44px;
	margin: 30px;
	cursor: pointer;
	opacity: 0;
}
#modal #close span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #c7000b;
	border-radius: 0;
}
#modal #close span:nth-of-type(1) {
  top: 0;
}
#modal #close span:nth-of-type(2) {
  top: 20px;
	opacity: 0;
}
#modal #close span:nth-of-type(3) {
  bottom: 0;
}
#modal #close::after {
  position: absolute;
  left: 0;
  bottom: -30px;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
#modal.open #close {
	opacity: 1;
}
#modal.open #close::after {
  bottom: -25px;
}
#modal.open #close span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
#modal.open #close span:nth-of-type(2) {
  opacity: 0;
}
#modal.open #close span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

/*concept*/
#concept {
	padding-top: 80px;
}
#concept>.inner {
	position: relative;
	padding-bottom: 95px;
	width: 950px;
	margin: auto;
}
#concept .box {
	width: 700px;
	margin: 0 auto 87px;
}
#concept .box p {
	margin-bottom: 60px;
	font-weight: 600;
	line-height: 2.5;
	font-size: 20px;
}
#concept .box dl {
	text-align: center;
}
#concept .box dt {
	margin-bottom: 50px;
}
#concept .img01 {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 145px;
	margin-right: -160px;
}
#concept .img02 {
	display: block;
	width: 514px;
	margin: auto;
	margin-bottom: 40px;
}
#concept .img01:after {
	left: 40px;
	top: 55px;
}
#concept .img02:after {
	right: 110px;
	top: 40px;
}

#concept .img03 {
	position: absolute;
	bottom: 0;
	left: 0;
	margin-bottom: 218px;
	margin-left: -210px;
	z-index: 4;
}
#concept .img04 {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 370px;
	margin-left: 70px;
	z-index: 4;
}
nav.nav li>a::after  {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	margin-top: 5px;
	background-color: #c7000b;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 300ms;
}
nav.nav li>a:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
	
}

/*main*/
#main {
	z-index: 11;
	overflow: hidden;
		border-top: solid 15px #00000000 ;
	opacity: 1;
}
#main.set {
	border-top: solid 15px #c7000b;
}
#main>.inner {
	position: relative;
	width: 100%;
	min-width: 950px;
	margin: auto;
	padding-bottom: 58.59%;
	line-height: 0;
	border-top: 0;
	box-sizing: border-box;
	opacity: 1;
}
#main>.inner>.main {
	position: absolute;
	width: 100%;
	transform: scale(1.2);
	min-width: 950px;
	opacity: 0;
	transition: 2s;
}
#main>.inner>.main.move {
	transform: scale(1);
	transition: 1.5s;
}
#main>.inner>.img_dars {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 56.5%;
	min-width: initial;
	margin-left: -39.03%;
	z-index: 61;
	opacity: 0;
	transition: 1s;
}
#container.opn2 #main>.inner>.img_dars {
	opacity: 1;
	transition: 1s;
}
#main>.inner>.main_text{
	position: absolute;
	width: 12.26%;
	left: 50%;
	top: 0;
	margin-top: 12.26%;
	margin-left: 22.03%;
	opacity: 0;
	transition: 1s;
}
#main .news {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 18.35%;
	margin-left: 19.7%;
	margin-bottom: 5.7%;
	opacity: 0;
	transition: .5s;
}
#main .news h3 {
	width: 18.72%;
	display: block;
	margin: 0 auto 5.8%;
}
#main .news li {
	margin-bottom: 15px;
}
#main .news li a {
	display: block;
}
#main .news li:last-child {
	margin-bottom: 0;
}
#container.opn2 #main .news {
	opacity: 1;
	transition: .5s;
}
#container.opn2 #main .news a:hover {
	opacity: .7;
	transition: .5s;
}
#main .news img {
	width: 100%;
}

#container.opn2 #main>.inner>.main_text {
	opacity: 1;
	transition: 1s;
}
.anim {
	opacity: 1;
}

.sec {
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.sec.active {
	opacity: 1;
	visibility: visible;
}
h3 {
	margin-bottom: 60px;
	text-align: center;
}
h3>img {
	display: block;
	margin: auto;
}
h3>span {
	display: inline-block;
	margin-top: 20px;
	padding: 0 5px;
	font-size: 20px;
	font-weight: 600;
	border-bottom: solid 4px #c7000b;
}

/*eat_with_everyone*/
#eat_with_everyone {
	margin-bottom: 0;
	padding: 55px 0;
	background-color: #c7000b;
}
#eat_with_everyone .inner {
	width: 780px;
	margin: auto;
}
#eat_with_everyone h2 {
	text-align: center;
}
#eat_with_everyone h3 {
	margin-bottom: 40px;
}
#eat_with_everyone h3 span.small {
	position: relative;
	padding: 0 15px;
	color: #fff;
	border: none;
}
#eat_with_everyone h3 span.small:before {
	content: '';
	display: block;
	position: absolute;
	right: 100%;
	top: 50%;
	margin-top: -13px;
	width: 26px;
	height: 26px;
	background: url(../img/markup_left.svg) top center / contain no-repeat;
}
#eat_with_everyone h3 span.small:after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	background: url("../img/markup_right.svg") top center / contain no-repeat;
}
#eat_with_everyone .info {
	display: block;
	width: 720px;
	margin: 0 auto 25px;
	font-size: 20px;
	color: #fff;
}
#eat_with_everyone .info li {
	display: block;
	font-weight: bold;
	line-height: 1.5;
}
#eat_with_everyone .info li a {
	color: #fff;
}
#eat_with_everyone .info .howto .tit {
	position: absolute;
	display: inline-block;
	font-weight: bold;
}
#eat_with_everyone .info .howto .text {
	display: block;
	padding-left: 5em;
	font-weight: bold;
}
#eat_with_everyone .text01 {
	width: 440px;
	margin: 0 auto 25px;
	color: #fff;
	font-size: 23px;
	font-weight: bold;
	text-align: justify;
	text-align-last: justify;
	text-justify: inter-ideograph;
}
#eat_with_everyone .text02 {
	margin-bottom: 30px;
	color: #fff;
	font-size: 38px;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
}
#eat_with_everyone .text02 span {
	display: inline-block;
	padding-bottom: 8px;
	border-bottom: solid 3px #000;
}
#eat_with_everyone .attention {
	background: url("../img/horn_red.svg") top -11px left -11px / auto no-repeat,url("../img/horn_red.svg") top -11px right -11px / auto no-repeat,url("../img/horn_red.svg") bottom -11px left -11px/ auto no-repeat,url("../img/horn_red.svg") bottom -11px right -11px / auto no-repeat;
	background-color: #231815;
	margin-bottom: 40px;
}
#eat_with_everyone .attention dt {
	position: relative;
	font-size: 20px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

#eat_with_everyone .attention .btn_ac {
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 3px;
	height: 17px;
	margin: -9px 30px 0;
	background: currentColor;
	border-radius: 0;
	transition: .5s;
}
#eat_with_everyone .attention .btn_ac::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
	transition: .5s;
}
#eat_with_everyone .attention.open dt .btn_ac {
	transform: rotate(45deg);
}
#eat_with_everyone .attention dd {
	color: #fff;
}
#eat_with_everyone .attention .accordion {
	display: none;
	height: auto;
	padding: 0 28px;
	color: #fff;
	font-size: 14px;
	line-height: 2;
	visibility: visible;
	overflow: hidden;
	opacity: 1;
}
#eat_with_everyone .attention .accordion li {
	padding-left: 1em;
	text-indent: -1em;
}

#eat_with_everyone .attention .accordion .ac_inner {
	padding-bottom: 25px;
}
#eat_with_everyone .apply_qa {
	padding: 45px 0 65px;
	background: url(../img/horn_red.svg) top -11px left -11px / auto no-repeat,url(../img/horn_red.svg) top -11px right -11px / auto no-repeat,url(../img/horn_red.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_red.svg) bottom -11px right -11px / auto no-repeat;
	background-color: #fff;
	text-align: center;
	font-size: 23px;
}

#eat_with_everyone .apply_qa h4 {
	position: relative;
	display: inline-block;
	padding-bottom: 0;
	margin-bottom: 30px;
	margin-right: -0.5em;
	font-weight: bold;
	line-height: 1;
	font-size: 32px;
	color: #c7000b;
}
#eat_with_everyone .apply_qa p {
	font-weight: bold;
}
#eat_with_everyone .announce {
	display: inline-block;
	height: 38px;
	width: 350px;
	margin-top: 20px;
	line-height: 38px;
	font-weight: bold;
	color: #fff;
	background: url("../img/horn_white.svg") top -11px left -11px / auto no-repeat,url("../img/horn_white.svg") top -11px right -11px / auto no-repeat,url("../img/horn_white.svg") bottom -11px left -11px/ auto no-repeat,url("../img/horn_white.svg") bottom -11px right -11px / auto no-repeat;
	background-color: #c7000b;
}
#eat_with_everyone .apply_qa .info_area dt {
	display: inline-block;
	height: auto;
	width: auto;
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 8px 33px;
	line-height: 1;
	font-weight: bold;
	font-size: 15px;
	background: url(../img/horn_white.svg) top -11px left -11px / auto no-repeat,url(../img/horn_white.svg) top -11px right -11px / auto no-repeat,url(../img/horn_white.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_white.svg) bottom -11px right -11px / auto no-repeat;
	background-color: #c7000b;
	color: #fff;
}
#eat_with_everyone .apply_qa dl.info_area {
	color: #231815;
}
#eat_with_everyone .apply_qa .info_area dd {
	color: #231815;
	font-weight: bold;
	font-size: 18px;
}
#eat_with_everyone .apply_qa h4:before {
	content: '';
	display: block;
	position: absolute;
	right: 100%;
	top: 50%;
	margin-right: 20px;
	margin-top: -14px;
	width: 28px;
	height: 28px;
	background: url(../img/markup_left.svg) top center / contain no-repeat;
}
#eat_with_everyone .apply_qa h4:after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	margin-left: 0.1em;
	background: url(../img/markup_right.svg) top center / contain no-repeat;
}
#eat_with_everyone .apply_qa .red {
	color: #c7000b;
}
#eat_with_everyone .apply_qa .finish {
	width: 660px;
	margin: auto;
	padding: 20px 0;
	text-align: center;
	font-size: 42px;
	line-height: 1;
	letter-spacing: 2px;
	background: url(../img/horn_white.svg) top -11px left -11px / auto no-repeat,url(../img/horn_white.svg) top -11px right -11px / auto no-repeat,url(../img/horn_white.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_white.svg) bottom -11px right -11px / auto no-repeat #c7000b;
	color: #fff;
}
#eat_with_everyone .apply_qa .enjoy {
	font-size: 25px;
	line-height: 1;
	margin: 20px auto 30px;
}
#btn_qa {
	position: relative;
	display: block;
	height: auto;
	width: 350px;
	margin: 25px auto 50px;
	padding: 12px;
	box-sizing: border-box;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	background: url(../img/horn_white.svg) top -11px left -11px / auto no-repeat,url(../img/horn_white.svg) top -11px right -11px / auto no-repeat,url(../img/horn_white.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_white.svg) bottom -11px right -11px / auto no-repeat;
	background-color: #3296d4;
}
#btn_qa:after {
	content:'';
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	width: 11px;
	height: 18px;
	margin-top: -9px;
	margin-right: 13px;
	background: url("../img/icon_arrow.svg") top center / contain no-repeat;
}
#btn_qa>img {
	margin-left: 15px;
}

#eat_with_everyone h5 {
	display: flex;
	margin-bottom: 30px;
	align-items: center;
	font-size: 15px;
	font-weight: bold;
	color: #000;
}
#eat_with_everyone h5:before {
	margin-right: 1em;
}
#eat_with_everyone h5:after {
	margin-left: 1em;
}
#eat_with_everyone h5:before, #eat_with_everyone h5:after {
	content: "";
	height: 2px;
	flex-grow: 1;
	border-radius: 4px;
	background-color: #000;
}
#eat_with_everyone .example {
	width: 600px;
	margin: auto;
}
#eat_with_everyone .example ul {
	font-size: 18px;
}
#eat_with_everyone .example ul>li {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
}
#eat_with_everyone .example ul>li .red {
	font-size: 32px;
}
#eat_with_everyone .example ul>li:last-child {
	margin-bottom: 30px;
}
#eat_with_everyone .attention2 {
	width: 600px;
	background: url(../img/horn_white.svg) top -11px left -11px / auto no-repeat,url(../img/horn_white.svg) top -11px right -11px / auto no-repeat,url(../img/horn_white.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_white.svg) bottom -11px right -11px / auto no-repeat;
	background-color: #231815;
	margin: 0 auto 0;
}
#eat_with_everyone .attention2 dt {
	position: relative;
	font-size: 20px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

#eat_with_everyone .attention2 .btn_ac {
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 3px;
	height: 17px;
	margin: -9px 30px 0;
	background: currentColor;
	border-radius: 0;
	transition: .5s;
}
#eat_with_everyone .attention2 .btn_ac::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
	transition: .5s;
}
#eat_with_everyone .attention2.open dt .btn_ac {
	transform: rotate(45deg);
}
#eat_with_everyone .attention2 dd {
	color: #fff;
}
#eat_with_everyone .attention2 .accordion {
	display: none;
	height: auto;
	padding: 0 28px;
	color: #fff;
	font-size: 14px;
	line-height: 2;
	visibility: visible;
	overflow: hidden;
	opacity: 1;
}
#eat_with_everyone .attention2 .accordion li {
	padding-left: 1em;
	text-indent: -1em;
}

#eat_with_everyone .attention2 .accordion .ac_inner {
	padding-bottom: 25px;
	text-align: left;
}
#eat_with_everyone .attention2 .tit {
	margin-top: 2em;
}
#eat_with_everyone .attention2 .tit:first-of-type {
	margin-top: 0;
}
#eat_with_everyone .attention2 a {
	color: #fff;
	text-decoration: underline;
}
#eat_with_everyone .apply_qa .attention2 p {
	font-weight: normal;
}



/*tv_cm*/
#tv_cm {
	padding-top: 75px;
	padding-bottom: 120px;
}
#tv_cm>.inner {
	position: relative;
	width: 950px;
	margin: auto;
	min-width: 1020px;
}
#tv_cm .youtube {
	position: relative;
	width: 675px;
	margin: 0 auto 150px;
}
#tv_cm .img05 {
	display: block;
	width: 581px;
	margin-bottom: 45px;
	margin-left: 530px;
}
#tv_cm .img05:after {
	right: 95px;
	top: 45px;
}
#tv_cm .img06 {
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 140px;
	z-index: 4;
}

#btn01 {
	width: 640px;
	cursor: pointer;
}
#btn01 .modal_btn {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 129px;
	height: 163px;
	margin-top: -90px;
	margin-left: -62px;
	background: url(../img/btn_cm.png) center / contain no-repeat;
	transition: .3s;
}
#btn01:hover .modal_btn {
	background: url("../img/btn_cm_on.png") center / contain no-repeat;
}



/*pickup*/
#pickup {
	padding-top: 50px;
	padding-bottom: 80px;
}
#pickup>.inner {
	position: relative;
	width: 950px;
	margin: auto;
}
#pickup .box {
	display: flex;
	width: 100%;
	margin-bottom: 0;
	flex-wrap: wrap;
}
#pickup .box dl:nth-child(odd) {
	margin-right: 70px;
}
#pickup .box dl {
	float: left;
	width: 440px;
}
#pickup .box dd {
	margin-top: 20px;
	font-weight: 600;
	font-size: 14px;
}

#pickup dl dt>a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#pickup dl dt>a>img {
	width: 540px;
	transform: scale(1);
	transition: .3s;
}
#pickup dl dt>a:hover>img {
	transform: scale(1.04);
	transition: .3s;
}


/*taste*/
#taste {
	padding-top: 50px;
	padding-bottom: 80px;
	border-bottom: solid 70px #c7000b;
}
#taste p {
	margin-bottom: 60px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 2;
}
#taste .youtube {
	position: relative;
	width: 675px;
	margin: auto;
}
#taste .img07 {
	position: absolute;
	top: 0;
	left: 50%;
	margin: 40px 0 0 330px;
}
#btn02 {
	width: 640px;
	cursor: pointer;
}
#btn02 .modal_btn {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	background-image: url("../img/btn_movie.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .3s;
}
#btn02:hover .modal_btn {
	background-image: url("../img/btn_movie_on.png");
}

/*type*/
#type {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	background: #fff;
}
#type>.bg {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 155vh;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: 1;
	transition: opacity .5s;
	opacity: 0;
}
#container.opn #type>.bg.active {
	opacity: 1;
}
#type>.bg.milk {background-image: url(../img/bg_milk.jpg);}
#type>.bg.bitter {background-image: url(../img/bg_bitter.jpg);}
#type>.bg.white {background-image: url(../img/bg_white.jpg);}
#type>.bg.ichigo {background-image: url(../img/bg_ichigo.jpg);}
#type .inner {
	position: absolute;
	top: 0;
	left: 50%;
	width: 950px;
	height: 100%;
	margin: 0 0 0 -475px;
	z-index: 2;
}
#btn_menu {
	max-width: 895px;
	margin: auto;
	padding-top: 7.63vh;
}
#btn_menu li {
	float: left;
	width: 171px;
	height: 7.36vh;
	margin-right: 70px;
	text-align: center;
}
#btn_menu li:last-child {
	margin-right: 0;
}
#btn_menu li a {
	display: block;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
	cursor: pointer;
	font-size: 0;
	text-indent: -9999px;
	overflow: hidden;
	transition: .5s;
}
#btn_menu li.cursor_none {
	pointer-events: none;
}
#btn_menu li.on {
	pointer-events: none;
}
#btn_menu li a:hover {
	transition: .5s;
}
#btn_menu li#btn_milk a,#btn_menu li#btn_milk.cursor_none:hover a{background-image:url("../img/btn_milk.png");}
#btn_menu li#btn_bitter a,#btn_menu li#btn_bitter.cursor_none:hover a{background-image:url("../img/btn_bitter.png");}
#btn_menu li#btn_white a,#btn_menu li#btn_white.cursor_none:hover a{background-image:url("../img/btn_white.png");}
#btn_menu li#btn_ichigo a,#btn_menu li#btn_ichigo.cursor_none:hover a{background-image:url("../img/btn_ichigo.png");}
#btn_menu li#btn_milk.on a,#btn_menu li#btn_milk:hover a{background-image:url("../img/btn_milk_on.png");}
#btn_menu li#btn_bitter.on a,#btn_menu li#btn_bitter:hover a{background-image:url("../img/btn_bitter_on.png");}
#btn_menu li#btn_white.on a,#btn_menu li#btn_white:hover a{background-image:url("../img/btn_white_on.png");}
#btn_menu li#btn_ichigo.on a,#btn_menu li#btn_ichigo:hover a{background-image:url("../img/btn_ichigo_on.png");}

.type_cont .sec {
	position: relative;
	margin-top: 9.7vh;
}
.type_cont .sec>div {
	position: absolute;
	top: 0;
	left: 50%;
}
.type_cont .sec>.text {
	font-size: 2.7vh;
	color: #fff;
	font-weight: 600;
	text-align: left;
	margin-left: -20vh;
	z-index: 2;
	line-height: 2;
	letter-spacing: 0.1em;
}
.hide {
	opacity: 0;
}
#type .top {
	position: absolute;
	left: 50%;
	width: auto;
	height: 10vh;
	margin: 0 0 0 -38vh;
	z-index: 1;
}
#type img[src$=".svg"] {
	max-width: inherit;
	max-height: inherit;
	height: 100%;
}
#type .middle {
	height: 8.3vh;
	margin: 23vh 0 0 16vh;
	z-index: 1;
}
#type .last {
	height: 8.33vh;
	margin: 53vh 0 0 -46.25vh;
	z-index: 1;
}
#type .text01{margin-top: -3vh;}
#type .text02{margin-top: 15vh;}
#type .text03 {
	margin-top: 37vh;
	margin-left: -21vh;
	font-size: 3vh;
	line-height: 1;
}
#type .text04 {
	margin-top: 53vh;
}
#type .peak {
	width: 18.33vh;
	margin: 26.6vh 0 0 -42vh;
}
#type .peak svg {
	width: 100%;
	height: auto;
}

#type .peak>.text_peak {
	position: absolute;
	width: 46%;
	top: 50%;
	height: auto;
	left: 50%;
	margin-top: -9%;
	margin-left: -23%;
}

#type .arrow {
	display: block;
	left: 50%;
	height: 4.72vh;
	margin-left: -1.73vh;
}
#type .arrow01 {margin-top: 8.1vh;}
#type .arrow02 {margin-top: 28.47vh;}
#type .arrow03 {margin-top: 44.5vh;}
#type .arrow>div.arrow_bottom {
	width: 24px;
	height: auto;
	line-height: 0;
	opacity: 0;
	transition: .4s;
}
#type .arrow>img {
	opacity: 1;
}
#white_area .text {
	color: #000;
}


/*secret*/
#secret {
	padding-top: 108px;
	padding-bottom: 93px;
}
#secret>.inner {
	width: 950px;
	margin: auto;
}
#secret p {
	margin: 0 auto 60px;
	font-size: 20px;
	font-weight: 600;
	line-height: 2;
	text-align: center;
}
#secret .box>img {
	position: absolute;
	margin: 0 0 0 25px;
}
#secret .text_twotype {
	background-image: url(../img/text_bg.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	height: auto;
	line-height: normal;
	padding: 0 5px;
	margin: 0 3px 0 3px;
	display: inline-block;
}

/*img_area*/
.img_area_bg {
	position: fixed;
	top: 0;
	width: 100%;
	height: 126vh;
	margin-top: 0;
	background: url(../img/img_area.jpg) bottom center / cover no-repeat;
	z-index: 1;
	opacity: 1;
}
#container.opn .img_area_bg.none {
	opacity: 0;
} 
#container.opn .img_area_bg{
	opacity: 1;
}
#img_area {
	width: 100%;
	height: 500px;
	overflow: inherit;
	background: transparent;
	z-index: 2;
}

#img_area .img08 {
	position: absolute;
	left: 50%;
	top: 0px;
	margin: 0px 0px 0px 350px;
}

/*lineup*/
#lineup {
	padding-top: 108px;
	padding-bottom: 80px;
}
#lineup>.inner {
	width: 950px;
	margin: auto;
}
#lineup>.inner .products {
	width: 850px;
	margin-left: 100px;
}
#lineup>.inner #products ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
#lineup li {
	float: left;
	width: 385px;
	margin-bottom: 50px;
}
#lineup li:nth-child(odd) {
	margin-right: 80px;
}
#lineup li:last-child(2){
	margin-bottom: 0;
}
#lineup li:last-child {
	margin-bottom: 0;
}
#lineup li>img {
	width: 260px;
	margin-bottom: 20px;
}
#lineup li dt {
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 20px;
	line-height: 27px;
}
#lineup li dt span {
	margin-right: 12px;
}
#lineup li dd {
	font-size: 15px;
	font-weight: 600;
}
#lineup .img09{
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 40px 0 0 -530px;
}


/*recipe*/
#recipe {
	padding-top: 108px;
	padding-bottom: 93px;
}
#recipe>.inner {
	width: 950px;
	margin: auto;
}
#recipe>.inner .recipes {
	width: 920px;
	margin: auto;
}
#recipe>.inner ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
#recipe li {
	float: left;
	width: 280px;
	margin-bottom: 40px;
}
#recipe li dt {
	overflow: hidden;
	margin-bottom: 10px;
}
#recipe li img {
	transform: scale(1);
	transition: .3s;
}
#recipe li a:hover img {
	transform: scale(1.04);
	transition: .3s;
}
#recipe li:nth-child(2n) {
	margin: 0 40px;
}
#recipe li:nth-child(3n) {
	margin-bottom: 0;
}
#recipe li dd {;
	font-weight: 600;
	font-size: 15px;
}
#recipe .btn_recipe {
	display: block;
	width: 350px;
	height: 46px;
	margin: auto;
	background: url("../img/btn_bg.png") top center / 100% 100% no-repeat;
	text-align: center;
	line-height: 46px;
	font-size: 19px;
	font-weight: 600;
	color: #c7000b;
}

#recipe .btn_recipe:hover {
	color: #fff;
	transition: .5s;
	background: url("../img/btn_bg_on.png") top center / 100% 100% no-repeat;
}
#recipe .img_anim:after {
	content: none;
}


#sns {
	padding-bottom: 40px;
}
#sns>.inner {
	position: relative;
	width: 950px;
	margin: auto;
	text-align: center
}
#sns li {
	display: inline-block;
}
#sns li:first-child {
	margin-right: 60px;
}

#to_top {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 11;
	margin-right: 30px;
	margin-bottom: 30px;
	visibility: hidden;
	transition: opacity .8s;
	opacity: 0;
	z-index: 11;
}
#to_top.btn_top_set {
	position: absolute;
	visibility: visible;
	margin-bottom: 120px;
	opacity: 1;
}
#to_top.btn_top_fixed {
	position: fixed;
	visibility: visible;
	margin-bottom: 30px;
	opacity: 1;
}

/* ------------------------  break point ------------------------ */
/* ------------------- --------------------- -------------------- */

@media screen and (min-width:768px) and ( max-width:1024px) {
/*type*/

#type .top {
	position: absolute;
	left: 50%;
	width: auto;
	height: 10vh;
	margin: 0 0 0 -32vh;
	z-index: 1;
}
#type img[src$=".svg"] {
	max-width: inherit;
	max-height: inherit;
	height: 100%;
}
#type .middle {
	height: 8.3vh;
	margin: 23vh 0 0 -10vh;
	z-index: 1;
}
#type .last {
	height: 8.33vh;
	margin: 53vh 0 0 -33.25vh;
	z-index: 1;
}
#type .text01{margin-top: -3vh;}
#type .text02{margin-top: 15vh;}
#type .text03 {
	margin-top: 34vh;
	margin-left: -14vh;
	font-size: 3vh;
	line-height: 1.5;
}
#type .text04 {
	margin-top: 53vh;
}
#type .peak {
	width: 18.33vh;
	margin: 25.6vh 0 0 -35vh;
}
#type .peak svg {
	width: 100%;
	height: auto;
}

#type .peak>.text_peak {
	position: absolute;
	width: 46%;
	top: 50%;
	height: auto;
	left: 50%;
	margin-top: -9%;
	margin-left: -23%;
}
#main .news li {
	margin-bottom: 8px;
}


}  



/* ------------------------  break point ------------------------ */
/* ------------------- --------------------- -------------------- */

@media only screen and (max-width: 768px) {
img {
  width: 100%;
}
img[src$=".svg"] {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

/*-------------------------------------------------- */

#container {
	min-width: 100%;
	margin: auto;
	overflow: hidden;
	z-index: 6;
	position: relative;
}
	
.sp {
	display: block;
}
.pc {
	display: none;
}
	
/*header*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: auto;
	padding-top: 45px;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
header>.inner {
	display: block;
	height: auto;
	width: 100%;
	padding: 0;
	margin: auto;
}
	
header .sp_menu_btn,
header .sp_menu_btn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
header .sp_menu_btn {
	position: fixed;
	right: 0;
	top: 0;
	width: 27px;
	height: 22px;
	margin: 7% 5% 0;
	cursor: pointer;
	opacity: 1;
	z-index: 10;
}
header .sp_menu_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #c7000b;
  border-radius: 0;
}
header .sp_menu_btn span:nth-of-type(1) {
  top: 0;
}
header .sp_menu_btn span:nth-of-type(2) {
	top: 9px;
}
header .sp_menu_btn span:nth-of-type(3) {
  bottom: 0;
}
header .sp_menu_btn::after {
  position: absolute;
  left: 0;
  bottom: -30px;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
header .sp_menu_btn.open {
	opacity: 1;
}
header .sp_menu_btn.open::after {
  bottom: -25px;
}
header .sp_menu_btn.open span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
header .sp_menu_btn.open span:nth-of-type(2) {
  opacity: 0;
}
header .sp_menu_btn.open span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
header .dars-menu {
	position: fixed;
	top: 100vh;
	height: 100vh;
	visibility: hidden;
	transition: .5s;
}
header .dars-menu.open {
	visibility: visible;
	top: 0;
	background: rgba(255,255,255,0.8);
	transition: .5s;
}
header .dars-menu>ul {
	width: 78.13%;
	margin: 100px auto 0;
}
header.opn2 header {
	opacity: 1;
	transition: .5s;
	z-index: 20;
	visibility: visible;
}

#opening {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
#container.opn #opening {
	pointer-events: none;
	height: 0;
	padding-top: 2%;
}
#opening>.inner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background:#c7000b;
	z-index: 20;
}

#bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	padding-top: 2%;
	background: #c7000b;
	opacity: 0;
	z-index: 21;
}

#bar.active {
	opacity: 1;
}

section {
	position: relative;
	background: #fff;
	z-index: 2;
}

h1 {
	position: absolute;
	float: none;
	display: block;
	width: 28.93%;
	left: 0;
	top: 0;
	margin: 7% 0 0 5%;
}
nav.dars-menu {
	float: none;
	width: 100%;
	margin: 0 auto 0;
}
nav.dars-menu a img {
	max-width: initial;
	max-height: initial;
	height: 100%;
}
nav.nav li {
	display: block;
	margin-left: 0;
	margin-bottom: 10px;
	line-height: 16px;
}
nav.nav li>a {
	position: relative;
	display: inline-block;
	height: auto;
	padding: 2px;
	width: auto;
	margin-bottom: 7%;
	padding-left: 5%;
	text-align: left;
}
nav.nav li>a:after {
	display: block;
}
.img_anim {
	position: relative;
}
.img_anim img {
	position: relative;
	opacity: 0;
	z-index: 2;
}
.open_anim {
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #c7000b;
	z-index: 3;
}
.img_anim:after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #c7000b;
	z-index: 1;
}


/*modal*/
#modal {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,0.8);
	z-index: 200;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#modal.open {
	visibility: visible;
}
#modal ul {
	height: 100%;
}
#modal li {
	position: absolute;
	width: 100%;
	height: 100%;
	visibility: hidden;
}
#modal li.active {
	visibility: visible;
}
#modal .inner {
	position: relative;
	width: 90%;
	height: 0;
	padding-bottom: 50.625%;
}
#modal .inner iframe{
	display: block;
	width: 100%;
	height: 100%;
}
#modal #close,
#modal #close span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#modal #close {
	position: fixed;
	right: 0;
	top: 0;
	width: 27px;
	height: 22px;
	margin: 7% 5% 0;
	cursor: pointer;
	opacity: 1;
	z-index: 10;
}
#modal #close span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #c7000b;
	border-radius: 0;
}
#modal #close span:nth-of-type(1) {
  top: 0;
}
#modal #close span:nth-of-type(2) {
  top: 9px;
	opacity: 0;
}
#modal #close span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}
#modal #close::after {
  position: absolute;
  left: 0;
  bottom: -30px;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
#modal.open #close {
	opacity: 1;
}
#modal.open #close::after {
  bottom: -25px;
}
#modal.open #close span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
#modal.open #close span:nth-of-type(2) {
  opacity: 0;
}
#modal.open #close span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/*concept*/
#concept {
	padding-top: 10.6%;
	z-index: 2;
}
#concept>.inner {
	position: relative;
	padding-bottom: 15%;
	width: 100%;
	margin: auto;
}
#concept .box {
	width: 100%;
	margin: 0 auto 0;
	padding-bottom: 157%;
}
#concept .box p {
	margin-left: 10%;
	margin-bottom: 13.13%;
	font-weight: 600;
	line-height: 2.2;
	font-size: 15px;
	font-size: 4vw;
}
#concept .box dl {
	text-align: center;
}
#concept .box dt {
	margin: 0 auto 5.6%;
	width: 70%;
}
#concept .box dd {
	width: 58.66%;
	margin: auto;
}
#concept .img01 {
	position: absolute;
	top: 0;
	right: 0;
	width: 37.33%;
	margin-top: 156%;
	margin-right: 0;
}
#concept .img02 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 81.6%;
	margin: 245% 0 0 11%;
}
#concept .img01:after {
	left: auto;
	right: 0;
	top: 0;
	margin-top: -30%;
	margin-right: -23%;
}
#concept .img02:after {
	left: 0;
	right: auto;
	top: 0;
	margin: -20% 0 0 -7%;
}

#concept .img03 {
	position: absolute;
	bottom: auto;
	top: 0;
	left: 0;
	width: 52%;
	margin-top: 210%;
	margin-bottom: 0;
	margin-left: -8%;
	z-index: 4;
}
#concept .img04 {
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	margin-top: 11%;
	margin-left: 0;
	margin-right: 5%;
	z-index: 4;
	width: 15.6%;
}
nav.nav li>a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	margin-top: 0;
	background-color: #c7000b;
	transform: none;
	border-radius: 0;
}
nav.nav li>a:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
	
}

/*main*/
#main {
	z-index: 11;
	overflow: hidden;
		border-top: solid 15px #00000000 ;
}
#main.set {
	border-top: none;
}
#main>.inner {
	position: relative;
	width: 100%;
	min-width: auto;
	margin: auto;
	padding-bottom: 137%;
	line-height: 0;
	border-top: 0;
	box-sizing: border-box;
}
#main>.inner>.main {
	position: absolute;
	width: 100%;
	transform: scale(1.3);
	min-width: 100%;
	opacity: 0;
	transition: 2s;
}
#main>.inner>.main.move {
	transform: scale(1);
	transition: 1.5s;
}
#main>.inner>.img_dars {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 96%;
	min-width: initial;
	margin-left: 2%;
	z-index: 11;
	opacity: 0;
	transition: 1s;
}
#container.opn2 #main>.inner>.img_dars {
	opacity: 1;
	transition: 1s;
}
#main>.inner>.main_text {
	position: absolute;
	width: 22%;
	left: auto;
	right: 0;
	top: 0;
	margin-top: 22.26%;
	margin-left: 0;
	margin-right: 4%;
	opacity: 0;
	transition: 1s;
}
#container.opn2 #main>.inner>.main_text {
	opacity: 1;
	transition: 1s;
}
#main .news {
	position: absolute;
	width: 38.4%;
	right: 0;
	left: auto;
	bottom: 0;
	margin: 0 1.5% 22.5% 0;
	z-index: 12;
}
#main .news li {
	margin-bottom: 4.13%;
}
.anim {
	opacity: 1;
}

.sec {
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.sec.active {
	opacity: 1;
	visibility: visible;
}
h3 {
	margin-bottom: 0;
	text-align: center;
}
h3>img {
	display: block;
	margin: auto;
	width: auto;
}
h3>span {
	display: inline-block;
	margin-top: 6.13%;
	padding: 0 1% 1%;
	font-size: 15px;
	font-size: 4vw;
	font-weight: 600;
	border-bottom: solid 4px #c7000b;
	line-height: 1;
}
	
/*eat_with_everyone*/
#eat_with_everyone {
	margin-bottom: 75px;
	padding: 10.66% 0 14.26%;
	background-color: #c7000b;
}
#eat_with_everyone .inner {
	width: 92%;
	margin: auto;
}
#eat_with_everyone h2 {
	text-align: center;
}
#eat_with_everyone h3 {
	margin-bottom: 7%;
}
#eat_with_everyone h3 span.small {
	position: relative;
	margin-top: 0;
	padding: 0 3%;
	color: #fff;
	border: none;
	font-size: 4vw;
}
#eat_with_everyone h3 span.markup {
	margin-top: 9%;
}
#eat_with_everyone h3 span.small {
	top: auto;
	bottom: 0;
}
#eat_with_everyone h3 span.small:before {
	width: 9%;
	height: 0;
	margin-bottom: -2%;
	padding-bottom: 9%;
	background: url(../img/markup_left.svg) top center / contain no-repeat;
}
#eat_with_everyone h3 span.small:after {
	width: 9%;
	height: 0;
	margin-bottom: -2%;
	padding-bottom: 9%;
	background: url("../img/markup_right.svg") top center / contain no-repeat;
}
#eat_with_everyone .info {
	display: block;
	width: 96%;
	margin: 0 auto 5.7%;
	font-size: 13px;
	font-size: 3.3vw;
	color: #fff;
}
#eat_with_everyone .info li {
	display: block;
	font-weight: bold;
	line-height: 1.6;
}
#eat_with_everyone .info .howto .tit {
	position: absolute;
	display: inline-block;
	font-weight: bold;
}
#eat_with_everyone .info .howto .text {
	display: block;
	padding-left: 5em;
	font-weight: bold;
}
#eat_with_everyone .text01 {
	margin-bottom: 4.5%;
	font-size: 15px;
	font-size: 3.8vw;
	width: 85.29%;
	text-align: center;
}
#eat_with_everyone .text02 {
	margin-bottom: 7.35%;
	color: #fff;
	font-size: 33px;
	font-size: 6.7vw;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
}
#eat_with_everyone .attention {
	background: url(../img/horn_red.svg) top -11px left -11px / auto no-repeat,url(../img/horn_red.svg) top -11px right -11px / auto no-repeat,url(../img/horn_red.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_red.svg) bottom -11px right -11px / auto no-repeat;
	background-color: #231815;
	margin-bottom: 5.7%;
}
#eat_with_everyone .attention dt {
	position: relative;
	font-size: 20px;
	font-size: 3.4vw;
	height: auto;
	padding: 1.5% 0;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

#eat_with_everyone .attention .btn_ac,
#eat_with_everyone .attention2 .btn_ac{
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 3px;
	height: 0;
	padding-bottom: 4%;
	margin: -2% 5% 0;
	background: currentColor;
	border-radius: 0;
	transition: .5s;
}
#eat_with_everyone .attention .btn_ac::before,
#eat_with_everyone .attention2 .btn_ac::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
	transition: .5s;
}
#eat_with_everyone .attention.open dt .btn_ac,
#eat_with_everyone .attention.open2 dt .btn_ac{
	transform: rotate(45deg);
}
#eat_with_everyone .attention dd {
	color: #fff;
}
#eat_with_everyone .attention .accordion {
	display: none;
	height: auto;
	padding: 0 3%;
	color: #fff;
	font-size: 11px;
	font-size: 3vw;
	line-height: 1.5;
	visibility: visible;
	overflow: hidden;
	opacity: 1;
}
#eat_with_everyone .attention .accordion li {
	padding-left: 1em;
	text-indent: -1em;
}

#eat_with_everyone .attention .accordion .ac_inner {
	padding-bottom: 25px;
}
#eat_with_everyone .apply_qa {
	padding: 8.6% 0;
	background: url(../img/horn_red.svg) top -11px left -11px / auto no-repeat,url(../img/horn_red.svg) top -11px right -11px / auto no-repeat,url(../img/horn_red.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_red.svg) bottom -11px right -11px / auto no-repeat;
	background-color: #fff;
	text-align: center;
	font-size: 17px;
	font-size: 4vw;
}
#eat_with_everyone .apply_qa h4 {
	display: inline-block;
	padding-bottom: 0;
	padding-left: 0;
	margin-right: -0.5em;
	margin-bottom: 5.7%;
	font-size: 17px;
	font-size: 5vw;
	border-bottom: none;
}
#eat_with_everyone .apply_qa p {
	font-weight: bold;
}
#eat_with_everyone .apply_qa .finish {
	width: 88.1%;
	margin: auto;
	padding: 4% 0;
	text-align: center;
	font-size: 42px;
	font-size: 5.7vw;
	letter-spacing: 0.1em;
	line-height: 1;
	background: url(../img/horn_white.svg) top -11px left -11px / auto no-repeat,url(../img/horn_white.svg) top -11px right -11px / auto no-repeat,url(../img/horn_white.svg) bottom -11px left -11px/ auto no-repeat,url(../img/horn_white.svg) bottom -11px right -11px / auto no-repeat #c7000b;
	color: #fff;
}
#eat_with_everyone .apply_qa .enjoy {
	font-size: 13px;
	font-size: 4vw;
	line-height: 1;
	margin: 5% auto 6%;
}
#eat_with_everyone .announce {
	display: inline-block;
	height: auto;
	width: 79.7%;
	padding: 3% 0;
	margin-top: 4.3%;
	line-height: 1;
	font-weight: bold;
	font-size: 4.5vw;
	color: #fff;
	background: url(../img/horn_white.svg) top -12px left -12px / auto no-repeat,url(../img/horn_white.svg) top -12px right -12px / auto no-repeat,url(../img/horn_white.svg) bottom -12px left -13px/ auto no-repeat,url(../img/horn_white.svg) bottom -12px right -12px / auto no-repeat;
	background-color: #c7000b;
}
#eat_with_everyone .apply_qa h4:before {
	margin-right: 0.3em;
	margin-top: -4%;
	width: 8.17%;
	height: 0;
	padding-bottom: 8.17%;
	background: url(../img/markup_left.svg) top center / contain no-repeat;
}
#eat_with_everyone .apply_qa h4:after {
	margin-left: 0;
	margin-top: -4%;
	width: 8.17%;
	height: 0;
	padding-bottom: 8.17%;
	background: url(../img/markup_right.svg) top center / contain no-repeat;
}
#eat_with_everyone .apply_qa h4+p {
	font-size: 4.1vw;
}
#eat_with_everyone .apply_qa .info_area dd {
	font-size: 13px;
	font-size: 3.3vw;
}
#eat_with_everyone .apply_qa .info_area dt {
	margin: 8% 0 2.6%;
	background: url(../img/horn_white.svg) top -12px left -12px / auto no-repeat,url(../img/horn_white.svg) top -12px right -12px / auto no-repeat,url(../img/horn_white.svg) bottom -12px left -12px/ auto no-repeat,url(../img/horn_white.svg) bottom -12px right -12px / auto no-repeat;
	background-color: #c7000b;
	font-size: 14px;
	font-size: 3.3vw;
}
	
#btn_qa {
	width: 84.49%;
	margin: 10.14% auto 10.57%;
	padding: 12px;
	box-sizing: border-box;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	background: url(../img/horn_white.svg) top -12px left -12px / auto no-repeat,url(../img/horn_white.svg) top -12px right -12px / auto no-repeat,url(../img/horn_white.svg) bottom -12px left -12px/ auto no-repeat,url(../img/horn_white.svg) bottom -12px right -12px / auto no-repeat;
	background-color: #3296d4;
}
#btn_qa > img{
	width: 1.4em;
	margin-left: 0.5em;
}
#eat_with_everyone .example {
	width: 100%;
	margin: auto;
}
#eat_with_everyone h5 {
	display: flex;
	width: 86.95%;
	margin: auto;
	margin-bottom: 4.5%;
	align-items: center;
	font-size: 15px;
	font-weight: bold;
	color: #000;
}
#eat_with_everyone .example ul>li {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 2%;
	font-size: 3vw;
}
#eat_with_everyone .example ul>li .red {
	font-size: 21px;
	font-size: 4.5vw;
}
#eat_with_everyone .attention2 {
	width: 88.11%;
	background: url(../img/horn_white.svg) top -12px left -12px / auto no-repeat,url(../img/horn_white.svg) top -12px right -12px / auto no-repeat,url(../img/horn_white.svg) bottom -12px left -12px/ auto no-repeat,url(../img/horn_white.svg) bottom -12px right -12px / auto no-repeat;
	background-color: #231815;
	margin: 0 auto 0;
}
#eat_with_everyone .attention2 dt {
	position: relative;
	width: auto;
	height: auto;
	padding: 1.5%;
	line-height: 1.5;
	font-size: 14px;
	font-size: 3.4vw;
}
#eat_with_everyone .attention2 .accordion li {
	padding-left: 1em;
	text-indent: -1em;
}
#eat_with_everyone .attention2 .accordion {
	display: none;
	height: auto;
	padding: 0 3%;
	color: #fff;
	font-size: 11px;
	font-size: 3vw;
	line-height: 1.5;
	visibility: visible;
	overflow: hidden;
	opacity: 1;
}
	
/*tv_cm*/
#tv_cm {
	padding-bottom: 0;
}
#tv_cm>.inner {
	width: auto;
	min-width: auto;
	padding-bottom: 100%;
}

#tv_cm .youtube {
	position: relative;
	width: 100%;
	margin: auto;
}
#tv_cm .img05 {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 76.31%;
	margin-top: 80%;
	margin-bottom: 0;
	margin-left: 0;
}
#tv_cm .img05:after {
	right: auto;
	left: 0;
	top: 0;
	margin: 10% 0 0 -17%;
}
#tv_cm .img06 {
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	width: 46.66%;
	margin-top: 120%;
	margin-left: 5%;
	z-index: 4;
}
#btn01 {
	width: 640px;
	cursor: pointer;
}
#btn01 .modal_btn {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	height: 0;
	padding-bottom: 30%;
	margin-top: -15%;
	margin-left: -15%;
	background: url(../img/btn_cm.png) center / contain no-repeat;
	transition: .3s;
}
#btn01:hover .modal_btn {
	background: url("../img/btn_cm_on.png") center / contain no-repeat;
}
		

/*pickup*/
#pickup {
	padding-top: 20%;
	padding-bottom: 10%;
	z-index: 3;
}
#pickup h3 img {
	width: 34.13%;
}
#pickup>.inner {
	position: relative;
	width: 100%;
	margin: auto;
}
#pickup .box {
	display: block;
	width: 100%;
	margin-bottom: 0;
	flex-wrap: nowrap;
	padding-top: 10%;
}
#pickup .box dl:nth-child(odd) {
	margin-right:auto;
}
#pickup .box dl {
	float: none;
	width: 78.94%;
	margin: 0 auto 8% ;
}
#pickup .box dl:last-child {
	margin-bottom: 0;
}
#pickup .box dd {
	margin-top: 4%;
	font-weight: 600;
	font-size: 14px;
	font-size: 3.3vw;
}
#pickup dl dt>a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#pickup dl dt>a>img {
	width: 100%;
	transform: scale(1);
	transition: .3s;
}
#pickup dl dt>a:hover>img {
	transform: scale(1.04);
	transition: .3s;
}

/*taste*/
#taste {
	padding-top: 12%;
	padding-bottom: 0;
	border-bottom: none;
}
#taste:after {
	position: relative;
	content: '';
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 8%;
	background: #c7000b;
}
#taste h3>img {
	width: 26.66%;
}
#taste p {
	padding-top: 8%;
	margin-bottom: 9.21%;
	text-align: center;
	font-size: 15px;
	font-size: 4vw;
	font-weight: 600;
	line-height: 2;
}
#taste .youtube {
	position: relative;
	width: 100%;
	margin: auto;
}
#taste .img07 {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	visibility: hidden;
}
#btn02 {
	width: 100%;
	cursor: pointer;
}
#btn02 .modal_btn {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 17.6%;
	padding-bottom: 17.6%;
	height: 0;
	margin-top: -8.8%;
	margin-left: -8.8%;
	background-image: url("../img/btn_movie.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .3s;
}
#btn02:hover .modal_btn {
	background-image: url("../img/btn_movie_on.png");
}

/*type*/
#type {
	width: 100%;
	height: 0;
	padding-bottom: 166%;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	background: #fff;
}
#type>.bg {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 0;
	margin: 0 auto;
	padding: 0 0 200% 0;
	text-align: center;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: 1;
	transition: background .5s;
	opacity: 0;
}
#type>.bg.active {
	opacity: 1;
}
#type>.bg.milk {background-image: url(../img/bg_milk.jpg);transition: background .5s;}
#type>.bg.bitter {background-image: url(../img/bg_bitter.jpg);transition: background .5s;}
#type>.bg.white {background-image: url(../img/bg_white.jpg);transition: background .5s;}
#type>.bg.ichigo {background-image: url(../img/bg_ichigo.jpg);transition: background .5s;}
#type .inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 2;
}
#btn_menu {
	width: 90%;
	margin: auto;
	padding-top: 6%;
}
#btn_menu li {
	float: left;
	width: 23%;
	height: 4.36vh;
	margin-right: 2.6%;
	text-align: center;
}

#btn_menu li:last-child {
	margin-right: 0;
}
#btn_menu li a {
	display: block;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
	cursor: pointer;
	font-size: 0;
	text-indent: -9999px;
	overflow: hidden;
}
#btn_menu li a:hover {
	transition: .5s;
}
#btn_menu li#btn_milk a{background-image:url("../img/btn_milk.png");}
#btn_menu li#btn_bitter a{background-image:url("../img/btn_bitter.png");}
#btn_menu li#btn_white a{background-image:url("../img/btn_white.png");}
#btn_menu li#btn_ichigo a{background-image:url("../img/btn_ichigo.png");}
#btn_menu li#btn_milk.on a,#btn_menu li#btn_milk:hover a{background-image:url("../img/btn_milk_on.png");}
#btn_menu li#btn_bitter.on a,#btn_menu li#btn_bitter:hover a{background-image:url("../img/btn_bitter_on.png");}
#btn_menu li#btn_white.on a,#btn_menu li#btn_white:hover a{background-image:url("../img/btn_white_on.png");}
#btn_menu li#btn_ichigo.on a,#btn_menu li#btn_ichigo:hover a{background-image:url("../img/btn_ichigo_on.png");}

.type_cont .sec {
	position: relative;
	margin-top: 12%;
}
.type_cont .sec>div {
	position: absolute;
	top: 0;
	left: 0;
}
.type_cont .sec>.text {
	font-size: 4vw;
	color: #fff;
	font-weight: 600;
	text-align: left;
	margin-left: 17.06%;
	z-index: 2;
	line-height: 2;
	letter-spacing: 0.1em;
}
.type_cont #white_area.sec>.text {
	margin-left: 14.06%;
}
.type_cont #white_area.sec>.text03 {
	margin-left: 32%;
}
.hide {
	opacity: 0;
}
#type .top {
	position: absolute;
	left: 0;
	width: 31.33%;
	height: 8vh;
	margin: 0 0 0 11%;
	z-index: 1;
}
#type img[src$=".svg"] {
	max-width: inherit;
	max-height: inherit;
	height: auto;
}
#type .middle {
	width: 62.5%;
	height: auto;
	margin: 50% 0 0 32%;
	z-index: 1;
}
#type .last {
	height: auto;
	width: 40%;
	margin: 116% 0 0 11%;
	z-index: 1;
}
#type .text01 {
	margin-top: 8%;
}
#type .text02 {
	margin-top: 38.26%;
}
#type .text03 {
	margin-top: 72%;
	margin-left: 32%;
	font-size: 5vw;
	line-height: 1.5;
}
#type .text04 {
	margin-top: 105%;
}
#type .peak {
	width: 22.66%;
	margin: 68% 0 0 5%;
}
#type .peak svg {
	width: 100%;
	height: auto;
}

#type .peak>.text_peak {
	position: absolute;
	width: 46%;
	top: 50%;
	height: auto;
	left: 50%;
	margin-top: -9%;
	margin-left: -23%;
}

#type .arrow {
	display: block;
	left: 50%;
	width: 4%;
	height: auto;
	margin-left: -2%;
	z-index: 2;
}
#type .arrow01 {
	margin-top: 27%;
}
#type .arrow02 {
	margin-top: 60%;
}
#type .arrow03 {
	margin-top: 93%;
}
#type .arrow>div.arrow_bottom {
	width: 24px;
	height: auto;
	line-height: 0;
	opacity: 0;
	transition: .4s;
}
#type .arrow>img {
	opacity: 1;
}
#white_area .text {
	color: #000;
}


/*secret*/
#secret {
	padding-top: 108px;
	padding-bottom: 93px;
}
#secret>.inner {
	width: 100%;
	margin: auto;
}
#secret p {
	margin-top: 13%;
	margin-bottom: 0;
	margin-left: 0;
	font-size: 15px;
	font-size: 4vw;
	font-weight: 600;
	line-height: 2;
	text-align: center;
}
#secret .box>img {
	position: relative;
	margin: 0 auto 0;
	padding-top: 8%;
	width: 90.4%;
}
#secret h3 {
	width: 73.33%;
	margin: auto;
}

/*img_area*/
.img_area_bg {
	display: block;
}
#img_area {
	width: 100%;
	height: 0;
	padding-bottom: 80%;
	z-index: 2;
}
#img_area>.inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 120%;
	display: block;
/*	background-image: url(../img/img_area_sp.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;*/
	box-sizing: border-box;
}
#img_area .img08 {
	position: absolute;
	left: 50%;
	top: 0px;
	margin: -9% 0px 0px 20%;
	width: 15.56%;
}

.img_area_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	margin-top: 20vh;
	background: url(../img/img_area_sp2.jpg) left bottom / auto 100% no-repeat;
	z-index: 1;
	opacity: 0;
}
/*lineup*/
#lineup {
	padding-top: 21.33%;
}
#lineup>.inner {
	width: auto;
	margin: auto;
}
#lineup .img09 {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 8% 0 0 -42%;
	width: 16%;
}
#lineup h3>img {
	width: 33.7%;
}
#lineup>.inner .products {
	width: 68%;
	margin: 8% auto 0;
}
#lineup>.inner #products ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
#lineup li {
	float: none;
	width: 100%;
	margin-bottom: 15%;
}
#lineup li:nth-child(odd) {
	margin-right: 0;
}
#lineup li:last-child(2){
	margin-bottom: 0;
}
#lineup li:last-child {
	margin-bottom: 0;
}
#lineup li>img {
	width: 98%;
	margin: 0 auto 7%;
}
#lineup li dt {
	margin-bottom: 4%;
	font-weight: 600;
	font-size: 17px;
	font-size: 4.5vw;
	line-height: 1;
}
#lineup li dt span {
	margin-right: 0;
	display: block;
	margin-bottom: 5%;
}
	#lineup li dt span>img {
		width: 35%;
	}
#lineup li dd {
	font-size: 15px;
	font-size: 3.3vw;
}


/*recipe*/
#recipe {
	padding-top: 108px;
	padding-bottom: 93px;
}
#recipe h3 img {
	width: 29.73%;
}
#recipe>.inner {
	width: 100%;
	margin: auto;
}
#recipe>.inner .recipes {
	padding-top: 8%;
	width: 100%;
	margin: auto;
}
#recipe>.inner ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
#recipe li {
	float: none;
	width: 80%;
	margin: 0 auto 8%;
}
#recipe li dt {
	overflow: hidden;
	margin-bottom: 10px;
}
#recipe li img {
	transform: scale(1);
	transition: .3s;
}
#recipe li a:hover img {
	transform: scale(1.04);
	transition: .3s;
}
#recipe li:nth-child(2n) {
	margin: 0 auto 8%;
}
#recipe li:nth-child(3n) {
	margin-bottom: 0;
}
#recipe li dd {;
	font-weight: 600;
	font-size: 15px;
}
#recipe .btn_recipe {
	display: block;
	width: 72.8%;
	height: auto;
	margin: 10.66% auto 0;
	background: url(../img/btn_bg.png) center / contain no-repeat;
	text-align: center;
	line-height: 2.2;
	font-size: 15px;
	font-size: 4vw;
	font-weight: 600;
	color: #c7000b;
}

#recipe .btn_recipe:hover {
	color: #fff;
	transition: .5s;
	background: url("../img/btn_bg_on.png") center / contain no-repeat;
}
#recipe .img_anim:after {
	content: none;
}


#sns {
	padding-bottom: 90px;
}
#sns>.inner {
	position: relative;
	width: 100%;
	margin: auto;
	text-align: center
}
#sns li {
	display: inline-block;
	width: 15%;
}
#sns li:first-child {
	margin-right: 15%;
}

#to_top {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 11;
	width: 13.33%;
	margin-right: 5%;
}
#to_top {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 11;
	margin-bottom: 30px;
	visibility: hidden;
	transition: opacity .8s;
	opacity: 0;
	z-index: 11;
}
#to_top.btn_top_set {
	position: absolute;
	visibility: visible;
	margin-bottom: 30px;
	opacity: 1;
}
#to_top.btn_top_fixed {
	position: fixed;
	visibility: visible;
	margin-bottom: 30px;
	opacity: 1;
}

	
}  



/* --------------------------------------------------
 languages-btn
-------------------------------------------------- */
#container.opn .languages-btn__wrapper {
	opacity: 1;
}
.languages-btn__wrapper {
	position: absolute;
	z-index: 21;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}
@media screen and (max-width: 1400px) {

nav.nav li {
	margin-left: 32px;
}
}
@media screen and (max-width: 1020px) {
  .languages-btn__wrapper {
    min-width: 1020px;
  }
	nav.nav li {
		margin-left: 32px;
	}

}
.languages-btn {
	position: absolute;
	z-index: 12;
	top: 30px;
	right: 20px;
	color: #fff;
	font-size: 14px;
}
.languages-btn .btn {
  display: block;
  width: 86px;
  height: 30px;
  margin: 0 0 4px 100px;
  padding-left: 34px;
  background: url(../img/icon_earth.png) no-repeat 13px center #333;
  border-radius: 15px;
  line-height: 30px;
  cursor: pointer;
}
.languages-btn .linkList {
  position: relative;
  display: block;
  display: none;
  width: 200px;
  margin-top: 16px;
  padding: 10px;
  background: #333;
  border-radius: 10px;
}
.languages-btn .linkList:before {
  position: absolute;
  left: 148px;
  top: -16px;
  width: 23px;
  height: 16px;
  content: "";
  background: url(../img/tail_link.png) no-repeat center top;
}
.languages-btn .linkList .link {
  display: block;
}
.languages-btn .linkList .link + .link {
  margin-top: 5px;
}
.languages-btn .linkList .link a {
  display: block;
  height: 40px;
  width: 200px;
  background: url(../img/arrow_link.png) no-repeat 183px center #000;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}
.languages-btn a:link, .languages-btn a:visited {
  color: #fff;
  text-decoration: none;
}
.languages-btn a:hover, .languages-btn a:active {
  color: #fff;
}
.languages-btn:hover .linkList {
  display: block;
}
.langBtn02 {
  display: none;
}

@media screen and (max-width: 768px) {
	nav.nav li {
		margin-left: 0;
	}
  .languages-btn {
    display: none;
  }
  .langBtn02 {
    display: block;
    padding: 0 10.935%;
    line-height: 1.1;
  }
	.langBtn02__title {
		padding: 2px 10px;
		margin-left: 0;
		font-size: 18px;
		color: #000;
		font-weight: 600;
		cursor: pointer;
		border-bottom: none;
		border-left: solid 4px #c7000b;
	}
  .langBtn02.is-show .langBtn02__title {
    border-bottom: 0;
  }
  .langBtn02__title:after {
    content: "";
    width: 9px;
    height: 6px;
    display: inline-block;
    background: url(../img/icon_toggle_btn.png) no-repeat center center;
    background-size: 100% auto;
    margin-left: 5px;
    position: relative;
    top: 0px;
    transition-duration: .1s;
  }
  .langBtn02.is-show .langBtn02__title:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .langBtn02__items {
    overflow: hidden;
    padding: 16px 0;
  	background: rgba(124,59,27,.80);
  }
	.langBtn02__items {
		margin-top: 3%;
		background: #c7000b;
	}
nav .langBtn02__items li>a {
	border-left: none;
	padding-left: 0;
	margin-bottom: 0;
}
	nav .langBtn02__items li>a:after {
		content:none;
	}
  .langBtn02__item {
    text-align: center;
    font-size: 14px;
  }
  .langBtn02__item a {
    display: block;
    color: #fff;
    font-size: 12px;
    padding: 14px;
  }

}
@media screen and (orientation: landscape) {
	 /* 横向きの場合のスタイル */
	header .dars-menu.open {
		overflow-y: scroll;
	}
}
@media screen and (max-width: 320px) {
	header .dars-menu>ul {
		margin: 70px auto 0;
	}
	nav.nav li>a {
		margin-bottom: 15px;
	}
nav .langBtn02__items li>a {
	margin-bottom: 0;
}
}