body {
    font-family: Arial, sans-serif;
}

* {
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
}

a {
    text-decoration: none;
}


#top{
    font-size: 17px;
}
.slick-slide img.sp,
.sp {
    display: none;
}

.section_ttl {
    position: relative;
    text-align: center;
    font-weight: 800;
    font-size: 25px;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 35px;
    z-index: 1;
}

.section_ttl::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 50px;
    height: 50px;
    z-index: -1;
    line-height: 200px;
    background-color: #ffca6f;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

#live_btn a {
    color: #fff;
    background: url(../img/live_btn.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    width: 180px;
    height: 180px;
    top: 50%;
    right: 3%;
    z-index: 100;
    padding: 10px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    filter: drop-shadow(2px 5px 7px #1d16125e);
    animation: sway 3s infinite;
}


/* ゆらゆらアニメーション */
@keyframes sway {

    0%,
    10% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(5deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    30% {
        transform: rotate(3deg);
    }

    35% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }

    /* 残りの時間は停止 */
}

#live_btn small {
    display: block;
    color: #fff;
}

#live_btn img {
    width: 30px;
    margin: 10px auto;
    display: block;
}

#live_btn .click {
    background: #000;
    padding: 3px 10px;
    font-weight: 800;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    width: 5em;
    border-radius: 50px;
    display: inline-block;
}
/*footerまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media (max-width:960px) {


    #live_btn a {
        top: auto;
        bottom: 55px;
        width: 150px;
        height: 160px;
        font-size: 16px;
    }


    #live_btn img {
        margin: 10px auto 1px;
    }

    #live_btn .click {
        margin-top: 5px;
        font-size: 14px;
    }

    .slick-slide img.sp,
    .sp {
        display: block;
    }

    .slick-slide img.pc,
    .pc {
        display: none;
    }
}

/* ナビゲーションメニュー */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
    /* 初期状態で表示 */
}

.site-header.hidden {
    transform: translateY(-100%);
    /* スクロールダウン時に非表示 */
}

.reason {
    font-weight: 600;
}

.lang_btn {
    color: #c2c2c2;
}
.reason span{
    color: #FF8400;
}
.nav-menu {
    background-color: #ffffff;
    position: relative;
}

.logo_text {
font-weight: 800;
    font-size: 21px;
    width: 50%;
    display: block;
    margin-left: 2em;
    color: #FF8400;
    text-align: justify;
    order: 2;
}

.menu_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.menu_logo> :first-child {
    margin-right: auto;
    /* 最初の要素を左寄せ */
}

.menu_logo .info {
    background: #664018;
    padding: 5px 10px;
    font-size: 1.2em;
    color: #fff;
    font-weight: 800;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.nav-menu .logo {
    display: flex;
    width: 50%;
    align-items: center;
    min-width: 250px;
}

.nav-menu .logo img {
    width: 42%;
        max-width: 240px;
}



.menu-list {
    display: flex;
    border-top: 4px solid #FF8400;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item {
    position: relative;
    width: 20%;
}

.menu-item::after {
    content: "";
    width: 1px;
    height: 20px;
    background: #FF8400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.menu-item:first-child::after {
    display: none;
}

.menu-item a,.menu-item .year_ttl {
    text-align: center;
    align-items: center;
    display: flex;
    height: 75px;
    color: #2d2d2d;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    font-weight: 500;
    transition: .2s;
    font-size: 18px;
}





.drop-menu-list {
    background-color: #fff2c7;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}
.drop-menu-list li:nth-child(even){
        background: #ffe9cb
}
.drop-menu-item {
    border-top: 1px solid #FF8400;
}

.drop-menu-item a {
    padding: 10px;
    color: #2d2d2d;
    text-decoration: none;
}



/* ハンバーガーメニュー */
.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 40px;
    height: 4px;
    background: #FF8400;
    margin: 8px 0;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/*footer*/
footer {}

.footer_menu {
    border-top: #FF8400 3px solid;
    padding: 40px;
    margin-top: 20px;
    position: relative;

}

.top_link {
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    transition: .2s
}
.top_link a{
        color: #ffca6f;
}
.login {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.login a {
    color: #fff;
    padding: 10px;
    background: #FF8400;
}


.copy {
    text-align: center;
    margin-top: 20px;
    color: #fff;
    padding: 10px;
    font-size: .8em;
    background: #FF8400;
}

/*                 TOPのCSS*/
#top_section {
    position: relative;
    margin-top: 140px;
}

#top_section .schedule {
    position: absolute;
    bottom: 10%;
    right: 0%;
    z-index: 1;
}

.schedule .spot {
    font-family: "Shippori Mincho", serif;
    background: #f41400ce;
    padding: 10px 25px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.schedule .day {
    font-family: "Shippori Mincho", serif;
    background: #f4af00d2;
    font-size: 1.3em;
    padding: 10px 25px;
    color: #fff;
    font-weight: 600;
}

.schedule small {
    color: #fff;
    margin-right: 5px;
    font-size: .8em;
}

.slider {
    margin: 0 auto;
}

.slick-img img {
    width: 100%;
}

@keyframes fdzm {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.animation {
    animation: fdzm 4s 0s forwards;
}

.slick-dots {
    display: flex;
    justify-content: center;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
}



.slick-dots li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

#link .btn {
    margin: 80px auto;
    padding: 80px 0;
    background: #FFFCF3;
}

#link .btn a {
    display: block;
    width: 45%;
    max-width: 520px;
    border: solid 2px #A31414;
    /* 内側の線になる一本線の枠線をひく*/
    outline: solid 5px #A31414;
    /* 外側の線になる一本線の枠線をひく*/
    outline-offset: 5px;
    /* 外側の線と内側の線の空き具合を調整*/
    padding: 10px 2em 10px 15px;
    font-size: 1.8em;
    color: #A31414;
    font-weight: 900;
    position: relative;
    background: #fff;
    font-family: "Shippori Mincho", serif;
    margin: auto;
    box-shadow: 0px 0px 0px 10px rgb(255 255 255);
    transition: all 0.3s ease;
}

#link .btn .live_link {
    border: solid 2px #664018;
    /* 内側の線になる一本線の枠線をひく*/
    outline: solid 5px #664018;
    color: #664018;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}



.slick-dots li.slick-active {
    background: coral;
}

#link .btn .yosakoi_link small {
    font-size: .7em;
    color: #A31414;
    display: block;
    font-family: "Shippori Mincho", serif;
}

#link .btn .live_link span {
    background: #664018;
    color: #fff;
    font-size: .5em;
    padding: 5px 10px;
    margin-right: 10px;
    width: max-content;
}

#link .btn .live_link small {
    color: #664018;
    font-weight: 500;
}

#link .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #A31414;
    border-right: 0;
}

#link .btn .live_link::after {
    border-left: 20px solid #664018;
}

#coherence {
    margin-top: 80px;
    background:
        no-repeat 0% 0% url(../img/bg_left.png);
    padding-bottom: 100px;
}

@media (max-width:960px) {

    #coherence {
        background-size: 70%;
        padding: 40px 0 30px;
        margin-top: 0;
                background-position: 0% -15%, 0 130%;
    }

    #link .btn {
        margin: 80px auto 0;
    }

    #link .btn a {
        width: 90%;
    }

    #link .btn a {
        font-size: 1.3em;
    }

    .slick-img {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin: 0;
    }

    .login {
        text-align: center;
        margin: 25px auto 0;
        position: sticky;
        transform: none;
    }

}

/* お知らせ全体 */
#news {
    background-color: #FFF2C7;
}

.notice-container {
    margin: 50px auto;
    padding: 20px 0;
    max-width: 1000px;

    position: relative;
}

/* お知らせタイトル */
.notice-label {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 4px solid #FF8400;
    margin: 10px auto;
    padding: 10px;
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
    font-style: normal;
}

/* お知らせ項目 */
.notice-item {
    padding: 10px;
    cursor: pointer;
}

.notice-item .notice_ttl {
    transition: .2s;
}
.notice-item .notice_ttl time{
        margin-right: 15px;
        transition: .2s;
}


/* ツールチップ */
.tooltip {
    display: none;
    position: absolute;
    right: 0%;
    /* 右側に配置? */
    top: 60%;
    min-height: 10em;
    transform: translateY(-50%);
    background-color: #fff;
    border: 4px solid #FF8400;
    padding: 15px;
    border-radius: 8px;
    width: 500px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: #333;
    text-align: left;
    white-space: normal;
    transition: opacity 0.3s ease;

}

/* 吹き出しの▶ */
.tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #FF8400;
}

/* タイトル部分 */
.tooltip-title {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: #2d2d2d;
}

/* 内容部分 */
.tooltip-content {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* 詳細リンク */
.tooltip a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}



/* ×ボタン */
.tooltip-close {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 15px;
    cursor: pointer;
    color: #ffffff;
    background: #FF8400;
    padding: 2px 5px;
    border-radius: 5px;
}



/*どこいこサービスとその未来*/
#vision {
    padding: 80px 10px;
    background: #FFFCF3;

}
#vision_2 {
    padding: 80px 10px;
    margin-top: 40px;
    background: #fff8f3;
}

#vision p ,#vision_2 p{
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
}

#vision span ,#vision_2 span{
    font-size: 1.1em;
    font-family: "Shippori Mincho", serif;
}

#vision strong ,#vision_2 strong{
    font-size: 1.3em;
    font-family: "Shippori Mincho", serif;
}

#vision .vision_img ,#vision_2 .vision_img{
    max-width: 700px;
    width: 20%;
    margin: 40px auto 0;
    display: block;
}

/*もう一つの見どころ地方車*/
#highlight {
    max-width: 1000px;
    margin: 80px auto;
}

#highlight span {
    font-size: 1.2em;
}

#highlight .highlight_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 80px;
}

#highlight .highlight_list li {
    width: 30%;
}

@media (min-width:960px) {
    #highlight .highlight_list li:not(:nth-child(2)) {
        margin-top: -30px;
    }
}

#highlight .highlight_list .highlight_ttl {
    padding: 5px;
    width: 80%;
    font-weight: 600;
    margin: 10px auto;
    text-align: center;
    background: #FFD07C;
}

#highlight .highlight_list li:nth-child(2) .highlight_ttl {
    background: #FFAE7C;
}

/*関連サイト*/
#link .link_list {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    flex-wrap: wrap;
    margin: auto;
    align-items: center;
}

#link .link_list li {
    width: 30%;
}



#link .share_ttl {
    margin: 40px auto 20px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    padding-bottom: 5px;
    display: block;
    width: max-content;
    border-bottom: #FF8400 3px solid;
    font-family: "Shippori Mincho", serif;
}

#link .share_list {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    flex-wrap: wrap;
    margin: auto;
    align-items: center;
}

#link .share_list li {
    width: 30px;
    margin: 10px;
}

@media (max-width:960px) {
#main,#error{
    margin-top: 80px;
}
    #top_section {
        margin-top: 0;
    }

    .reason {
        text-align: center;
        margin: 20px auto;
    }

    .nav-menu .menu_logo {
        position: absolute;
        z-index: 101;
        width: 50%;
        padding: 10px;
    }

    .nav-menu .logo {
        min-width: auto;
        width: 100%;
        display: block;
    }

    .logo_text {
        font-size: 12px;
        background: #ffffffc7;
        padding: 0 5px;
        width: 100%;
        margin-bottom: 4px;
        margin-left: 0;
        order: 1;
        text-align: center;
    }

    .nav-menu .logo img {
        width: 100%;
    }

    .menu-list {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        border-bottom: 4px solid #FF8400;
        height: 100vh;
    }

    .menu-list.active {
        display: flex;
        transform: translateX(0);
    }

    .menu-item {
        width: 90%;
        margin: 0 auto;
        border-bottom: 1px solid #FF8400;
    }

    .menu-item:first-child {
        border-top: 1px solid #FF8400;
    }

    .menu-item::after {
        display: none;
    }

    .menu-item a,.menu-item .year_ttl {
        height: auto;
        padding: 15px;
        font-size: 15px;
    }

    .drop-menu-list {
        position: static;
        opacity: 1;
        visibility: visible;
        width: 100%;
        border: none;

    }

    .drop-menu-item {
        border-top: none;
    }

    .drop-menu-item a {
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
                background: #ffffffa3;
        padding: 0 5px;
    }

    /* 半透明の背景レイヤー */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* 透明度50%の黒 */
        z-index: 11;
    }

    /* ツールチップのZ-index調整 */
    .tooltip {
        z-index: 12;
        left: 0%;
        width: 100%;
    }

    .tooltip::before {
        display: none;
    }

    #link .link_list li {
        width: 100%;
        padding: 10px;
        margin: auto;
    }

    #vision .vision_img ,#vision_2 .vision_img{
        width: 45%;
    }

    #highlight {
        padding: 10px;
    }

    #highlight .highlight_list li {
        width: 100%;
    }
    .notice-item .notice_ttl time{
        display: block;
        font-size: 1.1em;
        font-weight: 800;
}
}

.cp_box1 {
    position: relative;
    max-width: 1000px;
    margin: 10px auto;
}

.cp_box1 input {
    display: none;
}

/*開くためのボタンとテキストを隠すグラデーションの設定*/
.cp_box1 label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    bottom: -10px;
    width: 100%;
    height: 140px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(254, 255, 245, 0.95) 90%);
}

/* 開いた時にグラデーションを消す */
.cp_box1 input:checked+label {
    background: inherit;
}

.cp_box1 input:checked+label {
    /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}

.cp_box1 .cp_container {
    overflow: hidden;
    height: 250px;
    /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
}

/*続きをよむボタン*/
.cp_box1 label:after,
.cp_box1 label::before {
    content: '';
    position: absolute;
    line-height: 2.5rem;
}



.cp_box1 label:after {
    z-index: 2;
    bottom: 20px;
    width: 12em;
    padding-left: 1em;
    content: '続きをよむ';
    color: #ffffff;
    background: #FF8400;
    border-radius: 20px;
}

.cp_box1.en label:after {
    z-index: 2;
    bottom: 20px;
    width: 12em;
    padding-left: 1em;
    content: 'continue';
    color: #ffffff;
    background: #FF8400;
    border-radius: 20px;
}


.cp_box1 label::before {
    position: absolute;
    bottom: 38px;
    left: calc(50% - 3.5em);
    z-index: 3;
    width: 10px;
    height: 5px;
    background: #ffffff;
    clip-path: polygon(50% 100%, 0 0, 100% 0)
}

/*閉じるボタン*/
.cp_box1 input:checked+label:after {
    content: '閉じる';
}

.cp_box1.en input:checked+label:after {
    content: 'close';
}

.cp_box1 input:checked+label:before {
    left: calc(50% - 2.5em);
    transform: scale(1, -1);
}

.cp_box1 input:checked~.cp_container {
    height: auto;
    padding-bottom: 80px;
    /* 閉じるボタンのbottomからの位置 */
    transition: all 0.5s;
}

/* --------------------------
【フェードイン】 アニメーションを適用する要素
 -------------------------- */
.animate {
    opacity: 0;
    /* 初期状態で非表示 */
    margin-top: 120px;
    /* 下からスライドイン効果（transformの代わり） */
    transition: opacity 0.8s ease-out, margin-top 0.8s ease-out;
    /* 滑らかな変化 */
}

/* フェードインアニメーション */
.fade-in {
    opacity: 0;
    /* 初期状態で非表示 */
    margin-top: 120px;
    /* 下にずらす */
}

/* アニメーション完了時の状態 */
.show {
    opacity: 1;
    /* 完全に表示 */
    margin-top: 0;
    /* 元の位置に戻す */
    z-index: 10;
    /* ツールチップより低いz-index */
}
@media (min-width:960px) {
        .notice-item .notice_ttl:hover ,.notice-item .notice_ttl:hover time {
    color: #FF8400;
}
.cp_box1 label:hover:after {
    filter: brightness(1.5);
}
        #live_btn a:hover {
    filter: contrast(1.8);
}
.menu-item:hover .drop-menu-list {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;

}
.drop-menu-item a:hover {
    background-color: #ffedb1;
}
.login a:hover {
    background: #ffa03b;
}
.slick-dots li:hover,
.slick-dots li.slick-active {
    background: coral;
}
#link .btn .live_link:hover,
#link .btn a:hover {
    background: #ffecbc;
    box-shadow: 0px 0px 0px 10px #ffecbc;
}
#link .btn .live_link:hover span {
    color: #ffecbc;
}
    .menu-item a:hover,
.top_link a:hover {
    color: #FF8400;
}
    .nav-menu .logo:hover {
    opacity: .8;
}
.tooltip a:hover {
    text-decoration: underline;
}
.tooltip-close:hover {
    color: #ffffff;
    background: #ff992d;
}
#link .link_list li a:hover,
#link .share_list li:hover {
    filter: sepia(.5) contrast(0.5);
    opacity: 1;
}
}