/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}


@charset "UTF-8";

/**
 * reset
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
  margin: 0;
}

body {
  color: #252525;
font-family: YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  background-color: #fff;
  text-align: left;
}

ol, ul {list-style: none;}
a {text-decoration: none;color:#252525;}
p {font-size: 15px;color:#252525;}
@media (max-width: 769px){p {font-size: 13px;color:#252525;}}


/* 改行指定 ---------------------------------------*/
@media (min-width: 769px){ 
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media (max-width: 768px){ 
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/* float ---------------------------------------*/
.float_r{float: right;}
.float_l{float:left;}
@media (max-width: 768px) {.float_r,.float_l{float:none;}}
.float_end{clear:both;}


/* 色指定 ---------------------------------------*/
.sct-color{color:#002f8f;}


/*----------------------------------------------------

◆　Google-font

----------------------------------------------------*/

.lato{font-family: 'Lato', sans-serif;}
.Noto{font-family: 'Nunito Sans', sans-serif;letter-spacing: 0.1rem;}
.mincho{font-family: 'Noto Serif JP', serif;}
.Roboto{font-family: 'Roboto Condensed', sans-serif;}
.line{height: 1px;width: 80%;max-width: 350px;margin: 0 auto;background: #fff;margin-top:-5px;margin-bottom:10px;  }


/*----------------------------------------------------

◆　header

----------------------------------------------------*/

/* ----- ヘッダー ----- */

header{height:72px; width: 100%;position: fixed;background: rgba(0,0,0,0.8);z-index:9999;}
@media(max-width:768px){header{height: 54px;}}

.logo_sp{display: none;}
.logo_sp img{width: 240px;margin: 11px 0 0 10px;}
@media(max-width:768px){.logo_sp{display: block;}}

#nav_inner img{width: 290px;margin-top: 18px;}
#nav_inner{max-width: 900px;width: 90%;margin: 0 auto;display: flex;justify-content: space-between;}
#nav_inner ul li a{color:#fff;font-size: 14px;}
#nav_inner ul{width: 430px;display: flex;justify-content: space-between;margin-top: 25px;}


.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
@media (max-width: 768px) {
  #globalNavi {
  }
}

@media (max-width: 768px) {
  .inner {
    width: 100%;
    z-index: 999;
  }
}

/* ----- ヘッダー navi ----- */
#header_area nav{
  display: none;
}
@media (max-width: 768px) {
  #header_area nav {
    display: block;
  }
}
nav {
  height: 70px;
  margin:0 auto;
}
@media (max-width: 768px) {
  nav {
    margin-left: 0;
    height: auto;
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -505px;
    left: 0;
    background: red;
    width: 100%;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    z-index: 800;
  }
}

@media (max-width: 768px) {
  #container nav ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #09c8f1;
    font-size: 14px;
  }
    #container nav ul li a:hover {
    color: #fff;
    background:#4bc5ec;
  }
}
@media (max-width: 768px) {
  #under_toggle ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 0 16px;
    border-bottom: 1px solid #ee0000;
    font-size: 14px;
  }
    #under_toggle ul li a:hover {
    color: #fff;
    background:#bb0000;
  }
}

#nav-toggle {
  background: red;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  box-sizing: border-box;
  padding: 16px 14px 0;
  width: 54px;
  height: 54px;
  cursor: pointer;
  z-index: 101;
}
@media (max-width: 768px) {
  #nav-toggle {
    display: block;
  }
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 26px;
    border-radius: 3px;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {top: 0;}
#nav-toggle span:nth-child(2) {top: 9px;}
#nav-toggle span:nth-child(3) {top: 18px;}

@media (max-width: 768px) {
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open nav {
    /* #global-nav top + #mobile-head height */
    transform: translateY(558px);
  }
}
h1 { float:left;}
h1 a img {padding-top: 5px;padding-left:2px;width: 220px;}

/* ---------------------------------------------------

◆　footer

----------------------------------------------------*/
.go-top{
  width: 100%;
  border-top: 1px solid #bbb;
  background: #ccc;
  height: 42px;
  text-align:center;transition: 0.2s;
  box-sizing: border-box;
  padding-top: 8px;
  color:#333;
}
.go-top:hover{color:#fff; background: #bb0000;transition: 0.2s;}



footer{
  padding: 60px 0 30px;
  background: #222;
  width: 100%;
}
.footer_ctn{
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
footer img{
  width: 320px;
  margin: 0 auto;
  margin-bottom: 30px;
}
footer a{
  color:#fff;
  font-size: 13px;
  position: relative;
  text-decoration: none;
}
footer a:hover{color: #fff;}
footer a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 0.6);
  transform-origin: right top;
  transition: transform .3s;
}
footer a:hover::after {
    transform-origin: left top;
    transform: scale(1, 0.6);
}
.footer_list{display: flex;justify-content: space-between;width:98%;max-width:600px;margin:0 auto;font-size: 11px; }

@media (max-width: 768px) {
  footer{padding: 40px 0 30px;}
  .footer_ctn{text-align: left;width: 90%;}
  footer img{width: 240px;margin-bottom: 20px;}
  .footer_list{display: block;width: 100%;}
  .footer_list li{width: 100%;margin-top: 12px;font-size: 13px;}
}

#copyright{color:#fff; text-align: center; font-size: 9px;margin-top: 100px;color: #aaa;letter-spacing: 0.05rem;}
@media (max-width: 768px) {#copyright {margin-top: 50px;text-align: left;margin-left: 5%;}} 

/*--------------------------------------------------------------------------

*************** 以下 下層ページ共通 ***********************************

---------------------------------------------------------------------------*/

.sec-ttl-ctn{display: flex;justify-content: space-between;width:80%;max-width:1000px;margin:0 auto;}
.sec-ttl-txt{text-align: center;margin-bottom: 60px;}
.sec-ttl-txt h2{font-size: 52px; font-weight: 100;letter-spacing:0.1em;}
.sec-ttl-txt p{font-size:13px;letter-spacing: 0.1em;}
.sec-ttl-line{height: 1px; width:55%; background: #000;margin-top: 35px;}
@media (max-width: 768px){
  .sec-ttl-txt{margin-bottom: 30px;}
  .sec-ttl-txt h2{font-size: 34px;}
}

/*----------------------------------------------------

◆　下層ページ - メインビジュアル共通

----------------------------------------------------*/

/*--
メインビジュアルなし　---------------------*/

.no-mv{height: 140px; width: 100%;}
@media (max-width: 768px) {.no-mv{height: 90px;}}

/*--
メインビジュアルあり　---------------------*/

.under-mv{
  box-sizing: border-box;
  height: 430px;
  width: 100%;
  background: #333;
}
@media (max-width: 768px) {
  .under-mv{
  box-sizing: border-box;
  height: 260px;
  width: 100%;
  background: #333;
  }
}
.dot{height: 430px;width: 100%;box-sizing:border-box;background: url(../images/mv_dot2.png)repeat;padding-top: 195px;}
#contact_mv{background: url(../images/mv_contact.jpg)center center no-repeat;background-size: cover;}
.under-mv-catch{width: 520px;padding-top:108px;margin: 0 auto;}
@media (max-width: 768px) {
  .dot{height: 260px;padding-top: 120px;}
  .under-mv-catch{width: 90%;max-width: 400px;padding-top:108px;margin: 0 auto;}
}


/*----------------------------------------------------

◆　下層ページ - ポジション

----------------------------------------------------*/

.position{width: 100%;background: #eef0f0;height:36px;border-top: 1px #ccc solid;border-bottom: 1px #ccc solid;}
.position-ctn{max-width: 1100px;width: 98%;margin: 0 auto;box-sizing: border-box;}
.position-ctn{padding: 10px;font-size: 13px;}
.posi-home{color:#666666;}
.posi-home:before{content:'';display: inline-block;background: url(../images/icon_home.svg) center center no-repeat;background-size:contain;}
.posi-home:before{height: 13px;width: 13px;margin-right:5px}
.posi-home:after{content:'HOME';display: inline-block;}

.posi-now{color:#666666;margin-left: 20px;}
.posi-arrow:after{
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 1px 15px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

@media (max-width: 768px) {
  .position{width: 100%;background: #eef0f0;height:36px;border-top: 1px #ccc solid;border-bottom: 1px #ccc solid;}
  .position-ctn{max-width: 1100px;width: 98%;margin: 0 auto;}
  .position-ctn{padding: 10px;font-size: 12px;}
  .posi-home:before{margin-right: 0px;}  
  .posi-home:after{content:'';display: inline-block;}
  .posi-now{color:#666666;margin-left: 5px;}
  .posi-arrow:after{width: 5px;height: 5px;margin: 0 0 1px 5px;}
}


/*----------------------------------------------------

◆　下層ページ - リードテキスト

----------------------------------------------------*/

section#lead-text{width: 100%;padding: 110px 0 100px;}
.lead-text-box{width:95%;max-width:1000px;margin:0 auto;}
.lead-text-box p{font-size: 15px;margin-top: 20px;}
.lead-text-box h3{text-align: center; font-size: 35px;font-weight: bold;line-height: 46px;}
.lead-text-box h3 span{font-size: 64px;font-weight: bold;}
.lead-line{height: 1px;width:95%;max-width: 640px;margin:0 auto;background:#333;margin-bottom: 20px;}

@media (max-width: 768px) {
  section#lead-text{width: 100%;padding: 50px 0 50px;}
  .lead-text-box{width:90%;}
  .lead-text-box h3{text-align: center; font-size: 22px;font-weight: bold;line-height: 30px;letter-spacing: 0.03rem;}
  .lead-text-box p{font-size: 13px;}
}

