@charset "utf-8";
.inline{
	
}
.inline p{
	margin-right: 1rem;
	margin-bottom: 1rem;
	display: inline-block;
}
.inline p:last-child{
	margin-right: 0;
}

.img-border {
    display: inline-block;
    padding: 5px;
    background: #fff;
    box-shadow: 1px 0px 5px #bbbbbb;
    box-sizing: border-box;
}

/*===========================
btn01
===========================*/
.btn01{
 margin-right: 40px;
}

.btn01 a {
	--arrow-color: #fff; /* 矢印の色を設定 */
	display: inline-flex; /* 横並びに配置 */
	align-items: center; /* 垂直方向を中央に揃える */
	color: #fff; /* 文字色を矢印の色と一致 */
	text-decoration: none; /* 下線を非表示 */
	position: relative; /* 疑似要素の位置基準 */
 transition: 0.3s;
}

.btn01 a::after {
	border-bottom: 1px solid #fff; /* 下線のスタイルを矢印として設定 */
	border-right: 1px solid #fff; /* 右線のスタイルを矢印として設定 */
	content: ''; /* 疑似要素のコンテンツを空に設定 */
	width: 30px; /* 矢印の幅を30pxに設定 */
	height: 10px; /* 矢印の高さを10pxに設定 */
	position: absolute; /* 親要素に対して絶対位置 */
	left: 100%; /* テキストの右端に配置 */
	transform: skewX(50deg); /* 矢印の傾きの調整 */
	transition: all .3s; /* なめらかな移動効果 */
}


/* マウスオーバー時の動き */
.btn01 a:hover{
 opacity: 0.6;
}
.btn01 a:hover::after {
	margin-left: 10px; /* マウスオーバー時に矢印を10px右に移動 */
 --arrow-color: #5e5e5e;
}

@media only screen and (max-width: 600px) {
	footer{
		background-position-x: 600px;
	}
}



/* ------------------ */
/* 言語選択スマホ用              */
/* ------------------ */

.langPull {
	display:none;
}

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

.langPull {
	display:inline-block;
}

.langPull {
	box-sizing: border-box;
	font-size:0.7em;
	margin:0 15vw 0 0;
}

.langPull ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	box-sizing: border-box;
	list-style-type: none;
	align-items: center;
}

.langPull li {
	display:block;
	box-sizing: border-box;
	padding:0;
	line-height:90px;
	text-align:center;
	height:90px;
}

.langPull li a {
	display:block;
	font-size:1em;
	color:#fff;
	height:100%;
	padding:0 1.5vw; /* 調整 */
}



.langPull li a:hover {
	color:var(--basic-color); /* 色変えOK */
}

/* ------- 2階層目関係 -------------　*/

/*2階層目以降は横並びにしない*/
.langPull ul ul {
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.langPull ul li{
	position: relative;
}



/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/


.langPull ul li.has-child::before{
	content:'';
	position: absolute;
	right:-5px;
	top:42px;
	width:4px;
	height:4px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}



/*== 2・3階層目の共通設定 ==*/

/*下の階層を持っているulの指定*/
.langPull li.has-child ul {
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background: rgba(0,0,0,.7);
	width:auto;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
.langPull li.has-child:hover > ul,
.langPull li.has-child ul li:hover > ul,
.langPull li.has-child:active > ul,
.langPull li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/



.langPull li.has-child ul li {
	padding:1.5em 1em;
	line-height:1.2em;
	text-align:center;
	height:auto;
}

.langPull li.has-child ul li a{
	color: #fff !important;
}

.langPull li.has-child ul li:last-child a{
	border-bottom:none;
}

.langPull li.has-child ul li a:hover,
.langPull li.has-child ul li a:active{
	background:#00a1e9; /* hoverした時の色　変更する*/
}

}


