@charset "utf-8";

/*----------------------------------------------------------
1.General
----------------------------------------------------------*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    max-width: 1800px;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (min-width: 769px) {

    main,
    footer {
        padding-left: 360px;
    }

    main {
        box-sizing: border-box;
        position: relative;
        width: 100%;
        height: auto;
        display: block;
    }

}

@media screen and (max-width: 768.9px) {

    main,
    footer {
        padding-left: 0;
    }

    main {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
    }

}

@media screen and (min-width: 431px) {

    .pctbOnly{
        display: block;
    }
    .spOnly{
        display: none;
    }

}

@media screen and (max-width: 430.9px) {

    .pctbOnly{
        display: none;
    }
    .spOnly{
        display: block;
    }

}

/*----------------------------------------------------------
2.Layout
----------------------------------------------------------*/

.wrapper._round {
    padding: 20px;
    background: #fff;
}

.main {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 100%;
    color: #222;
}

.container {
    box-sizing: border-box;
    padding: 32px 8%;
}

.main_block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.block {
    box-sizing: border-box;
    padding: 32px 0;
}

.title_block+.block {
    padding-top: 16px;
}

.block+.block {
    padding-top: 0;
}

@media screen and (max-width: 430px) {

    .container {
        padding: 32px 0;
    }

}

/*----------------------------------------------------------
3.Header
----------------------------------------------------------*/

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo a {
    text-decoration: none;
}

.header_logo .logo_img {
    margin-right: 8px;
}

.header_menu {
    display: none;
}

.header_nav.is-fixed {
    overflow: visible;
}

body.is-overlay:after {
    background: rgba(204, 204, 204, .75);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 1s ease;
    width: 100%;
    z-index: 9;
}

body.is-overlay.is-overlay-active:after {
    opacity: 1;
}

body.is-scroll-fixed {
    overflow-y: hidden;
}

@keyframes bar1 {
    0% {
        margin-top: -8px;
        opacity: 1;
        right: 16px;
        top: 50%;
        transform: rotate(0) translateY(-50%);
        width: 28px;
    }

    30% {
        margin-top: -8px;
        opacity: 1;
        right: 16px;
        top: 50%;
        transform: rotate(0) translateY(-50%);
        width: 0;
    }

    31% {
        bottom: 20px;
        margin-top: 0;
        opacity: 0;
        right: 22px;
        top: auto;
        transform: rotate(45deg);
        width: 0;
    }

    to {
        bottom: 28px;
        margin-top: 0;
        opacity: 1;
        right: 16px;
        top: auto;
        transform: rotate(45deg);
        width: 28px;
    }
}

@keyframes bar2 {
    0% {
        opacity: 1;
        width: 24px;
    }

    30% {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 0;
        width: 0;
    }
}

@keyframes bar3 {
    0% {
        margin-top: 8px;
        opacity: 1;
        right: 24px;
        top: 50%;
        transform: rotate(0) translateY(-50%);
        width: 20px;
    }

    30% {
        margin-top: 8px;
        opacity: 1;
        right: 24px;
        top: 50%;
        transform: rotate(0) translateY(-50%);
        width: 0;
    }

    31% {
        bottom: 20px;
        margin-top: 0;
        opacity: 0;
        right: 38px;
        top: auto;
        transform: rotate(-45deg);
        width: 0;
    }

    to {
        bottom: 28px;
        margin-top: 0;
        opacity: 1;
        right: 16px;
        top: auto;
        transform: rotate(-45deg);
        width: 28px;
    }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 769px) {

    .header {
        height: 100%;
    }

    .header_inner {
        height: 100%;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
    }

    .header_logo {
        margin: 20px 0;
    }

    .header_logo .logo_name {
        color: #fff;
        font-size: 2.0rem;
        font-weight: 900;
        line-height: 1.4;
        margin: 8px 0;
        text-align: left;
    }

    .header_logo .logo_sub {
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.4;
        margin: 0;
        text-align: left;
    }

}

@media screen and (max-width: 768.9px) {

    .header {
        height: 100%;
    }

    .header_inner {
        height: 100%;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
    }

    .header_logo {
        margin: 15px;
        border: 0;
        padding: 0;
    }

    .header_logo .logo_name {
        color: #222;
        font-size: 2.8rem;
        font-weight: 900;
        line-height: 1;
        margin: 8px 0 12px 0;
        text-align: left;
    }

    /*
    .header_logo .logo_name br{
        display: none;
    }
    */

    .header_logo .logo_sub {
        color: #0079C3;
        font-size: 1.4rem;
        line-height: 1.2;
        margin: 0;
        text-align: center;
    }

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

    .header_content .header_logo {
        width: calc(100% - 80px);
    }

    .header_menu_content .header_menu_button.menu_icon:after,
    .header_menu_content .header_menu_button.menu_icon:before,
    .header_menu_content .header_menu_button.menu_icon>span:before {
        background-color: #0079C3;
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .header_menu_button.menu_icon {
        position: relative;
    }

    .header_menu_button.menu_icon:before {
        margin-top: -8px;
        right: 16px;
        width: 28px;
    }

    .header_menu_button.menu_icon:after {
        margin-top: 8px;
        right: 16px;
        width: 20px;
    }

    .header_menu_button.menu_icon>span:before {
        right: 16px;
        width: 24px;
    }

    .header_menu_button.menu_icon.is-active:before {
        animation: bar1 1s .1s;
        animation-fill-mode: forwards;
    }

    .header_menu_button.menu_icon.is-active:after {
        animation: bar3 1s .3s;
        animation-fill-mode: forwards;
    }

    .header_menu_button.menu_icon.is-active>span:before {
        animation: bar2 1s .2s;
        animation-fill-mode: forwards;
    }


    .header_menu {
        width: 60px;
        height: 60px;
        display: block;
    }

    .header_menu_button {
        background-color: transparent;
        border-width: 0;
        font-size: 0;
        height: 60px;
        padding: 0;
        width: 60px;
    }

    .header_menu_button>img {
        min-width: 16px;
    }

}

@media screen and (max-width: 430px) {

    .header_inner {
        height: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .header_logo {
        margin: 0;
        border: 0;
        padding: 10px 10px 10px 15px;
    }

    .header_logo .logo_name {
        font-size: 1.4rem;
        font-weight: 900;
        line-height: 1;
        margin: 0 0 4px 0;
        text-align: left;
    }
    .header_logo .logo_sub {
        color: #004272;
        font-size: 1.0rem;
        line-height: 1.3;
        margin: 0;
        text-align: left;
    }

}

/*----------------------------------------------------------
4.Globalnav
----------------------------------------------------------*/

@media screen and (min-width: 769px) {

    .sidebar {
        box-sizing: border-box;
        background: #0079C3;
        width: 360px;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 2;
        overflow-y: auto;
    }

    .sidebar::-webkit-scrollbar {
        background: #efefef;
        width: 5px;
        height: 5px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: #004272;
    }

    .global_nav {
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
        height: auto;
    }

    .global_nav li {
        list-style: none;
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 1px;
    }

    .global_nav li a {
        box-sizing: border-box;
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        padding: 12px 8px;
        text-decoration: none;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 0.175rem;
        line-height: 1.4;
        background-color: #fff;
        box-shadow: inset 0 0 0 0 #a1d1dd;
        color: #222;
        transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
    }

    .global_nav li a.current {
        background: #f6fafb;
    }

    .global_nav>li>a:after {
        border-bottom: 2px solid #222;
        border-left-width: 0;
        border-right: 2px solid #222;
        border-top-width: 0;
        content: "";
        height: 6px;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 6px;
    }

    .global_nav li a:hover {
        box-shadow: inset 400px 0 0 0 #f6f8ff;
        color: #0079C3;
    }

    .global_nav li a:hover:after {
        border-bottom: 2px solid #0079C3;
        border-right: 2px solid #0079C3;
    }

}

@media screen and (max-width: 768.9px) {

    .sidebar {
        box-sizing: border-box;
        background: #fff;
        border: 0;
        border-radius: 0;
        width: 100%;
        height: auto;
        position: sticky;
        left: 0;
        top: 0;
        z-index: 11;
        overflow-y: auto;
    }

    .header_nav {
        display: none;
    }

    .header_nav.is-fixed {
        display: block;
        top: 100px;
    }

    .global_nav {
        margin: 15px 0;
        padding: 0;
        display: block;
        width: 100%;
        height: auto;
        border-top: 1px solid #efefef;
    }

    .global_nav.fadein {
        animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }

    .global_nav li {
        list-style: none;
        display: block;
        width: 100%;
        height: auto;
    }

    .global_nav li a {
        box-sizing: border-box;
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        padding: 12px 15px;
        text-decoration: none;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 0.175rem;
        line-height: 1.4;
        border-bottom: 1px dotted #ccc;
        box-shadow: inset 0 0 0 0 #a1d1dd;
        color: #222;
        transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
    }

    .global_nav>li>a:after {
        border-bottom: 2px solid #0079C3;
        border-left-width: 0;
        border-right: 2px solid #0079C3;
        border-top-width: 0;
        content: "";
        height: 6px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 6px;
    }

    .global_nav li a:hover {
        box-shadow: inset 400px 0 0 0 #f6fafb;
        color: #0079C3;
    }

    .global_nav li a:hover:after {
        border-bottom: 2px solid #0079C3;
        border-right: 2px solid #0079C3;
    }

    .global_nav li:last-child a {
        border: 0;
    }

}

@media screen and (max-width: 430px) {

    .global_nav {
        margin: 0 0 10px 0;
    }

    .global_nav li a {
        font-size: 1.4rem;
    }

}


/*----------------------------------------------------------
5.Footer
----------------------------------------------------------*/

footer {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: auto;
}

.footer {
    box-sizing: border-box;
    background-color: #efefef;
    border-radius: 4px;
    width: 100%;
    padding: 40px 8% 0;
    color: #222;
}

.footer_copy {
    margin-top: 40px;
    border-top: 1px dotted #ccc;
    padding: 16px 32px;
    color: #222;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
}

.footer_address div+div {
    margin-top: 40px;
}

.footer_address dt {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.175rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.footer_address dt span {
    background: #0079C3;
    padding: 8px 16px;
    color: #fff;
}

.footer_address dd {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
    margin: 0;
}


@media screen and (max-width: 768.9px) {

    .footer_address  {
        margin-top: 40px;
    }

    .footer_address dd {
        font-size: 1.4rem;
    }

}

@media screen and (max-width: 430px) {

    .footer {
        padding: 20px 6% 0;
    }

}

@media screen and (max-width: 375px) {

    .footer_copy {
        margin-top: 30px;
        padding: 15px 10px;
    }

}


/*----------------------------------------------------------
6.Main_title_block
----------------------------------------------------------*/

.main_title_block {
    background-image: linear-gradient(120deg, rgba(0, 66, 114, 1), rgba(220, 235, 242, 1));
    border-radius: 20px 20px 0 0;
    padding: 24px 8%;
    color: #fff;
}

.main_title_heading {
    font-size: 4.0rem;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    margin: 0;
}

.main_title_sub {
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    line-height: 1.4;
    margin-top: 20px;
    display: block;
    text-align: center;
}

@media screen and (max-width: 768.9px) {

    .main_title_block {
        padding: 32px 8%;
        margin-top: 20px;
    }

    .main_title_heading {
        font-size: 3.2rem;
    }

}

@media screen and (max-width: 430px) {

    .main_title_block {
        background-image: linear-gradient(120deg, rgba(0, 66, 114, 1), rgba(0, 66, 114, 1));
        border-radius: 0;
        padding: 20px 4%;
    }

    .main_title_heading {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .main_title_sub {
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.3;
        margin-top: 10px;
    }

}

@media screen and (max-width: 375px) {

    .main_title_heading {
        font-size: 1.6rem;
    }

    .main_title_sub {
        font-size: 1.3rem;
    }

}

/*----------------------------------------------------------
7.Headings
----------------------------------------------------------*/

.heading-h1 {
    font-size: 5.0rem;
    font-weight: 900;
    letter-spacing: 0.125rem;
    line-height: 1.4;
    margin: 0 0 20px;
}

.heading-h2 {
    color: #0079C3;
    font-size: 4.0rem;
    letter-spacing: 0.175rem;
    line-height: 1.4;
    margin: 0 0 20px;
}

.heading-h2 span {
    color: #222;
    display: block;
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: normal;
}

.heading-h3 {
    border-bottom: 1px solid #0079C3;
    font-size: 2.4rem;
    letter-spacing: 0.125rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin: 30px 0;
}

.heading-h4 {
    border-left: 2px solid #0079C3;
    font-size: 2.0rem;
    letter-spacing: 0.125rem;
    line-height: 1.5;
    padding-left: 8px;
    margin: 20px 0;
}

@media screen and (max-width: 768.9px) {

    .heading-h1 {
        font-size: 4.0rem;
        margin: 0 0 15px;
    }
    .heading-h2 {
        font-size: 3.0rem;
        margin: 0 0 15px;
    }
    .heading-h3 {
        font-size: 2.0rem;
        margin: 20px 0;
    }

}

@media screen and (max-width: 430px) {

    .heading-h1 {
        font-size: 3.0rem;
    }

    .heading-h2 {
        font-size: 2.4rem;
        letter-spacing: 0;
    }

}

/*----------------------------------------------------------
8.Text
----------------------------------------------------------*/

.text p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 30px 0;
}
.alert{
    font-weight: bold;
    text-decoration: underline;
}

/*----------------------------------------------------------
9.Page:greeting
----------------------------------------------------------*/

.message {
    display: flex;
}

.message .text {
    width: 65%;
}

.message .message_profile {
    width: 30%;
    margin-left: 5%;
}

.message .message_profile img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0 #0079C3;
}

.message .message_profile .prof_a {
    margin-top: 40px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
}

.message .message_profile .prof_b {
    padding-left: 0;
    line-height: 1.4;
    list-style: none;
    font-size: 1.4rem;
}

.message .message_profile .prof_b li+li {
    margin-top: 16px;
}

@media screen and (max-width: 768px) {

    .message {
        display: flex;
        flex-direction: column-reverse;
    }

    .message .text {
        width: 100%;
    }

    .message .message_profile {
        padding: 20px;
        width: calc(100% - 40px);
        margin-left: 0;
        display: flex;
        flex-flow: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .message .message_profile .message_content {
        width: 60%;
    }

    .message .message_profile .prof_a {
        margin-top: 0;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.4;
    }

    .message .message_profile img {
        display: block;
        width: 30%;
        margin: 0 auto;
        box-shadow: 10px 10px 0 #0079C3;
    }

}

@media screen and (max-width: 425px) {

    .message .text p {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .message .message_profile {
        background: #fff;
        padding: 0;
        width: initial;
        margin-left: 0;
        display: block;
    }

    .message .message_profile .message_content {
        width: 100%;
    }

    .message .message_profile .prof_a {
        margin-top: 40px;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.4;
    }

    .message .message_profile .prof_b {
        font-size: 1.3rem;
    }

    .message .message_profile img {
        display: block;
        width: 50%;
        margin: 0 auto;
        box-shadow: 10px 10px 0 #0079C3;
    }

}

/*----------------------------------------------------------
10.News
----------------------------------------------------------*/

.news_card a {
    color: #004272;
}

.news_card a:hover {
    text-decoration: none;
}

@media screen and (min-width: 769px) {

    .news {
        list-style: none;
        padding: 0;
    }

    .news_card {
        padding: 16px;
        border: 2px solid #efefef;
    }

    .news_card+.news_card {
        margin-top: 20px;
    }

}

@media screen and (max-width: 768.9px) {

    .news {
        list-style: none;
        padding: 0;
    }

    .news_card {
        padding: 16px;
        border: 1px solid #dae9ee;
        border-radius: 4px;
    }

    .news_card+.news_card {
        margin-top: 20px;
    }

}

@media screen and (max-width: 430px) {

    .news_card {
        font-size: 1.4rem;
        padding: 8px;
        border: 1px solid #dae9ee;
        border-radius: 4px;
    }

}


/*----------------------------------------------------------
11.Pagetop
----------------------------------------------------------*/

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #0079C3;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop_arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #0079C3;
    border-right: 3px solid #0079C3;
    transform: translateY(20%) rotate(-45deg);
}

@media screen and (max-width: 768px) {

    .pagetop {
        right: 20px;
    }

}

@media screen and (max-width: 430px) {

    .pagetop {
        height: 40px;
        width: 40px;
        right: 15px;
    }

}

/*----------------------------------------------------------
12.Breadcrumb
----------------------------------------------------------*/

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 40px;
    padding: 12px 8px;
    border-top: 1px dotted #dae9ee;
}

.breadcrumb li,
.breadcrumb li a {
    font-size: 1.3rem;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "/";
    margin: 0 .6em;
    color: #777;
    font-size: 1.3rem;
}

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

/*----------------------------------------------------------
13.table
----------------------------------------------------------*/

.table {
    width: 100%;
}

.table th {
    background: #0079C3;
    padding: 16px;
    color: #fff;
    font-size: 2.0rem;
    text-align: center;
    line-height: 1.4;
}

.table td {
    background: #efefef;
    padding: 16px;
    line-height: 1.4;
}

.table td:nth-child(1) {
    text-align: center;
}

.table._style-2,
.table._style-3,
.table._style-4 {
    width: 100%;
}

.table._style-3,
.table._style-4 {
    border-collapse: collapse;
}

.table._style-2 th {
    background: #fff;
    padding: 20px;
    color: #222;
    font-size: 2.0rem;
    text-align: center;
    line-height: 1.4;
    border-bottom: 3px solid #0079C3;
}

.table._style-2 td {
    background: #fff;
    padding: 20px 12px;
    line-height: 1.4;
    border-bottom: 3px solid #efefef;
}

.table._style-2 td:nth-child(1),
.table._style-3 td:nth-child(1) {
    text-align: left;
}

.table._style-3 th,
.table._style-4 th {
    background: #efefef;
    padding: 20px;
    color: #222;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    border: 1px solid #ccc;
}

.table._style-3 td,
.table._style-4 td {
    background: #fff;
    padding: 20px 12px;
    line-height: 1.4;
    border: 1px solid #ccc;
}

.scroll-table .scroll-message{
    display: none;
}

@media screen and (max-width: 768px) {
    .table._style-2 tr,
    .table._style-3 tr {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .table._style-2 td,
    .table._style-3 td {
        padding: 20px 0;
    }
    .table._style-3 td {
        border: 0;
    }
    .scroll-table {
        overflow-x: scroll;
    
    }
    .scroll-table .scroll-message{
        display: block;
        line-height: 1.5;
    }
    .scroll-table .table {
        width: 800px;
    }
}

/*----------------------------------------------------------
14.Banner
----------------------------------------------------------*/

.bnr_block {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.bnr_block._content {
    display: none;
}

.bnr-img {
    display: block;
    border: 1px solid #ccc;
    max-width: 328px;
    width: 100%;
    height: auto;
}

.bnr-img img{
    width: 100%;
    height: auto;
    opacity: 1;
    transition: 0.5s all;
}

.bnr-img:hover img {
    opacity: 0.7;
}

.bnr {
    background: #efefef;
    width: 240px;
    height: 60px;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bnr-img+.bnr-img,
.bnr+.bnr {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .bnr_block._side {
        display: none;
    }
    .bnr_block._content {
        display: flex;
        margin-top: 20px;
        margin-bottom: 50px;
    }
}

/*----------------------------------------------------------
15.list
----------------------------------------------------------*/

.list {
    padding-left: 24px;
}

.list._column {
    column-count: 2;
}
.list li {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {

    .list._column {
        column-count: 1;
    }

}

/*----------------------------------------------------------
16.box
----------------------------------------------------------*/

.box {
    border: 1px solid #0079C3;
    padding: 20px;
}

/*----------------------------------------------------------
17.link, button
----------------------------------------------------------*/

.m-link {
    text-decoration: underline;
}
.m-link._external span {
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
}
.m-link._external span:after {
    content: "";
    display: inline-block;
    background-image: url(/assets/cmn/img/icon-external.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width:15px;
    height:15px;
    margin:1px 5px 0;
}
.m-link:hover,
.m-link:hover span {
    text-decoration: none;
}

.m-button-list {
    padding-left: 0;
}

.m-button-list._col-2 {
    display: flex;
    justify-content: space-around;
}
.m-button-list._col-2 li{
    display: flex;
    width: 45%;
    height: auto;
}

.m-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2.0rem;
    font-weight: bold;
    background: #0079C3;
    color: #fff;
    border-radius: 50px;
    padding: 25px;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 4px 0 #ccc;
    transition: 0.5s all;
}

.m-button._edit {
    background: #efefef;
    color: #222;
    border: 1px solid #ccc;
}

.m-button:hover {
    transform: translateY(4px);
    box-shadow: none;
}

@media screen and (max-width: 768px) {
    .m-button-list._col-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .m-button-list._col-2 li{
        width: 100%;
    }
    .m-button-list._col-2 li + li{
        margin-top: 30px;
    }

    .m-button {
        padding: 20px;
    }
}


/*----------------------------------------------------------
adjust
----------------------------------------------------------*/

.u-mt-0 {
    margin-top: 0px!important;
}
.u-mt-10 {
    margin-top: 10px!important;
}
.u-mt-20 {
    margin-top: 20px!important;
}
.u-mt-30 {
    margin-top: 30px!important;
}
.u-mt-40 {
    margin-top: 40px!important;
}
.u-mt-50 {
    margin-top: 50px!important;
}
.u-mt-60 {
    margin-top: 60px!important;
}
.u-mt-70 {
    margin-top: 70px!important;
}
.u-mt-80 {
    margin-top: 80px!important;
}
.u-mt-90 {
    margin-top: 90px!important;
}
.u-mt-100 {
    margin-top: 100px!important;
}

@media screen and (max-width:768px) {
    .u-mt-30 {
        margin-top: 15px!important;
    }
    .u-mt-40 {
        margin-top: 20px!important;
    }
    .u-mt-50 {
        margin-top: 25px!important;
    }
    .u-mt-60 {
        margin-top: 30px!important;
    }
    .u-mt-70 {
        margin-top: 35px!important;
    }
    .u-mt-80 {
        margin-top: 40px!important;
    }
    .u-mt-90 {
        margin-top: 45px!important;
    }
    .u-mt-100 {
        margin-top: 50px!important;
    }
}