@charset "utf-8";
/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* http://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/




/* -----------------------------------------------------------

　#mainNav

-------------------------------------------------------------- */
@-webkit-keyframes show {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes show {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@media only screen and (min-width:992px) {

    #mainNav {
        padding-top: 50px;
        padding-bottom: 15px;
        background: none;
        border: none;
        -webkit-transition: padding-top 0.5s, padding-bottom 0.5s;
        -o-transition: padding-top 0.5s, padding-bottom 0.5s;
        transition: padding-top 0.5s, padding-bottom 0.5s;
    }

    #mainNav.navbar-shrink {
        padding-top: 0;
        padding-bottom: 0;
        background: rgba(37, 101, 40, 0.7);
        background: url(../images/bg_mainnav_shrink.png) center center repeat-x;
        background-size: auto 100%;
    }

    /* brand */
    #mainNav .navbar-brand {
        top: 40px;
        bottom: inherit;
        margin-top: inherit;
        margin-left: 50px;
        width: auto;
        -webkit-animation: show 1.0s ease-in-out 0s;
        animation: show 1.0s ease-in-out 0s;
    }

    #mainNav.navbar-shrink .navbar-brand {
        position: relative;
        top: 10px;
        bottom: -10px;
        margin-top: -10px;
        margin-left: 0;
    }

    #mainNav .navbar-brand img {
        width: 50px;
        height: 272px;
    }

    #mainNav .navbar-brand img:first-child {
        display: block;
    }

    #mainNav .navbar-brand img:last-child {
        display: none;
    }

    #mainNav.navbar-shrink .navbar-brand img:first-child {
        display: none;
    }

    #mainNav.navbar-shrink .navbar-brand img:last-child {
        display: block;
        width: 100%;
        max-width: 210px;
        height: auto;
    }

    /* navigation */
    #mainNav .navbar-nav {
        margin-top: 0;
        padding-bottom: inherit;
        -webkit-animation: show 1.0s ease-in-out 0s;
        animation: show 1.0s ease-in-out 0s;
    }

    #mainNav .navbar-nav .nav-item {
        margin-right: 40px;
    }

    #mainNav .navbar-nav .nav-item:nth-child(5) {
        margin-right: 0;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        padding: 0;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    #mainNav .navbar-nav .nav-item:nth-of-type(-n+7) .nav-link img {
        display: block;
    }

    #mainNav .navbar-nav .nav-item .nav-link img {
        width: 36px;
        height: auto;
    }

    #mainNav .navbar-nav .nav-item .nav-link span {
        display: none;
    }

    #mainNav .navbar-nav .nav-item .nav-link img[src*="nav_s0"] {
        display: none;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item {
        margin-left: 10px;
        margin-right: 10px;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link img[src*="nav_v0"] {
        display: none;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link img[src*="nav_s0"] {
        display: block;
    }

    /* business */
    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(1) .nav-link img {
        width: 144px;
    }

    /* performance */
    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(2) .nav-link img {
        width: 92px;
    }

    /* order */
    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(3) .nav-link img {
        width: 90px;
    }

    /* company */
    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(4) .nav-link img {
        width: 64px;
    }

    /* news */
    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(5) .nav-link img {
        width: 92px;
    }

    /* contact */
    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(6) img {
        display: block;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(6) .nav-link img {
        width: 120px;
    }

    #mainNav .navbar-nav .nav-item:nth-child(7) {
        display: none;
    }

    #mainNav .navbar-nav .nav-item:nth-child(8) {
        display: block;
        margin-right: 0;
    }

    #mainNav .navbar-nav .nav-item:nth-child(8) img {
        width: 320px;
        height: auto;
        border-radius: 6px;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item:nth-child(8) {
        display: none;
    }

}

@media only screen and (min-width:1200px) {

    #mainNav .navbar-brand {
        margin-left: 0;
    }

    #mainNav .navbar-nav .nav-item {
        margin-right: 60px;
    }

    #mainNav .navbar-nav .nav-item .nav-link img {
        width: 40px;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item {
        margin-left: 20px;
        margin-right: 20px;
    }

    #mainNav .navbar-nav .nav-item:nth-child(8) {
        padding-left: 50px;
    }

}

/* -----------------------------------------------------------

　header(heroImage)

-------------------------------------------------------------- */
header {
    position: relative;
    width: auto;
    height: 100vh;
    background: rgba(0, 0, 0, 1.0);
    overflow: hidden;
}

header .shade {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100vh;
    background: url(../images/heroimage_raster.png) center center repeat;
}

.carousel.fade {
    opacity: 1;
}

.carousel.fade .carousel-item {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity ease-out 3.0s;
    -o-transition: opacity ease-out 3.0s;
    transition: opacity ease-out 3.0s;
}

.carousel.fade .carousel-item:first-child {
    position: relative;
    top: auto;
    opacity: 1.0;
}

.carousel.fade .carousel-item.active {
    opacity: 1;
}

.carousel-item {
    height: 100vh;
    min-height: 300px;
}

.carousel-item:nth-child(1) {
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage01.jpg) center center no-repeat scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), color-stop(20%, rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))), url(../images/heroimage01.jpg) center center no-repeat scroll;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage01.jpg) center center no-repeat scroll;
    background-size: cover;
}

.carousel-item:nth-child(2) {
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage02.jpg) center center no-repeat scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), color-stop(20%, rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))), url(../images/heroimage02.jpg) center center no-repeat scroll;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage02.jpg) center center no-repeat scroll;
    background-size: cover;
}

.carousel-item:nth-child(3) {
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage03.jpg) center center no-repeat scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), color-stop(20%, rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))), url(../images/heroimage03.jpg) center center no-repeat scroll;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage03.jpg) center center no-repeat scroll;
    background-size: cover;
}

.carousel-item:nth-child(4) {
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage04.jpg) center center no-repeat scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), color-stop(20%, rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))), url(../images/heroimage04.jpg) center center no-repeat scroll;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage04.jpg) center center no-repeat scroll;
    background-size: cover;
}

.carousel-item:nth-child(5) {
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage05.jpg) center center no-repeat scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), color-stop(20%, rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))), url(../images/heroimage05.jpg) center center no-repeat scroll;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage05.jpg) center center no-repeat scroll;
    background-size: cover;
}

.carousel-item:nth-child(6) {
    background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage06.jpg) center center no-repeat scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), color-stop(20%, rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))), url(../images/heroimage06.jpg) center center no-repeat scroll;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%), url(../images/heroimage06.jpg) center center no-repeat scroll;
    background-size: cover;
}

.carousel-caption h3 {
    padding-bottom: 45px;
    -webkit-animation: show 2.0s ease-in-out 0s;
    animation: show 2.0s ease-in-out 0s;
}

.carousel-caption h3 img {
    width: auto;
    max-width: 340px;
    height: 65.0vh;
}

.carousel-caption p {
    margin-bottom: 0;
    line-height: 1.5rem;
}

.carousel-indicators {
    bottom: 0;
    margin: 0;
    height: 50px;
    background: url(../images/bg_curve320.png) center bottom no-repeat;
    background-size: 100% 50px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 50%;
    background-color: rgba(62, 114, 53, 1.0);
}

.carousel-indicators .active {
    background-color: rgba(144, 173, 102, 1.0);
}

@media only screen and (min-width:576px) {

    .carousel-caption h3 {
        padding-bottom: 70px;
    }

    .carousel-indicators {
        background: url(../images/bg_curve576.png) center bottom no-repeat;
        background-size: 100% 50px;
    }

}

@media only screen and (min-width:768px) {

    .carousel-indicators {
        background: url(../images/bg_curve768.png) center bottom no-repeat;
        background-size: 100% 50px;
    }

}

@media only screen and (min-width:902px) {

    .carousel-caption h3 img {
        height: 60.0vh;
    }

}

@media only screen and (min-width:992px) {

    header {
        min-height: 50rem;
    }

    .carousel-item {
        min-height: 50rem;
    }

    .carousel-indicators {
        background: url(../images/bg_curve992.png) center bottom no-repeat;
        background-size: 100% 50px;
    }

    .carousel-caption h3 {
        padding-bottom: 50px;
    }

}

@media only screen and (min-width:1024px) {

    .carousel-caption h3 {
        padding-bottom: 40px;
    }

}

@media only screen and (min-width:1200px) {

    .carousel-caption h3 {
        padding-bottom: 50px;
    }

    .carousel-caption h3 img {
        height: 65.0vh;
    }

    .carousel-indicators {
        background: url(../images/bg_curve1200.png) center bottom no-repeat;
        background-size: 100% 50px;
    }

}

/* -----------------------------------------------------------

　section

-------------------------------------------------------------- */
section h2.section-heading {
    margin-top: 0;
    margin-bottom: 24px;
}

::-moz-selection {
    background: rgba(255, 250, 235, 1.0);
    text-shadow: none;
}

::selection {
    background: rgba(255, 250, 235, 1.0);
    text-shadow: none;
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

@media only screen and (min-width:576px) {

    section h2.section-heading {
        margin-top: 0;
        margin-bottom: 30px;
    }

}

@media only screen and (min-width:768px) {

    section h2.section-heading {
        margin-top: 0;
        margin-bottom: 50px;
    }

}

/* -----------------------------------------------------------
　#covid19
-------------------------------------------------------------- */
#covid19 {
    margin-top: 3.0rem;
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    border-top: 3px double rgba(255, 0, 0, 1.0);
    border-bottom: 3px double rgba(255, 0, 0, 1.0);
    background-color: rgba(255, 0, 0, 0.02);
}

#covid19 h2 {
    margin-bottom: 2.0rem;
    color: rgba(255, 0, 0, 1.0);
    font-size: 1.4rem;
    font-weight: bold;
}

#covid19 ul {
    list-style: none;
}

#covid19 li:nth-child(n+2) {
    margin-top: 1.0rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(220, 220, 220, 1.0);
}

#covid19 aside,
#covid19 h3 {
    display: block;
    font-size: 1.2rem;
    line-height: 1.4rem;
}

#covid19 aside {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

#covid19 a {
    color: rgba(0, 0, 0, 1.0);
}

#covid19 a:hover {
    color: rgba(228, 94, 50, 1.0);
}

#covid19 .new {
    margin-left: 1.0rem;
    color: rgba(255, 0, 0, 1.0);
    font-size: 0.8rem;
}

@media only screen and (min-width:576px) {

    #covid19 h2 {
        text-align: center;
    }

}

@media only screen and (min-width:768px) {

     #covid19 {
        padding-top: 3.0rem;
        padding-bottom: 3.0rem;
    }

    #covid19 h2 {
        margin-bottom: 4.0rem;
    }

   #covid19 li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    #covid19 aside,
    #covid19 h3 {
        display: inline-block;
    }

    #covid19 aside {
        margin-right: 3.0rem;
    }

}

/* -----------------------------------------------------------
　#introduction
-------------------------------------------------------------- */
#introduction p {
    text-align: justify;
    text-justify: inter-ideograph;
}

/* -----------------------------------------------------------
　#paper & #tanabata
-------------------------------------------------------------- */
#paper,
#tanabata {
    position: relative;
    height: auto;
}

#paper {
    background: rgba(255, 255, 255, 1.0) url(../images/bg_paper.jpg) center center no-repeat;
    background-size: cover;
}

#tanabata {
    background: rgba(255, 255, 255, 1.0) url(../images/bg_tanabata.jpg) center center no-repeat;
    background-size: cover;
}

/*　iOS以外は背景画像をフィクス
----------------------------------------------------------- */

/* Chrome / Firefox / Opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {

    #paper,
    #tanabata {
        background-attachment: fixed;
    }

}

/* Edge 1 */
@supports (-ms-ime-align: auto) {

    #paper,
    #tanabata {
        background-attachment: fixed;
    }

}

/* Edge 2 */
_:-ms-lang(x)::backdrop,
#paper,
_:-ms-lang(x)::backdrop,
#tanabata {
    background-attachment: fixed;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
#paper,
_:-ms-lang(x)::-ms-backdrop,
#tanabata {
    background-attachment: fixed;
}

#paper::before,
#tanabata::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    content: ' ';
}

#paper div[class^="col-"],
#tanabata div[class^="col-"] {
    text-align: center;
}

#tanabata .section-heading img {
    margin: 0 auto;
}

#paper .section-heading img {
    width: 50%;
}

#tanabata .section-heading img {
    width: 80%;
}

#paper .section-subheading,
#tanabata .section-subheading {
    padding-bottom: 15%;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.2rem;
    text-align: left;
}

#paperNav,
#tanabataNav {
    position: relative;
    margin-top: -10vh;
    background: url(../images/bg_washi_a320.png) center top no-repeat;
    background-size: cover;
}

#paperNav ul,
#tanabataNav ul {
    margin: 0;
    margin-top: 50px;
    padding-bottom: 50px;
}

#paperNav li,
#tanabataNav li {
    list-style-type: none;
    line-height: 1.0rem;
}

#paperNav a,
#tanabataNav a {
    position: relative;
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.2rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ 明朝", serif, "Noto Sans JP", "メイリオ", "Meiryo", "Meiryo UI";
    letter-spacing: 0.2rem;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

#paperNav a:hover,
#tanabataNav a:hover {
    color: rgba(228, 94, 50, 1.0);
}

#paperNav a::after,
#tanabataNav a::after {
    position: absolute;
    top: -10px;
    visibility: hidden;
    font-size: 0rem;
    font-family: "FontAwesome";
    content: "\f111";
    color: rgba(144, 173, 102, 0);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#paperNav a:hover::after,
#tanabataNav a:hover::after {
    top: -25px;
    visibility: visible;
    color: rgba(144, 173, 102, 1.0);
    font-size: 0.8rem;
}

@media only screen and (min-width:360px) {

    #paperNav li,
    #tanabataNav li {
        line-height: 1.6rem;
    }

}

@media only screen and (min-width:375px) {

    #paperNav li,
    #tanabataNav li {
        line-height: 1.8rem;
    }

}

@media only screen and (min-width:411px) {

    #paperNav li,
    #tanabataNav li {
        line-height: 2.15rem;
    }

}

@media only screen and (min-width:576px) {

    #paperNav,
    #tanabataNav {
        background: url(../images/bg_washi_a576.png) center top no-repeat;
        background-size: cover;
    }

    #paper .section-heading img {
        width: 30%;
    }

    #tanabata .section-heading img {
        width: 50%;
    }

    #paperNav li,
    #tanabataNav li {
        padding-left: 26px;
    }

    #paperNav a,
    #tanabataNav a {
        font-size: 1.5rem;
    }

}

@media only screen and (min-width:768px) {

    #paperNav,
    #tanabataNav {
        background: url(../images/bg_washi_a768.png) center top no-repeat;
        background-size: cover;
    }

    #paper .section-subheading,
    #tanabata .section-subheading {
        padding-bottom: 10%;
        font-size: 1.1rem;
        text-align: center;
    }

    #paperNav ul,
    #tanabataNav ul {
        padding-bottom: 100px;
    }

    #paperNav li,
    #tanabataNav li {
        padding-left: 42px;
    }

    #paperNav a,
    #tanabataNav a {
        letter-spacing: 0.4rem;
    }

}

@media only screen and (min-width:992px) {

    #paperNav,
    #tanabataNav {
        background: url(../images/bg_washi_a992.png) center top no-repeat;
        background-size: cover;
    }

    #tanabata .section-heading img:first-child {
        display: none;
    }

    #tanabata .section-heading img:last-child {
        display: block;
    }

    #paper .section-heading img {
        width: 15%;
    }

    #tanabata .section-heading img {
        width: 25%;
    }

    #paper .section-subheading,
    #tanabata .section-subheading {
        padding-bottom: 5%;
        font-size: 1.2rem;
    }

    #paperNav li,
    #tanabataNav li {
        padding-left: 22px;
    }


    #paperNav a,
    #tanabataNav a {
        font-size: 1.6rem;
    }

}

@media only screen and (min-width:1200px) {

    #paperNav,
    #tanabataNav {
        background: url(../images/bg_washi_a1200.png) center top no-repeat;
        background-size: cover;
    }

    #paper .section-heading img {
        width: 15%;
    }

    #tanabata .section-heading img {
        width: 25%;
    }

    #paperNav li,
    #tanabataNav li {
        padding-left: 30px;
    }

}

@media all and (-ms-high-contrast:none) {

    /* IEハック */
    #paperNav a,
    #tanabataNav a {
        color: rgba(0, 0, 0, 0.6);
    }

    #paperNav a::after,
    #tanabataNav a::after {
        left: 5px;
    }

}

/* -----------------------------------------------------------
　#feature
-------------------------------------------------------------- */
#feature {
    padding-top: 0;
}

#feature ul {
    list-style: none;
}

#feature a div {
    background: rgba(0, 0, 0, 1.0);
    overflow: hidden;
}

#feature li:nth-last-child(n+2) {
    pointer-events: none;
}

#feature a img {
    opacity: 0.7;
}

#feature a:hover img {
    opacity: 1.0;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

#feature h3 {
    margin: 30px 0 0;
    font-size: 1.875rem;
    text-align: center;
}

#feature h3 span {
    display: block;
    font-size: 1.05rem;
    font-style: italic;
}

#feature a h3 {
    color: rgba(62, 114, 53, 1.0);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#feature a:hover h3 {
    color: rgba(228, 94, 50, 1.0);
}

#feature p {
    padding: 30px 15px 20px;
    font-size: 1.1rem;
    text-align: left;
    text-align: justify;
    text-justify: inter-ideograph;
}

#feature a p {
    color: rgba(0, 0, 0, 1.0);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#feature a:hover p {
    color: rgba(228, 94, 50, 1.0);
}

@media only screen and (min-width:992px) {

    #feature h3 {
        margin: 50px 0 0;
    }

    #feature p {
        padding: 50px 30px 30px;
    }

}

@media only screen and (min-width:1200px) {

    #feature p {
        padding: 50px 50px 30px;
    }

}

@media all and (-ms-high-contrast:none) {

    /* IEハック */
    #feature a p {
        color: rgba(0, 0, 0, 0.6);
    }

}

/* -----------------------------------------------------------
　#activities
-------------------------------------------------------------- */
#activities {
    position: relative;
    background: rgba(255, 255, 255, 1.0) url(../images/bg_activities.jpg) center center no-repeat;
}

/*　iOS以外は背景画像をフィクス
----------------------------------------------------------- */

/* Chrome / Firefox / Opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {

    #activities {
        background-attachment: fixed;
    }

}

/* Edge 1 */
@supports (-ms-ime-align: auto) {

    #activities {
        background-attachment: fixed;
    }

}

/* Edge 2 */
_:-ms-lang(x)::backdrop,
#activities {
    background-attachment: fixed;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
#activities {
    background-attachment: fixed;
}

#activities::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    content: ' ';
}

#activities div[class^="col-"] {
    text-align: center;
}

#activities div[class^="col-"]:nth-child(-n+2) {
    margin-bottom: 50px;
}

#activities .section-subheading {
    font-size: 1.1rem;
    text-align: left;
    text-align: justify;
    text-justify: inter-ideograph;
}

.btn-cstm {
    width: 240px;
    margin-top: 10px;
    padding: 10px 0 12px;
    background: rgba(105, 130, 27, 0.7);
    border-color: rgba(105, 130, 27, 1.0);
}

.btn-cstm:active,
.btn-cstm:focus,
.btn-cstm:hover {
    background: rgba(105, 130, 27, 1.0);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(105, 130, 27, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(105, 130, 27, 0.5);
}

.btn-cstm img {
    width: 120px;
    height: auto;
}

.btn-cstm i {
    color: rgba(255, 250, 235, 0.7);
}

.btn-cstm:hover i {
    color: rgba(255, 250, 235, 1.0);
}

@media only screen and (min-width:576px) {

    #activities .section-subheading {
        text-align: center;
    }

}

@media only screen and (min-width:768px) {

    #activities .section-subheading {
        text-align: left;
    }

    #activities div[class^="col-"]:nth-child(1) {
        margin-bottom: 0;
    }

    .btn-cstm {
        width: 100%;
    }

}

@media only screen and (min-width:992px) {

    #activities .section-subheading {
        padding: 0 10%;
    }

    .btn-cstm {
        width: 80%;
    }

}

/* -----------------------------------------------------------
　#news
-------------------------------------------------------------- */
#news h2 {
    text-align: center;
}

#news .section-heading img {
    max-width: 190px;
    height: auto;
}

#news .container-fluid {
    padding: 30px 0 0;
    background: rgba(255, 255, 255, 1.0);
}

/* tab */
#news .nav-tabs li:nth-child(1) .nav-link {
    border-color: rgba(234, 85, 6, 1.0);
    color: rgba(234, 85, 6, 1.0);
}

#news .nav-tabs li:nth-child(2) .nav-link {
    border-color: rgba(105, 130, 27, 1.0);
    color: rgba(105, 130, 27, 1.0);
}

#news .nav-tabs li:nth-child(3) .nav-link {
    border-color: rgba(0, 123, 187, 1.0);
    color: rgba(0, 123, 187, 1.0);
}

#news .nav-tabs li:nth-child(4) .nav-link {
    border-color: rgba(136, 127, 122, 1.0);
    color: rgba(136, 127, 122, 1.0);
}

#news .nav-tabs > li {
    margin-right: 0.5%;
    width: 49.5%;
}

#news .nav-link {
    padding: 10px 0;
    background: rgba(246, 246, 246, 1.0);
    border-bottom: none;
    border-radius: 0 0 0 0;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
}

#news .nav-link:hover,
#news .nav-link:focus {
    background: rgba(255, 255, 255, 1.0);
}

#news .nav-link.active {
    background: rgba(255, 255, 255, 1.0);
}

/* tab contents */
#news .tab-pane p {
    display: inline-block;
    margin-bottom: 0;
}

#news .tab-pane li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
    text-align: left;
    list-style-type: none;
}

#news .tab-pane li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

#news .tab-pane li > div:nth-child(1) {
    text-align: center;
}

#news .tab-pane li > div:nth-child(1) img {
    margin-bottom: 10px;
    width: 50%;
    height: auto;
    border: 3px solid rgba(201, 201, 201, 1.0);
    border-radius: 50%;
}

#news .tab-pane li > div:nth-child(1) img:hover {
    border: 3px solid rgba(228, 94, 50, 1.0);
    border-radius: inherit;
}

#news .tab-pane li > div:nth-child(2) p:nth-child(1) {
    position: relative;
    top: 0.15rem;
    margin-right: 10px;
    color: rgba(37, 101, 40, 1.0);
    font-size: 1.15rem;
    font-weight: bold;
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a {
    margin-right: 10px;
    font-size: 1.15rem;
    font-weight: bold;
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a::before {
    margin-right: 5px;
    font-family: "FontAwesome";
    content: "\f111";
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a:hover::before {
    content: "\f058";
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a.information {
    color: rgba(234, 85, 6, 1.0);
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a.tanabata {
    color: rgba(105, 130, 27, 1.0);
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a.product {
    color: rgba(0, 123, 187, 1.0);
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a.other {
    color: rgba(136, 127, 122, 1.0);
}

#news .tab-pane li > div:nth-child(2) p:nth-child(2) a:hover {
    color: rgba(243, 152, 0, 1.0);
}

#news h3 {
    margin-top: 5px;
    font-size: 1.4rem;
}

#news h3 a {
    color: rgba(0, 0, 0, 1.0);
}

#news h3 a:hover {
    color: rgba(228, 94, 50, 1.0);
}

#news h3 a::after {
    visibility: hidden;
    position: relative;
    top: -3px;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.15rem;
    font-family: "FontAwesome";
    content: "\f061";
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#news h3 a:hover::after {
    visibility: visible;
    margin-left: 5px;
    color: rgba(228, 94, 50, 1.0);
}

#news > .container:last-child {
    padding-top: 50px;
    text-align: center;
}

#news > .container:last-child a {
    color: rgba(255, 255, 255, 1.0);
}

#news .new {
    margin-left: 10px;
    color: rgba(255, 0, 0, 1.0);
    font-size: 0.8rem;
}

.btn-more {
    padding: 10px;
    background: rgba(105, 130, 27, 1.0) url(../images/raster.png);
    border: 2px solid rgba(62, 114, 53, 1.0);
    font-size: 1.2rem;
    font-weight: normal;
}

.btn-more:active,
.btn-more:focus,
.btn-more:hover {
    background: rgba(248, 181, 0, 1.0) url(../images/raster.png);
    border: 2px solid rgba(248, 181, 0, 1.0);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 181, 0, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 181, 0, 0.5);
}

.btn-more i {
    opacity: 0;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

.btn-more:hover i {
    opacity: 1.0;
}

@media only screen and (min-width:576px) {

    #news .nav-tabs > li {
        margin-right: 0.2%;
        width: 49.8%;
    }

    #news .nav-link {
        font-size: 1.125rem;
    }

    #news .tab-pane li > div:nth-child(1) {
        text-align: left;
    }

    #news .tab-pane li > div:nth-child(1) img {
        margin-bottom: 0;
        width: 100%;
        max-width: 200px;
    }

}

@media only screen and (min-width:768px) {

    #news .nav-link {
        padding: 10px 0;
        background: rgba(246, 246, 246, 1.0);
        border-radius: 4px 4px 0 0;
        font-size: 1.0rem;
    }

    #news .nav-tabs > li {
        margin-right: 0.3%;
        width: 24.7%;
    }

    #news .tab-pane li > div:nth-child(2) p:nth-child(1) {
        top: 0.05rem;
    }

}

@media only screen and (min-width:992px) {

    #news .nav-link {
        font-size: 1.2rem;
    }

    #news .nav-tabs > li {
        margin-right: 0.2%;
        width: 24.8%;
    }

}

@media all and (-ms-high-contrast:none) {

    /* IEハック */
    #news .container-fluid {
        position: relative;
        top: -0.5px;
    }

    #news .nav-link {
        padding: 15px 0 5px !important;
    }

    #news h3 a {
        color: rgba(0, 0, 0, 0.7);
    }

    .btn-more {
        padding: 13px 10px 8px;
    }

}

/* -----------------------------------------------------------
　#sns
-------------------------------------------------------------- */
#sns {
    background: rgba(255, 255, 255, 1.0) url(../images/bg_washi_b.png) center top no-repeat;
    background-attachment: fixed;
}

/*　iOS以外は背景画像をフィクス
----------------------------------------------------------- */

/* Chrome / Firefox / Opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {

    #sns {
        background-attachment: fixed;
    }

}

/* Edge 1 */
@supports (-ms-ime-align: auto) {

    #sns {
        background-attachment: fixed;
    }

}

/* Edge 2 */
_:-ms-lang(x)::backdrop,
#sns {
    background-attachment: fixed;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
#sns {
    background-attachment: fixed;
}

#sns .section-heading {
    font-size: 3.0rem;
    font-style: italic;
    text-align: center;
}

#sns .icon li {
    list-style-type: none;
    text-align: center;
}

#sns .icon li img {
    max-width: 64px;
    height: auto;
}

/* -----------------------------------------------------------
　#accessmap
-------------------------------------------------------------- */
#accessmap {
    padding-top: 0;
}

#accessmap .container-fluid div[class^="col-"]:nth-child(1) iframe {
    border: 10px solid rgba(0, 123, 187, 0.5);
}

#accessmap .container-fluid div[class^="col-"]:nth-child(1) h3 {
    color: rgba(0, 123, 187, 1.0);
}

#accessmap .container-fluid div[class^="col-"]:nth-child(2) iframe {
    margin-top: 20px;
    border: 10px solid rgba(37, 101, 40, 0.5);
}

#accessmap .container-fluid div[class^="col-"]:nth-child(2) h3 {
    color: rgba(37, 101, 40, 1.0);
}

#accessmap .container-fluid li {
    font-size: 1.1rem;
    list-style-type: none;
}

#accessmap .container-fluid li em {
    display: block;
    font-style: normal;
}

#accessmap iframe {
    width: 100%;
    height: 360px;
    border: none;
}

#accessmap li span:hover {
    color: rgba(228, 94, 50, 1.0);
}

@media only screen and (min-width:576px) {

    #accessmap .container-fluid li em {
        display: inline;
        margin-left: 10px;
    }

    #accessmap .container-fluid li em:nth-child(2) {
        margin-left: 50px;
    }

}

@media only screen and (min-width:768px) {

    #accessmap li {
        pointer-events: none;
    }

}

@media only screen and (min-width:992px) {

    #accessmap .container li {
        font-size: 1.15rem;
        list-style-type: none;
    }

    #accessmap .container h2 img {
        max-width: 140px;
        height: auto;
    }

    #accessmap .container-fluid div[class^="col-"]:nth-child(1) iframe {
        margin-bottom: 10px;
    }

    #accessmap .container-fluid div[class^="col-"]:nth-child(2) iframe {
        margin-top: 0;
        margin-bottom: 10px;
    }

    #accessmap .container div[class^="col-"]:nth-child(1) {
        text-align: right;
    }

    #accessmap .container div[class^="col-"]:nth-child(1) h3 {
        color: rgba(0, 123, 187, 1.0);
    }

    #accessmap .container div[class^="col-"]:nth-child(2) {
        text-align: center;
    }

    #accessmap .container div[class^="col-"]:nth-child(2) p {
        font-size: 0.9rem;
    }

    #accessmap .container div[class^="col-"]:nth-child(3) h3 {
        color: rgba(37, 101, 40, 1.0);
    }

    #accessmap li span {
        pointer-events: none;
    }

}