@charset "UTF-8";

/*
====================
IMPORT
====================
*/


/*
====================
_VARIABLES.SCSS
====================
*/


/* ---------------------------
transition
--------------------------- */


/* ---------------------------
transform
--------------------------- */


/* ---------------------------
flexまとめ
--------------------------- */


/* ---------------------------
クリアフィックス
--------------------------- */


/* ---------------------------
透明度
--------------------------- */


/* ---------------------------
グラデーション
--------------------------- */


/* ---------------------------
グラデーション
--------------------------- */


/* ---------------------------
フォームリセット
--------------------------- */


/*--reset--*/


/* line 5, ../scss/reset2.scss */

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-style: normal;
    /*  font-weight: normal;*/
    font-size: 100%;
    vertical-align: baseline;
}


/* line 95, ../scss/reset2.scss */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* line 109, ../scss/reset2.scss */


/* line 113, ../scss/reset2.scss */

blockquote,
q {
    quotes: none;
}


/* line 118, ../scss/reset2.scss */

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


/* line 126, ../scss/reset2.scss */

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}


/* line 134, ../scss/reset2.scss */

input,
textarea {
    margin: 0;
    padding: 0;
}


/* line 140, ../scss/reset2.scss */

ol,
ul {
    list-style: none;
}


/* line 145, ../scss/reset2.scss */

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


/* line 150, ../scss/reset2.scss */

caption,
th {
    text-align: left;
}


/* line 155, ../scss/reset2.scss */

a:active {
    color: inherit;
}


/* line 159, ../scss/reset2.scss */

a:focus {
    outline: none;
}


/* line 163, ../scss/reset2.scss */

a {
    text-decoration: none;
    color: inherit;
}


/* line 168, ../scss/reset2.scss */

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


/* line 174, ../scss/reset2.scss */

video {
    vertical-align: bottom;
    width: 100%;
    height: auto;
}


/*--//reset--*/

@font-face {
    font-family: notoSanMid;
    src: url(./NotoSansCJKjp-Medium.otf);
}

@font-face {
    font-family: notoSanBold;
    src: url(./NotoSansCJKjp-Bold.otf);
}


/*
============================
GENERAL CONTENTS
============================
*/

._pc {
    display: block;
}

._pc_nav {
    display: table;
}

._sp {
    display: none;
}

@media screen and (max-width: 767px) {
    ._pc {
        display: none;
    }
    ._pc_nav {
        display: none;
    }

    ._sp {
        display: block;
    }
}

* {
    box-sizing: border-box;
    line-height: 1em;
}

html,
body {
    min-height: 100%;
    height: 100%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "notoSanMid", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: #222;
    -webkit-text-size-adjust: 100%;
    position: relative;
    line-height: 1em;
    position: relative;
    font-size: 1.4rem;
    min-width: 1000px;
}

input,
button,
select {
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

a:hover {
    color: #b71c24;
    text-decoration: underline;
}

a:hover img {
    opacity: 0.7;
}

.all_wrap {
    overflow: hidden;
}

.bold {
    font-family: "notoSanBold";
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 3.389vw;
        min-width: auto;
    }
    .inner {
        width: 100%;
        padding: 0 4vw;
    }
    a:hover {
        color: inherit;
        text-decoration: none;
    }
    a:hover img {
        opacity: 1;
    }
}

#pageTopArrow {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTopArrow a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 0px;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  background-color: #000063;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTopArrow a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*---------------
header
----------------*/

header {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 5px solid #000063;
    padding: 20px 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

header .inner {
    zoom: 1;
}

header .inner:before,
header .inner:after {
    content: "";
    display: table;
}

header .inner:after {
    clear: both;
}

header.stay {
    position: fixed;
}

header.stay .header_logo img:nth-of-type(2) {
    display: none;
}

header.stay .header_right_wrap {
    display: none;
}

header.stay nav {
    padding-top: 0;
    clear: none;
    float: right;
    width: 742px;
}

header.stay #main_nav_col4 {
    padding-top: 0;
    clear: none;
    float: right;
    width: 742px;
}

header.stay #main_nav_col5 {
    padding-top: 0;
    clear: none;
    float: right;
    width: 742px;
}

header.stay nav ul {
    table-layout: fixed;
}

header.stay #main_nav_col4 ul {
    table-layout: fixed;
}

header.stay #main_nav_col5 ul {
    table-layout: fixed;
}

header.stay nav li {
    width: 202px;
}

header.stay #main_nav_col5 li {
    width: 202px;
}

header.stay nav li a {
    padding-left: 20px;
    text-align: left;
}

header.stay nav li:first-of-type {
  width: 108px !important;
  padding-left: 20px;
}
header.stay nav li:last-of-type {
    width: 108px !important;
}

header.stay #main_nav_col5 li:first-of-type,
header.stay #main_nav_col5 li:last-of-type {
  width: 108px !important;
}

header.stay #main_nav_col4 li:first-of-type{
  width: 108px !important;
}
header.stay #main_nav_col4 li:last-of-type {
  width: 250px !important;
}

header.stay nav li:first-of-type {
    border-left: none;
}

header.stay #main_nav_col5 li:first-of-type {
    border-left: none;
}

header.stay nav li:last-of-type {
    border-right: none;
}

header.stay nav li:first-of-type a {
    padding-left: 0;
}

.header_logo {
    float: left;
}

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

.header_right_wrap {
    float: right;
    zoom: 1;
    letter-spacing: -0.4em;
}

.header_right_wrap:before,
.header_right_wrap:after {
    content: "";
    display: table;
}

.header_right_wrap:after {
    clear: both;
}

.header_right_wrap>* {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.header_right_wrap .textSize_change {
    position: relative;
    padding-right: 20px;
}

.header_right_wrap .textSize_change::before {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 50px;
    top: -10px;
    left: 100%;
    border-left: 1px solid #ccc;
}

.header_right_wrap .textSize_change>* {
    vertical-align: text-bottom;
}

.header_right_wrap .textSize_change .txt {
    padding-bottom: 6px;
}

.header_right_wrap .textSize_change .btn_txt {
    border: 2px solid #000063;
    color: #000063;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-family: "notoSanBold";
}

.header_right_wrap .textSize_change .btn_txt:hover {
    background: #000063;
    color: #fff;
}

.header_right_wrap .textSize_change .btn_txt.active {
    background: #000063;
    color: #fff;
}

.header_right_wrap .textSize_change .btn_txt:nth-of-type(2) {
    width: 18px;
    height: 18px;
    line-height: 14px;
    font-size: 12px;
}

.header_right_wrap .textSize_change .btn_txt:nth-of-type(3) {
    width: 22px;
    height: 22px;
    line-height: 18px;
    font-size: 14px;
}

.header_right_wrap .textSize_change .btn_txt:nth-of-type(4) {
    width: 26px;
    height: 26px;
    line-height: 20px;
    font-size: 16px;
}

.header_right_wrap .textSize_change img {
    cursor: pointer;
}

.header_right_wrap .heder_link_wrap {
    /*width: 122px;*/
    width: 132px;
}

.header_right_wrap .heder_link_wrap a {
    line-height: 1.7;
    display: block;
    background: url(../img/icon_circleArrowRight.png) no-repeat 0 50%/18px auto;
}

.header_right_wrap .heder_link_wrap a span {
    display: inline-block;
    padding-left: 24px;
    padding-right: 20px;
    background: url(../img/icon_file.png) no-repeat 100% 50%/10px auto;
}

.header_right_wrap .heder_link_wrap a:hover span {
    text-decoration: underline;
}

.header_right_wrap #btn_open_nav {
    display: none;
}

nav {
    clear: both;
    padding-top: 25px;
}

nav ul {
    display: table;
    width: 100%;
}

nav ul li {
    border-left: 1px solid #cccccc;
    display: table-cell;
    width: calc(100% / 5);
    position: relative;
    vertical-align: middle;
    padding-bottom: 5px;
}

#main_nav_col5 li {
  border-left: 1px solid #cccccc;
  display: table-cell;
  width: calc(100% / 5);
  position: relative;
  vertical-align: middle;
  padding-bottom: 5px;
}

#main_nav_col4 li {
  border-left: 1px solid #cccccc;
  display: table-cell;
  /*width: calc(100% / 4);*/
  position: relative;
  vertical-align: middle;
  padding-bottom: 5px;
}

#main_nav_col4_1 {
  border:1px solid #fff;background-color:#000063;
}
#main_nav_col4_2 {
  border:1px solid #fff;background-color:#000063;width:250px;
}
#main_nav_col4_3 {
  border:1px solid #fff;background-color:#000063;
}
#main_nav_col4_4 {
  border:1px solid #fff;background-color:#000063;width:400px;
}
#main_nav_col4_1 a {
  color:#fff;
}
#main_nav_col4_2 a {
  color:#fff;
}
#main_nav_col4_3 a {
  color:#fff;
}
#main_nav_col4_4 a {
  color:#fff;
}

nav ul li:last-child {
    border-right: 1px solid #cccccc;
}


/*
nav ul li::before {
    position: absolute;
    content: "";
    display: block;
    border-left: 1px solid #cccccc;
    widows: 0;
    height: 100%;
}

nav ul li:nth-of-type(1)::before {
    display: none;
}
*/

nav ul li a {
    font-family: "notoSanBold";
    display: block;
    text-align: center;
    color: #000063;
    font-size: 1.8rem;
    line-height: 1.7;
}

nav ul li a span {
    display: block;
    color: #545454;
    font-size: 1.2rem;
}

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

nav ul li a:hover span {
    color: #b71c24;
}

@media screen and (max-width: 767px) {
    header {
        height: 15.645vw;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        border-top: 1.303vw solid #000063;
        padding: 1.043vw 0 2.607vw;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        z-index: 9999;
        display: table;
        width: 100%;
    }
    header .inner {
        zoom: 1;
    }
    header .inner:before,
    header .inner:after {
        content: "";
        display: table;
    }
    header .inner:after {
        clear: both;
    }
    header.showNav #btn_open_nav span:nth-of-type(1) {
        transform: rotate(-45deg);
    }
    header.showNav #btn_open_nav span:nth-of-type(2) {
        opacity: 0;
    }
    header.showNav #btn_open_nav span:nth-of-type(3) {
        transform: translateY(-2.34vw) rotate(45deg);
    }
    header.showNav::before {
        position: absolute;
        top: 100%;
        content: "";
        display: block;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
    }
    .header_left_wrap {
        float: left;
    }
    .header_logo {
        float: none;
        width: 22.66vw;
        padding-top: 3vw;
        display: inline-block;
    }
    .header_logo._pc {
        display: none;
    }
    .logo_ham {
        display: inline-block;
        width: 21.121vw;
    }
    .header_right_wrap {
        float: right;
        zoom: 1;
        letter-spacing: -0.4em;
        padding-top: 2vw;
    }
    .header_right_wrap:before,
    .header_right_wrap:after {
        content: "";
        display: table;
    }
    .header_right_wrap:after {
        clear: both;
    }
    .header_right_wrap>* {
        letter-spacing: normal;
        display: inline-block;
        vertical-align: middle;
        margin-right: 20px;
        display: none;
    }
    .header_right_wrap .textSize_change {
        display: none;
        position: relative;
        padding-right: 20px;
    }
    .header_right_wrap .textSize_change::before {
        position: absolute;
        content: "";
        display: block;
        width: 0;
        height: 50px;
        top: -10px;
        left: 100%;
        border-left: 1px solid #ccc;
    }
    .header_right_wrap .textSize_change>* {
        vertical-align: text-bottom;
    }
    .header_right_wrap .textSize_change span {
        padding-bottom: 6px;
    }
    .header_right_wrap .textSize_change img {
        cursor: pointer;
    }
    .header_right_wrap .heder_link_wrap {
      width: 122px;
    }
    .header_right_wrap .heder_link_wrap a {
        line-height: 1.7;
        display: block;
        background: url(../img/icon_circleArrowRight.png) no-repeat 0 50%/18px auto;
    }
    .header_right_wrap .heder_link_wrap a span {
        display: inline-block;
        padding-left: 24px;
        padding-right: 20px;
        background: url(../img/icon_file.png) no-repeat 100% 50%/10px auto;
    }
    .header_right_wrap .heder_link_wrap a:hover span {
        text-decoration: none;
    }
    .header_right_wrap #btn_open_nav {
        margin-right: 0;
        display: table-cell;
        position: relative;
        vertical-align: top;
        -moz-transform: translateY(25%);
        -o-transform: translateY(25%);
        -ms-transform: translateY(25%);
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
        height: 5.215vw;
        width: 6.518vw;
    }
    .header_right_wrap #btn_open_nav span {
        width: 100%;
        height: 0.782vw;
        background: #000063;
        position: absolute;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .header_right_wrap #btn_open_nav span:nth-of-type(1) {
        top: 0;
    }
    .header_right_wrap #btn_open_nav span:nth-of-type(1) {
        top: 2.19vw;
    }
    .header_right_wrap #btn_open_nav span:nth-of-type(3) {
        bottom: 0;
    }
    nav {
        border-top: 1px solid #cccccc;
        position: absolute;
        display: none;
        clear: both;
        padding-top: 0px;
        top: 100%;
        background: #fff;
        width: 100%;
        left: 0;
        padding: 0 4vw;
        padding-bottom: 25px;
    }
    nav ul {
        display: block;
        width: 100%;
    }
    nav ul li {
        border-bottom: 1px solid #ccc;
        border-left: none;
        display: block;
        width: calc(100%);
        position: relative;
        vertical-align: middle;
    }
    nav ul li:last-child {
        border-right: none;
    }
    nav ul li::before {
        position: absolute;
        content: "";
        display: block;
        border-left: 1px solid #cccccc;
        widows: 0;
        height: 100%;
        -moz-transform: rotate(20deg);
        -o-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
        display: none;
    }
    nav ul li:nth-of-type(1)::before {
        display: none;
    }

    #main_nav_col5 li {
      border-left: 1px solid #cccccc;
      display: block;
      width: 100%;
      position: relative;
      vertical-align: middle;
      padding-bottom: 5px;
    }

    #main_nav_col4 li {
      border-left: 1px solid #cccccc;
      border-bottom: 1px solid #cccccc;
      display: block;
      width: 100%;
      position: relative;
      vertical-align: middle;
      padding-bottom: 5px;
      background-color: #fff;
      color: #000063;
    }

    #main_nav_col4 li a {
      color: #000063;
    }

    nav ul li a {
        padding: 15px 0;
        padding-left: 14px;
        font-family: "notoSanBold";
        display: block;
        text-align: left;
        color: #000063;
        font-size: 1.6rem;
        line-height: 1;
        background: url(../img/icon_arrow_right_blue_mid.png) no-repeat 100% 50%/10px auto;
        position: relative;
    }
    nav ul li a span {
        display: inline-block;
        color: #545454;
        /*font-size: 1.3rem;*/
        font-size: 1.0rem;
        position: absolute;
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        /*left: 116px;*/
        left: 155px;
    }
    nav ul li a:hover span {
        color: inherit;
    }
    nav .sub_link {
        text-align: center;
    }
    nav .sub_link .ham_link {
        display: block;
        margin: 25px auto 15px;
        width: 26.66vw;
    }
    nav .sub_link .link_wrap {
        zoom: 1;
    }
    nav .sub_link .link_wrap:before,
    nav .sub_link .link_wrap:after {
        content: "";
        display: table;
    }
    nav .sub_link .link_wrap:after {
        clear: both;
    }
    nav .sub_link .link_wrap a {
        width: 50%;
        float: left;
        height: 22px;
        line-height: 22px;
    }
    nav .sub_link .link_wrap a span {
        display: inline-blockin;
        height: 16px;
        font-size: 1.2rem;
        color: #000063;
        position: relative;
    }
    nav .sub_link .link_wrap a span::before,
    nav .sub_link .link_wrap a span::after {
        position: absolute;
        content: "";
        display: block;
        background-repeat: no-repeat;
        background-position: 0 50%;
        background-size: contain;
        top: 0;
        bottom: 0;
    }
    nav .sub_link .link_wrap a span::before {
        width: 16px;
        right: calc(100% + 10px);
        background-image: url(../img/icon_circleArrowRight.png);
    }
    nav .sub_link .link_wrap a span::after {
        width: 10px;
        left: calc(100% + 10px);
        background-image: url(../img/icon_file.png);
    }
    nav .sub_link .link_wrap a+a {
        border-left: 1px solid #ccc;
    }
}


/*---------------
footer
----------------*/

footer .footer_top {
    background: #f6f6f6;
    padding-top: 50px;
    padding-bottom: 50px;
}

footer .footer_top .inner {
    zoom: 1;
}

footer .footer_top .inner:before,
footer .footer_top .inner:after {
    content: "";
    display: table;
}

footer .footer_top .inner:after {
    clear: both;
}

footer .footer_top img,
footer .footer_top p {
    float: left;
}

footer .footer_top img {
    width: 138px;
}

footer .footer_top p {
    line-height: 2;
    margin-left: 20px;
}

footer .footer_top .link_wrap {
    float: right;
    zoom: 1;
}

footer .footer_top .link_wrap:before,
footer .footer_top .link_wrap:after {
    content: "";
    display: table;
}

footer .footer_top .link_wrap:after {
    clear: both;
}

footer .footer_top .link_wrap a {
    float: left;
    color: #000063;
    padding-left: 25px;
    background: url(../img/icon_circleArrowRight.png) no-repeat 0 50%/18px auto;
    line-height: 1.4;
}

footer .footer_top .link_wrap a:hover {
    color: #b71c24;
}

footer .footer_top .link_wrap a+a {
    margin-left: 20px;
}

footer small {
    background: #000063;
    display: block;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

@media screen and (max-width: 767px) {
    footer .footer_top {
        background: #f6f6f6;
        padding-top: 10.430vw;
        padding-bottom: 10.430vw;
    }
    footer .footer_top .inner {
        zoom: 1;
    }
    footer .footer_top .inner:before,
    footer .footer_top .inner:after {
        content: "";
        display: table;
    }
    footer .footer_top .inner:after {
        clear: both;
    }
    footer .footer_top img,
    footer .footer_top p {
        float: none;
    }
    footer .footer_top img {
        width: 26.988vw;
    }
    footer .footer_top p {
        font-size: 3.389vw;
        line-height: 2;
        margin-left: 0px;
        margin-bottom: 0.8em;
        margin-top: 0.5em;
    }
    footer .footer_top .link_wrap {
        float: none;
        zoom: 1;
    }
    footer .footer_top .link_wrap:before,
    footer .footer_top .link_wrap:after {
        content: "";
        display: table;
    }
    footer .footer_top .link_wrap:after {
        clear: both;
    }
    footer .footer_top .link_wrap a {
        float: left;
        color: #000063;
        padding: 0 1em;
        background: none;
        line-height: 2;
        text-align: center;
        font-size: 3.129vw;
    }
    footer .footer_top .link_wrap a:hover {
        color: inherit;
    }
    footer .footer_top .link_wrap a+a {
        margin-left: 0px;
        border-left: 1px solid #cccccc;
    }
    footer .footer_top .link_wrap a span {
        display: inline-block;
        background: url(../img/icon_circleArrowRight_sp.png) no-repeat 0 50%/1em auto;
        line-height: 2;
        padding-left: 1.2em;
    }
    footer small {
        background: #000063;
        display: block;
        color: #fff;
        font-size: 2.346vw;
        text-align: center;
        height: 6.518vw;
        line-height: 6.518vw;
    }
}


/*
============================
MAIN CONTENTS
============================
*/


/*
====================
IMPORT
====================
*/


/*
============================
MAIN CONTENTS
============================
*/

#top .mv_slide {
    text-align: center;
    padding: 20px 0;
}

#top .mv_slide .bx-controls-direction a {
    background: url(../img/top/mv_icon_btn_off.png) no-repeat 0/contain;
    width: 24px;
    height: 54px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#top .mv_slide .bx-controls-direction a:hover {
    background: url(../img/top/mv_icon_btn_on.png) no-repeat 0/contain;
}

#top .mv_slide .bx-prev {
    left: 30px;
}

#top .mv_slide .bx-next {
    right: 30px;
    transform: scale(-1, 1);
}

#top .mv_slide .bx-pager {
    position: absolute;
    bottom: 20px;
    border-radius: 12px;
    padding: 4px 20px;
    background: #000063;
    height: 24px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#top .mv_slide .bx-pager a {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 5px;
    margin: 3px 10px;
}

#top .mv_slide .bx-pager a.active {
    background: #b71c24;
    box-shadow: 0 0 0 2px #fff;
}

#top .section h2 {
    text-align: center;
    color: #000063;
    font-size: 3.2rem;
    padding-top: 55px;
}

#top .section h2 span {
    color: #222;
    font-size: 1.4rem;
    display: block;
    margin-top: 12px;
}

#top .section.information {
    padding-bottom: 72px;
}

#top .section.information ul {
    margin-top: 30px;
}

#top .section.information ul li {
    border-bottom: 1px dotted #222;
}

#top .section.information ul li:nth-of-type(1) {
    border-top: 1px dotted #222;
}

#top .section.information ul li a {
    padding: 15px 0;
    display: block;
    letter-spacing: -0.4em;
}

#top .section.information ul li a:hover p {
    cursor: pointer;
    color: #b71c24;
    text-decoration: underline;
}

#top .section.information ul li a:hover .date {
    color: #222;
}

#top .section.information ul li a>* {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
}

#top .section.information ul li a p {
    color: #000063;
    line-height: 1.7;
    vertical-align: text-top;
}

#top .section.information ul li a .date {
    font-family: "notoSanBold";
}

#top .section.information ul li a .flag {
    margin-left: 20px;
    margin-right: 30px;
    font-size: 1.2rem;
    text-align: center;
    width: 82px;
    color: #fff;
    height: 25px;
    line-height: 25px;
}

/*業務名：JARD*/
#top .section.information ul li a .flag.jard {
    background: #0000ff;
}

/*業務名：HAMtte*/
#top .section.information ul li a .flag.ham {
    background: #000080;
}

/*業務名：養成課程*/
#top .section.information ul li a .flag.training {
    background: #800000;
}

/*業務名：ｅラーニング*/
#top .section.information ul li a .flag.elearning {
    background: #df7a00;
}

/*業務名：基本保証*/
#top .section.information ul li a .flag.security {
    background: #3cb371;
}

/*業務名：スプリアス*/
#top .section.information ul li a .flag.spurious {
    background: #006400;
}

/*業務名：測定等*/
#top .section.information ul li a .flag.measure {
    background: #008080;
}

/*業務名：イベント*/
#top .section.information ul li a .flag.events {
    background: #ffd700;
    color: #000;
}


#top .section.information .link_infoList {
    display: block;
    width: 260px;
    margin: 40px auto 0;
    text-align: center;
    border-radius: 5px;
    background: #000063;
    position: relative;
    color: #fff;
    border-color: #000063;
    border-style: solid;
    border-width: 2px;
    height: 40px;
    line-height: 36px;
}

#top .section.information .link_infoList::before,
#top .section.information .link_infoList::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}

#top .section.information .link_infoList::before {
    background: #fff;
    right: 10px;
}

#top .section.information .link_infoList::after {
    background: #000063;
    right: 12px;
}

#top .section.information .link_infoList:hover {
    background: #fff;
    color: #000063;
    text-decoration: none;
}

#top .section.information .link_infoList:hover::before {
    background: #000063;
}

#top .section.information .link_infoList:hover::after {
    background: #fff;
}

#top .section.pickup {
    background: #f6f6f6;
    padding-bottom: 60px;
}

#top .section.pickup ul {
    margin-top: 5px;
    text-align: center;
}

#top .section.pickup ul li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 25px;
    width: 250px;
}

#top .section.pickup ul li:nth-child(3n) {
    margin-right: 0;
}


/*
#top .section.pickup .picup_slide {
    text-align: center;
    overflow: hidden;
    margin: 30px auto 0;
    position: relative;
}

#top .section.pickup .picup_slide::before,
#top .section.pickup .picup_slide::after {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 43px;
    background: #f6f6f6;
    z-index: 99;
    top: 0;
}

#top .section.pickup .picup_slide::before {
    left: 0;
}

#top .section.pickup .picup_slide::after {
    right: 0;
}

#top .section.pickup .picup_slide .bx-controls-direction a {
    background: url(../img/top/picupSlide_icon_btn_off.png) no-repeat 0/contain;
    width: 32px;
    height: 84px;
    top: 0;
    bottom: 0;
    margin: 0;
}

#top .section.pickup .picup_slide .bx-controls-direction a:hover {
    background: url(../img/top/picupSlide_icon_btn_on.png) no-repeat 0/contain;
}

#top .section.pickup .picup_slide .bx-prev {
    left: -115px;
}

#top .section.pickup .picup_slide .bx-next {
    right: -115px;
    transform: scale(-1, 1);
}

#top .section.pickup .picup_slide .bx-pager {
    margin-top: 18px;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    padding: 0 20px;
    vertical-align: middle;
    height: 16px;
    line-height: 16px;
}

#top .section.pickup .picup_slide .bx-pager a {
    width: 10px;
    height: 10px;
    background: #999999;
    border-radius: 5px;
    margin: 0 5px;
}

#top .section.pickup .picup_slide .bx-pager a.active {
    background: #fff;
    box-shadow: 0 0 0 2px #000063;
}
*/

#top .section.various {
    background: #f6f6f6;
    padding: 60px 0;
}

#top .section.various .inner {
    zoom: 1;
}

#top .section.various .inner:before,
#top .section.various .inner:after {
    content: "";
    display: table;
}

#top .section.various .inner:after {
    clear: both;
}

#top .section.various .inner .box {
    width: 485px;
    float: left;
}

#top .section.various .inner .box+.box {
    margin-left: 30px;
}

#top .section.various .inner .box:nth-of-type(1) h2 {
    background-image: url(../img/top/various_bg_box01_pc.jpg);
}

#top .section.various .inner .box:nth-of-type(1) h2::before {
    background-image: url(../img/top/various_icon_box01.png);
}

#top .section.various .inner .box:nth-of-type(2) h2 {
    background-image: url(../img/top/various_bg_box02_pc.jpg);
}

#top .section.various .inner .box:nth-of-type(2) h2::before {
    background-image: url(../img/top/various_icon_box02.png);
}

#top .section.various .inner .box h2 {
    padding: 60px 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #fff;
    font-size: 2.6rem;
    text-shadow: 0px 0px 10px black;
    position: relative;
}

#top .section.various .inner .box h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 88px;
    height: 84px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-size: contain;
    bottom: -40px;
}

#top .section.various .inner .box ul {
    height: 310px;
    padding: 66px 25px;
    background: #fff;
}

#top .section.various .inner .box ul li {
    border-bottom: 1px dotted #222;
}

#top .section.various .inner .box ul li:nth-of-type(1) {
    border-top: 1px dotted #222;
}

#top .section.various .inner .box ul li a {
    display: block;
    font-size: 1.6rem;
    padding: 20px 60px;
    position: relative;
    font-family: "notoSanBold";
}

#top .section.various .inner .box ul li a::before,
#top .section.various .inner .box ul li a::after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
}

#top .section.various .inner .box ul li a::before {
    left: 10px;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 5px solid #000063;
    border-radius: 10px;
}

#top .section.various .inner .box ul li a::after {
    right: 10px;
    width: 14px;
    height: 24px;
    background: url(../img/icon_arrow_right_blue_mid.png) no-repeat 0 0/contain;
}

#top .section.various .inner .box ul li a:hover {
    color: #b71c24;
    text-decoration: underline;
}

#top .section.various .inner .box ul li a:hover::after {
    background: url(../img/icon_arrow_right_red_mid.png) no-repeat 0 0/contain;
}

#top .section.schedule {
    padding: 60px 0;
    background: #eaf9ff url(../img/top/area_bg_pc.jpg) no-repeat 50% 0/auto 100%;
}

#top .section.schedule .inner {
    position: relative;
}

#top .section.schedule .inner h2,
#top .section.schedule .inner p {
    left: 0;
    position: absolute;
}

#top .section.schedule .inner h2 {
    top: 0px;
    padding-top: 0;
}

#top .section.schedule .inner p {
    top: 122px;
    line-height: 2.5;
}

#top .section.schedule .inner map {
    position: relative;
    z-index: 99;
}

#top .section.schedule .inner area {
    cursor: pointer;
}

#top .section.link {
    padding-bottom: 60px;
}

#top .section.link ul {
    margin-top: 40px;
    zoom: 1;
}

#top .section.link ul:before,
#top .section.link ul:after {
    content: "";
    display: table;
}

#top .section.link ul:after {
    clear: both;
}

#top .section.link ul li {
    height: 68px;
    line-height: 68px;
    float: left;
    /*width: 320px;*/
    text-align: center;
}

#top .section.link ul li+li {
    margin-left: 20px;
}

#top .section.link ul li img {
    max-height: 71px;
}

@media screen and (max-width: 767px) {
    #top .mv_slide {
        text-align: center;
        padding: 4vw;
    }
    #top .mv_slide .bx-controls-direction a {
        background: url(../img/top/mv_icon_btn_off.png) no-repeat 0/contain;
        width: 24px;
        height: 54px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    #top .mv_slide .bx-controls-direction a:hover {
        background: url(../img/top/mv_icon_btn_off.png) no-repeat 0/contain;
    }
    #top .mv_slide .bx-prev {
        left: 15px;
    }
    #top .mv_slide .bx-next {
        right: 15px;
        transform: scale(-1, 1);
    }
    #top .mv_slide .bx-pager {
        position: absolute;
        bottom: 20px;
        border-radius: 12px;
        padding: 5px 15px;
        background: #000063;
        height: 18px;
        line-height: 0px;
        left: 50%;
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    #top .mv_slide .bx-pager a {
        width: 7.5px;
        height: 7.5px;
        background: #fff;
        border-radius: 5px;
        margin: 0 5px;
    }
    #top .mv_slide .bx-pager a.active {
        background: #b71c24;
        box-shadow: 0 0 0 2px #fff;
    }
    #top .section h2 {
        text-align: center;
        color: #000063;
        font-size: 6.258vw;
        padding-top: 8.083vw;
    }
    #top .section h2 span {
        color: #222;
        font-size: 3.389vw;
        display: block;
        margin-top: 2.607vw;
    }
    #top .section.information {
        padding-bottom: 41px;
    }
    #top .section.information ul {
        margin-top: 22px;
    }
    #top .section.information ul li {
        border-bottom: 1px dotted #222;
    }
    #top .section.information ul li a {
        padding: 15px 0;
        display: block;
        letter-spacing: -0.4em;
    }
    #top .section.information ul li a:hover p {
        cursor: pointer;
        color: inherit;
        text-decoration: underline;
    }
    #top .section.information ul li a:hover .date {
        color: #222;
    }
    #top .section.information ul li a>* {
        display: inline-block;
        vertical-align: middle;
        letter-spacing: normal;
    }
    #top .section.information ul li a p {
        margin-top: 10px;
        display: block;
        color: #000063;
        line-height: 1.7;
        vertical-align: text-top;
    }
    #top .section.information ul li a .date {
        font-family: "notoSanBold";
    }
    #top .section.information ul li a .flag {
        margin-left: 1.3em;
        margin-right: 2.6em;
        font-size: 2.868vw;
        text-align: center;
        width: 20.86vw;
        color: #fff;
        height: 1.6em;
        line-height: 1.6em;
    }
    #top .section.information ul li a .flag.jard {
        background: #0000ff;
    }
    #top .section.information ul li a .flag.ham {
        background: #000080;
    }
    #top .section.information ul li a .flag.training {
        background: #800000;
    }
    #top .section.information ul li a .flag.elearning {
        background: #df7a00;
    }
    #top .section.information ul li a .flag.security {
        background: #3cb371;
    }
    #top .section.information .link_infoList {
        display: block;
        width: 100%;
        margin: 30px auto 0;
        height: 3em;
        line-height: 3em;
    }
    #top .section.information .link_infoList::before,
    #top .section.information .link_infoList::after {
        width: 0.8em;
        height: 0.8em;
    }
    #top .section.information .link_infoList::before {
        right: 8%;
    }
    #top .section.information .link_infoList::after {
        right: 9%;
    }
    #top .section.pickup {
        background: #f6f6f6;
        padding-bottom: 38px;
    }
    #top .section.pickup ul li {
        margin-right: 0;
        margin-top: 2.737vw;
        width: 71.9687vw;
    }
    /*
    #top .section.pickup .picup_slide {
        text-align: center;
        overflow: hidden;
        margin: 25px auto 0;
        position: relative;
    }
    #top .section.pickup .picup_slide::before,
    #top .section.pickup .picup_slide::after {
        position: absolute;
        content: "";
        display: block;
        height: 100%;
        width: 8.93vw;
        background: #f6f6f6;
        z-index: 99;
        top: 0;
    }
    #top .section.pickup .picup_slide::before {
        left: 0;
    }
    #top .section.pickup .picup_slide::after {
        right: 0;
    }
    #top .section.pickup .picup_slide .bx-wrapper {
        position: static;
    }
    #top .section.pickup .picup_slide .bx-viewport li a {
        margin: 0 auto;
        display: block;
        width: 222px;
    }
    #top .section.pickup .picup_slide .bx-controls-direction {
        position: absolute;
        width: 92vw;
        height: 75px;
        top: 0;
        left: 0%;
    }
    #top .section.pickup .picup_slide .bx-controls-direction a {
        background: url(../img/top/picupSlide_icon_btn_off.png) no-repeat 0/contain;
        width: 32px;
        height: 75px;
        top: 0;
        bottom: 0;
        margin: 0;
    }
    #top .section.pickup .picup_slide .bx-controls-direction a:hover {
        background: url(../img/top/picupSlide_icon_btn_off.png) no-repeat 0/contain;
    }
    #top .section.pickup .picup_slide .bx-prev {
        left: 0;
    }
    #top .section.pickup .picup_slide .bx-next {
        right: 0;
        transform: scale(-1, 1);
    }
    #top .section.pickup .picup_slide .bx-pager {
        margin-top: 18px;
        position: relative;
        display: inline-block;
        border-radius: 12px;
        padding: 0 20px;
        vertical-align: middle;
        height: 16px;
        line-height: 16px;
    }
    #top .section.pickup .picup_slide .bx-pager a {
        width: 8px;
        height: 8px;
        background: #999999;
        border-radius: 5px;
        margin: 0 5px;
    }
    #top .section.pickup .picup_slide .bx-pager a.active {
        background: #fff;
        box-shadow: 0 0 0 2px #000063;
    }
    */
    #top .section.various {
        background: #f6f6f6;
        padding: 3em 0;
    }
    #top .section.various .inner {
        zoom: 1;
    }
    #top .section.various .inner:before,
    #top .section.various .inner:after {
        content: "";
        display: table;
    }
    #top .section.various .inner:after {
        clear: both;
    }
    #top .section.various .inner .box {
        width: 100%;
        float: none;
    }
    #top .section.various .inner .box+.box {
        margin-top: 20px;
        margin-left: 0px;
    }
    #top .section.various .inner .box:nth-of-type(1) h2 {
        background-image: url(../img/top/various_bg_box01_pc.jpg);
    }
    #top .section.various .inner .box:nth-of-type(1) h2::before {
        background-image: url(../img/top/various_icon_box01.png);
    }
    #top .section.various .inner .box:nth-of-type(2) h2 {
        background-image: url(../img/top/various_bg_box02_pc.jpg);
    }
    #top .section.various .inner .box:nth-of-type(2) h2::before {
        background-image: url(../img/top/various_icon_box02.png);
    }
    #top .section.various .inner .box h2 {
        padding: 11vw 0;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 100% auto;
        color: #fff;
        font-size: 5.215vw;
        text-shadow: 0px 0px 10px black;
        position: relative;
    }
    #top .section.various .inner .box h2::before {
        position: absolute;
        content: "";
        display: block;
        width: 15.645vw;
        height: 15.645vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        background-repeat: no-repeat;
        background-position: 50% 0%;
        background-size: contain;
        bottom: -9vw;
    }
    #top .section.various .inner .box ul {
        height: auto;
        padding: 17.21vw 1em 2em;
        background: #fff;
    }
    #top .section.various .inner .box ul li {
        border-bottom: 1px dotted #222;
    }
    #top .section.various .inner .box ul li:nth-of-type(1) {
        border-top: 1px dotted #222;
    }
    #top .section.various .inner .box ul li a {
        display: block;
        font-size: 3.911vw;
        padding: 1em 1.5em;
        position: relative;
        font-family: "notoSanBold";
    }
    #top .section.various .inner .box ul li a::before,
    #top .section.various .inner .box ul li a::after {
        position: absolute;
        content: "";
        display: block;
        margin: auto;
        top: 0;
        bottom: 0;
    }
    #top .section.various .inner .box ul li a::before {
        left: 10px;
        width: 6px;
        height: 6px;
        background: #fff;
        border: 4px solid #000063;
        border-radius: 10px;
    }
    #top .section.various .inner .box ul li a::after {
        right: 10px;
        width: 10px;
        height: 24px;
        background: url(../img/icon_arrow_right_blue_mid.png) no-repeat 0 0/contain;
    }
    #top .section.various .inner .box ul li a:hover {
        color: inherit;
        text-decoration: underline;
    }
    #top .section.various .inner .box ul li a:hover::after {
        background: url(../img/icon_arrow_right_red_mid.png) no-repeat 0 0/contain;
    }
    #top .section.schedule {
        padding: 40px 0;
        background: url(../img/top/area_bg_sp.jpg) no-repeat 50% 0/cover;
    }
    #top .section.schedule .inner {
        position: relative;
    }
    #top .section.schedule .inner h2,
    #top .section.schedule .inner p {
        left: 0;
        position: static;
    }
    #top .section.schedule .inner h2 {
        top: 0px;
        padding-top: 0;
    }
    #top .section.schedule .inner p {
        top: 122px;
        line-height: 1;
        text-align: center;
        margin: 1.5em 0;
    }
    #top .section.schedule .inner ul {
        zoom: 1;
    }
    #top .section.schedule .inner ul:before,
    #top .section.schedule .inner ul:after {
        content: "";
        display: table;
    }
    #top .section.schedule .inner ul:after {
        clear: both;
    }
    #top .section.schedule .inner ul li {
        float: left;
        width: calc(50% - 7.5px);
    }
    #top .section.schedule .inner ul li:nth-of-type(even) {
        margin-left: 15px;
    }
    #top .section.schedule .inner ul li:nth-of-type(n + 3) {
        margin-top: 15px;
    }
    #top .section.link {
        padding-bottom: 40px;
    }
    #top .section.link ul {
        margin-top: 25px;
        zoom: 1;
    }
    #top .section.link ul:before,
    #top .section.link ul:after {
        content: "";
        display: table;
    }
    #top .section.link ul:after {
        clear: both;
    }
    #top .section.link ul li {
        height: auto;
        line-height: 68px;
        float: none;
        width: 100%;
    }
    #top .section.link ul li+li {
        margin-top: 20px;
        margin-left: 0px;
    }
    #top .section.link ul li img {
        max-height: 100%;
    }
}
