@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
<link href="https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=M+PLUS+Rounded+1c&family=Staatliches&family=Yuji+Boku&display=swap" rel="stylesheet">

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	
    margin: 0;
}

body {
	margin: 0;padding:0;
    font-family: "メイリオ", serif;
	color: var(--text-color);	
	line-height: 2;	
}

#wrap{
clear: both;
width: :auto;
margin: 0 auto;
}
        
/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	transition: 0.5s;	
    text-decoration:none;
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	
    opacity: 0.5;
}

/*ページ内リンク*/
.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}

/*スクロールスライド*/
.slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
.slidein-left{
      transform: translate(-100%,0);
}
.slidein-right{
      transform: translate(100%,0);
}
.slidein-up{
 transform: translate(0,-50%);
}
.slidein-bottom{
  transform: translate(0,100%);
}
.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
}

/*フェードイン*/
.fade{animation: fadeIn 3s ease 0s 1 normal;}
        @keyframes fadeIn { from {
     opacity: 0;
     transform: translateY(-15px);
 }
 to {
     opacity: 1;
     transform: translateY(0);
 }
 }
.slidein-bottom1{
 transform: translate(0,15%);
}
.slidein-bottom2{
 transform: translate(0,30%);
}
.slidein-bottom3{
 transform: translate(0,45%);
}
.slidein-bottom4{
 transform: translate(0,60%);
}
.slidein-bottom5{
 transform: translate(0,75%);
}
.slidein-bottom6{
 transform: translate(0,90%);
}

/*スペース*/
.space{
width: auto;
height: 15px;
background: #fff;
}       
        
/*文字強調*/
.str01{
display: inline-block;
font-size: 48px;
color: #66ccff;
}
        
.str02{
display: inline-block;
font-size: 10px;
color: #fff;
transform     : rotate(-5deg);    
background    : transparent;             
padding       : 0px;                
margin        : 0 2px;              
background    : linear-gradient(transparent 50%, transparent 65%);  
}

.str03{
display: inline-block;
font-size: 12px;
color: #66ccff;
background    : #fff;             
padding       : 0px;                
margin        : 0 2px;              
background    : linear-gradient(transparent 70%, transparent 95%);  
font-weight: bold;
letter-spacing: 3px;
text-shadow   : 2px 2px 1px transparent;
font-family: "メイリオ", serif;
}

/*ボタン*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: transparent;
  border-radius: 0.5rem;
}
        
a.btn-flat {
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #494544;
}

a.btn-flat span {
  position: relative;
  z-index: 1;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: calc(-150% + 20px);
  width: 200%;
  height: 500%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #66ccff;
}

a.btn-flat:after {
  position: absolute;
  top: -400%;
  right: calc(-150% + 20px);
  width: 200%;
  height: 500%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #66ccff;
}

a.btn-flat:hover:before {
  -webkit-transform: rotate(45deg) translateX(0) translateY(-50%);
  transform: rotate(45deg) translateX(0) translateY(-50%);
}

a.btn-flat:hover:after {
  -webkit-transform: rotate(45deg) translateX(0) translateY(50%);
  transform: rotate(45deg) translateX(0) translateY(50%);
}

.btn2{
 display:inline-block;
 background:#66ccff;
 width: 80%;
 padding:10px 30px 10px 20px;
 text-align:center;
 color:#1a0b08;
 margin:5px;
 border:0px solid;
 cursor:pointer;
 position: relative;
 text-decoration: none;
font-size: 12px;
letter-spacing: 2px;
font-weight: bold;
}
.btn2::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 0px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
    transform: skew(45deg);
    transition: .3s;
}
.btn2:hover::after{
    right: 10px;
    width: 30px;
}

/*文字の点滅*/
.blink {
  animation: blinkAnime 2s infinite alternate;
}
@keyframes blinkAnime{
   0% { color: #494544 }
 100% { color: transparent}
}

/*table*/
table.table-top {
margin: 0 auto;
width: 100%;
border: none;
border-top: solid 0px #fff;
border-bottom: solid 1px #fff;
border-collapse: separate;
border-spacing: 0 10px;
background: #202020;
background-image:  radial-gradient(#494544 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size: 1.9px 1.7px;
border-radius: 0px;
box-shadow: 1px 2px 24px inset #202020;
}

table.table-top th {
vertical-align: middle;
height: 53px;
width: 124px;
border-right: dotted 1px #fff;
margin: 0;
text-align: center;
color: #fff;
font-size: 12px;
font-weight: 300;
letter-spacing: 2px;
}

table.table-top td.data {
padding: 0;
margin: 0;
height: 53px;
width: 100px;
border: none;
color: #fff;
font-size: 12px;
line-height: 16px;
letter-spacing: 2px;
text-align: center;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
}

table.table-top td:fst-child {
padding: 0 0 0 10px;
vertical-align: middle;
}

table.table-top td.bar {
height: 1px;
width: 100%;
border-top: solid 1px #fff;
}

table.table-top2 {
margin: 0 auto;
width: 100%;
border: none;
border-top: solid 0px #494544;
border-bottom: solid 1px #494544;
border-collapse: separate;
border-spacing: 0 10px;
background: #f5f5f5;
background-image:  radial-gradient(#c0c0c0 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size: 1.9px 1.7px;
border-radius: 5px;
box-shadow: 1px 1px 24px inset #fafafa;
}

table.table-top2 th {
vertical-align: middle;
height: 53px;
width: 124px;
border-right: dotted 1px #494544;
margin: 0;
text-align: center;
color: #494544;
font-size: 14px;
font-weight: bold;
letter-spacing: 2px;
}

table.table-top2 td.data2 {
padding: 0;
margin: 0;
height: 53px;
width: 100px;
border: none;
color: #494544;
font-size: 14px;
line-height: 16px;
letter-spacing: 2px;
text-align: left;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
padding-left: 20px;
}

table.table-top2 td:fst-child {
padding: 0 0 0 10px;
vertical-align: middle;
}

table.table-top2 td.bar2 {
height: 1px;
width: 100%;
border-top: solid 1px #494544;
}
        
/*スクロールエフェクト*/
.is-animation {
padding-top: 0px;
font-size: 0px;
opacity: 1;
height: 70px;
background: #494544;
background-image:  radial-gradient(#696969 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
box-shadow : 1px 1px 8px #bac8c6;
}
.is-animation img{
width: 125px;
}

.section_bg {
display: grid;
justify-content: center;
align-items: center;
width: 100%;
height: 600px;
font-size: 1.5rem;
font-weight: bold;
color: #111;
background: #101010;
background-image:  radial-gradient(#494544 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
opacity: 0.99;
box-shadow: 1px 2px 29px #000000;
border-radius: 10px;
transition: .8s;
}

.section_bg.section1 {
color: #fff;
background: #101010;
background-image:  radial-gradient(#494544 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
opacity: 0.99;
box-shadow: 1px 2px 29px #000000;
border-radius: 10px;
}
.section_bg.section1.is-active {
color: #494544;
background: #f5f5f5;
background-image:  radial-gradient(#c0c0c0 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
opacity: 0.99;
box-shadow: 1px 2px 29px #000000;
border-radius: 10px;
}

/*スクロールボタン*/
.topIcon {
display       : inline-block;
position      : fixed;       
bottom        : 0px;        
right         : 0px;        
padding       : 20px 15px;   
background: #494544;
background-image:  radial-gradient(#696969 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
color         :#fff;  
opacity       : 1;        
border-radius : 0%;        
font-size     : 10px;        
font-weight   : ;        
line-height   : 1em;       
letter-spacing: 2px;        
text-align    : center;      
cursor        : pointer;    
z-index       : 99999;         
border:0px solid #000;
font-weight: bold;
}

.topIcon:hover {
opacity       : 0.7;   
}

.topIcon a{
text-decoration: none;
color:#fff; 
}

/*スクロール無限ループ*/
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinit_wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinit_list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinit_list-left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinit_item {
  width: calc(100vw / 6);
padding: 1px;
}
.scroll-infinit_item>img {
  width: 100%;
}

@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-infinit_list-right{
  animation :infinity-scroll-right 80s infinite linear 0.5s both;
}
.si{
background: #101010;
background-image:  radial-gradient(#494544 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
opacity: 0.99;
}
.si img{
width: 100%;
height: 100%
}

/* --- MAIL FORM ----- */
form{
width:100%;
}
.str {
display: inline-block;      
font-weight: bold;                
font-size: 90%;               
color: #66ccff;           
}
.status-form{
width: auto;
height: 150px;
letter-spacing: 5px;
padding: 30px;
line-height: 1.5em;
}
.status-form h3{
font-size: 16px;
color:#fff;
letter-spacing: 5px;
}
.status-form label{
font-size: 14px;
font-weight: bold;
color: #fff;
padding-left: 100px;
line-height: 2em;
text-align: center;
letter-spacing: 5px;
}
.user{
width: auto;
height: 350px;
text-align: left;
font-size: 14px;
font-weight: bold;
color:#fff;
padding: 20px;
letter-spacing: 5px;
margin-left: 10px;
margin-right: 10px;
}
.user h3{
font-size: 16px;
color: #fff;
letter-spacing: 5px;
}
.textfield_label{
width: 25em;
display: inline-block;
}
input[type="text"],input[type="email"],input[type="tel"]{
margin-top: 0.5em;
padding: 10px;
width: 350px;
height: 40px;
font-size: 14px;
}
.messagebox{
width: auto;
height: 250px;
font-size: 16px;
text-align: center;
font-weight: bold;
color: #fff;
letter-spacing: 5px;
}
textarea{
padding: 10px;
width:600px;
height: 160px;
font-size: 14px;
}
.privacypolicy{
width: auto;
height: 50px;
font-size: 14px;
font-weight: 300;
color: #fff;
letter-spacing: 2px;
text-align: center;
line-height: 1em;
}
.policy{
width:auto;
height: 100px;
margin-left: 100px;
margin-right: 100px;
font-size: 12px;
line-height: 2em;
text-align: left;
padding: 20px;
border: 1px dotted #fff;
}
.policy a{
color: #66ccff;
}
.submit{
width:auto;
height: 50px;
text-align: center;
padding: 20px;
}

/*予備*/
.etc{
background    : linear-gradient(transparent 70%, #66ccff 95%);  
}

/* --- レスポンシブはじまり ----- */

@media (max-width: 768px){

/*文字強調*/
.str01{
display: inline-block;
font-size: 24px;
color: #66ccff;
}
    
.str03{
display: inline-block;
font-size: 10px;
color: #66ccff;
background    : #fff;             
padding       : 0px;                
margin        : 0 2px;              
background    : linear-gradient(transparent 70%, transparent 95%);  
font-weight: bold;
letter-spacing: 3px;
text-shadow   : 2px 2px 1px transparent;
font-family: "メイリオ", serif;
}

/*table*/
table.table-top {
margin: 0 auto;
width: 100%;
border: none;
border-top: solid 0px #fff;
border-bottom: solid 1px #fff;
border-collapse: separate;
border-spacing: 0 10px;
background: #202020;
background-image:  radial-gradient(#494544 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size: 1.9px 1.7px;
border-radius: 0px;
box-shadow: 1px 2px 24px inset #202020;
}

table.table-top th {
vertical-align: middle;
height: 53px;
width: 124px;
border-right: dotted 1px #fff;
margin: 0;
text-align: center;
color: #fff;
font-size: 10px;
font-weight: 300;
letter-spacing: 1px;
}

table.table-top td.data {
padding: 5px;
margin: 0;
height: 53px;
width: 60px;
border: none;
color: #fff;
font-size: 12px;
line-height: 16px;
letter-spacing: 2px;
text-align: center;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
}

table.table-top2 {
margin: 0 auto;
width: 100%;
border: none;
border-top: solid 0px #494544;
border-bottom: solid 1px #494544;
border-collapse: separate;
border-spacing: 0 10px;
background: #f5f5f5;
background-image:  radial-gradient(#c0c0c0 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size: 1.9px 1.7px;
border-radius: 5px;
box-shadow: 1px 1px 24px inset #fafafa;
}

table.table-top2 th {
vertical-align: middle;
height: 53px;
width: 124px;
border-right: dotted 1px #494544;
margin: 0;
text-align: center;
color: #494544;
font-size: 12px;
font-weight: bold;
letter-spacing: 2px;
}

table.table-top2 td.data2 {
padding: 0;
margin: 0;
height: 53px;
width: 100px;
border: none;
color: #494544;
font-size: 12px;
line-height: 16px;
letter-spacing: 2px;
text-align: left;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
padding-left: 5px;
word-wrap: break-word;
}

table.table-top2 td:fst-child {
padding: 0 0 0 10px;
vertical-align: middle;
}

table.table-top2 td.bar2 {
height: 1px;
width: 100%;
border-top: solid 1px #494544;
}
    
/*ボタン*/
.btn2{
 display:inline-block;
 background:#66ccff;
 width: 90%;
 padding:10px 30px 10px 20px;
 text-align:center;
 color:#1a0b08;
 margin:px;
 border:0px solid;
 cursor:pointer;
 position: relative;
 text-decoration: none;
font-size: 8px;
letter-spacing: 1px;
font-weight: bold;
}
.btn2::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 0px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
    transform: skew(45deg);
    transition: .3s;
}
.btn2:hover::after{
    right: 10px;
    width: 30px;
}

/* --- MAIL FORM ----- */
form{
width:100%;
}
.str {
display: inline-block;      
font-weight: bold;                
font-size: 90%;               
color: #66ccff;           
}
.status-form{
width: auto;
height: 150px;
letter-spacing: 2px;
padding: 5px;
line-height: 1.5em;
}
.status-form h3{
font-size: 14px;
color:#fff;
letter-spacing:2px;
}
.status-form label{
font-size: 12px;
font-weight: bold;
color: #fff;
padding-left: 5px;
line-height: 2em;
text-align: left;
letter-spacing: 2px;
}
.user{
width: auto;
height: 500px;
text-align: left;
font-size: 12px;
font-weight: bold;
color:#fff;
padding: 10px;
letter-spacing: 5px;
margin-left: 5px;
margin-right: 5px;
}
.user h3{
font-size: 14px;
color: #fff;
letter-spacing: 2px;
}
.textfield_label{
width: 25em;
display: inline-block;
}
input[type="text"],input[type="email"],input[type="tel"]{
margin-top: 10px;
padding: 5px;
width: 250px;
height: 40px;
font-size: 12px;
}
.messagebox{
width: auto;
height: 250px;
font-size: 14px;
text-align: left;
font-weight: bold;
color: #fff;
letter-spacing: 2px;
}
textarea{
padding: 5px;
width:90%;
height: 160px;
font-size: 12px;
margin-left: 10px;
}
.privacypolicy{
width: auto;
height: 50px;
font-size: 12px;
font-weight: 300;
color: #fff;
letter-spacing: 2px;
text-align: center;
line-height: 1.5em;
padding: 5px;
}
.policy{
width:auto;
height: 100px;
margin-left: 5px;
margin-right: 5px;
font-size: 12px;
line-height: 1.5em;
text-align: left;
padding: 5px;
border: 1px dotted #fff;
}
.policy a{
color: #66ccff;
}
.submit{
width:auto;
height: 50px;
text-align: center;
padding: 10px;
}
    
}