/**************************************
* bulma modify
****************************************/
body,
html {
    height: 100%;
    margin: 0;
}
html {
    font-size: 16px;
}
body,
button,
input,
optgroup,
select,
textarea {
    font-family: "AritaBuri", sans-serif;
}
body {
    line-height: 1.6;
}
p {
    letter-spacing: -0.05rem;
}
a {
    color: hsl(245, 86%, 36%);
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    color: hsl(245, 86%, 63%);
}
/* a:visited {
    color: #681da8;
} */
image {
    display: block !important;
}
strong {
    color: hsl(0, 0%, 25%);
    font-weight: 500;
}
.col-padding {
    padding: 0.375rem;
}
.col-padding .column {
    padding: 0.375rem;
}
/**************************************
* swiper dot color modify
****************************************/
:root {
    --swiper-theme-color: hsl(0, 0%, 100%);
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 16px;
}
.swiper-pagination-bullet {
    width: var(
        --swiper-pagination-bullet-width,
        var(--swiper-pagination-bullet-size, 9px)
    );
    height: var(
        --swiper-pagination-bullet-height,
        var(--swiper-pagination-bullet-size, 9px)
    );
    display: inline-block;
    border-radius: 50%;
    background: var(
        --swiper-pagination-bullet-inactive-color,
        hsl(0, 0%, 100%)
    );
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.3);
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
/**************************************
* ??? modify
****************************************/
@media only screen and (max-width: 1023px) {
    .desktop-only {
        display: none;
    }
}
@media only screen and (min-width: 1024px) {
    .mobile-only {
        display: none;
    }
}
/**************************************
* ??? modify
****************************************/
.full-page {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
header {
    position: fixed;
    width: 100%;
    background: transparent;
    color: hsl(0, 0%, 96%);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin-top: 1rem;
    z-index: 9999;
}
header.sticky {
    color: hsl(0, 0%, 10%);
}
svg {
    fill: hsl(0, 0%, 96%);
    width: 1.2rem;
    z-index: 1000;
}
svg.sticky {
    fill: hsl(0, 0%, 10%);
}
.calendar {
    margin-top: 0.16rem;
}
.logo {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.slide-menu-logo {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: hsl(0, 0%, 100%);
    margin: 2rem 0;
}
.img-overwrap-text {
    position: absolute;
    top: 30%;
    right: 30%;
    width: 100%;
    /* transform: translate(-50%, -50%); */
    font-size: 0.875rem;
    line-height: 1.8;
    text-align: right;
    color: hsl(0, 0%, 100%);
}
@media only screen and (max-width: 1024px) {
    .img-overwrap-text {
        top: 25%;
        right: 20%;
        width: 50%;
    }
}
/**************************************
* hamburgur menu slide
****************************************/
#hamburger {
    width: 100%;
    height: 52px;
    background: transparent;
    position: relative;
    overflow: hidden;
}
#mask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: hsl(0, 0%, 0%);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    zoom: 1;
    opacity: 0.5;
    z-index: 9997;
    display: none;
}

.btn_menu_open {
    background: none;
    border: 0;
    cursor: pointer;
    margin-right: -0.5rem;
}
.slide_menu {
    width: 80%;
    height: 100%;
    max-width: 300px;
    background: hsl(0, 0%, 20%);
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: scroll;
    z-index: 9998;
    display: none;
}
@media only screen and (max-width: 1024px) {
    .slide_menu {
        width: 70%;
    }
}
.slide_menu .menu_close {
    width: 100%;
    height: 52px;
    background: transparent;
    position: relative;
}
.slide_menu .btn_menu_close {
    background: none;
    border: 0;
    position: absolute;
    top: 20px;
    left: 15px;
    cursor: pointer;
}

.slide_menu .menu_list li {
    list-style: none;
    text-align: center;
    white-space: nowrap;
}
.slide_menu .menu_list li a {
    font-size: 1rem;
    color: hsl(0, 0%, 100%);
}
/**************************************
* footer
****************************************/
footer {
    padding-top: 1rem;
    padding-bottom: 3rem !important;
}
.company-info {
    text-align: center;
}
.company-info img {
    width: 1.4rem;
    margin-top: 1.5rem;
}
.company-info p {
    margin-top: 1.5rem;
    font-size: 0.938rem;
}
.company-info span {
    margin-top: 1.5rem;
    font-size: 0.875rem;
}
.footer-menu {
    text-align: center;
    margin-top: 1.5rem;
}
.footer-menu a + a::before {
    content: " · ";
    color: hsl(0, 0%, 96%);
    margin: 0 0.02rem;
}
.footer-menu a {
    color: hsl(0, 0%, 21%);
    font-size: 0.938rem;
}
.footer-menu a:hover {
    color: hsl(218, 100%, 54%);
}
/**************************************
* detail page
****************************************/
.detail-wrap {
    background-color: #f5f4f0;
}
.detail-wrap hr {
    background-color: hsl(0, 0%, 90%);
    border: none;
    display: block;
    height: 1px;
    margin: 6rem 0;
}
.detail-bodytext p {
    text-align: center;
    line-height: 1.8;
}
