/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@font-face {
    font-family: 'HiraginoKakuGothicPro-W3';
    src: url('../../css/training/Hiragino Kaku Gothic Pro W3.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HiraginoKakuGothicPro-W6';
    src: url('../../css/training/Hiragino Kaku Gothic Pro W6.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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;
    vertical-align: baseline;
}

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

body {
    line-height: 1;
    background-image: url('/asset/front/images/bgr-dot.png') !important;
}

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

/* common
------------------------------------------------------------*/
body {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    font-family: "HiraginoKakuGothicPro-W3", sans-serif;
    ;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    max-width: 100%;
}

a {
    color: #333;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

p {
    line-height: 2;
}

.f_bold {
    font-weight: 500;
}

.f_big {
    font-size: 18px;
}

.txt_center {
    text-align: center;
}

section {
    padding: 70px 0;
}

.alt_bg {
    background: #faf7f5;
}

.pat_bg01 {
    /* background: url('../img/common/pat-01.png') repeat top left; */
    background-color: #f8c5c8;
}

.pat_bg02 {
    background: url('../img/common/pat-02.png') repeat top left;
}

.container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}

.inner {
    max-width: 1040px;
    width: 95%;
    margin: 0 auto;
}

.sp {
    display: none;
}

/* table
------------------------------------------------------------*/
/* table {
	margin: auto;
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	box-sizing: border-box;
	table-layout: fixed;
} */
/* table th,
table td {
	padding: 16px 10px;
	vertical-align: middle;
	border-bottom: 1px solid #dad8d6;
	box-sizing: border-box;
	background-color: #fff;
}
table th {
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	border: 0;
	background-color: #f8c5c8;
	border-right: 1px solid #dad8d6;
}
table td {
	text-align: center;
	border-left: 1px solid #dad8d6;
	border-right: 1px solid #dad8d6;
} */
.tb_style01 {
    border-top-left-radius: 8px;
}

.tb_style01 tr:first-child th:first-child {
    width: 450px;
    border-top-left-radius: 8px;
}

.tb_style01 tr:first-child th:last-child {
    border-top-right-radius: 8px;
    border-right: 0;
}

.tb_style01 tr:nth-child(odd) td {
    background-color: #faf7f5;
}

.tb-arrow {
    position: absolute;
    top: 25%;
    right: 8%;
    display: none;
    max-width: 35px;
    z-index: 1;
    animation: arrow 1s linear infinite;
    -webkit-animation: arrow 1s linear infinite;
}

.tb-arrow img {
    width: 100%;
}

.tb_wrap::-webkit-scrollbar {
    height: 25px;
}

.tb_wrap::-webkit-scrollbar-track {
    background: #e6e6e6;
    border-radius: 25px;
}

.tb_wrap::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 20px;
    border: 6px solid #e6e6e6;
    box-sizing: border-box;
}

.tb_wrap::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@keyframes arrow {
    0% {
        right: 8%;
    }

    50% {
        right: 3%;
    }

    100% {
        right: 8%;
    }
}

/* btn
------------------------------------------------------------*/
/* .btn {
	position: relative;
	display: block;
	padding: 19px 35px;
	margin: 40px auto 0;
	max-width: 315px;
	width: 100%;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: url('../img/common/ico_arrow02.png') no-repeat right 20px center / 14px;
	background-color: #64ca81;
	box-shadow: 3px 3px #3b9d57;
	box-sizing: border-box;
	z-index: 1;
	border-radius: 35px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	-ms-border-radius: 35px;
	-o-border-radius: 35px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.btn:hover {
	background-color: #3b9d57;
	box-shadow: none;
} */

.btn-custom {
    position: relative;
    display: block;
    padding: 19px 35px;
    margin: 40px 20px;
    max-width: 315px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: url('../img/common/ico_arrow02.png') no-repeat right 20px center / 14px;
    background-color: #64ca81;
    box-shadow: 3px 3px #3b9d57;
    box-sizing: border-box;
    z-index: 1;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-back-grey {
    position: relative;
    display: block;
    padding: 19px 35px;
    margin: 40px 20px;
    max-width: 315px;
    width: 100%;
    color: #614A3F;
    font-weight: bold;
    text-align: center;
    background: url('../img/common/ico_arrow_left_grey.png') no-repeat left 20px center / 14px;
    background-color: #F5F5F5;
    box-shadow: 3px 3px #A2A2A2;
    box-sizing: border-box;
    z-index: 1;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-back-grey:hover {
    background-color: #F5F5F5;
    box-shadow: none;
}

.btn-custom:hover {
    background-color: #3b9d57;
    box-shadow: none;
}

/* headings
------------------------------------------------------------*/
.tit_sub {
    position: relative;
    margin-bottom: 30px;
    color: #292f4a;
    font-size: 32px;
    font-weight: bold;
}

.tit_sub::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    height: 51px;
    width: 48px;
    background: url('../img/common/tit_deco01.png') no-repeat top left / contain;
}

.tit_sub span {
    position: relative;
    display: block;
    padding: 0 0 0 25px;
    line-height: 1;
}

.tit_alt {
    color: #fff;
}

/* header
------------------------------------------------------------*/
header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    z-index: 999;
    background-color: #fff;
    overflow: hidden;
}

header .h_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    max-width: 1400px;
    width: 95%;
    overflow: hidden;
}

header .h_wrap .logo {
    max-width: 258px;
    width: 100%;
}

/* sticky */
header.sticky {
    position: sticky;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

/* gnav
------------------------------------------------------------*/
#gnav {
    float: right;
}

#gnav ul {
    display: flex;
    align-items: center;
}

#gnav ul li {
    padding: 0 23px;
    border-left: 1px dashed #f0ddd3;
}

#gnav ul li a {
    display: block;
    color: #1e1e1e;
    font-weight: 700;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

#gnav ul li a.active,
#gnav ul li a:hover {
    color: #f75984;
}

/* #gnav ul li:nth-child(6) {
	padding-right: 23px;
	margin-right: 20px;
	border-right: 1px dashed #f0ddd3;
} */

#gnav ul li:nth-last-child(2) {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px dashed #f0ddd3;
}

#gnav ul li:last-child {
    padding: 0;
    width: 163px;
    border-left: 0;
}

#gnav ul li a.btn_contact {
    padding: 12px 15px;
    color: #fff;
    text-align: center;
    background-color: #64ca81;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

#gnav ul li a.btn_contact span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
    background: url(../img/common/ico_btn01.png) no-repeat left center / 16px;
}

#gnav ul li a.btn_contact:hover {
    background-color: #3b9d57;
}


/* footer
------------------------------------------------------------*/
footer .container {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px 0;
    overflow: hidden;
}

footer .logo {
    display: block;
    margin-bottom: 20px;
    max-width: 258px;
    width: 100%;
}

footer p {
    margin-bottom: 20px;
    color: #614a3f;
    line-height: 1.7;
}

footer .social_link li {
    margin-right: 20px;
    max-width: 48px;
    float: left;
}

footer .f_links .nav_wrap {
    padding: 0 30px;
    float: left;
    width: 300px;
    border-left: 1px dashed #f0ddd3;
    box-sizing: border-box;
}

footer .f_links .nav_wrap li {
    margin-bottom: 30px;
}

footer .f_links .nav_wrap li:last-child {
    margin-bottom: 0;
}

footer .f_links .nav_wrap li a {
    display: block;
    color: #614a3f;
}

footer .f_links .nav_wrap li .acc,
footer .f_links .nav_wrap li .acc1 {
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
}

footer .f_links .nav_wrap li a span {
    display: block;
    padding-left: 20px;
    background: url('../img/common/ico_arrow01.png') no-repeat top 4px left / 14px;
}
footer .f_links .nav_wrap li span a{
    display: block;
    padding-left: 20px;
    background: url('../img/common/ico_arrow01.png') no-repeat top 4px left / 14px;
}

footer .f_links .nav_wrap li .sub_links li {
    margin-bottom: 5px;
}

footer .f_links .nav_wrap li .sub_links li a span {
    background: url('../img/common/ico_arrow03.png') no-repeat top 6px left 5px / 5px;
}

footer .f_links .nav_wrap li a .custom-icon-footer {
    display: block;
    padding-left: 20px;
    background: url("../img/common/ico_arrow03.png") no-repeat top 6px left 5px / 5px;
    font-family: "HiraginoKakuGothicPro-W3", Helvetica !important;
}

footer .f_links .nav_wrap li a:hover span {
    text-decoration: underline;
}

footer .copyright {
    padding: 10px 0;
    margin-bottom: 0;
    text-align: center;
    background-color: #f8c5c8;
}
a.link-custom:hover{
    text-decoration: white !important;
    cursor:default !important;
}
/* pagetop
------------------------------------------------------------*/
#pagetop {
    position: fixed;
    z-index: 9999;
    width: 80px;
    bottom: 87px;
    right: 20px;
}

#pagetop a {
    display: block;
}

#pagetop a img {
    width: 100%;
    display: block;
}

#pagetop a:hover {
    opacity: 1;
    text-decoration: none;
}

#pagetop a:hover img {
    opacity: 1;
    text-decoration: none;
}

/* news
------------------------------------------------------------*/
.list_news {
    position: relative;
    background-color: #fff;
    border: 2px solid #f75984;
    z-index: 99;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.list_news li {
    margin: 0 5px;
    border-bottom: 1px dashed #eebcca;
}

.list_news li:last-child {
    border-bottom: 0;
}

.list_news li a {
    display: flex;
    align-items: baseline;
    padding: 21px 35px;
}

.list_news li a .date {
    max-width: 118px;
    width: 100%;
}

.list_news li a .cat {
    display: inline-block;
    padding: 1px 5px;
    margin: 0 20px;
    max-width: 87px;
    width: 100%;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.list_news li.news a .cat {
    background-color: #f75984;
}

.list_news li.training a .cat {
    background-color: #7fc7ff;
}

.list_news li.event a .cat {
    background-color: #ffcc7f;
}

.list_news li a:hover p {
    text-decoration: underline;
}

/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
    margin-top: 40px;
    text-align: center;
}

.wp-pagenavi a {
    color: #0772ba;
    font-weight: 700;
    padding: 0 10px !important;
    border-radius: 30px;
    margin: 0 2px 10px 2px !important;
    text-align: center;
    box-sizing: border-box;
    transition: all ease 0.3s;
    min-width: 44px;
    height: 44px;
    line-height: 44px;
    background-color: #fff;
    border: 1px solid #0772ba;
    display: inline-block;
    text-decoration: none;
}

.wp-pagenavi a:hover {
    color: #fff;
    background-color: #0772ba;
}

.wp-pagenavi .current {
    color: #fff;
    background-color: #0772ba;
    border: 1px solid #0772ba;
}

.wp-pagenavi span {
    color: #0772ba;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 10px !important;
    border-radius: 30px;
    margin: 0 2px 10px 2px !important;
    text-align: center;
    box-sizing: border-box;
    transition: all ease 0.3s;
    min-width: 44px;
    height: 44px;
    line-height: 44px;
    background-color: #fff;
    border: 1px solid #0772ba;
    display: inline-block;
}

.wp-pagenavi .previouspostslink {
    display: inline;
    font-family: "Poppins", sans-serif;
    margin-right: 24px !important;
    background-position: center left 20px;
    background-image: url(../img/common/ico_arrow05_alt.png);
    background-size: 15px;
    background-repeat: no-repeat;
    padding: 10px 18px 9px 51px !important;
}

.wp-pagenavi .previouspostslink:hover {
    background-image: url(../img/common/ico_arrow05.png);
}

.wp-pagenavi .nextpostslink {
    display: inline;
    font-family: "Poppins", sans-serif;
    margin-left: 24px !important;
    background-position: center right 20px;
    background-image: url(../img/common/ico_arrow_alt.png);
    background-size: 15px;
    background-repeat: no-repeat;
    padding: 10px 51px 9px 18px !important;
}

.wp-pagenavi .nextpostslink:hover {
    background-image: url(../img/common/ico_arrow.png);
}

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

    #gnav ul li a {
        font-size: 12px;
    }
}

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

    #gnav ul li a {
        font-size: 14px;
    }
}

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

    /* header
	------------------------------------------------------------*/
    #gnav ul li {
        padding: 0 10px;
    }

    /* #gnav ul li:nth-child(6) {
		padding-right: 10px;
		margin-right: 10px;
	} */

    /* footer
	------------------------------------------------------------*/
    footer .f_links .nav_wrap {
        padding: 0 20px;
        width: 250px;
    }
}

@media screen and (max-width : 1200px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /* header
	------------------------------------------------------------*/
    header {
        padding: 20px 0;
        overflow: visible;
    }

    header .h_wrap .logo {
        max-width: 200px;
    }

    #trigger-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        float: right;
        width: 35px;
        height: 35px;
        cursor: pointer;
        transition: all ease 0.3s;
    }

    #trigger-menu .line {
        position: relative;
        display: block;
        width: 35px;
        height: 4px;
        box-sizing: border-box;
        background-color: #1e1e1e;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    }

    #gnav_sp {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        z-index: 99;
        background-color: #fff;
    }

    #gnav_sp::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        height: 1px;
        width: 95%;
        background-color: #ddd;
    }

    #gnav_sp #gnav {
        float: none;
    }

    #gnav_sp #gnav ul {
        display: block;
        background-color: rgba(247, 89, 132, .2);
    }

    #gnav_sp #gnav ul li {
        border: 0;
    }

    #gnav_sp #gnav ul li a {
        padding: 15px 10px;
    }

    #gnav_sp #gnav ul li a.btn_contact {
        padding: 8px 10px;
    }

    #gnav ul li:last-child {
        padding: 10px;
        max-width: none;
        width: 180px;
        box-sizing: border-box;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(0, 0, 0, .8);
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
        z-index: 999;
    }

    body.menu-open #trigger-menu .line:nth-child(2) {
        opacity: 0;
    }

    body.menu-open #trigger-menu .line:first-child {
        top: 11px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    body.menu-open #trigger-menu .line:last-child {
        bottom: 12px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    /* footer
	------------------------------------------------------------*/
    footer .container {
        padding: 30px 0 0;
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    footer .logo_wrap {
        margin-bottom: 40px;
    }

    footer .logo {
        margin: 0 auto 20px;
        max-width: 220px;
    }

    footer p {
        text-align: center;
    }

    footer .social_link {
        display: flex;
        justify-content: center;
    }

    footer .social_link li {
        margin-right: 10px;
        max-width: 30px;
    }

    footer .f_links .nav_wrap {
        padding: 0;
        float: none;
        width: 100%;
        max-width: none;
        height: auto !important;
    }

    footer .f_links .nav_wrap li {
        margin-bottom: 0;
        border-top: 1px dashed #f0ddd3;
    }

    footer .f_links .nav_wrap li .acc {
        padding: 10px 20px;
        margin-bottom: 0;
        background: url('../img/common/ico_plus.png') no-repeat center right 20px / 10px;
    }

    footer .f_links .nav_wrap li .acc1 {
        padding: 10px 20px;
        margin-bottom: 0;
        background: none;
    }

    footer .f_links .nav_wrap li.open .acc {
        padding: 10px 20px;
        margin-bottom: 0;
        background-image: url('../img/common/ico_minus.png');
    }

    footer .f_links .nav_wrap li .sub_links {
        padding: 10px 30px;
        background-color: rgba(247, 89, 132, .2);
    }

    footer .f_links .nav_wrap li .sub_links li {
        border-top: 0;
    }

    footer .f_links .nav_wrap li .sub_links li:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1024px) {
    footer .f_links .nav_wrap li a:hover span.custom-hover {
        text-decoration: none;
    }
}

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

    /* common
	------------------------------------------------------------*/
    section {
        padding: 60px 0;
    }

    /* table
	------------------------------------------------------------*/
    .tb_style01 tr:first-child th:first-child {
        width: 350px;
    }

    .tb_wrap {
        overflow-x: scroll;
    }

    .tb_wrap table {
        width: 1040px;
    }

    .tb-arrow {
        display: block;
    }

    /* btn
	------------------------------------------------------------*/
    .btn {
        padding: 13px 25px;
        max-width: 285px;
    }

    /* headings
	------------------------------------------------------------*/
    .tit_sub {
        margin-bottom: 20px;
        font-size: 200%;
    }

    .tit_sub::before {
        height: 40px;
        width: 40px;
    }

    .tit_sub span {
        padding-left: 20px;
    }

    /* news
	------------------------------------------------------------*/
    .list_news li a {
        padding: 15px 25px;
    }
}

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

    /* common
	------------------------------------------------------------*/
    section {
        padding: 50px 0;
    }

    .container .inner,
    .container .inner2 {
        max-width: none;
        width: 100%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /* header
	------------------------------------------------------------*/
    #gnav ul li:last-child {
        max-width: 180px;
    }

    /* btn
	------------------------------------------------------------*/
    .btn {
        max-width: 250px;
    }

    /* headings
	------------------------------------------------------------*/

    /* news
	------------------------------------------------------------*/
    .list_news li a {
        display: block;
    }

    .list_news li a .cat {
        margin: 0 10px;
        max-width: 70px;
    }

    .list_news li a p {
        margin-top: 10px;
    }

}

footer {
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 99;
    border-top: 1px solid #ddd;
    padding-top: 50px;
    bottom: 0;
}
