@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Noto+Serif+JP:wght@200..900&display=swap');
:root {
    --default-font: "BIZ UDPGothic", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "BIZ UDPGothic", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --nav-font: "BIZ UDPGothic", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
:root {
    --background-color: #fff;
    --default-color: #333;
    --heading-color: #3e5055;
    --accent-color: #ff0002;
    --surface-color: #fff;
    --contrast-color: #fff;
}
:root {
    --nav-color: #333;
    --nav-hover-color: #ff0002;
    --nav-mobile-background-color: #fff;
    --nav-dropdown-background-color: #fff;
    --nav-dropdown-color: #313336;
    --nav-dropdown-hover-color: #ff0002;
}
.light-background {
    --background-color: #fafafa;
    --surface-color: #fff;
}
.dark-background {
    --background-color: #000;
    --default-color: #fff;
    --heading-color: #fff;
    --surface-color: #333;
    --contrast-color: #fff;
}
:root {
    scroll-behavior: smooth;
}
/*--------------------------------------------------------------

# サイト全体設定

--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}
a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #666;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}
p {
    line-height: 1.8;
}
/*--------------------------------------------------------------

# 背景設定

--------------------------------------------------------------*/
.bg_utage {
    background-image: url("../img/pavi01.png");
    /*background-attachment: fixed;*/
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg_utage01 {
    background-image: url("../img/para01.jpg");
    min-height: 25vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg_utage02 {
    background-image: url("../img/para02.jpg");
    min-height: 25vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg_utage03 {
    background-image: url("../img/para03.jpg");
    min-height: 25vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg_paturn {
    background-image: url("../img/bg.jpg");
    background-repeat: repeat;
}
/* ストライプ */
.bg_stripe {
    background: repeating-linear-gradient(-45deg, #f2f3f4 0 6px, #fff 6px 12px);
}
/* ドット斜め */
.bg_skew_dot {
  background-color: #fff;
  background-image:
    radial-gradient(#b4f3ea 20%, transparent 20%),
    radial-gradient(#b4f3ea 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* ドット色違い */
.is-mix {
  background-image:
    radial-gradient(#b4f3ea 20%, transparent 20%),
    radial-gradient(#ffbcbc 20%, transparent 20%);
}

/* ドットサイズ違い */
.is-size {
  background-image:
    radial-gradient(#ffbcbc 20%, transparent 20%),
    radial-gradient(#ffbcbc 35%, transparent 35%);
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@media (max-width: 768px) {
    .bg_utage {
        background-image: url("../img/pavi01.png");
        min-height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

/*--------------------------------------------------------------

# 文字装飾設定

--------------------------------------------------------------*/
.text_shadow {
    text-shadow: 2px 2px 2px #666;
}
.text_small {
    font-size: 75%;
}
/*--------------------------------------------------------------

# 見出し設定

--------------------------------------------------------------*/
.midashi_design01 {
    position: relative;
    border-bottom: 3px solid #fff;
    margin: 2rem 0 1.5rem;
}
.midashi_design01 h3 {
    padding: 1.5rem 2rem 1.5rem 10rem;
    color: #fff;
    font-size: 2.5rem;
    line-height: .75;
    border-bottom: none;
}

.midashi_design01 h3 small {
    font-size: 50%;
    line-height: 1;
}

.midashi_design01 span {
    font-size: 100px;
    font-size: 10rem;
    line-height: 1;
    position: absolute;
    bottom: -1.6rem;
    left: 0;
}
.midashi_design02 {
  font-weight: bold;
  padding-bottom: 0.7em;
  text-align: center;
  position: relative;
}
.midashi_design02::after {
  content: '';
  position: absolute;
  border-bottom: 10px dotted var(--accent-color);
  width: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 768px) {
    .midashi_design01 h3 {
        padding: 1.5rem 0 1.5rem 2.8rem;
        text-align: left;
        line-height: 1.1;
        font-size: 2rem;
    }
    .midashi_design01 span {
        font-size: 2rem;
        top: 1.7rem;
    }

    .midashi_design01 h3 small {
        font-size: 50%;
        display:block;
        line-height: 1.3;
    }
}
/*--------------------------------------------------------------

# 画像装飾設定

--------------------------------------------------------------*/
.shadow_img {
    filter: drop-shadow(3px 3px 3px #333);
}

/* -- 傾き -- */
.frame_img {
    display: inline-block;
    transform: rotate(5deg);
}
/* -- 円形 -- */
.circle_img {
    border-radius: 50%;
}

/*--------------------------------------------------------------

# 囲み罫線

--------------------------------------------------------------*/
.box_design01 {
    position: relative;
    background: #fff; /*背景色*/
    padding: 3em 1em 2em; /*内側余白（上・左右・下）*/
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
}
.box_design01:after{
    position: absolute;
    content: "";
    width: 95%;
    height: 10px;
    top: 0.5em;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    border-top: dotted 10px #eee;
}

/* -----------------------------------------------------------

ローディング設定

----------------------------------------------------------- */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: calc(infinity);
    background: url("data:image/svg+xml;charset=utf-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='70' height='40' viewBox='0 0 140 80' preserveAspectRatio='none'%3e%3cpath fill='%23ad061b' d='M-70-40v160h280v-160z'/%3e%3cpath fill='none' stroke='%23F15A22' stroke-width='1.8' d='M47 0h-47v80h47l46-80h47v80h-47zM117 40h-94l-23 40l140-80-23 40 23 40-140-80 23 40M70-5v90'/%3e%3c/svg%3e");
    border: 12px solid #ad061b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: slide-out-top 0.5s 1.7s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@keyframes slide-out-top {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-2000px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
}
.loading::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100vh - 24px);
    border: 1px solid #fff;
    position: absolute;
    z-index: calc(infinity);
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');
.loading__text {
    color: var(--bs-white);
    font-size: 1.5rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: .5rem;
    animation: tracking-in-contract-bck-top 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@keyframes tracking-in-contract-bck-top {
    0% {
        letter-spacing: 1em;
        transform: translateZ(400px) translateY(-600px);
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}
.loading__logo {
    animation: bounce-in-bottom 1.1s both;
}
.loading__logo img {
    width: 280px;
}
@keyframes bounce-in-bottom {
    0% {
        transform: translateY(500px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    55% {
        transform: translateY(65px);
        animation-timing-function: ease-in;
        opacity: 1;
    }
    72% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateY(28px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateY(8px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}
.jello-vertical {
    animation: jello-vertical .9s linear both
}
@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1)
    }
    30% {
        transform: scale3d(.75, 1.25, .75)
    }
    40% {
        transform: scale3d(1.25, .75, 1)
    }
    50% {
        transform: scale3d(.85, 1.55, .5)
    }
    65% {
        transform: scale3d(1.05, .95, 1)
    }
    75% {
        transform: scale3d(.95, 1.05, .75)
    }
    100% {
        transform: scale3d(1, 1, 1)
    }
}
/* -----------------------------------------------------------

ボタン設定

----------------------------------------------------------- */
/* -- 基本ボタン -- */
.btn01 {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn01 i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.btn01:hover {
    opacity: 0.8;
    padding-right: 19px;
    color: #fff;
}
.btn01:hover i {
    margin-left: 10px;
}
/* -- 予約ボタン -- */
.yoyaku_btn {
    min-width: 300px;
    min-height: 60px;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3em;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: #ff0022;
    background: linear-gradient(90deg, rgba(225, 0, 34, 1) 0%, rgba(225, 0, 34, 1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(225, 0, 34, .64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
}
.yoyaku_btn::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #ff0022;
    box-shadow: 0 0 60px rgba(225, 0, 34, .64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}
.yoyaku_btn:hover, .yoyaku_btn:focus {
    color: #fff;
    transform: translateY(-6px);
}
.yoyaku_btn:hover::before, .yoyaku_btn:focus::before {
    opacity: 1;
}
.yoyaku_btn::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #ff0022;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}
.yoyaku_btn:hover::after, .yoyaku_btn:focus::after {
    animation: none;
    display: none;
}
@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}
/* -- フッピーのボタン -- */
a.foopy_btn {
    padding: .25em 1.2em;
    margin: 0;
    display: block;
    color: #fff;
    background: var(--accent-color);
    border: 8px double #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3em;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    transition: .3s;
}
a.foopy_btn:before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: -3px 5px 0 0;
    background: url("../img/foopy00.png") no-repeat;
    background-size: contain;
    background-position: left;
    vertical-align: middle;
}
a.foopy_btn:hover {
    background-color: #ff5c4b;
}
a.foopy_btn img {
    margin-top: -200px;
}
@media screen and (max-width: 768px) {
    a.foopy_btn {
        padding: 0.5em 1em;
        margin: 10px auto;
        font-size: 1.2em;
        display: inline-block;
        white-space: nowrap;
    }
    a.foopy_btn:before {
        width: 80px;
        height: 80px;
        margin: -3px 10px 0 0;
    }
}
@media screen and (max-width: 400px) {
    a.foopy_btn {
        padding: 0.5em .5em;
        margin: 10px auto;
        font-size: 1em;
        display: inline-block;
        white-space: nowrap;
    }
    a.foopy_btn:before {
        width: 60px;
        height: 60px;
        margin: -3px 10px 0 0;
    }
}
/*--------------------------------------------------------------

# ヘッダー設定

--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 80px;
    margin-right: 8px;
}
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}
@media (max-width: 480px) {
    .header .logo img {
        max-height: 54px;
    }
    .header .logo h1 {
        font-size: 24px;
    }
}
.header .btn-getstarted, .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
/* --
@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 10px;
    }
    .header .navmenu {
        order: 3;
    }
}
-- */
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* トップページ
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, .9);
}
/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #fff;
    --color: #333;
}
.index-page.scrolled .header .navmenu li a {
    --color: #333;
}
/*--------------------------------------------------------------

# ナビ

--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu a, .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i, .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }
    .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
    .navmenu .megamenu {
        position: static;
    }
    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }
    .navmenu .megamenu ul li {
        flex: 1;
    }
    .navmenu .megamenu ul li a, .navmenu .megamenu ul li:hover > a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }
    .navmenu .megamenu ul li a:hover, .navmenu .megamenu ul li .active, .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .megamenu:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}
/* スマホ用 */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu a, .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i, .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover, .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i, .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.5s ease-in-out;
        box-shadow: none;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}
/*--------------------------------------------------------------

# フッター

--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}
.footer .footer-top {
    padding-top: 50px;
}
.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}
.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}
.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}
.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}
.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}
.footer .footer-links {
    margin-bottom: 30px;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}
.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul a {
    color: #666;/*color-mix(in srgb, var(--default-color), transparent 30%);*/
    display: inline-block;
    line-height: 1;
}
.footer .footer-links ul a:hover {
    color: var(--accent-color);
}
.footer .footer-text p {
    margin-bottom: 5px;
}
.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}
.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px 10px;
    width: 100%;
    background-color: var(--contrsast-color);
    color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -9px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
    margin-bottom: 0;
}
.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}
/*--------------------------------------------------------------

# トップに戻るボタン

--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
/*-- モバイル設定 --*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------

# トップページ 扉絵セクション設定

--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 180px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero h1 {
    margin-top: 50px;
    font-size: 68px;
    font-weight: 700;
    line-height: 72px;
    color: var(--background-color);
}
.hero h1 span {
    color: var(--background-color);
    font-size: 60%;
}
.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}
.hero .hero-img {
    max-width: 300px;
}
.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--default-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.hero .btn-watch-video {
    font-size: 1em;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}
.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 2em;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.hero .btn-watch-video:hover {
    color: var(--accent-color);
}
.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 240px 0 40px 0;
    }
    .hero .hero-img {
        max-width: 180px;
    }
    .hero h1 {
        margin-top: 2em;
        font-size: 2em;
        line-height: 36px;
    }
    .hero p {
        font-size: 1em;
        line-height: 24px;
        margin-bottom: 30px;
        font-weight: 700;
    }
    .hero .btn-get-started, .hero .btn-watch-video {
        font-size: .8em;
    }
}
/*--------------------------------------------------------------

# 私たちの思いセクション設定

--------------------------------------------------------------*/
.about {
    padding-bottom: 20px;
}
.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about .content ul li {
    padding-bottom: 10px;
}
.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}
.about .content p:last-child {
    margin-bottom: 0;
}
/*--------------------------------------------------------------

# ５つのチャレンジ設定

--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}
.features .nav-item {
    width: 100%;
    margin-bottom: 15px;
}
.features .nav-item:last-child {
    margin-bottom: 0;
}
.features .nav-link {
    color: var(--heading-color);
    border: 0;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
}
.features .nav-link i {
    background-color: var(--surface-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    font-size: 22px;
    flex-shrink: 0;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    transition: 0.3s;
}
.features .nav-link p {
    font-size: 15px;
    margin: 0;
}
.features .nav-link:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
}
.features .nav-link.active {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    color: var(--default-color);
}
.features .tab-pane img {
    border-radius: 15px;
}

.features .five_title {
  position: relative;
  overflow: hidden;
  padding:  1.5rem 1rem 0rem 55px;
  border-radius: 100vh;
  background-color: #fff;
}

.features .five_title h4 {
    line-height: .75;
    font-size: 1.25em;
    font-weight: 700;
}

.features .five_title p {
    color: #333;
    font-size: .8em;
    line-height: 1.3;
}

.features .five_title h4 span {
  line-height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  left: 10px;
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: var(--accent-color);
  text-align: center;
}

.features .five_title i {
    font-size: 1em;
}


/*--------------------------------------------------------------

5つのチャレンジ設定

--------------------------------------------------------------*/
.features-details .features-item + .features-item {
    margin-top: 60px;
}
.features-details .features-item .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 30px;
    border-radius: 10px;
}
.features-details .features-item h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}
.features-details .features-item .more-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 30px;
    border-radius: 6px;
}
.features-details .features-item .more-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.features-details .features-item ul {
    list-style: none;
    padding: 0;
}
.features-details .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.features-details .features-item ul li:last-child {
    padding-bottom: 0;
}
.features-details .features-item ul i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--accent-color);
}
.features-details .features-item img {
    border-radius: 15px;
}
/*--------------------------------------------------------------

# 万博情報セクション設定

--------------------------------------------------------------*/
.expo-info .info-item {
    background-color: var(--surface-color);
    padding: 20px 0 30px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    min-height: 320px;
}
.expo-info .info-item svg {
    color: var(--accent-color);
    width: 70px;
    height: 70px;
    font-size: 1.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    /*
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
    */
    margin-bottom: 1.5em;
}
.expo-info .info-item h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px 0;
}
.expo-info .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 1em;
}
/*--------------------------------------------------------------

# 下層ページ タイトル＆パンくず

--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0;
    position: relative;
}
.page-title h1 {
    font-size: 1.5em;
    font-weight: 700;
}
.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .8em;
}
.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------

# 下層ページ セクション設定

--------------------------------------------------------------*/
section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}
@media (max-width: 1199px) {
    section, .section {
        scroll-margin-top: 66px;
    }
}
/*--------------------------------------------------------------

# 下層ページ ページタイトル（サブタイトル付き）

--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}
.section-title h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-title p {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
	.section-title h2 {
		font-size: 1.5em;
	}
}

/*--------------------------------------------------------------

# ブース詳細ページ設定

--------------------------------------------------------------*/
.booth-section a{
  color: #3581b9;
}

/*--------------------------------------------------------------

# 投稿設定

--------------------------------------------------------------*/
.news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
}
.news-list .item a {
    display: flex;
    flex-wrap: wrap;
    /*flex-wrap: nowrap;*/
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 20px 20px;
}
.news-list .item:first-child a {
    border-top: 1px solid #CCC;
}
.news-list .item a:hover {
    opacity: .7;
    color: #666;
}
.news-list .item .date {
    margin: 0;
    min-width: 140px;
    font-size: 16px;
    color: #999;
    padding: 0 10px 10px 0;
}
.category {
    margin: 0;
    min-width: 140px;
    padding: 0 0px 0 0;
}
.category span {
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1;
    margin: 0 5px;
    width: 8em;
}
/* -- カテゴリ種別色分け -- */
.category span.interior {
    background-color: #A8007A;/* -- 建築内装 -- */
}
.category span.news {
    background-color: #0068FA;/* -- お知らせ -- */
}
.category span.exhibitor {
    background-color: #01A833;/* -- 出展社 -- */
}
.category span.pavilion {
    background-color: #8FDD00;/* -- パビリオン -- */
}
.category span.children_future {
    background-color: #FA8E00;/* -- 子どもの未来 -- */
}
.category span.future_food {
    background-color: #F4BC00;/* -- 未来の食 -- */
}
.category span.event {
    background-color: #FA3600;/* -- イベント -- */
}
.category span.campaign {
    background-color: #FD5C9D;/* -- キャンペーン -- */
}
.category span.etc {
    background-color: #999;/* -- その他 -- */
}
.news-list .item .title {
    margin: 0;
    width: 100%;
}
.news-list .item a:hover .title {
    color: #666;
}
@media screen and (max-width: 767px) {
    .news-list .item a {
        flex-wrap: wrap;
    }
    .news-list .item .date {
        min-width: 100px;
    }
    .news-list .item .title {
        margin-top: 10px;
    }
    #post-section img {
        width: 100%;
        height: auto;
    }
}

/*--------------------------------------------------------------

# リスト

--------------------------------------------------------------*/
/* -- 注釈リスト -- */
    ul.caution {
        list-style: none;
        padding-left: 0;
    }
    ul.caution li {
        text-indent: -1em;
        padding-left: 1em;
    }
    ul.caution > li::before {
        counter-increment: caution;
        content: "※";
/*        font-family: "メイリオ";*/
    }
