@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Squada+One&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@page
{
    margin: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video
{
    font: inherit;
    font-size: 100%;

    letter-spacing:0.02em;
    line-height:1.4;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
}

p {
    margin: 10px 0 20px 0;
}

ul
{
    list-style: none;
}

img
{
    max-width: 100%;

    vertical-align: bottom;
}
@media screen and (max-width: 768px)
{
    img
    {
        max-width: 100%;
    }
}

body
{
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.2;

    min-width: 1280px;

    color: var(--base-color);
    background: #f5f4e5;
}
@media screen and (max-width: 768px)
{
    body
    {
        min-width: auto;

        background-position: -70px 20px;
    }
}
body *
{
    box-sizing: border-box;
}

a
{
    transition: all .25s;
    text-decoration: none;
    color: inherit;
}
a:hover
{
    opacity: .7 !important;
}

@media screen and (max-width: 768px)
{
    .for-pc
    {
        display: none !important;
    }
}

@media screen and (max-width: 768px)
{
    .for-pc_mv
    {
        display: none !important;
    }
}

@media screen and (min-width: 992px)
{
    .for-sp
    {
        display: none !important;
    }
}
@media screen and (min-width: 769px)
{
    .for-sp_mv
    {
        display: none !important;
    }
}

.content_inner
{
    width: 1092px;
    margin: 0 auto;
    padding: 0 16px;
}
@media screen and (max-width: 768px)
{
    .content_inner
    {
        width: 100%;
        padding: 0 8px;
    }
}
@media only screen and (max-width: 426px) {
    .content_inner {
        padding: 0 6px;
    }
}

.home .btn {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    width: 380px;
    height: 60px;
    color: #fff;
    text-decoration: none;
    background: url(../img/btn01.png) no-repeat center center;
    background-size: contain; 
    justify-content: center;
    align-items: center;
  }
  
@media screen and (max-width: 768px)
{
    .home .btn
    {
        font-size: 16px;
        width: 280px;
        max-width: 100%;
        height: 60px;
        background-size: contain;
    }
}

.header
{
    height: 60px;
}
@media screen and (max-width: 768px)
{
    .header
    {
        position: relative;
        z-index: 1000;

        height: auto;
    }
}
.header__inner
{
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background-color: #009de0;
}
@media screen and (max-width: 768px)
{
    .header__inner
    {
        padding: 12px;

        justify-content: space-between;
    }
}

.header_logo
{
    margin-right: auto;
}

.header__hbg_btn
{
    position: relative;

    width: 20px;
    height: 20px;
}
.header__hbg_btn--text{
    color: #fff;
}
.header__hbg_btn:before
{
    position: absolute;
    top: 5px;
    left: 0;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    transition: .25s;

    background: #ffffff;
}
.header__hbg_btn:after
{
    position: absolute;
    bottom: 5px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    transition: .25s;
    background: #ffffff;
}
.header__hbg_btn.active:before
{
    top: 50%;

    transform: translate(0, -50%) rotate(135deg);
}
.header__hbg_btn.active:after
{
    top: 50%;
    bottom: auto;

    transform: translate(0, -50%) rotate(-135deg);
}
.header__book > a
{
    font-size: 16px;
    font-weight:bold;

    display: flex;

    width: 180px;
    height: 58px;

    color: #fff;
    border-radius: 2px;
    background: #059856;

    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size:18px;
}
@media screen and (max-width: 768px)
{
    .header__book > a
    {
        font-size: 12px;

        width: auto;
        height: 24px;
        padding: 8px 12px;

        gap: 4px;
    }
}
.header__book > a:hover
{
    text-decoration: none;
}
@media screen and (max-width: 768px)
{
    .header__book > a img
    {
        width: 16px;
    }
}

.footer
{
    width: 100%;
    margin-top: 100px;
}
@media screen and (max-width: 768px)
{
    .footer
    {
        margin-top: 40px;
    }
}
.footer__links
{
    width: 1520px;
    margin: 0 auto;
    background: url(../img/footer__links_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #fff;  
    padding: 40px 20px;
    border-radius:40px 40px 8px 8px;
}
@media screen and (max-width: 768px)
{
    .footer__links
    {
        width: 100%;
        border-radius: 24px 24px 0 0;
    }
}
.footer__links__inner
{
    width: 1060px;
    margin: 0 auto;
    padding-bottom: 40px;
}
@media screen and (max-width: 768px)
{
    .footer__links__inner
    {
        width: 100%;
        padding: 24px 16px;
    }
}
.footer__links__top
{
    display: flex;

    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 768px)
{
    .footer__links__top
    {
        gap: 8px;
    }
}
.footer__links__bottom
{
    display: flex;

    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 768px)
{
    .footer__links__bottom
    {
        gap: 8px;
    }
}
.footer__links__bottom__wrap
{
    margin-top: 20px;
}
@media screen and (max-width: 768px)
{
    .footer__links__bottom__wrap
    {
        margin-top: 8px;
    }
}
.footer__main
{
    width: 100%;
    padding-bottom: 44px;

    border-radius: 60px 60px 0 0;
    background: #009de0;
}
@media screen and (max-width: 768px)
{
    .footer__main
    {
        width: 100%;
        padding-bottom: 24px;
        border-radius: 0;
    }
}
.footer__main__left
{
    margin-top: auto;
    margin-bottom: auto;
}
.footer__main__logo
{
    width: 245px;
}
@media screen and (max-width: 768px)
{
    .footer__main__logo
{
    width: 200px;
}
}
.footer__main__logo02
{
    width: 220px;
    margin-top: 20px;
}
.footer__main__inner
{
    display: flex;

    width: 1060px;
    margin: 0 auto;
    padding-top: 60px;

    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 768px)
{
    .footer__main__inner
    {
        display: block;
        width: 100%;
        padding: 24px 16px;
    }
}
.footer__main__right
{
    display: flex;

    justify-content: flex-end;
    align-items: flex-start;
    gap: 60px;
}
@media screen and (max-width: 768px)
{
    .footer__main__right
    {
        margin-top: 24px;
        gap: 16px;
        justify-content: center;
    }
}
.footer__main__links
{
    display: flex;

    margin-top: 30px;

    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 768px)
{
    .footer__main__links
    {
        margin-top: 16px;

        gap: 8px;
    }
}
@media screen and (max-width: 768px)
{
    .footer__main__links__item img
    {
        width: 24px;
    }
}
.footer__main__links__item--bdb
{
    text-decoration: underline;
}
@media screen and (max-width: 768px)
{
    .footer__main__links__item--bdb
    {
        font-size: 14px;
    }
}
.footer__main__link_list__item
{
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    color: #fff;
}
@media screen and (max-width: 768px)
{
    .footer__main__link_list__item
    {
        font-size: 13px;
    }
}
.footer__main__link_list__item:before
{
    display: block;
    width: 6px;
    height: 6px;
    content: '';
    border-radius: 9999px;
    background: #fff;
}
.footer__main__link_list__item + .footer__main__link_list__item
{
    margin-top: 6px;
}
.footer__main__copy
{
    font-size: 12px;
    font-weight: bold;
    margin-top: 80px;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 768px)
{
    .footer__main__copy
    {
        font-size: 10px;
        margin-top: 32px;
    }
}

.sidebar
{
    z-index: 8;
    width: 440px;
    background: #f8fdff;
}
@media screen and (max-width: 768px)
{
    .sidebar
    {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: .3s;
        pointer-events: none;
        opacity: 0;
        border-radius: 0;
        background: rgba(241, 238, 236, .9);
    }
}
@media screen and (max-width: 768px)
{
    .sidebar.active
    {
        display: block;
        pointer-events: auto;
        opacity: 1;
    }
}
.sidebar__sticky
{
    position: sticky;
    top: 0;
    left: 0;
}
@media screen and (max-width: 768px)
{
    .sidebar__sticky
    {
        position: relative;
        top: auto;
        left: auto;
    }
}
.sidebar__inner
{
    padding: 10px 40px 40px;
}
@media screen and (max-width: 768px)
{
    .sidebar__inner
    {
        padding: 10px 16px 16px;
    }
}
.sidebar__logo
{
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px)
{
    .sidebar__logo
    {
        height: 140px;
    }
}
@media screen and (max-width: 768px)
{
    .sidebar__logo img
    {
        width: 100px;
    }
}
.sidebar__main_slider__lead
{
    font-size: 16px;
    font-weight: bold;

    position: relative;
    z-index: 1;
    margin-bottom:8px;

    display: inline-flex;

    height: 32px;
    padding: 0 20px;

    color: #fff;
    border-radius: 4px 20px 4px 4px;
    background: #059856;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px)
{
    .sidebar__main_slider__lead
    {
        font-size: 13px;

        height: 24px;
        padding: 0 14px;
        border-radius: 3px 12px 3px 3px;
    }
}
.sidebar__main_slider__item
{
    overflow: hidden;
    border-radius: 30px;
}
.sidebar__main_slider__item img
{
    padding: 0 12px;
}
@media screen and (max-width: 990px)
{
.sidebar__main_slider__item img{
     width: 420px;
     margin: 0 auto;
}
}
@media screen and (max-width: 768px)
{
.sidebar__main_slider__item img{
     width: 360px;
}
}
.sidebar__main_slider__wrap
{
  padding-top: 120px;
}
@media screen and (max-width: 990px)
{
.sidebar__main_slider__wrap {
    padding-top: 20px;
}
}
.sidebar__main_slider .slick-dots li
{
    margin: 0;
}
.sidebar__main_slider .slick-dots li button:before
{
    font-size: 10px;
}
.sidebar__main_slider .slick-prev,
.sidebar__main_slider .slick-next
{
    z-index: 1;

    width: 30px;
    height: 30px;
}
@media screen and (max-width: 768px)
{
    .sidebar__main_slider .slick-prev,
    .sidebar__main_slider .slick-next
    {
        width: 20px;
        height: 20px;
    }
}
.sidebar__main_slider .slick-prev
{
    left: 12px;
}
.sidebar__main_slider .slick-next
{
    right: 12px;
}
.sidebar__main_slider .slick-arrow:before
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100% !important;
    height: 100% !important;

    content: '' !important;
}
.sidebar__main_slider .slick-next:before
{
    background: url('../img/side_arrow.svg') !important;
    background-size: contain !important;
}
.sidebar__main_slider .slick-prev:before
{
    background: url('../img/side_arrow02.svg') !important;
    background-size: contain !important;
}
.sidebar__link__wrap
{
    margin-top: 20px;
}
@media screen and (max-width: 768px)
{
    .sidebar__link__wrap
    {
        margin-top: 14px;
    }
}
.sidebar__links
{
    display: flex;
    overflow: hidden;

    border-radius: 14px;

    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.sidebar__links__wrap
{
    margin-top: 20px;
}
@media screen and (max-width: 768px)
{
    .sidebar__links__wrap
    {
        margin-top: 14px;
    }
}
.sidebar__links__item
{
    overflow: hidden;
    width: calc(50% - 2px);
    width: 98%;
    border-radius: 2px;
    background: #f6f6f6;
}
.sidebar_2col
{
    width: calc(49% - 2px) !important;
}
.sidebar__links__item > a
{
    position: relative;
    display: flex;
    height: 40px;
    padding: 8px 30px 8px 12px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 768px)
{
    .sidebar__links__item > a
    {
        height: 30px;
        padding: 6px 26px 6px 10px;
        gap: 8px;
    }
}
.sidebar__links__item > a:hover
{
    text-decoration: none;
}
.sidebar__links__item > a:after
{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
    pointer-events: none;
}
.sidebar__links__item__ico{
    width:14px;
  }
@media screen and (max-width: 768px)
{
    .sidebar__links__item > a:after
    {
        right: 8px;
    }
}
@media screen and (max-width: 768px)
{
    .sidebar__links__item__ico
    {
        width: 16px;
    }
}
.sidebar__links__item__txt
{
    font-size: 16px;
    font-weight: bold;
}
@media screen and (max-width: 768px)
{
    .sidebar__links__item__txt
    {
        font-size: 13px;
    }
}

.breadcrumbs
{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 0 20px;
    overflow-x: auto;
    white-space: nowrap;
}
.breadcrumbs_link {
    color: #027bff;
    height: 20px;
    font-size: 14px;
}
.breadcrumbs__sign {
    display: inline;
    height: 8px;
    width: 4px;
    color: #757575;
    margin: 6px 16px;
}
.breadcrumbs__text {
    width: 100%;
    height: auto;
    font-size: 14px;
    overflow-wrap: break-word;
}
@media screen and (max-width: 426px)
{
    .breadcrumbs
{
    margin-top: 5px;
}
.breadcrumbs_link {
    font-size: 12px;
}
.breadcrumbs__text {
    font-size: 12px;
}
.breadcrumbs__sign {
    margin: 6px 8px;
}
}
@media screen and (max-width: 768px)
{
    .main_content
    {
        overflow: hidden;
    }
}

.main
{
    width: calc(100% - 440px);
}
@media screen and (max-width: 768px)
{
    .main
    {
        width: 100%;
    }
}
.main__wrap
{
    display: flex;

    justify-content: space-between;
    align-items: stretch;
}
@media screen and (max-width: 768px)
{
    .main__wrap
    {
        display: block;
    }
}

.section__summut__point
{
    overflow: hidden;
    background-color: aliceblue;
    margin: 40px 0 0 0;
    padding: 0 0 0 0;
}
.bg01-wrapper {
    line-height: 0;
  }
  .bg01-wrapper img {
    width: 100% !important;
  }
@media screen and (max-width: 768px)
{
    .section__summut__point
    {
       /* padding-top: 50px; */
    }
}
.section__summut__point h2
{
    text-align: center;
}
.section__summut__point h2 .ttl img{
    width: 360px;
    margin: 0 0 30px 0;
}
@media screen and (max-width: 426px)
{
    .section__summut__point h2 .ttl img{
        width: 260px;
    }
}
.section__summut__point__slider__ico
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;

    transform: translate(-50%, -60%);
}
.section__summut__point__slider__wrap
{
    position: relative;
}
.section__summut__point__slider .slick-list
{
    overflow: visible !important;
}
@media screen and (max-width: 768px)
{
    .section__summut__point__slider .slick-list
    {
        overflow: hidden !important;
    }
}

.section__summut__point__slider__item
{
    margin: 0 10px;
}
.section__summut__point__slider__item > a
{
    position: relative;
    display: block;
    overflow: hidden;
    width: 280px;
    height: auto;
    border-radius: 25px;
}
@media screen and (max-width: 768px)
{
    .section__summut__point__slider__item > a
{
    width: 100%;
    padding: 0 10px;
    border-radius: 25px;
}
}

.section__summut__point__btn
{
    display: flex;
    justify-content: center;
    margin-top: 70px;
    position: relative;
    z-index: 5;
}
@media screen and (max-width: 768px)
{
    .section__summut__point__btn
{
    margin-top: 30px;
}
}

.section__memories__inner
{
    text-align: center;
}
.section__memories__main
{
    /*padding-bottom: 40px;*/
}
@media screen and (max-width: 768px)
{
    .section__memories__main
    {
       /* padding-bottom: 24px;*/
    }
}
.section__memories__main img
{
    width: 100%;
}
.section__event
{
    margin-top: 100px;
}
@media screen and (max-width: 768px)
{
    .section__event
    {
        margin-top: 40px;
    }
}
.content_inner h2 img
{
    width: auto;
    height: 45px;
}
@media screen and (max-width: 768px)
{
.content_inner h2 img {
    width: auto;
    height: 40px;
}
}
@media screen and (max-width: 426px)
{
.content_inner h2 img {
    width: auto;
    height: 35px;
}
}

.section__event__main
{
    margin-top: 40px;
}
@media screen and (max-width: 768px)
{
    .section__event__main
    {
        margin-top: 24px;
    }
}

.section__event__main__inner + .section__event__main__inner
{
    border-top: 1px solid #c9c5c1;
}
.section__news
{
    margin-top: 120px;
}
@media screen and (max-width: 768px)
{
    .section__news
    {
        margin-top: 50px;
    }
}
.section__news__inner
{
    position: relative;
}

.section__youtube
{
    /*margin-top: 80px;*/
}
@media screen and (max-width: 768px)
{
    .section__youtube
    {
        /*margin-top: 50px;*/
    }
}

.section__reserve
{
    margin-top: 140px;
}
@media screen and (max-width: 768px)
{
    .section__reserve
    {
        margin-top: 80px;
    }
}

.section__book
{
    margin-top: 140px;
}
@media screen and (max-width: 768px)
{
    .section__book
    {
        margin-top: 40px;
    }
}

.section__contact
{
    margin-top: 140px;
}
@media screen and (max-width: 768px)
{
    .section__contact
    {
        margin-top: 80px;
    }
}

.banner
{
    text-align: center;
}

.head02
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}
@media screen and (max-width: 768px)
{
    .head02
    {
        gap: 16px;
    }
}
.flex {
    display: flex;
    flex-wrap: wrap;
}

.header__book.flex {
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}
@media screen and (max-width: 768px)
{
    .header__book.flex {
        gap: 5px;
    }
}
.header__book .header__book__btn > a img
{
  max-width: 32px;
  border-radius: 50%;
}
@media screen and (max-width: 768px)
{
    .header__book .header__book__btn > a
    {
        font-size: 11px;
        padding: .5em 1em;
        gap: 4px;
    }
    .header__book .header__book__btn > a img
    {
        max-width: 16px;
    }
}
@media screen and (max-width: 480px)
{
    .header__book .header__book__btn > a
    {
        font-size: 8px;
        padding: .5em 1em;
        gap: 3px;
    }
    .header__book .header__book__btn > a img
    {
        max-width: 10px;
    }
}
.header__splogo {

}
@media screen and (max-width: 480px)
{
    .header__splogo img {
        max-width: 120px;
    }
}

.header__book.login.flex {
    gap: 10px;
}
@media screen and (max-width: 768px) {
    .header__book.login.flex {
        gap: 5px;
    }
}
@media screen and (max-width: 480px) {
    .header__book.login.flex {
        flex-direction: column;
    }
}
.header__book.login .header__book__btn > a {
    height: 60px;
    padding: 0 1em;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .header__book.login .header__book__btn > a {
        height: 30px;
        padding: 0 .8em;
        gap: 3px;

        & img {
            max-width: 13px;
        }
    }
}
@media screen and (max-width: 480px) {
    .header__book.login .header__book__btn > a {
        height: 20px;
        padding: 0 2.5em;

        & img {
            max-width: 10px;
        }
    }
}
.header__book.login .header__book__btn__group {
    height: 60px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(225, 222, 220, .5);
    border-radius: 2px;
}
@media screen and (max-width: 768px) {
    .header__book.login .header__book__btn__group {
        height: 30px;
        gap: 5px;
        padding: 5px;
    }
}
@media screen and (max-width: 480px) {
    .header__book.login .header__book__btn__group {
        height: auto;
    }
}
.header__book.login .header__book__btn__group .header__book__btn {
    height: 100%;
}
.header__book.login .header__book__btn__group .header__book__btn > a {
    padding: .5em;
    height: 100%;
    gap: 5px;
    font-size: 16px;

    & img {
        max-width: 20px;
    }
}
@media screen and (max-width: 768px)
{
    .header__book.login .header__book__btn__group .header__book__btn > a
    {
        font-size: 8px;
        gap: 3px;

        & img {
            max-width: 10px;
        }
    }
}
@media screen and (max-width: 480px) {
    .header__book.login .header__book__btn__group .header__book__btn > a
    {
        & img {
            max-width: 8px;
        }
    }
}

.search-form-5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 280px; 
  overflow: hidden;
  border-radius: 25px;
  background-color: #f2f2f2;
}

.search-form-5 input {
  height: 30px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  background-color: #f2f2f2;
  font-size: 1em;
  outline: none;
}

.search-form-5 input::placeholder {
  color: #777777;
}

.search-form-5 button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.search-form-5 button::after {
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23777777%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  content: '';
}


.my-arrows {
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 7% 0 0;
    margin: -25px 0 0;
    transform: translateY(-30px);
  }
  @media screen and (max-width: 768px)
{
    .my-arrows
    {
        transform: translateY(247px);
        position: relative;
        z-index: 1;
        opacity: 80%;
    }
}
@media screen and (max-width: 580px)
{
    .my-arrows
    {
        transform: translateY(295px);
    }
}
@media screen and (max-width: 426px)
{
    .my-arrows
    {
        transform: translateY(244px);
    }
}
@media screen and (max-width: 376px)
{
    .my-arrows
    {
        transform: translateY(225px);
    }
}
@media screen and (max-width: 320px)
{
    .my-arrows
    {
        transform: translateY(205px);
    }
}
  .my-arrows .slick-prev,.my-arrows .slick-next {
    position: static !important;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  @media screen and (max-width: 768px)
  {
    .my-arrows .slick-prev,.my-arrows .slick-next {
        position: absolute !important;
      }
      .my-arrows .slick-prev {
        left: 50px;
        top: -140px;
    }
    .my-arrows .slick-next {
        right: 30px;
        top: -140px;
    }
  }
  .my-arrows .slick-next {
    margin: 0 0 0 35px;
  }
  .my-arrows .slick-prev:before,.my-arrows .slick-next:before {
    font-family: 'slick';
    font-size: 50px;
    line-height: 1;
    opacity: 100%;
    color: #029fe9;
}
@media screen and (max-width: 768px)
{
    .my-arrows .slick-prev:before,.my-arrows .slick-next:before {
        font-size: 40px;
    }
}

.t-top-about__list li{
    margin-bottom: 20px;
}
.t-link-big {
    padding: 20px;
}
.t-link {
    display: block;
    padding: 24px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    color: #5A5A5A;
    position: relative;
    width: 100%;
    height: auto;
}
.t-link-big__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.t-link-big__img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: auto;
}
.t-link-big__img img {
    width: 150px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 426px)
{
    .t-link-big__img img {
        width: 130px;
        height: auto;
    }
}
.t-link-big__detail {
    margin: 0 0 0 16px;
    padding: 0 0px 0 0;
}
.t-link-big__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f68bc;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media screen and (max-width: 426px)
{
    .t-link-big__title {
        font-size: 14px;
    }
}
.t-link-big__description {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin: 8px 0 0;
}

.section__event__main__inner .btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}


.t-top-pickup__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    margin-top: 30px;
}
.t-top-pickup__list-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
}
.t-top-pickup__list-media {
    position: relative;
    width: 100%;
    padding-top: 55.5555555556%;
    overflow: hidden;
    margin: 0;
}
.t-top-pickup__list-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.t-top-pickup__list-label {
    padding: 16px 24px 24px;
    height: 100%;
}
.t-top-pickup__list-label h3 {
    color: #0f68bc;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.7;
    letter-spacing: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
   .t-top-pickup__list-label h3 {
     font-size: 11px;
    line-height: 1;
}
}


.section__news .btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}


.top-2col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.event-2col_col {
    width: 48%;
}
@media screen and (max-width: 768px)
{
    .event-2col_col {
        width: 100%;
    }
}
.youtube-2col_col {
    width: 30%;
}
.youtube-2col_col02 {
    width: 68%;
}

.sns_list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.sns_list ul li {
    width: calc(33.3333333333% - 24px);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: #fff;
    border: 1px solid #E9E9E9;
    margin-right: 36px;
}
.sns_list ul li a {
    padding: 32px;
    display: block;
    text-align: center;
}
.sns_list_img {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 16px;
}
.sns_list_detail {
    background: #fff;
    border: 1px solid #E9E9E9;
    padding: 20px;
    display: block;
    text-align: center;
    border-radius: 20px;
}
@media screen and (max-width: 768px)
{
    .sns_list_detail {
        padding: 10px;
    }
}
.sns_list_detail span {
    font-weight: bold;
    font-size: 16px;
}
.sns_list_detail p {
    font-weight: normal;
    font-size: 14px;
}
.sns_list_detail p em {
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    margin: 0 4px;
    letter-spacing: -1px;
    color: #0f68bc;
}
.section__youtube__inner{
    background: #f0f8ff;
}
.section__youtube .t-top-pickup__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    margin-top: 30px;
}
@media screen and (max-width: 768px)
{
    .section__youtube .t-top-pickup__list {
        grid-template-columns: repeat(2, 1fr);
    }
    
}
@media screen and (max-width: 480px)
{
    .section__youtube .t-top-pickup__list {
        grid-template-columns: repeat(1, 1fr);
    }
    
}

.section__youtube__slider__item {
    margin: 0 10px;
}
.section__youtube__slider__item > a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px;
}
.section__youtube__slider__wrap{
    padding-bottom: 40px;
}
.section__youtube__title{
    width: 80%;
    margin: 0 auto;
}
@media screen and (max-width: 768px)
{
    .section__youtube__title{
        width: 98%;
    }
    
}

.c-mainvisual__news {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
    width: 100%;
    padding: 0 16px;
    margin-top: 100px;
}
@media screen and (max-width: 426px)
{
    .c-mainvisual__news {
        padding: 0 6px;
    }
    
}
.c-mainvisual__news ul  {
    background-color: #fff;
    border-radius: 16px;
    display: block;
    padding: 16px 24px;
    text-decoration: none;
}
.c-mainvisual__news .c-news-index a .c-news-index__data {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin: 8px 0 0;
}
.c-mainvisual__news .c-news-index a .c-news-index__text {
    color: #009de0;
    margin-top: 4px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media screen and (max-width: 426px)
{
    .c-mainvisual__news .c-news-index a .c-news-index__text {
        font-size: 13px;
    }
    
}
.c-mainvisual__news .c-news-index-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
}
.c-mainvisual__news .c-news-index-button .c-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 13px;
    height: 34px;
    line-height: 1.3846153846;
    margin-left: auto;
    margin-right: 0;
    margin-top: -8px;
    position: relative;
    width: auto;
}
@media screen and (max-width: 426px)
{
    .c-mainvisual__news .c-news-index-button .c-button {
        font-size: 10px;
    }
}

.c-button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #009de0;
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    gap: 8px;
    height: 56px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.5;
    padding: 8px 16px;
    text-decoration: none;
    -webkit-transition: background .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
    transition: background .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
    transition: background .2s ease-out, color .2s ease-out, transform .2s ease-out;
    transition: background .2s ease-out, color .2s ease-out, transform .2s ease-out, -webkit-transform .2s ease-out;
    width: 100%;
}

.section__pickup__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    margin-top: 50px;
}
@media screen and (max-width: 768px)
{
    .section__pickup__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .t-top-pickup__list-label {
        padding: 6px 24px 14px;
    }
    .t-top-pickup__list-media {
        padding-top: 42%;
    }
    .t-top-pickup__list-media img {
        /*height: auto;*/
    }
}

@media screen and (max-width: 768px)
{
    .sp_mt50 {
       margin-top: 50px;
    }
}


.section__summut__point__slider .slick-list {
    overflow: hidden;
  }
  
  .section__summut__point__slider .slick-track {
    display: flex;
  }
  
  .section__summut__point__slider .slick-slide {
    box-sizing: border-box;
    padding: 0 8px;
  }
  
  @media (max-width: 768px) {
    .section__summut__point__slider .slick-slide {
      width: 100% !important; 
      padding: 0 5px;
    }
  }


.sidebar__right{
    z-index: 8;

    margin: 0 20px 0 0px;
}
.sidebar__right__inner{
    padding-top: 105px;    
}
.sidebar__right__wrap{
    margin-top: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);    
}
.side-list li {
    border-bottom: 1px solid #ddd;
}
.side-list li a {
    position: relative;
    display: block;
    padding: 10px 20px 10px 10px;
    color: #2f2f2f;
    font-weight: 700;
}
.side-list li a:before {
    filter: blur(0);
    -webkit-filter: blur(0);
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    border: 2px solid #ccc;
    border-bottom: none;
    border-left: none;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 8px;
    margin-top: -2px;
}
.side-list li a:hover {
    color: #018dc7;
}
@media screen and (max-width: 768px) {
    .side-list{
        margin: 10px 0px;
    }
  }

  .sp_mypage_menu ul{
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    margin-bottom: 20px;
}
.sp_mypage_menu ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  .sp_mypage_menu li {
    width: 50%;
    box-sizing: border-box;
    padding: 0.5em;
  }
  @media screen and (min-width: 769px)
  {
    .sp_mypage_menu
      {
          display: none !important;
      }
  }

.section__mypage{
    margin: 20px 28px;
}
@media screen and (max-width: 426px) {
    .section__mypage{
        margin: 10px 10px;
    }
  }

.profile-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.profile-card__header {
    display: flex;
    align-items: center;
}

.profile-card__logo {
    width: 90px;
    height: 90px;
    margin-right: 20px;
}

.logo-design {
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.user-info {
    flex-grow: 1;
}

.username {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.level-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.level {
    font-weight: bold;
    margin-right: 20px;
}

.points {
    color: #777;
}

.progress-bar-container {
    width: 100%;
    max-width: 300px;
    height: 15px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background-color: #77cc33;
    border-radius: 10px;
    width: 75%;
}

.next-level {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.available-points {
    text-align: right;
}

.available-label {
    font-size: 14px;
    color: #777;
}

.available-value {
    font-size: 30px;
    font-weight: bold;
    color: #555;
}

.profile-title {
    background-color: #009de0;
    padding: 10px 15px;
    font-size: 17px;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
}

.self-intro {
    padding: 10px 15px;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 100px;
}
.badge-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.login-badge {
    border: 5px solid;
}
.badge-name {
    font-size: 14px;
    text-align: center;
    color: #555;
}

@media screen and (max-width: 426px) {
    .profile-card__logo {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }
    .username {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .points {
        font-size: 13px;
    }
    .next-level {
        font-size: 12px;
        margin-bottom: 0;
    }
    .profile-title {
        font-size: 14px;
    }
    .self-intro {
        font-size: 12px;
    }
    .badges-container {
        padding: 0;
    }
    .badge {
        width: 70px;
    }
    .badge-name {
        font-size: 10px;
    }
    .badge-icon {
        width: 60px;
        height: 60px;
    }
}

.point_title{
    color: #777;
    font-size: 12px;
}
.point_count{
    font-size: 20px;
    font-weight: bold;
    color: #555;
}
.point_count span{
    color: #777;
    font-size: 12px;
}
.sidebar__right .mypage_point li.point_count + li.point_title {
    margin-top: 20px;
}


.sp_mypage_menu .mypage_point {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-auto-flow: column;     
        list-style: none;
      }

 @media screen and (max-width: 768px) {
    .sp_mypage_menu .mypage_point {
            margin: 0;
            padding: 20px;
        }
    }
      
      .sp_mypage_menu .mypage_point li {
        margin: 0;
        padding: 0;
        width: 100%;
      }
      
  
      .section__profile {
        background-color: white;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        margin: 20px 28px;
    }
    @media screen and (max-width: 768px) {
        .section__profile {
            padding: 30px 10px;
            margin: 20px 10px;
        }
        }
      .form_table {
        text-align: left;
        width: 90%;
        margin: 0 auto;
      }
      .form_table p {
        color: #262626;
        font-size: 15px;
        font-weight: bold;
      }
      @media screen and (max-width: 768px) {
        .form_table p {
            font-size: 13px;
          }
        }
      .form_table th p {
        margin-bottom: 10px;
      }
      .form_req {
        color: red;
      }
      .form_private {
        color: #686868;
        margin-left: 10px;
        font-weight: normal;
      }
      .form-control-wrap {
        position: relative;
      }
      .form_table input,
      .form_table textarea,
      .form_table select {
        width: 100%;
        border: 0;
        padding: 6px 0 7px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.42);
        margin-bottom: 4px;
        font-size: 15px;
      }
      input:focus-visible,
      select:focus-visible {
        outline: none;
        border-bottom: 2px solid #0039a7;
      }
      .error {
        color: red !important;
        font-size: 0.9em;
        margin: 0 0 20px 0;
      }
      .form_btn {
    margin-top: 40px;
    text-align: center;
}
.form_btn input {
    color: white !important;
    background-color: #254860 !important;
    border-color: #254860 !important;
    font-weight: bold;
    line-height: 1;
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    width: 50% !important;
    font-size: 16px;
    cursor: pointer;
}
p .form_notice {
    color: rgb(104, 104, 104);
    margin-left: 10px;
    font-weight: normal;
    font-size: 14px;
    margin-top: -7px;
}
.point_desc{
    font-size: 14px;
    font-weight: 700;
    color: #505050;
}

.salary-input {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.salary-input .form-control-wrap {
  margin: 0;
  width: 94%;               
}
.salary-input input {
  margin-right: 0.25em;
}
.salary-input .unit {
  margin-left: 0.25em;
  white-space: nowrap;
}

.city-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5em 1em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px)
{
  .city-checkbox-grid {
  grid-template-columns: repeat(4, 1fr);
}   
}
@media screen and (max-width: 426px)
{
  .city-checkbox-grid {
  grid-template-columns: repeat(3, 1fr);
}   
}
.checkbox-item {
  display: flex;
  align-items: center;
  font-size: 0.9em;
}
.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #1A9EDE;
  border-radius: 4px;
  margin: 0;
  margin-right: 0.5em;
  position: relative;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"]:checked {
  background-color: #1A9EDE;
}
.checkbox-item input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 0.8em;
  color: #fff;
  line-height: 1;
}

.other-city-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
  font-size: 0.9em;
}
.other-city-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #1A9EDE;
  border-radius: 4px;
  margin: 0;
  margin-right: 0.5em;
  position: relative;
  cursor: pointer;
}
.other-city-row input[type="checkbox"]:checked {
  background-color: #1A9EDE;
}
.other-city-row input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 0.8em;
  color: #fff;
  line-height: 1;
}
.other-city-row .other-text {
  flex: 1;
  padding: 0.5em;
  box-sizing: border-box;
}




.image-upload {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ddd;
  }
  .image-upload input {
    display: none;
  }
  .image-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .camera-overlay {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .camera-overlay svg {
    display: block;
  }
  


.settings {
    margin: 0 auto;
    padding: 16px;
    font-family: sans-serif;
    color: #262626;
    line-height: 1.6;
  }
  
  .settings-section + .settings-section {
    margin-top: 32px;
  }
  
  .section-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }
  
  .section-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
  }
  
  .section-content {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #dfdfdf;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 700;
  }
  
  .info-value {
    font-size: 0.95rem;
    color: #333;
  }
  
  .action-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .action-list li {
    padding: 12px 16px;
  }
  
  .action-list li:last-child {
    border-bottom: none;
  }
  
  .action-list a,
  .button-link {
    color: #0066cc;
    font-size: 0.95rem;
    text-decoration: none;
  }
  
  .action-list a:hover,
  .button-link:hover {
    text-decoration: underline;
  }
  
  .delete-link {
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #cc0000;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
  }
  
  .delete-link:hover {
    color: #fff;
    background: #878787;
  }
  
.email-notification-settings {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
    font-family: sans-serif;
    color: #333;
  }
  .settings-title {
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .setting-row:last-child {
    border-bottom: none;
  }
  
  .setting-label {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  .info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin-left: 6px;
    text-align: center;
    border-radius: 50%;
    background: #ddd;
    color: #555;
    font-size: 0.8rem;
    cursor: help;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 12px;
    transition: background-color 0.2s;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
  }
  .switch input:checked + .slider {
    background-color: #009de0;
  }
  .switch input:checked + .slider:before {
    transform: translateX(18px);
  }
  

.modal {
    position: relative;
  }
  
  .modal__toggle {
    display: none;
  }
  
  .modal__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 1000;
  }
  
  .modal__dialog {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform .3s;
  }
  
  .modal__backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
  }
  
  .modal__header {
    position: relative;
    padding: 16px 48px 16px 24px;
    border-bottom: 1px solid #e5e5e5;
  }
  .modal__title {
    margin: 0;
    font-size: 1.25em;
  }
  .modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.25em;
    cursor: pointer;
  }
  
  .modal__body {
    padding: 16px 24px;
    line-height: 1.6;
  }
  .modal__body dl {
    margin: 12px 0;
  }
  .modal__body dt {
    font-weight: bold;
    margin-top: 8px;
  }
  .modal__body dd {
    margin: 4px 0 0 16px;
  }
  
  .modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e5e5e5;
  }
  
  .modal__btn {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
  }
  
  .modal__btn--cancel {
    background: #f0f0f0;
    color: #333;
  }
  .modal__btn--cancel:hover {
    background: #e0e0e0;
  }
  
  .modal__btn--confirm {
    background: #e74c3c;
    color: #fff;
  }
  .modal__btn--confirm:hover {
    background: #c0392b;
  }
  
  .modal__toggle:checked ~ .modal__overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .modal__toggle:checked ~ .modal__overlay .modal__dialog {
    transform: translateY(0);
  }
  
  .modal__open-btn {
    display: inline-block;
    color: #4f96f6;
    background: #eee;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background .3s, color .3s;
  }
  .modal__open-btn:hover {
    background: #4f96f6;
    color: #fff;
  }

  .login-container {
    width: 90%;
    max-width: 420px;
    margin: auto;
    padding-top: 80px;
  }
  .login-container .title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #254860;
  }

  .login-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .login-logo{
    text-align: center;
    margin: 15px 0;
  }
  .login-logo img{
    width: 240px;
  }

  .social-login {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
  }
  .social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }
  .social-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 8px;
    transition: border-color .2s;
  }
  .social-btn:hover {
    border-color: #999;
  }
  .social-btn i {
    font-size: 20px;
    color: #555;
  }
  
  .login-form .form-group {
    margin-bottom: 16px;
  }
  .login-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }
  .login-form input:focus {
    outline: none;
    border-color: #888;
  }
  
  .help-links {
    text-align: right;
    font-size: 12px;
    margin-bottom: 16px;
  }
  .help-links a {
    color: #555;
    text-decoration: none;
  }
  .help-links a:hover {
    text-decoration: underline;
  }
  .help-links span {
    margin: 0 4px;
    color: #999;
  }
  
  .register-link {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    font-weight: bold;
  }
  .login-box .register-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
  }
  .register-link a {
    color: #007bff;
    text-decoration: none;
  }
  .register-link a:hover {
    text-decoration: underline;
  }


  .login_division {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}
.login_division_line {
    width: 42%;
}
.login_division_text {
    width: 16%;
    text-align: center;
    color: #717171;
}

.btn-login {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    color: #fff;
    transition: background-color .2s;
    margin-top: 20px;
  }
  
  .btn-login:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  .btn-login:not(:disabled) {
    background-color: rgb(37, 72, 96) ;
    cursor: pointer;
  }
  

  .social-sighup {
    margin-bottom: 24px;
  }
  .social-sighup .social-btn {
    width: 90%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 0%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 8px;
    transition: border-color .2s;
}
.social-sighup .social-btn span {
    font-weight: 400;
    font-size: 15px;
    margin-left: 12px;
}

.register-notice{
    margin: 20px;
    color: #505050;
    font-size: 12px;
    text-align: center;
}
.register-notice a {
    color: #007bff;
}


.form_notice{
    margin: 5px;
    color: #505050 !important;
    font-size: 12px !important;
    font-weight: normal !important;
}
.resend{
  text-align: center;
}

.login-container .title_sub {
    text-align: center;
    font-size: 18px;
    margin: 20px 0 20px 0;
    font-weight: bold;
    color: #254860;
}

.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .password-wrapper .form-control {
    padding-right: 2.5em;  }
  .password-wrapper .toggle-password {
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }
  .password-wrapper .toggle-password svg {
    display: block;
  }

  .section__profile h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #254860;
}
  
.radio-3 {
    border: none;
}

.radio-3 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    max-width: 760px;
    margin: 10px auto;
    padding: .5em 1.7em;
    border: 1px solid #a9a9a9;
    border-radius: 10px;
    cursor: pointer;
}

.radio-3 label:has(:checked) {
    background-color: #eaf6ff;
    border: 1px solid #aecfed;
}



.radio-3 input {
    display: none;
}

.form_desc{
    font-size: 14px;
    margin-bottom: 20px;
}
.form_desc .notice {
    font-size: 12px;
    margin-bottom: 20px;
    color: #086139;
}
@media screen and (max-width: 768px) {
    .form_desc{
        font-size: 13px;
    }
    .form_desc .notice {
        font-size: 11px;
    }
    .radio-3 label {
        font-size: 14px;
    }
    }
    .form_desc_complete {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center
    }
    @media screen and (max-width: 768px) {
        .form_desc_complete{
            font-size: 13px;
        }
        }

        .agreement-box{
            border:1px solid #ccc;
            padding:10px;
            margin-bottom:10px;
            font-size:14px;
            line-height:1.6;
            max-width: 600px;
            margin: 20px auto 0 auto;
        }
        .agreement-check{
            display:flex;
            justify-content: center;
            gap:10px;
            margin-top: 10px;
        }

        @media screen and (min-width: 768px) {
            .spfootermenu {
                display: none;
            }
        }

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
    font-family: sans-serif;
    font-size: 0.95em;
  }
  
  table:not(.form_table) th {
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: left;
    white-space: nowrap; 
}

table:not(.form_table) th,
table:not(.form_table) td {
    border: 1px solid #ccc; 
    padding: 0.75em 1em; 
    vertical-align: top;  
}
  
  h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: 1.3em;
    color: #333;
  }

  table caption {
    caption-side: top;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  
  .summut_point_list {
    margin-top: 50px;
  }

    .summut_point_list table {
      /**display: block;
      overflow-x: auto;
      white-space: nowrap;**/
      font-size: 13px;
    }
  @media (max-width: 768px) {
    .summut_point_list table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }
  
  @media (max-width: 768px) {
    .summut_point_list table th,.summut_point_list table td {
      font-size: 12px;
    }
  }
  

  .section__content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 20px 28px;
}
@media screen and (max-width: 768px) {
    .section__content {
        padding: 30px 20px;
        margin: 10px 5px;
    }
    }
    .section__content h1 {
        text-align: center;
        font-size: 30px;
        margin-bottom: 30px;
        font-weight: bold;
        color: #254860;
    }

    .summut_point_list h2{
        padding: 4px 17px;
        border-left: 4px solid #254860;
        font-size: 24px;
        font-weight: 600;
        color: #254860;
        margin-bottom: 15px;
    }

    .summut_toc{
        width: 100%;
        display: table !important;
        text-align: center;
        vertical-align: middle;
        overflow-x: initial !important;
        white-space: normal !important;
    }


    .summut_movie{
        font-weight: 600;
        color: #0f68bc;
        margin-bottom: 15px;
    }

    .video-modal {
        display: none;
        position: fixed; 
        inset: 0;
        z-index: 1000;
      }
      .video-modal__bg {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
      }
      .video-modal__content {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 800px;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
      }
      .video-modal__close {
        position: absolute;
        top: 8px; right: 8px;
        font-size: 24px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
      }
      .video-modal__inner {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
      }
      .video-modal__inner iframe {
        position: absolute;
        width: 100%; height: 100%;
        left: 0; top: 0;
      }

      .company-table{
        width: 90%;
        margin: 0 auto;
      }
      .c-heading {
        display: flex;
        flex-direction: column;
        text-align: center;
        color: #254860;
    }
    .c-heading_title {
        font-size: 45px;
        font-weight: 700;
        position: relative;
        padding-top: 5px;
        line-height: 1.35;
        margin-bottom: 20px;
    }
    @media screen and (max-width: 768px) {
     .c-heading_title {
        font-size: 35px;
    }
    }
    .c-heading_title:before {
        content: attr(data-en);
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(73, 142, 227, 0.13);
        font-size: 70px;
        font-style: italic;
    }
    @media screen and (max-width: 768px) {
        .c-heading_title:before {
            font-size: 55px;
            width: 100%;
        }
    }
    @media screen and (max-width: 425px) {
        table {
            font-size: 12px;
          }
          .c-heading_title {
            font-size: 35px;
        }
        .c-heading_title:before {
            font-size: 45px;
            top: -35px;
        }
    }
    .company_history{
        margin-top: 120px;
    }
    .company_access{
        margin-top: 120px;
        margin-bottom: 60px;
        text-align: center;
    }
    .company_access iframe {
        margin-top: 40px;
        aspect-ratio: 5 / 2;
        height: 100% !important;
        width: 90% !important;
        margin: 0 auto;
    }
    .company-table a{
        color: #0f68bc;
    }

    .header__book__btn {
        font-weight: 700;
        color: #ffffff;
        background-color: #161616;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 16px;
    }

    .PrivacyPolicy h2{
        font-weight: 700;
    }
    .PrivacyPolicy ol{
        padding: 0 0 0 40px;
    }

    @media screen and (max-width: 768px) {
        .PrivacyPolicy{
            font-size: 15px;
        }
        .PrivacyPolicy h2{
            font-size: 18px;
        }
    }

    .section-event-content{
        width: 70%;
        margin: 0 auto;
    }
    @media screen and (max-width: 768px) {
        .section-event-content{
            width: 100%;
        }
    }

    .section__content .event__content h1 {
        font-size: 25px;
        margin-bottom: 30px;
        font-weight: bold;
        color: #254860;
        text-align: left;
        border-bottom: 1px solid #cdcdcd;
        padding-bottom: 20px;
    }

    .event_date{
        margin-top: 10px;
    }
   .event_btn_wrap{
    display: -ms-flexbox!important;
    display: flex !important;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
   }

   .event_btn{
    font-weight: bold;
    line-height: 1;
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: white !important;
    background-color: #254860 !important;
    width: 80%;
    border: none;
    cursor: pointer;
    text-align: center;
   }
   .event_btn02 {
    font-weight: bold;
    line-height: 1;
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: white !important;
    background-color: #83c0f9 !important;
    width: 20%;
    border: none;
    cursor: pointer;
}
.event_btn_applied{
    font-weight: bold;
    line-height: 1;
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: white !important;
    background-color: #000000 !important;
    width: 80%;
    border: none;
    cursor: not-allowed;
   }
   .event_btn_cancel {
    font-weight: bold;
    line-height: 1;
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: white !important;
    background-color: #a8a8a8 !important;
    width: 20%;
    border: none;
    cursor: pointer;
}
.event__infoItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: start;
    font-size: 15px;
    gap: 8px;
    margin-bottom: 0px !important;
}
@media screen and (max-width: 500px) {
    .event__infoItem {
        font-size: 9px;
    }
    .t-link-big__title {
        font-size: 13px;
    }
}
.event__infoIcon {
    font-size: 0;
    margin-right: 4px;
}
.event__infoIcon svg {
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 500px) {
    .event__infoIcon svg {
        width: 11px !important;
        height: 11px !important;
    }
}

.event_timelimit {
    text-align: center;
    margin: 16px 0;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 20px;
}
.event__content h2{
    padding: 4px 17px;
    border-left: 4px solid #254860;
    font-size: 24px;
    font-weight: 600;
    color: #254860;
    margin-bottom: 15px;
}
.event-info-title {
    background-color: #009de0;
    padding: 6px 13px;
    font-size: 16px;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
}
.event-card {
    background-color: #fcfeff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px #0f68bc3d;
}

.event_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
  }
  .event_modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
  }
  .event_modal__content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 8px;
    overflow-y: auto;
    max-height: 90vh;
    padding: 20px;
  }
  .event_modal__close {
    position: absolute;
    top: 8px; right: 8px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
@media screen and (max-width: 768px) {
    .side-event .sidebar__right{
        width: 100%;
        padding: 0 5px;
    }
    .side-event .sidebar__right__inner{
        padding-top: 0;    
    }
    .side-event .sidebar__right__wrap{
        margin: 0;  
    }
    .side-event .sidebar__sticky {
        height: auto;
        padding: 0;
    }
}

.question__infoItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: start;
    font-size: 15px;
    gap: 8px;
    margin-bottom: 10px !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
@media screen and (max-width: 500px) {
    .question__infoItem {
        font-size: 9px;
    }
}
:root{
  --color-yellow:#FBC400;
  --color-green:#059856;
  --color-red:#B80000;
  --color-bordergray:#C9C5C1;
  --transition:all .3s ease;
  --transition-long:all .6s ease;
  --sidebar-gap:440px;
}

a:hover{
  text-decoration:none;
}

.wrap{
  width: 100%;
  max-width:1100px;
  padding:0 20px;
  margin:0 auto;
}

.fadein {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 800ms;
}
.fadeinr {
  opacity : 0.1;
  transform : translate(50px, 0);
  transition : all 800ms;
}
.fadeinb {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 800ms;
}
.fadeint {
  opacity : 0.1;
  transform : translate(0, -50px);
  transition : all 800ms;
}
.fadeinl {
  opacity : 0.1;
  transform : translate(-50px, 0);
  transition : all 800ms;
}
.fadeino {
  opacity : 0.1;
  transition : all 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
.fadeino.scrollin {
 opacity : 1;
}

@supports (-ms-ime-align:auto) {
.fadein {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeinr {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeinb {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeint {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeinl {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeino {
  opacity : 1;
  transition : inherit;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
  opacity : 1;
  transform : inherit;
}
.fadeino.scrollin {
 opacity : 1;
}
}

@media only screen and (max-width:1280px){
.fadein,
.fadeinr,
.fadeinl,
.fadeinb,
.fadeint{
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 800ms;
}
}

body{
  background-image:none;
}


main.main{
  position:relative;
}
body.home main.main::before{
  top:70px;
}
body.page-ohdo main.main::before,
body.body-recruit main.main::before{
  content:none;
}

.sidebar__sticky{
  height:100svh;
  overflow-y:scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidebar__sticky::-webkit-scrollbar {
  display:none;
}
.sidebar__main_slider__lead{
  font-size:13px;
}
.sidebar__links__bottomlink.sponly{
  display:none;
}

.section__youtube__box{
	padding:30px 90px;
	position:relative;
}
@media (max-width: 768px) {
  .section__youtube__box{
    padding:30px 0px;
  }
}

.section__reserve__box{
	background:#FFF;
	padding:80px 90px;
	position:relative;
	border-radius:8px 40px 8px 8px;
}
.section__reserve__hv01{
	position:absolute;
	width:110px;
	top:-40px;
	right:40px;
}
.section__reserve__hv02{
	position:absolute;
	width:150px;
	bottom:-40px;
	left:-40px;
}
.section__reserve__hv03{
	position:absolute;
	width:260px;
	top:50px;
	left:40px;
}
.section__reserve__title{
	text-align:center;
	margin-bottom:40px;
}
.section__reserve__title img{
	max-width:300px;
}
.section__reserve__text{
	text-align:center;
  font-weight:bold;
	margin-bottom:40px;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .section__reserve__text {
      font-size: 14px;
      line-height: 1.6;
  }
}
.section__reserve__banners{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:20px;
}
.section__reserve__banner a{
	display:block;
	line-height:1;
	border-radius:8px 40px 8px 8px;
	overflow:hidden;
	position: relative;
}

.section__book__box{
	background:#FFF;
	padding:30px 40px;
	position:relative;
	border-radius:40px 40px 8px 8px;
}
.section__book__title{
	text-align:center;
	margin-bottom:10px;
}
.section__book__title img{
	max-width:60%;
}
.section__book__text{
	text-align:center;
  font-weight:bold;
	margin-bottom:40px;
}
.section__book__banners{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:20px;
}
.section__book__banner a{
	display:block;
	line-height:1;
	border-radius:15px;
	overflow:hidden;
	position: relative;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 25%)
}
.section__book__banner__ico{
	position:absolute;
	bottom:0;
	right:0;
	width:auto;
	height:40px;
	display:flex;
	align-items:center;
  gap:12px;
  padding:0 12px;
	justify-content:center;
	border-top-left-radius:8px;
	background:#FFF;
}
.section__book__banner__ico p{
  font-weight:bold;
}

.section__contact__box{

}
.section__contact__title{
	text-align:center;
	margin-bottom:10px;
}
.section__contact__title img{
	width: 800px;
}
.section__contact__text{
	text-align:center;
  font-weight:bold;
	margin-bottom:40px;
}
.section__contact__banners{
	display: flex;
	
}
.section__contact__banner a{
	display:block;
	line-height:1;
	border-radius:12px;
	overflow:hidden;
	position: relative;
  box-shadow: 0px 1px 20px 0px rgb(0 0 0 / 25%);
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px)
{
        .section__contact__banner a {
      width: 80%;
    }
}
@media screen and (max-width: 426px)
{
    .section__contact__banner a {
        width: 100%;
    }
}
.section__contact__banner__ico{
	position:absolute;
	bottom:0;
	right:0;
	width:auto;
	height:40px;
	display:flex;
	align-items:center;
  gap:12px;
  padding:0 12px;
	justify-content:center;
	border-top-left-radius:8px;
	background:#FFF;
}
.section__contact__banner__ico p{
  font-weight:bold;
}

.fadein {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 800ms;
}
.fadeinr {
  opacity : 0.1;
  transform : translate(50px, 0);
  transition : all 800ms;
}
.fadeinb {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 800ms;
}
.fadeint {
  opacity : 0.1;
  transform : translate(0, -50px);
  transition : all 800ms;
}
.fadeinl {
  opacity : 0.1;
  transform : translate(-50px, 0);
  transition : all 800ms;
}
.fadeino {
  opacity : 0.1;
  transition : all 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
.fadeino.scrollin {
 opacity : 1;
}

@supports (-ms-ime-align:auto) {
.fadein {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeinr {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeinb {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeint {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeinl {
  opacity : 1;
  transform : inherit;
  transition : inherit;
}
.fadeino {
  opacity : 1;
  transition : inherit;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
  opacity : 1;
  transform : inherit;
}
.fadeino.scrollin {
 opacity : 1;
}
}

@media only screen and (max-width:1280px){
.fadein,
.fadeinr,
.fadeinl,
.fadeinb,
.fadeint{
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 800ms;
}
}

.blurin{
  opacity:0;
  filter:blur(30px);
  transition:all 1.2s ease;
}
.blurin.scrollin{
  opacity:1;
  filter:none;
}

.header__inner{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:9;
}

.section__reserve__text{
  line-height:1.6;
}
.section__reserve__text br{
  display: none;
}

@media only screen and (max-width:1660px){

  :root{
    --sidebar-gap:350px;
  }

  .sidebar{
    width:var(--sidebar-gap);
  }
  .main{
    width:calc(100% - var(--sidebar-gap));
  }
  .wrap{
    max-width:1000px;
  }
  .content_inner{
    width:100%;
    max-width:992px;
  }

  .sidebar__logo{

  }
  .sidebar__inner{
    padding:10px 28px 40px;
  }
  .sidebar__links__item > a{
    gap:6px;
  }
  .sidebar__links__item__ico{
    width:14px;
  }
  .sidebar__links__item__txt{
    font-size:13px;
  }

  .footer__links,
  .footer__links__inner{
    width:100%;
  }
  .footer__main{
    border-radius:0;
  }
}

@media only screen and (max-width:1280px){
  body,body.home{
    min-width:1280px;
  }
}

@media screen and (max-width:991px){
  body,body.home{
    min-width:unset;
  }

  body{
    padding-top:80px;
  }

  :root{
    --sidebar-gap:360px;
  }
  .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    height: 100%;
    transition: .3s;
    pointer-events: none;
    opacity: 0;
    border-radius: 0;
    transform:translateX(-100%);
  }
  .sidebar.active {
    display: block;
    pointer-events: auto;
    opacity: 1;
    transform:translateX(0);
  }
  main.main{
    width:100%;
  }
  .sidebar__links__item{
    width:100%;
  }
  .sidebar__links__item__txt{
    font-size:14px;
  }

  header.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:9;
  }
  .header__inner{
    position:relative;
    gap:20px;
  }
  .header__splogo{
    margin-right:auto;
  }
  .header__hbg_btn--text{
    position:absolute;
    font-size:8px;
    font-weight:bold;
    top:100%;
    left:-2px;
    width:24px;
    text-align:center;
    white-space:nowrap;
  }

  .footer__links,
  .footer__links__inner,
  .footer__main__inner{
    width:100%;
    padding:20px;
  }
  .footer__links__top{
    gap:10px;
  }
  .footer__links__bottom{
    gap:10px;
  }
  .footer__main__right{
    gap:40px;
  }

  .section__reserve__hv03 {
    width: 30%;
    left: -10%;
  }
  .section__reserve__box{
    padding:80px 30px 90px;
  }
  .section__book__box{
    padding:80px 30px 90px;
  }

.sidebar__links__item.sponly{
  display:none;
}
}

@media only screen and (max-width:768px){
  :root{
    --sidebar-gap:100%;
  }

  .wrap{
    overflow:visible;
  }
  .content_inner{
    padding:0 14px;
  }
  .wrap{
    padding: 0 14px;
  }

  body{
    padding-top:50px;
    padding-bottom:50px;
  }

  .spfootermenu{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:50px;
    z-index:9;
  }
  .spfootermenu-menus{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    height:100%;
    border-top:2px solid #9de2ff;
    border-top-left-radius:12px;
    border-top-right-radius:12px;
    overflow:hidden;
  }
  .spfootermenu-menu:not(:last-of-type){
    border-right:1px solid #009de0;
  }
  .spfootermenu-menu a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:100%;
    color:var(--base-color);
    font-size:17px;
    font-weight:bold;
    background:#FFF;
  }

  header.header{
    z-index:999;
    background:#f1eeec;
  }
  .header__inner{
    padding: 12px 10px;
  }
  .header__hbg_btn{
    width:30px;
  }
  .header__hbg_btn.active::before{
    transform: translate(0, -50%) rotate(20deg);
  }
  .header__hbg_btn.active::after{
    transform: translate(0, -50%) rotate(-20deg);
  }
  .header__hbg_btn--text{
    width:100%;
    left:0;
  }
  .sidebar__links__item.sponly{
    display:block;
  }

  .sidebar{
    width:100%;
    padding-top:80px;
    padding-bottom:40px;
    background:#FFF;
  }
  .sidebar__logo{
    padding: 20px 0;
  }
  .sidebar__logo img{
    width:100px;
  }
  .sidebar__sticky{
    padding-bottom:40px;
  }
  .sidebar__links__item {
    width: calc(50% - 2px);
  }
  .sidebar__links__item > a{
    height:auto;
  }
  .sidebar__links__bottomlink.sponly{
    text-align:center;
    display:block;
    margin-top:24px;
    font-size:12px;
    color:var(--color-green);
    text-decoration:underline;
    font-weight:bold;
  }

  .footer__links, .footer__main__inner{
    padding:20px 16px;
  }
  .footer__links__inner{
    padding:0;
  }
  .footer__links__top,
  .footer__links__bottom{
    flex-wrap:wrap;
  }
  .footer__links__bottom__wrap{
    padding-bottom:20px;
  }
  .footer__main__left{
    text-align:center;
  }
  .footer__main__links{
    justify-content:center;
  }
  .footer__main__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "link1 link3"
      "link2 link3";
    gap: 16px; 
  }
  .footer__main__link_list:nth-child(1) {
    grid-area: link1;
  }
  .footer__main__link_list:nth-child(2) {
    grid-area: link2;
  }
  .footer__main__link_list:nth-child(3) {
    grid-area: link3;
  }
  .footer__main__link_list{
    width:100%;
  }

  .section__reserve__box {
    padding: 40px 20px;
  }
  .section__reserve__hv01,
  .section__reserve__hv02,
  .section__reserve__hv03{
    display:none;
  }
  .section__reserve__banners{
    grid-template-columns:1fr;
    gap:10px;
  }
  .section__reserve__text{
   font-size:14px;
   line-height:1.6; 
  }
  .section__reserve__text br{
    display: block;
  }

  .section__book__box {
    padding: 40px 20px;
  }
  .section__book__banners{
    gap:10px;
  }
  .section__book__text{
   font-size:14px;
   line-height:1.6; 
  }
  .section__book__text br{
    display: block;
  }

    .section__contact__box {
      padding: 40px 20px;
    }
    .section__contact__banners{
      display: grid;
      margin: 0 auto;
      gap: 20px;
    }
    .section__contact__text{
     font-size:14px;
     line-height:1.6; 
    }
    .section__contact__text br{
      display: block;
    }

  .head02{
    gap: 4px 16px;
    flex-wrap: wrap;
  }

  main.main::before{
    width:30%;
    top:70px;
  }


  .section__memories__main{
    overflow:hidden;
  }
  .section__memories__main img{
    max-width:unset;
    width:100%;
    position:relative;
    left:50%;
    transform:translateX(-50%);
  }
}



@media only screen and (max-width:768px){

  .header__splogo {
    /* margin-right: 0; */
  }
  .header__hbg_btn{
    /* width:30px; */
  }

  .t-top-pickup__list {
    grid-template-columns: repeat(2, 1fr);
}
}

.col2-list {
  grid-template-columns: repeat(2, 1fr);
}
.sidebar__right__wrap h5{
    background: #38434b;
    color: #fff;
    font-size: 15px;
    padding: 7px 15px 7px;
    text-align: left;
    font-weight: 700;
}
.content-side li a {
  font-size: 14px;
  font-weight: normal;
}

.single_content{
  display: flex;
}
.single_content .content_single{
  width: 70%;
}
.single_content .side-event{
  width: 30%;
}

@media only screen and (max-width:1024px){
  .single_content .content_single{
  width: 70%;
}
.single_content .side-event{
  width: 30%;
}
}
@media only screen and (max-width:768px){
  .single_content{
  display: block;
}
.single_content .content_single{
  width: 98%;
}
.single_content .side-event{
  width: 100%;
}
.breadcrumbs {
    margin-top: 8px;
}
}
.single_content .sidebar__right__inner {
    padding-top: 0;
}
.content_single h1{
  font-size: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #254860;
    text-align: left;
}

.content_single h2 {
    font-size: 23px;
    line-height: 1.6;
    font-weight: 700;
    font-weight: 600;
    color: #254860;
    border-bottom: 3px solid #ddd;
    padding: 4px 0;
    margin: 20px 0 30px;
    position: relative;
    z-index: 2;
}
.content_single h2:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: 3px solid #254860;
    bottom: -3px;
    width: 30%;
}
.content_single h3 {
    padding: 2px 14px;
    border-left: 3px solid #254860;
    font-size: 21px;
    font-weight: 600;
    color: #254860;
    margin-bottom: 15px;
}
.content_single h4 {
    font-size: 18px;
    color: #254860;
    line-height: 1.2;
    font-weight: bold;
    border-bottom: 1px dotted #ddd;
    padding: 5px 0 5px 0;
    margin: 0 0 10px 0;
}
.content_single strong {
  font-weight: 600;
}
.content_single table {
    font-size: 80%;
}
.content_single table th, .content_single table td {
    vertical-align: middle;
}
.content_single a{
        color: #337ab7;
        text-decoration: revert;
}
.content_single blockquote {
    font-size: 14px;
    background: #f0f3f4;
    color: #333;
    border-left: none;
    padding: 10px;
    margin: 0 0 10px 0;
    z-index: 1;
    position: relative;
    border-radius: 3px;
}


.single_title {
    border-bottom: 1px dotted #cdcdcd;
    margin-bottom: 20px;
}
.single_title p {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    margin: 10px 0 0 0;
    padding: 0;
    word-break: break-all;
}
.post-date {
    font-size: 12px;
    text-align: right;
    margin: 5px 0;
    color: #888;
}
.single-cat {
    margin-bottom: 10px;
}
.single-cat-text {
    background-color: #254860;
    padding: 4px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}
.single-cat-text a {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

#searchDialog {
  border: none;
  background-color: #009de000;
  padding: 30px;
}
#searchDialog::backdrop {
  background: rgba(0,0,0,.5);
}
#searchDialog .search-form-5 input {
    height: 50px;
}
#searchDialog .dialog__close {
    background-color: #7fff0000;
    border: none;
    font-size: 40px;
    color: #fff;
    position: absolute;
    top: -9px;
    right: 16px;
}

   .archive-single {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  
.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
    font-weight: bold;
}
.nav-links .page-numbers{
   box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 25px;
    background-color: #f2f2f2;
    color: #2589d0;
}
.nav-links .page-numbers a:not(:hover) {
    text-decoration: none;
}
.nav-links .current {
    background-color: #2589d0;
    color: #fff;
    pointer-events: none;
}

.nav-links .prev ,
.nav-links .next  {
    gap: 0 4px;
    width: auto;
    padding: .5em .8em;
    line-height: 1;
}

.nav-links .prev ::before,
.nav-links .next ::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    content: '';
}

.nav-links .prev ::before {
    border-bottom: 1px solid #2589d0;
    border-left: 1px solid #2589d0;
}

.nav-links .next ::after {
    border-top: 1px solid #2589d0;
    border-right: 1px solid #2589d0;
}