@charset "utf-8"; /*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-weight: normal;
    vertical-align: baseline;
}

body {
    line-height: 1;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table, tr, th, td, caption {
    vertical-align: middle;
    text-align: left;
}

img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    width: 100%;
}

textarea {
    vertical-align: top;
}

/*----------------------------------------------------------------------------
　Base
-----------------------------------------------------------------------------*/
html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}

body {
    color: #282831;
    font-size: 1.4rem;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
    -webkit-text-size-adjust: none;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
}

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

strong {
    font-weight: bold;
}

body, html {
    height: 100%;
}

div {
    box-sizing: border-box;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.sp_br {
    display: none;
}

.pc_br {
    display: block;
}

.sp_only {
    display: none;
}

.pc_only {
    display: block;
}

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

.wh {
    color: #fff;
}

.c01 {
    color: #0e8b93;
}

.c02 {
    color: #fcee6e;
}

.br25 {
    border-radius: 25px;
}

.br30 {
    border-radius: 30px;
}

.br50 {
    border-radius: 50px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    a:hover {
        opacity: 1;
        filter: alpha(opacity=100);
        -ms-filter: "alpha(opacity=100)";
    }

    .sp_br {
        display: block;
    }

    .pc_br {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .pc_only {
        display: none;
    }

    .br25 {
        border-radius: 12px;
    }

    .br30 {
        border-radius: 15px;
    }

    .br50 {
        border-radius: 25px;
    }
}

/*--------------------------------------
　Header
---------------------------------------*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1000px;
    padding: 2rem 2rem;
    box-sizing: border-box;
    z-index: 1;
}

header .boxInner {
    display: flex;
    justify-content: space-between;
}

header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    height: 10rem;
    margin: auto;
    display: none;
    /* 初期状態で非表示 */
}

header.scrolled::before {
    display: block;
    /* スクロール時に表示 */
}

header .sitename_wrap {
    box-sizing: border-box;
}

header .sitename {
    display: block;
    padding: 0 0 0 7rem;
    box-sizing: border-box;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.3;
    position: fixed;
}

header .sitename::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    transform: translate(0,-50%);
    background: url("img/logo_01.png") left top no-repeat;
    background-size: contain;
    width: 70px;
    height: 78px;
    box-sizing: border-box;
}

header .sitename .large {
    font-size: 3.6rem;
    font-weight: bold;
}

header .sponsored {
    display: block;
    margin: 6.3rem 0 0 71px;
    color: #777;
    font-size: 1.1rem;
}

header .btn_wrap {
    display: flex;
    justify-content: flex-end;
    margin: 0 70px 0 0;
    position: fixed;
    right: 3rem;
    top: 1.5rem;
}

header .btn_wrap .btn-web a {
    display: block;
    width: 215px;
    margin: 0 1.5rem 0 0;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    position: relative;
}

header .btn_wrap .btn-internal a {
    display: block;
    width: 215px;
    margin: 0 1.5rem 0 0;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    position: relative;
}

header .btn_wrap .btn-web a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 9px;
    background: url(img/arrow_01.png) left top no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    margin-top: -8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header .btn_wrap a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(img/arrow_02.png) left top no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    margin-top: -8px;
}

header .btn_wrap p a::after {
    /* display: none; */
}

.header_lower .sitename {
    padding: 0 0 0 0;
}

.header_lower .sitename::before {
    display: none;
}

.header_lower .sitename a {
    display: block;
    padding: 0 0 0 7rem;
    box-sizing: border-box;
    font-weight: bold;
    position: relative;
}

.header_lower .sitename a::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    transform: translate(0,-50%);
    background: url("img/logo_01.png") left top no-repeat;
    background-size: contain;
    width: 70px;
    height: 78px;
    box-sizing: border-box;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    header {
        min-width: 100%;
        padding: 0.1rem 1rem;
    }

    header::before {
        height: 5rem;
    }

    header::after {
        content: "";
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
        height: 20vw;
        margin: auto;
        bottom: 0;
        z-index: -1;
        display: none;
    }

    header.scrolled::after {
        display: block;
        /* スクロール時に表示 */
    }

    header .boxInner {
        display: block;
    }

    header .sitename {
        padding: 0 5rem 0 4rem;
        font-size: 2.5vw;
    }

    header .sitename::before {
        background: url("img/logo_01.png") left top no-repeat;
        background-size: contain;
        width: 36px;
        height: 44px;
    }

    header .sitename .large {
        font-size: 2rem;
    }

    header .sponsored {
        margin: 5px 0 0;
        font-size: 1rem;
        padding-top: 4.8rem;
    }

    header .btn_wrap {
        /* display: none; */
        display: flex;
        justify-content: center;
        margin: 0;
        position: fixed;
        right: 0;
        bottom: 5px;
        top: auto;
        width: 100%;
    }

    header .btn_wrap .btn-internal a {
        width: 45vw;
        margin: 0 5px 0 0;
        padding: 1rem 2rem;
        font-size: 3vw;
        /* display: none; */
        position: relative;
        max-width: none;
    }

    header .btn_wrap .btn-internal a::after {
        right: 5px;
        background-size: contain;
        width: 10px;
        height: 10px;
        margin-top: -3px;
    }

    header .btn_wrap .btn-web a {
        /* display:none; */
        width: 45vw;
        margin: 0 0 5px;
        /* box-shadow: none; */
        /* border-radius: 0 25px 0 0; */
        /* padding: 2rem 2rem 2rem 5rem; */
        /* text-align: left; */
        font-size: 3vw;
        position: relative;
    }

    header .btn_wrap .btn-web a::after {
        top: 53%;
        right: 5px;
        background-size: contain;
        width: 10px;
        height: 10px;
    }

    header .btn_wrap .btn-web {
        display: contents;
    }

    .header_lower .sitename {
        padding: 0 5rem 0 0;
    }

    .header_lower .sitename a {
        padding: 0 0 0 4rem;
        font-size: 2.7vw;
    }

    .header_lower .sitename a::before {
        background: url("img/logo_01.png") left top no-repeat;
        background-size: contain;
        width: 36px;
        height: 44px;
    }
}

/*--------------------------------------
　Navi
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
    display: table;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: #16a8b2;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 10000;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#hb-menu .hb-inner {
    display: table-cell;
    vertical-align: middle;
}

#hb-menu span {
    display: block;
    background: #fff;
    width: 34px;
    height: 2px;
    margin: auto;
    border-radius: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#hb-menu span:nth-of-type(2), #hb-menu span:nth-of-type(3) {
    margin-top: 13px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span:nth-of-type(1) {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    -ms-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
}

.hb-open #hb-menu span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.hb-open #hb-menu span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
}

/* overlay */
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 9999;
    transition: 0.2s;
}

.hb-open .overlay {
    background: none;
    pointer-events: auto;
}

/*----- g-nav -----*/
.g-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

.g-nav .g-nav-inner {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 45%;
    height: 100%;
    padding: 12rem 0;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    transition: .5s;
    transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    z-index: 9999;
}

.hb-open .g-nav .g-nav-inner {
    position: fixed;
    top: 0;
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.hb-open .g-nav .g-nav-inner::-webkit-scrollbar {
    display: none;
}

.hb_menu_wrapper {
    max-width: 80%;
    margin: auto;
}

.hb_menu {
    margin-bottom: 0;
}

.hb_menu:last-child {
    margin-bottom: 0;
}

.hb_menu_title {
    padding: 2.2rem 0 2.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.16);
}

.hb_menu_title_link {
    display: block;
    padding: 0 3rem 0 0;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
    position: relative;
}

.hb_menu_title_link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hb_menu_list {
    display: block;
    margin-top: 0;
}

.hb_menu_list_item {
    width: 100%;
    margin: 2rem 0 2rem 2rem;
    padding: 0 0;
    box-sizing: border-box;
    position: relative;
}

.hb_menu_list_item:first-child {
    display: none;
}

.hb_menu_list_link {
    display: block;
    padding: 0 0 0 1.5rem;
    color: #000;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

.hb_menu_list_link::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    background: #000;
    width: 8px;
    height: 1px;
}

/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    /*----- hb-menu -----*/ #hb-menu {
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
    }

    #hb-menu span {
        width: 26px;
        height: 1px;
    }

    #hb-menu span:nth-of-type(2), #hb-menu span:nth-of-type(3) {
        margin-top: 9px;
    }

    /* ナビゲーションアイコン：アクティブ */
    .hb-open #hb-menu span:nth-of-type(1) {
        -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
        -ms-transform: translateY(8px) translateX(0) rotate(45deg);
        transform: translateY(8px) translateX(0) rotate(45deg);
    }

    .hb-open #hb-menu span:nth-of-type(2) {
        margin-top: 5px;
        opacity: 0;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    .hb-open #hb-menu span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
        -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
        transform: translateY(-8px) translateX(0) rotate(-45deg);
    }

    /*----- g-nav -----*/
    .g-nav .g-nav-inner {
        width: 100%;
        height: 100%;
        padding: 6rem 1.5rem;
    }

    .hb_menu_wrapper {
        max-width: 100%;
    }

    .hb_menu_title {
        padding: 1.5rem 2.5rem 1.5rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.16);
        position: relative;
    }

    .hb_menu_title:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        background: none;
        border-top: solid 1px #000;
        border-right: solid 1px #000;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .hb_menu_title.open:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hb_menu_title.first {
        padding: 1.5rem 0 1.5rem 0;
    }

    .hb_menu_title.first:after {
        display: none;
    }

    .hb_menu_title_link {
        padding: 0 0 0 0;
        font-size: 1.5rem;
        pointer-events: none;
    }

    .hb_menu_title_link:after {
        display: none;
    }

    .hb_menu_title.first .hb_menu_title_link {
        pointer-events: auto;
        position: relative;
    }

    .hb_menu_title.first .hb_menu_title_link:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        background: none;
        border-top: solid 1px #000;
        border-right: solid 1px #000;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .hb_menu_list {
        display: none;
        margin-top: 0;
    }

    .hb_menu_list_item {
        margin: 0 0 0 0;
        padding: 0 0;
        border-bottom: 1px solid rgba(0,0,0,0.16);
        position: relative;
    }

    .hb_menu_list_item:first-child {
        display: block;
    }

    .hb_menu_list_link {
        padding: 1.5rem 2rem 1.5rem 1.5rem;
    }

    .hb_menu_list_link::before {
        display: none;
    }

    .hb_menu_list_link::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
    margin: 4rem auto 1rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

#pankuzu a {
    display: inline-block;
    text-decoration: underline;
    line-height: 1.8;
}

#pankuzu a:hover {
    text-decoration: none;
}

#pankuzu span br, .l-footer-menu__list__link br {
    display: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    #pankuzu {
        width: 100%;
        margin: 4rem auto 0;
        padding: 0 1.5rem 0.5rem 0;
        box-sizing: border-box;
        font-size: 1rem;
        white-space: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #pankuzu::-webkit-scrollbar {
        height: 3px;
    }

    #pankuzu::-webkit-scrollbar-track {
        background: #efefef;
        margin: 0 1.5rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    #pankuzu::-webkit-scrollbar-thumb {
        background: #cacaca;
        border-radius: 0;
        box-shadow: none;
    }
}

/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
    background: #fff;
    width: 100%;
    min-width: 1000px;
    box-sizing: border-box;
    border-top: 1px solid #e5eeee;
}

.l-footer-area br {
    display: none;
}

.l-footer-area__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10rem 0 5rem;
}

.l-footer-sitename {
    text-align: center;
}

.l-footer-sitename .sitename {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}

.l-footer-sitename .large {
    display: block;
    font-size: 4.6rem;
    font-weight: bold;
}

.l-footer-sitename .sitename a {
    display: inline-block;
    padding: 8px 0 0 7rem;
    box-sizing: border-box;
    font-weight: bold;
    position: relative;
}

.l-footer-sitename .sitename a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    background: url("img/logo_01.png") left top no-repeat;
    background-size: contain;
    width: 60px;
    height: 72px;
    box-sizing: border-box;
}

.l-footer-menu-wrapper {
    margin: 6rem auto 0;
}

.l-footer-menu {
    margin-bottom: 4rem;
}

.l-footer-menu:last-child {
    margin-bottom: 0;
}

.l-footer-menu__title {
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid #bbbbbb;
    position: relative;
}

.l-footer-menu__title__link {
    display: inline-block;
    padding: 0 3rem 0 0;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    position: relative;
}

.l-footer-menu__title__link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #16a8b2;
    border-right: 2px solid #16a8b2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.l-footer-menu__list {
    display: flex;
    flex-flow: row wrap;
    box-sizing: border-box;
    margin-top: 3rem;
}

.l-footer-menu__list__item {
    width: calc(100% / 3);
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    box-sizing: border-box;
    position: relative;
}

.l-footer-menu__list__item:first-child {
    display: none;
}

.l-footer-menu__list__link {
    display: block;
    padding: 0 2rem 0 0;
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
}

.l-footer-menu__list__link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #16a8b2;
    border-right: 2px solid #16a8b2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.l-footer-submenu__list {
    margin: 1rem 0 0 0;
    padding: 0 2rem;
}

.l-footer-submenu__list__item {
    margin: 0 0 1rem 0;
    position: relative;
}

.l-footer-submenu__list__link {
    display: block;
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

.l-footer-submenu__list__link::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    background: #000;
    width: 8px;
    height: 1px;
}

.l-footer-area .menseki {
    background: #f6f8f8;
    max-width: 880px;
    margin: 5rem auto 0;
    padding: 2rem 3rem;
    box-sizing: border-box;
    font-size: 1.2rem;
    line-height: 2;
}

.l-footer-area .menseki a {
    text-decoration: underline
}

.l-footer-area .menseki span {
    display: inline-block;
}

.l-footer-area .ucp {
    margin: 1.5rem auto 0;
    font-size: 1rem;
    text-align: center;
    line-height: 1.8;
}

.l-footer-copy-wrapper {
    background: #fff;
}

.l-footer-copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 0;
    font-size: 1.3rem;
    line-height: 1.5;
}

.l-footer-copy a {
    display: inline-block;
    text-decoration: underline;
}

.l-footer-copy a:hover {
    text-decoration: none;
}

.l-footer-copy .sitemap {
    width: 15%;
    margin: 0 0 0 4rem;
    box-sizing: border-box;
    text-align: right;
}

.l-footer-copy .sitemap a {
    padding: 0 1.5rem 0 0;
    position: relative;
}

.l-footer-copy .sitemap a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .l-footer-area {
        min-width: 100%;
    }

    .l-footer-area__inner {
        max-width: 100%;
        padding: 3rem 1.5rem 2rem;
    }

    .l-footer-sitename .sitename {
        font-size: 1rem;
    }

    .l-footer-sitename .large {
        font-size: 2.6rem;
    }

    .l-footer-sitename .sitename a {
        padding: 0 0 0 4rem;
    }

    .l-footer-sitename .sitename a::before {
        background: url("img/logo_01.png") left top no-repeat;
        background-size: contain;
        width: 36px;
        height: 44px;
    }

    .l-footer-menu-wrapper {
        margin: 3rem auto 0;
    }

    .l-footer-menu {
        margin-bottom: 0;
    }

    .l-footer-menu__title {
        padding: 1.5rem 2.5rem 1.5rem 0;
        border-bottom: 1px solid #bbbbbb;
    }

    .l-footer-menu__title:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        background: none;
        border-top: solid 1px #16a8b2;
        border-right: solid 1px #16a8b2;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .l-footer-menu__title.open:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .l-footer-menu__title__link {
        display: block;
        padding: 0 0 0 0;
        font-size: 1.5rem;
        pointer-events: none;
    }

    .l-footer-menu__title__link:after {
        display: none;
    }

    .l-footer-menu__list {
        display: none;
        margin-top: 0;
    }

    .l-footer-menu__list__item {
        width: 100%;
        margin-bottom: 0;
        padding: 0 0;
        /* border-bottom: 1px solid #bbbbbb; */
    }

    .l-footer-menu__list__item:first-child {
        display: block;
    }

    .l-footer-menu__list__link {
        padding: 1rem 2rem 1rem 1.5rem;
        font-size: 1.3rem;
        color: #282828;
    }

    .l-footer-menu__list__link:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px solid #16a8b2;
        border-right: 1px solid #16a8b2;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .l-footer-submenu__list {
        margin: 0 0 0 0;
        padding: 0 0;
    }

    .l-footer-submenu__list__item {
        margin: 0 0 0 0;
        border-top: 1px solid #bbbbbb;
    }

    .l-footer-submenu__list__link {
        padding: 1.5rem 0 1.5rem 3rem;
    }

    .l-footer-submenu__list__link::before {
        content: "";
        position: absolute;
        top: 26px;
        left: 15px;
        background: #000;
        width: 6px;
        height: 1px;
    }

    .l-footer-area .menseki {
        max-width: 100%;
        margin: 3rem auto 0;
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }

    .l-footer-area .ucp {
        margin: 1rem auto 0;
    }

    .l-footer-copy {
        display: block;
        max-width: 100%;
        padding: 1rem 1rem 8rem;
        font-size: 1.2rem;
        text-align: center;
    }

    .l-footer-copy a {
        display: contents;
    }

    .sitemap {
        margin: 2rem 0 0 0;
        text-align: center;
    }

    .sitemap a {
        padding: 0 1rem 0 0;
        font-size: 1.4rem;
        color: #000;
        text-decoration: underline;
        position: relative;
    }

    .sitemap a:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 70px;
    z-index: 0;
}

.l-pagetop__link {
    display: block;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .l-pagetop {
        bottom: 3px;
        right: 5px;
        width: 60px;
        display: none !important;
    }
}

/*--------------------------------------
　mv_lower
---------------------------------------*/
.mv_lower {
    background: url("img/bg_01.jpg") center top repeat;
    background-size: 100% auto;
    width: 100%;
    min-width: 1000px;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.mv_lower .mv_lower_inner {
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.mv_lower .mv_lower_inner::before, .mv_lower .mv_lower_inner::after {
    content: "";
    position: absolute;
    top: 45%;
    z-index: -1;
}

.mv_lower .mv_lower_inner::before {
    left: 0;
    background: url("img/mv_lower_01.png") left top no-repeat;
    background-size: contain;
    width: 18%;
    height: 0;
    padding-top: calc(18%*200/220);
    top: 51%;
}

.mv_lower .mv_lower_inner::after {
    right: 0;
    background: url("img/mv_lower_02.png") left top no-repeat;
    background-size: contain;
    width: 18%;
    height: 0;
    padding-top: calc(18%*250/302);
    top: 55%;
}

.mv_lower .mv_lower_block {
    max-width: 1000px;
    margin: auto;
    padding: 15rem 6rem 1rem;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .mv_lower {
        min-width: 100%;
        /* overflow: hidden; */
    }

    .mv_lower .mv_lower_inner::before, .mv_lower .mv_lower_inner::after {
        bottom: 0;
    }

    .mv_lower .mv_lower_inner::before {
        display: none;
    }

    .mv_lower .mv_lower_inner::after {
        top: 16rem;
        left: inherit;
        right: 0;
        background: url("img/mv_lower_02.png") left top no-repeat;
        background-size: contain;
        width: 40%;
        height: 0;
        padding-top: calc(40%*200/220);
        opacity: 0.8;
    }

    .mv_lower .mv_lower_block {
        max-width: 100%;
        padding: 6rem 1.5rem 1rem;
    }
}

/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents {
    width: 100%;
    min-width: 1000px;
    margin: auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

#category, #page {
    width: 1000px;
    margin: auto!important;
    padding: 0!important;
    box-sizing: border-box;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .contents {
        width: 100%;
        min-width: 100%;
        padding: 0;
    }

    #category, #page {
        width: 100%;
    }

    .contents_inner {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
}

/*--------------------------------------
　Title
---------------------------------------*/
h2, h3, h4, h5, h6, .cc {
    font-weight: bold;
    line-height: 1.4;
    box-sizing: border-box;
}

h2 a, h3 a, h4 a, h5 a, h6 a {
    display: block;
    font-weight: bold;
    box-sizing: border-box;
}

h2 span, h3 span, h4 span, h5 span, h6 span {
    font-weight: bold;
}

.contents h1 {
    margin: 0 0 0;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.4;
}

#category h2, #page h2 {
    background: #16a8b2 url("img/h2_bg.png") left top no-repeat;
    background-size: 246px auto;
    margin: 8rem 0 2rem;
    padding: 3rem 3rem 3rem 3rem;
    color: #fff;
    font-size: 3.4rem;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

#category h2::before, #page h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    background: -moz-linear-gradient(90deg, #fcee6e 0%, #fcee6e 50%, #e678af 50%, #e678af 100%);
    background: -webkit-linear-gradient(90deg, #fcee6e 0%, #fcee6e 50%, #e678af 50%, #e678af 100%);
    background: linear-gradient(90deg, #fcee6e 0%, #fcee6e 50%, #e678af 50%, #e678af 100%);
    width: 40px;
    height: 5px;
}

#category h2 a, #page h2 a {
    padding: 0 4rem 0 4rem;
    color: #fff;
    position: relative;
}

#category h2 a::after, #page h2 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_04.png") left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

#category h3, #page h3 {
    margin: 6rem 0 1rem;
    padding: 0 0 1.5rem 5rem;
    font-size: 2.8rem;
    border-bottom: 4px solid #dbedee;
    position: relative;
}

#category h3::before, #page h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("img/icon_h3.png") left top no-repeat;
    background-size: contain;
    width: 60px;
    height: 50px;
}

#category h3::after, #page h3:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    background: #16a8b2;
    width: 90px;
    height: 4px;
}

#category h3 a, #page h3 a {
    padding: 0 4rem 0 0;
    position: relative;
}

#category h3 a::after, #page h3 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_03.png") left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

#category h4, #page h4 {
    color: #0e8b93;
    margin: 4rem 0 1rem;
    padding: 0 0 0 2rem;
    font-size: 2.2rem;
    position: relative;
}

#category h4::after, #page h4:after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    background: #0e8b93;
    width: 12px;
    height: 4px;
    border-radius: 2px;
}

#category h4 a, #page h4 a {
    display: inline-block;
    padding: 0 4rem 0 0;
    color: #0e8b93;
    position: relative;
}

#category h4 a::after, #page h4 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_03.png") left top no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    margin-top: -13px;
}

.catch {
    margin: 0 0 0;
    padding: 0 0 2rem;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
}

.catch::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #16a8b2;
    border-radius: 2px;
}

.catch::after {
    content: "";
    position: absolute;
    top: calc(100% - 4px);
    left: 50px;
    background: url("img/sb_deco_01.png") left top no-repeat;
    background-size: contain;
    width: 27px;
    height: 16px;
    z-index: 1;
}

.catch.wh::before {
    border-bottom: 4px solid #fff;
}

.catch.wh::after {
    background: url("img/sb_deco_02.png") left top no-repeat;
    background-size: contain;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .contents h1 {
        margin: 4rem 0 0;
        font-size: 6vw;
        text-shadow: #fff 1px 1px 1px, #fff -1px 1px 1px, #fff 1px -1px 1px, #fff -1px -1px 1px;
    }

    #category h2, #page h2 {
        background: #16a8b2 url("img/h2_bg.png") left top no-repeat;
        background-size: 40% auto;
        margin: 5rem 0 2rem;
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
        font-size: 2rem;
        text-align: left;
        border-radius: 5px;
    }

    #category h2::before, #page h2::before {
        left: 20px;
        width: 30px;
        height: 3px;
    }

    #category h2 a, #page h2 a {
        padding: 0 3rem 0 0;
    }

    #category h2 a::after, #page h2 a::after {
        background: url("img/arrow_04.png") left top no-repeat;
        background-size: contain;
        width: 20px;
        height: 20px;
        margin-top: -10px;
    }

    #category h3, #page h3 {
        margin: 4rem 0 2rem;
        padding: 0 0 1rem 4.5rem;
        font-size: 1.8rem;
        border-bottom: 2px solid #dbedee;
    }

    #category h3::before, #page h3:before {
        background: url("img/icon_h3.png") left top no-repeat;
        background-size: contain;
        width: 42px;
        height: 35px;
    }

    #category h3::after, #page h3:after {
        bottom: -2px;
        width: 40px;
        height: 2px;
    }

    #category h3 a, #page h3 a {
        padding: 0 3rem 0 0;
    }

    #category h3 a::after, #page h3 a::after {
        background: url("img/arrow_03.png") left top no-repeat;
        background-size: contain;
        width: 20px;
        height: 20px;
        margin-top: -10px;
    }

    #category h4, #page h4 {
        margin: 4rem 0 1rem;
        padding: 0 0 0 2rem;
        font-size: 1.6rem;
    }

    #category h4::after, #page h4:after {
        top: 9px;
        width: 10px;
        height: 2px;
    }

    #category h4 a, #page h4 a {
        padding: 0 3rem 0 0;
    }

    #category h4 a::after, #page h4 a::after {
        background: url("img/arrow_03.png") left top no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        margin-top: -8px;
    }

    .catch {
        padding: 0 0 1.5rem;
    }

    .catch:before {
        border-bottom: 2px solid #16a8b2;
    }

    .catch:after {
        top: calc(100% - 2px);
        left: 30px;
        background: url("img/sb_deco_01.png") left top no-repeat;
        background-size: contain;
        width: 1.4rem;
        height: 0;
        padding-top: calc(5%*16/27);
    }

    .catch.wh::before {
        border-bottom: 2px solid #fff;
    }

    .catch.wh::after {
        background: url("img/sb_deco_02.png") left top no-repeat;
        background-size: contain;
    }
}

/*--------------------------------------
　テキスト
---------------------------------------*/
.contents p {
    margin: 1rem 50px 2rem;
    font-size: 1.4rem;
    line-height: 2;
}

.contents p a {
    text-decoration: underline;
}

.contents p a:hover {
    text-decoration: none;
}

.sec01 .bottom_parts .txt_bold {
    color: #e678af;
    font-weight: bold;
}

.txt_bold {
    color: #fcee6e;
    font-weight: bold;
}

#category .txt_bold, #page .txt_bold {
    color: #e678af;
}

.marker {
    background: linear-gradient(transparent 0%, #fcee6e 0%);
    font-weight: bold;
    color: #282828;
}

p.contents_note {
    margin: 0rem 0 4rem;
    color: #777;
    font-size: 1.1rem;
    line-height: 1.4;
}

p.caption {
    margin: 1rem 0 0 0!important;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #888;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-all;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #aeaeae #e7e7e7;
    scrollbar-width: thin;
}

p.caption::-webkit-scrollbar {
    height: 2px;
}

p.caption::-webkit-scrollbar-track {
    background: #e7e7e7;
    margin: 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

p.caption::-webkit-scrollbar-thumb {
    background: #aeaeae;
    border-radius: 0;
    box-shadow: none;
}

p.caption a {
    color: #888;
    text-decoration: underline;
}

p.caption02 {
    margin: 1rem 0 0 0!important;
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: center;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .contents p {
        margin: 1rem 0 2rem;
        line-height: 1.8;
    }

    p.contents_note {
        margin: 2rem 40% 0 0;
        font-size: 1rem;
    }

    p.caption {
        margin: 1rem 0 0 0!important;
    }
}

/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
    margin: 4rem 50px 4rem;
}

.contents ul li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 2rem;
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
}

.contents ul li:last-child {
    margin: 0 0 0 0;
}

.contents ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    background: #e678af;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border-radius: 50%;
}

.contents ul li a {
    display: inline-block;
    text-decoration: underline;
}

.contents ul li a:hover {
    text-decoration: none;
}

/*----- olリスト -----*/
.contents ol {
    list-style-type: none;
    counter-reset: count;
    margin: 4rem 50px 4rem;
}

.contents ol li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 3rem;
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    counter-increment: count;
}

.contents ol li:last-child {
    margin: 0 0 0 0;
}

.contents ol li::before {
    content: counter(count);
    position: absolute;
    top: 4px;
    left: 0;
    background: #009f99;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    border-radius: 2px;
}

.contents ol a {
    display: inline-block;
    text-decoration: underline;
}

.contents ol li a:hover {
    text-decoration: none;
}

/*----- checkリスト -----*/
.contents ul.check_list li {
    padding: 0 0 0 3rem;
}

.contents ul.check_list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    background: url("img/icon_check_01.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 20px;
    box-sizing: border-box;
    border-radius: 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    /*----- ulリスト -----*/ .contents ul {
        margin: 3rem 0 3rem;
    }

    .contents ul li {
        margin: 0 0 0.5rem 0;
    }

    .contents ul li::before {
        top: 6px;
    }

    /*----- olリスト -----*/
    .contents ol {
        margin: 3rem 0 3rem;
    }

    .contents ol li {
        padding: 0 0 0 2.5rem;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .contents ol li::before {
        top: 3px;
        width: 16px;
        height: 16px;
        line-height: 18px;
        font-size: 1rem;
    }

    /*----- checkリスト -----*/
    .contents ul.check_list li {
        padding: 0 0 0 2.5rem;
    }

    .contents ul.check_list li::before {
        top: 2px;
        background: url("img/icon_check_01.png") left top no-repeat;
        background-size: contain;
        width: 19px;
        height: 16px;
    }
}

/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a, .btn-internal a {
    display: block;
    max-width: 470px;
    margin: 4rem auto 4rem;
    padding: 3rem 6rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    border-radius: 100px;
    text-decoration: none!important;
    position: relative;
}

/*----- btn-web（外部リンク） -----*/
.btn-web a {
    background: #e678af;
    color: #fff;
    box-shadow: 0px 4px 0px 0px #b82971;
}

.btn-web a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    background: url("img/arrow_01.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
    background: #fff;
    color: #0e8b93;
    border: 2px solid #009f99;
    box-shadow: 0px 4px 0px 0px #b1d4d3;
}

.btn-internal a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    background: url("img/arrow_02.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
}

/*----- btn-link（テキストリンク） -----*/
.btn-link {
    text-align: right;
}

.btn-link a {
    display: inline-block;
    margin: 4rem 0 4rem;
    padding: 0 3rem 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: underline;
    position: relative;
}

.btn-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_03.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-top: -10px;
}

.btn-link a.wh::after {
    background: url("img/arrow_04.png") left top no-repeat;
    background-size: contain;
}

.btn-link a:hover {
    text-decoration: none;
}

/*----- btn-tel（電話ボタン） -----*/
.btn-tel a {
    display: none;
}

.btn_box {
    margin: 10rem 0 10rem;
}

.btn_box .btn_box_inner {
    display: flex;
    justify-content: center;
}

.btn_box p {
    width: 430px;
    margin: 0 1rem;
    box-sizing: border-box;
}

.btn_box p a {
    display: block;
    max-width: 100%;
    margin: 0 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .btn-web a, .btn-internal a {
        max-width: 90%;
        margin: 3rem auto 3rem;
        padding: 1.8rem 4rem;
        font-size: 1.4rem;
    }

    /*----- btn-web（外部リンク） -----*/
    .btn-web a {
        box-shadow: 0px 3px 0px 0px #b82971;
    }

    .btn-web a::after {
        right: 20px;
        background: url("img/arrow_01.png") left top no-repeat;
        background-size: contain;
        width: 13px;
        height: 10px;
        margin-top: -6px;
    }

    /*----- btn-internal（内部リンク） -----*/
    .btn-internal a {
        border: 1px solid #009f99;
        box-shadow: 0px 3px 0px 0px #b1d4d3;
    }

    .btn-internal a::after {
        right: 15px;
        background: url("img/arrow_02.png") left top no-repeat;
        background-size: contain;
        width: 13px;
        height: 10px;
        margin-top: -6px;
    }

    /*----- btn-link（テキストリンク） -----*/
    .btn-link a {
        margin: 3rem 0 3rem;
        padding: 0 2rem 0 0;
        font-size: 1.4rem;
    }

    .btn-link a::after {
        background: url("img/arrow_03.png") left top no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        margin-top: -8px;
    }

    .btn-link a.wh::after {
        background: url("img/arrow_04.png") left top no-repeat;
        background-size: contain;
    }

    /*----- btn-tel（電話ボタン） -----*/
    .btn-tel a {
        display: block;
        background: #009f99 url("img/icon_tel.png") left 25px center no-repeat;
        background-size: 16px auto;
        max-width: 90%;
        margin: 3rem auto 3rem;
        padding: 1.8rem 5rem;
        box-sizing: border-box;
        color: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.5;
        border-radius: 100px;
        text-decoration: none!important;
        box-shadow: 0px 3px 0px 0px #0e8b93;
        position: relative;
    }

    .btn_box {
        margin: 6rem 0 6rem;
    }

    .btn_box .btn_box_inner {
        /* display: block; */
    }

    .btn_box p {
        width: 100%;
        margin: 0 0 1.5rem;
    }

    .btn_box p:last-child {
        margin: 0 0 0;
    }

    .btn_box p a {
        max-width: 97%;
        margin: 0 auto 0;
        padding: 10px 20px;
        font-size: 1.3rem;
    }

    .btn_box p a::after {
        right: 7px;
    }
}

/*--------------------------------------
　Table
---------------------------------------*/
table {
    background: #fff;
    width: 100%;
    margin: 8rem 0 8rem;
    box-sizing: border-box;
    border-collapse: collapse;
    border-spacing: 0;
    border: 2px solid #dbe2e2;
}

table th {
    background: #f2f8f8;
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    word-break: break-all;
    border-left: 2px solid #dbe2e2;
    border-bottom: 2px solid #dbe2e2;
}

table th a {
    font-weight: bold;
    text-decoration: underline;
}

table th a:hover {
    text-decoration: none;
}

table td {
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.4;
    word-break: break-all;
    border-left: 2px solid #dbe2e2;
    border-bottom: 2px solid #dbe2e2;
}

table td a {
    text-decoration: underline;
}

table td a:hover {
    text-decoration: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    table {
        margin: 5rem 0 5rem;
        border: 1px solid #dbe2e2;
    }

    table th {
        display: block;
        padding: 1.2rem;
        font-size: 1.4rem;
        border-left: none;
        border-bottom: 1px solid #dbe2e2;
    }

    table td {
        display: block;
        padding: 1.2rem;
        font-size: 1.4rem;
        border-left: none;
        border-bottom: 1px solid #dbe2e2;
    }

    table tbody tr:last-child td:last-child {
        border-bottom: none;
    }
}

/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
    margin: 8rem 0 8rem;
    box-sizing: border-box;
}

.float-img {
    position: relative;
}

.float-img .flame img {
    display: block;
    width: auto;
    margin: auto;
    max-width: 100%;
    vertical-align: top;
}

.videoContainer {
    position: relative;
    display: inline-block;
}

.float-img .flame img.playButton {
    position: absolute;
    width: 64px;
    height: 43px;
    cursor: pointer;
    display: none;
}

.float-img.fl {
    float: left;
    width: 390px;
    padding-right: 4rem;
}

.float-img.fr {
    float: right;
    width: 390px;
    padding-left: 4rem;
}

.float-img .caption {
    margin: 1rem 0 0 0;
    font-size: 1rem;
    color: #888;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-all;
}

.float-txt.fr {
    float: right;
    width: calc(100% - 430px);
    box-sizing: border-box;
}

.float-txt.fl {
    float: left;
    width: calc(100% - 430px);
    box-sizing: border-box;
}

.float-wrap .catch-copy {
    margin: 0 0 0;
    padding: 0 0 2rem;
    color: #0e8b93;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
}

.float-wrap .catch-copy::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #16a8b2;
    border-radius: 2px;
}

.float-wrap .catch-copy::after {
    content: "";
    position: absolute;
    top: calc(100% - 4px);
    left: 50px;
    background: url("img/sb_deco_01.png") left top no-repeat;
    background-size: contain;
    width: 27px;
    height: 16px;
    z-index: 1;
}

.float-wrap .catch-copy.tc {
    max-width: 550px;
    margin: 2rem auto 0;
    text-align: center;
}

.float-wrap p {
    margin: 3rem 0 3rem;
}

.float-wrap .float-img video {
    width: 100%;
}

#playButton {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .float-wrap {
        margin: 5rem 0 5rem;
    }

    .float-img.fl {
        float: inherit;
        width: 100%;
        padding-right: 0;
    }

    .float-img.fr {
        float: inherit;
        width: 100%;
        padding-left: 0;
    }

    .float-txt.fr {
        float: inherit;
        width: 100%;
    }

    .float-txt.fl {
        float: inherit;
        width: 100%;
    }

    .float-wrap .catch-copy {
        margin: 1.5rem 0 0;
        padding: 0 0 1.5rem;
        font-size: 1.8rem;
    }

    .float-wrap .catch-copy::before {
        border-bottom: 2px solid #16a8b2;
    }

    .float-wrap .catch-copy::after {
        top: calc(100% - 2px);
        left: 30px;
        background: url("img/sb_deco_01.png") left top no-repeat;
        background-size: contain;
        width: 5%;
        height: 0;
        padding-top: calc(5%*16/27);
    }

    .float-wrap .catch-copy.tc {
        max-width: 100%;
        margin: 1.5rem auto 0;
    }

    .float-wrap p {
        margin: 2rem 0 2rem;
    }
}

/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
    background: #fff;
    max-width: 770px;
    margin: 5rem auto 10rem;
    box-sizing: border-box;
    border: 4px solid #e1eeee;
    position: relative;
}

.toc_parts .toc_ttl {
    background: #f2f8f8;
    padding: 3rem 3rem;
    box-sizing: border-box;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    border-radius: 21px 21px 0 0;
    position: relative;
}

#toc {
    background: #fff;
    margin: 0 0 0 0;
    padding: 3rem 7rem 3rem;
    box-sizing: border-box;
    border-radius: 0 0 21px 21px;
}

#toc ol.chapter {
    margin: 0 0 0;
}

#toc ol.chapter li {
    margin: 0 0 0.5rem 0;
    padding: 0 0 0 5rem;
    font-size: 1.6rem;
    line-height: 1.8;
    overflow-wrap: break-word;
    position: relative;
    counter-increment: toccount;
}

#toc ol.chapter li:last-child {
    margin: 0 0 0 0;
}

#toc ol.chapter li::before {
    content: counter(toccount,decimal-leading-zero) ".";
    position: absolute;
    top: -6px;
    left: 0;
    background: none;
    width: inherit;
    height: inherit;
    border-radius: 0;
    color: #16a8b2;
    font-size: 2.2rem;
    font-weight: bold;
}

#toc ol.chapter li a {
    text-decoration: none;
}

#toc .chapter .chapter {
    margin: 0 0 1rem 5rem;
}

#toc .chapter .chapter li {
    margin: 0 0 1rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
    position: relative;
    counter-increment: none;
}

#toc .chapter .chapter li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#toc .chapter li br {
    display: none;
}

.toc_parts .accordion-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    background: #fff;
    max-width: 300px;
    margin: auto;
    padding: 2rem 5rem;
    box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    border: 4px solid #e1eeee;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 2;
}

.toc_parts .accordion-btn:before, .toc_parts .accordion-btn:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    background: #000;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    transition: all 0.4s;
}

.toc_parts .accordion-btn:after {
    transform: rotate(90deg);
}

.toc_parts .accordion-btn.is-show:before {
    display: none;
}

.toc_parts .accordion-btn.is-show::after {
    transform: rotate(180deg);
}

.toc_parts .accordion-btn span {
    font-weight: bold;
}

.toc_parts .accordion-btn span:before {
    content: "目次を開く";
}

.toc_parts .accordion-btn.is-show span:before {
    content: "目次を閉じる";
}

.toc_parts .accordion-text {
    padding: 0 0 3rem;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 21px 21px;
}

/* 最初に見えてるテキストエリアの高さ */
.toc_parts .accordion-text.is-hide {
    height: 260px;
}

/* テキストをグラデーションで隠す */
.toc_parts .accordion-text::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 50%, #fff 100%);
    width: 100%;
    height: 100px;
    /* グラデーションで隠す高さ */
    transition: all 0.4s;
    border-radius: 0 0 21px 21px;
    z-index: 1;
}

/* 続きを見るボタンをクリックしたらグラデーションを消す */
.toc_parts .accordion-btn.is-show + .accordion-text::before {
    background: none;
    height: auto;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .toc_parts {
        max-width: 90%;
        margin: 6rem auto 6rem;
        border: 2px solid #e1eeee;
    }

    .toc_parts .toc_ttl {
        padding: 2rem 2rem;
        ; font-size: 1.8rem;
        border-radius: 10px 10px 0 0;
    }

    #toc {
        padding: 2rem 2rem 2rem;
        border-radius: 0 0 10px 10px;
    }

    #toc ol.chapter li {
        margin: 0 0 0.5rem 0;
        padding: 0 0 0 3.3rem;
        font-size: 1.5rem;
        line-height: 1.6;
    }

    #toc ol.chapter li::before {
        top: 4px;
        font-size: 1.5rem;
    }

    #toc .chapter .chapter {
        margin: 0 0 2rem 4rem;
    }

    #toc ol.chapter li a {
        font-size: 1.3rem;
    }

    #toc .chapter .chapter a {
        font-size: 1.2rem;
    }

    .toc_parts .accordion-btn {
        bottom: -30px;
        max-width: 80%;
        padding: 1.8rem 4rem;
        font-size: 1.4rem;
        border: 2px solid #e1eeee;
    }

    .toc_parts .accordion-btn:before, .toc_parts .accordion-btn:after {
        right: 15px;
        width: 16px;
        height: 1px;
    }

    .toc_parts .accordion-text {
        padding: 0 0 3rem;
        border-radius: 0 0 10px 10px;
    }

    /* 最初に見えてるテキストエリアの高さ */
    .toc_parts .accordion-text.is-hide {
        height: 200px;
    }

    /* テキストをグラデーションで隠す */
    .toc_parts .accordion-text::before {
        height: 80px;
        /* グラデーションで隠す高さ */
        border-radius: 0 0 10px 10px;
    }
}

/*--------------------------------------
　ra_parts
---------------------------------------*/
.ra_parts_01 {
    max-width: 770px;
    margin: 10rem auto 10rem;
}

.ra_parts_01 .ra_parts_block {
    background: #f2f8f8;
    padding: 5rem 6rem 5rem;
}

.ra_parts_01 .ra_ttl {
    padding: 0 0 2rem;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #16a8b2;
}

.ra_parts_01 ul {
    margin: 3rem 0 0;
}

.ra_parts_01 ul li {
    margin: 0 0 1.5rem;
    padding: 0 0 0 0;
    font-size: 1.5rem;
    line-height: 1.8;
}

.ra_parts_01 ul li::before {
    display: none;
}

.ra_parts_01 ul li a {
    display: inline-block;
    padding: 0 3rem 0 0;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

.ra_parts_01 ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_03.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-top: -10px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .ra_parts_01 {
        max-width: 100%;
        margin: 6rem auto 6rem;
    }

    .ra_parts_01 .ra_parts_block {
        padding: 3rem 2rem 3rem;
    }

    .ra_parts_01 .ra_ttl {
        padding: 0 0 1.5rem;
        font-size: 1.8rem;
        border-bottom: 1px solid #16a8b2;
    }

    .ra_parts_01 ul {
        margin: 2rem 0 0;
    }

    .ra_parts_01 ul li {
        margin: 0 0 1rem;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .ra_parts_01 ul li a {
        padding: 0 2rem 0 0;
    }

    .ra_parts_01 ul li a::after {
        background: url("img/arrow_03.png") left top no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        margin-top: -8px;
    }
}

/*--------------------------------------
　summary_parts_01
---------------------------------------*/
.summary_parts_01 {
    margin: 15rem 0 10rem;
}

.summary_parts_01 p {
    margin: 0 0 0;
}

.summary_parts_01 .summary_parts_block {
    background: #16a8b2;
    padding: 5rem 6rem 6rem;
    position: relative;
}

.summary_parts_01 .cc {
    background: #109ba4;
    width: calc(100% - 200px);
    padding: 3rem 15rem 3rem 0;
    font-size: 2.8rem;
    border-radius: 0 50px 50px 0;
    position: relative;
}

.summary_parts_01 .cc::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    background: #109ba4;
    width: 60px;
    height: 100%;
}

.summary_parts_01 .img_box {
    position: absolute;
    top: -50px;
    right: 60px;
    width: 290px;
}

.summary_parts_01 .txt {
    margin: 2rem 0 0;
}

.summary_parts_01 .btn_box {
    margin: 3rem 0 0;
}

.summary_parts_01 .btn_box p {
    width: 380px;
    margin: 0 1rem;
}

.summary_parts_01 .btn-link a {
    margin: 3rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .summary_parts_01 {
        margin: 6rem 0 6rem;
    }

    .summary_parts_01 .summary_parts_block {
        padding: 3rem 2rem 3rem;
    }

    .summary_parts_01 .cc {
        width: 100%;
        padding: 1.5rem 2rem 1.5rem 0;
        font-size: 2rem;
        border-radius: 0 25px 25px 0;
    }

    .summary_parts_01 .cc::before {
        width: 20px;
    }

    .summary_parts_01 .img_box {
        position: relative;
        top: inherit;
        right: inherit;
        width: 100%;
        margin: 2rem 0 0;
    }

    .summary_parts_01 .txt {
        margin: 1.5rem 0 0;
    }

    .summary_parts_01 .btn_box {
        margin: 2rem 0 0;
    }

    .summary_parts_01 .btn_box p {
        width: 100%;
        margin: 0 0 1.5rem;
    }

    .summary_parts_01 .btn_box p:last-child {
        margin: 0 0 0;
    }

    .summary_parts_01 .btn-link a {
        margin: 2rem 0 0;
    }
}

/*--------------------------------------
　summary_parts_02
---------------------------------------*/
.summary_parts_02 {
    margin: 10rem 0 10rem;
}

.summary_parts_02 p {
    margin: 0 0 0;
}

.summary_parts_02 .summary_parts_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f2f8f8;
    padding: 5rem 6rem 6rem;
}

.summary_parts_02 .l_box {
    width: 290px;
}

.summary_parts_02 .r_box {
    width: calc(100% - 290px);
    padding: 0 0 0 5rem;
}

.summary_parts_02 .cc {
    font-size: 2.4rem;
}

.summary_parts_02 .txt {
    margin: 2rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .summary_parts_02 {
        margin: 6rem 0 6rem;
    }

    .summary_parts_02 .summary_parts_block {
        display: block;
        padding: 3rem 2rem 3rem;
    }

    .summary_parts_02 .l_box {
        width: 100%;
    }

    .summary_parts_02 .r_box {
        width: 100%;
        padding: 0 0 0 0;
    }

    .summary_parts_02 .cc {
        font-size: 1.8rem;
    }

    .summary_parts_02 .txt {
        margin: 1.5rem 0 0;
    }

    .summary_parts_02 .img_box {
        margin: 2rem 0 0;
    }
}

/*--------------------------------------
　time_table
---------------------------------------*/
.time_table {
    margin: 15rem 0 10rem;
}

.time_table p {
    margin: 0 0 0;
}

.time_table .time_table_block {
    background: #fff;
    border: 5px solid #dbe9ea;
    padding: 0 6rem 6rem;
}

.time_table .upper {
    display: flex;
    justify-content: space-between;
}

.time_table .upper_l {
    width: 220px;
    margin: -5rem 0 0;
}

.time_table .upper_r {
    width: calc(100% - 220px);
    padding: 5rem 0 0 5rem;
}

.time_table .name {
    font-size: 1.4rem;
}

.time_table .name span {
    font-size: 2.4rem;
}

.time_table .catch {
    font-size: 2.4rem;
}

.time_table_box {
    margin: 4rem 0 0;
}

.time_table_box .item {
    display: flex;
    justify-content: space-between;
    padding: 0 0 5rem 10rem;
    position: relative;
}

.time_table_box .item:last-child {
    padding: 0 0 0 10rem;
}

.time_table_box .item::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 40px;
    background: #009f99;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border-radius: 50%;
    z-index: 1;
}

.time_table_box .item::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 49px;
    background: #c4e2e1;
    width: 5px;
    height: 100%;
}

.time_table_box .item:last-child::after {
    display: none;
}

.time_table_box .l_box {
    width: 15%;
}

.time_table_box .sub {
    display: inline-block;
    background: #fcee6e;
    padding: 8px 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.time_table_box .r_box {
    width: 82%;
}

.time_table_box .cc {
    font-size: 2rem;
}

.time_table_box .txt {
    margin: 2rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .time_table {
        margin: 8rem 0 6rem;
    }

    .time_table .time_table_block {
        border: 3px solid #dbe9ea;
        padding: 3rem 2rem 3rem;
    }

    .time_table .upper {
        display: block;
        position: -webkit-sticky;
        position: sticky;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 2;
    }

    .time_table .upper_l {
        width: 30%;
        margin: 0 0 0;
        position: absolute;
        bottom: calc(100% - 10px);
        right: 0;
    }

    .time_table .upper_r {
        width: 100%;
        padding: 0 0 0 0;
    }

    .time_table .name {
        font-size: 1.4rem;
    }

    .time_table .name span {
        font-size: 1.8rem;
    }

    .time_table .catch {
        font-size: 1.8rem;
    }

    .time_table_box {
        margin: 3rem 0 0;
        height: 350px;
        overflow-y: scroll;
    }

    .time_table_box::-webkit-scrollbar {
        display: none;
    }

    .time_table_box .item {
        display: block;
        padding: 0 0 3rem 3rem;
    }

    .time_table_box .item:last-child {
        padding: 0 0 0 3rem;
    }

    .time_table_box .item::before {
        top: 3px;
        left: 0;
        width: 16px;
        height: 16px;
    }

    .time_table_box .item::after {
        top: 3px;
        left: 6px;
        width: 3px;
    }

    .time_table_box .l_box {
        width: 100%;
    }

    .time_table_box .sub {
        padding: 5px 8px;
        font-size: 1.4rem;
    }

    .time_table_box .r_box {
        width: 100%;
        margin: 1.5rem 0 0;
    }

    .time_table_box .cc {
        font-size: 1.6rem;
    }

    .time_table_box .txt {
        margin: 1rem 0 0;
    }
}

/*--------------------------------------
　sv_parts
---------------------------------------*/
.sv_parts {
    margin: 15rem 0 10rem;
}

.sv_parts p {
    margin: 0 0 0;
}

.sv_parts .sv_parts_block {
    background: #fff;
    padding: 4rem 6rem 4rem;
    border: 5px solid #16a8b2;
}

.sv_parts .upper {
    display: flex;
    align-items: center;
    margin: -5.5rem 0 0;
}

.sv_parts .sub {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #16a8b2;
    width: 110px;
    height: 110px;
    box-sizing: border-box;
    border-radius: 50%;
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: -6rem;
    display: none;
}

.sv_parts .upper_txt {
    display: inline-block;
    background: #fff;
    width: 70%;
    margin: 0 0 2rem;
    /* padding: 1.5rem 2rem; */
    color: #16a8b2;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.4;
}

.sv_parts .sv_ttl {
    margin: 2rem 0 0;
    line-height: 1.4;
}

.sv_parts .sv_ttl span {
    font-weight: bold;
}

.sv_parts .sv_ttl .sponsored {
    color: #8f8f8f;
    font-size: 1.4rem;
}

.sv_parts .sv_ttl .sponsored span {
    margin: 0 0 0 1rem;
    color: #000;
    font-size: 2.8rem;
    position: relative;
}

.sv_parts .sv_ttl .sponsored span::after {
    /* content: ""; */
    /*  position: absolute;*/
    /* bottom: calc(100% - 10px);*/
    /* left: calc(100% - 10px);*/
    /* background: url("img/deco_01.png") left top no-repeat;*/
    /* background-size: contain;*/
    /* width: 24px;*/
    /* height: 22px;*/
}

.sv_parts .sv_ttl .large {
    display: block;
    margin: 1rem 0 0;
    font-size: 3.6rem;
}

.sv_parts .item {
    display: flex;
    justify-content: space-between;
    background: #16a8b2;
    margin: 6rem 0 0;
    padding: 0 4rem 0 0;
    border-radius: 0 50px 50px 0;
    position: relative;
}

.sv_parts .item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    background: #16a8b2;
    width: 60px;
    height: 100%;
}

.sv_parts .item .l_box {
    width: 300px;
    position: absolute;
    top: 50px;
}

.sv_parts .caption {
    text-align: center;
    color: #fff;
}

.sv_parts .item .r_box {
    width: calc(100% - 300px);
    margin: 0 0 0 auto;
    padding: 5rem 0 5rem 5rem;
}

.sv_parts .cc {
    font-size: 2.4rem;
}

.sv_parts .txt {
    margin: 3rem 0 0;
}

.sv_parts .btn_box {
    margin: 6rem 0 0;
}

.sv_parts .btn_box p {
    width: 380px;
    margin: 0 1rem;
}

.sv_parts .btn-link a {
    margin: 3rem 0 0;
}

.contents_inner .sv_parts .btn_box {
    margin: 12rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .sv_parts {
        margin: 8rem 0 6rem;
    }

    .sv_parts .sv_parts_block {
        padding: 3rem 2rem 3rem;
        border: 3px solid #16a8b2;
    }

    .sv_parts .upper {
        margin: -3rem 0 0;
    }

    .sv_parts .sub {
        width: 60px;
        height: 60px;
        margin: -3rem 0 0 !important;
        font-size: 1.4rem;
    }

    .sv_parts .upper_txt {
        width: 70%;
        margin: 0 0 0 1.5rem;
        padding: 1rem 1rem;
        font-size: 2rem;
    }

    .sv_parts .sv_ttl {
        margin: 1rem 0 0;
    }

    .sv_parts .sv_ttl .sponsored {
        font-size: 1.2rem;
    }

    .sv_parts .sv_ttl .sponsored span {
        margin: 0 0 0 5px;
        font-size: 1.5rem;
    }

    .sv_parts .sv_ttl .sponsored span::after {
        /* bottom: calc(100% - 5px); */
        /* left: calc(100% - 5px); */
        /* background: url("img/deco_01.png") left top no-repeat; */
        /* background-size: contain; */
        /* width: 19px; */
        /* height: 18px; */
    }

    .sv_parts .sv_ttl .large {
        margin: 1rem 0 0;
        font-size: 2rem;
    }

    .sv_parts .item {
        display: block;
        margin: 3rem 0 0;
        padding: 3rem 2rem 3rem 0;
        border-radius: 0 25px 25px 0;
    }

    .sv_parts .item::before {
        width: 24px;
        right: 99.8%;
    }

    .sv_parts .item .l_box {
        width: 100%;
        position: relative;
        top: inherit;
    }

    .sv_parts .caption {
        color: #fff;
        line-height: 1.3;
    }

    .sv_parts .item .r_box {
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0 0 0 0;
    }

    .sv_parts .cc {
        font-size: 1.8rem;
    }

    .sv_parts .txt {
        margin: 2rem 0 0;
    }

    .sv_parts .btn_box {
        margin: 2rem 0 0;
    }

    .sv_parts .btn_box p {
        width: 100%;
        margin: 0 0 1.5rem;
    }

    .sv_parts .btn_box p:last-child {
        margin: 0 0 0;
    }

    .sv_parts .btn-link a {
        margin: 2rem 0 0;
    }

    .contents_inner .sv_parts .btn_box {
        margin: 3rem 0 0;
    }
}

/*--------------------------------------
　interview_parts_01
---------------------------------------*/
.interview_parts_01 {
    margin: 10rem 0 10rem;
}

.interview_parts_01 p {
    margin: 0 0 0;
}

.interview_parts_01 .item {
    margin: 0 0 6rem;
}

.interview_parts_01 .item:last-child {
    margin: 0 0 0;
}

.q_box {
    background: #ecf8f9;
    padding: 2rem 3rem;
    border-radius: 10px;
}

.q_txt {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
    background: #ecf8f9;
    padding: 2rem 4rem 2rem 5rem;
    border-radius: 10px;
    margin: 5rem 0 2rem;
}

.q_txt::before {
    content: "Q";
    position: absolute;
    top: 12px;
    bottom: 0;
    margin: auto;
    left: 14px;
    color: #16a8b2;
    font-size: 3.2rem;
    font-weight: bold;
}

.interview_parts_01 .q_txt::before {
    content: "Q";
    position: absolute;
    top: -8px;
    left: 0;
    color: #16a8b2;
    font-size: 3.2rem;
    font-weight: bold;
}

.interview_parts_01 .a_box {
    margin: 4rem 0 0 3rem;
}

.interview_parts_01 .a_txt {
    padding: 0 0 0 4rem;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
}

.interview_parts_01 .a_txt::before {
    content: "A";
    position: absolute;
    top: -6px;
    left: 0;
    color: #e678af;
    font-size: 3.2rem;
    font-weight: bold;
}

.interview_parts_01 .txt {
    margin: 2rem 0 0;
    padding: 0 0 0 4rem;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .interview_parts_01 {
        margin: 6rem 0 6rem;
    }

    .interview_parts_01 .item {
        margin: 0 0 4rem;
    }

    .interview_parts_01 .q_box {
        padding: 1.5rem 2rem;
        border-radius: 5px;
    }

    .interview_parts_01 .q_txt {
        padding: 0 0 0 3rem;
        font-size: 1.6rem;
    }

    .interview_parts_01 .q_txt::before {
        top: -8px;
        font-size: 2.4rem;
    }

    .interview_parts_01 .a_box {
        margin: 2rem 0 0 2rem;
    }

    .interview_parts_01 .a_txt {
        padding: 0 0 0 3rem;
        font-size: 1.8rem;
    }

    .interview_parts_01 .a_txt::before {
        top: -6px;
        font-size: 2.6rem;
    }

    .interview_parts_01 .txt {
        margin: 1.5rem 0 0;
        padding: 0 0 0 3rem;
    }

    .q_txt {
        padding: 2rem;
        font-size: 1.6rem;
    }

    .q_txt::before {
        top: -20px;
        left: 17px;
    }

    p.txt {
        margin: 1rem 0 2rem;
    }
}

/*--------------------------------------
　interview_parts_02
---------------------------------------*/
.interview_parts_02 {
    margin: 10rem 0 10rem;
}

.interview_parts_02 p {
    margin: 0 0 0;
}

.interview_parts_02 .item {
    margin: 0 0 10rem;
}

.interview_parts_02 .item:last-child {
    margin: 0 0 0;
}

.interview_parts_02 .q_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 10rem;
}

.interview_parts_02 .l_box {
    width: 200px;
    padding: 2.5rem 2rem;
    border: 4px solid #16a8b2;
    border-radius: 10px;
    position: relative;
}

.interview_parts_02 .l_box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    background: #16a8b2;
    width: 50px;
    height: 4px;
    margin-top: -2px;
    border-radius: 2px;
}

.interview_parts_02 .e_txt {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.interview_parts_02 .r_box {
    width: calc(100% - 200px);
    padding: 0 0 0 8rem;
}

.interview_parts_02 .q_txt {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8;
}

.interview_parts_02 .a_box {
    background: #ecf8f9;
    margin: 0 0 6rem;
    padding: 4rem 6rem 4rem;
    border-radius: 0 25px 25px 25px;
    position: relative;
}

.interview_parts_02 .name {
    position: absolute;
    bottom: 100%;
    left: 0;
    display: inline-block;
    background: #16a8b2;
    padding: 1rem 1.5rem 8px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

.interview_parts_02 .a_txt {
    margin: 0 0 2rem;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .interview_parts_02 {
        margin: 6rem 0 6rem;
    }

    .interview_parts_02 .item {
        margin: 0 0 6rem;
    }

    .interview_parts_02 .q_box {
        display: block;
        margin: 0 0 6rem;
        padding: 2rem 2rem;
    }

    .interview_parts_02 .l_box {
        width: 100%;
        padding: 1.8rem 1.5rem;
        border: 2px solid #16a8b2;
        border-radius: 5px;
    }

    .interview_parts_02 .l_box::after {
        top: 100%;
        left: 50%;
        width: 2px;
        height: 30px;
        margin-top: 0;
        margin-left: -1px;
    }

    .interview_parts_02 .e_txt {
        font-size: 1.5rem;
    }

    .interview_parts_02 .r_box {
        width: 100%;
        padding: 0 0 0 0;
    }

    .interview_parts_02 .q_txt {
        margin: 4rem 0 0;
        font-size: 1.6rem;
        line-height: 1.6;
        padding: 2rem 0;
    }

    .interview_parts_02 .a_box {
        margin: 0 0 5rem;
        padding: 3rem 2rem 3rem;
        border-radius: 0 12px 12px 12px;
    }

    .interview_parts_02 .name {
        padding: 8px 1rem 5px;
        font-size: 1.3rem;
        border-radius: 3px 3px 0 0;
    }

    .interview_parts_02 .a_txt {
        margin: 0 0 1.5rem;
        font-size: 1.8rem;
    }
}

/*--------------------------------------
　ra_parts_02
---------------------------------------*/
.ra_parts_02 {
    margin: 10rem 0 10rem;
}

.ra_parts_02 p {
    margin: 0 0 0;
}

.ra_parts_02 .eng {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a8b2;
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
}

.ra_parts_02 .eng::after {
    content: "";
    display: block;
    margin-left: 2rem;
    border-top: 4px solid #16a8b2;
    border-radius: 2px;
    flex-grow: 1;
}

.ra_parts_02 .ra_ttl {
    margin: 3rem 0 0;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.4;
}

.ra_parts_02 .ra_parts_block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 6rem 0 0;
}

.ra_parts_02 .item {
    background: #16a8b2;
    width: 450px;
    margin: 0 auto 4rem auto;
    padding: 3rem 4rem 3rem 10rem;
    border-radius: 15px;
    position: relative;
}

.ra_parts_02 .item:nth-child(even) {
    margin: 0 0 4rem auto;
}

.ra_parts_02 .img_box {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 110px;
}

.ra_parts_02 .img_box img {
    border-radius: 15px;
}

.ra_parts_02 .txt {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.8;
}

.ra_parts_02 .btn-link a {
    margin: 1.5rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .ra_parts_02 {
        margin: 6rem 0 6rem;
    }

    .ra_parts_02 .eng {
        font-size: 1.4rem;
    }

    .ra_parts_02 .eng::after {
        margin-left: 1rem;
        border-top: 2px solid #16a8b2;
    }

    .ra_parts_02 .ra_ttl {
        margin: 2rem 0 0;
        font-size: 2rem;
    }

    .ra_parts_02 .ra_parts_block {
        display: block;
        margin: 4rem 0 0;
    }

    .ra_parts_02 .item {
        width: 95%;
        margin: 0 0 4rem auto;
        padding: 2rem 2rem 2rem 9rem;
        border-radius: 8px;
    }

    .ra_parts_02 .item:nth-child(even) {
        margin: 0 0 4rem auto;
    }

    .ra_parts_02 .item:last-child {
        margin: 0 0 0 auto;
    }

    .ra_parts_02 .img_box {
        top: -15px;
        left: -20px;
        width: 30%;
    }

    .ra_parts_02 .img_box img {
        border-radius: 8px;
    }

    .ra_parts_02 .txt {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .ra_parts_02 .btn-link a {
        margin: 1rem 0 0;
    }
}

/*--------------------------------------
　summary_parts_03
---------------------------------------*/
.summary_parts_03 {
    margin: 10rem 0 10rem;
}

.summary_parts_03 p {
    margin: 0 0 0;
}

.summary_parts_03 .summary_parts_block {
    background: url("img/bg_02.jpg") center top repeat;
    background-size: 100% auto;
    padding: 5rem 6rem 6rem;
    border: 4px solid #16a8b2;
}

.summary_parts_03 .upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary_parts_03 .upper_l {
    width: 220px;
}

.summary_parts_03 .upper_r {
    width: calc(100% - 220px);
    padding: 0 0 0 5rem;
}

.summary_parts_03 .sub {
    font-size: 1.8rem;
    font-weight: bold;
    color: #17a9b3;
}

.summary_parts_03 .cc {
    margin: 1rem 0 0;
    font-size: 2.4rem;
}

.summary_parts_03 .txt {
    margin: 3rem 0 0;
}

.summary_parts_03 .btn_box {
    margin: 4rem 0 0;
}

.summary_parts_03 .btn_box p {
    width: 380px;
    margin: 0 1rem;
}

.summary_parts_03 .btn-link a {
    margin: 3rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
    .summary_parts_03 {
        margin: 6rem 0 6rem;
    }

    .summary_parts_03 .summary_parts_block {
        padding: 2rem;
        border: 2px solid #16a8b2;
    }

    .summary_parts_03 .upper {
        display: block;
    }

    .summary_parts_03 .upper_l {
        width: 5rem !important;
        margin-bottom: -3.6rem;
    }

    .summary_parts_03 .upper_r {
        width: 100%;
        margin: 2rem 0 0;
        padding: 0 0 0 0;
    }

    .summary_parts_03 .sub {
        font-size: 1.4rem;
        padding-left: 6rem;
    }

    .summary_parts_03 .cc {
        font-size: 1.8rem;
    }

    .summary_parts_03 .txt {
        margin: 2rem 0 0;
    }

    .summary_parts_03 .btn_box {
        margin: 3rem 0 0;
    }

    .summary_parts_03 .btn_box p {
        width: 100%;
        margin: 0 0 1.5rem;
    }

    .summary_parts_03 .btn_box p:last-child {
        margin: 0 0 0;
    }

    .summary_parts_03 .btn-link a {
        margin: 2rem 0 0;
    }
}
