@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%;
    vertical-align: top;
}

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: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1.3;
    color: #333;
    background: #fff;
    font-weight: 400;
}

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

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


p {}

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

/*リンク文字色*/
a {
    text-decoration: none;
    color: #333;
    line-height: 2;
    padding: 0;
    margin: 0;
}

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: 98%;
    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;
}

@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 4%;
    }
}

@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;
    }
}


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


/*フッター*/
#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 {
    color: green;
}

footer {}

#footer {
    width: 100%;
}

#copy {
    text-align: center;
    font-size: 0.75rem;
    color: #5f5f5f;
    padding: 0.5em 0;
}



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

.onoff.on {
    opacity: 1;
}


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

#page_top.on {
    display: block;
}

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

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

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

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

/*左からスライド*/
div.animation_box {
  padding: 10px;
  animation: fadeIn 2s ease 0.5s 1 normal backwards;
}
 
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}