@charset "utf-8";
@import "css/html5reset-1.6.1.css";
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
:root {
  --main-color: #9ec61c;
  --pc-header: 8rem;
  --sp-header: 6rem;
}
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;/* 10px */
}
body{
  font-size: 1.8em;/* 18px */
  line-height: 1.7;
  color: #111;
  font-family: "游ゴシック Medium","游ゴシック体","Yu Gothic Medium",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",verdana,"メイリオ","Meiryo","Osaka",sans-serif;
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: .1rem;
}
a{
  text-decoration: none;
  color: #111;
}
img{
  max-width: 100%;
  vertical-align: bottom;
}
#wrapper{
  width: 100%;
  /*min-width: 1000px;*/
  overflow: hidden;
  position: relative;
}
.pc_view{
  display: block;
}
.sp_view{
  display: none;
}
.highlight{
  font-weight: bold;
  position: relative;
  z-index: 0;
  display: inline-block;
}
.highlight::before{
  content: "";
  position: absolute;
  bottom: 5px;
  left:0;
  display: inline-block;
  width: 100%;
  height: 6px;
  background-color: #efce0a;
  z-index: -1;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header{
  width: 100%;
  background-color: rgba(255,255,255,0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  border-bottom: 2px solid #000;
}
header .inner{
  width: 950px;
  height: var(--pc-header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .inner .logo{
  width: 48rem;
  font-size: 3.6rem;
  font-family: 'Anton', sans-serif;
}

/* ---------------------------------------------------------
nav
----------------------------------------------------------*/
.global_nav{
  display: flex;
  justify-content: space-between;
  width: 35rem;
  font-size: 1.8rem;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0;
}
.global_nav li{
  text-align: center;
}
.social_nav{
  width: 8rem;
  position: fixed;
  top: 12rem;
  right: 3rem;
}
.social_nav .sns_nav li{
  margin: 0 0 1rem;
}

/* ---------------------------------------------------------
main
----------------------------------------------------------*/
.lower main{
  padding: var(--pc-header) 0 0;
}

.white_cover{
  background-color: #fff;
}

main section{
  padding: 12rem 2rem 0;
}
main section:last-of-type{
  padding-bottom: 12rem;
}

.js_parallax{
  width: 100%;
  height: 55rem;
}

/* ---------------------------------------------------------
tag_table
----------------------------------------------------------*/
.tag_table{
  border-collapse: separate;
  border-spacing: 5px;
  margin-right: auto;
  margin-left: auto;
}
.tag_table span{
  padding: .2rem 1.5rem;
  text-align: center;
  border-radius: 10px;
  width: 11rem;
  display: inline-block;
}
.tag_table th span{
  background-color: #000;
  color: #fff;
  font-weight: bold;
  margin-right: 1.5rem;
}
.tag_table td span{
  background-color: #E0E1E2;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer{
  color: #fff;
  text-align: center;
}
.foot_body{
  background-color: #003c69;
  background-image: url(images/common/footer-bg.png);
  background-position: left bottom;
  background-repeat: no-repeat;
}
.foot_body .inner{
  padding: 9rem 0 7rem;
}
.foot_body .inner a{
  color: #fff;
  display: inline-block;
}
.foot_body .inner .logo{
  font-family: 'Anton', sans-serif;
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 3rem;
}
.foot_body .inner .tel a{
  margin-bottom: 2rem;
}
.foot_body .inner .tel a{
  font-size: 3.6rem;
  padding-left: 5rem;
  background-image: url(images/common/footer-icon-tel.png);
  background-position: left center;
  background-size: 36px;
  background-repeat: no-repeat;
  font-family: 'Anton', sans-serif;
}
.foot_body .inner .address{
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.foot_nav{
  background-color: #323232;
  padding: 5rem 0;
  text-align: center;
}
.foot_nav ul li{
  display: inline-block;
  margin: 0 1rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.foot_nav a,
#copyright a{
  color: #fff;
}
#copyright{
  background-color:#000;
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: normal;
}
.links {
  display: none;
}


/* ---------------------------------------------------------
lower
----------------------------------------------------------*/
.h_back_cover{
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.6rem;
  color:#fff;
}


/* ---------------------------------------------------------
ONLY PC
----------------------------------------------------------*/
@media screen and (min-width:1001px){
  a{
  -webkit-transition: .3s;
          transition: .3s;
  }
  a:hover{
    opacity: .6;
  }
  nav{
    display: block!important;
  }
  .sp-menu-bar{
    display: none;
  }
  .js_uiFadeIn{
    display: none;
  }

  #modal-overlay{
    display: none!important;
  }
}

/* ---------------------------------------------------------
ONLY SP
----------------------------------------------------------*/
@media screen and (max-width:750px){
  body{
    font-size: 1.6em;/* 16px */
  }
  .pc_view{
    display: none;
  }
  .sp_view{
    display: block;
  }

  /* ---------------------------------------------------------
  main
  ----------------------------------------------------------*/
  main section{
    padding: 8rem 2rem 0;
  }
  main section:last-of-type{
    padding-bottom: 8rem;
  }

  .js_parallax{
    height: 20rem;
  }

  /* ---------------------------------------------------------
  footer
  ----------------------------------------------------------*/
  .foot_body .inner{
    padding: 3rem 2rem;
  }
  footer .inner .foot_logo{
    width: 100%;
  }
  .foot_body .inner .logo{
    font-size: 5rem;
    margin-bottom: 2rem;
  }
  .foot_body .inner .tel a{
    font-size: 3rem;
  }
  .foot_body .inner .address{
    font-size: 1.6rem;
  }
  .foot_nav{
    display: none;
  }
  #copyright{
    font-size: 1.4rem;
    padding: 2rem 2rem  8rem;
  }
  .links {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    z-index: 100;
  }
  .links a {
    width: 50%;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color:#fff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .links a:first-of-type {
    background-color: #003C69;
    font-family: 'Anton', sans-serif;
  }
  .links a:first-of-type img {
    width: 28px;
    margin-top: -2px;
    padding-right: 5px;
  }
  .links a:nth-of-type(2) {
    background-color: #323232;
  }
  .links a:nth-of-type(2) img{
    width: 28px;
    margin-top: -1px;
    padding-right: 6px;
  }

  /* ---------------------------------------------------------
  lower
  ----------------------------------------------------------*/
  .h_back_cover{
    font-size: 2.2rem;
    text-align: center;
  }
}

/* ---------------------------------------------------------
PC&SP NAV調整
----------------------------------------------------------*/
@media screen and (max-width:1000px){
  /* ---------------------------------------------------------
  header
  ----------------------------------------------------------*/
  header{
    background-color: #fff;
  }
  header .inner{
    width: 100%;
    height:  var(--sp-header);
    padding: 0 1rem;
  }
  header.open .inner{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #fff;
  }
  header .inner .logo{
    font-size: 2.6rem;
  }
  .sp-menu-bar{
    font-size: 3rem;
  }

  /* ---------------------------------------------------------
  nav
  ----------------------------------------------------------*/
  nav{
    width: 100%;
    height: calc(100vh - 6rem);
    padding: 0 0 20vh;
    z-index: 1000;
    overflow: auto;
    display: none;
    position: fixed;
    top: 6rem;
    left: 0;
  }
  .global_nav{
    width: 100%;
    display: block;
    background: #fff;
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .global_nav li{
    border-top: 1px solid #3333;
  }
  .global_nav li a{
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0;
    display: block;
  }

  .social_nav{
    width: 100%;
    position: static;
    display: block!important;
  }
  .social_nav .sns_nav{
    display: flex;
    justify-content: center;
  }
  .social_nav .sns_nav li{
    width: 5rem;
    margin: 0 1rem 0;
  }
  #modal-overlay{
    z-index: 100;
    display: none;
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    height: calc(100% - 6rem);
    background-color: rgba( 0,0,0, 0.75 );
  }
  .noscroll {
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .lower main{
    padding: 6rem 0 0;
  }

  /* ---------------------------------------------------------
  tag_table
  ----------------------------------------------------------*/
  .tag_table{
    border-spacing: 0;
    width: 100%;
  }
  .tag_table span{
    padding: .5rem 1rem;
    width: 100%;
    display: inline-block;
    border-radius: 0;
  }
  .tag_table th,
  .tag_table td{
    display: block;
    width: 100%;
  }
  .tag_table th span{
    margin-right: 0;
    margin-top: 1.5rem;
  }
  .tag_table td span{
    background-color: #E0E1E2;
  }
  .tag_table td:not(:last-of-type) span{
    border-bottom: solid 1px #fff;
  }

}

/* ---------------------------------------------------------
ONLY SP2
----------------------------------------------------------*/
@media screen and (max-width:620px){
  header .inner .logo{
    font-size: 1.6rem;
  }
}


/* ---------------------------------------------------------
js
----------------------------------------------------------*/
.js_opFadein,
.js_header{
  opacity : 0;
  transform : translate(0, 8rem);
  transition : all 1s;
}

/* 画面内に入った状態 */
.js_opFadein.js_scrollin,
.js_header.js_scrollin{
  opacity : 1;
  transform : translate(0, 0);
}

/* SP環境のみ電話リンクを有効 */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
