﻿@charset "shift_jis";
/* CSS Document */

.sp { display: none !important; }

    body {
      font: 1.1em sans-serif;
      margin: 0 ;
    }

    .wrap {
      overflow: hidden;
    }

    .wrap_form {
      overflow: hidden;
      background-color: mistyrose;
    }

    a.anchor{
      display: block;
      padding-top: 300px;
      margin-top: -200px;
  }


/*==================================
J-queryエフェクト用CSS
===================================*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
.fadeUpTrigger,
.fadeDownTrigger,
.zoomInTrigger,
.zoomOutTrigger,
.rotateYTrigger,
.rotateXTrigger,
.rotateLeftZTrigger,
.fadeRightTrigger,
.fadeLeftTrigger
{
  opacity: 0;
  }

  /* くるっと　*/

/*==================================================
くるっ
===================================*/


/* X 軸（縦へ） */
.rotateX{
  animation-name:rotateXAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateXAnime{
  from{
    transform: rotateX(0);
    opacity: 0;
    }
  to{
    transform: rotateX(-360deg);
    opacity: 1;
    }
}

/*　Y軸（横へ） */
.rotateY{
  animation-name:rotateYAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateYAnime{
  from{
    transform: rotateY(0);
    opacity: 0;
    }
  to{
    transform: rotateY(-360deg);
    opacity: 1;
    }
}

/* Z 軸（左へ） */
.rotateLeftZ{
  animation-name:rotateLeftZAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateLeftZAnime{
  from{
    transform: rotateZ(0);
    opacity: 0;
    }
  to{
    transform: rotateZ(-720deg);
    opacity: 1;
    }
}

/*　Z 軸（右へ） */
.rotateRightZ{
  animation-name:rotateRightZAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
  from{
    transform: rotateZ(0);
    opacity: 0;
    }
  to{
    transform: rotateZ(360deg);
    opacity: 1;
    }
}

/* ぶわっと浮かぶ　*/

.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);
}
}


/* ゆっくりぶわっと浮かぶ　*/

.fadeUpslow {
  animation-name: fadeUpAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpslowAnime{
from {
  opacity: 0;
  transform: translateY(200px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

/* 上から */

.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeDownAnime{
    from {
      opacity: 0;
    transform: translateY(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

/* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-500px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
/* 右からぶわっと　*/

.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(500px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 文字が流れる　*/

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  opacity: 0;
  }

  to {
    transform: scale(1);
  opacity: 1;
  }
}

/* 縮小 */
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.2);
  opacity: 0;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}

/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}


/*　キラッ　*/

.shine span.mask{
  position: relative;/*キラッの基点となる位置を定義*/
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.shine span.mask::before {
  position: absolute;
  content:"";
  width: 50%;/*キラッの横幅*/
  height: 100%;/*キラッの縦幅*/
  top: 0;/*.shine span.maskのトップ0を基点*/
  left: -75%;/*画面の見えていない左から右へ移動するスタート地点*/
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);/*背景白透過を斜めに*/
}

.shine span.mask:hover::before {/*hoverした時の変化*/
  animation: shine 0.7s;/*アニメーションの名前と速度を定義*/
}

@keyframes shine {
  100% {
    left: 125%;/*画面の見えていない左から右へ移動する終了地点*/
  }
}

.content_list img{
  transition-duration: 0.5s;
}

.content_list img:hover{
  transform: scale(1.05);
  transition-duration: 0.5s;
}




/*==================================
top pageへ
===================================*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#2e228c;
	border-radius: 5px;
	width: 120px;
	height: 70px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.2em;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

#page-top i{
  padding-right: 10px;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*フォーム*/

.contact{
  padding-top: 50px;
}

form{
    background-color: #fff;
    padding:30px 50px;
    max-width: 100%;
    height: auto;
}

.line {
  margin: 1em 0;
  color: #232323;
  background: #fff8e8;
  border-left: solid 10px #ffc06e;
  padding:20px 20px;
  }

  h4 {
    padding: 1rem 2rem;
    border: 3px solid #333;
    color: #333;
  }

  h2 {
    font-size: 1.6em;
    font-weight: bold;
    padding: 1rem 2rem;
    color: #fff;
    border-radius: 10px;
    background-color: #ff4873;
    }

  h3 {
    padding: 5px 15px 5px 15px;
    color: #fff;
    background-color: #a3cd5e;
  }


  #attention {
    background-color: #FCEABB;
    padding: 10px 10px 10px 10px;
    font-size: 1.0em;
    line-height: 1.8em;
    }

          
    form dl dt{
            width: 100%;
            padding:10px 0px 10px 0px;
            max-width: 100%;
            float:left;
            clear:both;
    }
          
    form dl dd{
      padding:10px 0px 10px 0px;
            width: 100%;
    }



    /* テキストエリア */

    input[type="text"],
    textarea {
        padding: 0.8em;
        outline: none;
        border: 1px solid #DDD;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        font-size: 1.1em;
        width: 30%;
    }

    input[type="text"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #ff8800;
        border: 1px solid #ff8800;
    }

    input[type="email"],
    textarea {
        padding: 0.8em;
        outline: none;
        border: 1px solid #DDD;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        font-size: 1.1em;
        width: 50%;
    }

    input[type="email"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #ff8000;
        border: 1px solid #ff8000;
    }

    select[type="text"],
    textarea {
        padding: 0.8em;
        outline: none;
        border: 1px solid #DDD;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        font-size: 1.1em;
        width: 80%;
    }
    

    select[type="text"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #ff8000;
        border: 1px solid #ff8000;
    }


    .styled-select {
        /* 👇デフォルトのスタイルを解除 */
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        /* 👇スタイル */
        display: inline-block;
        width: 100%; /* 幅 */
        max-width: 250px; /* 最大幅 */
        margin: 1em 0; /* 前後の余白 */
        padding: 0.6em 1.5em 0.6em 0.5em; /* 文字周りの余白 */
        cursor: pointer; /* カーソルを指に */
        line-height: 1.4; /* 行高 */
        font-size: 0.95em; /* フォントサイズ */
        font-weight: 700; /* 太字に */
        color: #333; /* 文字色 */
        border-radius: 4px; /* 角丸 */
        background-color: #eee; /* 背景色 */
        border: solid 1px #ddd; /* 枠線 */
        box-shadow: 0 3px 3px -2px rgba(3, 29, 41, 0.15); /* 影 */

        /* 👇三角マークを作る */
        background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
        background-size: 5px 5px, 5px 5px;
        background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
        background-repeat: no-repeat;
      }
      /* フォーカス時 */

      .styled-select:focus {
        outline: 0;
        box-shadow: 0 0 7px #ff8000;
        border: 1px solid #ff8000;
      }
      /* IEでデフォルトの矢印を消す */

      .styled-select::-ms-expand {
        display: none;
      }


  /* 送信ボタン */

  .btn {
      text-align: center;
      box-sizing: border-box;
      display: block;
      max-width: 250px;
      width: 100%;
      margin: 0 auto;
      background: tomato;
      color: #fff;
      font-weight: bold;
      font-size: 1.2em;
      padding: 13px 10px 10px;
      border: 0px;
      border-radius: 8px;
      text-decoration: none;
      margin-bottom: 80px;
    }
    .btn:hover {
      transform: scale(1.05);
      transition-duration: 0.5s;
    }
    .btn:active, .btn:focus {
      border-bottom-width: 0;
      margin-top: 5px;
      background: #ff9300; /* 色変更可能 */
    }

    .btn_back {
      text-align: center;
      box-sizing: border-box;
      display: block;
      max-width: 250px;
      width: 100%;
      margin: 0 auto;
      background: #999;
      color: #fff;
      font-weight: bold;
      font-size: 1.2em;
      padding: 13px 10px 10px;
      border: 0px;
      border-radius: 8px;
      text-decoration: none;
    }
    .btn_back:hover {
      transform: scale(1.05);
      transition-duration: 0.5s;
    }
    .btn_back:active, .btn:focus {
      border-bottom-width: 0;
      margin-top: 5px;
      background: #eee; /* 色変更可能 */
    }
    
    @keyframes flash {
      from { opacity: 0.5; }
      to { opacity: 1; }
    }


  /* 必須マーク */

  .must {
    background: #FF1A00;
  }

  .must,
  .free {
    color: #FFF;
    border-radius: 3px;
    font-size: 1.0em;
    margin-right: 10px;
    padding: 5px 10px;
    letter-spacing: 0.2em;
  }

  table{
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    }
  
  table tr{
    border-bottom: solid 2px white;
  }
  
  table th{
    width: 30%;
    background-color: #52c2d0;
    color: white;
    text-align: center;
    padding: 10px 10px;
    vertical-align: middle;
  }
  
  table td{
    text-align: left;
    width: 70%;
    background-color: #eee;
    padding: 10px 40px;
  }

  /*　基本ベースCSSここまで　*/

.content {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.content_form {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
}

.content_form p{
  text-align: left;
}

.content img{
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}


.sc01_bg_001{
  background: url(../img/sc01_bg_001.png) center center;
  background-size: cover;
}
.sc01_bg_001_1{
  background: url(../img/sc01_bg_002.png) center center;
  background-size: cover;
}

.sc01_bg_001_2{
  background-color: #1b1464;
}

.sc02_bg_001{
  background: url(../img/sc02_bg_001.png) center center;
  background-size: cover;
}

.sc02_bg_002{
  background: url(../img/sc02_bg_002.png) center center;
  background-size: cover;
}

.sc02_bg_003{
  background: url(../img/sc02_bg_003.png) center center;
  background-size: cover;
}

.sc03_bg_001{
  background: url(../img/sc03_bg_001.png) center center;
  background-size: cover;
}

.sc04_bg_001{
  background: url(../img/sc04_bg_003.png) center center;
  background-size: cover;
}

.sc04_bg_002{
  background: url(../img/sc04_bg_002.png) center center;
  background-size: cover;
}

.sc05_bg_001{
  background: url(../img/sc05_bg_001.png) center center;
  background-size: cover;
}

.sc06_bg_001{
  background: url(../img/sc06_bg_001.png) center center;
  background-size: cover;
}

.sc07_bg_001{
  background: url(../img/sc07_bg_001.png) center center;
  background-size: cover;
}

.sc08_bg_001{
  background: url(../img/sc08_bg_001.png) center center;
  background-size: cover;
}

.sc09_bg_001{
  background: url(../img/sc09_bg_001.png) center center;
  background-size: cover;
}

.form_header_bg_001{
  background: url(../img/sc08_bg_001.png) center center;
  background-size: cover;
  padding-bottom: 80px;
}

.form_header_bg_001 img{
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.content_form {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  padding: 30px;
}

.content_form img{
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.form_btn_bg{
  background: -moz-radial-gradient(#ff4873 40%, #fff 70%); 
  background: -webkit-radial-gradient(#ff4873 40%, #fff 70%); 
  background: radial-gradient(#ff4873 40%, #fff 70%); 
  margin: 0 auto;
  width: 100%;
  padding: 30px;
}


.link_btn img{
  transition-duration: 0.5s;
}

.link_btn img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}


  footer{
    background-color:#2e228c ;
    padding: 30px;
  }

  .copyright{
    color: #fff;
    font-size: 0.8em;
    text-align: center;
  }

  .content_924{
    max-width: 924px;
    margin: 0 auto;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 150px;
  }

  .content_924 img{
    max-width: 924px;
    margin: 0 auto;
    width: 100%;
  }

  .sc02_bg_blue{
    background-color: #182987;
  }

  .sendend_title{
    background-color: #f7931e;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    margin: 0 auto;
    padding: 30px;
    width: 300px;
    margin-top: 80px;
    margin-bottom: 80px;
  }

 /* ■■■■■■■■■■■■■■■■■■■■■■ヘッダーメニュー■■■■■■■■■■■■■■■■■■■■■ */

/*========= 上部固定させるためのCSS ===============*/

#header_menu_bg{
	width:100%;
  background-image: url(https://www.cranehill.net/img/header_menu_bg.png);
  background-repeat: repeat-x;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/*JSを使いfixedクラスが付与された際の設定*/

#header_menu_bg.fixed{
	position: fixed;
  z-index: 999;
  top:0;
  left:0;
} 

.header_area {
  width: 100%;
  margin: 0 auto;
  background-color: #FFF;
  min-height: 0px;
}

.contents_1130{
  max-width: 1130px;
  margin: 0 auto;
}

.contents_1130 img{
  width: 100%;
  margin: 0 auto;
}


.header {
  display: flex;
  align-items: center;
}

.header_left {
  margin-right: auto;
}


.header_left img{
  max-width: 310px;
}

.header_center {
  padding-right: 20px;
}

.header_center img{
  max-width: 348px;
  transition-duration: 0.5s;
}

.header_center img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.header_right{
  padding-right: 20px;
}

.header_right img{
  max-width: 300px;
  transition-duration: 0.5s;
}

.header_right img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.header_menu{
  display: flex;
}


/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	text-align: center;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

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

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #999;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#fff;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}

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

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:#1eaaff;
	width:226px;
    /*はじめは非表示*/
	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 rgba(255,255,255,0.6);
}

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:#3577CA;
}


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}


 /* ■■■■■■■■■■■■■■■■■■■■■■■■■■タブレット■■■■■■■■■■■■■■■■■■■■■ */

 @media all and (min-width: 768px) and (max-width: 1024px) {


  .kakunin_order {
    max-width: 1024px;
    width: 100%;
    background-color: white;
    margin: 0 auto;
    margin-top: 280px;
    padding: 0 30px 0 30px;
  }



}


/* スマホ */


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

  .pc { display: none !important; }
  .sp { display: block !important; }

  img {
    pointer-events: none;
  }


  .content {
    max-width: 767px;
    margin: 0 auto;
    display: block;
    text-align: left;
  }

  .content img{
    vertical-align: top;
  }

  .content_924{
    max-width: 767px;
    margin: 0 auto;
    width: 90%;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .content_924 img{
    max-width: 767px;
    margin: 0 auto;
    width: 100%;
  }


  form{
    background-color: #fff;
    padding:10px 10px 80px 10px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    }

    .line {
    color: #232323;
    max-width: 100%;
    padding:14px;
    }

  input[type="text"],
  textarea {
    padding:10px 0px 10px 0px;
    outline: none;
    border: 1px solid #DDD;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 1.0em;
    width: 90%;
    }

  form dl dt{
    width: 100%;
    max-width: 100%;
    float:left;
    clear:both;
    padding:0px 0px 0px 0px;
    }

  form dl dd{
    width: 90%;
    padding:0px 0px 0px 0px;
    }

  /* 送信ボタン */

  .btn {
    margin-top: 30px;
  }


  h2 {
    font-size: 1.1em;
    padding: 1rem 2rem;
    }

  #content p{
    font-size: 0.9em;
  }

  .must,
  .free {
    font-size: 0.9em;
  }

  dt dd{
    font-size: 0.9em;
  }

  .btn {
    font-size: 1.0em;
    }

  .btn_back {
    font-size: 1.0em;
    }

  .kakunin_order {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    margin-top: 130px;
    padding: 0px 20px 0 20px;
  }

  
  table th{
    width: 100%;
    border-bottom: none;
    display: block;
    width: 100%;
    padding: 10px 10px;
  }
  
  table td{
    width: 100%;
    border-bottom: none;
    display: block;
    width: 100%;
    padding: 10px 10px;
  }

  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }


  /* ハンバーガーメニュー */

  .menu-btn {
    position: fixed;
    top: 6px;
    right: 8px;
    display: flex;
    height: 35px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #2e228c;
    border-radius: 8px;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
      content: '';
      display: block;
      height: 2px;
      width: 22px;
      border-radius: 3px;
      background-color: #ffffff;
      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;
  }
  #menu-btn-check:checked ~ .menu-content {
      left: 0;
  }

  .menu-content {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 100%;
      z-index: 80;
      background-color: #2ea7e0;
      transition: all 0.5s;
  }
  .menu-content ul {
      padding: 50px 20px 0;
  }
  .menu-content ul li {
      border-bottom: solid 1px #ffffff;
      list-style: none;
  }
  .menu-content ul li a {
      display: block;
      width: 100%;
      font-size: 15px;
      box-sizing: border-box;
      color:#ffffff;
      text-decoration: none;
      padding: 10px 15px 10px 0;
      position: relative;
  }
  .menu-content ul li a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: solid 2px #ffffff;
      border-right: solid 2px #ffffff;
      transform: rotate(45deg);
      position: absolute;
      right: 11px;
      top: 16px;
  }

  .header_right{
    margin-right: 30px;
    }



  }