@charset "UTF-8";
/** 共通ページレイアウト **/

html {
    color: #333;
    overflow-y: scroll !important;
    list-style-image: url(../img/leftmenu/menu_icon.gif);
    background-color: #000;
}

body {
    margin: 0;
    overflow: visible;
    padding: 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    text-align: justify;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wf-mplus1p {
    font-family: "Mplus 1p";
}

.wf-roundedmplus1c {
    font-family: "Rounded Mplus 1c";
}

/** 基本レイアウト **/

.left {
    float: left !important;
}

.right {
    float: right !important;
}

a img:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/** ボタン **/

.button {
    width: 100%;
    background-color: #6fb43e;
    line-height: 50px;
    text-align: center;
    margin-top: auto;
}

.button:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.button a , .button input[type='submit'] {
    text-decoration: none;
    color: #fff;
    display: block;
    margin-top: 50px;
}

.button a::after {
    content: "n";
    font-family: "fontello";
    margin-left: 1rem;
}

/**スライダーカスタマイズ**/
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'fontello';
    font-size: 40px;
}

.slick-prev {
    left: 25px;
}

[dir='rtl'] .slick-prev {
    right: 25px;
    left: auto;
}

.slick-prev:before {
    content: 'p';
}

[dir='rtl'] .slick-prev:before {
    content: 'n';
}

.slick-next {
    right: 25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: 25px;
}

.slick-next:before {
    content: 'n';
}

[dir='rtl'] .slick-next:before {
    content: 'p';
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 80px;
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li {
    width: 30px;
    height: 30px;
}

.slick-dots li button {
    width: 40px;
    height: 40px;
    padding: 5px;
}

.slick-dots li button:before {
    /**ドットのサイズ**/
    font-size: 40px;
    line-height: 40px;
    width: 40px;
    height: 40px;
}

/** ページトップ **/
.pagetop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
}

.pagetop a {
    display: block;
    background-color: #ccc;
    border-radius: 50px;
    text-align: center;
    font-family: "fontello";
    color: #fff;
    text-decoration: none;
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 60px;
    opacity: 0.8;
}

@media screen and (max-width: 480px) {
    .pagetop {
    bottom: 20px;
    right: 20px;
    }
}


/**フェードイン処理**/
.fadein {
    opacity: 0;
    transform: translate(0, 40px);
    -webkit-transform: translate(0, 40px);
    -webkit-transition: .8s;
    transition: .8s;
}

.fade-anime {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/*PC用css*/
@media print,
screen and (min-width: 481px) {
    .inner {
        width: 1024px;
        padding: 0 22px;
        overflow: hidden;
        margin: auto;
        padding: 0 20px;
    }

    /**ヘッダー**/
    header {
        width: 100%;
        min-width: 1366px;
        height: auto;
        padding: 10px;
        overflow: hidden;
        position: fixed;
        z-index: 8;
    }

    header .logo {
        width: 160px;
        height: auto;
        float: left;
    }

    .menu {
        width: 60px;
        height: 60px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 101;
    }

    .menu img {
        width: 100%;
    }

    /**グローバルナビ**/
    nav#grobal {
        width: 100%;
        background-color: #dfdfdf;
    }

    #grobal > ul {
        width: 1024px;
        padding: 0 22px;
        margin: auto;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
        font-family: "Mplus 1p";
    }

    #grobal ul > li {
        width: 100%;
        border-right: 1px solid #ccc;
    }

    #grobal ul > li:first-of-type {
        border-left: 1px solid #ccc;
    }

    #grobal li a {
        text-decoration: none;
        color: #333;
        padding: 20px 0.3rem;
        line-height: 1;
        text-align: center;
        display: block;
    }

    #grobal li a:hover {
        color: #fff;
        background-color: #ccc;
        -webkit-transition: 0.1s;
        transition: 0.1s;
    }

    /**ドロップメニュー**/
    .dropmenu {
        *zoom: 1;
        list-style-type: none;
    }

    .dropmenu:before,
    .dropmenu:after {
        content: "";
        display: table;
    }

    .dropmenu:after {
        clear: both;
    }

    .dropmenu li {
        position: relative;
        margin: 0;
        padding: 0;
    }

    .dropmenu li ul {
        width: 100%;
        background-color: #ddd;
        list-style: none;
        position: absolute;
        z-index: 9999;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 0;
    }

    .dropmenu li ul li {
        width: 100%;
        float: left;
        border-top: 1px solid #ccc;
    }

    .dropmenu li ul li:last-of-type {
        border-bottom: 1px solid #ccc;
    }

    #fade-in li ul {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0s;
        transition: 0s;
    }

    #fade-in li:hover ul {
        visibility: visible;
        opacity: 1;
    }

    #fade-in li ul li a {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: .5s;
        transition: .5s;
    }

    #fade-in li:hover ul li a {
        visibility: visible;
        opacity: 1;
    }


    /*ナビ*/
    .contents-nav {
        width: 540px;
        list-style: none;
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        bottom: 0;
        left: 0;
    }

    .contents-nav li {
        width: 180px;
    }

    .contents-nav li:nth-of-type(1) {
        margin-right: 360px;
    }

    .contents-nav li:nth-of-type(2) {
        margin-left: 180px;
        margin-right: 180px;
    }

    .contents-nav li:nth-of-type(3) {
        margin-right: 180px;
    }

    .contents-nav li:nth-of-type(5) {
        margin-left: 180px;
    }

    .contents-nav li img {
        width: 100%;
    }

    #nav-ul {
        display: none;
    }


    main {
        min-width: 768px;
    }

    #contents {
        overflow: hidden;
    }

    #contents h2 {
        font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
        width: 100%;
        line-height: 40px;
        background-color: #ccc;
        padding: 0 1em;
        margin-bottom: 1.6em;
        font-size: 20px;
        color: #fff;
        font-family: "Rounded Mplus 1c";
    }

    #contents section {
        margin-bottom: 3.6rem;
    }

    #contents section:last-of-type {
        margin-bottom: 0;
    }

    /**インフォメーション**/
    .infomation {
        width: 100%;
        font-size: 15px;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        letter-spacing: 0.05rem;
    }

    .infomation dt {
        width: 16%;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .infomation dd {
        width: 84%;
        margin-bottom: 1rem;
    }

    .infomation h5 {
        font-weight: bold;
    }

    .infomation p {
        font-size: 13px;
        color: #888;
    }

    /* フッター */

    footer {
        width: 100%;
        padding: 10px;
        text-align: center;
        position: fixed;
        bottom: 0;
        z-index: 100;
    }

    footer small {
        font-size: 15px;
        font-family: "游明朝体",
            "Yu Mincho",
            YuMincho,
            "ヒラギノ明朝 Pro",
            "Hiragino Mincho Pro",
            "MS P明朝",
            "MS PMincho",
            serif;
        color: #fff;
    }

    footer small::before {
        content: "c";
        font-family: "fontello";
    }

    /**テーブル**/
    .table {
        width: 100%;
        border-top: 1px solid #999;
        border-left: 1px solid #999;
    }

    .table tr {
        border-bottom: 1px solid #999;
    }

    .table th {
        width: 24%;
        padding: 0.75rem 1rem;
        background-color: #efefef;
        border-right: 1px solid #999;
    }

    .table td {
        padding: 0.75rem 1rem;
        border-right: 1px solid #999;
    }

    .table tr:nth-last-of-type(2n) td {
        background-color: #FCFCFC;
    }

    /*写真入りのテキスト*/
    .pic-content {
        width: 100%;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .pic-content > img {
        width: 260px;
        height: auto;
    }

    .pic-content p {
        width: 660px;
        line-height: 1.8;
        text-align: justify;
    }

    .pic-content p {
        width: 660px;
        line-height: 1.8;
    }

    .sign {
        font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
        display: block;
        font-size: 17px;
        margin-top: 1.5rem;
        text-align: right;
        color: #444;
    }

    /*分割box*/
    .flexer {
        width: 100%;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        list-style: none;
    }

    .flexer h4 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 0.3rem;
        font-weight: bold;
    }

    .flexer p {
        text-align: justify;
        margin-bottom: 1rem;
    }

    .flexer figure {
        width: 100%;
        /*for ie11*/
        overflow: hidden;
        margin-bottom: 1rem;
    }

    .flexer img {
        width: 100%;
        height: auto;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .flexer li {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .two li {
        width: 49%;
        margin: 0 0 1rem;
    }

    .three li {
        width: 30%;
        margin: 0 0 1rem;
    }

    .three li::after {
        content: "";
        display: block;
        width: 32%;
    }

    .four li {
        width: 24%;
        margin: 0 0 1rem;
    }

    .four li::before {
        content: "";
        display: block;
        width: 24%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .four li::after {
        content: "";
        display: block;
        width: 24%;
    }

    .five li {
        width: 18%;
        margin: 0 1% 1rem;
    }

}


@media print,
screen and (max-width: 1500px) {
    nav {
        display: none;
    }

    .contents-nav {
        width: 450px;
    }

    .contents-nav li {
        width: 150px;
        margin: 0;
    }

    .contents-nav li:nth-of-type(1) {
        margin-right: 300px;
    }

    .contents-nav li:nth-of-type(2) {
        margin-left: 150px;
        margin-right: 150px;
    }

    .contents-nav li:nth-of-type(3) {
        margin-right: 150px;
    }

    .contents-nav li:nth-of-type(5) {
        margin-left: 150px;
    }

    .contents-nav li img {
        width: 100%;
    }
}

/*スマートフォン用css*/
@media screen and (max-width: 480px) {

    /**ヘッダー**/
    header {
        width: 100%;
        min-width: 1366px;
        height: auto;
        padding: 10px;
        overflow: hidden;
        position: fixed;
        z-index: 100;
    }

    header .logo {
        width: 160px;
        height: auto;
        float: left;
    }

    .menu {
        width: 50px;
        height: 50px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 101;
    }

    .menu img {
        width: 100%;
    }

    /*ナビ*/
    nav {
        position: fixed;
        bottom: 0px;
        left: 0;
        z-index: 100;
    }

    #nav-ul {
        position: static !important;
    }

    .contents-nav {
        width: 100%;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: absolute;
        bottom: 0;
    }

    .contents-nav li {
        width: 50%;
    }

    .contents-nav li:nth-of-type(1) {
        margin-right: 0;
    }

    .contents-nav li:nth-of-type(2) {
        margin-left: 0;
        margin-right: 0;
    }

    .contents-nav li:nth-of-type(3) {
        margin-right: 0;
    }

    .contents-nav li:nth-of-type(5) {
        margin-left: 0;
        width: 100%;
    }

    footer {
        width: 100%;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        background-color: #006837;
    }

    footer small {
        font-size: 12px;
        font-family: "游明朝体",
            "Yu Mincho",
            YuMincho,
            "ヒラギノ明朝 Pro",
            "Hiragino Mincho Pro",
            "MS P明朝",
            "MS PMincho",
            serif;
        color: #fff;
    }

    footer small::before {
        content: "c";
        font-family: "fontello";
    }

}

/*submitリセット*/
.button input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

.button input[type='submit'],
.button input[type='button'] {
  cursor: pointer;
}
