@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Gentium+Basic:wght@400;700&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/*--------------------
 リセットCSS
--------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Gentium Basic', serif;
	line-height: 1.5;
	box-sizing: border-box;
}
*.f-lora {
    font-family: 'Lora', serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix:after{
  content: ""; 
  display: block; 
  clear: both; 
}
a {
	text-decoration: none;
	display: block;
	-webkit-transition: all .2s ease;
    transition: all .2s ease;
}
a,
a:link,
a:hover,
a:active,
a:visited {
	color: #000;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a:hover img {
	opacity: 0.7;
	transition: all .2s ease;
}

/*--------------------
 common
--------------------*/
body {
	width:100%;
	background: #fff;
	color: #333;
	font-size: 15px;
    overflow-x: hidden;
}
.contents_wrap {
	width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}
.sp_only {
	display: none;
}
section > .box {
	margin-top: -90px;
	padding-top: 90px;
}

@media (min-width: 768px) {
    .flex_wrap{
        display: flex;
        justify-content: center;
    }
}

/* ヘッダー */
header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	padding: 25px 15px;
}
header.fixed {
	position: fixed;
	background: rgba(0,0,0,0.9);
}
header .logo a {
	display: block;
	color: #fff;
	font-size: 23px;
	line-height: 40px;
}
header .logo a:hover {
	opacity: 0.7;
}
header .logo img {
	width: auto;
	height: 40px;
	margin-right: 14px;
}
header .g-nav {
	margin-left: auto;
}
header .g-nav ul {
	display: flex;
	align-items: center;
}
header .g-nav li  a {
	font-size: 18px;
	line-height: 40px;
	margin: 0 9px;
	padding: 0 15px;
	color: #fff;
}
header .g-nav li  a:hover {
	opacity: 0.7;
}

header .counter {
	position: absolute;
	right: 15px;
	top: 0;
}
header .counter_box {
	background: #fff;
	font-size: 12px;
	padding: 0 5px;
	border-radius: 0 0 3px 3px;
}
header .counter_box img {
	width: auto;
	height: 1em;
	vertical-align: text-top;
}

/* コンテンツ */
header.fixed + article {
	padding-top: 90px;
}

/* メインビジュアル */
#main_visual .mv_bg {
	background: url(../pict/mv.jpeg) center top no-repeat;
	background-size: cover;
	position: relative;
}
#main_visual .mv_bg:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.5);
	z-index: 0;
}
#main_visual .mv_txt {
	padding: 12.5vw 0;
	color: #fff;
	max-width: 1140px;
	margin: 0 auto;
}
#main_visual .mv_txt h2 {
	font-size: 40px;
	font-weight: 700;
	font-style: italic;
	margin-bottom: 0.5em;
	text-align: left;
}
#main_visual .mv_txt p {
	font-size: 17px;
}

#main_visual .mv_btm {
	background: #70abef;
	padding: 2vw 0;
}
#main_visual .mv_btm p {
	text-align: center;
	font-size: 20px;
}

/* ページ内メニュー */
#links .links_bg {
	position: relative;
	padding: 3vw 0;
}
/*
#links .links_bg:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background: url(../pict/logo.png) center top -680px no-repeat;
	background-size: 100% auto;
	opacity: 0.5;
}
*/
h2 {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 1em;
}
@media (min-width:768px) {
	#links li {
		padding: 0 1vw;
		width: 33.333%;
	}
}
#links li a {
	display: block;
	margin-top: 15px;
	background: #fff;
	border: solid 1px #000;
	text-align: center;
	padding: 15px;
	position: relative;
}
#links a:after {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: calc(50% - 2px);
    width: 4px;
    height: 4px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#links li a:hover {
	background: #000;
	color: #fff;
}
#links a:hover:after {
	border-color: #fff;
}

/* about */
.section_ttl_bg {
	position: relative;
}
.section_ttl_bg:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.5);
	z-index: 0;
}
.section_ttl_bg .contents_wrap {
	max-width: 750px;
}
.section_ttl_bg h2 {
	color: #fff;
	margin-bottom: 0.75em;
}
.section_ttl_bg p {
	color: #fff;
	font-size: 18px;
	line-height: 1.75;
}
.section_ttl_bg .btn a {
	margin-top: 1.5vw;
}
.btn a {
	text-align: center;
	border: solid 1px #fff;
	padding: 15px;
	color: #fff;
	font-size: 18px;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
}
.btn a:after {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: calc(50% - 2px);
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn a:hover {
	background: #000;
}

#about .section_ttl_bg {
	padding: 3vw 0;
	background: url(../pict/home1.jpeg) center top no-repeat;
	background-size: cover;
}

h3 {
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 1em;
}
#about .gallery {
	padding: 3vw 0;
}

@media (min-width:768px) {
	#about .gallery li p {
		width: 33.333%;
		padding: 0 0.75vw;
	}
}

#about .gallery ul li:nth-child(odd) {
	position: relative;
	padding: 1.5vw 0;
	margin-bottom: 1vw;
}
#about .gallery ul li:nth-child(odd):before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
	background: #70abef;
}

/* products */
#products .section_ttl_bg {
	padding: 3vw 0;
	background: url(../pict/home2.jpeg) center top no-repeat;
	background-size: cover;
}
#products .slider_area {
	position: relative;
	padding: 3vw 0 0 0;
}
#products .slider_area:nth-child(odd):before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
	background: #f6f6f6;
}
#products .slider_box {
	margin-bottom: 3vw;
}
#products .slider li p {
	text-align: center;
	margin: 1em 0;
}
#products .slider li img {
	width: 100%;
	height: 310px;
	object-fit: cover;
	max-width: inherit;
	vertical-align: middle;
}
#products .slick-next {
	right: 10px;
}
#products .slick-prev {
	left: 10px;
}
#products .slick-prev, 
#products .slick-next {
	width: 40px;
	height: 40px;
	z-index: 10;
	top: calc(50% - 20px);
}
#products .slick-prev:before, 
#products .slick-next:before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0,0,0,0.7);
}
#products .slick-prev:after {
	content: "";
	display: block;
	position: absolute;
    left: calc(50% - 4px);
    top: calc(50% - 5px);
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
	border-left: 3px solid #fff;
    transform: rotate(-45deg);
}
#products .slick-next:after {
	content: "";
	display: block;
	position: absolute;
    right: calc(50% - 4px);
    top: calc(50% - 5px);
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}
#products .slick-dots li {
    margin: 0 2px;
}
#products .slick-dots li button:before {
	font-size: 70px;
	color: #bdc1c5;
	opacity: 1;
	line-height: inherit;
}
#products .slick-dots li.slick-active button:before {
	color: #71abef;
	opacity: 1;
}

@media (min-width:768px) {
	#products .slider_box {
		width: 50%;
		padding: 0 3vw;
	}
}

#products .slider_btm {
	padding: 2vw 0;
	background: url(../pict/home2.jpeg) center bottom no-repeat;
	background-size: cover;
	position: relative;
}
#products .slider_btm:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.8);
	z-index: 0;
}

/* contact */
#contact .section_ttl_bg {
	padding: 5vw 0;
	background: url(../pict/contact.jpeg) center center no-repeat;
	background-size: cover;
}
#contact .contact_list li {
	position: relative;
	padding: 2vw 0;
}
#contact .contact_list li:nth-child(odd):before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
	background: #f6f6f6;
}
#contact .contact_list li .contents_wrap {
	display: flex;
	align-items: center;
	max-width: 500px;
}
#contact .contact_list li span {
	width: 50px;
	display: block;
	margin-right: 5vw;
}
#contact .contact_list li a {
	font-size: 20px;
}
#contact .contact_address {
	background: #70abef;
	padding: 1vw 0;
}
@media (min-width:768px) {
	#contact .contact_address .detail {
		width: 49%;
	}
	#contact .contact_address .map {
		width: 49%;
		margin-left: auto;
	}
}
#contact .contact_address .detail dl {
	margin-bottom: 40px;
	margin-top: 10px;
}
#contact .contact_address .detail dt {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: solid 1px #000;
}
#contact .contact_address .detail dd {
	padding-left: 1em;
	position: relative;
	margin-bottom: 10px;
	font-size: 18px;
}
#contact .contact_address .detail dd:before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background: #000;
	position: absolute;
	left: 0;
	top: 0.5em;
}
#contact .contact_address .map iframe {
	width: 100%;
	height: 420px;
}

/* フッター */
footer .address small {
	font-size: 13px;
	line-height: 60px;
}

#top_scroll {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 100;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
#top_scroll a {
    display: block;
    height: 60px;
    width: 60px;
    text-decoration: none;
    background: #000;
    position: relative;
    opacity: 0.7;
}
#top_scroll a:before {
	content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg);
    position: absolute;
    left: 50%;
    top: 50%;
}
#top_scroll a:hover {
	opacity: 1;
}

 
/*--------------------
 レスポンシブ
--------------------*/
@media screen and (max-width: 1239px) {
	.contents_wrap {
		width: auto !important;
	}
}

@media screen and (max-width: 979px) {
	header .logo a {
	    font-size: 16px;
	}
	header .g-nav li a {
		font-size: 15px;
	}
}

@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
	}
	.sp_only {
		display: inherit;
	}
	.sp_no {
		display: none;
	}
	
	/* ヘッダー */
	header .logo {
		width: 250px;
	}
	header .logo a {
	    font-size: 15px;
	}
	
	/* スマホドロワーメニュー */
	#drawer-menu {
		position: fixed;
		top: 0;
		z-index: 100;
	}
	#drawer-checkbox {
	  display: none;
	}
	#drawer-icon {
	  cursor: pointer;
	  display: inline-block;
	  height: 32px;
	  width: 32px;
	  position: fixed;
	  top: 25px;
	  right: 10px;
	  padding: 20px;
	}
	#drawer-icon span {
	  background: #fff;
	  display: block;
	  width: 20px;
	  height: 1px;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50% , -50%);
	}
	#drawer-icon span::before,
	#drawer-icon span::after {
	  background: #fff;
	  content: "";
	  display: block;
	  width: 100%;
	  height: 1px;
	  position: absolute;
	}
	#drawer-icon span::before {
	  top: -8px;
	}
	#drawer-icon span::after {
	  top: 8px;
	}
	#drawer-content {
	  overflow: auto;
	  position: fixed;
	  top: 0;
	  right: -265px;
	  z-index: 40;
	  width: 265px;
	  max-width: 90%;
	  height: 100%;
	  background: rgba(112,171,239,0.96);
	  transition: all 0.3s ease-in-out 0s;
	  opacity: 0.96;
	}
	#drawer-content ul {
		padding: 60px 50px;
	}
	#drawer-content ul li a {
		color: #fff;
		font-size: 16px;
		padding: 15px 0;
		margin: 5px 0;
		font-weight: 700;
	}
	#drawer-checkbox:checked ~ #drawer-content {
	  right: 0;
	  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
	}

	#drawer-bg {
	  display: none;
	  position: fixed;
	  z-index: 39;
	  top: 0;
	  right: 0;
	  width: 100%;
	  height: 100%;
	  background: #000;
	  opacity: 0;
	  transition: all 0.3s ease-in-out 0s;
	}
	#drawer-checkbox:checked ~ #drawer-bg {
	  display: block;
	  opacity: 0.49;
	}
	
	#drawer-close {
		width: 30px;
		height: 30px;
		position: fixed;
		right: -50px;
		top: 20px;
	}
	#drawer-checkbox:checked ~ #drawer-content #drawer-close {
		right:  20px;
	}
	#drawer-close span {
	  display: inline-block;
	  position: relative;
	  margin: 0 14px 0 15px;
	  padding: 0;
	  width: 1px;
	  height: 27px;
	  background: #fff;
	  transform: rotate(45deg);
	}
	#drawer-close span::before {
	  display: block;
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: -14px;
	  width: 27px;
	  height: 1px;
	  margin-top: -1px;
	  background: #fff;
	}

	/* メインビジュアル */
	#main_visual .mv_txt {
	    padding: 90px 0 50px 0;
	}
	#main_visual .mv_txt h2 {
        font-size: 23px;
    }
    #main_visual .mv_txt p {
		font-size: 13px;
	}
	#main_visual .mv_btm {
		padding: 20px 0;
	}
	#main_visual .mv_btm p {
		text-align: left;
		font-size: 15px;
	}

	/* ページ内メニュー */
	#links .links_bg {
		padding: 30px 0;
	}
	h2 {
		font-size: 20px;
		margin-bottom: 0.75em;
	}
	#links li {
		margin-bottom: 20px;
	}
	#links li span {
		display: block;
		height: 150px;
	}
	#links li span img {
		width: 100%;
		height: 150px;
		object-fit: cover;
	}
	#links li a {
		margin-top: 10px;
		padding: 10px 15px;
	}

	/* about */
	.section_ttl_bg p {
		font-size: 15px;
	}
	.section_ttl_bg .btn a {
		margin-top: 20px;
	}
	.btn a {
		padding: 10px 15px;
		font-size: 15px;
	}

	#about .section_ttl_bg {
	    padding: 30px 0;
	}

	h3 {
		font-size: 18px;
		margin-bottom: 0.75em;
	}
	#about .gallery {
		padding: 30px 0;
	}
	#about .gallery ul li:nth-child(odd) {
	    padding: 15px 0 5px 0;
	    margin-bottom: 15px;
	}
	#about .gallery li p {
		margin-bottom: 10px;
	}

	/* products */
	#products .section_ttl_bg {
		padding: 30px 0;
	}
	#products .slider_area {
		padding: 30px 0 0 0;
	}
	#products .slider_box {
		margin-bottom: 10px;
		padding-bottom: 30px;
	}
	#products .slider_btm {
	    padding: 20px 0;
	}

	/* contact */
	#contact .section_ttl_bg {
		padding: 50px 0;
	}
	#contact .contact_list li {
		padding: 20px 0;
	}
	#contact .contact_list li span {
	    width: 30px;
	}
	#contact .contact_list li a {
		font-size: 16px;
	}
	#contact .contact_list li .contents_wrap {
		max-width: 300px;
	}
	#contact .contact_address {
		padding: 20px 0;
	}
	#contact .contact_address .detail dt {
	    font-size: 15px;
	}
	#contact .contact_address .detail dd {
		font-size: 16px;
	}
	#contact .contact_address .map iframe {
		height: 300px;
	}

	/* フッター */
	#top_scroll a {
		height: 50px;
		width: 50px;
	}
	#top_scroll a:before {
		top: calc(50% + 5px);
	}
	footer .address small {
		line-height: 50px;
	}
}

@media screen and (max-width: 480px) {
	.contents_wrap {
		padding: 0 15px;
	}
}

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

}