@charset "utf-8";

h1,
h2,
h3,
h4,
ul,
ol,
dl,
dt,
dd,
p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', "Segoe UI", "Helvetica Neue", sans-serif;
}

ul,
ol {
    list-style-type: none;
}

article p {
    font-size: 18px;
}


#header .top__header a:hover {
    color: #0056b3;
}

#header .top__header a {
    text-decoration: none;
    color: #333;
}

#appdeeplink {
    display: none;
}

#header-footer-standard {
    margin-top: 110px;
}

@media(max-width:991px) {
    #header-footer-standard {
        margin-top: 95px;
    }
}

@media(max-width:767px) {
    #header-footer-standard {
        margin-top: 95px;
    }
}

/* Bootstrapのガター幅を調整するための汎用CSS */
.row-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.row-0>div {
    padding-right: 0px;
    padding-left: 0px;
}

.row-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.row-5>div {
    padding-right: 2.5px;
    padding-left: 2.5px;
}

.row-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-10>div {
    padding-right: 5px;
    padding-left: 5px;
}

.row-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.row-15>div {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.row-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-20>div {
    padding-right: 10px;
    padding-left: 10px;
}

.row-30 {
    margin-left: -15px;
    margin-right: -15px;
}

.row-30>div {
    padding-right: 15px;
    padding-left: 15px;
}

.row-40 {
    margin-left: -20px;
    margin-right: -20px;
}

.row-40>div {
    padding-right: 20px;
    padding-left: 20px;
}

.row-50 {
    margin-left: -25px;
    margin-right: -25px;
}

.row-50>div {
    padding-right: 25px;
    padding-left: 25px;
}

.row-20-0,
.row-20-5,
.row-20-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-20-0,
.row-20-5,
.row-20-10>div {
    padding-right: 10px;
    padding-left: 10px;
}

.row-30-0>div {
    padding-right: 30px;
    padding-left: 30px;
}

@media (min-width: 1200px) {
    .row-24-10 {
        margin-left: -27px;
        margin-right: -27px;
    }

    .row-24-10>div {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (max-width: 767px) {
    .row-20-0 {
        margin-left: 0px;
        margin-right: 0px;
    }

    .row-20-0>div {
        padding-right: 0px;
        padding-left: 0px;
    }

    .row-20-10 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row-20-10>div {
        padding-right: 5px;
        padding-left: 5px;
    }

    .row-20-5 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    .row-20-5>div {
        padding-right: 2.5px;
        padding-left: 2.5px;
    }

    .row-24-10 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row-24-10>div {
        padding-right: 5px;
        padding-left: 5px;
    }

    .row-30-0>div {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* レストランバスTOP
-------------------------------*/
/*設定
--------------------*/
:root {
    --black: #2a2a2a;
    --white: #fff;
    --gray: #707070;
    --gold: #AE9841;
    --red: #A92121;
    --pink: #fee4f1;
    --opening-bg: #b82f42;
    --border: #CBCBCB;
    --border2: #707070;
    --bgGray: #f1f1f1;
    --bgLightYellow: #F5F3E8;
}


/*共通 パーツ
-------------------------------*/
article {
    overflow: hidden;
}

@media (max-width: 767px) {
    .onlysm {
        display: none !important;
    }

    .pc-on {
        display: none !important;
    }

    .sp-on {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .onlysm {
        display: block !important;
    }

    .pc-on {
        display: block !important;
    }

    .sp-on {
        display: none !important;
    }
}

#restaurantbus-top a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    transform: translateZ(0);
}

small {
    font-size: 75%;
}

/* color
-----------------------------------*/
.color-black {
    color: var(--black) !important;
}

.color-white {
    color: var(--white) !important;
}

.color-gold {
    color: var(--gold) !important;
}

.color-red {
    color: var(--red) !important;
}


/* bgColor
-----------------------------------*/
.bgColor-white {
    background-color: var(--white) !important;
}

.bgColor-gray {
    background-color: var(--bgGray) !important;
}

.bgColor-yellow {
    background-color: var(--bgLightYellow) !important;
}

.bgColor-pink {
    background-color: var(--pink) !important;
}


/* flex
----------------------------------*/
.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    justify-content: center;
}


@media (max-width: 767px) {
    .sp-flex {
        display: flex;
    }

    .sp-flex-between {
        display: flex;
        justify-content: space-between;
    }
}


/* section
-------------------------------------*/
.section {
    padding: 100px 0;
}

@media (max-width: 767px) {
    .section {
        padding: 45px 0;
    }
}

.section-container {
    width: 96%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .section-container {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
}


/*odd*/
.odd-content-left {
    width: 36%;
    padding-left: 4%;
    padding-right: 2%;
}

.odd-content-right {
    width: calc(100% - 36%);
}

@media (max-width: 767px) {
    .odd-content-left {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .odd-content-right {
        width: 100%;
        padding-left: 0;
    }
}


/*even*/
.even-content-left {
    width: 58%;
}

.even-content-right {
    width: calc(100% - 58%);
    padding-left: 4%;
}

@media (max-width: 767px) {
    .even-content-left {
        order: 2;
        width: 100%;
    }

    .even-content-right {
        order: 1;
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}


/* block
-------------------------------------*/
.block {
    padding: 50px 0;
}

@media (max-width: 767px) {
    .block {
        padding: 25px 0;
    }
}


/* heading
--------------------------------------*/
.heading {
    text-align: center;
    margin-bottom: 54px;
    position: relative;
}

.heading span {
    display: block;
}

.heading .en {
    opacity: 0;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 20px;
}

.heading .en img {
    text-align: center;
    margin-inline: auto;
}

.heading .jp {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 16px;
}


@media (max-width: 767px) {
    .heading {
        margin-bottom: 40px;
    }

    .heading::after {
        width: 190px;
        height: 10px;
    }

    .heading .en {
        width: 54%;
        text-align: center;
        margin: auto;
    }

    .heading .en img {
        text-align: center;
        margin: 0 auto 10px;
    }

    .heading .jp {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 0;
    }
}

/* animation */
.js-scrollIn .heading .en {
    opacity: 1;
    animation: anim-heading 0.5s ease-in-out;
}

@keyframes anim-heading {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}


/* title
--------------------------------------*/
.title {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .title {
        font-size: 15px;
    }
}


/* button
--------------------------------------*/
.button-wrap {
    margin: auto;
    text-align: center;
}

.button,
.button-radius {
    display: inline-block;
    width: 100%;
    transition: 0.3s;
}

.button-radius {
    border-radius: 30px;
}

.button-black {
    width: 100%;
    max-width: 370px;
    display: inline-block;
    padding: 24px 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    border-radius: 500px;
    transition: 0.3s;
    background: var(--black);
    color: var(--white);
}

.button-black:hover {
    color: var(--white);
}

.button-white {
    display: inline-block;
    width: 100%;
    border-radius: 58px;
    border: 2px solid var(--black);
    padding: 18px 30px;
    position: relative;
}

.button-white::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 14px;
    color: var(--black);
    transform: translateY(-50%);
}


@media (max-width: 767px) {
    .button-wrap {
        max-width: 110px;
        margin: 20px auto;
    }

    .button-black {
        font-size: 16px;
    }

    .button-white {
        font-size: 16px;
    }
}


/* ホバー対応デバイス */
@media (hover: hover) {

    .button:hover,
    .button-radius:hover {
        opacity: 0.6;
        text-decoration: none;
    }

    .button-black:hover,
    .button-white:hover {
        opacity: 0.6;
        text-decoration: none;
    }
}


/* arrow
-------------------------------*/
.arrow,
.arrow-right,
.arrow-down,
.arrow-top {
    position: relative;
}

.arrow::after,
.arrow-right::after,
.arrow-down::after,
.arrow-top::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 14px;
}

.arrow-right::after {
    right: 20px;
    content: "\f054";
}

.arrow-down::after {
    content: "\f13a";
}

@media (max-width: 767px) {
    .arrow-right::after {
        right: 16px;
    }
}


/* text
--------------------------------------*/
.lead {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--black);
}

.bold {
    font-weight: bold;
}

.large {
    font-size: 120%;
}

.middle {
    font-size: 80%;
    line-height: 1.2;
}

.small {
    font-size: 80%;
}

.text-center {
    text-align: center;
}

@media (max-width: 1024px) {
    .lead {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .lead {
        font-size: 14px;
        line-height: 1.5;
    }
}

.wrap-copy {
    position: relative;
    text-align: center;
}

.wrap-copy .line {
    display: inline-block;
    position: relative;
    padding: 0;
}

.wrap-copy .line::before,
.wrap-copy .line::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 100%;
    bottom: 0;
    border-radius: 50px;
    background: var(--black);
}

.wrap-copy .line::before {
    left: -16px;
    transform: translateX(-50%) rotate(-30deg);
}

.wrap-copy .line::after {
    right: -16px;
    transform: translateX(-50%) rotate(30deg);
}

@media (max-width: 767px) {

    .wrap-copy .line::before,
    .wrap-copy .line::after {
        width: 2px;
        height: 80%;
    }

    .wrap-copy .line::before {
        left: -20px;
        transform: translateX(-50%) rotate(-30deg);
    }

    .wrap-copy .line::after {
        right: -20px;
        transform: translateX(-50%) rotate(30deg);
    }
}

/*link*/
.link-text {
    text-decoration: none;
    display: inline-block;
    padding-bottom: 5px;
    color: var(--gray);
    border-bottom: 1px solid var(--gray);
    font-size: 16px;
}

.link-text:hover {
    color: var(--gray);
}

@media(max-width: 767px) {
    .link-text {
        font-size: 14px;
    }
}

/* border
--------------------------------------------*/
.border-dot-pink {
    padding-bottom: 3px;
    border-bottom: 4px dotted var(--pink);
}


/* card
-------------------------------------------*/
.card-item {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.card-item figure {
    margin: 0;
}

.card-info {
    padding: 20px;
}

/*slider ベース設定
-------------------------------------*/
.slick-dots li {
    width: 8px;
    height: 8px;
    line-height: 1;
    margin: 0 6px;
}

.slick-dots li button {
    padding: 0;
    width: 8px;
    height: 8px;
}

.slick-dots li button {
    font-size: 8px;
    padding: 0;
    background: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    border: 1px solid var(--border2);
    width: 8px;
    height: 8px;
    line-height: 1;
}

.slick-dots li.slick-active button {
    background: var(--border);
}

.slick-dots li button:before {
    content: none;
}


/* opening
-------------------------------------------*/
#opening {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: var(--opening-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s;
    transform: translateZ(0);
    animation: shutter_open_1 1s 4s forwards ease-out;
    will-change: width, opacity;
}

.opening-item {
    text-align: center;
    opacity: 0;
}

.opening-logo {
    text-align: center;
    animation: loading_logo 0s 0s forwards ease-out;
}

.opening-logo img {
    width: 294px;
    margin: auto;
}

.opening-text {
    text-align: center;
    margin-top: 60px;
    animation: loading_text 1.2s 1s forwards ease-out;
}

.opening-text img {
    width: 560px;
    margin: auto;
}

.opening-object {
    text-align: center;
    margin-top: 60px;
    animation: loading_object 1.2s 2s forwards ease-out;
}

.opening-object img {
    width: 300px;
    margin: auto;
}

@keyframes loading_logo {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loading_text {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loading_object {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.55;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shutter_open_1 {
    0% {
        width: 100%;
        left: 0;
        opacity: 1;
    }

    40% {
        width: 100%;
        opacity: 1;
    }

    50% {
        width: 100%;
        opacity: 0.5;
    }

    60% {
        width: 100%;
        opacity: 0.3;
    }

    70% {
        width: 100%;
        opacity: 0.2;
        background: transparent
    }

    80% {
        width: 100%;
        opacity: 0.1;
        background: transparent;
    }

    100% {
        width: 0%;
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .opening-logo {
        text-align: center;
    }

    .opening-logo img {
        width: 30%;
        max-width: 80%;
    }

    .opening-text {
        margin-top: 40px;
    }

    .opening-text img {
        width: 460px;
    }

    .opening-object {
        margin-top: 50px;
    }

    .opening-object img {
        width: 32%;
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    #opening {
        top: 0px;
    }

    .opening-logo img {
        width: 298px;
    }

    .opening-object img {
        width: 330px;
    }
}

@media (max-width: 480px) {
    .opening-text img {
        width: 360px;
    }

    .opening-logo img {
        width: 198px;
    }

    .opening-object img {
        width: 230px;
    }
}

/* header nav
--------------------------*/
/* 追従 */
.sticky-nav {
    width: 100%;
    transition: .6s;
}

.sticky-nav.is-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 300;
    background: rgba(255, 255, 255, 0.9);
    will-change: transform;
}

/* メニューが追従していない時の高さを浮かす調整*/
.sticky-nav.is-static {
    position: static;
}

.restaurantbus-header-content {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*ロゴ*/
.restaurantbus-logo {
    width: 98%;
    max-width: 304px;
}

/*ボタン*/
.button-wrap-reverse {
    width: 250px;
}

.button-reserve {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    border-radius: 33px;
    background: var(--gold);
    color: var(--white);
    transition: .3s;
}

.button-reserve:hover {
    color: var(--white);
}

/*シェアボタン*/
/*LINE */
.button-wrap-line {
    margin: auto;
}

.button-wrap-line a {
    display: block;
    text-align: center;
    margin: auto;
    transition: 0.3s;
}


@media (hover: hover) {
    .button-reserve:hover {
        opacity: 0.6;
        text-decoration: none;
    }

    .button-wrap-line a::hover {
        opacity: 0.6;
    }
}

@media (max-width: 767px) {

    /* 追従 */
    .sticky-nav {
        margin: 0 auto;
    }

    /*ナビゲーションバー*/
    .restaurantbus-header-content {
        padding: 10px 16px;
    }

    /*ロゴ*/
    .restaurantbus-logo {
        width: 98%;
        max-width: 180px;
    }

    /*ボタン*/
    .button-wrap-reverse {
        width: auto;
    }

    .button-reserve {
        width: 120px;
        padding: 13px;
        font-size: 14px;
    }


    /*シェアボタン*/
    /*LINE */
    .button-wrap-line a {
        width: 80%;
    }
}

@media (max-width: 340px) {
    .restaurantbus-logo {
        width: 47.5%;
    }

    .button-reserve {
        padding: 8px;
    }
}



/* Contents
---------------------------------------------*/
/*　MV
-------------------------------*/
.mv-area {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
}



/* slider
-------------------------*/
.mv-slider {
    overflow: hidden;
    margin-bottom: 0;
    transform: translateZ(0);
}

.mv-slider-img img {
    width: 100%;
    max-width: 100%;
}

/*2枚目以降のスライダー調整*/
.mv-slider .mv-slider-item:nth-of-type(n+2) {
    display: none;
    /*slick-initializedが付与されたら表示*/
}

.mv-slider.slick-initialized .mv-slider-item:nth-of-type(n+2) {
    display: block;
    /*slick-initializedが付与されたら表示*/
}


/*cuisine
---------------------------------------*/
.cuisine-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 100px 0 60px;
}

.cuisine-text-en {
    transform: rotate(-10deg);
    margin: -60px auto 80px;
}

/*bg*/
.cuisine-area::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(var(--white) 0%, var(--white) 30%, var(--bgGray) 30%, var(--bgGray) 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateX(-100%);
}

.cuisine-area.js-scrollIn::after {
    animation: bg_anim_left_to_right 1s forwards ease-out;
}

.cuisine-photo {
    display: flex;
}

.cuisine-photo li {
    overflow: hidden;
}

.cuisine-photo li:first-child {
    width: 460px;
    height: 600px;
}

.cuisine-photo li:last-child {
    width: 370px;
    height: 600px;
}

.cuisine-photo li img {
    object-fit: cover;
}

.cuisine-photo li:first-child img {
    width: 100%;
    height: 100%;
    max-width: initial;
    /*    object-position: bottom right;*/
    object-position: 46%;
    /*差し替え写真によって調整*/
}

.cuisine-photo li:last-child img {
    width: 100%;
    height: 100%;
    max-width: initial;
    object-position: 44%;
}

@media(max-width: 767px) {
    .cuisine-area {
        padding: 55px 0 50px;
    }

    .cuisine-area::after {
        background: linear-gradient(var(--white) 0%, var(--white) 20%, var(--bgGray) 20%, var(--bgGray) 100%);
    }

    .cuisine-container {
        width: 100%;
        max-width: 100%;
    }

    .cuisine-text-en {
        width: calc(100% - 24%);
        margin: -20px auto 0;
        order: 2;
    }

    .cuisine-text-jp {
        width: 24%;
        order: 1;
    }

    .cuisine-photo {
        display: flex;
        justify-content: center;
    }

    .cuisine-photo li {
        overflow: hidden;
    }

    .cuisine-photo li:first-child {
        /* width: 206px; */
        width: 60vw;
        height: 264px;
    }

    .cuisine-photo li:last-child {
        width: 40vw;
        height: 264px;
    }

    .cuisine-photo li img {
        animation: anim_photo_right_to_left 50s infinite running linear 0.5s both;
    }

    .cuisine-photo li:first-child img {
        width: 100%;
        object-position: left bottom;
    }

    .cuisine-photo li:last-child img {
        width: 100%;
        object-position: left bottom;
        /*差し替え写真によって調整*/
        animation: anim_photo_right_to_left_2 50s infinite running linear 0.5s both;
        /*差し替え写真によって調整*/
    }
}

/**** cuisine 背景アニメーション　ここから*****/
@keyframes bg_anim_left_to_right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/**** cuisine 背景アニメーション　ここまで*****/

/**** cuisine photoアニメーション　ここから*****/
@keyframes anim_photo_right_to_left {
    from {
        object-position: 0%;
    }

    to {
        object-position: 100%;
    }
}

@keyframes anim_photo_right_to_left_2 {
    from {
        object-position: 30%;
    }

    to {
        object-position: 100%;
    }
}

/**** cuisine photoアニメーション　ここまで*****/


/**** cuisine svg アニメーション　ここから*****/
svg .cuisine-svganimation-1,
svg .cuisine-svganimation-2,
svg .cuisine-svganimation-3,
svg .cuisine-svganimation-4,
svg .cuisine-svganimation-5,
svg .cuisine-svganimation-6,
svg .cuisine-svganimation-7 {
    opacity: 0;
}

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-1 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
    animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-2 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
    animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-3 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
    animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-4 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
    animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-5 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
    animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-6 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
    animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .cuisine-svganimation-7 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
    animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

/**** cuisine svg アニメーション　ここまで *****/





/*sightseeing
---------------------------------------*/
.sightseeing-area {
    position: relative;
    padding: 200px 0 60px;
}

/*bg*/
.sightseeing-area::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(var(--white) 0%, var(--white) 26%, var(--bgGray) 26%, var(--bgGray) 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateX(-100%);
}

.sightseeing-area.js-scrollIn::after {
    animation: bg_anim_right_to_left 1.2s forwards ease-out;
}

.sightseeing-text-en {
    transform: rotate(-10deg);
    margin: -60px auto 80px;
}

.sightseeing-photo li {
    overflow: hidden;
    width: 760px;
    max-width: 100%;
    height: 600px;
}

.sightseeing-photo li img {
    width: 100%;
    height: 100%;
    max-width: initial;
    object-fit: cover;
    /*    object-position: bottom center;*/
    object-position: bottom -60px left 0;
    object-position: center center;
    /*sakura ver*/
}

@media(max-width: 1100px) {
    .sightseeing-photo li {
        max-width: 100%;
    }
}


@media (max-width: 767px) {
    .sightseeing-area {
        padding: 120px 0 30px;
    }

    /*bg*/
    .sightseeing-area::after {
        background: linear-gradient(var(--white) 0%, var(--white) 23%, var(--bgGray) 23%, var(--bgGray) 100%);
    }

    .sightseeing-text-en {
        order: 2;
        margin: -24px auto 0 4%;
    }

    .sightseeing-text-jp {
        order: 1;
    }

    .sightseeing-right .lead-small {
        line-height: 1.3;
    }

    .sightseeing-right .small {
        font-size: 86%;
    }

    .sightseeing-photo li {
        margin: auto;
    }

    .sightseeing-photo li {
        width: 70vw;
        height: 300px;
    }

    .sightseeing-photo li img {
        width: 100%;
        object-fit: cover;
        object-position: left bottom;
        object-position: center bottom;
        /*sakura ver*/
        /*　SPのみアニメーション　*/
        /*        animation: anim_photo_right_to_left 50s infinite running linear 0.5s both;*/
    }

}

@media (max-width: 560px) {
    .sightseeing-photo li {
        width: 100vw;
    }
}


/**** sightseeing 背景アニメーション　ここから*****/
@keyframes bg_anim_right_to_left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/**** sightseeing 背景アニメーション　ここまで*****/


/****  sightseeing photoアニメーション　ここから*****/
@keyframes anim_photo_right_to_left {
    from {
        object-position: 0%;
    }

    to {
        object-position: 100%;
    }
}

/****  sightseeing photoアニメーション　ここまで*****/



/*** sight seeng svgアニメーション ここから***/
svg .sightseeing-svganimation-1,
svg .sightseeing-svganimation-2,
svg .sightseeing-svganimation-3,
svg .sightseeing-svganimation-4,
svg .sightseeing-svganimation-5,
svg .sightseeing-svganimation-6,
svg .sightseeing-svganimation-7,
svg .sightseeing-svganimation-8,
svg .sightseeing-svganimation-9,
svg .sightseeing-svganimation-10,
svg .sightseeing-svganimation-11 {
    opacity: 0;
}

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-1 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
    animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-2 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
    animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-3 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
    animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-4 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
    animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-5 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
    animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-6 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
    animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-7 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
    animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-8 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-9 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
    animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-10 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
    animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-11 {
    0% {
        fill: transparent;
    }


    100% {
        fill: rgb(203, 203, 203);
    }
}

@keyframes animate-svg-fill-11 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(203, 203, 203);
    }
}

.js-scrollIn .sightseeing-svganimation-11 {
    opacity: 1;
    -webkit-animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
    animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

/*** sight seeng svgアニメーション　ここまで***/



/* Booking
--------------------------------------*/
.booking-area {
    padding: 110px 0 0;
}

.booking-content {
    padding: 0 0 100px;
    border-top: 1px solid var(--border2);
}

.booking-header {
    padding-top: 60px;
    padding-left: 40px;
    position: relative;
    margin-bottom: 40px;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 1px;
    height: 100px;
    background: var(--black);
    opacity: 0;
    transition: 0.3s;
}

.js-scrollIn .booking-header::before {
    animation: anim_line 1s linear forwards;
}

@keyframes anim_line {
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        top: 0;
        opacity: 0.5;
    }

    100% {
        top: 0;
        opacity: 1;
        transform: translate(100%);
    }
}

.booking-heading {
    margin-bottom: 60px;
}

.booking-heading .en {
    opacity: 0;
    transition: 0.3s;
}

.js-scrollIn.booking-heading .en {
    opacity: 1;
    animation: anim-heading 0.5s ease-in-out;
}

.booking-heading .jp {
    font-weight: 700;
    margin-bottom: 13px;
}

.booking-area .booking-heading .jp {
    margin-top: 24px;
    display: block;
    font-size: 30px;
    color: var(--black);
}

.booking-concept {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .booking-area {
        padding: 30px 0 0;
    }

    .booking-area>.booking-heading {
        padding: 0 15px;
    }

    .booking-content {
        padding-top: 0;
    }

    .booking-header {
        padding-top: 30px;
        padding-left: 20px;
    }

    .booking-header::before {
        top: 0;
        height: 82px;
    }

    .booking-heading {
        margin-bottom: 0;
    }

    .booking-heading .en {
        text-align: left;
    }

    .booking-heading .en img {
        text-align: left;
    }

    .booking-area .booking-heading .jp {
        margin-top: 10px;
        font-size: 18px;
    }

    .booking-concept {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* page nav
--------------------------*/
.page-nav {
    margin: 36px auto 0;
}

.page-nav ul {
    width: 80%;
    max-width: 1160px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2%;
}

.page-nav li {
    /* width: calc(100% / 3); */
    display: flex;
    justify-content: center;
    /* margin-left: 2%;  */
}

.page-nav li:first-child a {
    border-left: none;
}

.page-nav li a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--black);
    padding: 24px 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    border-left: 1px solid var(--black);
    transition: 0.3s;
}

.page-nav li a:hover {
    opacity: 0.6;
}

.page-nav li a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 13px;
    color: #3d3c3c;
    transform: translateY(-50%);
    transition: 0.3s;
}

@media (max-width: 993px) {
    .page-nav ul {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-nav {
        margin: 0 auto;
    }

    .page-nav ul {
        width: 100%;
    }

    .page-nav li {
        /* justify-content: space-between; */
        /* margin-left: 1.5%; */
    }

    .page-nav li a {
        font-size: 13px;
        padding: 16px 10px 24px;
    }

    .page-nav li a::after {
        top: 46px;
        left: 48%;
        right: auto;
        font-size: 10px;
    }
}

@media (max-width: 321px) {
    .page-nav li a {
        font-size: 8px;
    }
}

/*button*/
.rental-button-wrap {
    margin: auto;
    max-width: fit-content;
    text-align: center;
}

.rental-button-wrap .button-black {
    padding: 12px 16px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}


.button-red {
    width: 100%;
    display: inline-block;
    color: var(--red);
    font-size: 14px;
    text-align: center;
    padding: 12px 16px;
    border: 1px solid var(--red);
    border-radius: 100px;
    transition: 0.3s;
}

.button-red:hover {
    background: var(--red);
    color: var(--white);
    opacity: 1;
}


/* plan
-------------------------------------*/
/*シェア*/
.share-text {
    width: 70%;
    margin: auto;
}

.plan-area {
    padding: 0 0 120px;
}

.plan-card {
    gap: 1%;
    max-width: 1140px;
    justify-content: space-between;
}

.plan-item {
    width: 49%;
    max-width: 563px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.plan-item a {
    color: var(--black);
}

.plan-item .plan-slider {
    margin-bottom: 0;
}

.plan-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.plan-name {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--black);
}

.plan-category-item {
    width: fit-content;
    padding: 3px 10px;
    font-size: 14px;
    color: var(--white);
    text-align: center;
    background-color: var(--black);
    border-radius: 30px;
}

.plan-category-item:not(:first-child) {
    margin-left: 1.5%;
}

.plan-notice {
    position: static !important;
    padding: 0 !important;
    color: #ff1111;
}

.plan-time-item,
.plan-notice {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    padding-left: 24px;
    position: relative;
}

.plan-time-item span {
    display: inline-block;
    position: absolute;
    left: 0;
}

.plan-time-item span img,
.plan-pin span img {
    display: block;
    vertical-align: middle;
}

.plan-pin {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    position: relative;
    padding-left: 24px;
}

.plan-pin span {
    display: inline-block;
    position: absolute;
    left: 0;
}

.plan-det {
    font-size: 15px;
}

.plan-price {
    color: var(--red);
    font-size: 28px;
    font-weight: 700;
}

.plan-price span {
    font-weight: 700;
}

.plan-price small {
    font-size: 60%;
}

.plan-button {
    max-width: 154px;
    border-radius: 100px;
    border: 1px solid var(--border2);
    padding: 6px 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.plan-button::after {
    font-size: 13px;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}


.plan-share-text {
    width: 30%;
    margin: auto;
}


@media (max-width: 1024px) {
    .plan-info {
        padding: 20px 14px;
    }

    .plan-name {
        font-size: 16px;
    }

    .plan-category-item {
        padding: 3px 10px;
        font-size: 13px;
        border-radius: 30px;
    }

    .plan-time-item,
    .plan-notice {
        font-size: 13px;
        padding-left: 24px;
    }

    .plan-pin {
        font-size: 13px;
        padding-left: 24px;
    }

    .plan-det {
        font-size: 13px;
    }

    .plan-price {
        font-size: 20px;
    }

    .plan-button {
        font-size: 11px;
    }

    .plan-button::after {
        font-size: 13px;
        right: 14px;
    }

}




/*plan slick */
.plan-card .slick-dots {
    bottom: 10px;
}

@media (max-width: 767px) {
    .plan-area {
        padding: 0 0 70px;
    }

    .plan-area .booking-heading .en img {
        width: 35%;
    }

    .plan-item {
        width: 100%;
        max-width: 100%;
    }

    .plan-name {
        font-size: 16px;
    }

    .plan-time-item,
    .plan-notice {
        font-size: 12px;
        line-height: 1.5;
        font-weight: 300;
    }

    .plan-pin {
        font-size: 12px;
    }

    .plan-det {
        font-size: 12px;
    }

    .plan-price {
        font-size: 22px;
    }

    .plan-button {
        padding: 5px 30px;
        font-size: 12px;
    }

    .plan-button::after {
        font-size: 12px;
    }

    /*plan slick */
    .plan-card .slick-dots {
        bottom: 0;
    }

}

@media (max-width: 400px) {
    .plan-det {
        font-size: 11px;
    }
}


/*tab*/


@media(max-width: 320px) {
    .plan-button {
        padding: 5px 30px 5px 10px;
    }
}


/** form **/


.form-group,
.btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    border-radius: 200px;
    border: 1px solid var(--border2);
    font-weight: 300;
    color: var(--black);
    padding: 0 40px;
    height: 62px;
}

.btn-group-time {
    width: 100%;
    display: flex;
    justify-content: center;
}



/*リセット*/
.btn-default input[type=checkbox] {
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-default {
    width: 100%;
    border: 1px solid var(--border2);
    border-radius: 100px;
    height: 57px;
    font-size: 18px;
    font-weight: 300;
    padding: 14px 30px;
    margin-bottom: 0;
}

.btn-select-lunch,
.btn-select-dinner {
    position: relative;
    overflow: hidden;
}

/*.activeの時に背景色を変更*/
.btn-select-lunch .btn-default.active {
    color: var(--white);
    background: #F1A150;
    border: 1px solid #F1A150;
}

/*.activeのに背景色を変更*/
.btn-select-dinner .btn-default.active {
    color: var(--white);
    background: #2152A9;
    border: 1px solid #2152A9;
}

.btn-select-lunch .btn-default::before,
.btn-select-dinner .btn-default::before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: calc(50% - 60px);
    transform: translateY(-50%);
    transition: 0.3s;
}

.btn-select-lunch .btn-default::before {
    width: 28px;
    height: 28px;
    background: url('../img/ico-plan-lunch-off.svg') no-repeat center center / 100%;
}

/*.activeの時にアイコンを変更*/
.btn-select-lunch .btn-default.active::before {
    background: url('../img/ico-plan-lunch-on.svg') no-repeat center center / 100%;
}

.btn-select-dinner .btn-default::before {
    width: 21px;
    height: 26px;
    background: url('../img/ico-plan-dinner-off.svg') no-repeat center center / 100%;
}

/*.activeの時にアイコンを変更*/
.btn-select-dinner .btn-default.active::before {
    background: url('../img/ico-plan-dinner-on.svg') no-repeat center center / 100%;
}


.btn-search-wrap {
    margin: 40px auto 0;
    width: 100%;
    max-width: 370px;
}

.btn-search {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    padding: 24px 30px;
    transition: .3s;
    border-radius: 500px;
}

.btn-search:hover {
    opacity: 0.6;
}


@media (max-width: 767px) {

    .form-group,
    .btn-group {
        flex-wrap: wrap;
    }

    .form-group {
        margin-bottom: 0;
    }

    .btn-group-time {
        flex-wrap: wrap;
    }


    .btn-search-wrap {
        margin: 30px auto 0;
        padding: 0;
    }

    .btn-search {
        font-size: 18px;
        padding: 24px 30px;
    }
}


/* route
------------------------------------------*/
.route-area {
    padding-bottom: 0;
}

.route-block {
    padding-bottom: 0;
}

.route-lead {
    text-align: left;
}

/* route-tab
-------------------------------------*/
/*タブ*/
.routetabs {
    background-color: var(--bgLightYellow);
}

/* タブボタン */
.routetabs-buttonlist {
    display: flex;
    column-gap: 1%;
    justify-content: center;
    position: relative;
    border-bottom: none;
    /*z-index: -1;*/
}

.routetabs-buttonlist.nav-tabs li {
    width: 19%;
}

.routetabs-buttonlist li {
    /*	flex: 1 1 auto;*/
    text-align: center;
}

.routetabs-buttonlist.nav-tabs li>span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    color: var(--black);
    background: var(--white);
    border-radius: 50px;
    border: 2px solid var(--black);
    padding: 10px 4%;
    height: 100%;
    align-content: center;
}

.routetabs-buttonlist.nav-tabs li>span:hover {
    opacity: 1;
    border-color: inherit;
}

.nav-item .sub {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.routetabs-buttonlist.nav-tabs .nav-link.active {
    border: 2px solid var(--gold);
    background-color: var(--gold);
    opacity: 1;
    color: var(--white);
}

/*タブボタン アクティブ時の挙動*/
.routetabs-buttonlist li button.active {
    position: relative;
}

@media (max-width: 1024px) {
    .routetabs-buttonlist.nav-tabs li {
        width: 31.5%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .route-lead {
        text-align: center;
    }

    /* タブボタン */
    .routetabs-buttonlist.nav-tabs {
        justify-content: center;
    }

    .routetabs-buttonlist.nav-tabs li {
        width: 32.5%;
        min-height: 77px;
        margin-bottom: 8px;
    }

    .routetabs-buttonlist li button,
    .routecetabs-buttonlist li span {
        font-size: 11px;
    }

    .routetabs-buttonlist.nav-tabs li span {
        width: 100%;
        font-size: 14px;
        line-height: 1.2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .nav-item .sub {
        margin-top: 3px;
    }
}

/* タブコンテンツ　*/
.tab-content {
    /*    padding: 50px 6% 60px;*/
}

.route-content {
    display: none;
    transition: 0.3s;
}

.route-content.active {
    display: block;
}

.route-img {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.route-img img {
    margin: auto;
}

.route-attention {
    max-width: 800px;
    margin: 30px auto 50px;
}

.route-attention .lead {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}


/*ボタン*/
.button-route-wrap {
    max-width: 563px;
}

.button-route {
    padding: 16px 28px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    transition: .3s
}

.button-route:hover {
    background: var(--gold);
    color: var(--white);
    opacity: 1;
}

.button-route .img {
    display: block;
    width: 48%;
    border-radius: 10px;
    min-height: 75px;
    align-content: center;
}

.button-route .img img {
    border-radius: 10px;
}

.button-route .text {
    width: 48%;
    padding: 0 2%;
    text-align: left;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .button-route .text {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .route-attention {
        margin: 20px auto 30px;
    }

    .route-attention .lead {
        text-align: center;
        font-size: 11px;
    }

    .button-route {
        padding: 16px 28px;
    }

    .button-route .text {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .route-attention .lead {
        text-align: left;
        font-size: 14px;
    }
}



/*期間限定　設定*/
.limited-block {
    padding: 30px 0 60px;
}

@media(max-width: 767px) {
    .limited-block {
        padding: 20px 0 30px;
    }
}

/*ボタン*/
.routetabs-buttonlist.limited li {
    width: 30%;
}

.routetabs-buttonlist.nav-tabs.limited li>span {
    padding: 20px 2%;
    border-radius: 50px;
    background: var(--pink);
}

@media (max-width: 1024px) {
    .routetabs-buttonlist.nav-tabs.limited li>span {
        font-size: 14px;
        min-height: 100%;
    }
}

@media (max-width: 767px) {
    .routetabs-buttonlist.nav-tabs.limited li {
        width: 48%;
    }

    .routetabs-buttonlist.nav-tabs.limited li span {
        width: 100%;
        font-size: 10px;
        padding: 10px 2%;
        line-height: 1.2;
    }

    .routetabs-buttonlist.nav-tabs.limited li span.sub {
        padding: 2px 0;
    }
}

/* 期間限定ルート モーダル内設定 */
.time-list dt,
.time-list dd {
    font-size: 12px;
}

.time-list {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.time-list div {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
}

.time-list dt {
    width: 40%;
}

.time-list dd {
    width: 60%;
}


@media(max-width: 767px) {

    .time-list dt,
    .time-list dd {
        font-size: 11px;
    }

}

@media (max-width: 380px) {

    .time-list dt,
    .time-list dd {
        width: 100%;
    }

}

/*モーダル*/
.route-modal .modal-header {
    flex-wrap: wrap;
}

.modal-route-heading {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
}


/*モーダルルート内ボタン*/
.route-plan-wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .route-plan-wrap {
        width: 100%;
    }

    /*モーダル*/
    .route-modal .modal-header button {
        position: absolute;
        right: 18px;
        top: 8px;
    }
}


/* reviews
---------------------------------------*/
.reviews-container {
    width: 90%;
    max-width: 940px;
    margin: auto;
}

.reviews-row {
    align-items: center;
}

.reviews-area {
    font-size: 14px;
    font-weight: 300;
}

.reviews-name .jp {
    font-size: 34px;
}

.reviews-list {
    align-items: center;
}

.reviews-list .num {
    font-size: 46px;
    font-weight: 700;
}

.reviews-list .subject {
    font-size: 14px;
    font-weight: 300;
}

.reviews-button-wrap {
    width: 100%;
    max-width: 370px;
}

.reviews-button {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767px) {
    .reviews-container {
        width: 100%;
        max-width: 100%;
    }

    .reviews-row {
        flex-wrap: wrap;
    }

    .reviews-area {
        font-size: 12px;
    }

    .reviews-name .jp {
        font-size: 20px;
    }

    .reviews-name .en {
        display: inline-block;
        width: 100%;
    }

    .reviews-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .reviews-list .subject {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    .reviews-button-wrap {
        max-width: 100%;
    }

    .reviews-button {
        margin: 30px auto;
    }
}



/*　Instagram Gallery
----------------------------------*/
.instagram-area {
    padding: 0 0 120px;
}

.insta-scroll-container {
    overflow-x: scroll;
    margin-left: auto;
    margin-right: auto;
}

.insta-scroll-wrap {
    width: fit-content;
}

@media (min-width: 576px) {
    .insta-scroll-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .insta-scroll-container {
        max-width: 720px;
    }
}

@media (min-width: 960px) {
    .insta-scroll-container {
        max-width: 920px;
    }
}

@media (min-width: 1140px) {
    .insta-scroll-container {
        overflow-x: auto;
        max-width: 1080px;
    }
}

@media (min-width: 1300px) {
    .insta-scroll-container {
        max-width: 1240px;
    }
}


.instagram-gallery {
    /*    width: 100%;*/
    /*    max-width: 100%;*/
    /*    justify-content: space-between;*/
    display: flex;
    justify-content: flex-start;
    gap: 1%;
    /*    flex-wrap: wrap;*/
    margin: 0 auto;
}

.instagram-gallery li {
    width: 400px;
    /*
    width: 360px;
    height: 640px;
*/
    margin: 0 auto 20px;
}

/*
@media (max-width: 1200px) {
  .instagram-gallery li {
      width: 47%;
  }
}
*/

@media (max-width: 767px) {
    .instagram-area {
        padding: 0 0 30px;
    }

    .instagram-gallery {
        width: 100%;
        max-width: 100%;
        /*      justify-content: center;*/
        justify-content: flex-start;
        gap: 1.2%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .instagram-gallery li {
        /*width: 100%;*/
        width: 320px;
        height: auto;
    }
}

/* Other
-----------------------------*/
.other-area {
    position: relative;
    padding: 150px 0 100px;
}

.other-area::before {
    content: '';
    position: absolute;
    display: inline-block;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 180px;
    background: var(--black);
    opacity: 0;
}

.js-scrollIn.other-area::before {
    animation: anim_line_other 1s linear forwards;
}

@keyframes anim_line_other {
    0% {
        opacity: 0;
        top: -100px;
        transform: translateY(-100px);
    }

    50% {
        top: -100px;
        opacity: 0.5;
        transform: translateY(-50px);
    }

    100% {
        top: -100px;
        opacity: 1;
        transform: translateY(0);
    }
}

.other-area .heading .small {
    display: inline-block;
    font-weight: bold;
}


.other-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.other-info {
    padding: 20px;
}

.other-info p {
    font-size: 16px;
}

@media (max-width: 767px) {
    .other-area {
        padding: 70px 0 40px;
    }

    .other-area::before {
        top: -20px;
        height: 80px;
    }

    @keyframes anim_line_other {
        0% {
            opacity: 0;
            top: -20px;
            transform: translateY(-100px);
        }

        50% {
            top: -20px;
            opacity: 0.5;
            transform: translateY(-50px);
        }

        100% {
            top: -20px;
            opacity: 1;
            transform: translateY(0);
        }
    }

    .other-heading .en img {
        width: 30%;
    }

    .other-info {
        padding: 6px 10px;
    }

    .other-info p {
        font-size: 12px;
    }
}




/* media
-------------------------*/
.media-area {
    background: var(--black);
    color: var(--white);
}

.media-list {
    width: 86%;
    max-width: 560px;
    margin: auto;
}



@media(max-width: 767px) {
    .media-heading .en img {
        width: 30%;
    }

    .media-list {
        width: 100%;
    }

}



/* faq
-------------------------*/
.faq-area {
    background: var(--bgGray);
}

.faq-list {
    width: 90%;
    max-width: 755px;
    margin: auto;
}

.faq-item {
    display: block;
}

.faq-item a {
    display: block;
    padding: 22px 30px 22px 64px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    color: var(--black);
    background: var(--white);
}

.faq-item a::before,
.faq-item a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

.faq-item a::before {
    top: 35px;
    left: 32px;
    width: 22px;
    height: 20px;
    background: url('../img/ico-faq-q.svg') no-repeat center center/ 100%;
}

.faq-item a::after {
    right: 40px;
    width: 31px;
    height: 29px;
    background: url('../img/ico-faq-newtab.svg') no-repeat center center/ 100%;
}

@media(hover: hover) {
    .faq-item a:hover {
        opacity: 0.6;
    }
}

.faq-button {
    max-width: 371px;
    margin: auto;
}

.faq-button a {
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--border2);
}

.faq-button a::after {
    content: '';
    width: 24px;
    height: 22px;
    background: url('../img/ico-faq-newtab.svg') no-repeat center center/ 100%;
}


@media (max-width: 767px) {
    .faq-heading .en img {
        width: 20%;
    }

    .faq-item a {
        padding: 20px 56px 20px 34px;
        font-size: 14px;
    }

    .faq-item a::before {
        top: 31px;
        left: 16px;
        width: 16px;
        height: 16px;
    }

    .faq-item a::after {
        width: 26px;
        height: 24px;
        right: 24px;
    }

    .faq-button {
        width: 100%;
        max-width: 100%;
        margin: auto;
    }

    .faq-button a {
        width: 80%;
        max-width: 100%;
    }


    .faq-button a::after {
        width: 18px;
        height: 16px;
        right: 24px;
    }

    .routetabs-buttonlist {
        column-gap: 2%;
    }

    .routetabs-buttonlist.nav-tabs li {
        width: 48%;
    }
}



/* contact
-------------------------*/
.contact-area {
    background: url('../img/bg-contact-pc.webp') repeat center center /cover;
}

.contact-button-list {
    width: 90%;
    max-width: 967px;
    margin: auto;
}

.contact-button-list li {
    width: 48%;
    max-width: 480px;
}

.button-contact {
    display: block;
    align-content: center;
    width: 100%;
    padding: 24px;
    text-align: center;
    border-radius: 10px;
    border: 3px solid var(--white);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    height: 88px;
}

.button-contact:hover {
    color: var(--white);
    opacity: 0.6;
}

.ico-instagram {
    position: relative;
    padding: 0px 30px 0px 100px;
}

.ico-instagram::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: block;
    width: 52px;
    height: 52px;
    background: url('../img/ico-instagram.svg') no-repeat center center/ 100%;
}

@media(hover: hover) {
    .button-contact:hover {
        color: var(--white);
        opacity: 0.6;
    }
}

@media (max-width: 767px) {
    .contact-area {
        background: url('../img/bg-contact-sp.webp') no-repeat center center /cover;
    }

    .contact-button-list {
        width: 100%;
        max-width: 967px;
        margin: auto;
    }

    .contact-button-list li {
        width: 100%;
        max-width: 467px;
    }

    .button-contact {
        height: 68px;
        padding: 20px;
        border: 2px solid var(--white);
        font-size: 14px;
    }

    .ico-instagram {
        padding: 0px 30px 0px 60px;
        ;
    }

    .ico-instagram::before {
        width: 32px;
        height: 32px;
        left: 30px;
    }
}





/*20250120追記*/
/* Bus　東京レストランバス 車両・設備紹介
--------------------------------------*/
.bus-area {
    padding: 110px 0 0;
}

.bus-content {
    padding: 0 0 100px;
    border-bottom: 1px solid var(--border2);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.bus-header {
    position: relative;
    margin-bottom: 40px;
    padding-top: 70px;
    padding-left: 0;
}

.bus-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 1px;
    height: 70px;
    background: var(--black);
    opacity: 0;
    transition: 0.3s;
}

.js-scrollIn .bus-header::before {
    animation: anim_line 1s linear forwards;
}

.bus-heading {
    margin-bottom: 60px;
}

.bus-heading .en {
    opacity: 0;
    transition: 0.3s;
}

.js-scrollIn.bus-heading .en {
    opacity: 1;
    animation: anim-heading 0.5s ease-in-out;
}

.bus-heading .jp {
    font-weight: 700;
    margin-bottom: 13px;
    margin-top: 24px;
    display: block;
    font-size: 30px;
    color: var(--black);
}

@media (max-width: 767px) {
    .bus-area {
        padding-bottom: 60px;
    }

    .bus-area>.bus-heading {
        padding: 0 15px;
    }

    .bus-content {
        padding-top: 0;
    }

    .bus-header {
        padding-top: 50px;
    }

    .bus-header::before {
        top: 0;
        height: 50px;
    }

    .bus-heading {
        margin-bottom: 0;
    }

    .bus-heading .en {
        text-align: center;
        margin-bottom: 20px;
    }

    .bus-heading .en img {
        text-align: center;
    }

    .bus-area .bus-heading .jp {
        margin-top: 10px;
        font-size: 18px;
    }
}


/*ボタン*/
.btn-bus-wrap {
    margin: 40px auto 0;
    width: 100%;
    max-width: 370px;
}

.btn-bus {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    padding: 24px 30px;
    transition: .3s;
    border-radius: 500px;
}

.btn-bus:hover {
    opacity: 0.6;
}


@media (max-width: 767px) {
    .btn-bus-wrap {
        margin: 30px auto 0;
        padding: 0;
    }

    .btn-bus {
        font-size: 18px;
        padding: 24px 30px;
    }
}


/* 20250128 newsarea追加
-----------------------------*/
.news-area {
    padding: 80px 0 80px;
    position: relative;
}

.news-area .booking-heading {
    margin-bottom: 30px
}

.news-area .plan-category-item {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--black);
    border-radius: 30px;
    color: var(--black);
}

.news-area .plan-name {
    font-size: 24px;
    line-height: 1.4;
    /*    color: var(--gold);*/
}


.news-area .two-btn {
    justify-content: space-between;
}

.news-area .two-btn .button-wrap {
    width: 49%;
}

.news-area .button-black {
    padding: 16px 24px;
    font-size: 15px;
    background: var(--gold);
}

.news-area .ico-instagram::before {
    left: 40px;
    width: 24px;
    height: 24px;
}

.news-all-wrap {
    align-items: stretch;
}

.news-box {
    padding: 30px 24px;
    width: 80%;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--white);
}

.news-box .button-black {
    background: var(--gold);
}

.news-copy p {
    font-size: 16px;
    line-height: 1.6;
}

.news-box.two-box {
    padding: 34px 20px;
    width: 48%;
}

.news-area .booking-heading img {
    height: 60px;
}


@media (max-width: 1024px) {
    .news-area {
        padding: 50px 0 30px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .news-area .booking-heading img {
        height: 45px;
    }
}

@media (max-width: 767px) {
    .news-area {
        padding: 30px 0 40px;
    }

    .news-area .booking-heading {
        margin-bottom: 20px;
    }

    .news-area .booking-heading img {
        height: auto;
        max-width: 65%;
    }

    .news-area .plan-name {
        font-size: 18px;
        line-height: 1.4;
    }

    .news-area .button-wrap {
        max-width: 100%;
        margin: 0;
    }

    .news-area .button-black {
        padding: 16px 12px;
        font-size: 13px;
    }

    .news-area .ico-instagram::before {
        left: 26px;
        width: 20px;
        height: 20px;
    }

    .news-box {
        padding: 34px 20px;
        width: 100%;
    }

    .news-box {
        padding: 16px 16px 5px;
    }

    .news-copy p {
        font-size: 13px;
        line-height: 1.6;
    }

    .news-box.two-box {
        padding: 16px;
        width: 100%;
        margin-bottom: 20px;
    }


}

@media (max-width: 340px) {
    .news-box {
        padding: 20px 20px;
        max-width: 96%;
    }

    .news-area .ico-instagram::before {
        left: 18px;
        width: 16px;
        height: 16px;
    }
}

/* 20250303 桜追加
-----------------------------*/

@keyframes fall {
    to {
        top: 120%;
    }
}

@keyframes rotate1 {
    from {
        transform: translateX(0px) rotate(0deg);
    }

    to {
        transform: translateX(200px) rotate(-80deg) rotateX(180deg);
    }
}

@keyframes rotate2 {
    from {
        transform: translateX(200px) rotate(-45deg);
    }

    to {
        transform: translateX(0px) rotate(0deg);
    }
}


ul.breadcrumbs {
    width: 1140px;
    max-width: 100%;
    font-size: 12px;
    padding: 10px 15px;
    margin: 0 auto !important;
}

ul.breadcrumbs::after {
    content: "";
    display: block;
    clear: both;
}

@media screen and (max-width:991px) {
    ul.breadcrumbs {
        line-height: 1.6;
    }
}

ul.breadcrumbs li {
    margin: 0 5px 0 0;
    float: left;
    position: relative;
    padding-left: 10px;
}

ul.breadcrumbs li a {
    color: #333399;
}

ul.breadcrumbs li::after {
    content: '';
    width: 4px;
    height: 4px;
    border: 0px;
    border-top: solid 1px #333399;
    border-right: solid 1px #333399;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

ul.breadcrumbs li:first-child {
    padding-left: 0;
}

ul.breadcrumbs li:first-child::after {
    content: none;
}

@media screen and (max-width: 425px) {
    .routetabs-buttonlist.nav-tabs li {
        width: 100%;
    }
}

.card-item a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 575px) {

    .news-area .booking-heading img {
        height: auto;
        max-width: 85%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .news-area .plan-name {
        font-size: 22px;
    }
}


/*---- Instagram  ----*/
.instagram-media {
    background: white;
    max-width: 540px;
    width: calc(100% - 2px);
    border-radius: 3px;
    border: 1px solid rgb(219, 219, 219);
    box-shadow: none;
    display: block;
    margin: 0px 0px 12px;
    min-width: 326px;
    padding: 0px;
    height: 693px;
}

.instagram-media-inner {
    padding: 16px;
}

.instagram-media-link {
    background: #ffffff;
    line-height: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.instagram-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.instagram-avatar {
    background-color: #f4f4f4;
    border-radius: 50%;
    flex-grow: 0;
    height: 40px;
    margin-right: 14px;
    width: 40px;
}

.instagram-header-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.instagram-skeleton-bar {
    background-color: #f4f4f4;
    border-radius: 4px;
    flex-grow: 0;
    height: 14px;
    margin-bottom: 6px;
}

.instagram-skeleton-bar-100 {
    width: 100px;
}

.instagram-skeleton-bar-60 {
    width: 60px;
}

.instagram-skeleton-bar-224 {
    width: 224px;
}

.instagram-skeleton-bar-144 {
    width: 144px;
}

.instagram-spacer-19 {
    padding: 19% 0;
}

.instagram-spacer-12-5 {
    padding: 12.5% 0;
}

.instagram-logo-wrapper {
    display: block;
    height: 50px;
    margin: 0 auto 12px;
    width: 50px;
}

.instagram-view-text {
    padding-top: 8px;
}

.instagram-view-link {
    color: #3897f0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 550;
    line-height: 18px;
}

.instagram-actions {
    display: flex;
    flex-direction: row;
    margin-bottom: 14px;
    align-items: center;
}

.instagram-action-left {
    display: flex;
}

.instagram-action-center {
    margin-left: 8px;
}

.instagram-action-right {
    margin-left: auto;
}

.instagram-skeleton-circle {
    background-color: #f4f4f4;
    border-radius: 50%;
    height: 12.5px;
    width: 12.5px;
}

.instagram-skeleton-circle-20 {
    background-color: #f4f4f4;
    border-radius: 50%;
    flex-grow: 0;
    height: 20px;
    width: 20px;
}

.instagram-skeleton-square {
    background-color: #f4f4f4;
    height: 12.5px;
    width: 12.5px;
}

.instagram-skeleton-square-16 {
    background-color: #f4f4f4;
    flex-grow: 0;
    height: 12px;
    width: 16px;
}

.instagram-skeleton-transform-1 {
    transform: translateX(0px) translateY(7px);
}

.instagram-skeleton-transform-2 {
    transform: rotate(-45deg) translateX(3px) translateY(1px);
    flex-grow: 0;
    margin-right: 14px;
    margin-left: 2px;
}

.instagram-skeleton-transform-3 {
    transform: translateX(9px) translateY(-18px);
}

.instagram-skeleton-triangle-1 {
    width: 0;
    height: 0;
    border-top: 2px solid transparent;
    border-left: 6px solid #f4f4f4;
    border-bottom: 2px solid transparent;
    transform: translateX(16px) translateY(-4px) rotate(30deg);
}

.instagram-skeleton-triangle-2 {
    width: 0px;
    border-top: 8px solid #f4f4f4;
    border-right: 8px solid transparent;
    transform: translateY(16px);
}

.instagram-skeleton-triangle-3 {
    width: 0;
    height: 0;
    border-top: 8px solid #f4f4f4;
    border-left: 8px solid transparent;
    transform: translateY(-4px) translateX(8px);
}

.instagram-content-skeleton {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    margin-bottom: 24px;
}

.instagram-footer {
    color: #c9c8cd;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 0;
    margin-top: 8px;
    overflow: hidden;
    padding: 8px 0 7px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-footer-link {
    color: #c9c8cd;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 17px;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .instagram-media {
        height: 613px;
    }
}

/*----/ End Instagram  ----*/