@charset "utf-8";
html,
body {
    margin: 0;
    padding: 0;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    color: #171a1a;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    word-break: break-all;
}
img {
    border: none;
    width: auto;
    max-width: 100%;
    height: auto;
    line-height: 0;
    vertical-align: bottom;
}
.full {
    width: 100%;
}
.aspect-ratio-3-2 {
    aspect-ratio: 3 / 2;
}
a,
a i,
a small,
a img {
    color: #222;
    background: transparent;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.aglink{
    color: #16843d;
    text-decoration: underline;
}
.aglink:hover{
    color: #bc200b;
}
a:hover img {
    text-decoration: none;
    opacity: 0.6 !important;
    -webkit-opacity: 0.6 !important;
    -moz-opacity: 0.6 !important;
}
a:focus,
*:focus {
    outline: none;
}
.fade {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.fade:hover {
    opacity: 1;
    text-decoration: none;
}
mark {
    background: #fffb7a;
    color: #222 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 900;
}
p,
dt,
dd {
    line-height: 1.6em;
    font-size: 16px;
    margin: 0 0 1.5em;
}
p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
th,
td {
    padding: 10px 20px;
    line-height: 1.4em;
}
ul.nolist,
ol.nolist {
    margin: 0;
    padding: 0;
}
ul.nolist li,
ol.nolist li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mcenter {
    margin-left: auto;
    margin-right: auto;
}
.right {
    text-align: right;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.pright {
    padding-right: 5px;
}
.pleft {
    padding-left: 5px;
}
.block {
    display: block;
}
.i_block {
    display: inline-block;
}
small,
sub,
sup {
    font-size: 80%;
    line-height: 1.4em;
}
.note {
    padding-left: 0.8em;
    margin: 0 0 10px !important;
}
.note span {
    font-size: 14px;
    text-indent: -1em;
    display: block;
    line-height: 1.5em;
}
.prelative{
    position: relative;
}
.pabsolute{
    position: absolute;
}
select,
textarea,
input[type="text"],
input[type="button"],
input[type="search"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-sizing: border-box !important;
}
.yt {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.yt iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}
.bread {
    font-size: 14px;
    line-height: 1.5em;
}
.bread a {
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.5em;
}
.bread small {
    display: inline-block;
    padding: 0 0.5em 0 1em;
}
.forsp,
.fortb {
    display: none !important;
}
@media screen and (max-width: 1280px) {
    p,
    th,
    td,
    dt,
    dd,
    li {
        line-height: 1.5em;
        font-size: 14px;
        margin: 0 0 1.2em;
    }
}
@media screen and (max-width: 980px) {
    .note span {
        font-size: 12px;
        line-height: 1.4em;
    }
    .number {
        letter-spacing: 0;
    }
    .forpc {
        display: none !important;
    }
    .fortb {
        display: block !important;
    }
}
@media screen and (max-width: 680px) {
    .forpc{
        display: none !important;
    }
    .forsp {
        display: block !important;
    }
    .bread,
    .bread span,
    .bread a {
        font-size: 12px;
    }
}

/*FLEX*/
.flex_content {
    display: flex;
    display: -webkit-flex;
}
.flex_wrap {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.flex_justify {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.flex_center {
    justify-content: center;
    -webkit-justify-content: center;
}
.flex_start {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}
.flex_end {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}
.flex_middle {
    align-items: center;
    -webkit-align-items: center;
}
.flex_top {
    align-items: flex-start;
    -webkit-align-items: flex-start;
}
.flex_bottom {
    align-items: flex-end;
    -webkit-align-items: flex-end;
}
.flex_vert {
    align-content: space-between;
    -webkit-align-content: space-between;
}
.flex_all {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.flex_left,
.flex_right {
    flex-basis: 48%;
    -webkit-flex-basis: 48%;
    max-width: 48%;
}
.flex_half {
    flex-basis: 50%;
    -webkit-flex-basis: 50%;
    max-width: 50%;
}
@media screen and (max-width: 680px) {
    .flex_left,
    .flex_right {
        flex-basis: 100% !important;
        -webkit-flex-basis: 100% !important;
        max-width: 100% !important;
    }
}

/*MARGIN*/
.mauto{
    margin-left: auto;
    margin-right: auto;
}
.mb100 {
    margin-bottom: 100px !important;
}
.mb80 {
    margin-bottom: 80px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb5 {
    margin-bottom: 5px !important;
}

.pd100 {
    padding: 100px 0 !important;
}
.pd80 {
    padding: 80px 0 !important;
}
.pd60 {
    padding: 60px 0 !important;
}
.pd40 {
    padding: 40px 0 !important;
}
.pd30 {
    padding: 30px 0 !important;
}
.pd20 {
    padding: 20px 0 !important;
}
.pd10 {
    padding: 10px 0 !important;
}

.pa100 {
    padding: 100px !important;
}
.pa80 {
    padding: 80px !important;
}
.pa60 {
    padding: 60px !important;
}
.pa40 {
    padding: 40px !important;
}
.pa30 {
    padding: 30px !important;
}
.pa20 {
    padding: 20px !important;
}
.pa10 {
    padding: 10px !important;
}

.pb100 {
    padding-bottom: 100px !important;
}
.pb80 {
    padding-bottom: 80px !important;
}
.pb60 {
    padding-bottom: 60px !important;
}
.pb40 {
    padding-bottom: 40px !important;
}
.pb30 {
    padding-bottom: 30px !important;
}
.pb20 {
    padding-bottom: 20px !important;
}
.pb10 {
    padding-bottom: 10px !important;
}

@media screen and (max-width: 1280px) {
    .mb100 {
        margin-bottom: 80px !important;
    }
    .mb80 {
        margin-bottom: 60px !important;
    }
    .pd100 {
        padding: 80px 0 !important;
    }
    .pd80 {
        padding: 60px 0 !important;
    }
    .pa100 {
        padding: 80px !important;
    }
    .pa80 {
        padding: 60px !important;
    }
    .pb100 {
        padding-bottom: 80px !important;
    }
    .pb80 {
        padding-bottom: 60px !important;
    }
    .pa60 {
        padding: 50px !important;
    }
}
@media screen and (max-width: 980px) {
    .mb100 {
        margin-bottom: 60px !important;
    }
    .mb80 {
        margin-bottom: 50px !important;
    }
    .mb60 {
        margin-bottom: 40px !important;
    }
    .mb40 {
        margin-bottom: 30px !important;
    }
    .mb30 {
        margin-bottom: 20px !important;
    }
    .mb20 {
        margin-bottom: 10px !important;
    }
    .pd100 {
        padding: 60px 0 !important;
    }
    .pd80 {
        padding: 50px 0 !important;
    }
    .pd60 {
        padding: 40px 0 !important;
    }
    .pd40 {
        padding: 30px 0 !important;
    }
    .pd30 {
        padding: 20px 0 !important;
    }
    .pd20 {
        padding: 10px 0 !important;
    }
    .pa100 {
        padding: 60px !important;
    }
    .pa80 {
        padding: 50px !important;
    }
    .pa60 {
        padding: 40px !important;
    }
    .pa40 {
        padding: 30px !important;
    }
    .pa30 {
        padding: 20px !important;
    }
    .pa20 {
        padding: 10px !important;
    }
    .pb100 {
        padding-bottom: 60px !important;
    }
    .pb80 {
        padding-bottom: 50px !important;
    }
    .pb60 {
        padding-bottom: 40px !important;
    }
    .pb40 {
        padding-bottom: 30px !important;
    }
    .pb30 {
        padding-bottom: 20px !important;
    }
    .pb20 {
        padding-bottom: 10px !important;
    }
}
@media screen and (max-width: 680px) {
    .mb100 {
        margin-bottom: 40px !important;
    }
    .mb80 {
        margin-bottom: 30px !important;
    }
    .mb60 {
        margin-bottom: 20px !important;
    }
    .mb40 {
        margin-bottom: 20px !important;
    }
    .mb10 {
        margin-bottom: 5px !important;
    }
    .pd100 {
        padding: 40px 0 !important;
    }
    .pd80 {
        padding: 30px 0 !important;
    }
    .pd60 {
        padding: 20px 0 !important;
    }
    .pd40 {
        padding: 20px 0 !important;
    }
    .pa100 {
        padding: 40px !important;
    }
    .pa80 {
        padding: 30px !important;
    }
    .pa60 {
        padding: 20px !important;
    }
    .pa40 {
        padding: 20px !important;
    }
    .pb100 {
        padding-bottom: 40px !important;
    }
    .pb80 {
        padding-bottom: 30px !important;
    }
    .pb60 {
        padding-bottom: 20px !important;
    }
    .pb40 {
        padding-bottom: 20px !important;
    }
    .pb10 {
        padding-bottom: 5px !important;
    }
}

.wysiwyg-content h2 {margin-top: 2em; margin-bottom: 1em; text-align: center; font-size: 2em; color: #135aa5;}
.wysiwyg-content h3 {margin-top: 2em; margin-bottom: 1em; font-size: 1.5em; color: #135aa5;}
.wysiwyg-content h4 {margin-top: 2em; margin-bottom: 1em; font-size: 1.25em;}
.wysiwyg-content strong {background: #FFA; font-weight: bold;}
.wysiwyg-content i {color: #16843d; font-style: normal;}
.wysiwyg-content a {color: #135aa5; text-decoration: underline;}
.wysiwyg-content blockquote {margin-right: 0; margin-left: 0; padding: 1.5em; background: #EEE;}
.wysiwyg-content table {border-collapse: collapse;}
.wysiwyg-content th,
.wysiwyg-content td {padding: 1em 2em; border: 1px solid #AAA;}
.wysiwyg-content th {text-align: center; font-weight: bold; background: #EEE;}
.wysiwyg-content td {text-align: left;}
.wysiwyg-content figure {margin: 0;}

.wysiwyg-content h2:first-child,
.wysiwyg-content h3:first-child,
.wysiwyg-content h4:first-child,
.wysiwyg-content h2 + h3,
.wysiwyg-content h2 + h4,
.wysiwyg-content h3 + h3 {margin-top: 0;}