@charset"utf-8";

/* ===================================
*
　★リセットCSS
*
===================================-*/
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, sub, sup, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    overflow: auto;
    font-size: 62.5%;
}
body {
    color: black;
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1.8;
    -webkit-text-size-adjust: none;
    position: relative;
    font-family: "Noto Sans JP",sans-serif,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 500;
    letter-spacing:  0.06em;
}
a {
    color: black;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
a:hover {
    text-decoration: none;
    opacity: 0.6;
}
body p,body ul li a{
    font-weight: 500;
}
button, input[type=button], input[type=reset], input[type=submit] {
    touch-action: manipulation;
    transition: border .15s linear, color .15s linear, background-color .15s linear;
}
img {
    vertical-align: bottom;
}
input[type="text"], 
input[type="password"], 
textarea, 
select {
    outline: none;
    border: 2px solid #dedede;
    padding: 5px;
    border-radius: 0px;
    width: 100%;
    margin: 0;
    font-family: "Noto Sans JP",sans-serif,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
/* ===================================
*
　リセットCSS - SP
*
===================================-*/
@media screen and (max-width: 767px) {
	img {
	  width: 100%;
	  height: auto;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　★PC/SP 切り替え
*
===================================-*/
.pc{
	display: block;
}
.sp{
	display: none;
}
/* ===================================
*
　PC/SP 切り替え - SP
*
===================================-*/
@media screen and (max-width: 767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　★共通
*
===================================-*/
body inner{
    width:1000px;
    margin: 40px auto 70px;
}
/* --------------------------------------
　ふわっとでてくるアニメ
--------------------------------------*/
/*ふわっと*/
body .fadeIn {
    opacity: 0;
    transition: 3s;
}
body .fadeIn.is-show {
     opacity: 1;
}

/*ふわっと - 速め*/
body .fadeIn_fast {
    opacity: 0;
    transition: 1.5s;
}
body .fadeIn_fast.is-show {
     opacity: 1;
}
/*下から上にふわっと*/
body .fadeIn_up {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 1s;
}
body .fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
body .fadeIn_up_2 {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 3s;
}
body .fadeIn_up_2.is-show {
    transform: translate(0, 0);
    opacity: 1;
}


/*左から右にふわっと*/
body .fadeIn_left {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 1.5s;
}
body .fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
/*右から左にふわっと*/
body .fadeIn_right {
    opacity: 0;
    transform: translate(50%, 0);
    transition: 1.5s;
}
body .fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
/* ===================================
*
　PC/SP 切り替え - SP
*
===================================-*/
@media screen and (max-width: 767px) {
    /*ふわっと*/
    body .fadeIn {
        opacity: 0;
        transition: 3s;
    }
    body .fadeIn.is-show {
         opacity: 1;
    }
    /*ふわっと - 速め*/
    body .fadeIn_fast {
        opacity: 0;
        transition: 1.5s;
    }
    body .fadeIn_fast.is-show {
         opacity: 1;
    }
    /*下から上にふわっと*/
    body .fadeIn_up {
        opacity: 0;
        transform: translate(0, 50%);
        transition: 1s;
    }
    body .fadeIn_up.is-show {
        transform: translate(0, 0);
        opacity: 1;
    }
    /*左から右にふわっと*/
    body .fadeIn_left {
        opacity: 0;
        transform: translate(0, 50%);
        transition: 1s;
    }
    body .fadeIn_left.is-show {
        transform: translate(0, 0);
        opacity: 1;
    }
    /*右から左にふわっと*/
    body .fadeIn_right {
        opacity: 0;
        transform: translate(0, 50%);
        transition: 1s;
    }
    body .fadeIn_right.is-show {
        transform: translate(0, 0);
        opacity: 1;
    }
    body .breadcrumb{
        width: 100%;
        margin: 0 auto;
        padding: 5% 5% 0% 5%;
        font-size: 1.3rem;
    }
    #sub .mv{
        margin-top: 70px;
        background-color: aqua;
        height: 180px;
        width: 100%; 
        position: relative;
    }
    #sub .mv .inner{
        position: absolute;
        top: 47%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    #sub .mv h1{
        font-size: 2.6rem;
        text-align: center;
        line-height: 1.3;
        position: relative;
    }
    #sub .mv h1:after{
        content: '';
        position: absolute;
        left: 50%;
        bottom: -20px;
        display: inline-block;
        width: 50px;
        height: 2px;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translate(-50%);
        background-color: #235ae4;
    }
}
/*===================================
max-width: 767px - SPここまで
===================================*/



/* ===================================
*
　★header 
*
===================================-*/
body #top_header{
    height: 147px;
    position: fixed;
    z-index: 100000000000000;
    top: 0;
    width: 100%;
    background: #fff;
        box-shadow: 0px 11px 16px -15px rgb(0 0 0 / 29%);
}
body #top_header .inner{
    z-index: 999;
    width: 100%;
    padding: 20px 30px;
}
body #top_header a,
body #top_header {
    text-decoration: none;
}
body #top_header .logo img{
    width: 160px;
    display: block;
    margin: 0 auto 14px;
}
body #global_nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}
body #global_nav ul {
    list-style: none;
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    justify-content: space-between;
    border-right: 1px solid #a0a0a0;
}
body #global_nav ul li{
    width: 166px;
    color: #282828;
    text-align: center;
    border-left: 1px solid #a0a0a0;
}
body #global_nav a.tel{
    pointer-events: none;
}
body #global_nav ul li a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    color: #282828;
    font-size: 1.35rem;
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px;
}
body #global_nav ul li a:after{
    position: absolute;
    background-image: url(../img/gnav_arrow.png);
    width: 19px;
    height: 12px;
    content: "";
    bottom: 0;
    left: 46%;
    background-size: 80%;
    background-repeat: no-repeat;
}


/* --------------------------------------
　Toggle Button
--------------------------------------*/
body #nav_toggle{
    display: none;
    position: absolute;
    right: 12px;
    top: 21px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
body #nav_toggle div {
    position: relative;
}
body #nav_toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #0492d3;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
body #nav_toggle span:nth-child(1) {
    top: 0;
}
body #nav_toggle span:nth-child(2) {
    top: 11px;
}
body #nav_toggle span:nth-child(3) {
    top: 22px;
}
/* ===================================
*
　header - SP
*
===================================-*/
@media only screen and (max-width: 767px){
    body #top_header{
        height: 70px;
    }
    body #top_header,
    body #top_header .inner{
        width: 100%;
        padding: 0;
    }
    body #top_header{
        top: 0;
        position: fixed;
        margin-top: 0;
        z-index: +1;
        box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -webkit-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -moz-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -o-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -ms-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        z-index: 1000000;
    }
    body #top_header .logo img{
        width: 80%;
    }
    body #top_header .tel img{
        display: block;
        margin: 0px auto 2%;
        width: 210px;
    }
    body #global_nav{
        display: block;
    }
    /* --------------------------------------
    　 Fixed reset
    --------------------------------------*/
    body #top_header.fixed {
        padding-top: 0;
        background: transparent;
    }
    body #mobile_head{
        background: #fff;
        width: 100%;
        height: 70px;
        z-index: 999;
        position: relative;
    }
    body #top_header.fixed .logo,
    body #top_header .logo {
        position: absolute;
        left: 13px;
        top: 13px;
        color: #333;
        font-size: 26px;
    }
    body #global_nav{
        position: absolute;
        top: -500px;
        background: #0197d7;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    body #global_nav ul {
        list-style: none;
        font-size: 14px;
        display: block;
        width: 100%;
        padding: 5%;
    }
    body #global_nav ul li:first-child{
        border-top: 1px solid #d5d5d5;
    }
    body #global_nav ul li{
        float: none;
        position: static;
        padding: 0px;
        width: 100%;
        border-left: 0px solid #a0a0a0;
        color: #fff;
    }
    body #top_header #global_nav ul li a,
    body #top_header.fixed #global_nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 13px 0;
        border-bottom: 1px solid #d5d5d5;
        padding-left: 3%;
        text-align: left;
        
    }
    body #top_header #nav_toggle{
        display: block;
    }
    body #global_nav ul{
        border-left: none;
        border-right: none;
    }
    /* --------------------------------------
    　 切り替えアニメーション
    --------------------------------------*/
    body .open #nav_toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    body .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    body .open #nav_toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* --------------------------------------
    　 スライドアニメーション
    --------------------------------------*/
    body .open #global_nav {
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
    /* --------------------------------------
    OFF:グロナビ_a_下線
    --------------------------------------*/
    body #global_nav ul li a{
        position: relative;
        display: inline-block;
        text-decoration: none;
        white-space: nowrap;
    }
    body #global_nav ul li a:after{
        position: absolute;
        bottom: 0px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background:none;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }
    body #global_nav ul li a:hover{
        opacity: 1;
    }
    body #global_nav ul li a:hover:after {
        bottom: -4px;
        opacity: 1;
        visibility: visible;
    }
    /* --------------------------------------
    ON:グロナビ_a_下線
    --------------------------------------*/
    body #global_nav ul li.on a{
        position: relative;
        display: inline-block;
        text-decoration: none;
        white-space: nowrap;
    }
    body #global_nav ul li.on a:after{
        position: absolute;
        bottom: 0px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: none;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        bottom: -4px;
        opacity: 1;
        visibility: visible;
    }
    body #global_nav ul li.on a:hover{
        opacity: 1;
    }
    body #global_nav ul li.on a:hover:after {
        opacity: 1;
    }
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　★footer
*
===================================-*/
body footer{
    background: #fff;
    font-weight: 500;
    padding: 30px 0;
    box-sizing: border-box;
}
body footer .inner{
    width: 1000px;
    margin: 0 auto;
}
body footer li a{
    position: relative;
    padding-left: 16px;
    font-size: 1.5rem;
    margin-right: 20px;
}
body footer li a:before{
    position: absolute;
    background-image: url(../../img/link_arrow_bk.png);
    width: 10px;
    height: 16px;
    left: 0;
    content: "";
    background-size: 80%;
    background-repeat: no-repeat;
    top: 4px;
}
body footer span.copy{
    font-size: 1.3rem;
    margin-right: 20px;
}
/*トップへ戻る*/
p.top_arrow{
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
p.top_arrow.active{
  opacity: 1;
  visibility: visible;
}
/* ===================================
*
　footer - SP
*
===================================-*/
@media only screen and (max-width: 767px){
    body footer{
        background: #fff;
        font-weight: 500;
        padding: 5%;
        box-sizing: border-box;
    }
    body footer .inner{
        width: 100%;
        margin: 0 auto;
    }
    body footer img{
        width: 32%;
        display: block;
        margin: 5% auto 0;
    }
    /*トップへ戻る*/
    p.top_arrow{
        position: fixed;
        right: 5px;
        bottom: 15px;
        cursor: pointer;
        transition: .3s;
        opacity: 0;
        visibility: hidden;
    }
    p.top_arrow.active{
      opacity: 1;
      visibility: visible;
    }
    p.top_arrow img{
        width: 100%;
    }
}
/*===================================
max-width: 767px - SPここまで
===================================*/


