@charset "utf-8";

._on:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    /* ie lt 8 */
    -ms-filter: "alpha(opacity=70)";
    /* ie 8 */
    -moz-opacity: 0.7;
    /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.7;
    /* Safari 1.x */
    zoom: 1;
    display: inline-block\9;
    /*IE8*/
}

.tel-link a {
    text-decoration: none;
}

.img_bg {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
}

.img_bg02 {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 1;
    opacity: 0.3;
}

.disable {
    pointer-events: none;
    cursor: default;
}

.stel {
    display: none;
}

.ptel {
    display: block;
}

.iphone #swiffycontainer,
.android #swiffycontainer {
    display: block;
}

.iphone #fla,
.android #fla {
    display: none;
}

#swiffycontainer {
    display: none;
}

.pcVideo {
    display: block;
}

.spVideo {
    display: none;
}


/*
------ index ------ */

#index {}

body#index {
    background-color: #000022;
}

#index #contents {
  width: 100%; /*幅指定*/
  display: flex;
}

#index #main {
  width: 200px; /*幅指定*/
  text-align: center;

}

#index #sub {
  margin: 10px auto;
  width: 100%;
  flex: 1;
}

#index p.En{
	margin: 30px auto;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:50pt;
	color:#FFFFFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: sideways;
}

#index img.contact{
 position: fixed;
 bottom: 10px;
 left: 10px;
}


#index a.block{
	display: block;
	margin: 15px auto;
}


/*
------ contact ------ */


#contact {}

body#contact {
    background-color: #000022;
}



#contact #contents {
  width: 100%; /*幅指定*/
  display: flex;
}

#contact #main {
  width: 200px; /*幅指定*/
  text-align: center;

}

#contact #sub {
  margin: 10px auto;
  width: 100%;
  flex: 1;
}

#contact p.En{
	margin: 30px auto;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:50pt;
	color:#FFFFFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: sideways;
}

#contact img.contact{
 position: fixed;
 bottom: 10px;
 left: 10px;
}


#contact a.block{
	display: block;
	margin: 15px auto;
}


#contact #main-wrap{
  width: 100%;
  text-align: center;
	margin: 0 auto;

}


#contact #main-wrap #mainBox{
  width: 900px;
  text-align: center;
  background-color: #FFFFFF;
  margin: 50px auto;
	padding: 50px;

}



#contact .dl01 {
    width: 800px;
    position: relative;
    margin: 0 auto 10px;
}

#contact .dl01 dt {
    float: left;
    clear: both;
    width: 100px;
    padding: 14px 0 6px;
    color: #000000;
}

#contact .dl01 dd {
    padding: 13px 0 6px;
    min-height: 33px;
}

#contact .dl01 dd.bbnone {
    border-bottom: none;
}

#contact .dl01 dd input {
    padding: 2px;
    width: 600px;
    margin: -0px 0 0;
    box-shadow: none;
}

#contact .dl01 dd textarea {
    padding: 10px;
    width: 550px;
    height: 80px;
    box-shadow: none;
}

#contact #btn-area {
    text-align: center;
}

#contact #btn-area input {
    padding: 2px 5px;
}

#contact .dl01 dd.ermsg input {
    background: #FFCCCC;
}

#contact p.ermsg {
    color: #D4262C;
}


input[type=submit] {
    padding: 8px 25px;
}

input[type=button] {
    padding: 8px 15px;
}

input[type=reset] {
    padding: 8px 15px;
}

#errmsg {
    width: 650px;
    margin: 0 auto;
    border: 5px solid #D4262C;
    padding: 20px;
    color: #D4262C;
    font-weight: bold;
    background: #FFFFFF;
}

#contact p.txt01 {
    font-size: 172%;
    color: #000000;
}



/*==================================================
ギャラリーのためのcss
===================================*/
#index .gallery{
columns: 4;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
}

#index .gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
}

/*ギャラリー内のイメージは横幅100%にする*/
#index .gallery img{
  width:100%;
  height:auto;
  vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
  #index .gallery{
  columns:3;
  } 
}

@media only screen and (max-width: 768px) {
  #index .gallery{
  columns: 2;
  } 
}


/*========= レイアウトのためのCSS ===============*/

#index ul{
  margin:0;
  padding: 0;
  list-style: none;
}

#index a{
  color: #333;
}

#index a:hover,
#index a:active{
  text-decoration: none;
}

#index h1{
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin:30px 0;
}

#index p{
  margin:0 10px 10px 10px;
  word-wrap : break-word;
}

/*画像を出現させるアニメーションCSS*/

#index .flipLeft{
animation-name: flipLeft;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity: 0;
}



@keyframes flipLeft{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


@media screen and (max-width: 767px) {
	
  #index p.En{
	margin: 20px auto;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:30pt;
	color:#FFFFFF;
	writing-mode: horizontal-tb;
-webkit-writing-mode: horizontal-tb;
-ms-writing-mode: horizontal-tb;

}

  #index #contents {
    display: block;
  }
  #index #main {
    width: 100%;
  }
  #index #sub {
    width: 100%;
  }
	
    /*
------ contact ------ */
    #contact {
        overflow: hidden;
        width: 100%;
    }
	
	#contact #contents {
	width: 100%; /*幅指定*/
	display: flex;
	}

	#contact #sub {
	margin: 10px auto;
	width: 100%;
	flex: 1;
	}
	
    #contact h2 {
        font-size: 40pt;
        font-weight: bold;
    }
    #contact #main-wrap {
        width: 100%;
        min-width: auto;
        margin: 0px auto 0;
    }
    #contact #main {
        width: 13%;
        padding: 0;
        position: relative;
        z-index: 10;
        text-align: center;
    }
	
	#contact a.block{
	text-align: center;
	display: block;
	margin: 15px auto;
	width: 90%;
}

	
#contact p.En{
	font-size:40pt;
}
	
#contact #main-wrap #mainBox{
  width: 85%;
  text-align: center;
  background-color: #FFFFFF;
	padding: 10px;

}
	
    #contact .dl01 {
        width: 100%;
    }
    #contact .dl01 dt {
        float: none;
        clear: both;
        width: 100%;
        padding: 14px 0 6px;
    }
    #contact .dl01 dd {
        padding: 14px 0 6px;
        min-height: auto;
    }
    #contact .dl01 dd.bbnone {
        border-bottom: none;
    }
    #contact .dl01 dd input {
        padding: 5px;
        width: 70%;
        margin: -5px 0 0;
    }
    #contact .dl01 dd textarea {
        padding: 5%;
        width: 80%;
    }
    #contact #btn-area {
        text-align: center;
    }
    #contact #btn-area input {
        padding: 2px 5px;
    }
    #contact .dl01 dd.ermsg input {
        background: #FFCCCC;
    }
    #contact p.ermsg {
        color: #D4262C;
    }
    #contact #slide {
        width: 240px;
        height: 318px;
        margin: 0 0 0 -20px;
    }
    #contact #slide img {
        position: absolute;
        left: 0;
        top: 0;
    }
    input[type=submit] {
        padding: 8px 25px;
    }
    input[type=button] {
        padding: 8px 15px;
    }
    input[type=reset] {
        padding: 8px 15px;
    }
    #errmsg {
        width: 70%;
        margin: 0 auto;
        border: 5px solid #D4262C;
        padding: 5%;
        color: #D4262C;
        font-weight: bold;
        background: #FFFFFF;
    }
    #contact p.txt01 {
        font-size: 172%;
    }
    #contact object {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
    }
   
    #contact dd.category input {
        width: auto;
    }
    #contact dd.category label {
        padding: 0 10px 0 0;
    }
    #contact .dt_span {
        display: block;
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
    }
    #contact .resetBtn,
    #contact .submitBtn {
        width: 80px;
        height: auto;
        padding: 0;
        position: relative;
    }
    #contact .submitBtn {
        top: 0px;
        left: 0px;
    }
    #contact .resetBtn {
        top: 0px;
        left: 0px;
    }
    #contact .contactImg {
        margin: 0px 0 78px;
    }




	
}


