@charset "UTF-8";

/*------------------------------------------------------------
  reset
------------------------------------------------------------*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
html {
    font-size: 62.5%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
small,
address,
strong {
    font: inherit;
}
body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
main {
    display: block;
}
ul,
ol {
    list-style: none;
}
a {
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
input,
button,
select,
textarea {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font: inherit;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: inherit;
}
textarea {
    overflow: auto;
    resize: none;
}
::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.en__font {
    font-family: 'Poppins', sans-serif;
}
/*------------------------------------------------------------
  body
------------------------------------------------------------*/
body {
    position: relative;
    left: 0;
    background: #fff;
    color: #3e3a39;
    font: normal normal normal 1.4em/1.75 'Noto Sans JP', sans-serif;
    -webkit-transition: left .6s;
    -o-transition: left .6s;
    transition: left .6s;
    letter-spacing: .08em;
}
body.is-on {
    visibility: visible;
}
body.is-drawer-open {
    left: -25rem
}

@media screen and (min-width: 375px) {
    body.is-drawer-open {
        left: -28.5rem
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    body {
        font-size: 1.6rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  material-icons
------------------------------------------------------------*/
.material-icons {
    font-size: inherit;
}

/*------------------------------------------------------------
  icon-font
------------------------------------------------------------*/
@font-face {
    font-family: 'icomoon';
    src:  url('fonts/icomoon.eot?yby64n');
    src:  url('fonts/icomoon.eot?yby64n#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?yby64n') format('truetype'),
    url('fonts/icomoon.woff?yby64n') format('woff'),
    url('fonts/icomoon.svg?yby64n#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-facebook::before {
    content: "\e900";
    color: #fff;
}
.icon-twitter::before {
    content: "\e901";
    color: #fff;
}
.icon-danger:before {
    content: "\e902";
    color: #4b4b4b;
}
.icon-line:before {
  content: "\e903";
  color: #fff;
}
/*------------------------------------------------------------
  header
------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    padding-left: 2rem;
    background: #fff;
    -webkit-transition: left .6s;
    -o-transition: left .6s;
    transition: left .6s;
}
.is-drawer-open .header {
    left: -25rem;
}
.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__logo {
    margin-right: auto;
}

@media screen and (min-width: 375px) {
    .is-drawer-open .header {
        left: -28.5rem
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .header {
        padding: 0 6rem;
    }
    .header__content {
        width: 100%;
        margin: 0 auto;
        padding: 1.2rem 0 1.5rem;
        background: #fff;
        max-width: 1200px;
    }
    .header__button,
    .header__search {
        margin-left: 3rem;
    }
    .header__menu {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        padding: 0 calc(50vw - 50%);
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .header {
        padding: 0 9rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .header {
        padding: 0 12rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-logo
------------------------------------------------------------*/
.header-logo {
    width: 26rem;
}

@media screen and (min-width: 1200px) {
    .header-logo {
        width: 41rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-drawer-button
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
    .header-drawer-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 6rem;
        height: 6rem;
    }
    .header-drawer-button__line {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 1.8rem;
        height: 1.8rem;
    }
    .header-drawer-button__line-item {
        width: 100%;
        height: 1px;
        background: #fff;
        -webkit-transition: opacity .6s, -webkit-transform .6s;
        transition: opacity .6s, -webkit-transform .6s;
        -o-transition: opacity .6s, transform .6s;
        transition: opacity .6s, transform .6s;
        transition: opacity .6s, transform .6s, -webkit-transform .6s;
    }
    body.is-drawer-open .header-drawer-button__line-item:nth-child(1) {
        -webkit-transform: translate3d(0, .9rem, 0) rotate(45deg);
        transform: translate3d(0, .9rem, 0) rotate(45deg);
    }
    body.is-drawer-open .header-drawer-button__line-item:nth-child(2) {
        opacity: 0;
    }
    body.is-drawer-open .header-drawer-button__line-item:nth-child(3) {
        -webkit-transform: translate3d(0, -.8rem, 0) rotate(-45deg);
        transform: translate3d(0, -.8rem, 0) rotate(-45deg);
    }
    .header-drawer-button__text {
        margin: 1em 0 -.5em;
        font-size: 1rem;
        line-height: 1;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-drawer-menu
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
    .header-drawer-menu {
        position: fixed;
        top: 0;
        right: -28.5rem;
        width: 28.5rem;
        height: 100vh;
        padding: 3rem 2rem 10rem 2rem;
        overflow-y: scroll;
        -webkit-transition: right .6s;
        -o-transition: right .6s;
        transition: right .6s;
    }
    body.is-drawer-open .header-drawer-menu {
        right: 0;
    }
    .header-drawer-menu__nav {
        margin-right: -2rem;
    }
    .header-drawer-menu__search+.header-drawer-menu__nav {
        margin-top: 2rem;
    }
    .header-drawer-menu__nav+.header-drawer-menu__button {
        margin-top: 4rem;
    }
}
/* ----- media END ----- */

@media screen and (max-width: 374px) {
    .header-drawer-menu {
        right: -25rem;
        width: 25rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-search
------------------------------------------------------------*/
.header-search {
    position: relative;
}
.header-search__input {
    width: 100%;
    height: 100%;
    padding: .75em 6.5rem .75em 1.5rem;
    background: #fff;
    color: #000;
    font-size: 1.6rem;
}
.header-search__submit,
.header-search__icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 100%;
    cursor: pointer;
}
.header-search__submit {
    background: currentColor
}
.header-search__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    pointer-events: none;
}

@media screen and (min-width: 960px) {
    .header-search {
        width: 100%;
        max-width: 26rem;
        border: 1px solid currentColor;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-nav
------------------------------------------------------------*/
.header-nav__item {
    position: relative;
    -webkit-transition: background-color .6s, color .6s;
    -o-transition: background-color .6s, color .6s;
    transition: background-color .6s, color .6s;
}
.header-nav__link {
    padding: 1.2em 0;
    border-bottom: 1px solid #0ac0b1;
    font-weight: normal;
}
@media screen and (min-width: 960px) {
    .header-drawer-menu__nav {
        max-width: 1200px;
        margin: 0 auto;
    }
    .header-nav {
        z-index: auto !important;
    }
    .header-nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
    }
    .header-nav__list>.header-nav__item {
        position: relative;
    }
    .header-nav__list>.header-nav__item:hover {
        background-color: #0ac0b1;
    }
    .header-nav__list>.header-nav__item::before,
    .header-nav__list>.header-nav__item:last-child::after {
        content: "";
        display: inline-block;
        background-color: #0ac0b1;
        width: 1px;
        height: calc(100% - 26px);
        position: absolute;
        top: 13px;
        left: 0;
    }
    .header-nav__list>.header-nav__item:last-child::after {
        left: auto;
        right: 0;
    }
    .header-nav__list .header-nav__list {
        display: none;
    }
    .header-nav__item {
        position: static;
        width: 100%;
    }
    .header-nav__link {
        border-bottom: none !important;
        font-size: 1.4rem;
        text-align: center;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .header-nav__link {
        font-size: 1.6rem;
        padding: 1.47em 0;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-nav-child
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
    .header-nav-child {
        display: none;
        padding-left: 2rem;
        border-bottom: 1px solid #0BC1B1;
        background: none !important;
        color: currentColor !important;
    }
    .header-nav-child__link {
        border-bottom: 1px dotted #0BC1B1;
    }
    .header-nav-child__item:last-child .header-nav__link {
        border-bottom: none;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .header-nav-child {
        display: none;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: -1;
        -webkit-transform: translate3d(-50%, -100%, 0);
        transform: translate3d(-50%, -100%, 0);
        width: 100vw;
        padding: 3rem 6rem 6rem 3rem;
        -webkit-transition: -webkit-transform .6s;
        transition: -webkit-transform .6s;
        -o-transition: transform .6s;
        transition: transform .6s;
        transition: transform .6s, -webkit-transform .6s;
    }
    body.is-on .header-nav-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .ua-pc .header-nav__item:hover .header-nav-child {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    .header-nav-child__item {
        width: 33.333%;
        padding: 3rem 0 0 3rem;
        background: none !important;
    }
    .header-nav-child__link {
        padding-left: 3rem;
        border-left: 3px solid currentColor;
        background: #fff;
        text-align: left;
        -webkit-transition: border-color .6s, color .6s;
        -o-transition: border-color .6s, color .6s;
        transition: border-color .6s, color .6s;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .header-nav-child {
        padding: 3rem 9rem 6rem 6rem;
    }
    .header-nav-child__item {
        width: 25%;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .header-nav-child {
        padding: 3rem 12rem 6rem 9rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-accordion
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
    .header-accordion {
        position: absolute;
        top: 0;
        right: 0;
        width: calc(1em * 1.7 + 2.4em);
        height: calc(1em * 1.7 + 2.4em);
    }
    .header-accordion::before,
    .header-accordion::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1.5rem;
        height: 1px;
        background: currentColor;
        -webkit-transition: opacity .6s, -webkit-transform .6s;
        transition: opacity .6s, -webkit-transform .6s;
        -o-transition: opacity .6s, transform .6s;
        transition: opacity .6s, transform .6s;
        transition: opacity .6s, transform .6s, -webkit-transform .6s;
    }
    .header-accordion::before {
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .header-accordion.is-on::before {
        opacity: 0;
    }
    .header-accordion::after {
        -webkit-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(90deg);
    }
    .header-accordion.is-on::after {
        -webkit-transform: translateX(-50%) rotate(0);
        -ms-transform: translateX(-50%) rotate(0);
        transform: translateX(-50%) rotate(0);
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  header-button
------------------------------------------------------------*/
.header-button__item+.header-button__item {
    margin-top: 2rem;
}
.header-button .primary-button {
    font-size: 1.5rem;
}
.header-button .primary-button+.primary-button {
    margin-top: 20px;
}
.header-button__item.-tel .primary-button {
    border: 1px solid currentColor;
}
.ua-pc .header-button__item.-tel .primary-button {
    pointer-events: none;
}
.header-button .primary-button__icon.-tel {
    right: auto;
    left: calc(50% - 3.5em);
    font-size: 2.6rem;
}
.header-button__text {
    margin-top: 1em;
    font-size: 1.2rem;
    text-align: center;
}
@media screen and (max-width: 959px) {
    .header-button {
        display: none;
    }
}
@media screen and (min-width: 960px) {
    .header-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        white-space: nowrap;
        margin-top: 10px;
    }
    .header-button__item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .header-button__item+.header-button__item {
        margin: 0 0 0 3rem;
    }
    .header-button__item.-tel {
        padding-left: 4rem;
        line-height: 1;
    }
    .header-button__item.-tel .primary-button {
        position: static;
        padding: 0;
        border: none;
        color: currentColor;
        font-size: 3rem;
        line-height: 1;
    }
    .header-button .primary-button__icon.-tel {
        left: 0;
        font-size: 4rem;
    }
    .header-button .primary-button {
        width: 200px;
        padding: .6em 4rem;
    }
    .header-button .primary-button+.primary-button {
        margin-top: 0;
        margin-left: 20px;
    }
    .header-button .primary-button .primary-button__icon {
        font-size: 1em;
    }
    .header-button__text {
        margin-top: .5em;
        color: #000;
        font-size: 1rem;
    }
    .header-nav2>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .header-nav2>ul>li {
        position: relative;
    }
    .header-nav2>ul>li .header-nav2__icon {
        position: absolute;
        top: 8px;
        left: -15px;
        font-size: 1rem;
        color: #00a799;
    }
    .header-nav2>ul>li+li {
        margin-left: 50px;
    }
    .header-nav2__link {
        font-size: 1.4rem;
        color: #3e3a39;
        -webkit-transition: color .6s;
        -o-transition: color .6s;
        transition: color .6s;
    }
    .header-nav2__item:hover {
        background-color: transparent !important;
    }
    .header-nav2__link:hover {
        color: #00a799;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .header-button .primary-button {
        min-width: 23rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  footer-inner
------------------------------------------------------------*/
.footer {
    padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
    .footer {
        position: relative;
    }
}
@media screen and (min-width: 1200px) {
    .footer {
        padding-bottom: 80px;
    }
}
/* ----- media END ----- */
/*------------------------------------------------------------
  footer-inner
------------------------------------------------------------*/
.footer-inner {
    padding: 0 2rem;
}

@media screen and (min-width: 560px) {
    .footer-inner {
        padding: 0 3rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .footer-inner {
        padding: 0 6rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .footer-inner {
        padding: 0 9rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .footer-inner {
        padding: 0 12rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  footer__main
------------------------------------------------------------*/
@media screen and (min-width: 960px) {
    .footer__main {
        max-width: 1200px;
        margin: 0 auto;
    }
}
/*------------------------------------------------------------
  footer-main
------------------------------------------------------------*/
.footer-main {
    padding: 4rem 0 2.8rem;
}

@media screen and (min-width: 960px) {
    .footer-main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-main__info {
        margin-top: 2.5rem;
    }
    .footer-main__nav {
        margin-left: 6rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .footer-main {
        padding: 9rem 0 4rem;
    }
}
/* ----- media END ----- */
/*------------------------------------------------------------
  footer-logo
------------------------------------------------------------*/
.footer-logo {
    width: 28.5rem;
    margin-bottom: 15px;
}

@media screen and (min-width: 960px) {
    .footer-logo {
        width: 23rem;
        margin-left: 0;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .footer-logo {
        width: 30rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1400px) {
    .footer-logo {
        width: 41rem;
    }
}
/* ----- media END ----- */
/*------------------------------------------------------------
  footer-info
------------------------------------------------------------*/
.footer-info__text.company__name {
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: -5px;
}
.footer-info__text>span {
    display: block;
}
@media screen and (min-width: 960px) {
    .footer-info__text.company__name {
        font-size: 1.8rem;
    }
    .footer-info__text+.footer-info__text {
        margin-top: .5em;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  footer-nav
------------------------------------------------------------*/
@media screen and (min-width: 960px) {
    .footer-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-nav__item+.footer-nav__item {
        margin-left: 3rem;
    }
    .footer-nav__list .footer-nav__list {
        padding-left: 1rem;
    }
    .footer-nav__list-link {
        padding: .4em 0;
        white-space: nowrap;
        -webkit-transition: color .6s;
        -o-transition: color .6s;
        transition: color .6s;
    }
    .footer-nav__list-link:hover {
        color: #53e4d8;
    }
    .footer-nav__list .footer-nav__list .footer-nav__list-link {
        position: relative;
        padding: .3em 0 .3em 1.2em;
        font-size: 1.4rem;
    }
    .footer-nav__list-icon {
        position: absolute;
        top: 1.3em;
        left: 0;
        font-size: 1rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .footer-nav__item+.footer-nav__item {
        margin-left: 6rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  footer-pagetop
------------------------------------------------------------*/
.footer-pagetop {
    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;
    line-height: 1;
    width: 100%;
    background-color: #19665f;
    height: 45px;
}
.footer-pagetop .footer-pagetop__icon {
    font-size: 2.3rem;
}

@media screen and (min-width: 960px) {
    .footer-pagetop {
        width: 65px;
        height: 65px;
        position: fixed;
        right: 40px;
        bottom: 40px;
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: .6s !important;
        -o-transition: .6s !important;
        transition: .6s !important;
    }
    .footer-pagetop:hover {
        background-color: #2e7d76;
        opacity: 1 !important;
    }
    .footer-pagetop.scroll__active {
        opacity: 1;
        pointer-events: all;
    }
    .footer-pagetop.scroll__end {
        position: absolute;
    }
    .footer-pagetop .footer-pagetop__icon {
        font-size: 2.4rem;
    }

}
/* ----- media END ----- */

/*------------------------------------------------------------
  footer-sns
------------------------------------------------------------*/
.footer-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}
.footer-sns>a+a {
    margin-left: 20px;
}
.footer-sns__icons {
    font-size: 2.3rem;
}
.footer-sns__icons.icon-twitter {
    font-size: 1.9rem;
}
@media screen and (min-width: 768px) {
    .footer-sns>a .footer-sns__icons::before {
        -webkit-transition: color .6s;
        -o-transition: color .6s;
        transition: color .6s;
    }
    .footer-sns>a:hover .footer-sns__icons::before {
        color: #53e4d8;
    }
}
/*------------------------------------------------------------
  footer-copyright
------------------------------------------------------------*/
.footer-copyright__text {
    display: block;
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
}
@media screen and (min-width: 960px) {
    .footer-copyright__text {
        text-align: left;
        font-size: 1.4rem;
    }
}
/*------------------------------------------------------------
  fixed__footer
------------------------------------------------------------*/
.fixed__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s;
    opacity: 0;
    pointer-events: none;
}
.fixed__footer.scroll__active {
    opacity: 1;
    pointer-events: all;
}
.fixed__footer.scroll__end {
    opacity: 0;
    pointer-events: none;
}
.fixed__footer .primary-button {
    font-size: 1.5rem;
    padding: .594em 3rem;
}
.fixed__footer .primary-button .primary-button__icon {
    font-size: 1.5rem;
    right: 10px;
}
@media screen and (min-width: 768px) {
    .fixed__footer {
        display: none;
    }
}
/*------------------------------------------------------------
  response-device
------------------------------------------------------------*/
.response-device .grid,
.response-device [class^="grid__item-"],
.response-device [class*=" grid__item-"] {
    margin: 0;
    padding: 0;
}
.response-device__link {
    padding: 60px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.response-device__img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.response-mailmagazine {
    background-image: url('../image/response/img-response-1-sp.jpg');
}
.response-contact {
    background-image: url('../image/response/img-response-2-sp.jpg');
}
.response-media {
    background-image: url('../image/response/img-response-3-sp.jpg');
}
.response__ttl {
    font-size: 2.6rem;
    color: #fff;
    text-align: center;
    font-weight: 500;
    margin: -12px 0 5px;
}
.response-device__txt {
    color: #fff;
    margin-bottom: 15px;
}
.response-device__link .primary-button {
    padding: .79em 4rem;
    font-size: 1.4rem;
    max-width: 265px;
    margin: 0 auto;
}
.response-device__link .primary-button .primary-button__icon {
    font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
    .response-device__link:hover .primary-button {
        background-color: #fff;
        color: #00a799;
    }
    .response-device__link:hover .primary-button__icon {
        color: #00a799;
    }
    .response-device__img {
        -webkit-transition: -webkit-transform .6s;
        transition: -webkit-transform .6s;
        -o-transition: transform .6s;
        transition: transform .6s;
        transition: transform .6s, -webkit-transform .6s;
    }
    .response-device__link:hover .response-device__img {
        -webkit-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }
}
@media screen and (min-width: 768px) and (max-width: 956px) {
    .response-device__link {
        padding: 90px 30px;
    }
}
@media screen and (min-width: 960px) {
    .response-device>.grid>.grid__item-4 {
        position: relative;
    }
    .response-device>.grid>.grid__item-4 + .grid__item-4::before {
        content: "";
        display: inline-block;
        background-color: #fff;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}
@media screen and (min-width: 1200px) {
    .response-mailmagazine {
        background-image: url('../image/response/img-response-1-pc.jpg');
    }
    .response-contact {
        background-image: url('../image/response/img-response-2-pc.jpg');
    }
    .response-media {
        background-image: url('../image/response/img-response-3-pc.jpg');
    }
}
@media screen and (min-width: 1400px) {
    .response-device__link {
        padding: 95px 30px;
    }
    .response__ttl {
        font-size: 3.4rem;
    }
    .response-device__txt {
        margin-bottom: 35px;
    }
}
/*------------------------------------------------------------
  breadcrumb
------------------------------------------------------------*/
.breadcrumb {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 1em 2rem;
}
.breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
}
.breadcrumb__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin: 0 1rem;
}
.breadcrumb__link {
    font-size: 1.2rem;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.breadcrumb__item:last-child .breadcrumb__link {
    color: #3e3a39;
    pointer-events: none;
    white-space: nowrap;
}

@media screen and (max-width: 374px) {
    .breadcrumb__item .breadcrumb__link {
        max-width: 6.5em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media screen and (min-width: 560px) {
    .breadcrumb {
        padding: 1em 3rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .breadcrumb {
        padding: 1em 6rem;
    }
    .breadcrumb__link {
        font-size: 1.4rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .breadcrumb {
        padding: 1em 9rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .breadcrumb {
        padding: 1em 12rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  article
------------------------------------------------------------*/
.article {
    opacity: 0;
    padding: 0 2rem;
}
body.is-on .article {
    opacity: 1;
    -webkit-transition: opacity .3s .3s ease;
    -o-transition: opacity .3s .3s ease;
    transition: opacity .3s .3s ease;
}
.article__mainvisual {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
}
.article__content {
    padding: 6rem 0;
}
.article__main {
    width: 100%;
}
.article__sidebar {
    margin-top: 6rem;
}
.article__item {
    padding: 6rem 0;
}
.article__item:first-child {
    padding-top: 0;
}
.article__item:last-child {
    padding-bottom: 0;
}
.article__item.-background {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 6rem calc(50vw - 50%);
}
.article__item.-background:first-child {
    margin-top: -6rem;
}
.article__item.-background:last-child {
    margin-bottom: -6rem;
}
.article__item:not(.-background)+.article__item:not(.-background) {
    margin-top: -6rem
}

@media screen and (min-width: 560px) {
    .article {
        max-width: 56rem;
        margin: 0 auto;
        padding: 0 3rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .article {
        max-width: 103rem;
        padding: 0 6rem;
    }
    .article__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .article.-sidebar {
        max-width: 154rem;
    }
    .article__content {
        padding: 9rem 0;
    }
    .article__sidebar {
        width: 30rem;
        min-width: 30rem;
        margin: 0 0 0 9rem;
    }
    .article__item {
        padding: 9rem 0;
    }
    .article__item.-background {
        padding: 9rem calc(50vw - 50%);
    }
    .article__item.-background:first-child,
    .article__item:not(.-background)+.article__item:not(.-background) {
        margin-top: -9rem;
    }
    .article__item.-background:last-child {
        margin-bottom: -9rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .article {
        max-width: 109rem;
        padding: 0 9rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .article {
        max-width: 115rem;
        padding: 0 12rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  hero
------------------------------------------------------------*/
.hero {
    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;
    position: relative;
    width: 100vw;
    height: 125.3333vw !important;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    overflow: hidden;
}
.hero.-medium {
    height: 70vh !important;
}
.hero.-small {
    height: 50vh !important;
}
.hero__catch-text {
    font-weight: bold;
    color: #fff;
}
.hero__catch-text.-large {
    font-size: 3.5rem;
    line-height: 1.5;
}
.hero__catch-text.-large span {
    color: transparent;
    background-color: #fff;
}
.hero__catch-text.-medium {
    margin-top: 1em;
    font-size: 1.5rem;
}
.hero__catch-text.-small {
    margin-top: 1em;
}
.hero__image,
.hero__movie {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.hero__image-slider {
    height: 100%;
}
.hero__image-item {
    height: 100%;
    background: center / cover;
}

@media screen and (min-width: 960px) {
    .hero {
        height: 37.5vw !important;
        padding: 0 60px;
    }
    .hero__movie {
        background: none !important;
    }
    .hero__catch-text.-large {
        font-size: 6rem;
    }
    .hero__catch-text.-medium {
        font-size: 3rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  mainvisual
------------------------------------------------------------*/
.mainvisual {
    padding: 3.55rem 0;
    font-weight: 500;
    font-size: 2.8rem;
    text-align: center;
}

@media screen and (min-width: 960px) {
    .mainvisual {
        padding: 5.85rem 0;
        font-size: 3.6rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  grid
------------------------------------------------------------*/
.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -3rem 0 0 -3rem;
}
[class^="grid__item-"],
[class*=" grid__item-"] {
    width: 100%;
    padding: 3rem 0 0 3rem;
}

@media screen and (min-width: 960px) {
    .grid {
        margin: -4rem 0 0 -4rem;
    }
    [class^="grid__item-"],
    [class*=" grid__item-"] {
        padding: 4rem 0 0 4rem;
    }
    .grid__item-12 {
        width: 100%;
    }
    .grid__item-11 {
        width: 91.666%;
    }
    .grid__item-10 {
        width: 83.333%;
    }
    .grid__item-9 {
        width: 75%;
    }
    .grid__item-8 {
        width: 66.666%;
    }
    .grid__item-7 {
        width: 58.333%;
    }
    .grid__item-6 {
        width: 50%;
    }
    .grid__item-5 {
        width: 41.666%;
    }
    .grid__item-4 {
        width: 33.333%;
    }
    .grid__item-3 {
        width: 25%;
    }
    .grid__item-2 {
        width: 16.666%;
    }
    .grid__item-1 {
        width: 8.333%;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  unit
------------------------------------------------------------*/
.unit__item {
    width: 100%;
}
.unit__item+.unit__item {
    margin-top: 3rem;
}

@media screen and (min-width: 960px) {
    .unit__item:only-child {
        height: 100%;
    }
    .unit__item+.unit__item {
        margin-top: 4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  primary-title
------------------------------------------------------------*/
.primary-title {
    margin-bottom: -.3em;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.5;
    text-align: center;
}
.-background .primary-title {
    color: #fff !important;
}
.primary-title__sub {
    display: block;
    font-size: 70%;
}

@media screen and (min-width: 960px) {
    .primary-title {
        margin-bottom: 0;
        font-size: 4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  secondary-title
------------------------------------------------------------*/
.secondary-title {
    margin-bottom: -.5em;
    padding-bottom: .4em;
    border-bottom: 2px solid currentColor;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.5;
}

@media screen and (min-width: 960px) {
    .secondary-title {
        font-size: 2.8rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  tertiary-title
------------------------------------------------------------*/
.tertiary-title {
    position: relative;
    margin-bottom: -.5em;
    padding-bottom: .4em;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.5;
}
.tertiary-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background: currentColor;
}

@media screen and (min-width: 960px) {
    .tertiary-title {
        font-size: 2.4rem;
    }
    .tertiary-title::after {
        width: 4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  quaternary-title
------------------------------------------------------------*/
.quaternary-title {
    margin-bottom: -1em;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.5;
}

@media screen and (min-width: 960px) {
    .quaternary-title {
        font-size: 2.4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  sentence
------------------------------------------------------------*/
.sentence::before,
.sentence::after {
    content: '';
    display: block;
}
.sentence::before {
    margin-top: calc(.5em * -.7);
}
.sentence::after {
    margin-bottom: calc(.5em * -.7);
}
.-background .sentence {
    color: #fff;
}
@media screen and (min-width: 960px) {
    .sentence.-center {
        text-align: center;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  link
------------------------------------------------------------*/
.link {
    display: inline;
}
.link.-blank {
    position: relative;
    padding-left: 1.1em;
}
.link__inner {
    border-bottom: 1px solid currentColor;
    -webkit-transition: border-color .6s;
    -o-transition: border-color .6s;
    transition: border-color .6s;
}
.ua-pc .link:hover .link__inner {
    border-color: transparent;
}
.link__icon {
    position: absolute;
    top: .1em;
    left: -0;
}

/*------------------------------------------------------------
  note
------------------------------------------------------------*/
.note {
    display: block;
    padding-left: 1.2em;
    color: #686E74;
    font-size: 85%;
    text-indent: -1.2em;
}
.note::before {
    content: '※ ';
}

/*------------------------------------------------------------
  emphasis
------------------------------------------------------------*/
.emphasis {
    font-weight: bold;
    font-style: normal;
}

/*------------------------------------------------------------
  marker
------------------------------------------------------------*/
.marker {
    /* background: linear-gradient(transparent 50%, #fffe8b 50%); */
    background-color: #fffe8b;
}

/*------------------------------------------------------------
  unordered-list
------------------------------------------------------------*/
.unordered-list li {
    position: relative;
    padding-left: 2.5rem;
}
.unordered-list li+li {
    margin-top: .7em;
}
.unordered-list li::before {
    content: '';
    position: absolute;
    top: .65em;
    left: 0;
    width: .6rem;
    height: .6rem;
    border-radius: 100%;
    background: currentColor;
}
.unordered-list span {
    color: #3e3a39;
}

/*------------------------------------------------------------
  ordered-list
------------------------------------------------------------*/
.ordered-list li {
    counter-increment: ol;
    position: relative;
    padding-left: 2.5rem;
}
.ordered-list li+li {
    margin-top: .7em;
}
.ordered-list li::before {
    content: counter(ol) '.';
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
}
.ordered-list span {
    color: #3e3a39;
}
/*------------------------------------------------------------
  media
------------------------------------------------------------*/
.media {
    text-align: center;
}
.media__link {
    position: relative;
}
.media__icon {
    display: none;
}
.media__link[href*=".jpg"] .media__icon,
.media__link[href*=".png"] .media__icon {
    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;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    color: #fff;
    font-size: 2rem;
}
.media__caption {
    margin-top: 1em;
}

/*------------------------------------------------------------
  table
------------------------------------------------------------*/
.table {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.table::-webkit-scrollbar {
    display: none;
}
.table table {
    overflow: hidden;
}
.table th,
.table td {
    padding: 1em 1.5rem;
}
.table th {
    text-align: left;
}
.article__item.-background .table th {
    background: #f5f5f5 !important;
}
.article__item.-background .table td {
    background: #fff;
}
.table td+td {
    border-top: 1px solid #DDE1E5;
}
.table .acms-cell-text-center {
    text-align: center;
}
.table .acms-cell-text-right {
    text-align: right;
}
.table .acms-admin-cell-text-nowrap {
    white-space: nowrap;
}
.table .acms-admin-cell-text-bold {
    font-weight: bold;
}
.table .acms-cell-text-center {
    vertical-align: middle;
}

.table .acms-cell-text-bottom {
    vertical-align: bottom;
}

@media screen and (max-width: 959px) {
    .table th,
    .table td {
        display: block;
    }
    .table .acms-table-scrollable th,
    .table .acms-table-scrollable td,
    .table.scroll-hint th,
    .table.scroll-hint td {
        display: table-cell;
        white-space: nowrap;
    }
    .table .acms-table-scrollable th+th,
    .table.scroll-hint th+th {
        border-left: 1px solid #fff;
    }
    .table .acms-table-scrollable td+td,
    .table.scroll-hint td+td {
        border-left: 1px solid #DDE1E5;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .table th,
    .table td {
        padding: 1.3em 3rem;
    }
    .table th {
        white-space: nowrap;
    }
    .table tr+tr th {
        border-top: 1px solid #cfcfcf;
    }
    .table th+th {
        border-left: 1px solid #cfcfcf;
    }
    .table tr+tr td {
        border-top: 1px solid #cfcfcf;
    }
    .table td+td {
        border-top: none;
        border-left: 1px solid #cfcfcf;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  map
------------------------------------------------------------*/
.map {
    z-index: 0;
    width: 100%;
    height: 40rem;
    pointer-events: none;
}

/*------------------------------------------------------------
  primary-button
------------------------------------------------------------*/


/*------------------------------------------------------------
  secondary-button
------------------------------------------------------------*/
.secondary-button-unit {
    margin: -1px 0 0 -1px;
    padding: 0;
}
.secondary-button {
    position: relative;
    -webkit-transform: translate(3rem, 3rem);
    -ms-transform: translate(3rem, 3rem);
    transform: translate(3rem, 3rem);
    width: calc(100% - 3rem);
    height: 100%;
    padding: 1em 6rem 1em 2rem;
    border: 1px solid currentColor;
    line-height: 1.5;
    -webkit-transition: background .6s;
    -o-transition: background .6s;
    transition: background .6s;
}
.article__item.-background .secondary-button {
    background: #fff;
}
.secondary-button__text {
    color: #000;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.ua-pc .secondary-button:hover .secondary-button__text {
    color: #fff;
}
.secondary-button__icon {
    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;
    position: absolute;
    top: 50%;
    right: 2rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    padding-top: .1em;
    border-radius: 100%;
    color: #fff;
    font-size: 2rem;
}

@media screen and (min-width: 960px) {
    .secondary-button-unit.grid__item-12 {
        width: calc(100% - 4rem);
    }
    .secondary-button-unit.grid__item-6 {
        width: calc(50% - 2rem + 1px);
    }
    .secondary-button-unit.grid__item-4 {
        width: calc(33.333% - 1.333rem + 1px);
    }
    .secondary-button-unit.grid__item-3 {
        width: calc(25% - 1rem + 1px);
    }
    .secondary-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translate(4rem, 4rem);
        -ms-transform: translate(4rem, 4rem);
        transform: translate(4rem, 4rem);
        width: 100%;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  primary-card
------------------------------------------------------------*/
.article__item:not(.-background) .primary-card__link {
    padding: 3rem;
    border: 1px solid #DDE1E5;
    -webkit-transition: border-color .6s;
    -o-transition: border-color .6s;
    transition: border-color .6s;
}
.ua-pc .article__item:not(.-background) .primary-card__link:hover {
    border-color: currentColor;
}
.article__item.-background .primary-card__link .primary-card__head {
    overflow: hidden;
}
.article__item.-background .primary-card__link .primary-card__image {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}
.primary-card__body {
    padding-top: 2rem;
}
.article__item.-background .primary-card__body {
    padding: 2rem 2.5rem;
    background: #fff;
}
.primary-card__title {
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
}
.primary-card__sentence {
    color: #000;
    font-size: 1.4rem;
}
.primary-card__title+.primary-card__sentence {
    margin-top: .3em;
}
@media screen and (min-width: 768px) {
    .ua-pc .article__item.-background .primary-card__link:hover .primary-card__image {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}
@media screen and (min-width: 960px) {
    .primary-card,
    .primary-card__link,
    .primary-card__body {
        height: 100%;
    }
    .primary-card {
        overflow: hidden;
    }
    .primary-card__body {
        padding-top: 2.5rem;
    }
    .article__item.-background .primary-card__body {
        padding: 2.5rem 3rem;
    }
    .primary-card__title {
        font-size: 2rem;
    }
    .primary-card__title+.primary-card__sentence {
        margin-top: .5em;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  secondary-card
------------------------------------------------------------*/
.secondary-card {
    padding: 3rem;
    color: #fff;
}
.secondary-card__body {
    padding-top: 2rem;
}
.secondary-card__title {
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.secondary-card__sentence {
    font-size: 1.4rem;
    color: #fff !important;
}
.secondary-card__title+.secondary-card__sentence {
    margin-top: .3em;
}

@media screen and (min-width: 960px) {
    .secondary-card,
    .secondary-card__link {
        height: 100%;
    }
    .secondary-card__body {
        padding-top: 2.5rem;
    }
    .secondary-card__title {
        font-size: 2rem;
    }
    .secondary-card__title+.secondary-card__sentence {
        margin-top: .5em;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  accordion
------------------------------------------------------------*/
.accordion {
    padding: 0 2rem;
}
.article__item.-background .accordion {
    background: #fff;
}
.accordion__head {
    position: relative;
    padding: 1.5rem 3rem 1.5rem 0;
    cursor: pointer;
}
.article__item:not(.-background) .accordion__head {
    color: #fff;
}
.accordion__head-sentence {
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.5;
}
.accordion__head-icon {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
}
.accordion__head-icon::before,
.accordion__head-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    -webkit-transition: opacity .6s, -webkit-transform .6s;
    transition: opacity .6s, -webkit-transform .6s;
    -o-transition: opacity .6s, transform .6s;
    transition: opacity .6s, transform .6s;
    transition: opacity .6s, transform .6s, -webkit-transform .6s;
}
.accordion__head-icon::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.accordion__head.is-on .accordion__head-icon::before {
    opacity: 0;
}
.accordion__head.is-on .accordion__head-icon::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.accordion__body {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid currentColor;
}
.accordion__body-sentence {
    color: #000;
}
.article__item:not(.-background) .accordion__body-sentence {
    color: #fff;
}

@media screen and (min-width: 960px) {
    .accordion {
        padding: 0 3rem;
    }
    .accordion__head {
        padding: 2.5rem 4rem 2.5rem 0;
    }
    .accordion__head-sentence {
        font-size: 2rem;
    }
    .accordion__body {
        padding: 2.5rem 0;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  archive-list
------------------------------------------------------------*/
.archive-list__link {
    position: relative;
    padding: 2rem 0;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.archive-list__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}
.archive-list__category {
    padding: .5em 2rem;
    color: #000;
    font-size: 1.2rem;
}
.archive-list__info+.archive-list__title {
    margin-top: 1em;
}
.archive-list__line,
.archive-list__line-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}
.article__item.-background .archive-list__line {
    background: #fff !important;
}
.archive-list__line-inner {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}
.ua-pc .archive-list__link:hover .archive-list__line-inner {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

@media screen and (min-width: 960px) {
    .archive-list__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 3rem 0;
    }
    .archive-list__info {
        -webkit-transform: translateY(.15em);
        -ms-transform: translateY(.15em);
        transform: translateY(.15em);
        white-space: nowrap;
    }
    .archive-list__category {
        margin-left: 6rem;
    }
    .archive-list__info+.archive-list__title {
        margin: 0 0 0 6rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  archive-thumbnail
------------------------------------------------------------*/
.archive-thumbnail {
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.archive-thumbnail__body {
    padding: 2rem;
}
.article__item.-background .archive-thumbnail__body {
    background: #fff !important;
}
.archive-thumbnail__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}
.archive-thumbnail__category {
    padding: .5em 2rem;
    color: #fff;
    font-size: 1.2rem;
}
.archive-thumbnail__title {
    margin-top: .7em;
}

@media screen and (min-width: 960px) {
    .archive-thumbnail,
    .archive-thumbnail__body {
        height: 100%;
        overflow: hidden;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  archive-slider
------------------------------------------------------------*/
.archive-slider {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
.archive-slider__item {
    height: auto;
    padding: 0 4rem;
    overflow: hidden;
}
.archive-slider__link {
    height: 100%;
    -webkit-transition: background .6s;
    -o-transition: background .6s;
    transition: background .6s;
}
.article__item.-background .archive-slider__link {
    background: #fff;
}
.ua-pc .archive-slider__link:hover {
    background: currentColor;
}
.archive-slider__body {
    padding: 2rem;
}
.archive-slider__title {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.ua-pc .archive-slider__link:hover .archive-slider__title {
    color: #fff;
}
.archive-slider__sentence {
    margin-top: .5em;
    color: #000;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.ua-pc .archive-slider__link:hover .archive-slider__sentence {
    color: #fff;
}
.archive-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3rem;
    height: 8rem;
    font-size: 2.5rem;
    cursor: pointer;
}
.archive-slider__arrow.-prev {
    left: 0;
}
.archive-slider__arrow.-next {
    right: 0;
}
.archive-slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2.5rem;
}
.archive-slider__pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 .7rem !important;
    background-color: #fff;
    border: 1px solid currentColor;
}
.article__item.-background .archive-slider__pagination .swiper-pagination-bullet {
    border: none;
}
.archive-slider__pagination .swiper-pagination-bullet-active {
    background-color: currentColor;
}

@media screen and (min-width: 560px) {
    .archive-slider__item {
        padding: 0;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .archive-slider__body {
        padding: 3rem;
    }
    .archive-slider__title {
        font-size: 2rem;
    }
    .archive-slider__sentence {
        font-size: 1.4rem;
    }
    .archive-slider__arrow {
        width: 4rem;
        height: 10rem;
    }
    .archive-slider__pagination {
        margin-top: 4.5rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  category
------------------------------------------------------------*/
.category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 1.2rem;
}
.category__title {
    -webkit-transform: translateY(.6em);
    -ms-transform: translateY(.6em);
    transform: translateY(.6em);
    margin-right: 2rem;
    white-space: nowrap;
}
.category__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -1rem 0 0 -1rem;
}
.category__item {
    padding: 1rem 0 0 1rem;
}
.category__link {
    padding: .5em 2rem;
    border: 1px solid currentColor;
    -webkit-transition: color .6s, background-color .6s;
    -o-transition: color .6s, background-color .6s;
    transition: color .6s, background-color .6s;
}
.ua-pc .category__link:hover {
    background-color: currentColor;
}
.category__link.-current {
    background-color: currentColor;
    pointer-events: none;
}
.category__link-inner {
    color: #000;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.ua-pc .category__link:hover .category__link-inner,
.category__link.-current .category__link-inner {
    color: #fff;
}

@media screen and (min-width: 960px) {
    .category {
        font-size: 1.4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  pager
------------------------------------------------------------*/
.pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pager__button,
.pager__button-link {
    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;
    width: 12rem;
    min-width: 12rem;
    height: 5rem;
    color: #00a799;
}
.pager__button-link {
    border: 1px solid transparent;
    -webkit-transition: border-color .6s, background-color .6s, color .6s;
    -o-transition: border-color .6s, background-color .6s, color .6s;
    transition: border-color .6s, background-color .6s, color .6s;
}
.ua-pc .pager__button-link:hover {
    border: 1px solid currentColor;
    background-color: #fff !important;
}
.pager__button-icon {
    font-size: 2rem;
}
.pager__button-icon.-prev {
    margin: 0 2rem 0 -3rem;
}
.pager__button-icon.-next {
    margin: 0 -3rem 0 2rem;
}
.pager__num {
    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;
    width: 10rem;
    letter-spacing: -.1em;
}

/*------------------------------------------------------------
  entry-head
------------------------------------------------------------*/
.entry-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
}
.entry-head__date {
    font-weight: bold;
}
.entry-head__category {
    margin-top: 1rem;
    padding: .5em 2rem;
    font-size: 1.2rem;
}
.entry-head__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.entry-head__sns-item {
    width: 3rem;
}
.entry-head__sns-item+.entry-head__sns-item {
    margin-left: 1rem;
}

@media screen and (min-width: 960px) {
    .entry-head__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .entry-head__category {
        margin: 0 0 0 3rem;
    }
    .entry-head__sns-item {
        width: 4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  sidebar
------------------------------------------------------------*/
.sidebar__item+.sidebar__item {
    margin-top: 3rem;
}
.sidebar__head {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.5;
}
.sidebar__head+.sidebar__body {
    margin-top: 1rem;
}
.sidebar__list-link {
    position: relative;
    padding: 1em 0 1em 2.5rem;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.sidebar__list-icon {
    position: absolute;
    left: 0;
}
.sidebar__list-icon.-arrow {
    font-size: 2rem;
    top: .8em;
}
.sidebar__list-icon.-calendar {
    top: 1.35em;
}
.sidebar__list-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
}

@media screen and (min-width: 960px) {
    .sidebar__list-link {
        font-size: 1.4rem;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  youtube
------------------------------------------------------------*/
.youtube {
    width: 100%;
    height: calc(89.333vw * .5625);
}

@media screen and (min-width: 560px) {
    .youtube {
        height: 28.125rem;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .youtube {
        height: 51.188rem;
    }
}
/* ----- media END ----- */


/*------------------------------------------------------------
  form
------------------------------------------------------------*/
.form__term {
    position: relative;
    padding-left: 4rem;
}
.form__batch {
    position: absolute;
    top: .2em;
    left: 0;
    width: 3rem;
    height: 2rem;
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
}
.form__batch.-must {
    background: #b92424;
}
.form__batch.-any {
    background: #959f9e;
}
.form__batch.-must+.form__batch.-any {
    display: none;
}
.form__table input,
.form__table select,
.form__table textarea {
    display: block;
    width: 100%;
    padding: .5em 1rem;
    color: #000;
    font-size: 1.6rem;
    border: 1px solid #cfcfcf;
    -webkit-transition: border .6s;
    -o-transition: border .6s;
    transition: border .6s;
}
.form__table input:focus,
.form__table select:focus,
.form__table textarea:focus {
    border-color: #00a799;
}
.form__table select {
    cursor: pointer;
}
.form__select {
    position: relative;
}
.form__select-arrow {
    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;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4rem;
    height: 60%;
    padding: .1em .1em 0 0;
    border-left: 1px solid currentColor;
    font-size: 2.5rem;
    pointer-events: none;
}
.form__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -1.5rem 0 0 -1.5rem;
}
.form__list-item {
    width: 50%;
    padding: 1.5rem 0 0 1.5rem;
}
.form__option input {
    display: none;
}
.form__option label {
    display: block;
    position: relative;
    padding-left: 4rem;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.form__option-icon {
    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;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
}
.form__option input:checked+label {
    background: none;
}
.form__option input:checked+label .form__option-icon {
    background: currentColor;
}
.form__option input:checked+label .form__option-icon-inner {
    opacity: 1;
}
.form__option.-radio .form__option-icon {
    border-radius: 100%;
}
.form__option.-radio .form__option-icon-inner {
    content: "";
    opacity: 0;
    border-radius: 100%;
    width: 1rem;
    height: 1rem;
    background: #fff;
}
.form__option.-check .form__option-icon-inner {
    opacity: 0;
    color: #fff;
    font-size: 2rem;
}
.form__button {
    margin-top: 3rem;
}
.form__button>* {
    width: 100%;
    text-align: center;
}
.form__button>*+* {
    margin-top: 2rem;
}
.form__error-text {
    display: none;
    margin-top: 1em;
    color: #b23333;
}
.form__error .form__error-text {
    display: block;
}
.form__error-text2 {
    margin-top: 1em;
    color: #b23333;
}

@media screen and (min-width: 960px) {
    .form__batch {
        top: .4em;
    }
    .form__button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 4rem;
    }
    .form__button>*+* {
        margin: 0 3rem 0 0;
    }
    .form__error-text,
    .form__error-text2 {
        font-size: 1.4rem;
    }
}
/* ----- media END ----- */


/*------------------------------------------------------------
  hover
------------------------------------------------------------*/
.hover-opacity {
    -webkit-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s;
}
.ua-pc .hover-opacity:hover {
    opacity: .6;
}

/*------------------------------------------------------------
  hide
------------------------------------------------------------*/
@media screen and (max-width: 959px) {
    .hide-sp {
        display: none;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 960px) {
    .hide-pc {
        display: none;
    }
}
/* ----- media END ----- */

/*------------------------------------------------------------
  theme
------------------------------------------------------------*/
.theme-background-main {
    color: #fff;
}

/*------------------------------------------------------------
  smartphoto
------------------------------------------------------------*/
.smartphoto {
    z-index: 999999 !important;
}


/*------------------------------------------------------------
  primary-button
------------------------------------------------------------*/
.primary-button {
    position: relative;
    width: 100%;
    padding: 1.07em 4rem;
    border: 1px solid transparent;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    -webkit-transition: border-color .6s, background-color .6s, color .6s;
    -o-transition: border-color .6s, background-color .6s, color .6s;
    transition: border-color .6s, background-color .6s, color .6s;
}
.primary-button.theme-background-accent {
    background-color: #3e3a39;
}
.primary-button.theme-background-accent:hover,
.ua-pc .primary-button.theme-background-accent:hover {
    color: #fff;
}
.primary-button__icon {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.8rem;
    -webkit-transition: right .6s;
    -o-transition: right .6s;
    transition: right .6s;
}
.primary-button.-reverse.primary-reverse .primary-button__icon {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.primary-button.-reverse .primary-button__icon {
    right: auto;
    left: 1.5rem;
    -webkit-transition: left .6s;
    -o-transition: left .6s;
    transition: left .6s;
}
.btn-color__1 {
    background-color: #2a7cc0;
}
.btn-color__2 {
    background-color: #f47d1c;
}
.btn-color__3 {
    background-color: transparent;
    border-color: #fff;
}
.btn-color__4 {
    background-color: #3e3a39;
}
.btn-color__5 {
    border: 1px solid #cfcfcf;
    color: #3e3a39;
    -webkit-transition: border .6s;
    -o-transition: border .6s;
    transition: border .6s;
}
.btn-color__5 .primary-button__icon {
    color: #00a799;
}
.btn-color__6 {
    background-color: #00a799;
}

@media screen and (min-width: 560px) {
    .primary-button {
        max-width: 33.5rem;
        margin: 0 auto;
    }
}
/* ----- media END ----- */
@media screen and (min-width: 768px) {
    .primary-button:hover .primary-button__icon {
        right: 1rem;
    }
    .primary-button.-reverse:hover .primary-button__icon {
        left: 1rem;
        right: auto;
    }
    .btn-color__1:hover {
        background-color: #3088d1;
    }
    .btn-color__2:hover {
        background-color: #f98b32;
    }
    .btn-color__4:hover {
        background-color: #484443;
    }
    .btn-color__6:hover {
        background-color: #0ac0b1;
    }
}
/*------------------------------------------------------------
  スライダー
------------------------------------------------------------*/
.archive-slider__image {
    position: relative;
    overflow: hidden;
}
.archive-slider__image img {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}
.archive-slider__link:hover .archive-slider__image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}
.archive-slider__cat {
    background-color: #2a7cc0;
    color: #fff;
    font-size: 1.2rem;
    padding: 9px 8px;
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: 500;
    line-height: 1;
}
.archive-slider__time {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1;
    color: #959f9e;
    -webkit-transition: color .6s;
    -o-transition: color .6s;
    transition: color .6s;
}
.archive-slider__title {
    font-size: 1.6rem;
}
.archive-slider__blog .archive-slider__sentence {
    display: none;
}
.archive-slider__pagination {
    margin-bottom: 30px;
    bottom: auto !important;
    left: auto !important;
}
.archive-slider__pagination .swiper-pagination-bullet {
    width: 2rem;
    height: .2rem;
    background-color: #fff;
    border-radius: 0;
}
.archive-slider__pagination .swiper-pagination-bullet-active {
    background-color: #00a799;
}
.archive-slider__arrow {
    font-size: 1.6rem;
    -webkit-transition: background-color .6s;
    -o-transition: background-color .6s;
    transition: background-color .6s;
}
.archive-slider__arrow:hover {
    background-color: #19665f;
}
.archive-slider__arrow.-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
    -ms-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
}
.ua-pc .archive-slider__link:hover {
    background-color: #d9e4e4;
}
.ua-pc .archive-slider__link:hover .archive-slider__title {
    color: #00a799;
}
.ua-pc .archive-slider__link:hover .archive-slider__sentence {
    color: #3e3a39;
}
@media screen and (min-width: 960px) {
    .archive-slider__pagination {
        margin-top: 4rem;
    }
}
@media screen and (min-width: 1200px) {
    .archive-slider__blog .archive-slider__sentence {
        font-size: 1.4rem;
        display: block;
    }
    .archive-slider__time {
        font-size: 1.4rem;
    }
    .archive-slider__title {
        font-size: 1.8rem;
    }
    .archive-slider__arrow {
        font-size: 1.8rem;
    }
    .archive-slider__pagination {
        margin-bottom: 60px;
    }
}
/*------------------------------------------------------------
  バナー
------------------------------------------------------------*/
.banner {
    margin-top: 30px;
}
.banner a {
    text-align: center;
}
.banner img {
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}
@media screen and (min-width: 768px) {
    .banner img:hover {
        opacity: .8;
    }
}
@media screen and (min-width: 992px) {
    .banner {
        margin-top: 60px;
    }
}
/*------------------------------------------------------------
  ttl__1
------------------------------------------------------------*/
.ttl {
    font-weight: 500;
}
.ttl__1 {
    font-size: 2.8rem;
    margin: 0 0 25px;
    text-align: center;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ttl__1__en {
    color: #00a799;
    font-size: 1.4rem;
    display: block;
    line-height: 1;
    font-weight: normal;
    position: relative;
    margin-bottom: 5px;
}
.ttl__1__en__txt {
    display: inline-block;
    position: relative;
    padding: 0 15px;
    background-color: #fff;
}
.-background .ttl__1__en__txt {
    background-color: #ebf3f3;
}
.ttl__1__en__line {
    height: 3px;
    background-color: #00a799;
    top: 5px;
    overflow: hidden;
}
.ttl__1__en__line::before {
    content: "";
    display: inline-block;
    background-color: #fff;
    height: 1px;
    top: 1px;
}
.ttl__1__en__line,
.ttl__1__en__line::before {
    width: calc(100% + 35px);
    position: absolute;
    left: -17.5px;
}
.ttl__1+p {
    margin: -6px 0 15px;
}
@media screen and (min-width: 960px) {
    .ttl__1 {
        font-size: 3.6rem;
        margin: 0 0 35px;
    }
    .ttl__1__en {
        font-size: 1.6rem;
    }
    .ttl__1+p {
        margin: -7px 0 25px;
    }
}
/*------------------------------------------------------------
  2023/11/28追加　汎用
------------------------------------------------------------*/
.font-bold {
    font-weight: bold;
}
.font-XL {
    font-size: 1.8rem;
}
.font-L {
    font-size: 1.6rem;
}
.font-S {
    font-size: 1.2rem;
}
.color-primary {
    color: #00a799;
}
.color-secondary {
    color: #f47d1c;
}
.color-accent {
    color: #b92424;
}
.em {
    color: #00a799;
    font-size: 1.6rem;
    font-weight: bold;
}
.annotation {
    color: #aaa;
    font-size: .9em;
}
.title-main {
    background-color: #00a799;
    color: #ff0;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.7rem;
    padding: 1rem 0.5rem;
    margin-bottom: .7rem;
}
.imgBox {
    margin-bottom: 1.6rem;
    text-align: center;
}
.underline {
    text-decoration: underline;
}
.hr {
    margin-bottom: 1.6rem;
}
.p {
    margin-bottom: 1.6rem
}
.checkList>li {
    padding-top: .4rem;
    padding-left: 3.5rem;
    padding-bottom: 1rem;
    position: relative;
}
.checkList>li::before {
    content: "";
    display: inline-block;
    background-color: #19665f;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 6px;
    left: 0;
}
.checkList>li::after {
    display: block;
    content: '';
    position: absolute;
    top: 1.4rem;
    left: 0.6rem;
    width: 12px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.box-fill-primary {
    background-color: #ebf3f3;
    border: 1px solid #00a799;
    padding: .5rem 1rem;
    margin-bottom: 1.6rem;
}
.box-fill-secondary {
    background-color: #fff2cc;
    border: 1px solid #f47d1c;
    padding: .5rem 1rem;
    margin-bottom: 1.6rem;
}
.discList {
    margin-bottom: 1.6rem;
}
.discList>li {
    position: relative;
    padding-left: 1.6rem;
}
.discList>li::before {
    content: '';
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: #00a799;
    left: 0;
    top: 0.8rem;
}
.contentList_title {
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    padding: .5rem 1rem;
    border: 1px solid #00a799;
    margin-bottom: .5rem;
}
.contentList_number {
    color: #00a799;
    font-size: 2rem;
}
.contentList_number::before {
    content: "☆";
}
.contentList_number::after {
    content: "☆";
}
.contentList_imgBox {
    text-align: center;
    margin-bottom: .5rem;
}
.contentList_content {
    margin-bottom: 1.6rem
}
.contentList_subTitle {
    font-weight: bold;
    text-decoration: underline;
}
.contentList_subTitle::before {
    content: "◆";
}
.contentList_subTitle::after {
    content: "◆";
}
.movieBox {
    text-align: center;
    margin-bottom: 1.6rem;
    width: 100%;
}
.movieBox>div {
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    position: relative;
}
.movieBox iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.classicLink {
    display: inline;
}
.classicLink:link {
    color: #0000EE;
    text-decoration: underline;
}
.classicLink:visited {
    color: #551A8B;
    text-decoration: underline;
}
.classicLink:hover {}
.classicLink:active {
    color: #FF0000;
    text-decoration: underline;
}
.descriptionTable {
    display: table;
    border-collapse: collapse;
    margin-bottom: 1.6rem;
    width: 100%;
}
.descriptionTable_row {
    display: table-row;
}
.descriptionTable dt {
    display: table-cell;
    border: 1px solid #00a799;
    background-color: #ebf3f3;
    color: #00a799;
    text-align: center;
    width: 76px
}
.descriptionTable dd {
    display: table-cell;
    display: table-cell;
    border: 1px solid #00a799;
    padding: 0 0.5rem;
}
@media screen and (min-width: 1024px) {
    .descriptionTable dt {
        width: 20%;
    }
    .descriptionTable dd {
        width: 80%;
        padding: 0 0.5rem;
    }
}
.doubleRectangleList li a {
    max-width: 36.5rem;
    margin: 0 auto;
}
.doubleRectangleList li:not(li:last-of-type) {
    margin-bottom: 1.6rem;
}
@media screen and (min-width: 1024px) {
    .doubleRectangleList {
        display: flex;
        justify-content: center;
    }
    .doubleRectangleList li:not(li:last-of-type) {
        margin-bottom: 0;
        margin-right: 2rem;
    }
}
.fixed__footer .btn-advance {
    padding: .4em 3rem .4em .4em;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}