@charset "utf-8";
html     ,
body     ,
article  ,
section  ,
div      ,
h1       ,
h2       ,
h3       ,
h4       ,
h5       ,
dl       ,
dt       ,
dd       ,
ul       ,
ol       ,
li       ,
p        ,
input    ,
select   ,
textarea {
	margin:0;
	padding:0;
	font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
	color: #3a3a3a;
	font-size: 15px;
	font-feature-settings: "palt"1;
	line-height: 2;
	letter-spacing: 0.1em;
	-webkit-text-size-adjust: 100%;
	border:none;
}

.en{font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;}

html {
	overflow-y:scroll;
	margin-bottom:1px;
	height:100%;
}

@media (max-width:640px){
html     ,
body     ,
article  ,
section  ,
div      ,
h1       ,
h2       ,
h3       ,
h4       ,
h5       ,
dl       ,
dt       ,
dd       ,
ul       ,
ol       ,
li       ,
p        ,
input    ,
select   ,
textarea {
	font-size: 1.07rem;
	line-height: 1.7;
}
}

@media only screen and (min-width:641px){.sp { display:none !important;}}
@media only screen and (max-width:640px){.pc { display:none !important;}}

/* bg */

.bg{
    width: 100%; 
    height: 100%;
    position: fixed;
    top: 0;   
    background: url("../img/bg.jpg");
    z-index: -1;
}

img {
	margin:0;
	padding:0;
	vertical-align:bottom;
	line-height:0;
	border:none;
    -webkit-backface-visibility: hidden;}

table {border-collapse:collapse;}
th,td {padding:0; text-align:left; vertical-align:top;}

a {color:#3a3a3a; text-decoration:none; transition: .2s;}
a:hover {opacity:.6;}

p {text-align:justify; text-justify:inter-ideograph;}

ul{list-style-type: square;}

* {-webkit-appearance: none;}

::selection {background:rgba(130, 188, 225,0.6);}
::-moz-selection {background:rgba(130, 188, 225,0.6);}


/* header */
h1 {
	width: 31.25%;
	max-width: 200px;}
h1 a {display: block;}
h1 img {width: 100%;}
header {
	position: fixed;
	width: 100%;
	padding: 1rem 1.5625% 0.667rem;
	z-index: 1000;
	background: #fff;}


/* nav */
nav {
	position: absolute;
	top: 1.167rem; left: calc(100% - 1.5625%);
	width: 400px;
	transform: translateX(-100%);}
.menu-btn {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 1.5625% 0 auto;
    border: solid 2px #3a3a3a;
    text-align:center;
    line-height: 80px;
    border-radius: 50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 3px;
    background-color: #3a3a3a;
    transition: all 0.5s;
    border-radius: 4px;
}
.menu-btn span:before {top: -10px;}
.menu-btn span:after {bottom: -10px;}
#menu-btn-check:checked ~ .menu-btn span {background-color: transparent;}
#menu-btn-check:checked ~ .menu-btn span::before {top: 0; transform: rotate(45deg);}
#menu-btn-check:checked ~ .menu-btn span::after {bottom: 0; transform: rotate(-45deg);}
#menu-btn-check {display: none;}
.menu-content {
    position: fixed;
    width: 100%;
    top: 100px;
    right: -120%;
    background-color: rgba(58,58,58,0.7);
    color: #fff;
    padding: 40px 0;
    transition: all 0.5s;
    border-radius: 10px;
}
.menu-content ul {
    width:60%;
    margin: 0 auto;
    padding:30px 0 0;
}
.menu-content ul li {
    border-bottom: solid 1px #fff;
    list-style: none;
}
.menu-content ul li a {
    width: 100%;
    padding:10px 0;
    display: block;
    position:relative;
    color: #fff;
    text-align: center; 
    line-height: 1.3;
    font-size: 13px;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height:7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 25px;
    border-radius: 2px;
}
.menu-content ul li a span{font-weight: bold;}
#menu-btn-check:checked ~ .menu-content {right: 0;}
nav .sns img{width: 100%;}
nav .sns{width: 100%; display: flex; justify-content: center; 
align-content: center; align-items: center;}
nav .sns a{width: 35px; margin: 20px 15px 0;}

@media (max-width:640px) {
    .menu-content ul li a {font-size: 18px;}
    .menu-content ul {width:80%;}
}


/* main_top */
.main_top {position: relative;}
.main_top img {width: 100%; margin-top: 70px;}

@media (min-width:641px) {.main_sp{display: none !important;}}
@media (max-width:640px) {.main_pc{display: none !important;}}


/* main_top_text */
.main_top h1 {
  position: absolute;
  color:#fff;
  top: 0;
  left: 0;
  font-size: 6vw;
  line-height: 1.1;
  letter-spacing: 8px;
  margin: 90px 40px;
  }
.title-span{
   color: transparent;
   display: block;
   overflow: hidden;
   position: relative;
   transition: color 0ms 0.5s;
   width: max-content;
}
.title-span::after{
  content: "";
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  background-color: #65af84;
}
.title-span.active{color: #fff;}
.title-span.active::after{animation: lineAnime 1s;}
@keyframes lineAnime {
  0% {transform: translateX(-100%)}
  50% {transform: translateX(0)}
  100% {transform: translateX(100%)}
}

@media (max-width:640px) {
    .main_top h1{font-size:55px; line-height: 1.4;}
}


/* article共通 */
article {
	width: 90.625%;
	max-width: 1340px;
	text-align: center; margin: 0 auto;}
h2{font-size: 2em; line-height: 1.3;}
h3{font-size: 1.667em; line-height: 1.3;}
.title img{width: 7%; margin-right: 10px;}
.title{display: flex; justify-content: center; align-content: center; align-items: center; flex-wrap: wrap;}
.title h2 {line-height: 1;}
.title h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #3a3a3a;
  text-shadow: 3px 3px #65af84;
  font-size: 5.334rem;
}
h3.sub{width: 100%;}

@media (max-width:640px) {
    .title img{width: 14%; margin-right: 10px;}
    .title h2 span {font-size: 4.75rem;}
    h2, h3{line-height: 1.2;}
    p{line-height: 1.5;}
}


/* fadein */
.fade {
    transition: all 2000ms;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 50px);
}
.fadein {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
} 


/* about */
.about{padding-top:80px;}
.about p{text-align:center;}
.about span.big{font-size: 1.5rem; font-weight: bold; line-height: 1.5;}
.about .open{margin-top: 50px;}
.about .open h3{margin-top: 15px;}
.about .open img,.about .center img{width: 70%;}
.about .center h2{padding:150px 0 10px;}
.about .center p{padding:0 0 20px;}
.about .center img,.about .open img{border-radius: 10px;}
.about p.text_left{text-align:left; margin-left: 30px;}
.about .right,.about .left{display: flex; justify-content: center; 
align-content: center; align-items: center;}
.about .right .text,.about .left .text{width: 45%;}
.about .right img,.about .left img{width: 40%;}
.about p.eigyo{margin: 120px auto 50px; font-size: 1.5rem; line-height: 1.32; font-weight: bold;}
.about img.yoko{width: 40%; border-radius: 10px;}
.about .left{padding: 50px 0 180px;}
.about .right{padding: 200px 0;}
.about .narabi{display: flex; justify-content: center; align-items:flex-end;}
.about .narabi .tate{width:45%; margin: 0 10px;}
.about .narabi .tate p{text-align: left; display: inline-block; margin: 10px 10px 15px;}
.about .narabi .tate img{width:100%; border-radius: 10px;}
.about .dog{margin: 150px auto 0;}
.about .calendar iframe{border-radius: 15px; width: 50vw; height: 30vw;}
.about .facebook iframe{border-radius: 15px; margin: 70px auto 0; text-align: center;}


/* photo */
.about ul.photo {
    width:100%;
    margin:0 auto;
}
.about ul.photo li div {
	height:600px;
	margin-bottom:5px;
}
.about ul.photo li img {
	max-height:100%;
	margin:0 auto;
}
.about ul.photo li p {text-align:center;}

/* photo-thumbnail */
.about ul.photo-thumbnail {
    width:50%;
    margin:30px auto 0;
}
.about ul.photo-thumbnail li {
    overflow: hidden;
    cursor: pointer;
    transition: .2s;
    padding:0;
}
.about ul.photo-thumbnail li:hover {
    opacity: .6;
}
.about ul.photo-thumbnail li img {
    margin: auto;
    width: 95%;
}

/* scene */
.about .scene_img{width: 50%;}
.about .slick-dots li:hover button, .about .slick-dots li.slick-active button {background: none;}

@media (max-width:1000px){
    .about .calendar iframe{width: 60vw; height: 40vw;}
}


@media (max-width:640px) {
    .about .right,.about .left{display: flex; flex-flow: row wrap; 
    justify-content: center; align-content: center;}
    .about .right{margin-top: 50px; padding: 0 0 170px;}    
    .about .left{margin-top: -80px;  padding-bottom: 250px}
    .about img.yoko,.about .open img,.about .center img{width: 90%;}
    .about .right img.yoko{order: 1; width: 50%; margin: 50px auto 0;}
    .about .right .text{order: 2;}
    .about .left img{margin-right: 0;}
    .about .right .text,.about .left .text{width: 100%; margin-top: 20px;}
    .about .right img,.about .left img{width: 100%;}
    .about p.text_left{text-align:center; margin: 15px 0 0;}
    .about ul.photo li div {
		height:220px;
		margin-bottom:0;
	}
    .about .center h2{padding:70px 0 15px;}
    .about ul.photo-thumbnail {width:100%;}
	.about ul.photo-thumbnail li {margin:0 5px;}
    .about .scene_img{width: 85%; margin-top: 50px;}
    .about .narabi{display: block; margin: 0 auto;}
    .about .narabi .tate{width:90%; margin: 0 auto;}
    .about .narabi .tate:nth-child(2){margin-top: 30px;}
    .about .dog{margin-top: 80px;}
    .about p.eigyo{margin: 80px auto 30px;}
    .about .narabi .tate p{text-align: center;}
    .about .calendar iframe{width:550px; height:400px;}
}


/* menu */
.menu{padding-top:150px;}
.menu .waku_narabi{display: flex; justify-content: center; 
flex-wrap: wrap; margin: 30px auto 0;}
.menu .waku{
	border: solid 1px #3a3a3a;
	border-radius: 15px;
	width: calc((100% - 7.464%) / 2);
	height: 250px;
	margin: 20px 1.866%;
	background: #fff;}
.menu .waku p{text-align: center; margin-top: 20px;}
.menu .waku h3{margin-top: 30px;}
.menu .waku h3 span{font-size: 5rem; margin: -50px 10px 0 0; 
color: transparent; -webkit-text-stroke: 1px #3a3a3a;}

@media (min-width:1081px) {
	.menu .waku {width: calc((100% - 11.196%) / 3);}
}
@media (max-width:640px) {
    .menu{padding-top:100px;}
}


/* manufacturer */
.manufacturer{padding-top: 150px;}
.manufacturer .list{display: flex; justify-content: center;}
.manufacturer .list ul{margin: 30px 30px 0; text-align: left; padding-left: 20px;}
.manufacturer .list a {
	position: relative;
	color: #3a3a3a;
	text-decoration: none;
}
.manufacturer .list a:hover {color: #65af84;}
.manufacturer .list a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #65af84;
	transform: scaleX(0);
	transition: transform 0.3s;
}
.manufacturer .list a:hover::after {transform: scaleX(1);}

@media (max-width:640px) {
    .manufacturer{padding-top: 100px;}
    .manufacturer .list ul{margin: 30px 20px 40px; text-align: left;}
    .manufacturer .list li{padding: 9px 0;}
    
}


/* partnershop */
.partnershop{padding-top: 150px;}
.partnershop p,.partnershop h3{color: #fff;}
.partnershop p{text-align: center; line-height: 1.3;}
.partnershop h3{margin: 30px 0 0;}
.partnershop .shop{
	border: solid 1px #3a3a3a;
	border-radius: 15px;
	width: calc((100% - 7.464%) / 2);
	height: 130px;
	margin: 20px 1.866%;
    background: #65af84;}
.partnershop .shop_itiran{display: flex; justify-content: center; }

@media (min-width:1081px) {
	.partnershop .shop {width: calc((100% - 11.196%) / 3);}
}
@media (max-width:640px) {
    .partnershop{padding-top: 100px;}
    .partnershop .shop_itiran{display: block; margin: 0 auto; }   
    .partnershop .shop{margin: 25px auto; height: 150px; width: 70%;}       
    .partnershop .shop span h3{margin: 35px auto 0;} 
    .partnershop .shop  h3{margin:20px auto 0;}    
}


/* faq */
.faq{padding-top: 150px;}
.faq .toiawase{display: flex; justify-content: center; margin-top: 30px;}
.faq .mail,.faq .tel{display: flex; justify-content: center; align-items: center; margin: 0 10px; border: solid 1px #3a3a3a; border-radius: 15px; padding:15px 0; width: 25%;}
.faq .mail{background: #65af84;}
.faq .tel{background: #82bce1;}
.faq .mail a,.faq .tel a{color: #fff; font-size: 20px; margin-left: 10px;}
.faq .mail img,.faq .tel img{width: 15%;}
.faq .link img{width: 10px; margin: 0 0 8px 5px;}
.faq .link {margin-top: 20px;}
.faq .link a {
	position: relative;
	color: #3a3a3a;
	text-decoration: none;
}
.faq .link a:hover {color: #65af84;}
.faq .link a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #65af84;
	transform: scaleX(0);
	transition: transform 0.3s;
}
.faq .link a:hover::after {transform: scaleX(1);}

@media (max-width:1000px){
    .faq .mail,.faq .tel{display: block;}
    .faq .mail img,.faq .tel img{width: 20%; margin: 0 auto 5px; 
    display: block;}
    .faq .mail a,.faq .tel a{font-size: 16px;}
}
@media (max-width:640px) {
    .faq .mail a,.faq .tel a{font-size: 20px;}
    .faq{padding-top: 100px;}
}


/* footer */
footer{margin-top: 80px; background: #65af84; padding:30px 0;}
footer h2{font-size: 2em;}
footer p{font-size: 1em;}
footer a{color: #fff;}
footer img.logo{width: 30%; margin-bottom: 10px;}
footer .footer_info{display: flex; justify-content: center; 
align-items: center; width: 60%; margin: 0 auto;}
footer .information,footer .information p,footer .information h2{text-align: center; color: #fff;}
footer .information{margin-top: 50px;}
footer .sns img{width: 5%; margin: 10px;}
footer iframe{border-radius: 10px; width: 25vw; height:15vw;}
footer small{color:#fff; text-align: center; margin: 30px auto 0; display: block;}

@media (max-width:1400px){footer .sns img{width: 5%; margin: 5px;}}
@media (max-width:1000px){
    footer .footer_info{display: block; margin: 0 auto; text-align: center; width: 100%;}
    footer iframe{width: 80vw; height:25vw; margin: 0 auto; display: block;}
    footer .information{margin:0 auto 20px;}
    footer .sns img{width: 5%; margin: 5px;}
}
@media (max-width:640px) {
    footer .sns img{margin-top: 25px;}
}


/* bg-illust */
.about .right{background: url("../img/illust05.png") top left no-repeat; background-size: 340px;}
.about .left{background: url("../img/illust01.png") bottom right no-repeat; background-size: 230px;}
.menu{background: url("../img/illust02.png") bottom right no-repeat; background-size: 180px;}
.manufacturer{background: url("../img/illust03.png") bottom left no-repeat; background-size: 350px;}
.faq{background: url("../img/illust04.png") bottom right no-repeat; background-size:200px;}

@media (max-width:1400px) {
    .about .left{background: url("../img/illust01.png") bottom right no-repeat; background-size: 15vw;}
    .menu{background: url("../img/illust02.png") bottom left no-repeat; background-size: 13vw;}
    .manufacturer{background: url("../img/illust03.png") bottom right no-repeat; background-size: 30vw;}
    .faq{background: url("../img/illust04.png") bottom right no-repeat; background-size: 20vw;}
}

@media (max-width:1000px) {    
    .about .right{background: url("../img/illust05.png") bottom left no-repeat; background-size: 20vw;}
}

@media (max-width:640px) {
    .about .right{background: url("../img/illust05.png") bottom center no-repeat; background-size: 40%;}
    .about .left{background: url("../img/illust01.png") bottom center no-repeat; background-size: 30%;}
    .menu{background: url("../img/illust02.png") bottom left no-repeat; background-size: 23%;}
    .manufacturer{background: url("../img/illust03.png") bottom right no-repeat; background-size: 35%;}
    .faq{background: url("../img/illust04.png") bottom right no-repeat; background-size: 26%;}
}


/* policy */
#policy{text-align: left; padding-top: 130px; max-width: 1000px; margin: 0 auto;}
#policy ol{margin-left: 30px;}
#policy h2{text-align: center; margin-bottom: 30px; font-size: 2.5rem;}
#policy h3{margin: 60px 0 30px; padding: 0.5rem 2rem;
  border-left: 5px solid #65af84;}
#policy p.main{margin: 0 0 100px;}

@media (max-width:640px){
    #policy{width: 90%;} 
}

