@charset "utf-8";

/*-------------------------------------
    module.css（RICT）
-------------------------------------*/

/* common */

.mod_center {
    text-align: center;
}
.mod_right {
    text-align: right;
}
.mod_left {
    text-align: left;
}

.mod_section {
    clear: both;
    padding: 90px 0 60px;
}

.mod_mb_large {
    margin-bottom: 90px!important;
}
.mod_mb_middle {
    margin-bottom: 60px!important;
}
.mod_mb_small {
    margin-bottom: 30px!important;
}

.mdn {
    display: none!important;
}

/* title */

.mod_title_h1,
.mod_title_h2,
.mod_title_h3,
.mod_title_h4 {
    font-weight: bold;
}
.mod_title_h1 {
    width: 100%;
    font-size: 42px;
    letter-spacing: 3px;
    text-align: center;
    line-height: 46px;
}
.mod_title_h2 {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 35px;
    font-size: 30px;
    letter-spacing: 2px;
    line-height: 45px;
}
.mod_title_h2::after {
    position: absolute;
    content: " ";
    bottom: 0;
    display: block;
    width: 60px;
    border-bottom: 4px solid #00adee;
}
.mod_title_h2.mod_center::after {
    left: calc(50% - 30px);
}
.mod_title_h3 {
    margin-bottom: 25px;
    color: #00adee;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.6;
}
.mod_title_h4 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    padding-left: 28px;
    text-indent: -28px;
}
.mod_title_h4.mod_center {
    padding-left: 0;
    text-indent: 0;
}
.mod_title_h4 span {
    position: relative;
    top: -5px;
    display: inline-block;
    width: 18px;
    height: 3px;
    margin-right: 10px;
    background: #00adee;
}

/* text, list, link */

.mod_text,
.mod_list,
.mod_link {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.mod_text b,
.mod_list b {
    font-weight: bold;
}
.mod_text a,
.mod_list a {
    color: #00adee;
    text-decoration: underline;
}
.mod_text a:hover,
.mod_list a:hover {
    font-weight: bold;
}

.mod_text {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}

.mod_list li,
.mod_link li,
.mod_link li {
    position: relative;
    margin-bottom: 10px;
}
.mod_list li {
    padding-left: 16px;
    text-indent: -19px;
}
.mod_list li::before {
    position: relative;
    color: #00adee;
}
.mod_list li::before {
    top: -3px;
    left: 4px;
    content: "●";
    margin-right: 10px;
    font-size: 8px;
}
.mod_list.kome li {
    padding-left: 16px;
    text-indent: -19px;
}
.mod_list.kome li::before {
    top: 0;
    left: 0;
    content: "※";
    margin-right: 2px;
    font-size: 16px;
}

.mod_list.komenum li {
	counter-increment: cnt;
    padding-left: 34px;
    text-indent: -19px;
}
.mod_list.komenum li::before {
    top: 0;
    left: 0;
	content: "※" counter(cnt);
	display: inline-block;
    margin: 0;
	width: 19px;
    font-size: 16px;
}

.mod_list.num li {
	counter-increment: cnt;
    padding-left: 22px;
    text-indent: -12px;
}
.mod_list.num li::before {
    top: 0;
    left: 0;
	content: counter(cnt) "." ;
	display: inline-block;
    margin: 0;
	width: 12px;
    font-size: 16px;
}

.mod_link li {
    padding-left: 27px;
}
.mod_link li img.icon {
    position: relative;
    top: 3px;
    left: 10px;
    width: 18px;
}
.mod_link li::before,
.mod_link li::after {
    position: absolute;
    content: "";
    left: 0;
}
.mod_link li::before {
    top: 14px;
    width: 16px;
    height: 2px;
    background: #00adee;
}
.mod_link li::after {
    top: 10px;
    width: 8px;
    height: 8px;
    left: 8px;
    border-top: 2px solid #00adee;
    border-right: 2px solid #00adee;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* mod_anchorlink */

.mod_anchorlink {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c2cad2;
}
.mod_anchorlink li {
    margin: 0 50px 20px 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}
.mod_anchorlink li a {
    position: relative;
    padding-right: 20px;
}
.mod_anchorlink li a::before {
    display: block;
    content: "";
    position: absolute;
    top: 5px;
    right: -5px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #002649;
    border-right: solid 2px #002649;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
.mod_anchorlink li a:hover::before {
    border-color: #26bef7;
}

/* column */

.mod_col1 {
}
.mod_col2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mod_col2_box {
    width: 46.4285%;
}
.mod_col2_box:nth-of-type(n+3) {
    margin-top: 30px;
}

.mod_col3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mod_col3::after{
    content: "";
    display: block;
    width: 30.36%;
}
.mod_col3_box {
    width: 30.36%;
}
.mod_col3_box:nth-of-type(n+4) {
    margin-top: 30px;
}


/* btn */

.mod_btn {
    margin-bottom: 30px;
}
.mod_btn a {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 20px 30px 20px 0;
    min-width: 210px;
    border-bottom: 4px solid #00adee;
    color: #00adee;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    text-align: left!important;
    transition: .15s;
}
.mod_btn a::before,
.mod_btn a::after {
    position: absolute;
    content: "";
    transition: .15s;
    right: 2px;
}
.mod_btn a::before {
    top: calc(50% + 1px);
    width: 15px;
    height: 2px;
    background: #00adee;
}
.mod_btn a::after {
    top: calc(50% - 3px);
    width: 8px;
    height: 8px;
    border-top: 2px solid #00adee;
    border-right: 2px solid #00adee;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mod_btn a:hover,
.mod_btn a:hover::after {
    color: #4bceff;
    border-color: #4bceff;
}
.mod_btn a:hover::before {
    background: #4bceff;
}

.mod_btn.mod_btn_blue a {
    background: #00adee;
    padding: 16px 30px 16px 26px;
    min-width: 176px;
    color: #fff;
    border: 4px solid #00adee;
}
.mod_btn.mod_btn_blue a::before,
.mod_btn.mod_btn_blue a::after {
    right: 10px;
}
.mod_btn.mod_btn_blue a::before {
    background: #fff;
}
.mod_btn.mod_btn_blue a::after {
    border-color: #fff;
}
.mod_btn.mod_btn_blue a:hover {
    background: #26bef7;
    border-color: #26bef7;
    color: #fff;
}

.mod_btn .link a::before,
.mod_btn .link a::after {
    display: none;
}
.mod_btn .link a {
    background: url("/common/img/icon_link_b.png") no-repeat;
}
.mod_btn .link a:hover {
    background: url("/common/img/icon_link_b_hover.png") no-repeat;
}
.mod_btn.mod_btn_blue .link a {
    background: url("/common/img/icon_link_w.png") no-repeat #00adee;
}
.mod_btn.mod_btn_blue .link a:hover {
    background: url("/common/img/icon_link_w.png") no-repeat #26bef7;
}
.mod_btn .link a,
.mod_btn .link a:hover {
    background-position: right center;
    background-size: 18px auto;
}
.mod_btn.mod_btn_blue .link a,
.mod_btn.mod_btn_blue .link a:hover {
    background-position: right 10px center;
    background-size: 18px auto;
}

.mod_btn.mod_col1 li,
.mod_btn.mod_col2 li,
.mod_btn.mod_col3 li {
    display: flex;
}
.mod_btn.mod_col1 li a,
.mod_btn.mod_col2 li a,
.mod_btn.mod_col3 li a {
    display: flex;
    align-items: center;
    width: 100%;
}

.mod_btn.mod_col2 li {
    width: 48.6%;
}
.mod_btn.mod_col3 li,
.mod_btn.mod_col3::after{
    width: 31.428%;
}


/* image */

.mod_image {
    margin-bottom: 30px;
}
.mod_image img {
    max-width: 100%;
}
.mod_image_caption {
    margin: 15px 0 0;
    font-size: 15px;
}

.mod_image_col1 .mod_image {
    display: table;
    margin: 0 auto 30px;
}
.mod_image_col1 .mod_image .mod_image_caption {
    display:table-caption;
    caption-side:bottom;
}

.mod_movie a {
    position: relative;
    display: block;
}
.mod_movie a:hover {
    opacity: .8;
}
.mod_movie a .moviebtn {
    position: absolute;
    z-index: 3;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    display: block;
    width: 70px;
    height: 70px;
    background: url("/common/img/mark_movie.png") center no-repeat;
    background-size: cover;
}
.mod_image_col1 .mod_movie {
    max-width: 800px;
}
.mod_image_col1 .mod_movie iframe {
    width: 800px;
    height: 448px;
}
.mod_col2 .mod_movie iframe {
    width: 100%;
    height: 294px;
}

/* localnav */

.mod_localnav {
    padding: 30px 0 10px;
}
.mod_localnav_list {
    display: flex;
    flex-wrap: wrap;
}
.mod_localnav_list li {
    margin-right: 50px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}
.mod_localnav_list li a {
    padding-bottom: 8px;
    border-bottom: 2px solid #fff;
    color: #00adee;
}
.mod_localnav_list li.active a,
.mod_localnav_list li a:hover {
    color: #002649;
    border-color: #002649;
}
.mod_localnav_list li.active a {
    pointer-events: none;
}

/* table */

.mod_table {
    width: 100%;
    margin-bottom: 30px;
    table-layout: fixed;
    border-top: 1px solid #f3f3f4;
    border-left: 1px solid #f3f3f4;
    font-size: 16px;
}
.mod_table th {
    padding: 20px 15px;
    background: #7c8fad;
    border-bottom: 1px solid #f3f3f4;
    border-right: 1px solid #f3f3f4;
    color: #fff;
    text-align: left;
}
.mod_table td {
    padding: 20px 15px;
    background: #fff;
    border-bottom: 1px solid #f3f3f4;
    border-right: 1px solid #f3f3f4;
    text-align: left;
}
.mod_table th a {
    color: #fff;
    text-decoration: underline;
}
.mod_table th a:hover {
    color: #26bef7;
}
.mod_table td a {
    text-decoration: underline;
}

/* accordion */

.mod_accordion {
    margin-bottom: 30px;
    background: #fff;
}
.mod_accordion_q {
    position: relative;
    padding: 30px 90px 30px 30px;
    border-top: 2px solid #e5e5eb;
    cursor: pointer;    
    font-size: 18px;
    font-weight: bold;
    transition: .15s;
}
.mod_accordion_q .acbtn {
    position: absolute;
    top: calc(50% - 22px); 
    right: 30px;
    width: 44px;
    height: 44px;
    background: #00adee;
    border-radius: 50%;
}
.mod_accordion_q .acbtn span {
    position: absolute;
    top: 50%;
    left: 13px;
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
}
.mod_accordion_q .acbtn span:nth-of-type(2) {
    transform: rotate(90deg);
}
.mod_accordion_q.open .acbtn span:nth-of-type(2) {
    display: none;
}
.mod_accordion_q:hover {
    opacity: .7;
}
.mod_accordion_q:first-child {
    border: none;
}
.mod_accordion_a {
    display: none;
    padding: 15px 30px 10px;
}

