@charset "UTF-8";
/*-------------------------------------------
すべてに適用
-------------------------------------------*/
html {
	font-size: 100%;
}

body {
	background-image: url(../img/bg.png);
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

.wrapper {
	max-width: 960px;
	margin: 0 auto;
}

/*-------------------------------------------
Font
-------------------------------------------*/
.zen-maru gothic-regular {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-style: normal;
}

// uniquifier: Use a unique and descriptive class name
// weight: Use a value from 100 to 900

.noto-sans jp-uniquifier {
	font-family:Noto Sans JP;
	font-family:sans-serif;
	font-optical-sizing: auto;
	font-weight: weight;
	font-style: normal;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
header {
	max-width: 100%;
	width: 100%;
	height: 80px;
	background-color: #008C55;
}

#hd-content {
	display: flex;
	justify-content: space-between;
	align-content: center;
}

#logo {
	width: 20%;
	margin: 1.5em 0 0 1em;
}

#main-menu {
	width: 50%;
	margin-right: 1em;
}

#main-menu ul{
	display:flex;
	justify-content: flex-end;
}

#main-menu li{
	letter-spacing: 0.16em;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	font-style: normal;
	margin-left: 40px;
	line-height: 2.5em;
	text-align: center;
	list-style: none;
}

#main-menu a{
	color: #fff;
}

#main-menu a:hover{
	color: #C7D66D;
}

#main-menu li.current{
	border-bottom: 5px solid #F08700;
}

#main-menu li:hover{
	border-bottom: 5px solid #C7D66D;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
footer {
	width: 100%;
	color: #008C55;
	font-size: 1em;
	text-align: center;
	margin-top: 4em;
}

/*-------------------------------------------
Topページ
-------------------------------------------*/
#top {
	width: 100%;
	height: 640px;
	background-color: #008C55;
	margin: auto;
}

#top-tv img{
	width: 100%;
}

#top-video {
	width: 90%;
	position: relative;
}

#top-video video{
	width: 100%;
	margin: 2.5em 0 0 .5em;
	position: absolute;
	border-radius: 15px;
}

#top-text {
	color: #434946;
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	font-style: normal;
	margin-top: 4em;
}

#top-menu {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

/*.top-menuフェードアップ*/
.box{
  opacity: 0;
  margin: 0 auto;
  width: 20%;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
from {
    opacity: 0;
	transform: translateY(30px);
  }

to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間*/
.delay-time01{
	animation-delay: 0.1s;
}
.delay-time02{
	animation-delay: 0.2s;
}
.delay-time03{
	animation-delay: 0.3s;
}
.delay-time04{
	animation-delay: 0.4s;
}
/*
.delay-time05{
	animation-delay: 0.4s;
}
.delay-time06{
	animation-delay: 0.5s;
}
.delay-time07{
	animation-delay: 0.6s;
}
.delay-time08{
	animation-delay: 0.7s;
}
*/

.speaker img {
	max-width: 36px;
	max-height: 32px;
	width: 100%;
	margin-top: -3%;
	position: absolute;
}

/*-------------------------------------------
Aboutページ
-------------------------------------------*/
#about_contents {
	display: flex;
	justify-content: space-between;
	color: #434946;
}

.about_item {
	width: 46%;
	margin: .5em 1em;
}

#about_table {
	width: 100%;
	border-collapse: collapse;/*線重ねる*/
	text-align: left;
}

#about_table th,td {
	padding: 1.5em 0 0.5em;
	vertical-align: top;
	border-bottom: 1px solid #434946;/*下線*/
}

#about_table th {
	width: 35%;
	font-weight: bold;
}

#about_table td img{
	width:50%;
	height: auto;
}

#about_map {
    position: relative;
    overflow: hidden;
}

#about_map iframe,object,embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#address, #access {
	display: flex;
	justify-content: center;
	flex-direction: column;
	border-bottom: 1px solid #434946;/*下線*/
	margin: .5em 0;
}

#address iframe{
	margin-bottom: .5em;
	width: 100%;
	height: 320px;
}

.about_text {
	display: flex;
	justify-content: flex-start;
	text-align: left;
}

#address .about_title {
	width: 18%;
}

#access .about_title {
	width: 30%;
}

.about_title {
	font-weight: bold;
	width: 30%;
	margin-right: 1em;
}

#security {
	text-align: center;
	margin: 3em auto 0;
	font-size: 16px;
	font-weight: bold;
}

#security a{
	width: 30%;
	padding: .5em 1em;
	border-radius: 15px;
	color: #FFF;
	background-color: #008C55;
}

#security a:hover{
	background-color: #F08700;
}

/*-------------------------------------------
Securityページ
-------------------------------------------*/
.security-box {
	margin-bottom: 4em;
}

h4 {
	padding: .5em 0;
	border-bottom: 3px solid #EF8A17;
}

.text-right {
	text-align: right;
	font-size: 14px;
	margin-top: 4em;
}

/*-------------------------------------------
Worksページ
-------------------------------------------*/
#works {
	width: 80%;
	margin: 0 auto;
}

.works-container,
.works-container-movie {
	width: 100%;
	margin: 3em 0 4em;
}

.works-container h1,
.works-container-movie h1{
	color: #F08700;
	border-bottom: solid 1px #434946;
	text-align: center;
	line-height: 1.8em;
}

.works-container a,
.works-container-movie a {
	color: #36362f;
}

.works-container a:hover,
.works-container-movie a:hover {
	color: #F08700;
	transition:0.2s all;
}

.works-flex {
	display: flex;
	flex-wrap: wrap;
	padding-left:0;
}

.works-flex ul::after {
  content: "";
  width: 30%;
}

.works-flex li {
	width: 30%;
	margin: 0 auto 4em;
	border-radius:15px;
	list-style: none;
}

.works-flex li.press:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.works-list {
	display: flex;
	padding-left:0;
}

.works-list li{
	justify-content: space-between;
	line-height: 0;
	display: flex;
	align-items: center;
	margin-right: 1em;
}

.works_tag {
	display: flex;
}

.tag {
	width: 6em;
	padding:1em 0.5em;
	margin-right: 0.5em;
	border: solid 3px #F08700;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height:0;
	color: #F08700;
}

.works_gray {
	color: #7c7d70;
	font-size: 14px;
}

.works-attention {
	font-size: 16px;
	line-height: 0;
	color: #F08700;
	margin-bottom: 2em;
	font-weight: bold;
}

/*サムネイルアニメーション*/
.zoom-box,
.zoom-box-web {
	width: 100%;
	height: auto;
	display: inline-block;
	overflow: hidden;
	border-radius:5px;
	aspect-ratio: 16 / 9;
}

.zoom-box-web {
	aspect-ratio: 16 / 6;
}

.zoom-box img,
.zoom-box-web img {
	width: 100%;
	transition:0.5s all;
}

.zoom-box img:hover,
.zoom-box-web img:hover {
	transform:scale(1.1,1.1);
	transition:0.5s all;
}

/*-------------------------------------------
Works-movieページ
-------------------------------------------*/
#movie_flex {
	width: 100%;
	padding: 1em;
	margin: 2em auto;
}

.movie_menu {
	width: 100%;
	margin:0 auto;
}

.p_orange {
	line-height:0;
	padding: .25em 0;
	color: #F18805;
	font-weight: bold;
	border-bottom:3px solid #F18805;
}

.youtube {
	width: 100%;
	aspect-ratio: 16/9;
	margin: 0 auto;
	border-radius:15px;
}

.youtube iframe{
	border-radius:15px;
}

/*-------------------------------------------
FAQページ
-------------------------------------------*/
.faq {
	width: 100%;
	margin: 4em auto;
}

.q {
	display: none;
}

.q-label {		/*タイトル枠*/
    padding: 1em 1em;
	display: block;
	border-bottom: solid 1px #F08700;
}

.q-label h1{		/*タイトル*/
	color: #36362f;
	font-weight: bold;
    font-size: 18px;
	width: 90%;
	line-height: 0;
}

.q-label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #F08700;
	border-right: 2px solid #F08700;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}

.q-label,
.a-content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.a-content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}

.q:checked + .q-label + .a-content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}

.q:checked + .q-label::before {
	transform: rotate(-45deg) !important;
}

.a-content h3{
    color: #F08700;
	line-height:1.5em;
}

.q-label span, .a-content span{
    font-size: 24px;
	line-height: 0;
	margin-right: 0.5em;
	color: #F08700;
}

.faq-attention {
	width:80%;
	margin: 0 auto 2em;
	padding: .5em;
	border-radius: 30px;
	background-color: #F08700;
	color: #fff;
	text-align: center;
}

.faq-attention a{
	margin: 0 .5em;
	color: #fff;
	border-bottom: solid 1px #fff;
}

.faq-attention a:hover{
	color: #C7D66D;
	border-bottom: solid 1px #C7D66D;
}


/* hover用CSS */
@media screen and (min-width: 1367px) {
	.btn:hover svg rect {
    stroke-width: 2;
    stroke-dasharray: 83, 569;
    stroke-dashoffset: 503;
	}
	/*Toggle*/
	.slidemenu .slide-toggle:hover + label{
		opacity: 1;
	}
	.slidemenu #slide-item-1:hover ~ .slider .bar{ margin-left: 0; }
	.slidemenu #slide-item-2:hover ~ .slider .bar{ margin-left: 12.5%; }
	.slidemenu #slide-item-3:hover ~ .slider .bar{ margin-left: 25%; }
	.slidemenu #slide-item-4:hover ~ .slider .bar{ margin-left: 37.5%; }
	.slidemenu #slide-item-5:hover ~ .slider .bar{ margin-left: 50%; }
	.slidemenu #slide-item-6:hover ~ .slider .bar{ margin-left: 62.5%; }
	.slidemenu #slide-item-7:hover ~ .slider .bar{ margin-left: 75%; }
	.slidemenu #slide-item-8:hover ~ .slider .bar{ margin-left: 87.5%; }
	
	.slidemenu label:hover{
		cursor: pointer;
		color: #f2f7c9;
	}
}

/*========= スマートフォン向けCSS ===============*/
@media (max-width: 600px) {
/*========= 共通 ===============*/
.wrapper {
	padding: 0;
}

header {
	height: auto;
}

#hd-content {
	flex-direction: column;
	justify-content: center;
}

#logo {
	width: 100%;
	margin: 1em auto 0;
	text-align: center;
}

#logo img {
	width: 30%;
}

#main-menu {
	width: 95%;
	margin: 0;
}

#main-menu ul{
	justify-content: space-between;
}

#main-menu li{
	letter-spacing: 0.16em;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	font-style: normal;
	margin: 0;
	line-height: 1.2em;
	text-align: center;
}

#main-menu li img{
	width: 60%;
}

footer {
	font-size: 1em;
	margin-top: 24px;
}

/*========= TOP ===============*/
#top {
	width: 100%;
	height: 280px;
}

#top-tv {
	width: 95%;
}

#top-text {
	width: 80%;
	font-size: 12px;
	margin: 2em auto;
}

.speaker img {
	margin-top: -1em;
}

#top-video video{
	margin: 1em 0 0 .2em;
	border-radius: 5px;
}


/*========= ABOUT ===============*/
#about_contents {
	flex-direction: column;
}

.about_item {
	width: 90%;
	margin: 1em auto;
}

#access {
	margin-bottom: 2em;
}

#about_table th {
	width: 40%;
}

#address .about_title {
	width: 30%;
}

#access .about_title {
	width: 50%;
}

/*========= SECRITY ===============*/
.security-box {
	width: 90%;
	margin: 0 auto 4em;
}

/*========= WORKS ===============*/
#works {
	width: 95%;
}

.works-flex {
	flex-direction: column;
	justify-content: center;
}

.works-flex li{
	width: 100%;
	margin: 0 0 2em;
	text-align: center;
}

.zoom-box {
	width: 100%;
	height: auto;
}

.works-list {
	display: flex;
	flex-direction: column;
}

.works-list li{
	justify-content: flex-start;
	margin-right: 1em;
}

.works_tag {
	justify-content: center;
}

.works-list h3 {
	line-height: 1.5em;
	margin: 0;
}

#movie_flex {
	width: 90%;
	margin: 4em auto;
}

.movie_menu p{
	font-size: 14px;
}

/*========= FAQ ===============*/
.faq {
	width: 95%;
}

.q-label h1{		/*タイトル*/
	line-height: 1.5em;
	margin: 0;
}

.faq-attention {
	padding: .5em 2em;
	width: 80%;
	line-height: 2em;
	margin-top: 1em;
}

}