@charset "utf-8";
/* CSS Document */


/*基本記述
----------------------------------------------*/

html{
	font-size: 100%;
}

body{
	font-family:Arial, Helvetica, "sans-serif";
	line-height: 1.7;
	color: #000;
	font-weight: 600;
	font-size: 14px;
}

span {
   display: inline-block;
}

a{
	color:inherit;
	text-decoration: none;
}

img{
	max-width: 100%;
}

.tablet{
	display: none !important;
}

.mobile{
	display: none !important;
}
/*
::-webkit-scrollbar{
   width: 10px;
}
::-webkit-scrollbar-track{
   background-color: #ccc;
}
::-webkit-scrollbar-thumb{
   background-color: #000;
}*/

/*スペース
----------------------------------------------*/
.end{
	padding-bottom: 100px;
}

.space{
	padding-bottom: 60px;
}

.space_s{
	padding-bottom: 30px;
}

.space_ss{
	padding-bottom: 15px;
}

.fastview-space{
	padding-bottom: 165px;
}

/*ローディング画面
----------------------------------------------*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#333;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img{
  width:80%;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*カラム
----------------------------------------------*/
.content{
}

.content_right{
	margin: 0 0 0 300px;
}


/*メニュー
----------------------------------------------*/
.header{
	position: fixed;
	z-index: 990;
	width: 300px;
	height: 100vh;
	padding: 20px;
	background-color: #000;
}

.logo{
	margin: 0 auto 20px;
	text-align: center;
}

.link{
	position: absolute;
	bottom: 0;
	margin: 30px 10px;
	font-size: 12px;
	color: #fff;
}

.copyright-text{
	margin: 10px 0;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
}


nav ul{
	list-style: none;
	text-align: left;
}


/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 10px 15px;
	transition:all .3s;
}

nav ul li a:hover{
	color:#0000FF;	
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:40%;
	top:10px;
	z-index: 4;
    /*形状を指定*/
	background:#0000FF;
	width:150px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px #fff;
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#fff;
	color: #0000FF;
}


/*ファーストビュー
----------------------------------------------*/
#slider {
	position: relative;
	z-index: -100;
	margin: 0 0 0 auto;
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.firstview_logo{
	position: absolute;
	top: 30%;
	left: 38%;
	z-index: 100;
	width: 50%;
}



/*プロフィール
----------------------------------------------*/
.profire{
	margin: 0 auto;
	width: 60%;
}

.name{
	font-size: 20px;
}

.circle{
	font-size: 12px;
}

.skill{
	font-size: 12px;
	margin: 10px 0 0;
}

.line{
	border-bottom: 2px solid #000;
}

.site{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 5px;
	margin: 0 auto;
	width: 60%;
}

.sitebutton{
	padding: 10px 20px;
	border: 1px solid #000;
	text-align: center;
}

.sitebutton:hover{
	background-color: #000;
	color: #fff;
}


/*スライドショー
----------------------------------------------*/
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:90%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*お問合せ
----------------------------------------------*/
#formWrap {
	width:60%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#formWrapcheck {
	width:80%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	justify-content:flex-start;
}

.contactform{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.formTable{
	margin:0 auto;
}

.formTable tr{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.formTable th{
	text-align:left;
}

.formTablecheck{
}

.formTablecheck tr{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.formTablecheck th{
	text-align:left;
}

.checkbotton{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:20px;
}

.contact{
	border: 1px solid #4A4A4A;
	padding: 2px 5px;
	background-color: #fff;
}

textarea{
	width: 100%;
}

.textarea{
	height: 300px;
}

.contactformbutton{
	position: relative;
  background: #000;
	width: 100%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.contactbutton{
	position: relative;
  background: #000;
	width: 80%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;

}

.contactbutton:hover , .contactformbutton:hover{
  background: #0000FF;
}

.contactbutton_w{
	position: relative;
	background: #fff;
	width: 80%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #000;
	border: 2px solid #000;
  text-align: center;
  text-decoration: none;
}

.contactbutton_w:hover{
    color: #0000FF;
	border: 2px solid #0000FF;
}


/*詳細ページ
----------------------------------------------*/
.detail{
	width: 60%;
	margin: 0 auto;
}

.detailtitle{
	font-size: 25px;
	line-height: 28px;
}

.pager{
	display: flex;
	justify-content: center;
}

.current{
	background-color: #000;
	color: #fff;
}

.pager a{
	padding: 7px 14px;
	margin: 20px 5px;
	border: 1px solid #000;
}


/*コンテンツ系　線・flexなど
----------------------------------------------*/
.contentflex{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 50px;
}

.contentflex li{
	list-style: none;
	width: 24%;
	height: 350px;
	overflow: hidden;
}

.contentflex li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease; /* ゆっくり変化させる */
}

.contentflex li:hover img{
	transform: scale(1.1); /* 拡大 */
}


/*文字系
----------------------------------------------*/
.title{
	position: relative;
	width: 60%;
	margin: 0 auto;
}

.backtitle{
	font-size: 130px;
	position: absolute;
	padding: 0 50px;
	z-index: -999;
	font-family: Georgia, "Times New Roman", Times, "serif";
	font-weight: 400;
	color: #fff;
	-webkit-text-stroke: 1px #CCCCCC;
  text-stroke: 1px #CCCCCC;
}

.body{
	font-size: 14px;
	text-align: center;
	max-width: 900px;
	margin: 0px auto;
	position: relative;
	z-index: 10;
}

.body img{
	width: 50%;
	display: block;
	margin: 0 auto;
}

.body p , .bodymin p{
	display: inline-block;
  text-align: left;
}

.body p span{
	font-size: 11px;
}

.bodymin{
	font-size: 12px;
	text-align: left;
	max-width: 900px;
	margin: 0px auto;
	position: relative;
	z-index: 10;
}

.bodycenter{
	font-size: 14px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	position: relative;
	z-index: 10;
}

.body a{
	border-bottom: 1.5px solid #366161;
}

.body a:hover{
	color: #FBB03B;
	border-bottom: 1.5px solid #FBB03B;
}

.contents_title{
	font-size: 30px;
	line-height: 30px;
}


/*画像系
----------------------------------------------*/
.image{
	max-width: 800px;
	margin: 0 auto;
}

.image img{
	width: 100%;
}

/*ボタン系
----------------------------------------------*/
.button_yajirushi_b {
	position: relative;
	max-width: 350px;
	margin: 0 auto;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
	background: #fff;
	color: #000;
	border: 1px solid #000;
	cursor: pointer;
}

.button_yajirushi_b:hover{
  background: #000;
	color: #fff;
}




/*タブレット　レスポンシブ
----------------------------------------------*/
@media (max-width: 1180px){
	
	.pc{
		display: none !important;
	}
	
	.tablet{
		display: block !important;
	}
	
/*ローディング画面
----------------------------------------------*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#333;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img{
  width:80%;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}



/*カラム
----------------------------------------------*/
.content{
}

.content_right{
	margin: 0;
}
	
	
/*ハンバーガーメニュー
----------------------------------------------*/
	
	.hamburger-menu{
		display: block;
	}
	
	.menu-btn {
    position: fixed;
    top: 15px;
    left: 30px;
    display: flex;
    height: 50px;
    width: 50px;
	border: 2px solid #CCCCCC;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(0,0,0,0.00);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #CCCCCC;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
	
	#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
	
	#menu-btn-check {
    display: none;
}
	


/*メニュー
----------------------------------------------*/
.header{
	width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 900;
    background-color: #000;
    transition: all 0.5s;/*アニメーション設定*/
}

	#menu-btn-check:checked ~ .header {
    right: 70%;/*メニューを画面内へ*/
}

.logo{
	margin: 50px auto 20px;
	text-align: center;
}

.link{
	position: absolute;
	bottom: 0;
	margin: 30px 10px;
	font-size: 12px;
	color: #fff;
}

.copyright-text{
	margin: 10px 0;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
}


nav ul{
	list-style: none;
	text-align: left;
}


/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 10px 15px;
	transition:all .3s;
}

nav ul li a:hover{
	color:#0000FF;	
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:40%;
	top:10px;
	z-index: 4;
    /*形状を指定*/
	background:#0000FF;
	width:150px;
    /*はじめは非表示*/
	/*visibility: hidden;
	opacity: 0;*/
    /*アニメーション設定*/
	/*transition: all .3s;*/
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px #fff;
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#fff;
	color: #0000FF;
}


/*ファーストビュー
----------------------------------------------*/
#slider {
	position: relative;
	z-index: -100;
	margin: 0 0 0 auto;
    width: 100%;
    height: 60vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.firstview_logo{
	position: absolute;
	top: 17%;
	left: 25%;
	z-index: 100;
	width: 50%;
}





/*プロフィール
----------------------------------------------*/
.profire{
	margin: 0 auto;
	width: 85%;
}

.name{
	font-size: 20px;
}

.circle{
	font-size: 12px;
}

.skill{
	font-size: 12px;
	margin: 10px 0 0;
}

.line{
	border-bottom: 2px solid #000;
}

.site{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 5px;
	margin: 0 auto;
	width: 85%;
}

.sitebutton{
	padding: 10px 20px;
	border: 1px solid #000;
	text-align: center;
}

.sitebutton:hover{
	background-color: #000;
	color: #fff;
}


/*スライドショー
----------------------------------------------*/
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:90%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*メンバー
----------------------------------------------*/


/*お問合せ
----------------------------------------------*/
#formWrap {
	width:80%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#formWrapcheck {
	width:80%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	justify-content:flex-start;
}

.contactform{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.formTable{
	margin:0 auto;
}

.formTable tr{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.formTable th{
	text-align:left;
}

.formTablecheck{
}

.formTablecheck tr{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.formTablecheck th{
	text-align:left;
}

.checkbotton{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:20px;
}

.contact{
	border: 1px solid #4A4A4A;
	padding: 2px 5px;
	background-color: #fff;
}

textarea{
	width: 100%;
}

.textarea{
	height: 300px;
}

.contactformbutton{
	position: relative;
  background: #000;
	width: 100%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.contactbutton{
	position: relative;
  background: #000;
	width: 80%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;

}

.contactbutton:hover , .contactformbutton:hover{
  background: #0000FF;
}

.contactbutton_w{
	position: relative;
	background: #fff;
	width: 80%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #000;
	border: 2px solid #000;
  text-align: center;
  text-decoration: none;
}

.contactbutton_w:hover{
    color: #0000FF;
	border: 2px solid #0000FF;
}


/*詳細ページ
----------------------------------------------*/
.detail{
	width: 80%;
	margin: 0 auto;
}

.detailtitle{
	font-size: 25px;
	line-height: 28px;
}



/*コンテンツ系　線・flexなど
----------------------------------------------*/
.contentflex{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 50px;
}

.contentflex li{
	list-style: none;
	width: 32%;
	height: 350px;
}

.contentflex li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*文字系
----------------------------------------------*/
.title{
	position: relative;
	width: 60%;
	margin: 0 auto;
}

.backtitle{
	font-size: 130px;
	position: absolute;
	padding: 0 50px;
	z-index: -999;
	font-family: Georgia, "Times New Roman", Times, "serif";
	font-weight: 400;
	color: #fff;
	-webkit-text-stroke: 1px #CCCCCC;
  text-stroke: 1px #CCCCCC;
}

.body{
	font-size: 14px;
	text-align: center;
	max-width: 900px;
	margin: 0px auto;
	position: relative;
	z-index: 10;
}

.body p , .bodymin p{
	display: inline-block;
  text-align: left;
}

.bodymin{
	font-size: 12px;
	text-align: left;
	max-width: 740px;
	margin: 0px auto;
	position: relative;
	z-index: 10;
}

.bodycenter{
	font-size: 14px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	position: relative;
	z-index: 10;
}

.body a{
	border-bottom: 1.5px solid #366161;
}

.body a:hover{
	color: #FBB03B;
	border-bottom: 1.5px solid #FBB03B;
}

.contents_title{
	font-size: 30px;
	line-height: 30px;
}


/*画像系
----------------------------------------------*/
.image{
	max-width: 800px;
	margin: 0 auto;
}

.image img{
	width: 100%;
}

/*ボタン系
----------------------------------------------*/
.button_yajirushi_b {
	position: relative;
	max-width: 350px;
	margin: 0 auto;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
	background: #fff;
	color: #000;
	border: 1px solid #000;
}

.button_yajirushi_b:hover{
  background: #000;
	color: #fff;
}

	
}


/*スマホ　レスポンシブ
----------------------------------------------*/
@media (max-width: 750px){
	
	.pc_tablet{
		display: none !important;
	}
	
	.tablet{
		display: none !important;
	}
	
	.mobile{
		display: block !important;
	}
	
	
/*カラム
----------------------------------------------*/
.content{
}

.content_right{
	margin: 0;
}
	
	
/*ハンバーガーメニュー
----------------------------------------------*/
	
	.hamburger-menu{
		display: block;
	}
	
	.menu-btn {
    position: fixed;
    top: 15px;
    left: 30px;
    display: flex;
    height: 40px;
    width: 40px;
	border: 2px solid #CCCCCC;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(0,0,0,0.00);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #CCCCCC;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
	
	#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
	
	#menu-btn-check {
    display: none;
}
	


/*メニュー
----------------------------------------------*/
.header{
	width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 900;
    background-color: #000;
    transition: all 0.5s;/*アニメーション設定*/
}

	#menu-btn-check:checked ~ .header {
    right: 20%;/*メニューを画面内へ*/
}

.logo{
	margin: 50px auto 20px;
	text-align: center;
}

.link{
	position: absolute;
	bottom: 0;
	margin: 30px 10px;
	font-size: 12px;
	color: #fff;
}
	
	.bunnermobile{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap:5px;
	}

.copyright-text{
	margin: 10px 0;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
}


nav ul{
	list-style: none;
	text-align: left;
}


/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 10px 15px;
	transition:all .3s;
}

nav ul li a:hover{
	color:#0000FF;	
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:40%;
	top:10px;
	z-index: 4;
    /*形状を指定*/
	background:#0000FF;
	width:150px;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px #fff;
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#fff;
	color: #0000FF;
}


/*ファーストビュー
----------------------------------------------*/
#slider {
	position: relative;
	z-index: -100;
	margin: 0 0 0 auto;
    width: 100%;
    height: 60vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.firstview_logo{
	position: absolute;
	top: 17%;
	left: 10%;
	z-index: 100;
	width: 80%;
}



/*フッター
----------------------------------------------*/




/*プロフィール
----------------------------------------------*/
.profire{
	margin: 0 auto;
	width: 85%;
}

.name{
	font-size: 20px;
}

.circle{
	font-size: 12px;
}

.skill{
	font-size: 12px;
	margin: 10px 0 0;
}

.line{
	border-bottom: 2px solid #000;
}

.site{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	margin: 0 auto;
	width: 85%;
}

.sitebutton{
	padding: 10px 20px;
	border: 1px solid #000;
	text-align: center;
}

.sitebutton:hover{
	background-color: #000;
	color: #fff;
}


/*スライドショー
----------------------------------------------*/
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:90%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*メンバー
----------------------------------------------*/


/*お問合せ
----------------------------------------------*/
#formWrap {
	width:80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#formWrapcheck {
	width:80%;
	display: flex;
	flex-direction: column;
	justify-content:flex-start;
}

.contactform{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.formTable{
	margin:0 auto;
}

.formTable tr{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.formTable th{
	text-align:left;
}

.formTablecheck{
}

.formTablecheck tr{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}

.formTablecheck th{
	text-align:left;
}

.checkbotton{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:20px;
}

.contact{
	border: 1px solid #4A4A4A;
	padding: 2px 5px;
	width: 100%;
	background-color: #fff;
}

textarea{
	width: 100%;
}

.textarea{
	height: 400px;
}

.contactformbutton{
	position: relative;
  background: #000;
	width: 100%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.contactbutton{
	position: relative;
  background: #000;
	width: 80%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;

}

.contactbutton:hover , .contactformbutton:hover{
  background: #0000FF;
}

.contactbutton_w{
	position: relative;
	background: #fff;
	width: 80%;
	margin: 0 auto;
  padding: 10px 40px;
  color: #000;
	border: 2px solid #000;
  text-align: center;
  text-decoration: none;
}

.contactbutton_w:hover{
    color: #0000FF;
	border: 2px solid #0000FF;
}

/*詳細ページ
----------------------------------------------*/
.detail{
	width: 80%;
	margin: 0 auto;
}

.detailtitle{
	font-size: 20px;
	line-height: 28px;
}
	
	.up_ymd{
		font-size: 12px;
	}
	
	.detailText{
		font-size: 14px;
	}



/*コンテンツ系　線・flexなど
----------------------------------------------*/
.contentflex{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 10px;
}

.contentflex li{
	list-style: none;
	width: 48%;
	height: 200px;
}

.contentflex li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*文字系
----------------------------------------------*/
.title{
	position: relative;
	width: 60%;
	margin: 0 auto;
}

.backtitle{
	font-size: 80px;
	position: absolute;
	padding: 30px 0 0;
	z-index: -999;
	font-family: Georgia, "Times New Roman", Times, "serif";
	font-weight: 400;
	color: #fff;
	-webkit-text-stroke: 1px #CCCCCC;
  text-stroke: 1px #CCCCCC;
}

.body{
	font-size: 14px;
	text-align: center;
	max-width: 900px;
	margin: 0px 40px;
	position: relative;
	z-index: 10;
}
	
.body img{
	width: 90%;
	display: block;
	margin: 0 auto;
}

.body p , .bodymin p{
	display: inline-block;
  text-align: left;
}

.bodymin{
	font-size: 12px;
	text-align: left;
	max-width: 740px;
	margin: 0px 40px;
	position: relative;
	z-index: 10;
}

.bodycenter{
	font-size: 14px;
	text-align: center;
	max-width: 900px;
	margin: 0 40px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	position: relative;
	z-index: 10;
}

.body a{
	border-bottom: 1.5px solid #366161;
}

.body a:hover{
	color: #FBB03B;
	border-bottom: 1.5px solid #FBB03B;
}

.contents_title{
	font-size: 30px;
	line-height: 30px;
}


/*画像系
----------------------------------------------*/
.image{
	max-width: 800px;
	margin: 0 auto;
}

.image img{
	width: 100%;
}

/*ボタン系
----------------------------------------------*/
.button_yajirushi_b {
	position: relative;
	max-width: inherit;
	margin: 0 40px;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
	background: #fff;
	color: #000;
	border: 1px solid #000;
}

.button_yajirushi_b:hover{
  background: #000;
	color: #fff;
}
	
}
