@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Spartan&display=swap');

html {
    overflow-y: scroll;
}
body {
    width: 100%;
	color: #898989;
}
.container {
    margin: 0 auto;
    min-width: 320px;
}
.inner {
    max-width: 960px;
}
img {
    max-width: 100%;
    height: auto;
}

h2 {
	font-weight: normal;
	font-size: 280%;
}
@media screen and (max-width: 767px) {
	h2 {
		font-weight: bold;
		font-size: 145%;
	}
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
	h2 {
		font-size: 240%;
	}
}
h3 {
	font-family: 'Spartan', sans-serif;
	font-size: 150%;
	font-weight: normal;
	text-align: center;
	padding: 0.8rem 0 0.4rem 0;
	letter-spacing: 2px;
}
.line {
	  border: 0.5px solid #898989;
}
.text-align__center {
  text-align: center;
}


.pagetop__btn {
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	z-index: 1;
}
.pagetop__link {
	display: block;
	color: #FFF;
	text-align: center;
	background: rgba(87,87,87,0.9);
	border-radius: 50%;
	padding: 0.8rem 1rem;
	transition: .4s;
}
/*header*/
header {
  width: 100%;
  position: fixed;
  line-height: 6rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
}
.header--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
	.header--inner {
	  padding: 0rem;
		  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
	}
}
.header--sitelogo {
  min-width: 16rem;
}
@media screen and (max-width: 767px) {
	.header--sitelogo {
	  margin-top: 1rem;
	}
}
.header--sitelogo__image {
  vertical-align: middle;
}
.header--group {
	  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
	  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
}
@media screen and (max-width: 767px) {
	.header--group {
		    -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
     -ms-flex-direction: column-reverse;
         flex-direction: column-reverse;
	}
}

/*drawer-menu*/
@media screen and (max-width: 960px) {
	.drawer-menu {
		display: none;
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: 0px;
		width: 100%;
		height: 100%;
		padding-top: 3em;
		background: rgba(255,255,255,0.7);
		animation-duration: 1s;
		animation-name: RightToLeft;
	}
}
@keyframes RightToLeft {
	0% {
		opacity: 0;
		transform: translateX(60%);
	}
		100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.drawer-menu .unshown {
	margin: 0 0 2em 2em;
}
.drawer-menu li {
	text-align: left;
}
.drawer-menu li a {
	display: block;
	line-height: 2em;
	-webkit-transition: all .8s;
	transition: all .8s;
	color: #595857;
}
/*checkbox*/
.check {
	display: none;
}
/*menu-bottom - label tag*/
.menu-btn {
	position: fixed;
	top: 15px;
	right: 18px;
	display: block;
	width: 24px;
	height: 24px;
	cursor: pointer;
	z-index: 1003;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 24px;
	height: 1px;
	background: #595857;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.bar.middle {
	top: 10px;
	opacity: 1;
}
.bar.bottom {
	top: 20px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}
@media screen and (min-width: 960px) {
	#checked, .menu-btn, .navDrawrBtn {
			display: none;
	}
}
/*checked*/
.check:checked ~ .drawer-menu {
	display: block;
}
.check:checked ~ .contents {
	-webkit-transform: translateX(0%); 
	-ms-transform: translateX(0%); 
	transform: translateX(0%); 
	animation-duration: 1s;
}
.check:checked ~ .menu-btn {
	opacity: 1;
}
.check:checked ~ .menu-btn .bar.top {
	width: 26px;
	-webkit-transform: rotate(45deg); 
	-ms-transform: rotate(45deg); 
	transform: rotate(45deg); 
}
.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
	width: 26px;
	top: 18px;
	-webkit-transform: rotate(-45deg); 
	-ms-transform: rotate(-45deg); 
	transform: rotate(-45deg); 
}
@media screen and (max-width: 767px) {
	.header--contact {
		margin-top: -2rem;
	}
}
nav {
	font-family: 'Spartan', sans-serif;
  letter-spacing: 1px;
	color: #898989;
	margin-right: 6rem;
}
@media screen and (max-width: 767px) {
	nav {
		font-family: 'Spartan', sans-serif;
	  letter-spacing: 1px;
		color: #898989;
		margin-right: 0rem;
	}
}
.header--globalnav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
	.header--globalnav--list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	}
}
.header--globalnav__item {
  margin-left: 2.5rem;
}
.header--globalnav__link {
  text-decoration: none;
  color: #898989;
}
.header--globalnav__link:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.header--globalnav__contact {
  text-decoration: none;
  color: #898989;
}
.header--globalnav__contact:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.header--globalnav__contact:before {
  content: url(../images/com6stock-mail.svg);
  display: inline-block;
  width: 1.25rem;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}
.header--tel {
  text-decoration: none;
  letter-spacing: 1.5px;
  color: #898989;
	font-family: 'Spartan', sans-serif;
}
.header--tel span {
    font-size: 140%;
}
@media screen and (max-width: 767px) {
	.header--tel span {
		font-size: 110%;
	}
}
.header--tel:hover {
  opacity: 0.5;
  transition: 0.3s;
}
/*header*/

/*footer*/
footer {
	background: linear-gradient(#E6E6E6, #BFC0C0);
	padding-bottom: 1.5rem;
}
.footer--inner {
		  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;	
	  padding: 2rem 4rem;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.footer--inner {
			    -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
		padding: 2rem 2rem;
	}
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
	.footer--inner {
			    -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
	}
}
@media screen and (max-width: 767px) {
	.footer--heading {
		margin: 0 auto;
		margin-bottom: 2rem;
	}
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
	.footer--heading {
		margin: 0 auto;
		margin-bottom: 2rem;
		  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	}
}
.footer--sitelogo {
	width: 16rem;
}
@media screen and (max-width: 767px) {
	.footer--sitelogo {
		margin-bottom: 1rem;
	}
}
.footer--heading__ringo {
	width: 12rem;
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	.footer--heading__ringo {
		margin: 0 auto;
	}
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
	.footer--heading__ringo {
		width: 10rem;
		margin-top: 0rem;
		margin-left: 2rem;
	}
}
.footer--contact {
		font-family: 'Spartan', sans-serif;
  letter-spacing: 1px;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.footer--contact {
			margin: 0 0 1.5rem 1rem;
	}
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
	.footer--contact {
			margin: 0 auto;
		margin-top: 2rem;
	margin-bottom: 2rem;
	}
}
.footer--contact__mail {
  text-decoration: none;
  color: #898989;
}
.footer--contact__mail:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer--contact__mail:before {
  content: url(../images/com6stock-mail.svg);
  display: inline-block;
  width: 1.25rem;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}
.footer--tel {
  text-decoration: none;
  color: #898989;
}
.footer--contact span {
  font-size: 140%;
	letter-spacing: 1.5px;
}
.footer--contact small {
	letter-spacing: 2px;
}
.footer--tel:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer--link {
	  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	margin-top: 1rem;
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
	.footer--link {
		  margin: 0 auto;
	}
}
.footer--link__button {
	width: 9rem;
	margin-left: 2rem;
}
@media screen and (max-width: 767px) {
	.footer--link__button {
		width: 7.5rem;
		margin-left: 1rem;
	}
}
.footer--link__button:hover {
  opacity: 0.5;
  transition: 0.3s;
}