/* =================================
 Reset / Base
================================= */


/* 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: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: '';
    content: none;
}

a img {
    border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

input[type='button'],
input[type='submit'] {
    -webkit-appearance: none;
}


/* base
---------------------------------------------------------- */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
}

body {
    width: 100%;
    height: 100%;
    min-width: 1100px;
    line-height: 1.8;
    background-color: #fff;
    color: #222;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'palt';
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
    background: #95e1d7;
    border-radius: 3px;
}

img {
    border-style: none;
    display: block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

a,
a img,
button {
    transition: .4s;
}

a {
    display: block;
}

a:link {
    color: #353694;
    text-decoration: none;
}

a:visited {
    color: #353694;
}

a:active {
    color: #353694;
}


/* clearfix
---------------------------------------------------------- */

.u-clearfix:after {
    content: '';
    clear: both;
    display: block;
}


/* common
---------------------------------------------------------- */

.u-only_sp {
    display: none;
}

.u-only_se {
    display: none;
}

.u-only_pc {
    display: block;
}

.l-flex {
    display: flex;
    justify-content: space-between;
}


/* header
---------------------------------------------------------- */

.l-header {
    position: fixed;
    width: 100%;
    /*  min-width: 1080px;*/
    z-index: 9999;
    padding: 0 30px;
}

.l-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200px;
    background-image: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: -1;
}

.l-header.on::after {
    transform: translateX(-100%);
    transition: .6s;
}

.l-header_main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.l-header_logo a {
    z-index: 10000;
    display: flex;
    transition: .2s;
    align-items: center;
}

.l-header_logo a p {
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 1em;
    padding-left: 25px;
    color: #383632;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: .05em;
}

.l-header_logo img {
    width: 100px;
    height: 100px;
}

.l-header_right {
    display: flex;
    align-items: center;
}

.l-header_tel {
    margin-right: 30px;
}

.l-header_tel_sub {
    color: #666;
    font-size: 13px;
    font-size: 1.3rem;
}

.l-header_tel_main {
    font-family: 'Lato';
    font-size: 24px;
    font-size: 2.4rem;
    color: #383632;
    text-align: right;
    line-height: 1;
}

.l-header_insta {
    display: flex;
    width: 70px;
    height: 70px;
    background-color: #eef6f5;
    border-radius: 35px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
}

.l-header_mail {
    background-color: #46bdd4;
}

.l-header_insta img {
    width: 30px;
    height: 30px;
}

.hamburger {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #06cfd3;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    left: 23px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 28px;
}

.hamburger span:nth-child(2) {
    top: 35px;
}

.hamburger span:nth-child(3) {
    top: 42px;
}


/* ナビ開いてる時のボタン */

.hamburger.active span:nth-child(1) {
    top: 33px;
    left: 24px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 33px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

nav.globalMenu {
    position: fixed;
    z-index: 2;
    top: 0px;
    right: 0;
    padding-top: 90px;
    color: #000;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-items: center;
}

.line-img {
    width: 65px;
    margin-right: 5px;
}

@media screen and (min-width: 768px) {
    _:-ms-input-placeholder,
     :root .nav.globalMenu {
        padding-top: 120px;
    }

    .line-img {
        width: 180px;
        margin-right: 20px;
    }
}

.globalMenu_inner {
    width: 750px;
    margin: auto;
}

.l-header_ttl {
    border-bottom: solid 1px;
    font-size: 18px;
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Shippori Mincho', serif;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: left;
    color: #68c3c5;
}

.l-header_item+.l-header_ttl {
    margin-top: 40px;
}

.l-header_item {
    display: flex;
    margin: auto;
}

.l-header_item ul {
    width: 50%;
}

.l-header_item ul li {
    position: relative;
    padding-left: 1em;
    text-align: left;
}

.l-header_item ul li a {
    color: inherit;
}

.l-header_item ul li::before {
    content: ">";
    display: inline-block;
    position: absolute;
    left: 0;
    transform: scale(0.5, 1);
}


/* このクラスを、jQueryで付与・削除する */

nav.globalMenu.active {
    transform: translateY(0%);
}

.l-header_txt {
    color: #666;
    font-size: 10px;
    font-size: 1rem;
    line-height: 30px;
}


/* layout
---------------------------------------------------------- */

.l-bg_ble {
    background-image: -moz-linear-gradient(0deg, rgb(0, 153, 214) 0%, rgb(52, 180, 212) 43%, rgb(103, 207, 209) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(0, 153, 214) 0%, rgb(52, 180, 212) 43%, rgb(103, 207, 209) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(0, 153, 214) 0%, rgb(52, 180, 212) 43%, rgb(103, 207, 209) 100%);
}

.l-bg_lible {
    background-color: #eef6f5;
}

.l-bg_l {
    background: #f8f7f3;
}

.l-cont {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
}

.l-cont_s {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 30px;
}

.l-cont_l {
    width: 96%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page .l-main {
    padding-bottom: 100px;
}

.l-column_wrap {
    display: flex;
    justify-content: space-between;
}

.l-column_main {
    width: 80%;
    flex: 1;
}

.l-column_side {
    width: 20%;
    min-width: 250px;
    margin-left: 50px;
}

.l-inner {
    margin-bottom: 80px;
}

.l-inner:last-of-type {
    margin-bottom: 0;
}

.l-box {
    padding-bottom: 60px;
}

.l-inner .l-box:last-of-type {
    padding-bottom: 0;
}

.l-box_inner {
    padding-bottom: 40px;
}

.l-inner .l-box_inner:last-of-type {
    padding-bottom: 0;
}

.l-btn_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.l-unchor {
    display: flex;
    justify-content: space-between;
    margin-top: -30px;
}

.l-unchor li {
    width: 30%;
    display: block;
    text-align: center;
    background-color: #f1f4f5;
}

.l-unchor li a {
    color: #222;
    line-height: 55px;
}

.l-flex_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l-flex_cont_ttl {
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    color: #16195c;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.l-flex_cont_ttl::after {
    content: "";
    height: 1px;
    top: 50%;
    left: 110%;
    bottom: 50%;
    width: 200px;
    position: absolute;
    margin: auto;
    background-color: #333;
}

.l-flex_cont>li {
    width: 49%;
}

.l-txtindent {
    text-indent: -1em;
    margin-left: 1em;
}


/* subpage
  ---------------------------------------------------------- */

.l-sub_top {
    height: 670px;
    position: relative;
}

.l-sub_top_txt {
    width: 700px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
}

.l-sub_top_ttl {
    font-family: 'Shippori Mincho', serif;
}

.l-sub_top_ttl_en {
    display: block;
    font-size: 20px;
    font-size: 2rem;
}

.l-sub_top_ttl_jp {
    display: block;
    font-size: 44px;
    font-size: 4.4rem;
}


/* footer
---------------------------------------------------------- */

.l-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1;
}

.l-link li {
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.l-link li::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.l-link li:nth-child(1) {
    width: calc((100% - 1px) / 2);
    padding: 50px 70px 50px calc((100% - 1280px) / 2);
    background-image: url(../../common/img/bnr_01.webp);
    background-size: cover;
    background-position: center center;
}

@media screen and (min-width: 768px) {
    _:-ms-input-placeholder,
     :root .l-link li:nth-child(1) {
        padding: 50px 70px 50px;
    }
}

.l-link li:nth-child(2) {
    width: calc((100% - 1px) / 2);
    padding: 50px calc((100% - 1280px) / 2) 50px 70px;
    background-image: url(../../common/img/bnr_02.webp);
    background-size: cover;
    background-position: center center;
}

@media screen and (min-width: 768px) {
    _:-ms-input-placeholder,
     :root .l-link li:nth-child(2) {
        padding: 50px 70px 50px;
    }
}

.l-link li:nth-child(3) {
    margin-top: 1px;
    padding: 50px calc((100% - 1280px) / 2);
    background-image: url(../../common/img/bnr_03.webp);
    background-size: cover;
    background-position: center center;
}

.l-link_ttl {
    font-size: 28px;
    font-size: 2.8rem;
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 20px;
}

.l-footer {
    background: #28363b;
    color: #fff;
}

.l-footer_copyright {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    margin-top: 60px;
    font-family: 'Shippori Mincho', serif;
}

.l-footer_flex {
    display: flex;
    justify-content: space-between;
}

.l-footer_flex_left {
    width: 490px;
}

.l-footer_logo {
    display: flex;
    align-items: center;
    font-family: 'Shippori Mincho', serif;
    font-size: 26px;
    font-size: 2.6rem;
    color: #fff !important;
    margin-bottom: 20px;
}

.l-footer_logo img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.l-footer_info {
    font-size: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.l-footer_tel {
    font-size: 24px;
    font-size: 2.4rem;
    font-family: 'Lato';
    text-align: center;
}

.l-footer_flex_right {
    width: 730px;
}

.l-footer_table {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
}

.l-footer_table+small {
    font-size: 13px;
    font-size: 1.3rem;
    text-align: right;
    display: block;
}

.l-footer_table tr {
    border-bottom: solid 1px #fff;
}

.l-footer_table tr:first-child {
    border-top: solid 1px #fff;
}

.l-footer_table th {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: 'Shippori Mincho', serif;
}

.l-footer_table tr:nth-of-type(2) th {
    font-size: 15px;
    font-size: 1.5rem;
    text-align: left;
    width: 180px;
    padding-left: 20px;
    line-height: 1.5;
}

.l-footer_table tr:nth-of-type(2) th,
.l-footer_table tr:nth-of-type(2) td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.l-footer_table td {
    text-align: center;
}

.l-footer_btn_pos {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.l-footer_btn_pos .c-btn_wt:first-child {
    margin-right: 30px;
}

.l-footer_pagetop {
    position: fixed;
    width: 15px;
    height: 129px;
    z-index: 9998;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
}

.l-footer_ttl {
    border-bottom: solid 1px #fff;
    font-size: 18px;
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Shippori Mincho', serif;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.l-footer_inner {
    display: flex
}

.l-footer_nav {
    width: 50%;
}

.l-footer_nav a {
    color: inherit;
    font-size: 15px;
    font-size: 1.5rem;
}

.l-footer_nav a:hover {
    color: inherit;
}

.l-footer_nav li {
    position: relative;
    padding-left: 1em;
}

.l-footer_nav li::before {
    content: ">";
    display: inline-block;
    position: absolute;
    left: 0;
    transform: scale(0.5, 1);
}

.l-footer_btm {
    margin-top: 40px;
}


/*risk*/

.l-risk_ttl {
    font-weight: bold;
    font-size: 17px;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1.5em;
}

.l-risk_list {
    text-indent: -.5em;
    margin-left: .5em;
}


/*professional*/

.l-professional {
    padding: 0;
}

.l-professional_cont {
    padding: 30px;
    background-color: #f1f4f5;
    margin-bottom: 30px;
}

.l-professional_ttl {
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 1.3em;
}

.l-professional_cont ul {
    margin: 15px auto;
    text-indent: -.5em;
    margin-left: .5em;
}

.l-professional_cont small {
    font-size: 14px;
    font-size: 1.4rem;
}

.l-professional_performance {
    font-size: 18px;
    font-size: 1.8rem;
}

.l-professional_performance span {
    font-size: 1.5em;
}


/* link */

.l-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-link ul li {
    display: block;
    border: solid 1px #818181;
    width: 30%;
    text-align: center;
    line-height: 55px;
    margin-right: 2%;
}

.l-link ul li a {
    display: block;
    background-color: #fff;
    color: #818181;
}

.l-link ul li:last-of-type {
    margin-right: 0;
}


/* =================================
 PC common
================================= */

@media screen and (min-width: 768px) {
    /* common
  ---------------------------------------------------------- */
    a:hover {
        color: #353694;
        opacity: .6;
    }
}


/* =================================
  IE common
================================= */

_:-ms-lang(x)::-ms-backdrop,
.l-header.is-scroll .l-header_logo {
    top: 0;
}

_:-ms-lang(x)::-ms-backdrop,
.l-header.is-scroll .l-header_nav_sub {
    top: 55px;
}


/* =================================
 SP common
================================= */

@media screen and (max-width: 767px) {
    /* common
  ---------------------------------------------------------- */
    .u-only_sp {
        display: block;
    }
    .u-only_pc {
        display: none;
    }
    html {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    body {
        min-width: inherit;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.7;
    }
    body.is-fixed {
        position: fixed;
        width: 100%;
    }
    /* header
---------------------------------------------------------- */
    .l-header {
        padding: 12.5px 10px;
        height: 65px;
    }
    .l-header::after {
        height: 80px;
    }
    .l-header_logo a p {
        font-size: 14px;
        font-size: 1.4rem;
        padding-left: 10px;
        padding-bottom: 0;
    }
    .l-header_logo img {
        width: 40px;
        height: 40px;
    }
    .l-header_tel {
        margin-right: 30px;
    }
    .l-header_insta {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        margin-right: 5px;
    }
    .l-header_insta img {
        width: 20px;
        height: 20px;
    }
    .l-header_tel-sp {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        margin-right: 5px;
        background: #0099d6;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .l-header_tel-sp img {
        width: 18px;
        height: 18px;
    }
    .hamburger {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }
    .hamburger span {
        width: 15px;
        height: 1px;
        left: 12px;
    }
    .hamburger span:nth-child(1) {
        top: 15px;
    }
    .hamburger span:nth-child(2) {
        top: 20px;
    }
    .hamburger span:nth-child(3) {
        top: 25px;
    }
    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 50%;
        left: 32%;
    }
    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 50%;
        left: 32%;
    }
    .globalMenu_inner {
        max-width: 90%;
        margin: auto;
    }
    .l-header_item+.l-header_ttl {
        margin-top: 10px;
    }
    .globalMenu_inner .l-header_item:nth-of-type(2) {
        display: block;
    }
    .globalMenu_inner .l-header_item:nth-of-type(2) ul {
        width: 100%;
    }
    nav.globalMenu {
        padding-top: 70px;
        transform: translateX(100%);
        transition: all 0.6s;
        overflow-y: scroll;
        display: block;
        padding-bottom: 80px;
    }
    nav.globalMenu ul li {
        line-height: 2.3;
    }
    /* layout
  ---------------------------------------------------------- */
    .l-main {
        /*    padding-top: 55px;*/
    }
    .l-cont {
        width: 90%;
        padding: 25px 0;
    }
    .l-cont_s {
        width: 85%;
        padding: 25px 0;
    }
    .l-cont_l {
        width: 90%;
        padding: 25px 0 30px 0;
    }
    .l-box {
        padding-bottom: 30px;
    }
    .l-box_inner {
        padding-bottom: 20px;
    }
    .page .l-main {
        padding-bottom: 50px;
    }
    .l-column_wrap {
        display: block;
    }
    .l-column_main {
        width: 90%;
        margin: 0 auto;
    }
    .l-column_side {
        width: 90%;
        margin: 30px auto 0;
    }
    .l-inner {
        margin-bottom: 40px;
    }
    .l-btn_flex {
        display: block;
        margin-top: 15px;
    }
    .l-btn_flex [class^="c-btn"]:not(:last-child) {
        margin-bottom: 10px;
    }
    .l-flex_cont {
        display: block;
    }
    .l-flex_cont_ttl {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .l-flex_cont>li {
        width: 100%;
        overflow: hidden;
    }
    /* sub
  ---------------------------------------------------------- */
    .l-sub_top {
        height: 670px;
        background-color: red;
    }
    /* subpage
  ---------------------------------------------------------- */
    .l-sub_top {
        height: 220px;
    }
    .l-sub_top_txt {
        width: 80%;
        bottom: 5%;
        left: 0;
        padding: 20px;
    }
    .l-sub_top_ttl_en {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
    }
    .l-sub_top_ttl_jp {
        font-size: 26px;
        font-size: 2rem;
    }
    /* footer
---------------------------------------------------------- */
    .l-link {
        display: block;
    }
    .l-link li {
        width: 100%;
        text-align: center;
        color: #fff;
        position: relative;
        z-index: 1;
    }
    .l-link li:nth-child(1) {
        width: 100%;
        padding: 5%;
        background-size: cover;
        background-position: 20% center;
    }
    .l-link li:nth-child(2) {
        width: 100%;
        padding: 5%;
        background-size: cover;
        background-position: 70% center;
        margin-top: 1px;
    }
    .l-link li:nth-child(3) {
        width: 100%;
        padding: 5%;
        background-size: cover;
        background-position: 20% center;
    }
    .l-link_ttl {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .l-footer {
        background: #28363b;
        color: #fff;
        margin-bottom: 56px;
    }
    .l-footer_copyright {
        font-size: 10px;
        font-size: 1rem;
        text-align: left;
        margin-top: 40px;
    }
    .l-footer_flex {
        display: block;
    }
    .l-footer_flex_left {
        width: 100%;
    }
    .l-footer_logo {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 20px;
        justify-content: center;
    }
    .l-footer_logo img {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
    .l-footer_info {
        font-size: 13px;
        font-size: 1.3rem;
    }
    .l-footer_tel {
        font-size: 19px;
        font-size: 1.9rem;
    }
    .l-footer_flex_right {
        width: 100%;
    }
    .l-footer_table+small {
        font-size: 10px;
        font-size: 1rem;
    }
    .l-footer_table th {
        font-size: 10px;
        font-size: 1rem;
    }
    .l-footer_table tr:nth-of-type(2) th {
        font-size: 12px;
        font-size: 1.2rem;
        width: 105px;
        padding-left: 0px;
    }
    .l-footer_table tr:nth-of-type(2) th,
    .l-footer_table tr:nth-of-type(2) td {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .l-footer_btn_pos .c-btn_wt:first-child {
        margin-right: 10px;
    }
    .l-footer_pagetop {
        position: fixed;
        width: 15px;
        height: 129px;
        z-index: 9998;
        bottom: 30px;
        right: 30px;
        cursor: pointer;
		display:none !important;
    }
    .l-footer_inner {
        display: flex
    }
    .l-footer_nav {
        width: 50%;
    }
    .l-footer_nav a {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 2.2;
    }
    .l-footer_btm {
        margin-top: 20px;
    }
    .l-footer_btm .l-footer_flex_right {
        margin-top: 20px;
    }
    .l-footer_btm .l-footer_flex_right .l-footer_inner {
        display: block;
    }
    .l-footer_btm .l-footer_flex_right .l-footer_nav {
        width: 100%;
    }
    /*risk*/
    .l-risk_ttl {
        font-size: 14px;
        font-size: 1.4rem;
        text-align: left;
    }
    .l-risk_list {
        text-indent: -.5em;
        margin-left: .5em;
    }
    /*professional*/
    .l-professional {
        padding: 0;
    }
    .l-professional_cont {
        padding: 20px;
    }
    .l-professional_ttl {
        font-weight: bold;
        font-size: 15px;
        font-size: 1.5rem;
        margin-bottom: 1.3em;
    }
    .l-professional_cont ul {
        margin: 15px auto;
        text-indent: -.5em;
        margin-left: .5em;
    }
    .l-professional_cont small {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .l-professional_performance {
        font-size: 16px;
        font-size: 1.6rem;
    }
    /* link */
    .l-link ul {
        display: block;
    }
    .l-link ul li {
        width: 100%;
        line-height: 50px;
        margin-right: 0%;
        margin-bottom: 4%;
    }
    .l-link ul li:last-of-type {
        margin-bottom: 0;
    }
    .l-footer_cv {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
    }
    .l-footer_cv ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .l-footer_cv ul li {
        width: 12%;
    }
    .l-footer_cv ul li.cv_btn {
        width: 44%;
    }
    .l-footer_cv li a {
        display: block;
        width: 100%;
        height: 56px;
    }
    .l-footer_cv ul li .l-header_insta,
    .l-footer_cv ul li .l-header_tel-sp {
        width: 100%;
        height: 56px;
        border-radius: 0;
        color: #fff;
        font-family: 'Shippori Mincho', serif;
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .l-footer_cv ul li .l-header_tel-sp img {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }
    .l-footer_cv ul li .l-header_insta img {
        width: 17px;
        height: 17px;
        margin-right: 4px;
    }
    .l-footer_cv li:last-child a {
        background-color: #eef6f5;
        position: relative;
    }
    .l-footer_cv li:last-child a img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
    }
}


/* =================================
 iphone5s,SE common
================================= */

@media screen and (max-width: 320px) {
    /* common
  ---------------------------------------------------------- */
    body {
        font-size: 13px;
        font-size: 1.3rem;
    }
    .u-only_se {
        display: block;
    }
    /* footer
  ---------------------------------------------------------- */
    .l-footer_logo {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .l-header_insta {
        width: 32px;
        height: 32px;
        margin-right: 3px;
    }
    .l-header_tel-sp {
        width: 32px;
        height: 32px;
        margin-right: 3px;
    }
    .l-header_logo a p {
        padding-left: 6px;
    }
}

.p-index_news {
    margin-bottom: 60px;
}