@charset "utf-8";

/*======
   初期化
======*/
*, *::before, *::after {
	box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
	font-family: 'Kosugi', sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

li {
	list-style: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

a {
	color: #000;
	text-decoration: none;
}


/*======
   基本レイアウト
======*/
.wrap {
}

.onlyPC {
	display: none;
}

.overflow {
	overflow: hidden;
}

.position_rel {
	position: relative;
}

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

.row_r {
	flex-direction: row-reverse;
}

.colu {
	flex-direction: column;
}

.colu_r{
	flex-direction: column-reverse;
}

.justify_center {
	justify-content: center;
}

.align_center {
	align-items: center;
}

.center {
	text-align: center;
}

.font_ss {
	font-size: 2.25vw;
}

.font_s {
	font-size: 2.5vw;
}

.font_ms {
	font-size: 3vw;
}

.font_m {
	font-size: 3.5vw;
}

.font_ml {
	font-size: 4vw;
}

.font_l {
	font-size: 5vw;
}

.block {
	display: block;
}
/*======
   header
======*/
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 7;
	background: rgba(255,255,255,0.9);
}

.h_wrap {
	padding: 4% 2% 3%;
}

h1 {
	width: 45%;
}

.h_tel {
	width: 30%;
	padding: 1% 2%;
	background-color: #bfff7f;
	border-radius: 5px;
	position: absolute;
	top: 12.5%;
	right: 16%;
}

.h_tel .ul1 .tel_img {
	width: 18%;
	transform: translateY(10%);
	margin: 0 auto;
}

.h_tel .ul1 .tel_text {
	width: 78%;
	color: green;
	letter-spacing: 0.05em;
}

.h_tel .ul1,
.h_tel .ul2 {
	justify-content: space-between;
}

.h_tel .ul2 li {
	width: 46%;
	margin-top: 2.5%;
	border-radius: 5px;
}

.h_tel .ul2 li a {
	display: block;
	padding: 0.2em 0.5em;
	color: #fff;
}

.h_tel .ul2 li:nth-child(1) {
	background-color: orange;
}

.h_tel .ul2 li:nth-child(2) {
	background-color: dodgerblue;
}


/*ハンバーガーメニュー*/

#navToggle {
	position: absolute;
	top: 5.5%;
	right: 4.5%;
	cursor: pointer;
    width: 8vw;
    height: 8vw;
}

#navToggle span {
	display: inline-block;
	transition: all .5s;
    position: absolute;
    height: 2px;
    border-radius: 5px;
	background: #000;
    width: 100%;
}

#navToggle span:nth-of-type(1) {
	 top: 2vw;
}

#navToggle span:nth-of-type(2) {
	 top: 4vw;
}

#navToggle span:nth-of-type(3) {
	 top: 6vw;
}

#navToggle span:nth-of-type(3)::after {
	content:"Menu";
	font-family: 'Noto Sans JP', sans-serif;
	position: absolute;
	top: 0.3em;
	left: 0;
	color: #000;
	font-size: 2.8vw;
	text-transform: uppercase;
}


#navToggle.active span:nth-of-type(1) {
    top: 0.7em;
    left: -10px;
    transform: translateY(1.4vw) rotate(-45deg);
}

#navToggle.active span:nth-of-type(2) {
	opacity: 0;
}

#navToggle.active span:nth-of-type(3){
    top: 1.48em;
    left: -10px;
    transform: translateY(-1.4vw) rotate(45deg);
}

#navToggle.active span:nth-of-type(3)::after {
	content:"Close";
    transform: translateY(0px) rotate(-45deg);
	top: 0.8em;
	left: 1em;
}

#navToggle.active {
	position: fixed;
	top: 1.3%;
	right: 1.4%;
	z-index: 10;
}

/*--*/


#gnavi {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	background: rgba(255,255,255,0.95);
	z-index: 9;
	transition: 0.8s all;
}

#gnavi.active {
	transform: translateY(0%);
	transition: 0.8s all;
}

#gnavi .menu {
	margin: 10% auto 2%;
	border-top: solid 1px #000;
}


#gnavi .menu a {
	display: block;
	padding: 1em 0;
	border-bottom: solid 1px #000;
}

#gnavi .menu a:hover {
	background-color: #FFFEAA;
}

#gnavi .menu li {
	letter-spacing: 0.25em;
}

#gnavi .menu .bis .b_link {
	width: 100%;
	margin: 0 0 1.5em;
	display: none;
}

#gnavi .menu .bis .b_link li {
	width: 33.3%;
	float: left;
	letter-spacing: 0.1em;
}

#gnavi .menu .bis .b_link li:nth-child(2){
	border-left: solid 1px #000;
	border-right: solid 1px #000;
}

#gnavi .menu .bis .b_link li a {
	padding: 0.75em 0;
}

#gnavi .menu .bis:hover .b_link {
	display: block;
}



#gnavi .con a {
	display: block;
	width: 100%;
	padding: 0.5em 0;
	letter-spacing: 0.05em;
}

#gnavi .con a:hover {
	background-color: #FFFEAA;
}

#gnavi .con .nav_line img {
	margin-left: 0.25em;
	width: 45%;
}

#gnavi .nav_tel dd {
	width: 30%;
}

#gnavi .nav_tel dt {
	width: 10%;
	margin: 0 3%;
	padding: 0.25em 0;
	color : #fff;
	border-radius: 0.2em;
}

#gnavi .nav_tel_shop dt {
	background-color: orange;
}

#gnavi .nav_tel_company dt {
	background-color: dodgerblue;
}

#gnavi .nav_tel dl dd {
	padding: 0.3em 0 0.2em;
}

/*======
   main
======*/

main {
	padding-top: 17vw;
}

.slide_area {
	height: 66vw;
	position: relative;
	overflow: hidden;
}

.slide_area .mv {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: slide 30s ease infinite;
}

.slide_area .mv:nth-of-type(1) {
	animation-delay: 0s;
}

.slide_area .mv:nth-of-type(2) {
	animation-delay: 10s;
}

.slide_area .mv:nth-of-type(3) {
	animation-delay: 20s;
}

@keyframes slide {
	0% {
		opacity: 0;
	}
	16% {
		opacity: 1;
	}
	33% {
		opacity: 1;
	}
	49% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.line_p {
	background-color: #FFEA00;
	color: red;
	font-size: 3vw;
	font-weight: bold;
	line-height: 1.2em;
	letter-spacing: 0.01em;
	padding: 1em 0 0.5em;
	margin-top: 1em;
}

#line {
	height: 45vw;
}

#line p, #line .line_news {
	width: 50%;
}

#line .line_news li:first-child {
	padding: 2.6% 0;
	background-color: #FFF;
}

#line a {
	width: 100%;
	margin: 0 auto;
	transition: 0.25s ease;
	position: absolute;
	top: 0;
	left: 0;
}

#line a:hover {
	margin: 0 auto;
	transform: scale(1.025);
	transition: 0.25s ease;
}

/*======
   service
======*/

#service {
	padding-top: 5em;
}

h2 {
	width: 50%;
	font-weight: bold;
	margin: 1em auto;
}

h2 span,
.title_s {
	display: block;
	color: #999;
	font-weight: normal;
}

.title {
	font-weight: bold;
	margin: 2em 0;
}

.button {
	width: 85%;
	margin: 1em auto;
	padding: 0.75em 0;
	border: solid 2px #000;
	border-radius: 25px;
	background-color: #fff;
	position: relative;
}

.button::after {
	content: "";
	display: block;
	width: 0.75em;
	height: 0.75em;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	transform: rotate(45deg);
	position: absolute;
	top: 35%;
	right: 11%;
	transition: 0.3s all;
}

a:hover .button {
	background-color: #FFFEAA;
}

a:hover .button::after {
	right: 9%;
	transition: 0.5s all;
}

.s_wrap {
	background: url("img/27727765_m.jpg") top center/cover no-repeat;
	padding: 1em 0 2em;
}

.purchase {
	width: 90%;
	justify-content: space-between;
	margin: 2% auto 3.5%;
}

.purchase a {
	width: 32%;
	background-color: rgba(255,255,255,0.75);
	padding: 1.5em 0 0.5em;
}

.purchase dl {
	padding: 0 20%;
}

.purchase dl dd {
	width: 90%;
	margin: 0 auto 5%;
}

.shop_link,
.pur_list {
	width: 90%;
	margin: 0 auto 3.5%;
}

.shop_linkbox,
.pur_list a {
	background-color: rgba(255,255,255,0.75);
	padding: 1em 1em 0;
}

.shop_linkbox img {
	margin: 0.5rem 0 1rem;
}

.shop_button {
	width: 100%;
	position: absolute;
	bottom: 1rem;
	left: 0;
}

.shop_link p {
	margin: 1rem auto;
}


.red {
	color: #ff0000;
}

.pur_list a {
	padding: 1em 1em 0.5em;
}

.pur_list dl dt {
	margin: 0.5em 0;
}

.pur_list dl dd img {
	width: 20%;
}

.list {
	padding-bottom: 5em;
}

#company ul,
#recruit ul {
	display: flex;
	align-items: center;
}

#recruit ul {
	flex-direction: row-reverse;
}

#company ul li,
#recruit ul li {
	width: 50%;
}

#contact {
	padding-top: 1em;
	max-width: 600px;
	margin: 0 auto;
}

.form {
	margin-top: 4em;
}

.form a {
	display: block;
	margin: 1em 0;
}

.form a ul li:nth-child(2) {
	padding: 0.25em 0.5em;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.form a ul .shop_b,
.form a ul .bis_b {
	line-height: 1.8em;
	padding: 0 0.5em;
	border-radius: 10px;
	color: #fff;
}

.form a ul .shop_b {
	background-color: orange;
}

.form a ul .bis_b {
	background-color: dodgerblue;
}

.form a:nth-child(2) {
	margin: 0 0 2em;
}

.form a .button {
	width: 75%;
}

.form a:hover .button {
	background-color: #FFFEAA;
}

.form a:hover .button::after {
	right: 9%;
	transition: 0.5s all;
}

/*======
footer
======*/
.f_wrap {
	margin: 7.5em 0 0;
}

.f_wrap .menu li a {
	display: block;
	margin: 0.5em;
}

.f_wrap .menu li a:hover {
	color: #666;
}

#pagetop{
	width: 35px;
	height: 35px;
	position: fixed;
	font-size: 24px;
	right: 2%;
	bottom: 3%;
	z-index: 7;
	background-color: #00cc33;
	border-radius: 5%;
}

#pagetop::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f0d8';
	color: #ffffff;
	position: absolute;
	width: 35px;
	height: 35px;
	top: 5px;
	left: 0;
	margin: auto;
	text-align: center;
}

#copyright {
	padding: 1em 0;
	color: #fff;
	background-image: linear-gradient(150deg, rgba(0, 200, 225, 1) 2%, rgba(0, 175, 50, 1) 40%, rgba(0, 200, 150, 1) 80%, rgba(0, 200, 225, 1) 98%);
}


/*------
	Company profile
-------*/
.profile,
.history {
	width: 90%;
	max-width: 650px;
	margin: 0 auto;
}

.profile {
	padding-top: 1em;
}

.message {
	margin: 3em 0 5em;
}
.message dt {
	line-height: 1.3em;
}

.message dd {
	padding-right: 1em;
}

.message dd {
	max-width: 40%;
}

.history {
	padding: 5em 0;
}

.c_table {
	width: 100%;
	line-height: 1.25em;
	margin: 4em 0 5em;
}

.c_table tr th{
	width: 8.5em;
	text-align: left;
	padding: 1.5em 0;
	border-bottom: dotted 1px #666;
}

.c_table tr td {
	padding: 1.5em 0 1.5em 1em;
	border-bottom: dotted 1px #666;
}

/*------
	Recruit
-------*/
.Recruit {
	padding-top: 1em;
	width: 90%;
	max-width: 650px;
	margin: 0 auto;
}

.tit {
	line-height: 2em;
	border-radius: 5px;
	background-color: #32cd32;
	color: #fff;
	letter-spacing: 0.1em;
}

.Occupation {
	margin-top: 3em;
}

.Recruit ul {
	margin: 1.5em auto 0.25em auto;
	width: 90%;
	max-width: 500px;
}

.Recruit ul li {
	line-height: 2.5em;
}

.Recruit p img {
	padding: 1rem 0 0;
}

.Recruit .tipe {
	width: 5em;
	color: #fff;
	border-radius: 10px;
	background-color: #32cd32;
	margin-right: 0.5em;
}

.Recruit .tipe:nth-child(2) {
	width: 7em;
	background-color: dodgerblue;
}

.Recruit .oc {
	width: 50%;
	letter-spacing: 0.2em;
}

.image {
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
}

.Recruit .r_table {
	width: 100%;
	margin: 1em auto;
	letter-spacing: 0.05em;
}

.Recruit .r_table th,
.Recruit .r_table td {
	line-height: 1.2em;
	padding: 1em;
	border: solid 0.5px #fff;
}

.Recruit .r_table th {
	width: 6.5em;
	background-color: #32cd32;
	color: #fff;
	font-weight: normal;
}

.Recruit .r_table td {
	background-color: #d6ffad;
}

.iframeWrapper {
    position: relative;
	margin-bottom: 6rem;
}

.iframeWrapper::before {
    content: "";
    display: block;
    padding-top: calc(250 / 300 * 100%);
}

.iframeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.mail_b {
	width: 14rem;
	background-color: #fff;
	border: solid 1px #000;
	margin: 0.5rem 0;
	padding: 0.25rem;
	text-align: center;
}

.shopimgbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.shopimgbox p {
	width: 49%;
	text-align: center;
}

/*------
	business
-------*/
.Business {
	padding-top: 1em;
	width: 90%;
	max-width: 650px;
	margin: 0 auto;
}
#Shop {
	padding: 0 0 5em;
}

#Home,#Delivery,#Purchase {
	padding: 5em 0;
}

.news {
	width: 70%;
	margin: 2em auto;
}

.b_title {
	margin: 0.75em 0;
}

.point {
	margin: 0.75em auto;
}

.p1 {
	width: 15.5em;
}

.p2 {
	width: 16.5em;
}

.p3 {
	width: 18.5em;
}

.point li {
	position: relative;
	padding-left: 1.5em;
	line-height: 1.25em;
}

.point li span::before {
	content: "";
	width: 1.25em;
	height: 1.25em;
	background: url("img/check.png") center center/contain no-repeat;
	position: absolute;
	top: 0;
	left: 0;	
}

.b_text {
	width: 90%;
	margin: 0 auto;
	text-align: justify;
	line-height: 1.1em;
}

.turn {
	margin: 1.5em 0;
	justify-content: space-between;
}

.turn::after {
	content: "";
	width: 90%;
	height: 5px;
	background-color: #32cd32;
	position: absolute;
	top: 48%;
	left: 5%;
	z-index: -1;
}

.turn ul {
	width: 30%;
	background-color: #d6ffad;
	border: solid 3.5px #32cd32;
	border-radius: 10px;
	padding: 0.6em;
}

.step {
	color: #32cd32;
	font-weight: bold;
}

.action {
	padding: 0.15em 0 0.35em;
	border-bottom: solid 3px #32cd32;
}

.explanation {
	padding-top: 0.6em;
	text-align: justify;
	letter-spacing: -0.12em;
	line-height: 1.05em;
}

.gaze {
	color: red;
	padding: 1em 0 1.5em;
	line-height: 1.1em;
}

.purchase-list {
	flex-wrap: wrap;
	justify-content: space-between;
}

.purchase-list li {
	width: 48%;
}

.purchase-list li dl {
	margin: 1em 0;
}

.purchase-list li dl dt {
	padding: 1.5em 0 1em;
}

.purchase-list li dl dd img {
	margin: 1em 0 0;
}

.red {
	padding: 1em 0;
	color: red;
	letter-spacing: -0.165em;
	line-height: 1.1em;
}

.b_list li {
	width: 90%;
	line-height: 1.75em;
	margin: 0.2em auto;
	border: dotted 1px #000;
}

/*------
	form
-------*/
.form_l {
	max-width: 900px;
	margin: 0 auto 5em auto;
}


/*======
   スクリーンサイズ　768px
======*/
@media screen and (min-width: 768px) {

	.onlySP {
		display: none;
	}
	
	.onlyPC {
		display: block;
	}
	
	.PCflexrow {
		display: flex;	
	}
	
	.PCflo_left {
	float: left;
	}

	.PCflo_right {
		float: right;
	}
	
	.font_ss {
		font-size: 0.5em;
	}

	.font_s {
		font-size: 0.8em;
	}

	.font_ms {
		font-size: 0.9em;
	}

	.font_m {
		font-size: 1.1em;
	}

	.font_ml {
		font-size: 1.5em;
	}

	.font_l {
		font-size: 1.75em;
	}
	
	
	#gnavi .n_wrap,
	.wrap {
		max-width: 900px;
		margin: 0 auto;
	}
	
	header {
		position: relative;
	}
	
	.h_wrap {
		padding: 1em 0 0.5em;
	}
	
	.navlogo {
		width: 300px; 
		margin-left: 1.5%;
	}
	
	#gnavi {
	width: 100%;
	height: auto;
	transform: translatex(0);
	background: rgba(255,255,255,0.95);
	}

	#gnavi .menu {
		margin: 1em auto 0;
		border-top: solid 2px #000;
		display: flex;
		justify-content: space-around;
	}


	#gnavi .menu a {
		padding: 1em 0;
	}

	#gnavi .menu li {
		width: 7.75em;
		letter-spacing: 0;
	}

	#gnavi .menu .bis .b_link {
		width: 100%;
		margin: 0;
		display: none;
		position: absolute;
		top: 3em;
		left: 0;
	}

	#gnavi .menu .bis .b_link li {
		width: 100%;
		float: none;
		background: #fff;
	}

	#gnavi .menu .bis .b_link li:nth-child(2){
		border: none;
	}

	#gnavi .con {
		position: absolute;
		top: 0.5em;
		right: 0.5em;
	}
	
	#gnavi .con a {
		width: auto;
		padding: 0;
		letter-spacing: 0;
	}
	
	#gnavi .con a:hover {
		background-color: #fff;
	}
	
	#gnavi .con .nav_line {
		height: 3.2em;
	}
	
	#gnavi .con .nav_line img {
		width: 70%;
	}
	
	#gnavi .tel_img {
		line-height: 2.5em;
	}

	#gnavi .nav_tel dt {
		width: 2.5em;
		margin: 0 3%;
		padding: 0.25em 0;
		color : #fff;
		border-radius: 0.2em;
	}

	#gnavi .nav_tel_shop {
		margin-bottom: 0.1em;
	}

	#gnavi .nav_tel dl dd {
		width: 7em;
		margin: 0 auto;
		padding: 0;
	}

	.tel_img {
		width: 2em;
	}
	
	main {
		padding-top: 8em;
	}
	
	.slide_area {
		height: 550px;
	}
	
	.line_p {
		font-size: 1.1em;
	}
	
	.purchase,
	.shop_link,
	.pur_list {
		width: 80%;
		margin: 0 auto 1em;
	}
	
	.shop_link {
		display: flex;
	}
	
	.shop_linkbox {
		width: 50%;
	}
	
	.purchase {
		margin: 1em auto;
	}
	
	.list {
		display: flex;
		justify-content: space-between;
		margin: 2em 0;
	}
	
	#company,
	#recruit {
		width: 49%;
		height: 294px;
	}
	
	#company ul ,
	#recruit ul {
		display: block;
		position: relative;
		overflow: hidden;
	}
	
	#company ul li,
	#recruit ul li  {
		width: auto;
		transition: 0.5s all;
	}
	
	#company ul::before,
	#recruit ul::before {
		content: "";
		width: 100%;
		height: 294px;
		background: rgba(255,255,255,0.2);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	
	#company ul::after,
	#recruit ul::after {
		content: "";
		width: 95%;
		height: 95%;
		background: rgba(0,0,0,0.5);
		position: absolute;
		top: 2.5%;
		left: 2.5%;
		z-index: 3;
	}
	
	#company a:hover ul li:nth-child(2),
	#recruit a:hover ul li:nth-child(2) {
		transform: scale(1.1);
		transition: 0.5s all;
	}
	
	.iframeWrapper {
		width: 80%;
		margin: 0 auto 6rem;
}
	
	.title {
		position: absolute;
		top: 20%;
		left: 35%;
		color: #fff;
		z-index: 4;
	}
	
	.title_s {
		color: #fff;
	}
	
	#pagetop{
	width: 1.5em;
	height: 1.5em;
	font-size: 2em;
}

#pagetop::before {
	width: 1.5em;
	height: 1.5em;
	top: 12%;
	left: 0;
}

.red {
	width: 20em;
	margin: 0 auto;
	letter-spacing: 0;
}
	
	
}



/*======
   スクリーンサイズ　910px
======*/
@media screen and (min-width: 900px) {
	
	#line {
		height: 370px;
	}

}


