@charset "UTF-8";
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom
}

figure {
    margin: 0
}

picture img {
    width: 100%;
    height: auto;
    vertical-align: top
}

#header {
    position: fixed;
    top: -100px;
    /* 初期状態で非表示 */
    left: 0;
    width: 100%;
    background-color: #FFF;
    z-index: 1000;
    transition: top 0.5s ease-in-out;
}

#header.show {
    top: 0;
    /* 表示状態 */
}

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #464646;
    z-index: 9999999;
    text-align: center;
    color: #464646;
    display: flex;
    justify-content: center;
    align-items: center
}

#splash-logo {
    width: 100px;
    height: 100px;
    text-align: center
}

#splash-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto
}

.splashbg {
    display: none
}

body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleY(0);
    background-color: #464646;
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards
}

@keyframes PageAnime {
    0% {
        transform-origin: bottom;
        transform: scaleY(0)
    }
    50% {
        transform-origin: bottom;
        transform: scaleY(1)
    }
    50.001% {
        transform-origin: top
    }
    100% {
        transform-origin: top;
        transform: scaleY(0)
    }
}

#wrap-container {
    opacity: 0
}

body.appear #wrap-container {
    animation-name: PageAnimeAppear;
    animation-duration: 1.5s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
    opacity: 0
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.header-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%
}

.header-logo img {
    max-width: 300px;
    height: auto
}

.header-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2em
}

.header-li a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    color: #4D4D4D;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: .1em
}

#hamburger {
    display: none
}

.first-view {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.first-view video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.first-view::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* 動画の操作を邪魔しない */
    background-image: radial-gradient(rgba(0, 0, 0, 0.3) 10%, transparent 10%);
    background-size: 5px 5px;
    /* ドットの大きさ */
}

.video-pc {
    display: block
}

.video-mobile {
    display: none
}

.svg-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-width: 350px;
    padding-left: 1em;
    padding-right: 1em;
    z-index: 1
}

.svg-title-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-width: 350px;
    padding-left: 1em;
    padding-right: 1em
}

.svg-center {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-width: 500px;
    padding-left: 1em;
    padding-right: 1em
}

p {
    margin: 0
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #4D4D4D
}

nav {
    margin: 0 0 0 auto
}

ul {
    list-style: none;
    margin: 0 auto;
    padding: 0
}

.pc-nav {
    color: #E6e6e6
}

.sp-nav {
    display: none
}

h1 {
    display: none
}

.heading {
    font-size: 1.6em;
    font-weight: 350;
    text-align: center;
    line-height: 2.5em;
    letter-spacing: .4em;
    color: #ECECEC;
    margin: 0;
    flex: 2;
    width: 100%;
    padding-left: 0
}

.date {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 2.7em;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1em;
    color: #ECECEC;
}

.date span {
    font-size: 0.5em
}

.lead {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 auto;
    font-size: 1.3em;
    font-weight: 300;
    text-align: center;
    line-height: 3em;
    letter-spacing: .15em;
    color: #ECECEC;
    display: block
}

.heading-3 {
    font-size: 1.6em;
    font-weight: 350;
    text-align: center;
    line-height: 2em;
    letter-spacing: .2em;
    color: #464646;
    margin: 0;
    width: 100%
}

.heading-3::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #C3BDBB;
    margin: 8px auto 0
}

.headline {
    font-size: clamp(1.25rem, 1.136rem + 0.57vw, 1.563rem);
    font-weight: 500;
    text-align: left;
    line-height: 1.5em;
    letter-spacing: .1em;
    color: #4d4d4d;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #4d4d4d
}

.headline-2 {
    font-size: clamp(1.125rem, 1.011rem + 0.57vw, 1.438rem);
    font-weight: 400;
    text-align: left;
    line-height: 2em;
    letter-spacing: .1em;
    color: #4d4d4d;
    margin: 0;
    padding: 0
}

.copy {
    font-size: clamp(1.25rem, 1.136rem + 0.57vw, 1.563rem);
    font-weight: 500;
    text-align: center;
    line-height: 2em;
    letter-spacing: .1em;
    color: #464646;
    margin: 0 auto
}

.copy::after {
    content: "";
    display: block;
    width: 10%;
    height: 1px;
    background-color: #4D4D4D;
    margin: 8px auto 0
}

.copy-2 {
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    font-weight: 400;
    text-align: center;
    line-height: 2em;
    letter-spacing: .1em;
    color: #464646;
    margin: 0 auto
}

.heading-4 {
    font-size: 1.6em;
    font-weight: 400;
    text-align: center;
    line-height: 2em;
    letter-spacing: .15em;
    color: #464646;
    margin: 0;
    width: 100%
}

.slide-in {
    overflow: hidden;
    display: inline-block
}

.slide-in_inner {
    display: inline-block
}

.downAnime {
    opacity: 0
}

.slideAnimeDownUp {
    animation-name: slideTextY100;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    opacity: 0
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.slideAnimeUpDown {
    animation-name: slideTextY-100;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    opacity: 0
}

@keyframes slideTextY-100 {
    from {
        transform: translateY(-100%);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 2s;
    animation-delay: .8s;
    animation-fill-mode: forwards;
    opacity: 0
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFA33F
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0)
    }
    50% {
        transform-origin: left;
        transform: scaleX(1)
    }
    50.001% {
        transform-origin: right
    }
    100% {
        transform-origin: right;
        transform: scaleX(0)
    }
}

.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    border: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300
}

th,
td {
    display: block;
    text-align: left;
    letter-spacing: .2em;
    color: #4D4D4D;
    font-family: "Zen Kaku Gothic New", sans-serif
}

th {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .3em;
    border-bottom: 1px solid #4D4D4D;
    padding: 20px 0;
}

td {
    vertical-align: top;
    font-size: 18px;
    font-weight: 300;
    line-height: 2em;
    letter-spacing: .3em;
    margin-bottom: 10px;
    padding: 1em 0;
}

.note {
    font-size: 17px;
    letter-spacing: .2em;
    line-height: 2em
}

@media (min-width: 769px) {
    th,
    td {
        padding: 1em 0
    }
}

@media screen and (max-width: 767px) {
    td {
        font-size: 15px
    }
}

.icon {
    margin: 0 auto;
    width: 17%;
    display: block;
    text-align: center
}

.date-2 {
    margin: 0 auto;
    font-family: "Jost", "sans-serif";
    font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
    font-weight: 400;
    text-align: center;
    line-height: 1.5em;
    color: #E6e6e6;
    display: block
}

span.marker {
    color: #F09D0F
}

.section {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    max-width: 300px;
    height: auto;
    z-index: 3
}

.image-container img {
    width: 100%;
    height: auto;
    display: block
}

.container {
    position: relative;
    margin: 0 auto;
    max-width: 1080px;
    z-index: 2
}

.container-2 {
    position: relative;
    margin: 0 auto;
    background: #FFF6F7
}

.container-3 {
    position: relative;
    margin: 0 auto;
    max-width: 750px;
    z-index: 2
}

.background {
    background-color: #464646;
    background-size: cover
}

.background-2 {
    background-color: #DDDDDD;
    background-size: cover;
}

.banner img {
    border-radius: 15px 0 15px 0;
}

.svg-container {
    position: absolute;
    top: 0;
    left: 7%;
    width: 25%;
    max-width: 400px;
    height: auto;
    z-index: 1
}

.image-container img {
    width: 100%;
    margin-top: 1em;
    height: auto;
    display: block
}

.flex {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.flex-col2 {
    width: calc((100% - 25px) / 2);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column
}

.flex-left {
    width: 28.75%
}

.flex-right {
    width: 68.75%
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.link-caption {
    font-size: 1em;
    line-height: 2em;
    letter-spacing: .2em;
    font-weight: 350;
    color: #464646;
    text-align: center;
}

.btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 400px;
    margin: auto;
    padding: 1.3rem 2.8rem;
    font-weight: 400;
    border: 4px solid #FFA33F;
    color: #FFF;
    background: #FFA33F;
    /* 初期状態で赤の塗りつぶし */
    border-radius: 1vh;
    transition: .5s;
    font-size: 1.2em;
    letter-spacing: 0.1em;
}

.btn:hover {
    color: #FFA33F;
    /* テキスト色を赤に反転 */
    border: 2px solid #FFA33F;
    background: #FFF;
    /* 背景色を白に反転 */
    box-shadow: none;
    /* ホバー時にシャドウを消す */
}

.text {
    font-size: 16px;
    line-height: 1.6em;
    letter-spacing: .1em;
    font-weight: 350;
    text-align: left;
    color: #4D4D4D;
    text-align: justify
}

.link-text {
    font-size: 1.15em;
    letter-spacing: .1em;
    font-weight: 400;
    text-align: center;
    color: #464646;
    align-items: center
}

.shine span.mask {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden
}

.shine span.mask::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    left: -75%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg)
}

.shine span.mask:hover::before {
    animation: shine .7s
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.floating-banner {
    position: fixed;
    z-index: 10;
    bottom: 0em;
    right: 0em;
    width: 250px;
    display: none
}

.floating-banner a {
    display: block
}

.floating-banner__image {
    max-width: 100%
}

.gallery {
    margin: 0 0 5px
}

.slick-prev,
.slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    height: 20px;
    width: 20px
}

.slick-prev {
    left: 2.5%;
    transform: rotate(-135deg)
}

.slick-next {
    right: 2.5%;
    transform: rotate(45deg)
}

.choice-btn li {
    cursor: pointer;
    outline: none;
    background: #333;
    width: 25%!important
}

.choice-btn li img {
    opacity: .4
}

.choice-btn li.slick-current img {
    opacity: 1
}

.choice-btn .slick-track {
    transform: unset!important
}

#footer {
    background-color: #464646;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e7e7e7;
    color: #ECECEC;
    font-family: "Zen Kaku Gothic New", sans-serif
}

#footer .logo a {
    font-size: 1.8em;
    text-decoration: none;
    font-weight: 700
}

#footer .address {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.6;
    color: #ECECEC
}

.address a {
    color: #ECECEC;
    text-decoration: none
}

.navi-row {
    display: flex;
    flex-direction: column;
    align-items: center
}

.navi,
.sns-navi {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Zen Kaku Gothic New", sans-serif
}

.navi li,
.sns-navi li {
    margin: 15px
}

.navi li a {
    color: #ECECEC;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1em;
    text-decoration: none;
    transition: color .3s ease
}

.navi li a:hover {
    opacity: .7
}

.sns-navi li a {
    font-size: 3em;
    color: #ECECEC;
    transition: color .3s ease
}

.sns-navi li a:hover {
    opacity: .7
}

.copyright {
    font-size: .9em;
    color: #ECECEC;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 30px
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9
}

.youtube iframe {
    width: 100%;
    height: 100%
}
    .youtube-wrapper {
      position: relative;
      width: 100%;
      max-width: 1080px; /* 最大幅を1080pxに制限 */
      aspect-ratio: 16 / 9; /* 16:9のアスペクト比を維持 */
      overflow: hidden;
    }

    /* 埋め込みiframeのスタイル */
    .youtube-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
.wrapper {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto
}

.footer-logo img {
    width: auto;
    height: 70px
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
    margin: 0 auto
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.heading-banner {
    font-size: 1.4em;
    font-weight: 400;
    text-align: center;
    line-height: 2.5em;
    letter-spacing: .2em;
    color: #464646;
    margin: 0 auto
}

.heading-banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #4D4D4D;
    margin: .1em auto 0
}

.text-banner {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: clamp(1rem, 0.841rem + 0.8vw, 1.438rem);
    font-weight: 300;
    text-align: center;
    line-height: 2em;
    letter-spacing: .1em;
    color: #4D4D4D;
    margin: 0 auto
}

.phone-banner {
    font-family: "Jost", sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    text-align: center;
    line-height: 2em;
    letter-spacing: .1em;
    color: #0063B2;
    margin: 0 auto
}

.phone-banner a {
    color: #0063B2;
    text-decoration: none
}

.mbottom-5 {
    margin-bottom: 5px
}

.mbottom-10 {
    margin-bottom: 10px
}

.mbottom-15 {
    margin-bottom: 15px
}

.mbottom-30 {
    margin-bottom: 30px
}

.mbottom-50 {
    margin-bottom: 50px
}

.mbottom-70 {
    margin-bottom: 70px
}

.mbottom-100 {
    margin-bottom: 100px
}

.mbottom-200 {
    margin-bottom: 200px
}

.mtop-200 {
    margin-top: 200px
}

.mtop-100 {
    margin-top: 100px
}

.mtop-50 {
    margin-top: 50px
}

.mtop-70 {
    margin-top: 70px
}

.mtop-30 {
    margin-top: 30px
}

.mtop-15 {
    margin-top: 15px
}

.mtop-10 {
    margin-top: 10px
}

.mtop-5 {
    margin-top: 5px
}

.pbottom-200 {
    padding-bottom: 200px
}

.pbottom-100 {
    padding-bottom: 100px
}

.pbottom-70 {
    padding-bottom: 70px
}

.pbottom-50 {
    padding-bottom: 50px
}

.pbottom-30 {
    padding-bottom: 30px
}

.pbottom-15 {
    padding-bottom: 15px
}

.pbottom-10 {
    padding-bottom: 10px
}

.pbottom-5 {
    padding-bottom: 5px
}

.ptop-200 {
    padding-top: 200px
}

.ptop-150 {
    padding-top: 150px
}

.ptop-100 {
    padding-top: 100px
}

.ptop-70 {
    padding-top: 70px
}

.ptop-50 {
    padding-top: 50px
}

.ptop-30 {
    padding-top: 30px
}

.ptop-15 {
    padding-top: 15px
}

.ptop-10 {
    padding-top: 10px
}

.ptop-5 {
    padding-top: 5px
}

.sp-br {
    display: none
}

.br-sp {
    display: block
}

@media screen and (max-width: 1279px) {
    .container {
        padding: 0 25px
    }
    .container-3 {
        padding: 0 25px
    }
    .mbottom-5 {
        margin-bottom: 3px
    }
    .mbottom-10 {
        margin-bottom: 5px
    }
    .mbottom-15 {
        margin-bottom: 7px
    }
    .mbottom-30 {
        margin-bottom: 15px
    }
    .mbottom-50 {
        margin-bottom: 25px
    }
    .mbottom-70 {
        margin-bottom: 35px
    }
    .mbottom-100 {
        margin-bottom: 50px
    }
    .mtop-100 {
        margin-top: 50px
    }
    .mtop-70 {
        margin-top: 35px
    }
    .mtop-50 {
        margin-top: 25px
    }
    .mtop-30 {
        margin-top: 15px
    }
    .mtop-15 {
        margin-top: 7px
    }
    .mtop-10 {
        margin-top: 5px
    }
    .mtop-5 {
        margin-top: 3px
    }
    .pbottom-200 {
        padding-bottom: 100px
    }
    .pbottom-100 {
        padding-bottom: 50px
    }
    .pbottom-70 {
        padding-bottom: 35px
    }
    .pbottom-50 {
        padding-bottom: 25px
    }
    .pbottom-30 {
        padding-bottom: 15px
    }
    .pbottom-15 {
        padding-bottom: 7px
    }
    .pbottom-10 {
        padding-bottom: 5px
    }
    .pbottom-5 {
        padding-bottom: 3px
    }
    .ptop-200 {
        padding-top: 100px
    }
    .ptop-150 {
        padding-top: 75px
    }
    .ptop-100 {
        padding-top: 50px
    }
    .ptop-70 {
        padding-top: 35px
    }
    .ptop-50 {
        padding-top: 25px
    }
    .ptop-30 {
        padding-top: 15px
    }
    .ptop-15 {
        padding-top: 7px
    }
    .ptop-10 {
        padding-top: 5px
    }
    .ptop-5 {
        padding-top: 3px
    }
}

@media screen and (max-width: 990px) {
    li {
        display: inline;
        margin: 0 auto;
        font-size: 15px
    }
    .header-flex-container {
        padding: 2% 3%
    }
    #header {
        position: fixed
    }
    .header-flex-container {
        padding: 2% 3%
    }
    .header-logo img {
        max-width: 250px;
        height: 40px
    }
    .link-text {
        font-size: 1.05em;
    }
    .sp-nav {
        z-index: 30;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #464646;
        transform: translateY(-100%);
        transition: transform .7s ease-in-out, opacity .7s ease-in-out;
        display: block
    }
    .sp-nav.toggle {
        transform: translateY(0)
    }
    #hamburger {
        display: block;
        width: 30px;
        height: 25px;
        margin: 0;
        z-index: 20;
        position: relative
    }
    #hamburger span {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #464646;
        transform: translateY(-50%)
    }
    #hamburger::before,
    #hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #464646
    }
    #hamburger::before {
        top: 0
    }
    #hamburger::after {
        bottom: 0
    }
    .sp-nav ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%
    }
    .sp-nav li {
        margin: 0;
        padding: 0
    }
    .sp-nav li span {
        font-size: 16px;
        color: #ECECEC
    }
    .sp-nav li a,
    .sp-nav li span {
        display: block;
        padding: 16px 0;
        color: #ECECEC
    }
    .sp-nav .close {
        position: relative;
        padding-left: 20px;
        font-family: "Zen Kaku Gothic New", sans-serif
    }
    .sp-nav .close::before,
    .sp-nav .close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #ECECEC
    }
    .sp-nav .close::before {
        transform: rotate(45deg)
    }
    .sp-nav .close::after {
        transform: rotate(-45deg)
    }
    .header-ul {
        display: none
    }
    .header-li {
        margin-bottom: 10px
    }
    .header-li:hover {
        opacity: .7
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px
}

.image-item img {
    width: 100%;
    height: auto;
    display: block
}

@media screen and (max-width: 768px) {
    .youtube {
        margin-bottom: 2vw/* 画像（iframe）とテキストの間にスペースを追加 */
    }
    .link-caption {
        margin-top: 2vw;
        /* テキストの上にスペースを追加 */
        font-size: 0.8em;
    }
    .heading-3 {
        font-size: 1.3em;
    }
    .heading-4 {
        font-size: 1.3em;
    }
    .lead {
        font-size: 1.1em;
        line-height: 2.5em;
    }
    .image-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    a[href^="tel:"] {
        pointer-events: none
    }
    .btn {
        padding: 1rem 2rem;
        width: 300px
    }
    .floating-banner {
        display: block;
        width: 100vw;
        bottom: 0;
        right: 0
    }
    .heading-1 {
        text-align: center;
        margin: 0 auto;
        display: block
    }
    .heading-2 {
        text-align: center;
        margin: 0 auto;
        display: block
    }
    .heading {
        font-size: 1.25em;
    }
    .first-view {
        height: auto
    }
    .first-view video {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain
    }
    .video-pc {
        display: none
    }
    .video-mobile {
        display: block
    }
    .svg-title {
        bottom: -3px;
        max-width: 250px
    }
    .svg-title-2 {
        bottom: -3px;
        max-width: 250px
    }
    .svg-center {
        max-width: 350px
    }
    .svg-container {
        left: 5%;
        width: 30%;
        max-width: 400px
    }
    .image-container img {
        width: 90%
    }
    .icon {
        width: 65%
    }
    .navi-row {
        margin: 15px auto
    }
    .navi {
        display: flex;
        flex-flow: column
    }
    #footer .navi {
        display: flex;
        flex-wrap: wrap;
        font-size: 15px
    }
    #footer .navi li {
        margin: 0 auto;
        font-size: 15px
    }
    #footer .sns-navi li {
        display: flex
    }
    #footer .sitenavi {
        width: 100%;
        text-align: center;
        font-size: 15px
    }
    #footer .copyright {
        font-size: 15px
    }
    #animated-text {
        font-size: 2em;
        gap: .1em
    }
    #animated-text-2 {
        font-size: 2em;
        gap: .1em
    }
    .mbottom-15 {
        margin-bottom: 1.5vw
    }
    .mbottom-30 {
        margin-bottom: 2vw
    }
    .mbottom-50 {
        margin-bottom: 5vw
    }
    .mbottom-70 {
        margin-bottom: 7vw
    }
    .mbottom-100 {
        margin-bottom: 10vw
    }
    .mtop-200 {
        margin-top: 20vw
    }
    .mtop-100 {
        margin-top: 10vw
    }
    .mtop-70 {
        margin-top: 7vw
    }
    .mtop-50 {
        margin-top: 5vw
    }
    .mtop-30 {
        margin-top: 2vw
    }
    .mtop-15 {
        margin-top: 1.5vw
    }
    .pbottom-200 {
        padding-bottom: 20vw
    }
    .pbottom-100 {
        padding-bottom: 10vw
    }
    .pbottom-70 {
        padding-bottom: 7vw
    }
    .pbottom-50 {
        padding-bottom: 5vw
    }
    .pbottom-30 {
        padding-bottom: 3vw
    }
    .pbottom-15 {
        padding-bottom: 1.5vw
    }
    .ptop-200 {
        padding-top: 20vw
    }
    .ptop-100 {
        padding-top: 10vw
    }
    .ptop-70 {
        padding-top: 7vw
    }
    .ptop-50 {
        padding-top: 5vw
    }
    .ptop-30 {
        padding-top: 3vw
    }
    .ptop-15 {
        padding-top: 1.5vw
    }
    .ptop-150 {
        padding-top: 15vw
    }
    .container {
        padding: 0 5vw
    }
    .container-3 {
        padding: 0 5vw
    }
    .flex:last-child {
        margin-bottom: 0
    }
    .flex-col2 {
        width: 100%
    }
    .flex-col2:first-child {
        margin-bottom: 2vw
    }
    .flex-col3 {
        width: 100%
    }
    .flex-col3:nth-child(-n+2) {
        margin-bottom: 5vw
    }
    .flex-left {
        margin-bottom: 5vw;
        width: 100%
    }
    .flex-right {
        width: 100%
    }
    .flex-row-reverse {
        flex-direction: row
    }
    .sp-br {
        display: block
    }
    .headline {
        text-align: center
    }
    .headline-2 {
        text-align: center
    }
    .responsive-container {
        flex-direction: column-reverse;
        align-items: center
    }
    .responsive-container .flex-col2 {
        width: 100%;
        margin-bottom: 20px
    }
    .responsive-container img {
        width: 100%;
        height: auto
    }
}

@media screen and (max-width: 600px) {
    #footer {
        padding: 30px 15px
    }
    #footer .logo a {
        font-size: 1.5em
    }
    .navi,
    .sns-navi {
        flex-direction: column;
        align-items: center
    }
    .navi li,
    .sns-navi li {
        margin: 10px 0
    }
    .navi li a {
        padding: 10px 0;
        line-height: 1.6
    }
    .sns-navi {
        flex-direction: row;
        justify-content: center
    }
    .sns-navi li {
        margin: 10px 15px
    }
    .address br.sp-br {
        display: none
    }
    .copyright {
        margin-top: 20px
    }
}