@import 'common.css';

html {
    color: #333333;
}

html:not([lang='ja']),
html:not([lang='ja']) h1,
html:not([lang='ja']) h2,
html:not([lang='ja']) h3,
html:not([lang='ja']) h4,
html:not([lang='ja']) h5 {
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3',
        'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',
        sans-serif;
}

html[lang='ja'],
html[lang='ja'] h1,
html[lang='ja'] h2,
html[lang='ja'] h3,
html[lang='ja'] h4,
html[lang='ja'] h5 {
    font-family: '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W6', 'HiraMinProN-W6',
        'HG明朝E', 'HG明朝B', 'ＭＳ 明朝', 'MS PMincho', serif;
}

h3 {
    font-weight: lighter;
    margin: 0px;
}

body {
    margin: 0;
}

.nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

@media screen and (max-width: 1140px) {
    .nav {
        display: table;
    }
}

@media screen and (max-width: 1000px) {
    .nav {
        flex-direction: column;
    }
}

.first-button,
.second-button,
.third-button {
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: normal;
    padding: 7px 10px;
    text-decoration: none;
    text-align: center;
}

.first-button {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NjYjA3OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5Njc0MzkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.first-button:focus-visible {
    outline: none;
}

.first-button:hover {
    background-image: none;
    background-color: #654e07;
    color: white;
}

.second-button {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    background-color: white;
    padding: 6px 10px;
}

.second-button:hover {
    opacity: 0.6;
    color: var(--primary-color);
}

.third-button {
    background-color: #c6171e;
    color: white;
}

.third-button:hover {
    background-color: #f82028;
    color: white;
}

.search-button {
    background-color: grey;
    color: white;
    padding: 10px;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.search-button:hover {
    background-color: darkgrey;
}

.flex-1 {
    flex: 1;
}

.box {
    width: 95%;
    margin: 0 auto;
    max-width: 1300px;
    padding-top: 30px;
    padding-left: 5px;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0px;
}

.space-between {
    justify-content: space-between;
}

.left-align {
    justify-content: flex-start;
}

.center-align {
    justify-content: center;
}

.primary-font-color {
    color: purple;
}

.bold {
    font-weight: bold;
}

.primary-bg-color {
    background: linear-gradient(
        to bottom,
        rgba(172, 94, 140, 1) 0%,
        rgba(142, 34, 99, 1) 100%
    );
    color: white;
}

.secondary-bg-color {
    background-color: white;
    color: purple;
    border: 1px solid purple;
}

/* Splide CSS */
.splide--nav > .splide__track > .splide__list > .splide__slide {
    cursor: pointer;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active > img {
    opacity: 1 !important;
}

.splide--nav > .splide__track > .splide__list > .splide__slide > img {
    opacity: 0.5 !important;
    object-fit: contain;
}

#splide01-track {
    /*width: 80%;*/
    /*left: 10%;*/
}

.splide__arrow {
    z-index: 0;
}

.splide__arrow--prev {
    left: -29px !important;
}

.splide__arrow--next {
    right: -22px !important;
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
    border: 0px solid transparent;
}

.splide {
    padding-bottom: 0px !important;
}
/* Splide CSS */

.background-white {
    background-color: white;
}

.breadcrumb {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb .separator {
    margin: 0px 10px;
}

.clickable {
    cursor: pointer;
}

.markerz-container {
    width: auto;
    height: auto;
    overflow: hidden;
    transition: all ease-in 0.3s;
    padding-bottom: 10px;
}

.cluster img {
    display: none;
}

.cluster div {
    background-color: var(--primary-color);
    border-radius: 30px;
    height: 40px !important;
    width: 40px !important;
}

.cluster div > span {
    font-size: 18px;
    color: white;
    position: absolute;
    top: -7px;
    text-align: center;
    width: 100%;
    left: 0px;
}

.text-center {
    justify-content: center;
    text-align: center;
}

.one-liner,
.two-liner,
.three-liner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.one-liner {
    -webkit-line-clamp: 1;
}

.two-liner {
    -webkit-line-clamp: 2;
}

.three-liner {
    -webkit-line-clamp: 3;
}

@media screen and (max-width: 1000px) {
    .box {
        padding-right: 0px;
    }
}

/* Google map */
.gm-style .gm-style-iw-c {
    max-height: 500px !important;
}

.gm-style-iw-d {
    max-height: 500px !important;
}

.info-window {
    width: 250px;
    height: 350px;
}

/* Footer */

footer h3 {
    line-height: 4rem;
}

footer li {
    margin: 0px 0px;
}

.gsc-input:focus-visible {
    background-image: none !important;
}

.date-time-field {
    height: 100%;
}
.date-time-field input {
    height: 100%;
    line-height: 51px;
    padding: 0 20px !important;
    outline: none;
    font-size: 15px;
    color: #808080 !important;
    max-width: 100%;
    width: 100% !important;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    border: 0 !important;
    height: 100%;
    /*box-shadow: 0 1px 3px 0px rgb(0 0 0 / 6%);*/
    font-weight: 500;
    opacity: 1;
    border-radius: 3px;
}
.date-time-field input[readonly] {
    background-color: #fff;
}
.date-time-field input:focus {
    box-shadow: none;
}

/* Seasons Color */

/* Spring */
#spring .bg.nara-season {
    background: linear-gradient(
        to right,
        rgba(179, 52, 133, 1) 0%,
        rgba(144, 33, 100, 1) 100%
    );
}

#spring .bg-before.nara-season:before {
    background: linear-gradient(
        to right,
        rgba(179, 52, 133, 1) 0%,
        rgba(144, 33, 100, 1) 100%
    );
}

#spring .font.nara-season {
    color: #8b2360;
}

#spring .bordered.nara-season {
    border-color: #902164;
}

/* Summer */
#summer .bg.nara-season {
    background: linear-gradient(
        to right,
        rgba(224, 63, 63, 1) 0%,
        rgba(204, 43, 43, 1) 100%
    );
}

#summer .bg-before.nara-season:before {
    background: linear-gradient(
        to right,
        rgba(224, 63, 63, 1) 0%,
        rgba(204, 43, 43, 1) 100%
    );
}

#summer .font.nara-season {
    color: #cc2b2b;
}

#summer .bordered.nara-season {
    border-color: #cc2b2b;
}

/* Autumn */
#autumn .bg.nara-season {
    background: linear-gradient(
        to right,
        rgba(215, 87, 48, 1) 0%,
        rgba(185, 70, 36, 1) 100%
    );
}

#autumn .bg-before.nara-season:before {
    background: linear-gradient(
        to right,
        rgba(215, 87, 48, 1) 0%,
        rgba(185, 70, 36, 1) 100%
    );
}

#autumn .font.nara-season {
    color: #d75730;
}

#autumn .bordered.nara-season {
    border-color: #b94624;
}

/* Winter */
#winter .bg.nara-season {
    background: linear-gradient(
        to right,
        rgba(135, 90, 164, 1) 0%,
        rgba(90, 61, 109, 1) 100%
    );
}

#winter .bg-before.nara-season:before {
    background: linear-gradient(
        to right,
        rgba(135, 90, 164, 1) 0%,
        rgba(90, 61, 109, 1) 100%
    );
}

#winter .font.nara-season {
    color: #5a3d6d;
}

#winter .bordered.nara-season {
    border-color: #5a3d6d;
}

*:focus-visible {
    outline: none;
}

.red-text {
    color: red;
}

.info.desc div div,
.info.desc div h1,
.info.desc div h2,
.info.desc div h3,
.info.desc div h4,
.info.desc div h5,
.info.desc div h6,
.info.desc div p {
    font-size: 14px !important;
}
.desc.services div,
.desc.services b,
.desc.services span {
    font-size: 1rem !important;
    color: black !important;
    font-weight: normal !important;
    line-height: 20px !important;
}

.info.desc::after {
    content: '';
    text-align: right;
    position: absolute;
    bottom: 130px;
    right: 0;
    width: 100%;
    height: 2em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 90%);
}

.info.desc.children::after {
    display: none;
}

@media screen and (min-width: 1000px) {
    .nav-collapse.collapse:not(.show) {
        display: block;
    }
}
