@media only screen and (max-width:850px){
.pan {
    width: 100%;
    font-size: 80%;
    font-family: "M PLUS Rounded 1c", serif;
    letter-spacing: 0.1px;
    color: #333333 !important;
    text-align: right;
    margin-top: 15px;
    float: right;
    position: relative;
    padding-right: 30px;
    background-color: #FFFFFF;
    top: 70%;
    margin-bottom: 0px;
    padding-bottom: 5px;
}
}
@media only screen and (min-width:851px){
.pan {
    width: 100%;
    font-size: 80%;
    font-family: "M PLUS Rounded 1c", serif;
    letter-spacing: 0.1px;
    color: #333333 !important;
    text-align: right;
    margin-top: -30px;
    float: right;
    position: relative;
    padding-right: 30px;
}
}

button {
    cursor: pointer;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif !important;
    letter-spacing: 1px;
    transition: all .2s;
    padding-top: 0px;
    padding-right: 10px;
    padding-left: 20px;
    padding-bottom: 0px;
    border-radius: 30px !important;
    background: #cfef00;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-top: 10px !important;
    height: 50px;
}
button:hover {
    background: #c4e201;
    border-radius: 30px;
    margin-top: 30px;
    height: 50px;
}
button > svg {
    width: 50px;
    margin-left: 20px;
    transition: transform .3s ease-in-out;
    margin-top: 1px;
}
button:hover svg {
  transform: translateX(8px);
}
button:active {
  transform: scale(0.95);
}

.bt {
    padding-top: 5px;

}









/*========= ナビゲーションのためのCSS ===============*/
@media only screen and (max-width:851px){
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 2;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 105%;
    height: 100vh;/*ナビの高さ*/
    background-color: #FFFFFF;
    /*動き*/
    transition: all 0.3s;
    float: left;
    display: flex;
    align-items: center;
}
}
@media only screen and (min-width:851px){
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 2;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 105%;
    height: 100vh;/*ナビの高さ*/
    background-color: #EEEEEE;
    /*動き*/
    transition: all 0.3s;
    float: left;
    display: flex;
    align-items: center;
}
}


/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    transition: all 0.8s;
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    left: 20%;
    float: left;
    text-align: left;
}

/*リストのレイアウト設定*/

#g-nav li{
    list-style: none;
    text-align: left;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/


@media only screen and (max-width:651px){
.openbtn{
    position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 10px;
    right: 0px;
    cursor: pointer;
    width: 70px;
    height: 70px;
    margin-left: 0px;
}}
@media only screen and (min-width:651px){
.openbtn{
    position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 70px;
    height: 45px;
}}

/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #e95513;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:10px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:35px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　日英切り替え ここから　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　日英切り替え ここから　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　日英切り替え ここから　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.bt_jp {
    background-color: #FFFFFF;
    color: #333333;
    font-size: 100%;
    text-align: center;
    font-weight: bold;
    border-left-color: #333333;
    border-bottom-color: #333333;
    border-top-color: #333333;
    border-left-style: solid;
    border-bottom-style: solid;
    border-top-style: solid;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-top-width: 1px;
    float: right;
    position: fixed;
    z-index: 99999;
    top: 21px;
    right: 108px;
}
.bt_jp:hover {
    background-color: #FF5926;
    color: #FFFFFF;
    font-size: 100%;
    text-align: center;
    font-weight: bold;
}

.bt_jp {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    text-decoration: none;
    line-height: 27px;
    outline: none;
    float: right;
}
.bt_jp::before,
.bt_jp::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.bt_jp,
.bt_jp::before,
.bt_jp::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}


@media only screen and (max-width:651px){
.bt_en {
    background-color: #FFFFFF;
    color: #333333;
    font-size: 100%;
    text-align: center;
    font-weight: bold;
    border: 1px solid #333333;
    position: fixed;
    z-index: 99999;
    top: 21px;
    right: 80px;
}
}	

@media only screen and (min-width:651px) {
.bt_en {
    background-color: #FFFFFF;
    color: #333333;
    font-size: 100%;
    text-align: center;
    font-weight: bold;
    border: 1px solid #333333;
    position: fixed;
    z-index: 99999;
    top: 21px;
    right: 80px;
}
}

.bt_en:hover {
    background-color: #e95513;
    color: #FFFFFF;
    font-size: 100%;
    text-align: center;
    font-weight: bold;
}

.bt_en {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    text-decoration: none;
    line-height: 27px;
    outline: none;
    float: right;
}
.bt_en::before,
.bt_en::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.bt_en,
.bt_en::before,
.bt_en::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　日英切り替え ここまで　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　日英切り替え ここまで　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　日英切り替え ここまで　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media only screen and (max-width:420px) {
.gl {
    width: 80%;
    float: left;
    margin-left: 15%;
    margin-right: 11%;
    text-align: center;
    position: relative;
    top: 6%;
    height: 600px;
    overflow-x: hidden;
    margin-bottom: 40px;
}
.gl_l {
    display: none;
}
.gl_r {
    display: none;
}
.gl_l_s {
    width: 100%;
    margin-left: 0px;
    float: left;
}
.gl_ub{
    width: 80%;
    border-bottom: 1px dotted #999999;
    float: left;
    padding-bottom: 7px;
    padding-top: 7px;
    margin-left: 10%;
    margin-right: 10%;
}
.gl_text_orange {
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 120%;
    text-align: center;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 40px;
    padding-top: 40px;
}
}


@media only screen and (min-width:421px)  and (max-width:650px){
.gl {
    width: 95%;
    float: left;
    text-align: center;
    position: relative;
    top: 6%;
    height: 90vh;
    overflow-x: hidden;
    margin-top: 10px;
    margin-bottom: 40px;
}
.gl_l {
    display: none;
}
.gl_r {
    display: none;
}
.gl_l_s {
    width: 100%;
    margin-left: 0px;
    float: left;
    margin-top: -20px;
}
.gl_ub{
    width: 80%;
    border-bottom: 1px dotted #999999;
    float: left;
    padding-bottom: 8px;
    padding-top: 8px;
    margin-left: 10%;
    margin-right: 10%;
}
.gl_text_orange {
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 120%;
    text-align: center;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 45px;
    padding-bottom: 50px;
    padding-top: 50px;
}
}

@media only screen and (min-width:651px)  and (max-width:850px){
.gl {
    width: 80%;
    float: left;
    margin-left: 15%;
    margin-right: 11%;
    text-align: center;
    position: relative;
    top: 6%;
    height: 90vh;
    margin-top: 10px;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.gl_l {
    display: none;
}
.gl_r {
    display: none;
}
.gl_l_s {
    width: 100%;
    margin-left: 0px;
    float: left;
}
.gl_ub{
    width: 80%;
    border-bottom: 1px dotted #999999;
    float: left;
    padding-bottom: 8px;
    padding-top: 20px;
    margin-left: 10%;
    margin-right: 10%;
}
.gl_text_orange {
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 120%;
    text-align: center;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 30px;
    padding-top: 0px;
    padding-bottom: 50px;
}
}

@media only screen and (min-width:851px)  and (max-width:1000px){
.gl {
    width: 100vw;
    float: left;
    height: 50vh;
}
.gl_l {
    width: 310px;
    align-items: center;
    position: absolute;
    left: 10%;
    top: 10%;
}
.gl_r {
    width: 500px;
    float: right;
    position: absolute;
    left: 37%;
    top: 10%;
    margin-left: 80px;
}
.gl_l_s {
    display: none;
}
.gl_ub{
    display: none;
}
.gl_text_orange {
    font-family: 'Orbitron', sans-serif;
    font-size: 115%;
    text-align: left;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 25px;
    height: 500px;
    position: absolute;
}
}
	
@media only screen and (min-width:1001px)  and (max-width:1200px){
.gl {
    width: 100vw;
    float: left;
    height: 50vh;
}
.gl_l {
    width: 310px;
    align-items: center;
    position: absolute;
    left: 10%;
    top: 10%;
}
.gl_r {
    width: 500px;
    float: right;
    position: absolute;
    left: 37%;
    top: 10%;
    margin-left: 80px;
}
.gl_l_s {
    display: none;
}
.gl_ub{
    display: none;
}
.gl_text_orange {
    font-family: 'Orbitron', sans-serif;
    font-size: 135%;
    text-align: left;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 25px;
    height: 500px;
    position: absolute;
}
}


@media only screen and (min-width:1200px)  and (max-width:1600px){
.gl {
    width: 100vw;
    float: left;
    height: 50vh;
}
.gl_l {
    width: 310px;
    align-items: center;
    position: absolute;
    left: 10%;
    top: 10%;
}
.gl_r {
    width: 560px;
    float: right;
    position: absolute;
    left: 37%;
    top: 10%;
}
.gl_l_s {
    display: none;
}
.gl_ub{
    display: none;
}
.gl_text_orange {
    font-family: 'Orbitron', sans-serif;
    font-size: 130%;
    text-align: left;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 25px;
    height: 500px;
    position: absolute;
}
}


@media only screen and (min-width:1601px) {
.gl {
    width: 100vw;
    float: left;
    height: 50vh;
}
.gl_l {
    width: 330px;
    align-items: center;
    position: absolute;
    left: 10%;
    top: 12%;
}
.gl_r {
    width: 560px;
    float: right;
    position: absolute;
    left: 37%;
    top: 12%;
}
.gl_l_s {
    display: none;
}
.gl_ub{
    display: none;
}
.gl_text_orange {
    font-family: 'Orbitron', sans-serif;
    font-size: 130%;
    text-align: left;
    width: 100%;
    float: left;
    color: #e95513 !important;
    line-height: 25px;
    height: 500px;
    position: absolute;
}
}





.gl::-webkit-scrollbar{
   width: 2px;
}
.gl::-webkit-scrollbar-track{
   background-color: #EEEEEE;
}
.gl::-webkit-scrollbar-thumb{
   background-color: #17585d;
}



.orange a {
    font-family: 'Orbitron', sans-serif;
    font-size: 100%;
    color: #e95513 !important;
}
.orange a:hover {
    font-size: 100%;
    color: #333333 !important;
}
.bl a {
    font-family: 'Orbitron', sans-serif;
    font-size: 100%;
    color: #333333 !important;
}
.bl a:hover {
    font-size: 100%;
    color: #e95513 !important;
}

.gl_text_orange a:link {
    color: #e95513;
    text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
    transition: 0.4s;
}
.gl_text_orange a:visited {
	color: #e95513;
	text-decoration: none;
}

.gl_text_orange a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
    color: #000000;
    text-decoration: none;
    margin-top: 0px;
}
.gl_text_bl {
    font-size: 80%;
    text-align: left;
    line-height: 40px;
    color: #333333;
    font-family: 'Orbitron', sans-serif;
}

.gl_text_bl_s a{
    font-size: 75%;
    text-align: left;
    color: #333333 !important;
    line-height: 30px;
    background-image: url("../images/mark03.jpg");
    background-position: 0% 6px;
    background-repeat: repeat-y;
    padding-left: 20px;
}
.gl_text_bl_s a:hover{
    font-size: 75%;
    text-align: left;
	color: #e95513 !important;
    line-height: 30px;
}

.orange {
    font-size: 110%;
    line-height: 25px;
}
	
