@charset "utf-8";

/*リセット
==================================================================================================================*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
hr,
dl,
dt,
dd,
ol,
ul,
menu,
li,
form,
fieldset,
legend,
label,
table,
caption,
thead,
tbody,
tfoot,
tr,
th,
td,
section,
header,
main,
article,
aside,
nav,
footer,
address,
summary,
span,
a,
cite,
strong,
em,
small,
i,
b,
q,
u,
sub,
sup,
ruby,
rt,
img,
picture,
source,
figure,
figcaption,
canvas,
iframe,
audio,
video {
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    text-align: inherit;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    border: 0 none;
}

* {
    outline: none;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html {
    -webkit-text-size-adjust: none;
    height: 100%;
}

body {
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    text-align: left;
}

ol,
ul,
li {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-weight: bold;*/
}

img {
    border: 0 none;
    width: auto;
    height: auto;
    max-width: 100%;
}

strong,
em {
    font-weight: bold;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 70%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    vertical-align: text-top;
    top: -.5em;
}

sub {
    vertical-align: text-bottom;
    bottom: -.25em;
}


@font-face {
    font-family: "FAsolid";
    src: url("./fa-solid-900.woff") format("woff");
}

@font-face {
    font-family: "FAregular";
    src: url("./fa-regular-400.woff") format("woff");
}

.dbl {
    display: block;
}

.dib {
    display: inline-block;
}

.din {
    display: inline;
}

.dtb {
    display: table;
}

.right,
.right p {
    text-align: right;
}

.center,
.center p {
    text-align: center;
}

.under {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 90%;
}

.small2 {
    font-size: 80%;
}

a[target="_blank"]::after {
    font-family: "FAsolid";
    font-weight: 900;
    content: "\f35d";
    display: inline-block;
    margin: 0 0 0 3px;
    color: #5b75b4;
    font-size: 11px;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.img_left {
    display: block;
    float: left;
    margin: 0 30px 30px 0;
}

.img_right {
    display: block;
    float: right;
    margin: 0 0 30px 30px;
}

.img_top {
    margin-bottom: 30px;
}

.clear {
    clear: both;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.flex {
    display: flex;
    flex-flow: row wrap;
}

.flex_between {
    justify-content: space-between;
}

.flex_center {
    justify-content: center;
}

.flex_around {
    justify-content: space-around;
}

.flex_a_center {
    align-items: center;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.lineclamp2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.lineclamp3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*基本スタイル
==================================================================================================================*/
/*基本文字サイズ&文字色*/
html {
    font-size: 16px;
}

body {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.9;
    color: #333;
    background: #fff;
    font-weight: 400;
}

.wf-active body {
    font-family: 'Noto Serif JP', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

h2 {

}

h3 {
    font-size: 2em;
    font-weight: normal;
}

p {
    margin: 0px 0px .8em 0px;
}

/*下部に余白*/
.cap01 {
    font-size: 85%;
    display: block;
    line-height: 1.2;
}

/*リンク文字色*/
a {
    text-decoration: none;
    color: #555;
}

a:hover {
    opacity: 0.8;
}

/*マーカー＆強調文字色*/
.c_mrk {
    background-color: #e5d89b;
    padding: 0 3px;
}

/*ラインマーカー*/
.c_posi {
    color: #d64a5a;
}

/*positive*/
.c_point {
    color: #900000;
}

/*point up*/
.c_nega {
    color: #5488a2;
}

/*negative*/
.c_off {
    color: #cac5ba;
}

/*off*/

/*テーブル*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption {
    text-align: left;
    font-weight: bold;
    color: #993300;
}

th,
td {
    border: #7f9255 1px solid;
    padding: 10px 20px;
    font-size: 1rem;
    vertical-align: top;
}

thead th,
tfoot th {
    background-color: #728c42;
    color: #fff;
}

thead td,
tfoot td {
    background-color: #999;
    color: #fff;
}

tbody th {
    background-color: #a0cc3c;
    color: #fff;
}

tbody td {
    background-color: #fff;
}

/*区切り線*/
hr {
    clear: both;
    border: 0px solid #fff;
    padding: 15px 0;
    width: 0;
}

hr.br {
    border: none;
}

.img_frame {
    border: solid 4px #fff;
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
}

/*レイアウト共通*/
#container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.inner:after {
    content: "";
    display: block;
    clear: both;
}

.inner-section {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 0;
}

.contents_btm01 {
    margin-bottom: 100px;
}

.contents_btm02 {
    margin-bottom: 80px;
}

.contents_btm03 {
    margin-bottom: 60px;
}

.contents_btm04 {
    margin-bottom: 40px;
}

.contents_btm05 {
    margin-bottom: 20px;
}

.contents_btm0 {
    margin-bottom: 0;
}

.p0 {
    padding: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

section {
    position: relative;
    margin-bottom: 40px;
}

@media (max-width:1000px) {
    .inner-section {
        padding: 40px 4%;
    }

    .inner {
        padding: 0 4%;
    }
}

@media (max-width:799px) {
    .inner {
        padding: 0 4%;
    }

    .inner-section {
        padding: 30px 6%;
    }
}

@media all and (min-width: 900px) {
    .noPC {
        display: none !important;
    }
}

@media all and (max-width: 899.999px) {
    .noSP {
        display: none !important;
    }
}

@media (max-width: 599px) {

    .noTab,
    .noTab caption,
    .noTab thead,
    .noTab tfoot,
    .noTab tbody,
    .noTab tr,
    .noTab th,
    .noTab td {
        display: block;
        width: 100%;
    }

    .noTab tr {
        margin-top: 10px;
    }

    .img_left {
        float: none;
        margin: 10px auto;
        text-align: center;
    }

    .img_right {
        float: none;
        margin: 10px auto;
        text-align: center;
    }
}

@media (max-width:499px) {
    body {
        line-height: 1.7;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    #wrapper {
        padding-top: 50px;
    }

    .contents_btm01 {
        margin-bottom: 4rem;
    }

    .contents_btm02 {
        margin-bottom: 2rem;
    }

    .contents_btm03,
    .contents_btm04 {
        margin-bottom: 1rem;
    }
}

/*グローバルナビゲーション
==================================================================================================================*/
/*ヘッダー*/
header {
    width: 100%;
    padding: 30px 0;
    position: relative;
}

.header_inner.flex {
    max-width: 1080px;
    margin: 0 auto;
}

#hdr_logo {
    text-align: left;
}

#hdr_logo a {
    text-align: center;
    margin: auto;
}

.nav_menu {
    width: 80%;
    justify-content: space-evenly;
    position: relative;
}

.nav_menu>li a {
    display: block;
}

.btn_toiawase {
    display: block;
    border-radius: 25px;
    margin: 0 0 0 1em;
}

.btn_toiawase a {
    color: #fff;
    display: block;
}

.contact_area {
    width: 17%;
    height: auto;
}

.btn_toiawase a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 19px;
    background-image: url(../images/common/icon_mail.png);
    background-size: contain;
    vertical-align: middle;
    margin: 0 6px 0 0;
}

/*グローバルメニュー*/
#gnav_wrap {
    justify-content: space-between;
    width: 100%;
}

#gnav li {
    width: calc(100% / 6);
    display: block;
}

#gnav li a {
    display: block;
    overflow: hidden;
    color: inherit;
    margin: 0 1px 0 0;
    padding: 0 0 1em 0;
}

#gnav li a span {
    font-size: 12px;
    padding: 0 2%;
    vertical-align: text-bottom;
}

#gnav li .nav_02 {
    position: absolute;
    top: -1000px;
    opacity: 0;
}

#gnav li:hover .nav_02 {
    top: 31px;
    background: #fffde2;
    z-index: 5;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}


#gnav .nav_02 li {
    text-align: center;
}

#gnav .nav_02 li a {
    padding: 5px 0;
}

#gnav .nav_02 li a::before {
    content: none;
}

.hamMenu {
    display: none;
}

#header .overlay {
    position: fixed;
    display: none;
    z-index: 20;
    top: 50px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 50px);
    background: rgba(200, 200, 200, .5);
}

.sub_page .header_inner.flex {
    max-width: initial;
    justify-content: space-between;
    width: 96vw;
    align-items: flex-end;
}

.sub_page #gnav_wrap {
    justify-content: space-evenly;
    align-items: center;
    width: 73%;

}

.sub_page #hdr_logo {
    text-align: left;
    font-size: 1.9em;
    line-height: 1.2;
    padding: 0 1em 0 0;
    width: 20%;
    min-width: 380px;
}

.sub_page #hdr_logo .small {
    font-size: 16px;
}

.sub_page .nav_menu {
    padding: 0;

}

.sub_page h3 {
    text-align: center;
    margin: 0 0 1em;
}

@media (max-width: 1499px) {
    .sub_page .header_inner .contact_area {
        position: absolute;
        top: 10%;
        right: 1%;
    }

    .sub_page .nav_menu {
        width: 100%;
    }

    .sub_page #gnav_wrap {
        margin: 1.3em 0 0;
        width: calc(100% - 380px);
    }
}

@media (max-width: 1149px) {
    .sub_page #gnav_wrap {
        margin: 1.3em auto 0;
        width: 97%;
    }
}

@media (max-width:999px) {
    #gnav_wrap {
        justify-content: end;
    }

    .sub_page .nav_menu {
        width: 95%;
        margin: 0 0 1em 0;

    }

    .sub_page .contact_area {
        width: 18%;
    }
}


@media (max-width:899px) {

    #hdr_logo {
        width: 100%;
        display: block;
        text-align: left;
        margin: auto;
        padding: 0 10px;
    }

    #hdr_logo h1 {
        padding: 0;
        font-weight: normal;
        line-height: 1.4;
    }


    #hdr_logo h1 a {
        padding: 0;
        line-height: 1;
        font-size: 1.2em;
    }

    #hdr_logo h1 a .small {
        font-size: 12px;
        line-height: 1;
        padding: 0;
        margin: 0;
    }

    #hdr_logo img {
        width: 180px;
    }

    #header {
        position: absolute;
        top: 0;
        width: 100%;
        height: 50px;
        z-index: 99999;
        padding: 0;
    }

    .header_inner.inner {
        padding: 10px 5px;
    }

    header .ilu_sun,
    header .ilu_balloon {
        display: none;
    }

    #gnav_wrap {
        display: block !important;
        transition: .5s ease-in-out;
        float: none;
        width: 100%;
        max-height: 100vh;
        padding-top: 50px;
        margin: 0;
        position: absolute;
        top: 0;
        right: -900px;
        z-index: 1000;
        overflow: auto;
    }

    .menu-is-open #gnav_wrap {
        transform: translateX(-900px);
        background: #fff;
        padding: 0 0 50px 0;
        margin: 50px 0 0 0;
        width: 100%;

    }

    .hamMenu {
        display: block;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2000;
        text-indent: -9999px;
        margin: 0;
        background: none;
    }

    .hamMenu span {
        display: block;
        position: absolute;
        top: 14px;
        right: 10px;
        width: 30px;
        height: 22px;
        background: #4F94CF;
        border-top: 9px solid #fff;
        border-bottom: 9px solid #fff;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hamMenu span:before {
        content: '';
        position: absolute;
        width: 30px;
        height: 4px;
        background: #4F94CF;
        top: -9px;
        right: 0;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hamMenu span:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 4px;
        background: #4F94CF;
        bottom: -9px;
        right: 0;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .btn_toiawase {
        display: flex;
        justify-content: center;
    }

    .header_inner .contact_area li {
        margin: 1em auto 0.6em;
        width: 80%;
    }

    .menu-is-open .hamMenu span {
        background: #fffdf7;
    }

    .menu-is-open .hamMenu span:before {
        transform: rotate(-135deg);
        top: 0;
        right: 0;
    }

    .menu-is-open .hamMenu span:after {
        transform: rotate(135deg);
        bottom: 0;
        right: 0;
    }

    #gnav {
        border: none;
    }

    #gnav li {
        width: 100%;
        border: none;
    }

    #gnav li a {
        font-size: 14px;
        padding: 10px;
        border-bottom: 1px #ccc dotted;
        width: 100%;
        text-align: center;
    }

    .nav_menu,
    .sub_page .nav_menu {
        width: 100%;
        margin: 0;
    }

    .menu-is-open #header .overlay {
        display: block;
    }

    #hdr_logo,
    .sub_page #hdr_logo {
        text-align: left;
        font-size: 1.1em;
        line-height: 1.2;
        padding: 0 1em 0 0;
        width: 90%;
        min-width: initial;
        text-align: left;
        margin: 0;
    }

    .header_inner .contact_area,
    .sub_page .header_inner .contact_area {
        width: 100%;
        position: initial;
    }

    #gnav li .nav_02 {
        position: initial;
    }

    #gnav li .nav_02 li {
        text-align: left
    }

    #gnav .nav_02 li a {
        text-align: left;
        padding: 5px 0 5px 48%;
    }

    #gnav .nav_02 li a:before {
        content: "-";
        font-size: 1em;
        color: #333;
    }
}

@media (max-width:499px) {
    header {
        padding: 0;
    }

    header::before {
        display: none;
    }
}

/*フッター*/
#bread {
    background: #eee;
    font-size: 80%;
    padding: 0.3em;
}

#bread li {
    display: inline-block;
}

#bread li::before {
    font-family: FAsolid;
    content: "\f105";
    font-weight: 900;
    color: red;
    display: inline-block;
    margin: .1em .5em;
}

#bread li:first-of-type::before {
    content: "\f015";
    margin: .1em .5em .1em 0;
}

#bread a {}

footer {}

#footer {
    width: 100%;
}

.foot_list {
    justify-content: space-between;
    margin: 3em 0;
}

.foot_list .logo_area {
    width: 30%;
}

.foot_list .name {
    color: #256CB9;
    font-size: 1.6em;
    margin: 0;
    line-height: 1;
}

.foot_list .name .small {
    font-size: 14px;
    line-height: 1;
}

.foot_list .contact_area {
    width: 20%;
}

#footer #foot_nav {
    width: 46%;
    flex-direction: column;
    justify-content: flex-start;
}

#footer #foot_nav .facilities_block {
    justify-content: space-evenly;
}

#footer #foot_nav li {
    display: inline-block;
}

#footer #foot_nav a {
    margin: 0 2em 0 0;
}

#footer #foot_nav a:before {
    content: "・";
}

#footer #foot_nav li ul li a:before {
    content: "-";
    font-size: 0.8em;
}

#footer #foot_nav li ul li a {
    margin: 0 0 0 0.7em;
    font-size: 0.8em;
}

.contact_area li {
    border-radius: 25px;
    margin: 0 0 0.6em 0;
    display: flex;
    justify-content: center;
    padding: 4px 0;
}

.btn_tel {
    background-color: #F3AC1E;
    display: block;

}

.btn_tel a {
    color: #fff;
    padding: 4px 1.3em;
    display: block;
    font-size: 1em;
    width: 100%;
    text-align: center;
}

.btn_tel a:before {
    content: '';
    display: inline-block;
    width: 23px;
    height: 29px;
    background-image: url(../images/common/icon_tel.png);
    background-size: 70%;
    vertical-align: middle;
    margin: 0 1% 0 0;
    background-repeat: no-repeat;
}

#copy {
    text-align: center;
    font-size: 0.75rem;

}

@media (max-width:1199px) {
    .foot_list {
        width: 94%;
    }
}

@media (max-width:899px) {
    .foot_list .logo_area {
        width: 100%;
        text-align: center;
        margin: 0 0 1em;
    }

    #footer #foot_nav {
        width: 60%;
    }

    .foot_list .contact_area {
        width: 36%;
    }
}

@media (max-width:599px) {

    .foot_list,
    .foot_list .logo_area,
    #footer #foot_nav,
    .foot_list .contact_area {
        width: 100%;
    }

    #footer #foot_nav {
        flex-direction: row;
        margin: 0 0 1em;
    }

    .contact_area li {
        margin: 0 auto 0.6em;
        width: 80%;
    }

}

.onoff {
    opacity: 0;
    transition: all 1s;
}

.onoff.on {
    opacity: 1;
}

.btn_more01 a,
.btn_more02 a {
    display: block;
    width: 100%;
    margin: auto;
    background: #fba9d4;
    border-radius: 30vh;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: relative;
}

.btn_more01 a {
    max-width: 340px;
}

.btn_more02 a {
    background: #afd472;
    max-width: 340px;
}

.btn_more01 a:before,
.btn_more02 a:before {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    content: '';
    border: 2px dotted #fff;
    border-radius: 30vh;
}

.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    z-index: 9999;
    display: none;
    right: 2%;
    bottom: 6em;
}

#page_top.on {
    display: block;
}

#page_top a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
    text-align: center;
}

#page_top a::before {}

@media (max-width: 499px) {
    #page_top {
        width: 50px;
height: 50px;
right: 5px;
bottom: 100px;
    }

    #page_top a {
        width: 50px;
        height: 50px;
        line-height: 1;
    }

    #page_top a::before {
        margin-bottom: 2px;
    }
}

@media (max-width: 369px) {

    #page_top,
    #page_top a {
        width: 45px;
        height: 45px;
    }



    #page_top a::before {
        margin-bottom: 0;
        height: 22px;
    }
}

/***動き**********************************/

/*フェード*/
.fadein {
    display: block;
    transition: 2s;
    /*効果時間*/
    transition-timing-function: ease;
    /*開始と完了を滑らかにする*/
    transform: translateY(50px);
    /*下から表示させる*/
    opacity: 0;
    /*不透明度*/
}

.fadein.on {
    transform: none;
    /*active時に拡大解除*/
    opacity: 1;
    /*不透明度を元に戻す*/
}