@charset "UTF-8";
/*--------------------------------------------
All
---------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/* 大枠 */
html,
body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}
body {
    font-size: 16px;
    line-height: 1.6;
}
#wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: auto;
}
@media print {
    html,
    html body {
        overflow: visible !important;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
     #wrapper {
        width: 100%;
    }
    #screen {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 200;
    }
}

/* アクセシビリティ */
.guidance {
    left: -999px;
    position: absolute;
    width: 990px;
}
/* img */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    vertical-align: bottom;
    box-shadow: #000 0 0 0;
}
img,
x:-moz-any-link,
x:default {
    box-shadow: #000 0 0 0;
    /* IE7対応 */
}
/* リンク */
a {
    display: block;
    color: #333;
}
a:link {
    color: #333;
    text-decoration: none;
}
a:visited {
    color: #333;
    text-decoration: none;
}
a:hover {
    color: #333;
    opacity: .95;
}
/* ブロック関係 */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.row {
    padding-bottom: 0em;
}
.col {
    display: block;
    float: left;
    width: 100%;
    line-height: 1.5;
}
.col:first-child {
    margin-left: 0;
}
.col:last-child {
    margin-right: 0;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
/* br */
br.sp_br {
    display: none;
}
br.pc_br {
    display: block;
}

section {
    padding: 30px 0 30px;
    overflow: hidden;
}
section .sp_box>p {
    margin: 0 auto 20px;
    text-align: justify;
}
section .sp_box>p span {
    font-weight: bold;
}
section .sp_box>p span.red {
    color: #e91c24;
}

/* color */
.red{
    color: #E60012 !important;  
}

@media screen and (max-width: 1024px) {
    section {
        padding: 30px 20px;
    }
}
@media screen and (max-width: 768px) {
    .col {
        margin: 0;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

    section {
        border-bottom: 1px solid #959595;
        padding: 0;
    }
    section .sp_box>p {
        margin: 0 auto 20px;
    }
    section .sp_box {
        display: none;
        padding: 30px 15px;
    }
}
@media screen and (max-width: 480px) {
    br.sp_br {
        display: block;
    }
    br.pc_br {
        display: none;
    }

    section .sp_box{
        padding: 20px 15px 20px;
    }
}

/*  メニュー
=====================================*/
/* nav */
#main .nav {
    background: #0098dc;
    transition: .3s;
}
#main .nav .announce{
  background: #fff;
  color: #E60012;
  text-align: center;
  font-size: min(2.5vw,24px);
  font-weight: 700;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .nav .announce div{
  text-align: center;
}
#home #main .nav .announce a{
  color: #0070c0;
  display: inline;
  /*vertical-align: 2px;*/
}
#home #main .nav .announce a:hover{
  text-decoration: underline;
}
#home #main .nav .announce span{
  display: inline-block;
  width: 14%;
  max-width: 130px;
  margin-right: 10px;
  animation: flash 2s infinite;
}
@keyframes flash{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0
  }
  100%{
    opacity: 1;
  }
}

#main .nav ul {
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
@media screen and (min-width: 950px) {
    #main .nav ul {
        max-width: 980px;
    }
}
#main .nav ul li {
    width: 10%;
    position: relative;
}
#main .nav ul li::after {
    content: "";
    width: 2px;
    height: 50px;
    background: #fff;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
#main .nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 15px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    height: 65px;
}
#main .nav ul li a:hover {
    background: #0075ba;
    opacity: 1;
}
#main .nav ul li.library {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13%;
}
#main .nav ul li.library.situation{
    width: 10%;
}
#main .nav ul li.library a {
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 6px 3px;
    font-size: 11px;
    display: flex;
    align-items: center;
    height: 30px;
}
#main .nav ul li img {
    display: block;
    width: 20px;
    height: 13px;
    margin-right: 3px;
}
#main .nav .top_link p{
    font-size: 12px;
}
/* nav 動き */
#home .nav.is-fixed ul {
    max-width: 1000px;
}
.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
.is-hide {
    transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
    #main .nav {
        display: none;
    }
}

/*  見出し
=====================================*/
/* h2：sp */
h2.open {
    display: none;
}
/* h2：お問い合わせ */
h2.pc {
    display: block;
    margin-bottom: 20px;
    color: #0098dc;
    font-size: 24px;
    text-align: center;
}
h2.pc img {
    display: block;
    width: 62px;
    height: 57px;
    margin: 0 auto 5px;
}
/* h3 */
h3 {
    background: #0062B1;
    margin-bottom: 15px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media all and (-ms-high-contrast:none) {
    h3 {
        padding: 7px 0 2px;
    }
}
@media screen and (max-width: 768px) {
    h2.open {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    h2,
    h2.pc {
        background: #0098dc;
        width: 100%;
        padding: 10px 0 10px 10px;
        margin-bottom: 1px;
        font-size: 19px;
        text-align: center;
        color: #fff;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    h2 img,
    h2.pc img {
        display: none !important;
    }
    h2::after {
        content: "";
        width: 20px;
        height: 12px;
        background: url(../img/all/h2_arrow.svg)no-repeat top center;
        background-size: cover;
        position: absolute;
        top: 45%;
        right: 30px;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    h2.close::after {
        top: 40%;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    h3 {
        padding: 6px;
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.4;
    }
}
@media screen and (max-width: 480px) {
    h2, h2.pc{
        font-size: 16px;
    }
    h3{
        margin-bottom: 15px;
    }
}

/*--------------------------------------------
index.html
---------------------------------------------*/
/* ヘッダー
=====================================*/
header {
    width: 100%;
    overflow: hidden;
}
header::before {
    display: block;
    content: "";
    width: 100%;
    height: 20px;
    margin-bottom: 15px;
}
header .header_bg {
    background: url(../img/index/mainvisual.png)no-repeat;
    background-size: auto;
    background-size: cover;
}
header h1#site_title {
    padding-top: 6%;
    color: #fff;
    font-size: 75px;
    text-shadow: 0 0 10px #000;
    opacity: .6;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    font-weight: 800;
}
header .header_title {
    width: 85%;
    margin: 0 auto;
}
/* 画像2枚 */
header .header_photo{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    position: relative;
    padding-block: 35px;
}
header .header_photo .left_img{
    width: 75%;
    padding-left: 20%;
}
header .header_photo .left_img .left_img_inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
header .header_photo .left_img .left_img_inner li{
    width: 45%;
    margin-bottom: 5px;
    margin-right: 2%;
}
header .header_photo .left_img .left_img_inner li a + a{
  margin-top: 3%;
}
header .header_photo .left_img .left_img_inner02 li{
    width: 45%;
}
header .header_photo img{
    width: 100%;
}
header .header_photo .right_img{
    width: 22%;
}
/* 右上リンク */
header .header_link {
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 10000;
}
header .header_link p a:hover {
    opacity: 1;
    background: url(../img/index/navicorn_top_on.png);
    background-size: auto;
    background-size: cover;
}
header .header_link .nexco_icon {
    background: #fff;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 10px;
    overflow: hidden;
}
header .header_link .top_icon{
    padding-bottom: .6rem;
}
header .header_link .top_icon a {
    width: 110px;
    height: 40px;
    background: url(../img/index/navicorn_top.png);
    background-size: cover;
    text-indent: -999999px;
}
header .header_link .top_icon a:hover {
    opacity: 1;
    background: url(../img/index/navicorn_top_on.png);
    background-size: cover;
}
header .header_link .line_icon{
    text-align: center;
}
@media screen and (max-width: 1024px) {
    header h1#site_title {
        font-size: 65px;
    }
}
@media screen and (max-width: 768px) {
    header {
        width: 100%;
    }

    header h1#site_title {
        font-size: 50px;
        text-align: center;
    }
    header .header_link {
        width: 100%;
        top: -30px;
    }
    header .header_link .nexco_icon {
        float: right;
        width: 70px;
        padding: 10px 15px;
    }
    header .header_link .top_icon a {
        float: left;
        margin: 18px;
        width: 85px;
        height: 31px;
    }
    header .header_link .line_icon{
        float: right;
        padding: 10px 15px;
        text-align: right;
    }
}
@media screen and (max-width: 715px) {
    header h1#site_title{
        padding-top: 8%;
    }
}
@media screen and (max-width: 667px) {
    header h1#site_title{
        padding-top: 10%;
        opacity: .9;
    }
}
@media screen and (max-width: 625px) {
    header h1#site_title {
        font-size: 40px;
        line-height: 1;
        padding-top: 10%;
    }
    header .header_photo {
        padding-block: 35% 2%;
    }
}
@media screen and (max-width: 500px) {
    header h1#site_title {
        font-size: 38px;
    }
}
@media screen and (max-width: 480px) {
    header .header_photo{
        width: 95%;
        display: block;
    }
    header .header_photo .left_img{
        width: 100%;
        padding-left: unset;
    }
    header .header_photo .left_img .left_img_inner{
        width: 100%;
    }
    header .header_photo .left_img .left_img_inner li ,header .header_photo .left_img .left_img_inner02 li {
        width: 48%;
    }
    header .header_photo .right_img {
        width: 50%;
        display: flex;
        margin: 0 auto;
    }
    header .header_link .line_icon img{
        width: 13%;
   }
}
@media screen and (max-width: 375px) {
    header h1#site_title{
        padding-top: 18%;
    }
}

/* message
=====================================*/
.message{
    margin: 10px 0;
}
.message p{
    font-size: 27px;
    color: #000;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}
@media screen and (max-width: 667px) {
    .message p {
        font-size: 25px;
    }
}
@media screen and (max-width: 480px) {
    .message {
        padding: 5px 0;
    }
    .message p {
        font-size: 18px;
    }
}

/*--------------------------------------------
sasebo
---------------------------------------------*/
/* nav */
#sasebo .nav ul{
    justify-content: center;
}
#sasebo .nav ul li{
    width: auto;
}
#sasebo .nav.station ul li{
    width: 10.8%;
}
#sasebo .nav.station ul li a{
    padding: 10px;
    font-size: 12px;
}
#sasebo .nav.station ul li.library{
    width: 12%;
}
#sasebo .nav.station ul li.library a{
    padding: 10px 5px;
    font-size: 10px;
}
#sasebo .nav ul li:last-child::before {
  content: "";
  width: 2px;
  height: 50px;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
#sasebo .nav ul li.top_link a{
    padding: 10px;
}
.top_link p{
    background-color: #fff;
    color: #0098dc;
    padding: 5px;
    border-radius: 5px;
    font-size: 15px;
}

#sasebo .sp_top_link{
    display: none;
}
@media screen and (max-width: 780px) {
    #sasebo .sp_top_link{
        display: block;
    }
    #sasebo .sp_top_link h2::after {
        content: unset;
    }
    #sasebo .sp_top_link .sp_top{
        background-color: #fff;
        color: #0098dc;
        padding: 5px;
        border-radius: 5px;
        font-size: 17px;
    }
}

/* bxslider */
.bxslider li{
    width: 100%;
}
.bxslider li img{
    height: 606px;
    width: 100%;
    padding-bottom: 1rem;
}
.bx-wrapper{
    position: relative;
}
.bx-controls-direction i {
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    background-color: #fff;
    opacity: .8;
}
.bx-controls-direction .bx-prev i {
    left: 0;
    margin-left: 10px;
}
.bx-controls-direction .bx-next i {
    right: 0;
    margin-right: 10px;
}
@media screen and (max-width: 1024px) {
    .bx-viewport{
        height: unset !important;
    }
    .bxslider li img{
        height: unset !important;
        padding-bottom: .5rem;
    }
    .bxslider2 li img {
        min-height: unset !important;
    }
}
@media screen and (max-width: 480px) {
    .bxslider2 li img {
        padding-bottom: 1rem;
    }
    .bx-controls-direction i{
        top: 45%;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

/* message（見出しなし） */
#sec_wrapper{
    /*margin-top: 120px;*/
    margin-top: 60px;
}
#sec_message{
    padding-top: 10px;
    padding-bottom: 0;
}
#sec_message .message p {
    text-align: center;
    color: #fff;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}
/* sasebo_daito.html */
#sec_message .message p.red{
    font-size: 33px;
    line-height: 1.4;
    letter-spacing: .8px;
}
/* sasebo_station.html */
#sec_message .message.yellow{
    background-color: #FFF68A;
    display: flex;
    justify-content: center;
}
#sec_message .message.yellow p{
    color: #000;
    line-height: .8;
    border-bottom: 1px solid;
    margin: 7px 0;
    font-size: 27px;
}
#sec_message .message span{
    font-size: 35px;
}

/* message2（期間） */
.message2 {
    background-color: #000;
    padding: 3px 0;
    border-radius: 8px;
}
.message2 p {
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}
.message2 span{
    -webkit-text-stroke: 1px #fabe00;
    text-stroke: 1px #000;
    text-decoration: underline #fabe00;
    font-size: 35px;
}
@media screen and (max-width: 1024px) {
    #sec_message {
      padding: 10px 0;
    }
    #sec_message .message.yellow p{
        font-size: 22px;
    }
}
@media screen and (max-width: 780px) {
    #sec_wrapper{
        margin-top: 0px;
    }
}
@media screen and (max-width: 480px) {
    #sec_message .message p.red{
        font-size: 18px;
    }
    #sec_message .message.yellow p{
        line-height: 1.1;
        border-bottom: none;
        font-size: 18px;
    }
    #sec_message .message span {
        font-size: 22px;
    }
    /* message2 */
    .message2 {
        margin-bottom: 1rem;
    }
    .message2 p{
        font-size: 18px;
    }
    .message2 span{
        font-size: 22px;
    }
    #sasebo .sasebo_inner{
        padding: 20px 15px 20px;
    }
}

/*--------------------------------------------
共通
---------------------------------------------*/
/* sec1 */
#sec1 p{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}
#sec1 p span{
    font-size: 2.8rem;
    color: #E70010;
}
@media screen and (max-width: 768px) {
    #sec1 p{
        font-size: 1.2rem;
    }
    #sec1 p span {
        font-size: 1.8rem;
    }
}

/* sec2 */
#sec2 img{
    margin: 0 auto;
    display: flex;
}
#sec2 h4 {
    font-size: 35px;
    text-align: center;
    width: 100%;
    padding-bottom: 8px;
    line-height: 1;
}
#sec2 h5{
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
}
#sec2 h6{
    font-size: 35px;
    text-align: center;
    line-height: 1.2;
}
#sec2 p{
    display: flex;
    margin: 0;
    font-size: 21px;
    text-align: justify;
    font-weight: 600;
}
#sec2 .sec2_inner{
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    #sec2 h5{
        font-size: 25px;
    }
    #sec2 h6{
        font-size: 30px;
    }
}
@media screen and (max-width: 480px) {
    #sec2 img{
        width: 100%;
    }
    #sec2 .sec2_img2 img {
        width: 55%;
    } 
    #sec2 h4 {
        font-size: 18px;
    }
    #sec2 h5 {
        font-size: 16px;
    }
    #sec2 h6{
        font-size: 20px;
    }
    #sec2 p{
        font-size: 14px;
    }
}

/* sec3 */
#sec3 h4 {
    font-size: 25px;
    text-align: center;
    width: 100%;
    padding-top: 25px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sec3 h4 span a{
    color: #00A0E9;
}
#sec3 .daito_message img{
    width: 800px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
#sec3 .sec3_inner{
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding-bottom: 8px;
    margin-bottom: 10px;
}
#sec3 .sec3_inner .sec3_box{    
    display: flex;
    align-items: end;
}
#sec3 .sec3_inner p{
    line-height: 1;
}
#sec3 .sec3_inner p.first{
    font-size: 30px;
    font-weight: bold;
    padding-right: 10px;
}

.open {
    cursor:pointer;
}
#pop-up,#pop-up02,#pop-up03,#pop-up04 {
    display: none !important;
}
#pop-up:checked + .overlay,#pop-up02:checked + .overlay,#pop-up03:checked + .overlay,#pop-up04:checked + .overlay,#pop-up05:checked + .overlay,#pop-up06:checked + .overlay {
    display: block;
    z-index: 9999;
    background-color: #00000070;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}
.pop01.overlay,.pop02.overlay,.pop03.overlay,.pop04.overlay,.pop05.overlay,.pop06.overlay {
    display: none;
}
.pop01 .window,.pop02 .window,.pop03 .window,.pop04 .window ,.pop05 .window ,.pop06 .window {
    width: 90%;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop01 .close,.pop02 .close,.pop03 .close,.pop04 .close ,.pop05 .close ,.pop06 .close {
    cursor:pointer;
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 1.6rem;
}
img.pop-img{
    height: 100vh;
    object-fit: contain;
}
.pop-inner{
    padding: 30px !important;
}
@media screen and (max-width: 768px) {
    img.pop-img{
        height: unset;
    }
    #sec3 .daito_message h4{
        color: #00A0E9;
        font-size: 20px;
    }
    #sec3 .daito_message h4 span{
        font-size: 20px;
        text-decoration: underline;
    }   

    #sec3 .flex_box {
        display: block;
        width: 50%;
    }
    #sec3 .flex_box>p:not(:last-child) {
        margin: 0 0 20px;
    }

    .pop01 .window,.pop02 .window ,.pop03 .window ,.pop04 .window ,.pop05 .window,.pop06.window  {
        width: 95%;
    }
}
@media screen and (max-width: 480px) {
    #sec3 ul.flex_box {
        width: 100%;
        display: block;
        padding: 0;
    }
    #sec3 ul.flex_box li{
        width: 100%;
        margin-bottom: 10px;
    }
    #sec3 h4{
        font-size: 14px;
        padding: 5px 10px;
    }

    #sec3 .sec3_inner{
        display: block;
    }
    #sec3 .sec3_inner .sec3_box{
        display: block;
    }
    #sec3 .sec3_inner p{
        padding-bottom: 5px;
    }
    #sec3 .sec3_inner p.first{
        font-size: 20px;
        padding-right: 0;
        padding-bottom: 5px;
    }
}

/* sec4 */
#sec4 h3 img {
  width: 70px;
  padding-left: 10px;
}

/* sec5 */
#sec5 h4 {
    font-size: 25px;
    text-align: center;
    width: 100%;
    padding-top: 25px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sec5 h4 span a{
    color: #00A0E9;
}
#sec5 ul.flex_box {
    display: flex;
    margin: 0 auto;
    padding: 15px 0;
    justify-content: space-between;
}
#sec5 ul.flex_box li{
    width: 33%;
    border: 2px solid #0062B1;
    font-weight: 900;
}
#sec5 ul.flex_box li p{
    background-color: #0062B1;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
#sec5 ul.flex_box li .sec3_inner p{
    background-color: unset;
    color: #0062B1;
    border-bottom: dashed 1px;
    font-size: 16px;
}
#sec5 ul.flex_box li .sec3_inner .sec3_img{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 5px;
}
#sec5 ul.flex_box li .sec3_inner .sec3_img .left_img{
    width: 40%;
    text-align: center;
}
#sec5 ul.flex_box li .sec3_inner .sec3_img .right_img{
    width: 60%;
}
#sec5 ul.flex_box li .sec3_inner .sec3_img.three .left_img img{
    width: 75%;
}
#sec5 h4{
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
}
#sec5 .sec5_inner p{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
}
#sec5 .sec5_inner .sec5_block{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sasebo_station #sec5 .txt{
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
    #sec5 h4{
        font-size: 20px;
        padding-top: 15px;
        padding-bottom: 0;
    }
    .sasebo_station #sec5 h4{
      display: block;
    }
    #sec5 ul.flex_box {
        display: block;
    }
    #sec5 ul.flex_box li{
        width: 100%;
    }
    #pop-up04:checked + .overlay{
        display: none;
    }
    #sec5 .sec5_inner p{
        font-size: 1.2rem;
    }
    
    .sasebo_station #sec5 .txt{
      font-size: 20px;
    }
}


/* sec9 */
#sec9 h5.info_title {
    padding: 15px 0;
    font-size: 24px;
    border-top: 3px solid #1c93cf;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
}
#sec9 h5.movie_title {
    background-color: #004097;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}
#sec9 h4 {
    padding: 5px 10px;
    border-left: solid 5px #1c93cf;
    font-size: 18px;
}
#sec9 .sec9_img{
    margin-bottom: 30px;
    text-align: center;
}
#sec9 .sec6_block {
    margin: 10px auto 30px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}
#sec9 h6 {
    font-weight: 700;
}
#sec9 .sec_inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
#sec9 .sec_block2 {
    padding-bottom: 40px;
}
#sec9 .sec_inner video {
    width: 100%;
}
#sec9 .sec6_inner {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}
#sec9 .sasebo_inner .sec6_inner {
    column-gap: 5%;
}
#sec9 .sec6_inner a {
    color: #00529F;
    padding-left: 10px;
    background: url(../img/all/icn_arrow_01.gif) no-repeat 0 0.5em;
}
#sec9 .sec6_inner img {
    height: 100%;
}

.sasebo_station #sec9 .txt{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
    #sec9 .sec6_inner {
        display: block;
    }
    #sec9 h5 {
        font-size: 14px;
    }
    #sec9 h5.info_title, #sec9 h5.movie_title {
        font-size: 14px;
    }
    .sasebo_station #sec9 .txt{
      font-size: 16px;
    }
}
/* sec902 */
#sec902 h5.movie_title {
    background-color: #004097;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}
#sec902 .sec_inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
#sec902 .sec_block2 {
    padding-bottom: 40px;
}
#sec902 .sec_inner video {
    width: 100%;
}
@media screen and (max-width: 768px) {
    #sec902 .sec6_inner {
        display: block;
    }
    #sec902 h5 {
        font-size: 14px;
    }
    #sec902 h5.movie_title {
        font-size: 14px;
    }
}

/* sec6 */
#sec6 h4 {
    padding: 5px 10px;
    border-left: solid 5px #1c93cf;
    font-size: 18px;
}
#sec6 .sec6_block {
    margin: 10px auto 0;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}
#sec6 ul {
    list-style: disc;
    padding-left: 30px;
}
#sec6 table {
    width: 100%;
}
#sec6 .sec6_table p {
    text-align: right;
}
#sec6 tr.head {
    font-weight: 700;
}
#sec6 td {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 5px 20px;
    text-align: center;
}
#sec6 td.last {
    border-right: unset;
}
#sec6 h6 {
    font-weight: 700;
}
#sec6 .sec6_inner {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}
#sec6 .sec6_inner a {
    color: #00529F;
    padding-left: 10px;
    background: url(../img/all/icn_arrow_01.gif) no-repeat 0 0.5em;
}
#sec6 .sec6_inner img {
    height: 100%;
}
@media screen and (max-width: 768px) {
    #sec6 .sec6_inner {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    #sec6 ul {
        padding-left: 20px;
    }
    #sec6 td {
        line-height: 1.3;
        padding: 0;
    }
}

/* sec7 */
#sec7 .sp_box>p {
    margin: 0 auto 25px;
    text-align: center;
}
#sec7 .sp_box>p:nth-child(3) {
    max-width: 730px;
    margin: 0 auto 25px;
    text-align: left;
}
#sec7 .sp_box>p:last-child {
    max-width: 230px;
}
@media screen and (max-width: 480px) {
    #sec7 ul {
        width: 100%;
        padding-left: 20px;
    }
    #sec7 ul li {
        text-align: justify;
    }
    #sec7 .sp_box>p {
        text-align: justify;
    }
}

/* お問い合わせ */
#sec8 {
    overflow: hidden;
    border-bottom: none;
    border-bottom: 1px solid #959595;
}
#sec8 .sp_box>p {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
#sec8 .sp_box>p span {
    text-decoration: underline;
    text-decoration-color: #bd272d;
}
#sec8 .box {
    margin-bottom: 20px;
    border-bottom: 1px solid #959595;
}
#sec8 .box:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
#sec8 .box.line{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#sec8 .sp_box>dl.contact {
    margin-bottom: 20px;
    overflow: hidden;
}
#sec8 .sp_box>dl dt {
    float: left;
    width: 20%;
    background: #0062B1;
    padding: 75px 25px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}
#sec8 .sp_box>dl dd {
    float: left;
    width: 80%;
    border: 1px solid #0062B1;
    padding: 30px 40px;
}
#sec8 .box h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    background: none;
    text-align: justify;
    color: #000;
}
p.mb10 {
    clear: both;
}
#sec8 .sp_box>dl dd h3 span {
    font-size: 15px;
    font-weight: normal;
}
#sec8 dl ul {
    margin-bottom: 20px;
    overflow: hidden;
}
#sec8 dl .box:last-child ul {
    margin-bottom: 0;
}
#sec8 dl ul li {
    display: inline-block;
    width: 30%;
    vertical-align: middle;
}
#sec8 .box .mb20 {
    font-size: 15px;
}
#sec8 .box .red {
    color: #E20012;
}
img[src*="tel_img02_02.svg"] {
    margin-left: 20px;
}
#sec8 .box .line_h {
    line-height: 1;
}
#sec8 .box span.line {
    text-decoration: underline;
}
#sec8 dl ul li.span_2 {
    width: 20%;
    font-size: 15px;
    text-align: center;
}
#sec8 dl ul li a {
    color: #0062B1;
    font-weight: bold;
}
#sec8 dl ul li.span_auto {
    width: auto;
}
#sec8 dl ul li.span_5 {
    width: 49%;
}
#sec8 dl ul li.span_5 p {
    font-size: 15px;
    color: #0062B1;
    line-height: 1.7;
}
#sec8 .tel-link {
    display: flex;
    align-items: center;
}
#sec8 .bnr {
    display: flex;
    justify-content: center;
}
#sec8 .library_bottom a{
    width: 45%;
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 6px 0;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #0098dc;
    margin-bottom: 30px;
}
#sec8 .library_bottom a img{
    width: 22px;
    height: 22px;
    margin-right: 7px;
}
@media screen and (max-width: 768px) {
    #sec8 .sp_box>p {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.4;
    }
    #sec8 .sp_box>p:last-child {
        margin-bottom: 0;
        font-size: 90%;
    }
    #sec8 .box {
        margin-bottom: 20px;
        border-bottom: 1px solid #959595;
    }
    #sec8 .box.line{
        justify-content: center;
    }
    #sec8 .box:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    #sec8 .sp_box>dl dt {
        float: none;
        width: 100%;
        padding: 5px;
        font-size: 15px;
    }
    #sec8 .sp_box>dl dd {
        float: none;
        width: 100%;
        padding: 20px 15px;
    }
    #sec8 .box h3 {
        font-size: 16px;
        text-align: center;
        border: 1px solid #333;
        padding: 10px;
        display: table;
        margin: 0 auto 20px;
    }
    #sec8 .box h3.col {
        float: none;
        width: 83%;
        margin: 0 auto 5px;
    }
    #sec8 .box h3+span {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    #sec8 dl ul li {
        width: 48%;
    }
    #sec8 dl ul li p {
        text-align: center;
    }
    img[src*="ihighway_QR.jpg"] {
        display: none;
    }
    #sec8 .box .mb20 {
        font-size: 14px;
    }
    img[src*="tel_img02_02.svg"] {
        width: 60%!important;
        margin: 15px auto 0;
    }
    #sec8 .box .mb10 {
        font-size: 15px;
        text-align: center;
        font-weight: bold;
    }
    #sec8 .box .mb30 {
        margin-bottom: 20px;
        text-align: center;
        font-size: 12px;
    }
    #sec8 .box .tel-link {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    #sec8 .box:last-child p.txt,
    #sec8 .box .line_h {
        line-height: 1.5;
        text-align: left!important;
        font-size: 12px;
    }
    #sec8 .box .line_h img {
        vertical-align: sub;
    }
    #sec8 .box span.line {
        text-decoration: underline;
    }
    #sec8 dl ul li.span_2 {
        display: block;
        width: 30%;
        margin: 0 auto 10px;
        text-align: center;
    }
    #sec8 dl ul li a {
        ;
        font-size: 12px;
    }
    #sec8 dl ul li.span_auto {
        display: block;
        width: 95%;
        margin: 0 auto;
    }
    #sec8 dl .box:last-child ul {
        width: 90%;
        margin: 0 auto;
    }
    #sec8 .box .tel-link img[src*="tel_img04.svg"] {
        width: 100%;
    }
    #sec8 dl ul li.span_5 {
        display: block;
        width: 90%;
        margin: 0 auto;
        font-size: 14px;
    }
    #sec8 dl ul li.span_5:first-child {
        width: 100%;
        margin-bottom: 10px;
    }
    #sec8 dl ul li.span_5 p {
        font-size: 14px;
        text-align: left;
    }
    #sec8 .box:last-child p.tel-link {
        margin-bottom: 30px;
    }
    #sec8 .box:last-child p.tel-link.mb10 {
        margin-bottom: 10px;
    }
    #sec8 p.sp {
        margin-bottom: 0;
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    #sec8 .box.line{
        display: block;
    }
    #sec8 .box.line .line_inner{
        text-align: center;
    }

    #sec8 .sp_box.sec8_ryoukin h3{
        font-size: 16px !important;
    }
}
#sec8 .sec8_ryoukin .box{
    border-bottom:unset;
}
#sec8 .sp_box.sec8_ryoukin h3{
    font-size: 30px;
    display: block;
}
#sec8 .sp_box.sec8_ryoukin > p{
    text-align: left;
}

/* sec10 */
#sec10 .sec10_block li + li{
  margin-top: 0.8em;
}
#sec10 .sec10_block dl{
  display: flex;
}
#sec10 .sec10_block dt{
  width: 10em;
}
#sec10 .sec10_block dd{
  width: calc(100% - 10em);
}
#sec10 .sec10_block dd a{
  color: #0062B1;
}
#sec10 .sec10_block dd a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 768px){
  #sec10 .sec10_block dl{
    display: block;
  }
  #sec10 .sec10_block dt,
  #sec10 .sec10_block dd{
    width: auto;
  }
}

/* sec11 */
#sec11 h3 img{
  width: 70px;
  padding-left: 10px;
}
#sec11 h3.cl-p{
  background: #733b92;
}
#sec11 img + h3{
  margin-top: 30px;
}
#sec11 .border{
  border: 1px solid #231815;
  padding: 1em;
  margin-bottom: 30px;
  text-align: center;
}
#sec11 .border p{
  margin-bottom: 20px;
}
@media screen and (max-width: 768px){
  #sec11 img + h3{
    margin-top: 15px;
  }
  #sec11 h3{
    display: block;
  }
  #sec11 h3 span{
    display: inline-block;
  }
  #sec11 .border p{
    margin-bottom: 10px;
  }
}


/* sec */
#sec .sec_inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
#sec h5 {
    background-color: #004097;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}
#sec .sec_inner video {
    width: 100%;
}
#sec .sec_block2 {
    padding-bottom: 40px;
}
#sec .sec_block2 img {
    border: 1px solid;
}
#sec .pdflink a {
    text-align: center;
}
#sec .pdflink {
    padding-top: 25px;
}
#sec .pdflink img {
    border: none;
}
@media screen and (max-width: 480px) {
    #sec .sec_inner video {
        height: 200px;
    }
    #sec h5 {
        font-size: 14px;
    }
}

/* フッター
=====================================*/
footer {
    border-top: 1px solid #959595;
    width: 100%;
    padding: 20px 0;
    clear: both;
    overflow: hidden;
}
#footer_inner {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
#footer_inner ul.f_nav {
    margin-bottom: 30px;
    text-align: center;
}
#footer_inner ul.f_nav li {
    display: inline-block;
    font-size: 12px;
    text-align: center;
}
/* ▼ ページ上部へ戻る */
.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    cursor: pointer;
}
/* ▼ コピーライト */
#copyright {
    font-size: 10px;
    text-align: center;
}

footer .f_announce{
  display: none;
}
@media screen and (max-width: 768px) {
    /* 広告ライブラリ */
    p#library {
        background: #0098dc;
        width: 100%;
        padding: 10px 0;
    }
    p#library a {
        width: 45%;
        margin: 0 auto;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 6px 0;
        font-size: 14px;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }
    p#library img {
        width: 22px;
        height: 22px;
        margin-right: 7px;
    }

    /* フッター
    =====================================*/
    footer {
        padding: 15px 0 60px;
        /*padding: 15px 0;*/
    }
    #footer_inner ul.f_nav li {
        font-size: 11px;
    }
    /* ▼ ページ上部へ戻る */
    .pagetop {
        width: 50px;
        right: 10px;
    }
    footer .f_announce{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      background: #fff;
      color: #E60012;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      padding: 0.5em 0;
      position: fixed;
      bottom: 0;
    }
  #home footer .f_announce div{
    text-align: center;
  }
  #home footer .f_announce a{
    color: #0070c0;
    display: inline;
    /*vertical-align: 2px*/;
    font-size: min(2.4vw,12px);
  }
  #home footer .f_announce span{
    display: inline-block;
    width: 18%;
    max-width: 70px;
    margin-right: 6px;
    animation: flash 2s infinite;
  }
}
#sec10 h4{
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
}
#sec10 h4 {
    font-size: 30px;
    text-align: center;
    width: 100%;
    padding-top: 25px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sec10 h4 span a{
    color: #00A0E9;
}



/* 点滅 */
.blinking{
    -webkit-animation:blink .8s ease-in-out infinite alternate;
    -moz-animation:blink .8s ease-in-out infinite alternate;
    animation:blink .8s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.blinking_item {
    position: relative;
    background-color: red;
    color: #fff;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    height: 25px;
    padding: 0 3px;
    margin-right: 12px;
    &::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    border-top: solid 12px transparent;
    border-bottom: solid 12px transparent;
    border-left: solid 10px red;
    }
}