@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, 105, 180, 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(235, 100, 0, 1.00);
}

a:active,
a.active {
    color: rgba(10, 125, 40, 1.00);
}

/* telephone */
a[href^="tel:"] {
    color: rgba(51, 51, 51, 1.00);
}


/* ========================================================

　h1～h6, p

=========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
}

p.lead {
    margin-bottom: 3.0rem;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
}

p.lead::before,
p.lead::after {
    content: "-";
}

@media (min-width: 992px) {

    h2 {
        font-size: 3.0rem;
    }

}


/* ========================================================

　nav

=========================================================== */

/* Side Menu */
#sidebar-wrapper {
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(30, 130, 160, 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(52, 58, 64, 0.1);
    line-height: 5.0rem;
}

.sidebar-nav > .sidebar-brand img {
    max-width: 120px;
}

.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);
}


/* ========================================================

　section

=========================================================== */

.content-section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}


/* ========================================================

　banner

=========================================================== */

#banner h2 {
    color: rgba(240, 150, 0, 1.00);
}

#banner img {
    margin: auto auto 1.0rem;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#banner img:hover {
    opacity: 0.7;
}

/* ========================================================

　footer

=========================================================== */

footer#footer {
    padding-top: 3.0rem;
    padding-bottom: 2.0rem;
    background-color: rgba(30, 130, 160, 1.00);
    color: rgba(255, 255, 255, 1.00);
}

footer#footer p {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
}

footer#footer a {
    color: rgba(204, 204, 204, 1.00);
    font-size: 1.4rem;
    font-weight: 300;
}

footer#footer a:hover {
    color: rgba(255, 255, 255, 1.00);
}


/* ========================================================

　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);
}

/*　iframeのレスポンシブ化
------------------------------------------------------------ */
.ifWrap {
    position: relative;
    height: 0;
    margin: 1.0rem 0;
    padding-bottom: 56.25%; /* Youtube動画の場合の高さは 56.25% 、マップなどの高さは個別に指定 */
    overflow: hidden;
}

.ifWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* 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 --------------------------------------- */