@charset "utf-8";
* {
   box-sizing: border-box;
}
body {
   margin: 0;
   padding: 0;
   font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
   background-color: #e6e6e6;
  letter-spacing : 0.2em;
}
header {
   /*padding: 30px 4% 10px;*/
   position: fixed;
   top: 0;
   width: 100%;
   /*background-color: #fff;*/
   display: flex;
   align-items: center;
	  z-index: 5;
}
h1 {
   margin: 0; padding: 0;
   font-size: 20px;
}

a {	
   text-decoration: none;
   color: #333;
}
nav {
   margin: 0 0 0 auto;
}
ul {
   list-style: none;
   margin: 0;
   display: flex;
}
li {
   margin: 0 0 0 15px;
   font-size: 14px;
}
section.top_head {
	margin-top: 90px;
}
.copyright {
  padding: 5px;
  background: #666;
  text-align: center;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.05em;
}
/* PC・SPのオンオフ */
.pc-nav,.pc_only {
  display: block;
}
.sp-nav, .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
.pc-nav,.pc_only {
      display: none !important;
}
.sp_only{
      display: block;
}
}
  
/*Gナビ下線*/
.pc-nav li a {
position: relative;
}
.pc-nav li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #000000;
bottom: -5px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/
}

.pc-nav li a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*ページトップヘ*/
.page-top {
  display: none ;
	margin: 0 ;
	padding: 0 ;
  cursor: pointer;
}
.page-top p {
	margin: 0 ;
	padding: 0 ;

	position: fixed ;
	right: 16px ;
	bottom: 16px ;
}
.move-page-top {
	display: block ;
	background: #D36015 ;
	width: 50px ;
	height: 50px ;
	color: #fff ;
	line-height: 50px ;
	text-decoration: none ;
	text-align: center ;

	-webkit-transition:all 0.3s ; /*じんわり色が変わるまでの時間*/
	-moz-transition:all 0.3s ;
	transition:all 0.3s ;
}
.move-page-top:hover {
	opacity: 0.85 ;
}

/* 下からふわっと */
 .fadein {
  opacity: 0;
  transform : translate(0, 100px);
  transition : all 1500ms;/* 1,5秒かけてフェードイン */
}
.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
/**********************************　
メインビジュアルを全面に　
************************************/
.main-visual {
   height: 100vh;
}
h2 {
   margin: 0;
   line-height: 1.6;
   text-align: center;
   color: #fff;
   font-family: 'Montserrat','Noto Sans JP', sans-serif;
   font-size: 1.9rem;
   font-weight: 400;
	  padding-bottom: 10px;
}
.main-visual #logo {
	margin: 0;padding: 0;
	width: 300px;
	position: absolute;z-index: 1;
	top: 50%;	
left: 50%;
	transform: translate(-50%, -50%);
}
.main-visual video {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
@media screen and (max-width: 767px){
.main-visual #logo {
	width: 230px;
	}
}
/**********************************　
ハンバーガーメニューの設定　
************************************/
/*@media screen and (max-width: 767px) {*/
   .pc-nav,.pc_only {
      display: none;
   }
.dis_flex {
	display: flex;
}
.dis_flex.cent {
	justify-content: center;
}
header {
   padding: 10px 25px 0 0;
}
header .block {
    text-align: center;
	   margin: 50px auto;
				max-width: 650px;
    width: 100%;
				color: #fff;
				line-height: 2.0;
				/*height: 100%;
				overflow: auto;*/
}
header .heading {
    margin-bottom: 50px;
}
header .heading h2 {
    position: relative;
}
header .heading h2::after {
    position: absolute;
    content: "";
    width: 9px;
    height: 1px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
header .heading p {
    padding: 20px 0;
	   font-size: 0.9rem;
}
  #hamburger {
    background-color: transparent;  
    position: relative;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
  }

/*ボーダーの動き*/
.button-border{
	 line-height: 1.4;
  border: 1px solid #666;
  padding: 20px 40px;
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  /*background-color:rgba(53,53,53,0.6);*/
}

/* Effect1
 *************************************** */
/* 擬似要素の共通スタイル */
.button-border::after,
.button-border::before,
.button-border span::after,
.button-border span::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* 左上へ配置 */
.button-border::after {
    width: 0px;
    height: 1px;
    top: -1px;
    left: -1px;
}
/* 右下へ配置 */
.button-border::before {
    width: 0px;
    height: 1px;
    right: -1px;
    bottom: -1px;
}
/* 左上へ配置 */
.button-border span::after {
    width: 1px;
    height: 0px;
    left: -1px;
    top: -1px;
}
/* 右下へ配置 */
.button-border span::before {
    width: 1px;
    height: 0px;
    bottom: -1px;
    right: -1px;
}

/* hover */
.button-border:hover::after,
.button-border:hover::before {
  width: 30px;
}

.button-border:hover span::after,
.button-border:hover span::before {
  height: 30px;
}
.box {
	font-size: 0.8rem;
}
.heading .box img {
	height: 40px;
}
.heading .box.yout span {
	line-height: 2.8;
} 
.heading .box.yout img {
	height: 25px;
	margin-top: 5px;
}
.note .button-border {
	padding: 25px 40px 31px;
}
.dinb {
	display: inline-block;
}
.pickup{
	max-width: 90%;
 margin: 0 auto 65px;
}
.pickup iframe {
		aspect-ratio: 16 / 9;
		 width: -webkit-fill-available;
	}
@media screen and (max-width: 767px) {
header .heading p {
		font-size: 0.8rem;
	}
header .block {
				width: 90%;
}
.pickup{
	max-width: 90%;
}
	.dis_flex.cent {
	gap: 15px;
}
	.button-border {
	width: 100%;
	max-width: 230px;
}
	.button-border span{
	white-space: nowrap;
	font-size: 0.8rem;
}
}
  .icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 8px;
    transition: ease 0.75s;
  }

  .icon span:nth-of-type(1) {
    top: 16px;
  }
  .icon span:nth-of-type(2) {
    top: 28px;
  }
  .icon span:nth-of-type(3) {
    bottom: 16px;
  }

  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }

  .close span:nth-of-type(2) {
    opacity: 0;
  }

  .close span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 28px;
  }
/*スマホ用メニューリスト*/
  .sp-nav {
      top: 0px;
      left: 0px;
      position: absolute;
      /*z-index: 10;*/
      width: 100%;
      background-color: rgba(34, 49, 52, 0.9);
						overflow: auto;
    		height: 100vh;
  }

 .sp-nav ul {
  flex-direction: column;	/*ulのflexboxを縦並びにする*/  
}

  /*.sp-nav a {
    color: #fff;
    text-align: center; 
    border-top: solid 0.5px rgba(255, 255, 255, 0.6);
  }*/
/*}*/

/*SnapWidget*/
.box.snap {
	width: 90%;
}