@charset "utf-8";
/* reset
-------------------------------------------------- */
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, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main,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-size: 1rem;
	font: inherit;
	vertical-align: baseline;
}
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
sub, sup {
	font-size: 75%;
}
html,
body {
  color: #fff;
  background: #000;

}
html {
  font-size: 100%;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 47.5em) {
  html {
    font-size: 87.5%;
  }
}
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	z-index: 1;
	overflow-x: hidden;
}
main {

}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
}
a:link,
a:visited {
	color: #3d3a39;
	outline: none;
	text-decoration: none;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}

/* Custom Yu Gothic
-------------------------------------------------- */
/*! "Noto Sans JP" licensed under the SIL Open Font License by https://fonts.google.com/specimen/Noto+Sans+JP */
@font-face {
    font-display: swap;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    src: url("/common/font/NotoSansJP-Regular.woff2") format("woff2"),url("/common/font/NotoSansJP-Regular.woff") format("woff")
}
@font-face {
    font-display: swap;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    src: url("/common/font/NotoSansJP-Bold.woff2") format("woff2"),url("/common/font/NotoSansJP-Bold.woff") format("woff")
}
.mincho {
font-family: 'Century Schoolbook', serif;
}
.gothic {
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* header
-------------------------------------------------- */
.header_logo {
  background-color: #000;
  z-index: 999;
  padding: 27px 50px;
}
.header_logo h1{
line-height: 0;
}
.header_logo img {
    width: 120px;
}
@media screen and (max-width:52em) {
.header_logo {
position: fixed;
width: 100%;
}
.header_logo h1{
text-align: center;
}
}
/*========= nav ===============*/
.openbtn,
#g-nav_sp{
  visibility: hidden;
  pointer-events: none;
}
#g-nav{
/*display: block;
  position: fixed;header固定*/
  position: absolute;
  /*height: 70px;Headerの高さ設定*/
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 10;
}
#g-nav a:link,
#g-nav a:visited {
	/*color: #CCC;*/
}
#g-nav ul{
    margin: auto;
    box-sizing: border-box;
    display: table;
    width: 100%;
    max-width: 1200px;
}
#g-nav ul li{
font-size:0.75em;
display: table-cell;
}

#g-nav ul li span{
display: block;
font-size:1.5em;
font-family: 'Century Schoolbook', serif;
margin-bottom: 8px;
}

#g-nav ul li a{
  display: block;
  text-decoration: none;
  color: #CCC;
  padding:20px;
 /* transition:all 0.3s;*/
}
 /*nav ul li.current a,*/
#g-nav ul li a:hover{
  color:#fff;
}
@media screen and (max-width:57em) {
#g-nav ul li a{
  padding:10px;
}
}

/*========= sp ===============*/
@media screen and (max-width:52em) {
#g-nav{
  visibility: hidden;
  pointer-events: none;
  display: none;
}
.openbtn,
#g-nav_sp{
  visibility: visible;
  pointer-events:visible;
}
}
#g-nav_sp{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#000;
	overflow: auto;
    /*動き*/
	transition: all 0.3s;
	box-sizing: border-box;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav_sp.panelactive{
	opacity: 1;
	z-index:998;
}
/*ナビゲーションの縦スクロール*/
#g-nav_sp.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 998; 
   width: 100%;
    height: 100%; /*表示する高さ*/
}
/*ナビゲーション*/
#g-nav_sp ul {
    display: none;
	z-index: 998;
	max-width: 90%;
	margin-left: 5%;
	margin-top: 100px;
    /*ナビゲーション天地中央揃え
    position: absolute;*/
    /*left:50%;
    transform: translate(0,-50%);*/
}
#g-nav_sp.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/
#g-nav_sp li{
	list-style: none;
	border-bottom: solid #333 1px;
	margin-bottom: 40px;
}
#g-nav_sp li a{
	color: #ccc;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
}
#g-nav_sp li a:hover,#g-nav_sp li a:focus,#g-nav_sp li a:active{
  color:#fff;
}
#g-nav_sp ul li{
font-size:1.16em;
}
#g-nav_sp ul li span{
font-family: 'Century Schoolbook', serif;
display: block;
font-size:1.88em;
margin-bottom: 2px;
font-weight: 400;
}
@media screen and (max-width:32em) {
#g-nav_sp li a{
	padding:8px 10px;
}
#g-nav_sp ul li span{
font-size:1.3em;
margin-bottom: 0;
}
#g-nav_sp li{
	margin-bottom: 20px;
}
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 70px;
    height:70px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 1px;
	background-color: #fff;
  	width: 50%;
  }
.openbtn span:nth-of-type(1) {
	top:10px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:36px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 55%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 55%;
}

/*}
========= layout ===============*/

small{
  background:#333;
  color:#fff;
  display: block;
  text-align: center;
  padding:20px;
}
.word {
  white-space: nowrap;
}
.m_image .image_area > img._sp {
  display: none;
}
@media screen and (max-width: 52em) {
  .m_image .image_area > img._sp {
    display: block;
  }
  .m_image .image_area > img._pc {
    display: none;
  }
}
.center{
  text-align: center;
}
@media screen and (max-width: 52em) {
.inner.center{
  text-align: left;
}
}
section{
  background: url("../../images/back_mark-l.png")  center top no-repeat;
}
section:nth-child(even){
  background: url("../../images/back_mark-r.png")  center top no-repeat;
}
section:first-of-type,
section:last-of-type{
background: none;
}
.inner{
    margin: auto;
    padding: 100px 20px 150px 20px;
    max-width: 1320px;
}
@media screen and (max-width:52em) {
.inner{
    padding: 50px 70px 100px 70px;
}
}
@media screen and (max-width:36em) {
.inner{
    padding: 30px 30px 70px 30px;
}
}

/*https://illustswitch.com/blog/video-background/*/
/*.key-visual video{
	height: 750px;
	position: relative;
	background-color: #575657;
}
.content {
	position: absolute;
	top: 0;
	right:0;
	left:0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}*/
.movie {
	/*height: inherit;
	position: relative;
	overflow: hidden;*/
}
.movie__video {
	object-fit: cover;
	height: auto;
	width: 100%;
}
@media screen and (max-width:1920px) {
.movie {
 background-size: cover;
}
.movie__video {
object-fit: cover;
}
}
@media screen and (max-width:47.5em) {
.key-visual video{
	height: 450px;
}
}
/* footer
-------------------------------------------------- */

.footer {
    margin: auto;
	padding: 0 20px 100px;
	text-align: center;
	max-width: 1320px;
}
.footer_logo img {
    width: 250px;
	vertical-align:top;
	margin-right: 20px;
	margin-bottom: 150px;
}
@media screen and (max-width:52em) {
.footer {
	padding-bottom: 20px;
}
}
@media screen and (max-width:36em) {
.footer_logo img {
    width: 200px;
	margin-bottom: 100px;
}
}

.footer_nv{
display: block;
}
.footer_nv a.btn {
	font-size: 1.31em;
    align-items: center;
	text-align: center;
	text-decoration: none;
	padding: 0.5rem 2rem 0.6em;
	font-weight: 600;
	background: #C3C3C3;
	color: #000;
	border-radius: 10vh;
	transition: 0.5s;
}
.footer_nv a.btn:hover {
	background: #e1e1e1;
	color: #000;
}

/* ページトップリンク
-------------------------------------------------- */
#page-top_sp{
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width:52em) {
#page-top{
  visibility: hidden;
  pointer-events: none;
  display: none;
}
#page-top_sp{
  visibility: visible;
  pointer-events:visible;
}
}
#page-top_sp span,
#page-top span {
	font-size: 0;
    position: absolute;
}
/*リンクの形状*/
#page-top_sp a,
#page-top a{
    background-color: #9B9B9B;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
    height: 45px;
    pointer-events: auto;
    position: relative;
    width: 45px;
	border-radius: 3px;
}
#page-top_sp a::before,
#page-top a::before {
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    content: "";
    display: block;
    height: 15px;
    left: 15px;
    position: absolute;
    top: 18px;
    transform: rotate(-45deg);
    width: 15px;
}
#page-top_sp a:hover,
#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 25px;
	bottom:20px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	/*transform: translateY(100px);*/
}
#page-top_sp{
text-align: right;
margin-top: 100px;
}

/*　上に上がる動き　*/
#page-top_sp.UpMove,
#page-top.UpMove{
	animation: UpAnime 1.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	/*transform: translateY(100px);*/
  }
  to {
    opacity: 1;
	/*transform: translateY(0);*/
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 1.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	/*transform: translateY(0);*/
  }
  to {
  	opacity: 0;
	/*transform: translateY(100px);*/
  }
}
/* title
-------------------------------------------------- */
.m_hdg._A,
.m_hdg._B{
  position: relative;
  padding: 1.8em 0 .7em 0;
  font-size:2.19em;
  line-height: 1;
  display:block;
}
.m_hdg._A{
text-align: center;
}
.m_hdg._A h2,
.m_hdg._B h2{
margin: 20px auto;
}
.m_hdg._B h2 span{
margin-left: 20px;
margin-top: 7px;
font-size: 0.7em;
display: inline-block;
vertical-align: top;
}

@media screen and (max-width:52em) {
.m_hdg._A,
.m_hdg._B{
  padding: 1em 0 .7em 0;
}
.m_hdg._A{
text-align: left;
}
}
@media screen and (max-width:36em) {
.m_hdg._A,
.m_hdg._B{
  font-size:1.6em;
}
.m_hdg._A h2,
.m_hdg._B h2{
margin: 15px auto;
}
.m_hdg._B h2 span{
margin-top: 5px;
}
}
.m_hdg._A:after,
.m_hdg._B span.bar{
  content: "";
  display: block;
  max-width: 550px;
  height: 5px;
  margin-left: -40px;
  background: -webkit-linear-gradient(to right,rgb(255, 255, 255, 0),rgb(255, 255, 255, 1),rgb(255, 255, 255, .3),rgb(255, 255, 255, 0));
  background: linear-gradient(to right, rgb(255, 255, 255, 0),rgb(255, 255, 255, 1),rgb(255, 255, 255, .3),rgb(255, 255, 255, 0));

}
@media screen and (min-width:52em) {
.m_hdg._A:after{
  margin: auto;
  background: -webkit-linear-gradient(to right,rgb(255, 255, 255, 0),rgb(255, 255, 255, .3),rgb(255, 255, 255, 1),rgb(255, 255, 255, .3),rgb(255, 255, 255, 0));
  background: linear-gradient(to right, rgb(255, 255, 255, 0),rgb(255, 255, 255, .3),rgb(255, 255, 255, 1),rgb(255, 255, 255, .3),rgb(255, 255, 255, 0));
}
}

.label{
border: solid 1px #fff;
  border-radius: 32px;
  display: inline-block;
  padding: 4px 20px 6px;
  font-size: 1.32em;
font-weight: 500;
}
.color{
color:#00ffff;
}
.text_lede{
font-size:2.25em;
margin: 0.7em auto;
font-weight: 600;
}
.text_lede img{
vertical-align: middle;
margin: -20px 0 0 10px;
}
#area-1 .text_lede{
margin: 1em auto;
}
.text_lede br._sp {
  display: none;
}
@media screen and (max-width:52em) {
  .text_lede img,
  #area-1 .text_lede span{
  display:inline-block;
  }
  .text_lede img{
  margin: -70px 0 0 10px;
  }
  .text_lede br._sp {
    display: block;
  }
  .text_lede br._pc {
    display: none;
}
}
@media screen and (max-width:30em) {
  .text_lede{
  font-size:1.5em;
  }
  .text_lede img{
  max-width: 80px;
  margin: -60px 0 0 10px;
  }
}

.m_text{
font-size: 1em;
line-height: 2;
font-weight: 400;
}
@media screen and (max-width:52em) {
.m_text{
font-size: 1.13em;
}
}
#area-1 .m_text,
#area-5 .m_text{
font-size: 1.13em;
line-height: 2.5;
}
#area-5 .m_text{
margin-top: 2em;
}

.m_columns {
  font-size: 0;
  display: flex;
  flex-wrap: wrap; 
}
.m_columns .column {
  box-sizing: border-box;
  vertical-align: top;
  font-size: 1rem;
}
.m_columns._max2 .column {
  width: 50%;
}
.m_columns._max2 .column._text {
padding: 0 40px;
}
.m_columns+.m_columns{
margin-top: 40px;
}
@media screen and (max-width:52em) {
  .m_columns._max2 .column {
    width: 100%
  }
  .m_columns._max2 .column._text {
  padding: 0 0;
}
}
@media screen and (min-width:52em) {
 .m_columns._order .column:last-child {
  order: -1;
}
}
.m_columns + .m_columns .column._text {
margin-top: -50px;
}
@media screen and (max-width:52em) {
.m_columns + .m_columns .column._text {
margin-top: 0;
}
}

.m_image {
  text-align: center
}
.m_image._left {
  text-align: left
}
.m_image .image_area {
  display: inline-block;
  max-width: 100%;
  text-align: left;
  vertical-align: top
}
.m_image .image_area img, .m_image .image_area object, .m_image .image_area svg {
  box-sizing: border-box;
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: top
}

/* animation
-------------------------------------------------- */

/* その場で
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
} */

/* 左から */
.slideLeft {
	transition: opacity .75s ease-in, transform .75s;
	transform: translateX(-100px);
	opacity: 0;
}
.slideLeft.-action{
	transform: translateX(0);
	opacity: 1;
}
.slideRight {
	transition: opacity .75s ease-in, transform .75s;
	transform: translateX(100px);
	opacity: 0;
}
.slideRight.-action{
	transform: translateX(0);
	opacity: 1;
}
.delay-time02{
      -webkit-transition-delay: .1s;
        transition-delay: .1s
}
.delay-time04{
      -webkit-transition-delay: .2s;
        transition-delay: .2s
}
.delay-time06{
      -webkit-transition-delay: .3s;
        transition-delay: .3s
}
.delay-time08{
      -webkit-transition-delay: .4s;
        transition-delay: .4s
}
@media screen and (max-width:52em) {
.slideRight {
	transform: translateX(-100px);
}
}

/* other
-------------------------------------------------- */
