@charset "UTF-8";

/* CSS Document */
.pc_only {
    display: none !important;
}

.sp_only {
    display: block !important;
}

.gnav-li {
    display: none;
}

html {
    width: 100%;
    font-size: 59%;
}

body {
    font-size: 1.6em;
    line-height: 1.8;
    overflow-x: hidden;
}

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

.wrap {
    min-width: 280px;
    overflow-x: hidden;
    position: relative;
}

.w960 {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

.w1000 {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

/* .text{
	font-size: 1.5rem;
    line-height:2.2;
	text-align: justify;
} */

/* アニメーション */
.fi-up {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: 1.3s;
    -o-transition: 1.3s;
    transition: 1.3s;
}

.fi-up.on {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.fi-left {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transition: 1.3s;
    -o-transition: 1.3s;
    transition: 1.3s;
}

.fi-left.on {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.fi-right {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: 1.3s;
    -o-transition: 1.3s;
    transition: 1.3s;
}

.fi-right.on {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.header {
    height: 70px;
    padding: 0 0 0 15px;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

.header_in {
    height: 70px;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header_logo {
    position: relative;
    z-index: 1;
}

.header_logo a {
    display: block;
    font-size: 0;
}

.header_logo_img {
    /*width: 180px;*/
    width: 214px;
    height: auto;
}

.header_info {}

.header_menu {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    position: relative;
    z-index: 1;
}

.header_info_item.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
}

.header_info_item_in {
    width: 70px;
    height: 70px;
    display: block;
    text-decoration: none;
    text-align: center;
    padding-top: 35px;
    box-sizing: border-box;
    position: relative;
}

.gnav_btn_txt {
    color: #fff;
    font-size: 12px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 800;
}

.menu .header_info_item_in {
    background: #31a2c7;
}

.ico_hanbarger {
    position: absolute;
    display: block;
    width: 22px;
    height: 18px;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

/* .clicked .ico_hanbarger {
	width: 13px;
	height: 13px;
} */
.ico_hanbarger_item {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: .75px;
    position: absolute;
    left: 50%;
    transform-origin: center;
    transition: all .3s;
}

.ico_hanbarger_item:nth-child(1) {
    top: 0;
    transform: translate(-50%, 0);
}

.ico_hanbarger_item:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.ico_hanbarger_item:nth-child(3) {
    bottom: 0;
    transform: translate(-50%, 0);
}

.clicked .ico_hanbarger_item:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    width: 18px;
    top: 50%;
}

.clicked .ico_hanbarger_item:nth-child(2) {
    transform: translate(-50%, -50%);
    opacity: 0;
}

.clicked .ico_hanbarger_item:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 18px;
    top: 50%;
    bottom: auto;
}

/* グローバルナビゲーション */
body.fixed {
    overflow: hidden;
}

.gnav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s, transform .5s;
    transform: translateY(-50px);
    pointer-events: none;
    z-index: 2;
}

.gnav_wrap .gnav_item {
    pointer-events: none;

}

.gnav_wrap.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gnav_wrap.visible .gnav_item {
    pointer-events: auto;
}

.gnav_wrap::before {
    content: "";
    display: block;
    /*width: 180px;*/
    width: 214px;
    height: 70px;
    background-image: url(../img/common/img_logo_sp.svg);
    background-size: 214px auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 15px;
    z-index: 4;
}

.gnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background: #fff;
    z-index: 3;
    padding: 80px 0 50px;
    box-sizing: border-box;
}

.gnav::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0));
    z-index: 4;
}

.gnav::after {
    content: '';
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0));
    z-index: 1;
}

.gnav_bg {
    display: none;
}

.gnav_in {
    width: 87.5%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.gnav_item {
    display: block;
    padding: 15px 10px 15px;
    box-sizing: border-box;
    font-size: 0;
    border-bottom: 1px solid #ccc;
}

.gnav_item a:before {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    background: url('../img/common/arrow_blue.svg') center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -10px;
    margin-top: -6px;
}

.gnav_item a {
    text-decoration: none;
    position: relative;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.gnav_item2 {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 5px;
}

.gnav_item2_in {
    padding: 15px 10px 10px 12px;
    box-sizing: border-box;
    font-size: 0;
    position: relative;
}

.gnav_item2_in::before,
.gnav_item2_in::after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background: #31a2c7;
    position: absolute;
    right: 10px;
    top: 50%;
    transition: transform .5s;
}

.gnav_item2_in::before {
    transform: translateY(calc(-50% + 2.5px));
}

.gnav_item2_in::after {
    transform: translateY(calc(-50% + 2.5px)) rotate(90deg);
}

.gnav_item2_in.clicked::before {
    transform: translateY(calc(-50% + 2.5px));
}

.gnav_item2_in.clicked::after {
    display: none;
}

.gnav_item2.home .gnav_item2_in::before,
.gnav_item2.home .gnav_item2_in::after {
    display: none !important;
}

.gnav_item2_in a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}

.gnav_item2_in a:before {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    background: url('../img/common/arrow_blue.svg') center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
}

.gnav_li_child {
    display: none;
    padding: 10px 0 10px 0;
}

.gnav_item2.home .gnav_li_child {
    display: none !important;
}

.gnav_item_child {
    font-size: 0;
}

.gnav_item_child:not(:last-child) {
    margin-bottom: 10px;
}

.gnav_item_child a {
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1;
    position: relative;
    padding-left: 10px;
}

.gnav_info_sp {
    margin-top: 25px;
}

.gnav_info_sp p {
    font-size: 1.4rem;
    text-align: center;
}

.gnav_info_sp .gnav_tel {
    margin-top: 10px;
}

.gnav_info_sp p img {
    width: 180px;
}

body.is_fixed {
    overflow: hidden;
}

.index_slide {
    position: relative;
    width: 100%;
    height: 500px;
}

.index_slide::before {
    content: "";
    display: block;
    background-image: url(../img/index/slide/bg_slide_sp.png);
    background-size: cover;
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
}

.swiper-container {
    width: 100%;
    height: 250px;
}

.swiper-slide {
    height: 250px;
}

.slide-img {
    height: 250px;
    overflow: hidden;
}

.slide-img img {
    width: 100%;

}

@media screen and (max-width : 369px) {
    .slide-img img {
        width: auto;
        height: 250px;
        max-width: none !important;
    }
}

.slide_msg {
    width: 100%;
    position: absolute;
    top: 20px;
    z-index: 2;
    text-align: center;
}

.slide_msg p {
    font-weight: bold;
    font-feature-settings: "palt";
}

.slide_msg_lead {
    font-family: "游明朝体", "Yu Mincho", YuMincho, 'Noto Serif JP', serif;
    font-size: 3.2rem;
    color: #5f5754;
}

.scroll_down a {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 2;
    padding: 10px 10px 35px;
    color: #fff;
    font-size: 10px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: 0.2s;
    overflow: hidden;
}

.scroll_down a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: #fff;
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.scroll_down a:hover {
    color: #333;
}

.scroll_down a:hover::after {
    background: #333;
}

.btn_slide {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: -10%;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.btn_slide li {
    width: 40%;
    max-width: 130px;
    height: auto;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
    transition: opacity .3s;
}

.btn_slide li:hover {
    opacity: 0.7;
}

.btn_slide li:first-child {
    margin-right: 5%;
}

.btn_slide li a {
    display: block;
}

.news_time_wrap {
    padding-top: 70px;
    margin-bottom: 20px;
}

.ttl_news {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    text-align: center;
    position: relative;
    padding-top: 35px;
    line-height: 1;
    margin-bottom: 15px;
}

.ttl_news:before {
    content: "";
    display: block;
    width: 25px;
    height: 22px;
    background-image: url(../img/common/img_speaker.svg);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#news_wrap {
    width: 86%;
    height: 235px;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

#news_wrap ul {
    line-height: 1.6;
}

#news_wrap ul li.oneitem {
    border-bottom: dotted 1px #212121;
    padding: 10px 15px 10px 0;
    margin-right: 5px;
    position: relative;
}

#news_wrap ul li.oneitem:first-child {
    border-top: dotted 1px #212121;
}

#news_wrap ul li dl dt {
    position: relative;
}

#news_wrap ul li dl dt span {
    position: absolute;
    width: 66px;
    height: 22px;
    left: 100px;
    top: 1px;
}

#news_wrap ul li dl dt span img {
    width: 66px;
    height: 22px;
}

#news_wrap dd.news_ttl {
    margin: 5px 0;
}

#news_wrap dd.news_ttl a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: solid 1px #808080;
    border-right: solid 1px #808080;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#news_wrap dd.news_ttl a,
#news_wrap dd.news_ttl {
    font-weight: bold;
}

#news_wrap dd.news_ttl a span,
#news_wrap dd.news_ttl span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e56a46;
}

.time_area {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
}

.time_area {
    margin-top: 50px;
}

.ttl_time {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    text-align: center;
    position: relative;
    padding-top: 35px;
    line-height: 1;
    margin-bottom: 15px;
}

.ttl_time:before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../img/common/img_clock.svg);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.time_table {
    width: 100%;
}

.time_table th {
    width: 9%;
    font-size: 1.4rem;
    text-align: center;
    height: 30px;
    border-bottom: 1px solid #808080;
}

.time_table th.timetable_ttl {
    width: 37%;
    text-align: left;
}

.time_table td {
    font-size: 1.4rem;
    text-align: center;
    height: 45px;
    border-bottom: 1px solid #808080;
    line-height: 1.4;
}

.time_table td span {
    display: block;
}

.time_table td .timetable_time {
    font-weight: bold;
}

.time_table td img {
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.time_table td.bd_none {
    border-right: none;
}

.time_table td.time {
    text-align: left;
}

.time_memo {
    text-align: center;
    line-height: 1.8;
    margin-top: 10px;
}

.time_memo a u {
    font-weight: bold;
}

.info_index_wrap {
    padding: 25px 7%;
    background-color: #def1f7;
}

.info_index_list .info_index_item {
    height: 50px;
    background-color: #fff;
    border-radius: 25px 0 0 25px;
    position: relative;
}

.info_index_list li:not(:last-child) {
    margin-bottom: 10px;
}

.info_index_list .info_index_item::before,
.info_index_list .info_index_item::after {
    content: "";
    width: 10px;
    height: 3px;
    display: inline-block;
    border-radius: 2px;
    background: #31a2c7;
    position: absolute;
    right: 10px;
}

.info_index_list .info_index_item::before {
    top: calc(50% - 4px);
    transform: rotate(45deg);
}

.info_index_list .info_index_item::after {
    bottom: calc(50% - 4px);
    transform: rotate(-45deg);
}

.info_index_list .info_index_item dd {
    height: 50px;
    padding-left: 50px;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.info_index_list.top li {
    margin-bottom: 15px;
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .2);
}

.info_index_list.top .info_index_item {
    height: 80px;
    border-radius: 0;
    position: relative;
}

.info_index_list.top .info_index_item dt {
    width: 120px;
    height: 80px;
    background-image: url(../img/index/img_info_index01.jpg);
    background-size: cover;
    position: absolute;
}

.info_index_list.top li:nth-child(2) .info_index_item dt {
    background-image: url(../img/index/img_info_index02.jpg);
}

.info_index_list.top .info_index_item dd {
    height: 80px;
    padding-left: 150px;
}

.info_index_list.top li dd::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../img/index/ico_stethoscope.svg);
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 95px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.info_index_list.top li:nth-child(2) dd::before {
    background-image: url(../img/index/ico_bed.svg);
}

.info_index_list.bottom li dd::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../img/index/ico_karte.svg);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.info_index_list.bottom li:nth-child(2) dd:before {
    background-image: url(../img/index/ico_hospital.svg);
}

.info_index_list.bottom li:nth-child(3) dd:before {
    background-image: url(../img/index/ico_medical.svg);
}

.info_index_list.bottom li:nth-child(4) dd:before {
    background-image: url(../img/index/ico_cooperation.svg);
}

.info_index_list.bottom li:nth-child(5) dd:before {
    background-image: url(../img/index/ico_memo.svg);
}

.info_index_list.bottom li:nth-child(6) dd:before {
    background-image: url(../img/index/ico_human.svg);
}

.info_index_list .info_index_item h4 {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 1.7rem;
}

.footer {
    margin-bottom: 50px;
}

.footer_wrap {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
}

.footer_l .jusho {
    font-size: 1.4rem;
}

.footer_logo {
    width: 270px;
    margin-bottom: 20px;
    /* width: 220px;
    margin-bottom: 10px;*/
}

.footer_logo img {
    vertical-align: bottom;
}

.footer_info_box {
    /*margin-top:25px;*/
    margin-top: 10px;
}

.footer_info_box li:first-child {
    margin-bottom: 8px;
}

.footer_info_item {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_info_item dt {
    width: 50px;
    height: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background-color: #31a2c7;
    border-radius: 3px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    position: relative;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.footer_info_item dd {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 0;
}

.footer_info_item dd span {
    font-size: 2.0rem;
    font-weight: bold;
}

.btn_contact {
    width: 100%;
    max-width: 215px;
    height: 40px;
    box-sizing: border-box;
    border: solid 1px #31a2c7;
    border-radius: 4px;
    margin-top: 10px;
}

.btn_contact a {
    height: 100%;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding-left: 10px;
}

.btn_contact a:hover {
    background-color: #31a2c7;
}

.btn_contact a img {
    width: 20px;
    height: auto;
    position: absolute;
    left: 40px;
}

.btn_contact a::before,
.btn_contact a::after {
    content: "";
    width: 10px;
    height: 3px;
    display: inline-block;
    border-radius: 2px;
    background: #31a2c7;
    position: absolute;
    right: 10px;
}

.btn_contact a::before {
    top: calc(50% - 4px);
    transform: rotate(45deg);
}

.btn_contact a::after {
    bottom: calc(50% - 4px);
    transform: rotate(-45deg);
}

.btn_contact a:hover::before,
.btn_contact a:hover::after {
    background: #fff;
}

.btn_contact a span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #31a2c7;
    position: relative;
}

.btn_contact:hover a span {
    color: #fff;
}

.btn_contact a span::before {
    content: "";
    display: block;
    width: 20px;
    height: 16px;
    background-image: url(../img/common/ico_mail_off.svg);
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
}

.btn_contact a:hover span::before {
    background-image: url(../img/common/ico_mail_on.svg);
}

.footer_info_inner {
    /*margin:25px 0;*/
    margin: 10px 0 15px;
}

.footer_info_inner dl:first-child {
    margin-bottom: 5px;
}

.footer_info_inner dl dt {
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 12px;
    position: relative;
}

.footer_info_inner dl dt::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #31a2c7;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
}

.footer_info_inner dl dd {
    font-size: 1.4rem;
    line-height: 1.6;
}

.footer_map {
    height: 380px;
}

.footer_nav {
    margin-top: 15px;
}

.footer_nav_wrap {
    border-top: dotted 1px #212121;
    padding-top: 10px;
}

.footer_nav_list {
    column-count: 2;
    column-gap: 25px;
}

.footer_nav_list li {
    line-height: 1.7;
}

.footer_nav_list li a {
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    padding-left: 9px;
    font-feature-settings: "palt";
}

.footer_nav_list li a::before {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    background: url('../img/common/arrow_blue.svg') center no-repeat;
    background-size: auto;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
}

.copy_right {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 0;
    padding: 25px 0 30px 0;
}

.copy_right a {
    font-size: 1.2rem;
    line-height: 1;
}

.copy_right a span {
    transition: 0.3s ease-in-out;
}

.copy_right a:hover span {
    color: #31a2c7;
}


/*-----post.php-----*/

#news_detail {
    width: 100%;
    padding: 50px 0 100px 0;
    background-color: #def1f7;
}

#news_detail_in {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    padding: 4%;
    line-height: 1.6em;
    background-color: #fff;
    margin-top: 20px;
}

#news_detail_in h4 span {
    position: relative;
    font-size: 1.5rem;
    top: 5px;
    margin-left: 15px;
}

#news_detail_in h4 span img {
    width: 66px;
    height: auto;
}

#news_detail_in h5 {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

#news_detail_in h4 span.newMark {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e56a46;
    margin-left: 15px;
    position: relative;
    top: 0;
}

#detailWrap {
    font-size: 1.5rem;
    border-top: solid 1px #31a2c7;
    padding-top: 15px;
    line-height: 2;
}

.detailUpfile img {
    width: 100%;
    height: auto;
}

.btn_news {
    width: 100%;
    max-width: 215px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border: solid 1px #31a2c7;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 30px;
}

.btn_news a {
    height: 100%;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.btn_news a:hover {
    background-color: #31a2c7;
}

.btn_news a img {
    width: 20px;
    height: auto;
    position: absolute;
    left: 40px;
}

.btn_news a::before,
.btn_news a::after {
    content: "";
    width: 10px;
    height: 3px;
    display: inline-block;
    border-radius: 2px;
    background: #31a2c7;
    position: absolute;
    right: 10px;
}

.btn_news a::before {
    top: calc(50% - 4px);
    transform: rotate(45deg);
}

.btn_news a::after {
    bottom: calc(50% - 4px);
    transform: rotate(-45deg);
}

.btn_news a:hover::before,
.btn_news a:hover::after {
    background: #fff;
}

.btn_news a span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #31a2c7;
    position: relative;
}

.btn_news:hover a span {
    color: #fff;
}

/*------- ポップアップ --------*/
.js-modal-open {
    color: #333;
}

.modal-content {
    margin: 0 auto;
}

.js-modal-close.close-btn {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 24px;
    height: 24px;
}

.js-modal-close.close-btn::before,
.js-modal-close.close-btn::after {
    content: '';
    display: block;
    width: 33px;
    height: 2px;
    background: #212121;
    position: absolute;
    top: 50%;
    left: 50%;
}

.js-modal-close.close-btn::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.js-modal-close.close-btn::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal {
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 4;
}

/*.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100%;
    position: absolute;
    width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}*/
.modal__content {
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: scroll;
}

.modal_wrap {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0;
}

.modal_box {
    margin-top: 20px;
}



/*---スマホ時のみ下部ついてくるナビ---*/
.mobile_under_nav {
    width: 100%;
    height: 50px;
    position: fixed;
    background-color: #fff;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, .2);
}

.mobile_under_nav ul {
    width: 100%;
    padding: 8.5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -js-display: flex;
}

.mobile_under_nav li {
    width: 25%;
    height: 33px;
    box-sizing: border-box;
}

.mobile_under_nav li:not(:last-child) {
    border-right: 1px dotted #212121;
}

.mobile_under_nav a {
    display: block;
    width: 100%;
    height: 33px;
    text-align: center;
}

.mobile_under_nav li img {
    width: auto;
    height: 34px;
}


/*------- 共通部分 --------*/

h3.ttl {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 15px;
    position: relative;
    line-height: 1;
}

h3.ttl::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #31a2c7;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/*-- 下層共通 --*/
.lower .footer {
    border-top: 2px solid #31a2c7;
    margin-top: 40px;
}

.lower_main_visual {
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

.lower_main_visual::before {
    content: '';
    display: block;
    width: 100%;
    height: 150px;
    background: url("../img/common/bg_ttl.png") no-repeat 45% center;
    background-size: cover;
}

.lower_ttl {
    width: 92%;
    max-width: 1100px;
    margin: 5px auto;
    display: flex;
    align-items: center;
}

.lower_ttl i {
    width: 44px;
    line-height: 1;
}

.lower_ttl h2 {
    flex: 1;
    font-size: 3rem;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: normal;
    position: relative;
    /*margin-left: 10px;*/
    margin-left: 14px;
    line-height: 1.4;
}

.page_link {
    padding: 10px 0;
    border-top: 1px solid #cdcdcd;
    margin-bottom: 10px;
}

.page_link ul {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

.page_link ul li {
    position: relative;
    padding-left: 20px;
}

.page_link ul li::before {
    content: '';
    display: block;
    background: url("../img/common/page_link_arrow.svg") no-repeat center;
    background-size: contain;
    width: 7px;
    height: 12px;
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -6px;
}

.content {
    padding: 30px 0;
}

.wrap_in {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.ct_ttl {
    font-size: 2.7rem;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 7px;
    line-height: 1.4;
}

.ct_ttl::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    border-radius: 2px;
    background: #31a2c7;
    position: absolute;
    left: 50%;
    margin-left: -21px;
    bottom: 0;
}

.cmn_btn {
    margin: 10px 0;
}

.cmn_btn a {
    position: relative;
    display: block;
    padding: 15px 25px 15px 15px;
    box-sizing: border-box;
    border: 1px solid #31a2c7;
    border-radius: 4px;
}

.cmn_btn.pdf_btn a {
    padding: 15px 25px 15px 50px;
}

.cmn_btn a span {
    color: #31a2c7;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.4;
}

.cmn_btn a::after {
    content: '';
    display: block;
    background: url("../img/common/ico_arrow.svg") no-repeat;
    background-size: 8px 13px;
    position: absolute;
    width: 8px;
    height: 13px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
}

.cmn_btn a i {
    position: absolute;
    left: 10px;
    top: 15px;
}

/*-- about --*/
#about_main {
    background: url("../img/about/img_ttl_about.jpg") no-repeat center;
    background-size: cover;
}

.about .photo_back .l_ct p {
    font-size: 2.2rem;
    font-weight: bold;
    position: relative;
    line-height: 2.1;
    display: inline;
    border-bottom: 1px solid #31a2c7;
    padding-bottom: 5px;
}

.about .two_col.photo_back .text {
    padding-top: 20px;
    margin-top: 30px;
}

.about .two_col.photo_back .l_ct {
    margin-bottom: 30px;
}

.guidelines .maru_list {
    margin-bottom: 30px;
}

#about_charter.content {
    padding-bottom: 0;
}

#about_privacy.content {
    margin-top: -50px;
    padding-top: 50px;
}

.gre_name {
    text-align: right;
    margin-top: 2em;
}

.gre_name span {
    margin-left: 0.8em;
    font-size: 2.2rem;
    font-weight: bold;
}

/* #about_charter li .l_bd_ttl02 {
    margin: 25px 0;
} */
/*-- faq --*/
#faq_main {
    background: url("../img/faq/img_ttl_faq.jpg") no-repeat center;
    background-size: cover;
}

/*.faq_list li:first-of-type {
	border-top:  1px solid #cdcdcd;
}*/
.faq_list a.open_ct {
    display: block;
    cursor: pointer;
    position: relative;
    background: url("../img/faq/ico_q.svg") no-repeat left center;
    background-size: 40px 40px;
    border-bottom: 1px solid #cdcdcd;
}

.faq_list a.open_ct:after {
    content: "";
    width: 26px;
    height: 26px;
    background: url("../img/faq/plus_ico.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
    right: 2%;
    top: 50%;
    margin-top: -13px;
    transition: all 300ms;
}

.faq_list a.open_ct span {
    display: block;
    line-height: 1.6;
    font-size: 1.7rem;
    font-weight: bold;
    padding: 20px 30px 20px 55px;
}

.faq_list li a.open:after {
    background: url("../img/faq/minus_ico.png") no-repeat 0 0;
    background-size: contain;
    transition: all 300ms;
    -ms-transition: all 300ms;
    -webkit-transition: all 300ms;
}

.faq_list li {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.faq_list .st-content {
    display: none;
    margin-top: 15px;
}

.faq_list .st-content .st_ct_in {
    background: url("../img/faq/ico_a.svg") no-repeat left 3px;
    background-size: 40px 40px;
    line-height: 1.8;
    padding-bottom: 20px;
    border-bottom: 1px solid #cdcdcd;
}

.faq_list .st-content .st_ct_in .st_ct_txt {
    padding-left: 55px;
}

/*-- 科目 --*/
.kamoku .footer {
    border-top: 2px solid #31a2c7;
    margin-top: 40px;
}

.kamoku_main_visual {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: 40px;
    background: url("../img/common/category_main.jpg") no-repeat center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kamoku_main_visual h2 {
    font-size: 3rem;
    color: #fff;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: normal;
    position: relative;
    line-height: 1.4;
}

.s_ttl {
    font-size: 2.7rem;
    color: #31a2c7;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: normal;
    position: relative;
    line-height: 1.6;
    margin-bottom: 20px;
}

.two_col .image,
.two_col_02 .image {
    margin-top: 20px;
    text-align: center;
}

.tb_01 {
    width: 100%;
    margin: 20px 0;
    box-sizing: border-box;
    border: 1px solid #808080;
}

.tb_01 th {
    display: block;
    background: #eef8fb;
    font-weight: bold;
    border-bottom: 1px solid #808080;
    border-top: 1px solid #808080;
    padding: 5px 4%;
}

.tb_01 tr:first-of-type th {
    border-top: none;
}

.tb_01 td {
    display: block;
    padding: 10px 4%;
}

.maru_list li {
    position: relative;
    padding-left: 1.1em;
    line-height: 1.8;
}

.maru_list li::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #31a2c7;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
}

.l_bd_ttl {
    font-weight: bold;
    font-size: 1.8rem;
    position: relative;
    padding: 5px 0 5px 15px;
}

.l_bd_ttl::before {
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background-color: #31a2c7;
    position: absolute;
    left: 0;
    top: 0;
}

.l_bd_ttl02 {
    font-weight: bold;
    font-size: 1.8rem;
    position: relative;
    padding: 5px 0 5px 25px;
}

.l_bd_ttl02::before {
    content: '';
    display: block;
    width: 6px;
    height: 100%;
    background-color: #31a2c7;
    position: absolute;
    left: 0;
    top: 0;
}

/*-- eiyou --*/
.two_col.photo_back {
    background: #f8f4f1;
}

.two_col.photo_back .image {
    position: relative;
    /* width: 100%; */
    width: 120%;
    height: 175px;
    overflow: hidden;
}

.two_col.photo_back .image img {
    position: absolute;
    height: inherit;
    right: 50%;
    /* max-width: 1000px; */
    /* margin-right: -330px; */
    /* max-width: 1100px; */
    max-width: 1200px;
    margin-right: -360px;
    top: 0;
}

.two_col.photo_back .text {
    padding-top: 40px;
    margin-top: 30px;
}



/* ----------------------------------------------------------------------- 

 pc表示

----------------------------------------------------------------------- */
@media print,
screen and (min-width : 600px) {

    body,
    html {
        width: 100%;
    }

    html {
        font-size: 62.5%;
    }

    .pc_only {
        display: block !important;
    }

    .sp_only {
        display: none !important;
    }

    .wrap {
        width: 100%;
        min-width: 1250px;
        padding-bottom: 0px;
    }

    .fl {
        float: left;
    }

    .fr {
        float: right;
    }

    .w960 {
        width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    .w1000 {
        width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .header {
        width: 100%;
        height: 90px;
        position: relative;
        top: 0;
        left: 0;
        z-index: 3;
        background-color: #fff;
        padding: 0;
    }

    .header_in {
        -js-display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 120px 0 30px;
        height: 90px;
    }

    .header_logo_img {
        /*width: 400px;*/
        width: 430px;
        height: auto;
    }

    .header_info_in {
        margin-right: 40px;
    }

    .header_info_in .tel img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .header_info_item {
        width: 120px;
        height: 120px;
        position: fixed;
        top: 0;
        right: 0;
        display: block;
    }

    .header_info_item_in {
        width: 120px;
        height: 120px;
        padding-top: 70px;
    }

    p.jusho {
        text-align: right;
        margin-bottom: 5px;
    }

    .ico_hanbarger {
        width: 30px;
        height: 24px;
        top: 34px;
    }

    .clicked .ico_hanbarger_item:nth-child(1) {
        width: 30px;
    }

    .clicked .ico_hanbarger_item:nth-child(3) {
        width: 30px;
    }

    .gnav_btn_txt {
        font-size: 14px;
    }


    /* グローバルナビゲーション */

    .gnav_in {
        width: 1200px;
        margin-top: 50px;
    }

    .gnav {
        height: 500px;
        overflow: hidden;
        padding: 100px 0 50px;
    }

    .gnav::before,
    .gnav::after {
        display: none;
    }

    .gnav_bg {
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .4);
        position: absolute;
        top: 500px;
        left: 0;
    }

    .gnav_item {
        width: auto;
        border-bottom: none;
        padding: 0;
    }

    .gnav_item a {
        font-size: 1.6rem;
        transition: color .3s;
    }

    .gnav_li {
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
    }

    .gnav_li_child {
        display: block;
    }

    .gnav_item2 {
        border: none;
        padding-bottom: 0;
    }

    .gnav_item2_in {
        padding: 0 10px 0 12px;
        pointer-events: none;
    }

    .gnav_item2_in a {
        font-size: 1.6rem;
        transition: color .3s;
    }

    .gnav_item2_in a::before {
        margin-top: -6px;
    }

    .gnav_wrap.visible .gnav_item2_in a {
        pointer-events: auto;
    }

    .gnav_item2.home .gnav_li_child {
        display: block !important;
    }

    .gnav_item.renkei {
        width: 145px;
    }

    .gnav_item.iryokikan {
        width: 145px;
        position: absolute;
        top: 35px;
        right: 0;
    }

    .gnav_item.faq {
        width: 145px;
        position: absolute;
        top: 70px;
        right: 0;
    }

    .gnav_item.recruit {
        width: 145px;
        position: absolute;
        top: 105px;
        right: 0;
    }

    .gnav_item.access {
        width: 145px;
        position: absolute;
        top: 140px;
        right: 0;
    }

    .gnav_item.contact {
        width: 145px;
        position: absolute;
        top: 175px;
        right: 0;
    }

    .gnav_item.sitemap {
        width: 145px;
        position: absolute;
        top: 210px;
        right: 0;
    }

    .gnav_item_child a {
        font-size: 1.5rem;
        padding-left: 0;
        transition: color .3s;
    }

    .gnav_item_child a::before {
        display: none;
    }

    .gnav_li2 {
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0;
        position: relative;
    }

    .gnav_li_child {
        margin-top: 10px;
        padding-left: 12px;
    }

    .gnav_item_child:not(:last-child) {
        margin-bottom: 12px;
    }

    .gnav_item2_in::before,
    .gnav_item2_in::after {
        display: none;
    }

    .gnav_wrap::before {
        width: 430px;
        height: 90px;
        background-image: url(../img/common/img_logo_pc.svg);
        background-size: 430px auto;
        left: 30px;
    }

    .gnav_info_pc {
        -js-display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 90px;
        position: absolute;
        right: 160px;
        z-index: 4;
    }

    .gnav_info_pc .tel img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .index_slide {
        height: calc(100vh - 90px);
        max-height: 705px;
        z-index: 0;
    }

    .index_slide::before {
        background-image: none;
    }

    .swiper-container {
        height: 100%;
        max-height: 705px;
    }

    .slide-img {
        height: 100%;
        max-height: 705px;
    }

    .swiper-slide::before {
        content: "";
        background-image: url(../img/index/slide/bg_slide_pc.png);
        background-size: cover;
        background-position: -150px center;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        .swiper-slide::before {
            background-image: url("../img/index/slide/bg_slide_pc@2x.png");
        }
    }

    @media screen and (max-width:1950px) {
        .slide-img img {
            width: auto;
            height: 100%;
            max-height: 705px;
            max-width: none !important;
            max-width: 100%;
        }
    }
    
    .slide_msg {
        text-align: left;
        top: 300px;
        /*left: 5%;*/
        left: 3%;
    }

    .slide_msg p {
        font-size: 1.9rem;
    }

    .slide_msg p.slide_msg_lead {
        font-size: 7.0rem;
        font-weight: normal;
    }

    .scroll_down a {
        font-size: 13px;
        padding: 10px 10px 55px;
    }

    .scroll_down a::after {
        height: 50px;
    }

    .btn_slide {
        width: 375px;
        margin-left: 0;
        margin-right: 0;
        right: 0;
        bottom: -40px;
        padding-right: 100px;
    }

    .btn_slide li {
        width: 180px;
        max-width: 180px;
    }

    .btn_slide li:first-child {
        margin-right: 15px;
    }

    .news_time_wrap {
        width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 70px;
        -js-display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .news {
        width: 48%;
        margin-bottom: 0;
    }

    #news_wrap {
        width: 100%;
        height: 250px;
    }

    .ttl_news {
        font-size: 3.0rem;
        padding-top: 45px;
        line-height: 1;
        margin-bottom: 50px;
    }

    .ttl_news::before {
        width: 35px;
        height: 31px;
    }

    #news_wrap ul li.oneitem {
        padding: 17px 0 12px 0;
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #news_wrap ul li dl {
        width: 28%;
    }

    #news_wrap ul li .news_right {
        width: 340px;
    }

    #news_wrap dd.news_ttl a:before {}

    #news_wrap dd.news_ttl {
        margin-top: 0;
    }

    #news_wrap ul li dl dt span {
        left: 52%;
    }

    .time_index {
        width: 42.5%;
    }

    .time_area {
        width: 100%;
        margin-top: 0;
    }

    .ttl_time {
        font-size: 3.0rem;
        padding-top: 45px;
        line-height: 1;
        margin-bottom: 50px;
    }

    .ttl_time::before {
        width: 35px;
        height: 35px;
    }

    .time_table th {
        width: 9%;
        font-size: 1.6rem;
        height: 40px;
    }

    .time_table th.timetable_ttl {
        width: 37%;
        text-align: center;
        padding-right: 3%;
    }

    .time_table td {
        height: 50px;
    }

    .time_table td.time {
        padding: 0 7% 0 1%;
    }

    .time_table td span {
        font-size: 1.6rem;
    }

    .time_table td .timetable_ampm {
        float: left;
    }

    .time_table td .timetable_time {
        float: right;
    }

    .time_table td img {
        width: 18px;
        height: 18px;
    }

    .time_memo {
        font-size: 1.6rem;
        margin-top: 20px;
    }

    .info_index_wrap {
        padding: 60px 0 50px 0;
    }

    .info_index_list {
        width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .info_index_list li {
        box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .info_index_list li:not(:last-child) {
        margin-bottom: 40px;
    }

    .info_index_list li:last-child {
        margin-bottom: 40px;
    }

    .info_index_list li:hover {
        opacity: .7;
        -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
        transform: translateY(3px);
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    }

    .info_index_list.top {
        -js-display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .info_index_list.bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -js-display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .info_index_list.top li {
        width: 560px;
        box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
        margin-bottom: 50px;
    }

    .info_index_list.top li:hover {
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    }

    .info_index_list.bottom li {
        width: 380px;
    }

    .info_index_list.top .info_index_item {
        height: 490px;
    }

    .info_index_list.top .info_index_item::before,
    .info_index_list.top .info_index_item::after {
        width: 12px;
        height: 4px;
        right: 8px;
    }

    .info_index_list.top .info_index_item::before {
        top: calc(97% - 5px);
    }

    .info_index_list.top .info_index_item::after {
        bottom: calc(3% - 5px);
    }

    .info_index_list.bottom .info_index_item::before,
    .info_index_list.bottom .info_index_item::after {
        width: 12px;
        height: 4px;
        right: 8px;
    }

    .info_index_list.bottom .info_index_item::before {
        top: calc(93% - 5px);
    }

    .info_index_list.bottom .info_index_item::after {
        bottom: calc(7% - 5px);
    }

    .info_index_list.bottom .info_index_item {
        height: 222px;
        border-radius: 0;
    }

    .info_index_list.top .info_index_item dt {
        width: 560px;
        height: 320px;
        position: relative;
    }

    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        .info_index_list.top .info_index_item dt {
            background-image: url("../img/index/img_info_index01@2x.jpg");
        }

        .info_index_list.top li:nth-child(2) .info_index_item dt {
            background-image: url(../img/index/img_info_index02@2x.jpg);
        }
    }

    .info_index_list.bottom .info_index_item dt {
        height: 140px;
    }

    .info_index_list.bottom li:nth-child(1) .info_index_item dt {
        background-image: url("../img/index/img_info_index03.jpg");
        background-size: cover;
    }

    .info_index_list.bottom li:nth-child(2) .info_index_item dt {
        background-image: url("../img/index/img_info_index04.jpg");
        background-size: cover;
    }

    .info_index_list.bottom li:nth-child(3) .info_index_item dt {
        background-image: url("../img/index/img_info_index05.jpg");
        background-size: cover;
    }

    .info_index_list.bottom li:nth-child(4) .info_index_item dt {
        background-image: url("../img/index/img_info_index06.jpg");
        background-size: cover;
    }

    .info_index_list.bottom li:nth-child(5) .info_index_item dt {
        background-image: url("../img/index/img_info_index07.jpg");
        background-size: cover;
    }

    .info_index_list.bottom li:nth-child(6) .info_index_item dt {
        background-image: url("../img/index/img_info_index08.jpg");
        background-size: cover;
    }

    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        .info_index_list.bottom li:nth-child(1) .info_index_item dt {
            background-image: url("../img/index/img_info_index03@2x.jpg");

        }

        .info_index_list.bottom li:nth-child(2) .info_index_item dt {
            background-image: url("../img/index/img_info_index04@2x.jpg");
        }

        .info_index_list.bottom li:nth-child(3) .info_index_item dt {
            background-image: url("../img/index/img_info_index05@2x.jpg");
        }

        .info_index_list.bottom li:nth-child(4) .info_index_item dt {
            background-image: url("../img/index/img_info_index06@2x.jpg");
        }

        .info_index_list.bottom li:nth-child(5) .info_index_item dt {
            background-image: url("../img/index/img_info_index07@2x.jpg");
        }

        .info_index_list.bottom li:nth-child(6) .info_index_item dt {
            background-image: url("../img/index/img_info_index08@2x.jpg");
        }
    }

    .info_index_list.top .info_index_item dd {
        height: 140px;
        padding-left: 0;
        display: block;
        padding: 0 40px;
        text-align: center;
    }

    .info_index_list.bottom .info_index_item dd {
        display: block;
        height: 52px;
        padding-left: 0;
        text-align: center;
    }

    .info_index_list.top li dd::before {
        width: 124px;
        height: 124px;
        top: -114px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 0;
    }

    .info_index_list.bottom li dd::before {
        width: 80px;
        height: 80px;
        top: -80px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .info_index_list .info_index_item h4 {
        font-size: 3.4rem;
        font-weight: normal;
        line-height: 1;
        position: relative;
        z-index: 1;
        margin-top: 30px;
    }

    .info_index_list.bottom .info_index_item h4 {
        font-size: 2.2rem;

    }

    .info_index_list.top .info_index_item dd p {
        margin-top: 10px;
        font-size: 1.5rem;
    }

    .footer {
        margin-bottom: 0;
    }

    .footer_wrap {
        width: 1100px;
        padding-top: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -js-display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer_l {
        width: 500px;
    }

    .footer_l p.jusho {
        text-align: left;
        margin-top: 30px;
    }

    .footer_logo {
        /*width: 250px;*/
        width: 410px;
    }

    .footer_l .jusho {
        font-size: 1.5rem;
    }

    .footer_info_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -js-display: flex;
        margin-top: 10px;
    }

    .footer_info_box li:first-child {
        margin-right: 30px;
    }

    .footer_info_item dt {
        width: 55px;
        height: 22px;
        font-size: 1.4rem;
    }

    .footer_info_item dd {
        font-size: 2.2rem;
    }

    .footer_info_item dd span {
        font-size: 2.2rem;
    }

    .btn_contact {
        width: 100%;
        max-width: 230px;
        height: 45px;
    }

    .footer_info_inner {
        margin: 15px 0;
    }

    .footer_info_inner dl dt {
        font-size: 1.5rem;
    }

    .footer_info_inner dl dd {
        font-size: 1.5rem;
    }

    .footer_nav_list {
        column-count: 3;
        column-gap: 0;
    }

    .footer_nav_list li:nth-child(11),
    .footer_nav_list li:nth-child(12),
    .footer_nav_list li:nth-child(13) {
        padding-left: 50px;
    }

    .footer_nav_list li a {
        font-size: 1.5rem;
    }

    .footer_r {
        width: 500px;
    }

    .footer_map {
        height: 450px;
    }

    .copy_right a {
        font-size: 1.3rem;
    }



    /*------- PC ポップアップ --------*/
    .modal__content {
        background-color: #def1f7;
    }

    .modal_wrap {
        width: 1000px;
        padding: 70px 0;
    }

    .modal_box {
        background-color: #fff;
        padding: 50px;
    }

    .js-modal-close.close-btn {
        top: 50px;
        right: 100px;
    }


    /*------- 共通部分 --------*/

    h3.ttl {
        font-size: 3.0rem;
    }

    /*-- 下層共通 --*/
    .lower .footer {
        margin-top: 100px;
    }

    .lower_main_visual {
        height: 240px;
        margin-bottom: 30px;
    }

    .lower_main_visual::before {
        height: 240px;
        background: url("../img/common/bg_ttl.png") no-repeat left center;
        background-size: cover;
        position: absolute;
        left: 50%;
        margin-left: -1000px;
    }

    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        .lower_main_visual::before {
            background: url("../img/common/bg_ttl@2x.png") no-repeat left center;
            background-size: cover;
        }
    }

    .lower_ttl h2 {
        font-size: 3.8rem;
    }

    .page_link {
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .page_link ul li {
        display: inline-block;
        margin-right: 20px;
    }

    .page_link ul li a {
        font-size: 1.6rem;
    }

    .content {
        padding: 50px 0;
    }

    .wrap_in {
        width: 92%;
        max-width: 1100px;
        margin: 0 auto;
    }

    .ct_ttl {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .cmn_btn a {
        padding: 15px 45px 15px 25px;
    }

    .cmn_btn.pdf_btn a {
        padding: 15px 45px 15px 60px;
    }

    .cmn_btn a i {
        left: 20px;
    }

    .cmn_btn a::after {
        right: 20px;
    }

    .cmn_btn a:hover {
        background: #ddeced;
    }

    /*-- about --*/
    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        #about_main {
            background: url("../img/about/img_ttl_about@2x.jpg") no-repeat center;
            background-size: cover;
        }
    }

    .about .two_col_02.flex .l_ct {
        width: 640px
    }

    .about .two_col_02.flex .r_ct {
        width: 380px
    }

    .about .photo_back .l_ct p {
        font-size: 2.3rem !important;
        line-height: 2.1 !important;
        padding-bottom: 5px !important;
    }

    .about .photo_back .l_ct h4.l_bd_ttl02 {
        margin-bottom: 20px !important;
    }

    .about .two_col.photo_back .text {
        padding-top: 20px;
        margin-top: 0px;
    }

    .about .two_col.photo_back .l_ct {
        margin-bottom: 0px;
    }

    .guidelines .maru_list {
        margin-bottom: 40px;
    }

    #about_charter ul {
        margin-top: 50px;
    }

    #about_charter li {
        margin: 30px 0;
    }

    #about_charter li:last-of-type {
        margin: 30px 0 10px 0;
    }

    #about_charter li .l_bd_ttl02 {
        margin: 25px 0;
    }


    /*-- faq --*/
    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        #faq_main {
            background: url("../img/faq/img_ttl_faq@2x.jpg") no-repeat center;
            background-size: cover;
        }
    }

    .faq_list a.open_ct:after {
        width: 36px;
        height: 36px;
        background: url("../img/faq/plus_ico.png") no-repeat 0 0;
        background-size: contain;
        margin-top: -18px;
    }

    .faq_list a.open_ct span {
        font-size: 1.8rem;
        padding: 24px 60px 24px 55px;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .faq_list a.open_ct:hover span {
        color: #31a2c7;
    }

    .faq_list .st-content {
        margin-top: 24px;
    }

    .faq_list .st-content .st_ct_in {
        padding-bottom: 30px;
    }

    /*-- 科目 --*/
    .kamoku .footer {
        margin-top: 100px;
    }

    .kamoku_main_visual {
        height: 170px;
        margin-bottom: 50px;
    }

    .kamoku_main_visual h2 {
        font-size: 3.8rem;
    }

    .s_ttl {
        font-size: 3rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .two_col .image {
        margin-top: 0px;
    }

    .two_col.flex {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .two_col.flex .l_ct {
        width: 600px;
        position: relative;
        z-index: 2;
    }

    .two_col.flex .l_ct p {
        font-size: 1.6rem;
        line-height: 1.75;
    }

    .two_col.flex .r_ct {
        width: 910px;
        position: absolute;
        right: 50%;
        margin-right: -990px;
    }

    /*-- 科目 --*/
    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
        .kamoku_main_visual {
            background: url("../img/common/category_main@2x.jpg") no-repeat center;
            background-size: 2000px 170px;
        }
    }

    .tb_01 th {
        display: table-cell;
        padding: 5px;
        width: 16%;
        border-right: 1px solid #808080;
        border-top: none;
    }

    .tb_01 td {
        display: table-cell;
        padding: 13px 2%;
        border-bottom: 1px solid #808080;
    }

    .tb_01 tr:last-of-type th,
    .tb_01 tr:last-of-type td {
        border-bottom: none;
    }

    .two_col_02.flex {
        display: flex;
        justify-content: space-between;
    }

    .two_col_02.flex .l_ct {
        width: 600px
    }

    .two_col_02.flex .r_ct {
        width: 420px
    }

    .two_col_02 .image {
        margin-top: 0;
    }

    /*-- eiyou --*/
    .two_col.photo_back {
        width: 1100px;
        margin: 0 auto;
    }

    .two_col.photo_back .image {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: visible;
    }

    .two_col.photo_back .image img {
        position: absolute;
        max-width: 2000px;
        height: 300px;
        right: 50%;
        margin-right: -560px;
        top: 0;
    }

    .two_col.flex.photo_back .wrap_in {
        width: 100%;
    }

    .two_col.flex.photo_back .l_ct {
        width: 580px;
    }

    .two_col.photo_back .text {
        margin-top: 0;
    }




    /*-----post.php-----*/

    #news_detail_in {
        width: 900px;
        padding: 50px;
    }

    #news_detail_in h5 {
        font-size: 1.8rem;
    }

    #detailWrap {
        line-height: 1.8em;
        padding-top: 20px;
    }

    .detailUpfile img {
        max-width: 500px;
        height: auto;
    }

    #news_btn {
        width: 300px;
    }




}










/* ----------------------------------------------------------------------- 

 tatenavi

----------------------------------------------------------------------- */

#tatenavi {
    width: 80px;
    position: fixed;
    top: 28%;
    right: 0;
    z-index: 1;
}

#tatenavi>li {
    width: 80px;
    height: 70px;
    filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.2));
}

#tatenavi>li:not(:last-child) {
    margin-bottom: 5px;
}

#tatenavi>li a {
    display: block;
    width: 80px;
    height: 70px;
}

#tatenavi>li img {
    width: 80px;
    height: 70px;
}



@media print {

    #tatenavi,
    .go_top {
        display: none !important;
    }
}



/*------ IEズレ調整 -----*/
@media all and (-ms-high-contrast: none) {}

/*------ タブレット -----*/
@media screen and (min-width:600px) and (max-width:1024px) {
    .gnav_in {
        width: 960px;
    }

    .swiper-slide::before {
        background-image: url(../img/index/slide/bg_slide_pc.png);
    }
}

/*------ ノートPC -----*/
@media screen and (min-width:1025px) and (max-width:1440px) {
    .swiper-slide::before {
        background-image: url(../img/index/slide/bg_slide_pc.png);
    }
}