@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */


/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
    font-display: swap;
}


/*----------------------------------------------------------------------------
　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;
    box-sizing: border-box;
}

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: #222;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: none;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

a {
    color: #222;
    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%;
}

.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: #03bfa6;
}

.fb {
    font-weight: bold;
}

.fb span {
    font-weight: bold;
}


/* 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;
    }
}


/*--------------------------------------
　Header
---------------------------------------*/

header {
    width: 100%;
    min-width: 1000px;
    box-sizing: border-box;
}

header .sitename_wrap {
    background: #03bfa6;
    padding: 5px 1.5rem;
    text-align: right;
}

header .sitename {
    display: inline-block;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
    position: relative;
}

header .sitename::before {
    content: "PR";
    display: inline-block;
    background: #fff;
    margin: 0 5px 0 0;
    padding: 2px 5px;
    color: #03bfa6;
    font-size: 1.5rem;
    line-height: 1;
}

header .sitename a {
    color: #fff;
}

.header_lower .logo_wrap {
    background: url("img/header_lower_bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 2.5rem 0;
    text-align: center;
}

.header_lower .logo_wrap a {
    display: inline-block;
}

.header_lower .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_lower .logo_img {
    width: 90px;
}

.header_lower .logo_txt {
    margin: 0 0 0 2rem;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    header {
        min-width: 100%;
    }
    header .sitename_wrap {
        padding: 5px 5px;
        text-align: left;
    }
    header .sitename::before {
        margin: 0 3px 0 0;
        padding: 2px 3px;
    }
    .header_lower .logo_wrap {
        background: url("img/header_lower_bg.jpg") center center no-repeat;
        background-size: cover;
        padding: 1rem 1rem;
        text-align: center;
    }
    .header_lower .logo_img {
        width: 50px;
    }
    .header_lower .logo_txt {
        margin: 0 0 0 1rem;
        font-size: 1.5rem;
    }
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/


/*----- hb-menu -----*/

#hb-menu {
    display: table;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: #03bfa6;
    box-sizing: border-box;
    border-radius: 3px;
    cursor: pointer;
    z-index: 10000;
}

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

#hb-menu span {
    display: block;
    background: #fff;
    width: 34px;
    height: 1px;
    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: 11px;
}


/* ナビゲーションアイコン：アクティブ */

.hb-open #hb-menu span:nth-of-type(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    -ms-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) 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(-9px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
    transform: translateY(-9px) 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: 8rem 8rem;
    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);
}

.hb_menu_wrapper {
    max-width: 100%;
    margin: 4rem auto 0;
}

.hb_menu {
    margin-bottom: 0;
}

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

.hb_menu_title {
    padding: 2.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(34, 34, 34, 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: 1px solid #222;
    border-right: 1px solid #222;
    -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;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

.hb_menu_list_link::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    background: rgba(34, 34, 34, 0.16);
    width: 8px;
    height: 1px;
}

.g-nav .logo a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.g-nav .logo_img {
    width: 90px;
}

.g-nav .logo_txt {
    margin: 0 0 0 2rem;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    /*----- hb-menu -----*/
    #hb-menu {
        top: 5px;
        right: 5px;
        width: 50px;
        height: 50px;
        border-radius: 2px;
    }
    #hb-menu span {
        width: 22px;
    }
    #hb-menu span:nth-of-type(2),
    #hb-menu span:nth-of-type(3) {
        margin-top: 7px;
    }
    /* ナビゲーションアイコン：アクティブ */
    .hb-open #hb-menu span:nth-of-type(1) {
        -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
        -ms-transform: translateY(7px) translateX(0) rotate(45deg);
        transform: translateY(7px) 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(-7px) translateX(0) rotate(-45deg);
        -ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
        transform: translateY(-7px) translateX(0) rotate(-45deg);
    }
    /*----- g-nav -----*/
    .g-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
    }
    .g-nav .g-nav-inner {
        width: 100%;
        padding: 4rem 2rem;
    }
    .hb_menu_wrapper {
        max-width: 100%;
        margin: 1rem auto 0;
    }
    .hb_menu_title {
        padding: 1.5rem 2.5rem 1.5rem 0;
        border-bottom: 1px solid rgba(34, 34, 34, 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 #222;
        border-right: solid 1px #222;
        -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 #222;
        border-right: solid 1px #222;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .hb_menu_list {
        display: none;
        margin-top: 0;
    }
    .hb_menu_list_item {
        margin: 0 0 0 0;
        border-bottom: 1px solid rgba(34, 34, 34, 0.16);
    }
    .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 #222;
        border-right: 1px solid #222;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .g-nav .logo_img {
        width: 50px;
    }
    .g-nav .logo_txt {
        margin: 0 0 0 1rem;
        font-size: 1.5rem;
    }
}


/*--------------------------------------
　Pankuzu
---------------------------------------*/

#pankuzu {
    width: 900px;
    margin: 4rem auto 0;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

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

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


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    #pankuzu {
        width: 100%;
        margin: 2rem auto 0;
        padding: 0 1.5rem 0.5rem 1.5rem;
        box-sizing: border-box;
        font-size: 1.2rem;
        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: #555;
    width: 100%;
    min-width: 1000px;
    box-sizing: border-box;
}

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

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

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

.l-footer-logo a {
    display: inline-block;
}

.l-footer-logo .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-footer-logo .logo_img {
    width: 100px;
}

.l-footer-logo .logo_txt {
    margin: 0 0 0 2rem;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}

.l-footer-logo .logo_txt br {
    display: block;
}

.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 #fff;
    position: relative;
}

.l-footer-menu__title__link {
    display: inline-block;
    padding: 0 4rem 0 0;
    color: #fff;
    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;
    background: url("img/arrow_04.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
}

.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 3rem 0 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

.l-footer-menu__list__link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_04.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
}

.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;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

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

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

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

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

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

.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;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.5;
}

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

.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 #fff;
    border-right: 1px solid #fff;
    -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: 4rem 2rem 4rem;
    }
    .l-footer-logo .logo_img {
        width: 60px;
    }
    .l-footer-logo .logo_txt {
        margin: 0 0 0 1rem;
        font-size: 1.7rem;
    }
    .l-footer-menu-wrapper {
        margin: 2rem auto 0;
    }
    .l-footer-menu {
        margin-bottom: 0;
    }
    .l-footer-menu__title {
        padding: 1.5rem 2.5rem 1.5rem 0;
    }
    .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 #fff;
        border-right: solid 1px #fff;
        -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 #fff;
    }
    .l-footer-menu__list__item:first-child {
        display: block;
    }
    .l-footer-menu__list__link {
        padding: 1.5rem 2rem 1.5rem 1.5rem;
    }
    .l-footer-menu__list__link:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        background: none;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -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 #fff;
    }
    .l-footer-submenu__list__link {
        padding: 1.5rem 0 1.5rem 3rem;
    }
    .l-footer-submenu__list__link::before {
        top: 26px;
        left: 15px;
        width: 6px;
    }
    .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;
        font-size: 1.2rem;
        text-align: center;
    }
    .sitemap {
        margin: 2rem 0 0 0;
        text-align: center;
    }
    .sitemap a {
        padding: 0 1rem 0 0;
        font-size: 1.4rem;
        color: #fff;
        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 #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}


/*--------------------------------------
　PageTop
---------------------------------------*/

.l-pagetop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 65px;
    z-index: 1;
}

.l-pagetop__link {
    display: block;
    transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .l-pagetop {
        bottom: 20px;
        right: 5px;
        width: 40px;
    }
}


/*--------------------------------------
　Main Contents
---------------------------------------*/

.contents {
    width: 100%;
    min-width: 1000px;
    margin: auto;
    padding: 6rem 0 12rem;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

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


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .contents {
        width: 100%;
        min-width: 100%;
        padding: 4rem 1.5rem 6rem;
    }
    #category,
    #page {
        width: 100%;
    }
}


/*--------------------------------------
　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;
}

#category h1,
#page h1 {
    margin: 0 0 5rem;
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    position: relative;
}

#category h1::before,
#page h1::before {
    content: "DATALESS CLIENT";
    display: block;
    color: #03bfa6;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 1rem;
}

#category h2,
#page h2 {
    background: #03bfa6;
    margin: 4rem 0 2rem;
    padding: 2rem 3rem 2rem 4rem;
    color: #fff;
    font-size: 3.4rem;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}

#category h2::after,
#page h2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("img/ttlbg_01.png") left top repeat-y;
    background-size: 100% auto;
    width: 280px;
    height: 100%;
    mix-blend-mode: multiply;
    z-index: -1;
}

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

#category h2 a::before,
#page h2 a::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -40px;
    width: calc(100% + 7rem);
    height: calc(100% + 4rem);
}

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

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

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

#category h3::after,
#page h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    background: #03bfa6;
    width: 9px;
    height: 9px;
    box-sizing: border-box;
    border-radius: 50%;
}

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

#category h3 a::before,
#page h3 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 1.5rem);
}

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

#category h4,
#page h4 {
    color: #03bfa6;
    margin: 4rem 0 2rem;
    font-size: 2.2rem;
}

#category h4 a,
#page h4 a {
    display: inline-block;
    padding: 0 4rem 0 0;
    color: #03bfa6;
    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: 30px;
    height: 24px;
    margin-top: -12px;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    #category h1,
    #page h1 {
        margin: 0 0 4rem;
        font-size: 2.6rem;
    }
    #category h1::before,
    #page h1::before {
        font-size: 1.6rem;
        margin: 0 0 5px;
    }
    #category h2,
    #page h2 {
        margin: 3rem 0 2rem;
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
        font-size: 2.4rem;
        border-radius: 3px;
    }
    #category h2::after,
    #page h2::after {
        background: url("img/ttlbg_01.png") left top repeat-y;
        background-size: 100% auto;
        width: 40%;
        height: 100%;
    }
    #category h2 a,
    #page h2 a {
        padding: 0 4rem 0 0;
    }
    #category h2 a::before,
    #page h2 a::before {
        top: -25px;
        left: -25px;
        width: calc(100% + 3rem);
        height: calc(100% + 3rem);
    }
    #category h2 a::after,
    #page h2 a::after {
        background: url("img/arrow_01.png") left top no-repeat;
        background-size: contain;
        width: 24px;
        height: 18px;
        margin-top: -9px;
    }
    #category h3,
    #page h3 {
        margin: 3rem 0 2rem;
        padding: 0 0 1rem 4rem;
        font-size: 2.2rem;
        border-bottom: 1px solid #03bfa6;
    }
    #category h3::before,
    #page h3::before {
        top: 0;
        background: url("img/icon_h3.png") left top no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
    }
    #category h3::after,
    #page h3::after {
        bottom: -3px;
        width: 5px;
        height: 5px;
    }
    #category h3 a,
    #page h3 a {
        padding: 0 4rem 0 0;
    }
    #category h3 a::before,
    #page h3 a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 1.5rem);
    }
    #category h3 a::after,
    #page h3 a::after {
        background: url("img/arrow_02.png") left top no-repeat;
        background-size: contain;
        width: 20px;
        height: 15px;
        margin-top: -7px;
    }
    #category h4,
    #page h4 {
        margin: 3rem 0 2rem;
        font-size: 2rem;
    }
    #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: 18px;
        height: 14px;
        margin-top: -7px;
    }
}


/*--------------------------------------
　テキスト
---------------------------------------*/

.contents p {
    margin: 2rem 0 2rem;
    font-size: 1.5rem;
    line-height: 2;
}

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

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

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

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

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;
    scrollbar-width: none;
}

p.caption::-webkit-scrollbar {
    display: none;
}

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


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .contents p {
        margin: 2rem 0 2rem;
        line-height: 1.8;
    }
    p.caption {
        margin: 1rem 0 0 0!important;
        font-size: 1rem;
    }
}


/*--------------------------------------
　リスト
---------------------------------------*/


/*----- ulリスト -----*/

.contents ul {
    margin: 4rem 0 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: 12px;
    left: 0;
    background: #fe584c;
    width: 9px;
    height: 9px;
    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;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    /*----- ulリスト -----*/
    .contents ul {
        margin: 2rem 0 2rem;
    }
    .contents ul li {
        padding: 0 0 0 1.5rem;
        font-size: 1.4rem;
        line-height: 1.6;
    }
    .contents ul li::before {
        top: 10px;
        width: 7px;
        height: 7px;
    }
}


/*--------------------------------------
　リンク
---------------------------------------*/

.btn-web a,
.btn-internal a {
    display: block;
    max-width: 410px;
    margin: 4rem auto 4rem;
    padding: 2.5rem 4rem;
    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 a::after,
.btn-internal a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    background: url("img/arrow_04.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
}


/*----- btn-web（外部リンク） -----*/

.btn-web a {
    background: #fe584c;
    box-shadow: 0px 6px 15px 0px rgba(167, 11, 0, 0.3);
}


/*----- btn-internal（内部リンク） -----*/

.btn-internal a {
    background: #03bfa6;
    box-shadow: 0px 6px 15px 0px rgba(0, 150, 130, 0.3);
}


/*----- 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_05.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
}

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


/*----- btn-tel（電話ボタン） -----*/

.btn-tel a {
    display: none;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .btn-web a,
    .btn-internal a {
        max-width: 90%;
        margin: 3rem auto 3rem;
        padding: 1.8rem 4rem;
    }
    .btn-web a::after,
    .btn-internal a::after {
        top: 50%;
        right: 15px;
        background: url("img/arrow_04.png") left top no-repeat;
        background-size: contain;
        width: 16px;
        height: 13px;
        margin-top: -6px;
    }
    /*----- btn-link（テキストリンク） -----*/
    .btn-link a {
        margin: 3rem 0 3rem;
        padding: 0 2rem 0 0;
        font-size: 1.5rem;
    }
    .btn-link a::after {
        background: url("img/arrow_05.png") left top no-repeat;
        background-size: contain;
        width: 16px;
        height: 13px;
        margin-top: -6px;
    }
    /*----- btn-tel（電話ボタン） -----*/
    .btn-tel a {
        display: block;
        background: #F7BB2B 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.5rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.5;
        border-radius: 100px;
        text-decoration: none!important;
        box-shadow: 0px 6px 15px 0px rgba(247, 187, 43, 0.3);
        position: relative;
    }
}


/*--------------------------------------
　Table
---------------------------------------*/

table {
    background: #fff;
    width: 100%;
    margin: 8rem 0 8rem;
    box-sizing: border-box;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #c8c8c8;
}

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

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.4rem;
    line-height: 1.4;
    word-break: break-all;
    border-left: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
}

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;
    }
    table th {
        display: block;
        padding: 1.2rem;
        font-size: 1.4rem;
        border-left: none;
        border-bottom: 1px solid #c8c8c8;
    }
    table td {
        display: block;
        padding: 1.2rem;
        font-size: 1.4rem;
        border-left: none;
        border-bottom: 1px solid #c8c8c8;
    }
    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;
    vertical-align: top;
}

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

.float-img.fr {
    float: right;
    width: 360px;
    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-wrap .catch-copy {
    margin: 2rem 0 2rem 0;
    color: #03bfa6;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;
}

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


/* 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-img .caption {
        margin: 1rem 0 1.5rem 0;
    }
    .float-wrap .catch-copy {
        margin: 1.5rem 0 1.5rem 0;
        font-size: 1.8rem;
    }
    .float-wrap p {
        margin: 1.5rem 0 1.5rem;
    }
}


/*--------------------------------------
　toc_parts
---------------------------------------*/

.toc_parts {
    background: #fff;
    max-width: 800px;
    margin: 10rem auto 10rem;
    padding: 5rem 5rem 5rem;
    box-sizing: border-box;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}

.toc_parts .toc_ttl {
    padding: 0 0 2rem 1.5rem;
    font-size: 2.4rem;
    font-weight: bold;
    border-bottom: 1px dashed #dfdfdf;
    position: relative;
    cursor: pointer;
}

.toc_parts .toc_ttl::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    background: #03bfa6;
    width: 4px;
    height: 22px;
    box-sizing: border-box;
}

#toc {
    background: #fff;
    margin: 3rem 0 0 0;
    padding: 0 0;
}

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

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

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

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

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

#toc ol.chapter li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("img/arrow_05.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-top: -8px;
    transform: rotate(90deg);
}

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


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .toc_parts {
        max-width: 100%;
        margin: 6rem auto 6rem;
        padding: 3rem 2rem 3rem;
        border-radius: 5px;
    }
    .toc_parts .toc_ttl {
        padding: 0 0 1.5rem 1rem;
        font-size: 1.8rem;
    }
    .toc_parts .toc_ttl::before {
        top: 3px;
        width: 2px;
        height: 16px;
    }
    #toc {
        margin: 2rem 0 0 0;
    }
    #toc ol.chapter li {
        margin: 0 0 1rem 0;
        padding: 0 0 0 3rem;
        font-size: 1.4rem;
        line-height: 1.6;
    }
    #toc ol.chapter li::before {
        top: -5px;
        font-size: 1.8rem;
    }
    #toc ol.chapter li a {
        padding: 0 2.5rem 0 0;
    }
    #toc ol.chapter li a::after {
        background: url("img/arrow_05.png") left top no-repeat;
        background-size: contain;
        width: 16px;
        height: 13px;
        margin-top: -6px;
    }
}


/*--------------------------------------
　comment_parts
---------------------------------------*/

.comment_parts {
    margin: 10rem 0 10rem;
    padding: 0 0 8rem;
    position: relative;
}

.comment_parts::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    background: #03bfa6;
    width: calc(100% + 150px);
    height: calc(100% - 60px);
    box-sizing: border-box;
    border-radius: 0 20px 20px 0;
}

.comment_parts::after {
    content: "";
    position: absolute;
    top: 60px;
    right: 100%;
    background: #03bfa6;
    width: 100vw;
    height: calc(100% - 60px);
    box-sizing: border-box;
}

.comment_block {
    background: #fff;
    max-width: 850px;
    margin: auto;
    padding: 0 5rem 5rem;
    border: 1px solid #03bfa6;
    border-radius: 10px;
    position: relative;
}

.comment_block .sb {
    display: inline-block;
    background: #fe584c;
    padding: 1.5rem 3rem 1.5rem 3rem;
    font-size: 2rem;
    line-height: 1.4;
    border-radius: 20px;
    position: relative;
    top: -30px;
}

.comment_block .sb::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 60px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 16px 12px 0;
    border-color: transparent #fe584c transparent transparent;
}

.comment_block .sb.ch {
    padding: 1.5rem 3rem 1.5rem 6rem;
}

.comment_block .sb.ch::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    background: url("img/icon_check.png") left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.comment_block .cc {
    font-size: 2.5rem;
}

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

.comment_block .btn-internal a {
    margin: 3rem auto 0;
}

.comment_block .navi {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 150px;
}

.comment_block .list li {
    padding: 0 0 0 2rem;
    margin: 0 0 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
}

.comment_block .list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    background: #fe584c;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border-radius: 50%;
}

.comment_block .list li:last-child {
    margin: 0 0 0;
}

.comment_block .list li span {
    font-weight: bold;
}

.comment_parts .bottom_txt {
    margin: 2rem 0 0;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .comment_parts {
        margin: 6rem 0 6rem;
        padding: 0 0 5rem;
    }
    .comment_parts::before {
        top: 50px;
        width: calc(100% + 5px);
        height: calc(100% - 50px);
        border-radius: 0 10px 10px 0;
    }
    .comment_parts::after {
        top: 50px;
        height: calc(100% - 50px);
    }
    .comment_block {
        max-width: calc(100% - 2rem);
        margin: auto;
        padding: 0 2rem 6rem;
        border-radius: 5px;
    }
    .comment_block .sb {
        padding: 5px 2rem 5px 2rem;
        font-size: 1.7rem;
        top: -20px;
    }
    .comment_block .sb::after {
        left: 30px;
        border-width: 0 12px 10px 0;
    }
    .comment_block .sb.ch {
        padding: 8px 2rem 8px 4rem;
    }
    .comment_block .sb.ch::before {
        left: 15px;
        background: url("img/icon_check.png") left top no-repeat;
        background-size: contain;
        width: 20px;
        height: 20px;
    }
    .comment_block .cc {
        font-size: 2rem;
    }
    .comment_block .txt {
        margin: 1.5rem 0 0;
    }
    .comment_block .btn-internal a {
        margin: 2rem auto 0;
    }
    .comment_block .navi {
        bottom: -47px;
        right: -10px;
        width: 30%;
    }
    .comment_block .list li {
        padding: 0 0 0 1.5rem;
        margin: 0 0 1rem;
        font-size: 1.6rem;
    }
    .comment_block .list li::before {
        top: 10px;
        width: 7px;
        height: 7px;
    }
    .comment_parts .bottom_txt {
        margin: 1.5rem 0 0;
        font-size: 1.6rem;
    }
}


/*--------------------------------------
　bnr_parts
---------------------------------------*/

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

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

.bnr_block .bnr_item {
    width: 460px;
}

.bnr_block .bnr_item a {
    display: block;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .bnr_parts {
        margin: 6rem 0 6rem;
    }
    .bnr_block {
        display: block;
    }
    .bnr_block .bnr_item {
        width: 100%;
        margin: 0 0 1rem;
    }
    .bnr_block .bnr_item:last-child {
        margin: 0 0 0;
    }
}


/*--------------------------------------
　fixed_bnr
---------------------------------------*/

.fixed_bnr {
    position: fixed;
    bottom: 150px;
    right: 0;
    width: 260px;
    z-index: 2;
}


/* SP ------------------------------*/

@media screen and (max-width: 768px) {
    .fixed_bnr {
        position: fixed;
        bottom: 0;
        left: 0;
        right: inherit;
        width: calc(100% - 65px);
        transition: all 0.3s ease;
    }
    .fixed_bnr.stop {
        visibility: hidden;
    }
    .fixed_bnr.stop a {
        pointer-events: none;
    }
}


/* 3つ並びボックス */

.box-wrap.column3 {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box-wrap.column3 .box_wrapper {
    width: calc((100% - 20px) / 3);
}

.box-wrap.column3 .box_wrapper .comment_block {
    max-width: 100%;
    padding: 0;
    border: none;
    margin: 0;
    background: none;
}

.box-wrap.column3 .box_wrapper .comment_block .sb {
    display: block;
    text-align: center;
    top: 0;
}

.column3 .basic-column-box {
    width: calc((100% - 20px) / 3);
    position: relative;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.box-wrap.column3 .box_wrapper .basic-column-box {
    width: 100%;
    padding: 0 0 60px;
}

#category .column3 .basic-title,
#page .column3 .basic-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    padding: 0 30px;
    margin: 0 -10px;
    border-bottom: 1px solid #635246;
    padding: 10px 20px 20px 20px;
    position: relative;
}

.box-wrap.column3 .box_wrapper .basic-column-box .basic-title {
    background: #03bfa6;
    margin: 3rem 0 2rem;
    padding: 3rem 2rem;
    color: #fff;
    font-size: 2.2rem;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
    z-index: 0;
    min-height: 126px;
    display: grid;
    place-content: center;
    line-height: 1.4;
}

.box-wrap.column3 .box_wrapper .basic-column-box .basic-title .basic-title__wrap {
    font-weight: bold;
    text-align: center;
}

.box-wrap.column3 .box_wrapper .basic-column-box .basic-title:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url(img/ttlbg_02.png) right center no-repeat;
    background-size: 100% auto;
    width: 320px;
    height: 100%;
    mix-blend-mode: multiply;
    z-index: -1;
}

.box-wrap.column3 .box_wrapper .basic-column-box .btn_wrapper {
    width: 80%;
    margin: 0 auto;
}

.box-wrap.column3 .box_wrapper .basic-column-box .btn_wrapper .btn-internal a,
.box-wrap.column3 .box_wrapper .basic-column-box .btn_wrapper .btn-web a {
    margin: 2rem auto 2rem;
}

.box-wrap.column3 .box_wrapper .basic-column-box .btn-internal a::after {
    transform: rotate(90deg);
}

#category .column3 .basic-title a,
#page .column3 .basic-title a {
    text-decoration: none;
    color: #635246;
    padding-right: 20px;
    display: inline-block;
    position: relative;
}

#category .column3 .basic-title a:hover,
#page .column3 .basic-title a:hover {
    opacity: .7;
}

#category .column3 .basic-title::after,
#page .column3 .basic-title::after {
    display: none;
}

#category .column3 .basic-title a::after,
#page .column3 .basic-title a::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #635246;
    border-right: 2px solid #635246;
    position: absolute;
    top: 50%;
    right: -5px;
    -webkit-transform: rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    content: '';
    vertical-align: middle;
}

.column3 .image-static {
    width: 80%;
    margin: 0 auto;
}

.column3 .catch-listArea,
.column3 .catch-textArea01,
.column3 .catch-textArea02,
.column3 .catch-textArea03{
    width: 80%;
    margin: 0 auto;
}

.column3 .catch-textArea02 {
    margin: 0 auto 4rem;
}

.column3 .catch-textArea01 .catch-text,
.column3 .catch-textArea02 .catch-text {
    text-align: center;
}

.column3 .catch-listArea ul li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 2rem;
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    font-weight: bold;
}

.column3 .catch-listArea ul li span {
    color: #03bfa6;
    font-weight: bold;
}

.column3 .catch-listArea ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    background: #fe584c;
    width: 9px;
    height: 9px;
    box-sizing: border-box;
    border-radius: 50%;
}

.column3 .image-text__image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.column3 .image-text__image img {
    vertical-align: middle;
    width: 100%;
}

.column3 .image-text__caption {
    display: block;
    padding: 5px 0;
    text-align: center;
    word-wrap: break-word;
    font-size: 1rem;
    color: #888;
}

#category .basic-column-box .catch-copy,
#page .basic-column-box .catch-copy {
    margin: 20px auto 10px;
    color: #333;
    font-size: 16px;
}

.column3 .catch-copy {
    font-weight: bold;
    position: relative;
}

.column3 .image-text__textarea {
    line-height: 1.8;
    font-size: 16px;
}

.column3 .paragraph-frame p {
    font-size: 14px;
}

#category .column3 .contents-list,
#page .column3 .contents-list {
    width: 90%;
    margin: 20px auto;
}

#category .column3 .contents-list li,
#page .column3 .contents-list li {
    position: relative;
    padding-left: 20px;
    display: inline-block;
    font-size: 14px;
    border-bottom: none;
    margin: 0 0 7px;
    line-height: 1.4;
}

#category .column3 .contents-list li::before,
#page .column3 .contents-list li::before {
    content: '';
    display: block;
    background-color: #635246;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    border-radius: 50px;
}

.column3 .table-normal {
    width: 90%;
    margin: 20px auto 10px;
    color: #333;
}

.column3 .table-normal table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #635246;
    background-color: #fff;
}

.column3 .first-row table th {
    background-color: skyblue;
}

.column3 table th,
.column3 table td,
.table-normal table tbody td {
    border-left: 1px solid #635246;
    text-align: center;
}

.column3 table th,
.column3 table td {
    border: 0;
    border-bottom: 1px solid #635246;
    padding: 8px;
    word-break: break-all;
}

#category .column3 .btn-web a,
#page .column3 .btn-web a,
#category .column3 .btn-internal a,
#page .column3 .btn-internal a {
    width: 80%;
    margin: 0 auto 24px;
    width: 90%;
    margin: 0 auto 15px;
    font-size: 16px;
    padding: 10px 39px 10px 10px;
}

@media screen and (max-width: 480px) {
    /*3つ並びボックス*/
    .column3 .basic-column-box {
        width: 100%;
        margin: 0 0 20px;
        padding: 3%;
    }
    #category .column3 .basic-title,
    #page .column3 .basic-title {
        font-size: 20px;
        margin: 0;
        padding: 10px;
    }
    #category .column3 .basic-title a,
    #page .column3 .basic-title a {
        display: block;
    }
    #category .column3 .basic-title a::after,
    #page .column3 .basic-title a::after {
        right: 0;
    }
    .column3 .image-text-area {
        display: block;
        padding: 0;
        margin: 20px auto;
    }
    .column3 .image-text__image {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .column3 .box-wrap .basic-column-box .catch-copy {
        font-size: 18px;
        line-height: 1.5;
        padding: 0;
        margin: 10px auto;
    }
    #category .column3 .btn-web a,
    #page .column3 .btn-web a,
    #category .column3 .btn-internal a,
    #page .column3 .btn-internal a,
    #category .column3 .btn-tel a,
    #page .column3 .btn-tel a {
        width: 80%;
        margin: 0 auto 14px;
    }
    .box-wrap.column3 .box_wrapper {
        width: 92%;
        margin: 0 auto;
    }
}