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

/* ---------------------------------------------------------------------------------------------

　   webフォント

--------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');



/* ---------------------------------------------------------------------------------------------

　   ページ読み込み　ふわっと表示

--------------------------------------------------------------------------------------------- */

  body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    -o-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
	  background-color: #252525;
	  color: #ffffff!important;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}

/* ---------------------------------------------------------------------------------------------

　   全体

--------------------------------------------------------------------------------------------- */

html {
	margin:			0!important;
	padding:		0!important;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	-moz-text-size-adjust:		none;
	-webkit-text-size-adjust:	100%;
	}
	
body{
	color: #000000;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	line-height:	200%;
	width:			100%;
	padding:		0;
	margin: 0;
	}
	@media only screen and (max-width: 640px) {
		body{
			/*font-size: 15px;*/
			}
		}
	@media only screen and (max-width: 540px) {
		body{
			font-size: 14.5px;
			line-height:	220%;
			}
		}
	@media only screen and (max-width: 480px) {
		body{
			font-size: 13.5px;
			/*font-weight: normal;*/
			}
		}
	@media only screen and (max-width: 360px) {
		body{
			font-size: 13px;
			}
		}

	img {
		border:			0;
		vertical-align:	middle;
		}
	a img {
		text-align:center;
		border-style:none;
		}




/* ---------------------------------------------------------------------------------------------

　   共通パーツ

--------------------------------------------------------------------------------------------- */

/*----------

　テキスト

----------*/


/* リンク 装飾なし　*/
a{
	text-decoration: none;
    transition: .3s;
	}
/*a:hover{
    opacity: .7;
}*/

/*フォント指定*/
.tiny{
    font-size: 0.7em;
    }

/*フォント色指定*/
.ft_green{
	color: #50be50;
	}

.ft_red{
	color: #ff0000;
	}

/*.en{
	font-family: "EB Garamond";
	font-weight: 400;
	}*/



/*----------

　フォントスタイル

----------*/

.ft_garamond{
	font-family: "EB Garamond";
	font-weight: 400;
	}

.ft_sans{
	font-family: "Reddit Sans", serif;
	}

.ft_oswald{
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	}





/*----------

　デバイスで表示切り替え

----------*/

/*　PCで非表示、スマホで表示　*/
.pc_hidden{
	display: none;
	}
	@media only screen and (max-width: 900px) {
		.pc_hidden{
			display:block !important;
			}
		}
/*　スマホで非表示、PCで表示　*/
.sp_hidden{
	display: block;
	}
	@media only screen and (max-width: 900px) {
		.sp_hidden{
			display:none!important;
			}
		}


/*----------

　罫線

----------*/

hr.line_solid{
	border: none;
	border-bottom: solid 1px #ccc;
	margin: 1.5rem 0 1.8rem 0;
	}




/*　回りこみ解除　*/
.clear{
	clear:both;
	float: none;
	}
.clear::after {
	content: " "; 
	display: block;
	clear: both;
	}

/*PCでのtel:無効に*/
[href^="tel"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
	}
@media screen and (max-width: 767px) {
    [href^="tel"] {
        pointer-events: auto;
    	}
	}




/*----------

　画像

----------*/

img {
	border:			0;
	vertical-align:	middle;/*画像 縦配置時の隙間なくす*/
	}
a img {
	text-align:center;
    border-style:none;
	}




/*----------

　ボタン

----------*/

.btn{
    position: relative;
	overflow: hidden;
	text-decoration: none!important;
	display: inline-block;
   	border: 1px solid #787878;
    padding: 1rem;
    text-align: center;
    outline: none; 
    transition: ease .2s;
	width: 40%;
	}

.btn span {
	position: relative;
	z-index: 3;
	color:#ffffff;
	}

.btn:hover span{
	color:#252525;
	}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#ffffff;
 	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
	}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
	}



.btn_wrap{
	text-align: center;
	margin: 4rem auto;
	}
	@media only screen and (max-width: 767px) {
		.btn_wrap{
			margin: 3rem auto!important;
			}
		}
	@media only screen and (max-width: 600px) {
		.btn{
			padding: 0.5rem!important;
			width: 65%!important;
			}
		.btn_wrap{
			margin: 2rem auto!important;
			}
		
		
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}






/* ---------------------------------------------------------------------------------------------

　   見出し

--------------------------------------------------------------------------------------------- */

/*----------

　見出し(大) 下線2色

----------*/

.ttl_underbar{
    position: relative;
    display: block;
    text-align: center;
    line-height: 130%;
    margin: 3rem auto;
    padding-bottom: 30px;
    clear: both;
	}

.ttl_underbar::after{
    content:'';
    background: url("../img/ttl_underbar.svg") no-repeat center center;
    display: inline-block;
    width: 120px;
    height: 2.25px;
    position:absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateX(-50%);
	}
	@media only screen and (max-width: 767px) {
        .ttl_underbar::after{
            bottom: 20px;
        }
    }
	@media only screen and (max-width: 520px) {
        .ttl_underbar{
            margin-top: 25px;
            padding-bottom: 35px;
        }
    }


/*----------

　タイトルの下側に線

----------*/
.ttl_bdr_bottom{
	color: #fff;
	border-bottom: solid 1px #fff;
	line-height: 150%;
	padding-bottom: 0.5rem;
	margin-bottom:1rem;
	position: relative;
	float: none;
	clear: both;
	}
.ttl_bdr_bottom::after {
	content: " "; 
	display: block;
	clear: both;
	}
.ttl_bdr_bottom a{
	text-decoration: none!important;
	transition: .2s;
	}
.ttl_bdr_bottom a:hover{
	opacity: .7;
	}
	@media only screen and (max-width: 767px) {
		.ttl_bdr_bottom{
			padding-bottom: 10px;
			margin-top: 15px;
			margin-bottom: 10px;
			}
		}
	@media only screen and (max-width: 650px) {
		.ttl_bdr_bottom{}
		.ttl_bdr_bottom::before{
			width: 24px;
			height: 30px;
			margin-left: -30px;
			top:-4px;
			}
		}
	@media only screen and (max-width: 400px) {
		.ttl_bdr_bottom{
			margin-top: 12px;
			padding-bottom: 8px;
			}
		}

/*----------

　タイトルの左側に縦線

----------*/
.ttl_bdr_left{
	color: #fff;
    font-weight: bold;
	margin-top: 1rem;
    margin-bottom: 1rem;
	line-height: 150%;
	padding: 0 0 0 1rem;
	border-left: 3px solid #fff;
    clear:both;
	float: none;
	}
.ttl_bdr_left::after {
	content: " "; 
	display: block;
	clear: both;
	}

	
	
/*----------

　タイトルの両端に横線

----------*/
.ttl_bdr_bothside{
    color: #fff;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	font-size: 1.5rem;
    text-align: center;
    clear:both;
	float: none;
	}
.ttl_bdr_bothside::before,
.ttl_bdr_bothside::after {
    border-top: 1px solid #787878;
    content: "";
    width: 5em; /* 線の長さ */
	}
.ttl_bdr_bothside::before {
    margin-right: 0.8em; /* 文字の右隣 */
	}
.ttl_bdr_bothside::after {
    margin-left: 0.8em; /* 文字の左隣 */
	content: " "; 
	display: block;
	clear: both;
	}


	@media only screen and (max-width: 900px) {
		.ttl_bdr_bothside::before,
		.ttl_bdr_bothside::after {
			width: 3em;
			}
		.ttl_bdr_bothside::before {
			margin-right: 0.5em;
			}
		.ttl_bdr_bothside::after {
			margin-left: 0.5em;
			}
		}

	@media only screen and (max-width: 767px) {
		.ttl_bdr_bothside::before,
		.ttl_bdr_bothside::after {
			width: 2em;
			}
		.ttl_bdr_bothside::before {
			margin-right: 0.4em;
			}
		.ttl_bdr_bothside::after {
			margin-left: 0.4em;
			}
		}
	@media only screen and (max-width: 540px) {
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {
		.ttl_bdr_bothside::before,
		.ttl_bdr_bothside::after {
			width: 1.5em;
			}
		.ttl_bdr_bothside::before {
			margin-right: 0.3em;
			}
		.ttl_bdr_bothside::after {
			margin-left: 0.3em;
			}
		}
	@media only screen and (max-width: 260px) {}




/*----------

　タイトルの右側に横線

----------*/
.ttl_bdr_right{
    color: #fff;
	line-height: 175%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    clear:both;
	float: none;
	margin-top: 1rem;
    margin-bottom: 2rem;
    }
.ttl_bdr_right:after {
    border-top: 1px solid #fff;
    content: "";
    -webkit-box-flex:1;
	-ms-flex-positive:1;
	flex-grow:1;
	display: block;
	clear: both;
    margin-left: 0.5rem;
    }

	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {
		.ttl_bdr_right:after {
			border-top: none;
			margin-left: 0;
			}
		}
	@media only screen and (max-width: 260px) {}



/*----------

　中見出し

----------*/

.sec_heading{
	margin: 5rem auto 3rem auto;
	text-align: center;
	}
.sec_heading .en{
	font-size: 0.8rem;
	font-family: "EB Garamond";
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.2rem;
	line-height: 200%;
	}
.sec_heading.gd .en {color:#7522c9;}
.sec_heading.ci .en {color:#c72b87;}
.sec_heading.no .en {color:#d39325;}
.sec_heading.pr .en {color:#b8315e;}
.sec_heading.web .en {color:#51a9be;}
.sec_heading.ad .en {color:#ccbd30;}
.sec_heading.ev .en {color:#89af32;}

	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.sec_heading{
			margin: 3rem auto 3rem auto;
			}
		.sec_heading h2{
			font-size: 1.35rem!important;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {
		}
	@media only screen and (max-width: 260px) {}





/*----------

　画像hover時zoomするアニメーション

----------*/

.zoomIn {
	cursor: pointer;
	overflow: hidden;
	width: 100%;
	}
.zoomIn img {
	height: auto;
	transition: transform .3s ease;
	}
.zoomIn:hover img {
	transform: scale(1.1);
	}


/*----------

　ぽよぽよ収縮するアニメーション

----------*/

header#header::after {
	animation: puyon 1.0s linear 0s 1;
	}
@keyframes puyon {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  40%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
  50%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  60%  { transform: scale(0.95, 1.05) translate(0%, -3%); }
  70%  { transform: scale(1.05, 0.95) translate(0%, 3%); }
  80%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}



/* ---------------------------------------------------------------------------------------------

　   wrapper

--------------------------------------------------------------------------------------------- */

.wrapper{
	overflow: hidden;
	}







/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */

header#header{
	position: relative;
	background: #000000;
	background: url("../img/bg.jpg") repeat;
	height: 6.5rem;
	}
header#header::after{
	position: fixed;
	top: 1rem;
	right: 0;
	content: "";
    display: inline-block;
    width: 25%;
    height: 160px;
    background: url("../img/illust01.svg") top right no-repeat;
    background-size: contain;
	z-index: 2;
	}
	@media only screen and (max-width: 900px) {
		header#header::after{
			top: 2rem;
			width: 35%;
			height: 160px;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		header#header::after{
			top: 2rem;
			width: 40%;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}

/*-- サイトタイトル--*/
.site_ttl{
	position: fixed;
	width: 100%;
	max-width: 280px;
	height: auto;
	max-height: 64.5232px;
	margin-top: 1.2rem;
	z-index: 999;
	}
.site_ttl a{
	display: block;
	width:100%;
	height:auto;
	}
.site_ttl:hover a{
	transform: scale(1.1, 1.1);
	}
.site_ttl img{
	width: 100%;
	height: auto;
	}
	@media only screen and ( max-width : 767px ) {}
	@media only screen and ( max-width : 600px ) {
		.site_ttl{
			top: 0.2rem;
			width: 40%!important;
			height: auto;
			}
		}
    @media only screen and (max-width: 480px) {}
    @media only screen and (max-width: 320px) {
        }



/*-- スクロール後.fixed付与 --*/
.site_ttl.fixed{
	position:fixed;
	top: 0.75rem;
	}

/*白ロゴ 表示切り替え*/
.site_ttl.fixed .site_ttl___current{
	display: none;
	}

/*グレーロゴ 表示切り替え*/
.site_ttl .site_ttl___fix{
	display: none;
	}
.site_ttl.fixed .site_ttl___fix{
	display: block;
	width: 180%;
	max-width: 260px;
	height: auto;
	max-height: inherit;
	}

	@media only screen and ( max-width : 767px ) {
		.site_ttl.fixed .site_ttl___fix{
			width: 300%;
			}
		}
	@media only screen and ( max-width : 540px ) {}
    @media only screen and (max-width: 480px) {
		.site_ttl.fixed{
			top: 0.8rem;
			}
		}
    @media only screen and (max-width: 360px) {
		.site_ttl.fixed .site_ttl___fix{
			width: 200%;
			}
		.site_ttl.fixed{
			top: 1rem;
			}
		}







/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */

main#main{}

/*----------

共通

----------*/

section{}

.content_block{
	padding-bottom: 5rem;
	}

.container{
    max-width: 1100px;
    width: 92%;
    margin: 0 auto;
	}
.container2{
    max-width: 870px;
    width: 92%;
    margin: 0 auto;
	}

/* 幅を強制的に全画面*/
.fullwidth{
	width: 100vw!important;
	}

/*改行位置調整*/
.br_span{
	display: inline-block;
	}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}

.txalign_center{
	text-align: center;
	}



/*-----

hoverで右へ動く

-----*/

.hover-slideleft{
	position: relative;
	left: 0;
	transition: .3s;
	}
.hover-slideleft:hover{
	left: 0.5rem;
	}












/*--------------------

　最近の制作実績

--------------------*/

.sec_works{}


.sec_works___wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
.sec_works___wrap::after{
	content:"";
	display: block;
	width:31%;
	}

.sec_works .post{
	width: 31%;
	margin-bottom: 3rem;
	}
.sec_works .post:nth-last-child(-n+3){
	margin-bottom: 0;
	}

.sec_works .post a{
	display: block;
	}
.sec_works .post a:hover .ph img{
	opacity: .8;
	}

.sec_works .post .ph{
	position: relative;
	border: solid 0.5rem #ffffff;
	background: #fff;
	}
.sec_works .post .ph::before{
    content: "";
    padding-top: 100%;
    display: block;
	}
.sec_works .post .ph img{
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
    position: absolute;
    top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	transition: .3s;
	}


.sec_works .post .tx{
	line-height: 150%;
	}

.sec_works .post .ttl{
	font-size: 0.9rem;
	margin: 1.2rem 0 0.5rem 0;
	}

.sec_works .post .client,
.sec_works .post .date{
	display: inline-block;
	font-size: 0.75rem;
	font-family: "EB Garamond";
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	}

	@media only screen and (max-width: 767px) {
		.sec_works___wrap{
			justify-content: space-between;
			}
		.sec_works___wrap::after{
			content:none;
			display: none;
			width:inherit;
			}
		.sec_works .post{
			width: 48%;
			margin-bottom: 2rem;
			}
		.sec_works .post .ph{
			border: solid 0.4rem #ffffff;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_works .post .ttl{
			font-size: 0.9rem;
			margin: 0.75rem 0 0.25rem 0;
			}
		.sec_works .post .ph{
			border: solid 0.3rem #ffffff;
			}
		.sec_works .post .date{
			font-size: 0.7rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}













/*--------------------

　新着情報

--------------------*/

.sec_news{
	padding: 3rem 0;
	}
.sec_news___wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}

.sec_news .post{
	width: 23%;
	}
.sec_news .post a{
	display: block;
	}

.sec_news .post .ph{
	position: relative;
    overflow: hidden;
	border: solid 0.5rem #ffffff;
	}
.sec_news .post .ph::before{
    content: "";
    padding-top: 100%;
    display: block;
	}
.sec_news .post .ph img{
	width: 100%;
	height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
	}

.sec_news .post .tx{
	line-height: 150%;
	}
.sec_news .post .ttl{
	font-size: 0.9rem;
	margin: 1.2rem 0 0.5rem 0;
	}
.sec_news .post .date{
	font-size: 0.75rem;
	font-family: "EB Garamond";
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	}

	@media only screen and (max-width: 767px) {
		.sec_news{
			padding: 0.5rem 0 1rem 0;
			}
		.sec_news .post{
			width: 48%;
			margin-bottom: 2rem;
			}
		.sec_news .post:nth-child(n+3){
			margin-bottom: 0;
			}
		.sec_news .post .ph{
			border: solid 0.4rem #ffffff;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_news .post .ph{
			border: solid 0.3rem #ffffff;
			}
		.sec_news .post .ttl{
			margin: 0.75rem 0 0.25rem 0;
			}
		.sec_news .post .date{
			font-size: 0.7rem;
			}

		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}

















/* ---------------------------------------------------------------------------------------------

　   footer

--------------------------------------------------------------------------------------------- */

footer#footer{
	background: #000000;
	background: url("../img/bg.jpg") repeat;
	color: #fff;
	padding: 3rem 0;
	}


/*----------

　footer 上段

----------*/

.footer_upper{}

.footer_upper___wrap{
	display: flex;
	justify-content:space-between;
	padding-bottom: 3rem;
	}


.footer_add{
	line-height: 150%;
	}

.footer_add .catch{
	font-size: 0.7rem;
	}

.footer_add .ttl{
	margin: 0.25rem 0 0.5rem 0;
	}
.footer_add .ttl img{
	width: 100%;
	max-width: 295px;
	height: auto;
	max-height: 63.3188px;
	}

.footer_add .add{
	font-size: 0.8rem;
	}




.footer_menu{
	display: flex;
	justify-content:space-between;
	line-height: 140%;
	}

.footer_menu .item{
	margin-right: 1.5rem;
	}

.footer_menu dl{}

.footer_menu dl dt{
	font-size: 0.9rem;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	}
.footer_menu dl dt:first-child{
	margin-top: 0;
	}

.footer_menu dl dd{
	font-size: 0.6rem;
	text-indent: -0.5rem;
	padding-left: 1rem;
	}


/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.footer_menu dl dt a{
	position: relative;
	}
.footer_menu dl dt a:hover{
	color:#ffffff;
	}
.footer_menu dl dt a::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background:#ffffff;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
	}
.footer_menu dl dt a:hover::after {
    transform: scale(1, 1);
	}



/*----------

　footer 下段

----------*/

.footer_lower{
	text-align: center;
	}

.footer_ttl{
	width: 100%;
	max-width: 290px;
	height: auto;
	max-height: 26px;
	margin: 0 auto 2rem auto;
	}

.footer_ttl img{
	width: 100%;
	height: auto;
	}


/*----------

　コピーライト

----------*/

.cpright{
	font-size: 0.7rem;
	letter-spacing: 1px;
	line-height: 100%;
	}

.footer_lower___wrap{
	width: 100%;
	border-top: solid 1px #777;
	padding-top: 3rem;
	}

.cpright small{}

	@media only screen and (max-width: 1020px) {
		footer#footer{
			padding: 2rem 0;
			}
		.footer_upper___wrap{
			display: block;
			justify-content:center;
			padding-bottom: 2rem;
			}
		.footer_add{
			text-align: center;
			}
		.footer_add .ttl{
			margin: 0.25rem 0 1rem 0;
			}
		.footer_menu{
			display: none;
			}
		}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		footer#footer{
			padding: 2rem 0 6rem 0;
			}
		.cpright{
			font-size: 0.6rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}









/*----------

　画像hover時zoomするアニメーション

----------*/


.zoomIn{
	overflow: hidden;
	}
.zoomIn > *{
	transition:0.4s all;
	}
.zoomIn > *:hover{
	transform:scale(1.1,1.1);
	}







/*----------

　1文字ずつ表示されるアニメーション

----------*/

@keyframes showTextFromBottom{
	  0%{
		transform: translateY( 100% );
		}
	  50%{
		transform: translateY( -20% );
		}
	  100%{
		transform: translateY( 0px );
		}
	}

.anime-up.displayed span{
	animation: showText 1s backwards;
	display: inline-block;
	}
.anime-up.displayed > span{
	overflow: hidden;
	}
.anime-up.displayed > span > span{
	animation: showTextFromBottom 0.5s backwards;
	}









/* ---------------------------------------------------------------------------------------------

　   2025年11月追記　ページ右端　フローティングバナー

--------------------------------------------------------------------------------------------- */

.floating-menu{
	position: fixed;
	right: 0;
	bottom: 50%;
	transform: translate(0,50%);
	z-index: 999;
	}

.floating-menu ul{
	display: flex;
	flex-flow:column;
	}

.floating-menu ul li{
	list-style: none;
	letter-spacing: 2px;
	text-align: center;
	word-wrap: break-word;
	writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
	}

.floating-menu ul li a{
	display: block;
	color: #252525;
	padding: 1.5rem 0.6rem 0.8rem 0.6rem;
	margin-bottom: 0.4rem;
	transition: .3s;
	}
.floating-menu ul li:last-child a{
	margin-bottom: 0;
	}
.floating-menu ul li a:hover{
	padding: 1.5rem 1.1rem 0.8rem 0.6rem;
	}

.floating-menu ul li:nth-child(1) a{
	background:#ffffff;
	}
.floating-menu ul li:nth-child(2) a{
	background:#ffffff;
	}
.floating-menu ul li:nth-child(3) a{
	background:#ffffff;
	}

.floating-menu ul li:nth-child(1) a:hover{
	background:#fff;
	color: #333333;
	}
.floating-menu ul li:nth-child(2) a:hover{
	background:#fff;
	color: #333333;
	}
.floating-menu ul li:nth-child(3) a:hover{
	background:#fff;
	color: #333333;
	}

.floating-menu ul li a span{
	font-size: 95%;
	margin-bottom: 0rem;
	}

	@media only screen and (max-width: 767px) {
		.floating-menu{
			top:auto;
			bottom: 0;
			left: 0;
			right: 0;
			transform: translate(0,0);
			}
		.floating-menu ul{
			flex-flow:row;
			padding-left: 0!important;
			margin-bottom: 0!important;
			}
		.floating-menu ul li{
			writing-mode: horizontal-tb;
			margin-left: auto;
			margin-right: auto;
			flex-grow: 1;
			flex-shrink: 1;
			flex-basis: 0;
			letter-spacing: inherit;
			}
		.floating-menu ul li a{
			padding: 0.8rem 0.6rem 0.8rem 1.6rem;
			margin-bottom: 0;
			margin-right: 1px;
			}
		.floating-menu ul li:last-child a{
			margin-right: 0;
			}
		.floating-menu ul li a:hover{
			padding: 0.8rem 0.6rem 0.8rem 1.6rem;
			}
		.floating-menu ul li a span{
			font-size: 90%;
			margin-bottom: 0;
			}
		.floating-menu ul li a span{
			margin-right: 1rem;
			}
		}
	@media only screen and (max-width: 380px) {}



