@charset 'UTF-8';

html{
font-family: 'Zen Kaku Gothic New', sans-serif;
    width: 100%;
}

body{
    font-size:14px;
    margin:0;
    padding:0;
}

a{
    text-decoration: none;

}

ul{
  padding-left: 0px;
    list-style: none;
}

h1{
  font-weight:normal;

}

/*
LOADING画面
================================================ */

/*ルート指定*/
:root {
  --black:#000;
  --white: #fff;
}

#loading {
    background-color: var(--white);
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
}
#loading-screen {
    background-color: var(--black);
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}
#loading p {
    font-size: 40px;
}


/*
GENERAL STYLING
================================================ */
body {
    color: var(--brown);
    background: url(https://jrc.asia/images/top/fuji-bk3.png) no-repeat right bottom / cover fixed;
    text-align: center;
}

/*
受賞バナー
================================================ */
.smbg_logo{
  position:absolute;
  top:100px;
  left:30px;
}

.smbg_logo img{
  width:150px;
}

@media (max-width:960px){ /* スマホ設定 */
  .smbg_logo{
    top:90px;
  }
  .smbg_logo img{
    width:120px;
  }
  }

/*
ヘッダー
================================================ */

header{
    width:100%;
    display:grid;
    grid-template-columns: 2fr 5fr 1fr;
    grid-template-rows: 100%;
}

@media (max-width:960px){ /* スマホ設定 */
  header{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows: 100%;
  }
}

.header-nav-logo{
    font-size:18px;
    text-align: left;
    padding-top:20px;
    padding-left:40px;
}

.top-logo{
    position: fixed;
    color:#696969;
    z-index: 99999999;
    margin-top:-10px;

}

@media (max-width:960px){ /* スマホ設定 */
.top-logo{
    width:75%;
      margin-top:-20px;
      margin-left:-20px;
    }
  }

/*　ナビゲーション */


  .jrc-header-nav{
    display: flex;
    align-items: right;
    font-size: 14px;
    font-weight: bold;
    padding-top:45px;
    margin-left: auto;
    color:#000;
      z-index: 1000;
  }


@media (max-width:1250px){ /* スマホ設定 */
    .jrc-header-nav{
      visibility: hidden;
    }
  }

.header-nav-top::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background:#000000;
	transition: all 0.4s ease 0s;
}
.header-nav-top{
    display: inline-block;
	position: relative;
	text-decoration: none;
    padding-right: 0px;
    padding-bottom: 0px;
}
.header-nav-top:hover {
	cursor: pointer;
}
.header-nav-top:hover::after {
	width: 100%;
    opacity: 1; 
}
    
  .header-nav ul{
    display: flex;
  }
  .header-nav ul li{
    margin:0;
  }
  .header-nav ul li a { 
    color: #000000;
  }

/* プルダウン*/


.jrc-drop {
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.jrc-drop > li {
    float: left;
    width: auto; /* グローバルナビ4つの場合 */
    height: 50px;
    line-height: 50px;
    padding-left:40px;
    opacity: 1;
}

.jrc-drop > li a {
    display: block;
    color: #000;
}

.jrc-drop > li a:hover {
    color: #999;
}

.jrc-drop > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.pd-adjust{
    width: 200px;
    padding-left:115px;
}

@media (max-width:960px){ /* スマホ設定 */
.pd-adjust{
    width: 0px;
    padding-left:0px;
    }
  }
.pd-adjust a{
    line-height: 24px;
}

li.jrcd__single ul.jrcd__second-level {
    width: 200px;
    text-align: left;
    margin-left:-110px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.jrcd__single:hover ul.jrcd__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

ul.jrcd__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.jrcd__second-level li {
    height:45px;
    text-align: left;
}


/* 下矢印 */
.jrcd-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left:15px;
    margin-bottom:3px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.jrc-drop:before,
.jrc-drop:after {
    content: " ";
    display: table;
}

.jrc-drop:after {
    clear: both;
}

.jrc-drop > li.jrcd__single {
    position: relative;
}

/*
ハンバーガー
================================================ */

.nav-wrap{
    width: 100%;
    float: right;
}

.nav-hamburger {
    position: fixed;
    width: 70px;
    height: 70px;
    top: 30px;
    right: 25px;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
  }
@media (max-width:960px){ /* スマホ設定 */
.nav-hamburger {
    top: 20px;
    right: 20px;
    }
  }
  .nav-hamburger-line {
    position: absolute;
    width: 30px;
    right: 18px;
    border: 0.5px solid #000;
    transition: all 1s;
  }

  .nav-hamburger-line--1 {
    top: 20px;
  }
  
  .nav-hamburger-line--2 {
    top: 30px;
  }
  
  .nav-hamburger-line--3 {
    top: 40px;
  }

  .nav-hamburger-line--3::after { /*Menu*/
    content:"MENU";
    position: absolute;
    top:-2px;
    left:0;
    color: #000;
    font-size: 10px;
  }

  .open .nav-hamburger { /*ハンバーガーがクリックされたら*/
    position: fixed;
    top: 30px;
    right: 40px;
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 300;
  }
@media (max-width:960px){ /* スマホ設定 */
.open .nav-hamburger {
    top: 20px;
    right: 20px;
    }
  }

  .open .nav-hamburger-line {
    position: absolute;
    width: 30px;
    right: 18px;
    border: 0.5px solid #fff;
    transition: all 0.5s;
  }

  .open .nav-hamburger-line--1 {
    color:#fff;
    transform: rotate(-45deg);
    top: 30px;
  }
  
  .open .nav-hamburger-line--2 {
    color:#fff;
    opacity: 0;
  }
  
  .open .nav-hamburger-line--3 {
    color:#fff;
    transform: rotate(45deg);
    top: 30px;
  }

  .open .nav-hamburger-line--3::after { /*Close*/
    content:"CLOSE";
    color:#fff;
    transform: translateY(0) rotate(-45deg);
    top:2px;
    left:18px;
  }

/* ハンバーガーリスト全体*/

  .nav-hamburger-list {
    position: fixed;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    top: 0;
    background-color: #000;
    transition: all 1s;
    z-index: 200;
    font-size:18px;
    color: #fff;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }

  .open .nav-hamburger-list {
    right: 0;
}
.nav-hamburger-list-en{
   font-size: 14px;
   color:#696969;
   margin-left:20px;
}

.nav-hamburger-list ul li a {
  color: #fff;
}

.nav-hamburger-list ul li a:hover { 
  color:rgba(124,124,124,1.00)
}


  /* 
　リスト 上部
  =================================== */

.nav-hamburger-list-top {
    text-align: left;
    padding-top: 90px;
    padding-left: 60px;
}

.nav-hamburger-list-top li{
  font-weight:500;
  padding-top: 15px;
  padding-bottom:5px;
  border-bottom: 0.1px ridge #696969;
}

.nav-hamburger-second{
  font-size:16px;
    line-height: 16px;
    margin-left:40px;
    padding-top:0px;
    padding-bottom:8px;
    padding-left:20px;

}
.nav-hamburger-second li{
    height:25px;
    padding-bottom:3px;
    padding-left:20px;
    margin-top:5px;
    border-left: 0.1px ridge #696969;  
    border-bottom: 0.1px ridge #696969;  
}


/* 
　リスト 下部
=================================== */

.nav-hamburger-list-bottom {
   width: 100%; 
   height:130px; 
   align-items: center;
   position: absolute;
   bottom: 0;
   display:grid;
   grid-template-columns: 1fr 1fr;
   grid-template-rows: 100%;
   vertical-align: bottom;
}

.nav-hamburger-list-bottom-l {
    width: 100%; 
    border-top: 0.1px ridge #696969;
    border-right: 0.1px ridge #696969;
    padding:30px 0;
}

.nav-hamburger-list-bottom-r {
    width: 100%; 
    border-top: 0.1px ridge #696969;
    padding:30px 0;
}

.nav-hamburger-list-bottom-l a{
  color: #fff;
}

.nav-hamburger-list-bottom-r a {
  color: #fff;
}


.nav-hamburger-list-bottom-l a:hover {
  color:rgba(124,124,124,1.00)
    }

.nav-hamburger-list-bottom-r a:hover {
  color:rgba(124,124,124,1.00)
}

/* 回り込み解除  */

.clear{
    clear: both;
}

/*
タイピング
================================================ */

.typed-wrap{
font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    width: 60%;
    height:400px;
    font-size:42px;
    line-height:75px;
    text-align: left;
    margin-left:150px;
    margin-top:100px;
     color:#242424;
}

@media screen and (max-width: 960px) {
    .typed-wrap{
    height:250px;
    font-size:22px;
    line-height:44px;
  	letter-spacing:-2px;
    margin-top:60px;
    margin-left:20px;
    }
}


  /*
VIDEO
  ================================================ */
.jrcvideo{
   width:50%;
   display: flex;
   margin:0 auto;
   justify-content: center;
   align-items: center;
   text-align: center; 
    
}

  @media screen and (max-width: 980px) {
    .jrcvideo {
   width:100%;
      }
}


/*
ボーダー
================================================ */
.title-border {
    display: flex;
    align-items: center;
    margin-top:-10px;
    margin-bottom:60px;
}
 
.title-border:before,
.title-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #a9a9a9;
}
 
.title-border:before {
    margin-right: 1rem;
}
 
.title-border:after {
    margin-left: 1rem;
}

/*
トップ　タイトル
================================================ */
.main-title-s{
    font-size:16px;
    font-weight: lighter;
    color:#696969;
    margin:0 auto;
    justify-content: center;
    align-items: center;
    margin-top:75px;
    margin-bottom:2px;
    text-align: center;    
}
@media screen and (max-width: 960px) {
    .main-title-s{
        max-width:350px;
    font-size:14px;	        
    }
}
.main-title-top{
    width:100%;
    font-size:34px;
    line-height: 48px;
    color:#696969;
    margin-top:0px;
    margin:0 auto;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 960px) {
    .main-title-top{
     font-size:24px;	     
     max-width:300px;  
    }
}

/*
トップページ　タイトル
================================================ */

/* 黒文字  */
.top-title-b{
    font-size:72px;	
    color:#696969;
    font-weight: lighter;
    text-align: left;
    margin-top:200px;
    margin-left:240px;
}

@media screen and (max-width: 960px) {
.top-title-b{
    margin-top:100px;
    margin-left:20px;       
    }
}

.top-title-top{
    font-size:38px;	
    color:#696969;
    margin-top:0px;
    margin-bottom:40px;
    text-align: center;
}
.top-title-top-s{
    font-size:18px;	
    color:#696969;
    margin-top:75px;
    margin-bottom:2px;
    text-align: center;
}

.top-title-s{
    font-size:14px;
    color:#696969;
    font-weight: lighter;
    text-align: left;
    margin-left:250px;
    margin-top:-60px;
}

@media screen and (max-width: 960px) {
.top-title-s{
    text-align: left;
    margin-left:30px;       
    }
}

.top-title-p{
    font-size:34px;	
    line-height: 48px;
    font-weight: 500;
    text-align: left;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
    .top-title-p{
    max-width:400px; 
    font-size:24px;	
    line-height: 34px;
    margin-left:20px; 
      }
    }

.top-title-p-2{
    font-size:34px;	
    line-height: 48px;
    font-weight: 500;
    text-align: left;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
    .top-title-p-2{
    max-width:350px; 
    font-size:24px;	
    line-height: 34px;
    margin-left:20px; 
      }
    }

.top-title---p{
    font-size:16px;	
    font-weight: lighter;
    line-height: 28px;
    text-align: left;
    margin-top:30px;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
.top-title---p{
    max-width:380px; 
    font-weight: normal;
    margin-left:20px;
	color:#000;
      }
    }

/* 黒ボタン  */
.top-button{
    width:300px;
    text-align: left;   
    margin-top:100px;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
.top-button{
    margin-left:40px; 
      }
    }

.top-button-link a{
    font-size:16px;	
    font-weight: lighter;
    height: 30px;
    border-radius: 60px;
    padding:25px 50px 20px 50px;
    background-color:#000000;
    border:solid 1px #fff;
    color:#fff;
}

.top-button-link a:hover{
    width:300px;
    height: 30px;
    border-radius: 60px;
    padding:25px 50px 20px 50px;
    background-color:#fff;
    border:solid 1px #000;
    color:#000;
}

.top-button-2{
    width:400px;
    text-align: left;   
    margin-top:100px;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
.top-button-2{
    margin-left:40px; 
      }
    }

.top-button-link-2 a{
    font-size:16px;	
    font-weight: lighter;
    height: 30px;
    border-radius: 60px;
    padding:25px 50px 20px 50px;
    background-color:#000000;
    border:solid 1px #fff;
    color:#fff;
}

.top-button-link-2 a:hover{
    width:300px;
    height: 30px;
    border-radius: 60px;
    padding:25px 50px 20px 50px;
    background-color:#fff;
    border:solid 1px #000;
    color:#000;
}


/* 白文字  */

.top-title-w{
    font-size:72px;	
    color:#696969;
    font-weight: lighter;
    text-align: left;
    margin-top:60px;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
.top-title-w{
    margin-top:40px;
    margin-left:20px;       
    }
}

.top-title-s-w{
    font-size:14px;
    color:#696969;
    font-weight: lighter;
    text-align: left;
    margin-left:90px;
    margin-top:-80px;
}

.careers-adjust{
    padding-top:20px;

}
@media screen and (max-width: 960px) {
.top-title-s-w{
    text-align: left;
    margin-left:30px;       
    }
}

.top-title-p-w{
    width: 45%;
    color:#ffffff;
    font-size:34px;	
    line-height: 48px;
    font-weight: 500;
    text-align: left;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
    .top-title-p-w{
        width: 100%;
    max-width:350px;
    line-height: 40px;
   margin-top:0px;    
   margin-left:20px;
      }
    }

.top-title---p-w{
    color:#ffffff;
    font-size:16px;	
    line-height: 34px;
    text-align: left;
    margin-top:30px;
    margin-left:250px;
}

@media screen and (max-width: 960px) {
.top-title---p-w{
    margin-left:20px;  
    max-width:350px;
      }
    }


.careers-bg-img{
    background: url(https://jrc.asia/images/top/careers-bk-img.jpg) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:left,top; 
    width: 100%;
    height: 700px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    text-align:center;
}
@media screen and (max-width: 960px) {
     .careers-bg-img {
    margin-top: 0px;
    height: 750px;
      }
      }


/*
リンクボタン
=================================== */

.btn-bk {
  margin-top:40px;
}
.btn-bk a {
  background-color: #000000;
  border: solid 1px #fff;
  border-radius: 25px;
  padding:10px 80px;
  margin:0 auto;
  font-size: 14px;
  color:#ffffff;
}
@media screen and (max-width: 960px) {
  .btn-bk a {
    padding:10px 50px;
   }
   }


.btn-bk a:hover {
  background-color: #838181;
}


/*
ニュースリリース
================================================ */

.top-line{
  width:100%;
  max-width: 800px;
    border-bottom: solid 1px #696969;
    margin:0 auto;
    margin-bottom:40px;
}

@media screen and (max-width: 960px) {
      .top-line {
    margin:0px 40px 0px 40px;
      }
  }

.news-release{
  width:100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  margin: auto;
  margin-bottom:100px;
}

@media screen and (max-width: 960px) {
 .news-release {
  width:90%;
  display: block;
  padding-left:20px;
  padding-right:20px;
      }
  }

.news-release-thumbnail {
  width: calc(50% - 40px);
}

@media screen and (max-width: 960px) {
  .news-release-thumbnail {
   width:90%;
       }
   }

.news-release-thumbnail img{
  width: 100%;
}

.news-release-contentbox {
  width: 50%;
  padding-left: 40px;
}

@media screen and (max-width: 960px) {
  .news-release-contentbox {
    width: 90%;
    padding-left: 10px;
  }
}

.news-release-date{
  font-size: 15px;
  text-align: left;
  margin-top:-5px;
}
@media screen and (max-width: 960px) {
.news-release-date{
  font-size: 18px;
  text-align: left;
  margin-top:-5px;
}
}

.news-release-h3{
  font-size: 18px;
  text-align: left;
  border-bottom: 1px solid #696969;
}

.news-release-infoabs{
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.news-left-img{
  width: 100%;
}

.news-right-img{
   width: 100%;   
}


/* エントリーボタン*/
.entry-button-wrap{
    text-align: center;
    display:flex;
    margin-bottom:50px;
}

.entry-button{
    margin:0 auto;
    justify-content: center;
    align-items: center;
}

.entry-button a{
    font-size:16px;
    font-weight: bold;
    color:#ffffff;
    border-radius: 60px;
    padding:15px 40px 15px 40px;
    border:solid 1.5px #ffffff;
    background-color:#d1de4c;
}
    
.entry-button a:hover{
    border-radius: 60px;
    padding:15px 40px 15px 40px;
    border:solid 1.5px #ffffff;
    background-color:#9fc24d;
    color:#ffffff;
}

@media (max-width:960px){ /* スマホ設定 */
.entry-button{
  top:230%;
  right:25%;
    }
  }

@media (max-width:960px){ /* スマホ設定 */
.entry-button a{
    font-size:14px;
    border-radius: 45px;
    padding:20px 70px 20px 70px;
    border:solid 1.5px #ffffff;
    }
  }

@media (max-width:960px){ /* スマホ設定 */
.entry-button a:hover{
    border-radius: 45px;
    padding:20px 70px 20px 70px;
    border:solid 1.5px #ffffff;
    }
  }

.arrow-icon-top{
    width: 22px;
    height:22px;
    margin-left:20px;
    vertical-align: middle;
}



/*
文字ぼかし
================================================ */

.outline-title-b {
  color          : #ffffff;            /* 文字の色 */
  text-shadow    : 
       2px  2px 8px #000,
      -2px  2px 8px #000,
       2px -2px 8px #000,
      -2px -2px 8px #000,
       2px  0px 8px #000,
       0px  2px 8px #000,
      -2px  0px 8px #000,
       0px -2px 8px #000;
}


.outline-title-g {
  display        : inline-block;
  color          : #ffffff;            /* 文字の色 */
  text-shadow    : 
       2px  2px 8px #578a3d,
      -2px  2px 8px #578a3d,
       2px -2px 8px #578a3d,
      -2px -2px 8px #578a3d,
       2px  0px 8px #578a3d,
       0px  2px 8px #578a3d,
      -2px  0px 8px #578a3d,
       0px -2px 8px #578a3d;
}

.outline-title-w {
  display        : inline-block;
  text-shadow    : 
       2px  2px 8px #fff,
      -2px  2px 8px #fff,
       2px -2px 8px #fff,
      -2px -2px 8px #fff,
       2px  0px 8px #fff,
       0px  2px 8px #fff,
      -2px  0px 8px #fff,
       0px -2px 8px #fff;        /* 文字の影 */
}

.outline-heder-w {
  text-shadow    : 
       2px  2px 8px #fff,
      -2px  2px 8px #fff,
       2px -2px 8px #fff,
      -2px -2px 8px #fff,
       2px  0px 8px #fff,
       0px  2px 8px #fff,
      -2px  0px 8px #fff,
       0px -2px 8px #fff;        /* 文字の影 */
}

.outline-title {
  display        : inline-block;
  color          : #ffffff;            /* 文字の色 */
  text-shadow    : 
       2px  2px 8px rgba(0, 51, 102, 0.50),
      -2px  2px 8px rgba(0, 51, 102, 0.50),
       2px -2px 8px rgba(0, 51, 102, 0.50),
      -2px -2px 8px rgba(0, 51, 102, 0.50),
       2px  0px 8px rgba(0, 51, 102, 0.50),
       0px  2px 8px rgba(0, 51, 102, 0.50),
      -2px  0px 8px rgba(0, 51, 102, 0.50),
       0px -2px 8px rgba(0, 51, 102, 0.50);        /* 文字の影 */
}


/*
プライバシーポリシー
================================================ */

.pp-title-l{
    font-size:48px;	
    font-weight:lighter;
    color:#696969;
    margin-top:250px;
    margin-bottom:10px;
    text-align: center;
}

@media (max-width:960px){ /* スマホ設定 */
.pp-title-l{
    margin-top:40px;
    }
  }

.pp-title{
    width: 65%;
    height: 35px;
    font-size: 26px;
    font-weight: bold;
    margin:0 auto;
    text-align: center;
    font-weight: lighter;
}

@media (max-width:960px){ /* スマホ設定 */
.pp-title{
        width: 75%;
    font-size:20px;
    font-weight: lighter;
    line-height: 24px;
    align-items: center;
    }
  }
  @media screen and (max-width: 767px) {
.pp-title{
    width:90%;
      }
}
.pp-title-s{
    width:55%;
    max-width: 800px;
    margin:0 auto;
  justify-content: center;
  align-items:flex-start;
    align-items:flex-start;
    font-size:16px;
    color:#000;
    text-align:left;
}

  @media screen and (max-width: 767px) {
.pp-title-s{
    width:90%;
      }
}

/* コンテンツアイフレーム */


.ifm-wrap {
  height: auto;
}

.general-ifm{
  margin-top:100px;
  width: 100%;
  height: 220vh;
}

@media (max-width:600px){
  .general-ifm{
    height: 250vh;
}
}

.media-ifm{
  margin-top:100px;
  width: 100%;
  height: 300vh;
}

@media (max-width: 900px){
  .media-ifm{
      height: 330vh;
  }
  }
@media (max-width:600px){
.media-ifm{
    height: 370vh;
}
}

.apply-ifm{
  width: 100%;
  margin-top:100px;
  height: 200vh;
}

@media (max-width:600px){
  .apply-ifm{
    height: 365vh;
}
}





/*
お問い合わせ　固定バナー
================================================ */
.fixed_btn-otoiawase{
    position: fixed;
    display: flex;
    right:18px;
    bottom:420px;
    z-index: 200;
}
@media screen and (max-width: 960px) {
.fixed_btn-otoiawase{
    bottom:360px;
}    
}
.fixed_btn-oubo a:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  opacity: 1;
  transition: all 0.2s;
}
.ouboimg{
    width:70px;    
}


/*
SNS
================================================ */

.flowsns{
    position: fixed;
    bottom:120px;
    right: 5px;
    text-align: right;
    margin-right:30px;
    padding-bottom:10px;
z-index: 200;
}
@media screen and (max-width: 960px) {
.flowsns{
    margin-right:15px;
    bottom:100px;
      }
      }

.flowsns-list{
    width:32px;
    height:32px;
    margin-top: 0px;
    transition:.5s;
    cursor: pointer;
    text-align: center;
    padding-bottom:15px;
}

.flowsns-list-img {
      width:100%;
      }

.flowsns-list :hover{
    margin-top: 5px;
    transition:.5s;
    }

.flowsns-list a { 
      color: #696969;
    }
    
/*
トップへ固定バナー
================================================ */

.fixed_btn-for-top a {
    position: fixed;
    bottom:20px;
    right: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 55px;
    height: 55px;
    margin-right:15px;
    margin-bottom:15px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-size:15px;
    background: #424242;
    border-radius: 50%;
    box-shadow: 5px 5px 5px #808080;
        z-index: 200;
}
  @media screen and (max-width: 767px) {
.fixed_btn-for-top a {
    bottom:20px;
    right: 0px;
    width: 55px;
    height: 55px;
      }
}

.fixed_btn-for-top-p{
  position: absolute;
    top:43%;
}
.fixed_btn-for-top a:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}
.fixed_btn-for-top a:after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg) translateY(-50%);
    position: absolute;
    top: 30%;
    right: 21px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}


/*
フッター New
================================================ */

#footer-nav{
  width:100%;
  display:grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows:700px 20px;
}

  @media screen and (max-width: 960px) {
#footer-nav{
  display: block;
      margin-top:-45px;
      }
}

.footer-nav-left{
  background: #a9a9a9;
  z-index: 1000;
}
  @media screen and (max-width: 960px) {
.footer-nav-left{
  height: 580px;
      }
}

.footer-logo {
  position: relative;
  font-size: 46px;
  margin-top:35px;
  color:#fff;
}

  @media screen and (max-width: 960px) {
.footer-logo{
  padding-top:15px;
      }
}

.company-name {
  margin-top: -50px;
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing:1px;
  color:#fff;
}

.company-address {
  margin-top: 15px;
  padding: 0;
  font-size: 15px;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .company-address{
  line-height: 20px;
  }
 }

 .footer-nav {
  padding-top:20px;
  font-size: 18px;
 }

.footer-nav-right{
  text-align: left;
  padding-left: 100px;
  background: #222;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .footer-nav-right{
	height: 680px;
    padding-left: 45px;
    margin-top:-30px;
  }
  .footer-nav li{
    font-size: 15px;
  }
 }

@media screen and (max-width: 767px) {
 .footer-nav {
  padding-top:30px;
	}
	}

.footer-nav li{
    padding-top:15px;
    padding-bottom:3px;
  border-bottom: 0.1px ridge #696969; 
}

.footer-nav a{
  color: #fff;
}

.footer-nav-second{
  font-size:16px;
  margin-left:40px;
    
}

.footer-nav-second li{
    height:30px;
    padding-top:0px;
    padding-left:20px;
    padding-bottom:0px;
    margin-top:5px;
    border-left: 0.1px ridge #696969;  
    border-bottom: 0.1px ridge #696969;  
}

.footer-nav-en{
  font-size: 12px;
  color:#696969;
  padding-left:20px;
}

.fotter-cr{
      width: 100%;
    height:20px;
}

.fs-color{
    color: #696969;
    font-size: 13px;
    text-align: center;
    padding-top:20px;
    padding-bottom:10px;
}
.fs-color a{
    color: #696969;
    font-size: 13px;
}
.fs-color a:hover{
    color: #fff;
}

@media screen and (max-width: 767px) {
.fs-color{
    grid-column:none;
    padding-top:10px;
}
}
  /*
  グーグルマップ
  ================================================ */
  .ggmap{
    width:100%;
    max-width: 600px;
    height:320px;
    margin-top:5px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: 100;
    }

/*
  ガイドライン
================================================ */

.ma_guidelines_h1{
  width: 90%;
  max-width: 800px;
  font-size: 38px;
  font-weight: lighter;
  margin: 0 auto;
  margin-top: 200px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .ma_guidelines_h1{
    font-size: 28px;
  }
  }
.ma_guidelines_container{
  width: 100%;
  max-width: 600px;
  margin:0 auto;
  font-size: 16px;
  text-align: left;
  margin-bottom:100px;
}
.ma_guidelines_to_declare p{
  margin-bottom:35px;
}
.ma_guidelines_wrap{
  margin-top:40px;
}

.ma_guidelines_wrap ol{
  list-style-position: outside;
  padding-left: 40px;
}
.ma_guidelines_wrap ol li{
  margin-bottom:20px;
  padding-left: 10px;
}
.ma_guidelines_wrap ol ul{
  padding-left: 20px;
}
.ma_guidelines_wrap ol ul li{
  list-style: inside;
  list-style-position: outside;
  padding-left: 0px;
  margin-top:10px;
  margin-bottom:10px;
}
.ma_guidelines_wrap ol ul ol{
  padding-left: 20px;
  list-style-type: none;
}
.ma_guidelines_wrap ol ul ol li{
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 10px;
  margin-top:10px;
  margin-bottom:10px;
}
.ma_guidelines_wrap ol ul ol ul{
  padding-left: 20px;
}
.ma_guidelines_wrap ol ul ol ul li{
  list-style: inside;
  list-style-position: outside;
  padding-left: 0px;
  margin-top:10px;
  margin-bottom:10px;
}

.ma_guidelines_p_right{
  text-align: right;
}

.ma_guidelines_wrap h2{
  font-size: 26px;
  font-weight: lighter;
  margin-top: 80px;
  margin-left:-40px;
}
.ma_guidelines_wrap h3{
  font-size: 18px;
  font-weight: lighter;
  margin-left:-40px;
}