@charset "utf-8";
/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/




/* ========================================================

　Grobal Setting

=========================================================== */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    /* モバイル端末の縦横可変時の文字サイズ自動調整 */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


/* ========================================================

　body

=========================================================== */

body {
    width: 100%;
    height: 100%;
    color: rgba(51, 51, 51, 1.00);
    font: normal 300 1.6rem/2.4rem 'Montserrat', "Noto Sans CJK JP", "Noto Sans JP", "メイリオ", "Meiryo", "Meiryo UI", "Arial", sans-serif, "Osaka";
    word-wrap: break-word; /* テキストを必要に応じて単語の途中で改行 */
    webkit-tap-highlight-color: rgba(0, 0, 0, 0.0); /* モバイルのリンクタップ時の強調色 */
    letter-spacing: 0.0625rem;
    overflow-x: hidden;
}


/* ========================================================

　Default Link Color

=========================================================== */

a:link,
a:visited {
    color: rgba(0, 100, 200, 1.00);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    outline: none;
}

a:hover,
a:focus {
    color: rgba(255, 155, 0, 1.00);
}

a:active,
a.active {
    color: rgba(255, 0, 15, 1.00);
}

a.phone {
    color: rgba(51, 51, 51, 1.00);
}


/* ========================================================

　h1～h6, p, li

=========================================================== */

h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

section p,
section li {
    margin-bottom: 0.5rem;
}


/* ========================================================

　nav

=========================================================== */

/* Side Menu */
#sidebar-wrapper {
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 75, 1.00);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: translateX(250px);
    -ms-transform: translateX(250px);
    transform: translateX(250px);
    z-index: 500;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li.sidebar-nav-item a {
    display: block;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
}

.sidebar-nav li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 8.0rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    background-color: rgba(240, 240, 240, 1.0);
    line-height: 5.0rem;
}

.sidebar-nav > .sidebar-brand img {
    max-width: 160px;
}

.sidebar-nav > .sidebar-brand a:hover {
    background: none;
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.menu-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 5.0rem;
    height: 5.0rem;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 5.0rem;
    z-index: 999;
}

.menu-toggle i {
    color: rgba(255, 255, 255, 1.00);
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* ========================================================

　header

=========================================================== */

header {
    width: 100%;
    height: auto;
    min-height: 40.0rem;
    background: url("../img/bg-masthead.jpg") center center / cover no-repeat;
}

header h1 {
    margin-top: 1.0rem;
    font-size: 1.5rem;
    font-weight: 400;
}

@media (min-width: 992px) {

    header {
        height: 100vh;
    }

    header h1 {
        font-size: 1.6rem;
        font-weight: 400;
    }

}

/* IEハック */
@media all and (-ms-high-contrast:none) {

    header img {
        margin-top: 30%;
    }

}


/* ========================================================

　section

=========================================================== */

.content-section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.content-section h2 {
    margin-bottom: 5.0rem;
    padding: 1.0rem;
    background-color: rgba(0, 0, 75, 1.00);
    color: rgba(255, 255, 255, 1.00);
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
}


/* ========================================================

　footer

=========================================================== */

footer#footer {
    padding-top: 3.0rem;
    padding-bottom: 2.0rem;
    background-color: rgba(0, 0, 75, 1.00);
    text-align: center;
}

footer#footer a,
footer#footer aside {
    color: rgba(255, 255, 255, 1.00);
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}


/* ========================================================

　Other

=========================================================== */

/* scroll top */
.scroll-to-top {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 5.0rem;
    height: 5.0rem;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 5.0rem;
}

.scroll-to-top i {
    color: rgba(255, 255, 255, 1.00);
    font-weight: 800;
}

.scroll-to-top:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* break point --------------------------------------------
	<576px , >=576px , =>768px , =>992px , =>1200px
	iPhone5 320x568
	iPhone6-8 375x667 *
	iPhone6-8Plus 414x736
	iPhoneX 375x812
	iPad（iPad Mini）768x1024 *
	iPadPro 1024x1366
	Pixel2 411x731
	Pixel2 XL 411x823
	PC lg 992 *
	PC xl 1200 *
----------------------------------------------------------- */
/* branc --------------------------------------------------
	1-0.25rem
	2-0.5rem
	3-1.0rem
	4-1.5rem
	5-3.0rem
----------------------------------------------------------- */
/* Noto Sans JP -------------------------------------------
	Light 300
	Regular 400
	Medium 500
	Bold 700
    Black 900
----------------------------------------------------------- */
/* Montserrat ---------------------------------------------
	Regular 400
	Medium 500
    Semi-Bold 600
	Bold 700
    Extra-Bold 800
    Black 900
----------------------------------------------------------- */

/* ---- End of file --------------------------------------- */