@charset "utf-8";
/* CSS Document */

/*--作業用*/
.outer-menu{display:;}
.loading {display:;}
/*--------------------------------------------------------------------------ページ全体を包括*/
#wrapper {
width: 100%;
margin: 0 auto;
overflow: hidden;/* 作業用 */
}

.fixed{
	position:fixed;
	top: 0;
	left: 0;
}

a:hover img{opacity:1.00;filter:alpha(opacity=100);-ms-filter: "alpha( opacity=100 )";}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  position: fixed;
  background-image: url(../web/object/back.gif);
  top: 0;
  left: 0;
  z-index: 15000;
  opacity: 1;
  visibility: visible;
  display: ;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-image: url(../web/object/back.gif);
  z-index: 15000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

body {
  animation: disableScroll .1s linear 1.0s both;
}


@media screen and (max-width:767px){
.loading img {
	width: 200px;
	height: 221px;
}
}

/*--------------------------------------------------------------------------ヘッダー*/

header {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	background-color:none;
	position: fixed;
	z-index: 10000;
	transition: .5s;
}
.head {
	width: 100%;
	height: 190px;
	text-align: left;
	margin: 0 auto;
	padding: 0;
	line-height: 0;
}
.head.scroll-nav {
	height: 120px;
}
h1 {
	width: 230px;
	height: 100px;
	padding: 0;
	border: 0;
	margin-top: 20px;
	margin-left: 30px;
	margin-right: 0;
	margin-bottom: 0;
	position: absolute;
	z-index: 100001;
	transition: 0.4s;
	font-size: 0;
	line-height: 0;
}
h1,h2,h3,h4,h5,h6 { font-weight: normal;}

@media screen and (max-width:767px){
header {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	top:0 !important;
	left:0 !important;
}
.head {
	width: 100%;
	min-width: 320px;
	height: 60px;
	text-align: left;
	margin: 0 auto;
}
h1 {
	width: 115px;
	height: 50px;
	text-align: left;
	border: 0;
	margin-top: 5px;
	margin-left: 10px;
	margin-bottom: 0;
	position: relative;
	float: left;
}
h1 img {
	width: 115px;
	height: 50px;
}
.head.scroll-nav {
	height: 60px;
}
}


/* グローバルナビ　PC*/
#gNavi {
	width: 100%;
	height: 160px;
	margin-top: 30px;
	position: absolute;
}
ul.gnv {
	width: 100%;
	height: 160px;
	float: right;
	margin-right: 100px;
}
ul.gnv li {
	width: auto;
	height: auto;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 18px;
	float: right;
	text-align: left;
	list-style: none;
	transition: .4s;
	color: #fff;
	font-weight: 500;
	display: block;
	transition: 0.4s;
    writing-mode: tb-rl;
    writing-mode: vertical-rl; 
    -moz-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    padding: 0 0px 0px 0px;
	margin-left: 16px;
	margin-right: 16px;
	padding: 4px;
}
ul.gnv li:hover { background-color: rgba(0,0,0,0.5);}
ul.gnv li a{
	color: #fff;
}
#gNavi.scroll-nav {
	display:none;
}

@media screen and (max-width:767px){
#gNavi {display: none;}
}

/*--ハンバーガーメニュー*/
.outer-menu {
  position: fixed;
  top: 40px;
  right: 80px;
  z-index: 1000000;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: .75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity .4s ease .4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding: 12px;
  background-image: url(../web/object/back.gif);
  cursor: pointer;
  transition: box-shadow .4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 26px;
  height: 2px;
  background: #FEFEFE;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 0;
  width: 26px;
  height: 2px;
  background: inherit;
  transition: all .4s ease;
}
.outer-menu .hamburger > div:after {
  top: 8px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div {
  width: 300vw;
  height: 300vw;
  color: #FEFEFE;
  background-image: url(../web/object/back.gif);
  border-radius: 50%;
  transition: all .4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 100vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity .4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div{
    scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
    -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/}
.outer-menu .menu > div > div::-webkit-scrollbar{
	  display: none;
}
#dmcontainer {
  width: 1100px;
  height: 600px;
  padding-top: 4%;
  padding-bottom: 0px;
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}
#dmcontainer::-webkit-scrollbar {  /* Chrome, Safari 対応 */
        display:none;
}
#dmcbox {
	position: relative;
	width: 450px;
	height: 600px;
	float: left;
}
#dmcbox .bgImg{
	z-index: 1000;
	width: 100%;
	height: 600px;
	position: absolute;
	top:0;
	left: 0;
	right:0;
	bottom:0;
	opacity:0;
	animation: bgAnime3 18s infinite;
	background-position: top center;
	background-repeat: no-repeat;
	z-index: 1;
	background-size: contain;
}
#dmcbox .src1{
	display:block;
	background-image: url(../web/object/hmimg1.jpg);
	background-size: cover;
}
#dmcbox .src2{
	background-image: url(../web/object/hmimg2.jpg);  
	animation-delay: 6s;
	background-size: cover;
}
#dmcbox .src3{
	background-image: url(../web/object/hmimg3.jpg); 
	animation-delay: 12s;
	background-size: cover;
}
@keyframes bgAnime3 {
   0% { opacity: 0; }
   5% { opacity: 1; }
   33% { opacity: 1; }
  38% { opacity: 0; }
}

#dmcbox2 {
	width: 400px;
	height: 500px;
	margin-top: 50px;
	margin-left: 150px;
	float: left;
	background-image: url(../web/object/hmback.png);
	background-position: center center;
	background-repeat: no-repeat;
}
#dmcbox2 .Cttl{
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 35px;
	transition: 0.3s;
}
#dmcbox2 .tte{
	width: auto;
	height: auto;
	float: left;
	font-size: 25px;
	line-height: 25px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 3px;
	transition: 0.4s;
	text-align:left;
}
#dmcbox2 .tte a{
	color: #fff;
	text-decoration: none;
}
#dmcbox2 .tte:hover{
	text-decoration: underline;
	text-decoration-style: dotted;
	text-decoration-color: rgba(255,255,255,0.5);
	text-decoration-thickness: 2px; 
	text-underline-offset: 10px;
}
#dmcbox2 .txt{
	width: auto;
	height: auto;
	float: left;
	font-size: 18px;
	line-height: 25px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 1px;
	text-align:left;
}
#dmcbox2 .txt a{
	color: #fff;
}


/* グローバルナビ　モバイル*/
@media screen and (max-width:767px){
.outer-menu {
  position: fixed;
  top: 10px;
  right: 50px;
  z-index: 100000;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  opacity: 0;
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  padding: .5em 1em;
  background-image: url(../web/object/back.gif);
  cursor: pointer;
  transition: box-shadow .4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 200%;
  height: 2px;
  background: #FEFEFE;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all .4s ease;
}
.outer-menu .hamburger > div:after {
  top: 7px;
}
#dmcontainer {
  width: 320px;
  height: 100vh;
}
.outer-menu .menu > div > div{
    scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
    -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/}
.outer-menu .menu > div > div::-webkit-scrollbar{
	  display: none;
}

#dmcontainer {
  width: 320px;
  height: 100vh;
  margin-top: 100px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.outer-menu .menu > div > div{
    scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
    -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/}
.outer-menu .menu > div > div::-webkit-scrollbar{
	  display: none;
}
#dmcbox { display:none;}
#dmcbox2 {
	padding: 0px;
	width: 320px;
	height: auto;
	float: left;
	margin-left: 0px;
}
#dmcbox2 .Cttl{
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 20px;
	transition: 0.3s;
	text-align: center;
}
#dmcbox2 .tte{
	width: 100%;
	height: auto;
	float: left;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0;
	text-align: center;
}
#dmcbox2 .tte a{
	color: #fff;
	text-decoration: none;
}
#dmcbox2 .txt{
	width: 100%;
	height: auto;
	float: left;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 1px;
	text-align: center;
}
#dmcbox2 .txt a{
	color: #fff;
}
}

/*--------------------------------------------------------------------------フッター*/

#ftback {
	position: relative;
	width: 100%;
	min-height: 50vh;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 0px;
	background-image: url(../web/object/foot.webp);
	background-attachment: fixed;
	background-position: top center;
	background-size: cover;
}

footer {
	width: 100%;
	height: auto;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px;
	padding-bottom: 20px;
	clear: both;
	float: left;
}

#fbox {
	width: 1000px;
	height: auto;
	margin: 0 auto;
}

.flogo {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 16px;
	line-height: 16px;
	color: #FFF;
}
.flogo img{
	width: 140px;
	height: auto;
	margin-bottom: 30px;
}
.ft1 {
	width: 500px;
	height: auto;
	margin-top: 100px;
	text-align: left;
	font-size: 18px;
	line-height: 30px;
	color: #FFF;
	float: left;
}
.ft2 {
	width: 500px;
	height: auto;
	margin-top: 130px;
	text-align: right;
	font-size: 16px;
	line-height: 30px;
	color: #FFF;
	float:left;
}
.ft2 a{
	color: #FFF;
}

#cr{
	width: 100%;
	height: 12px;
	text-align: center;
	font-size: 12px;
	line-height: 12px;
	color: #857c6d;
	margin-top: 100px;
	float: left;
}

@media screen and (max-width:767px){

#ftback {
	position: relative;
	width: 100%;
	min-height: 30vh;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 0px;
	background-image: url(../web/object/foot.webp);
	background-attachment: fixed;
	background-position: top center;
	background-size: cover;
}	
	
footer {
	width: 100%;
	height: auto;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px;
	padding-bottom: 5px;
}

#fbox {
	width: 320px;
	height: auto;
	margin: 0 auto;
}

.flogo {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 12px;
	line-height: 12px;
	color: #FFF;
}
.flogo img{
	width: 100px;
	height: auto;
	margin-bottom: 20px;
}
.ft1 {
	width: 320px;
	height: auto;
	margin-top: 20px;
	text-align: center;
	font-size: 12px;
	line-height: 15px;
	color: #FFF;
	float: left;
}
.ft2 {
	width: 320px;
	height: auto;
	margin-top: 30px;
	text-align: center;
	font-size: 12px;
	line-height: 12px;
	color: #FFF;
	float:left;
}
.ft2 a{
	color: #FFF;
}
#cr{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 10px;
	line-height: 10px;
	margin-top: 30px;
	float: left;
}

}
