@charset "UTF-8";
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Shippori Mincho", serif;
	overflow-x: hidden;
}

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 {
    text-align: center;
}


.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: #719aa7;
    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-weight: 500;
    color: #4D4D4D;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: .1em
}

#hamburger {
    display: none
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  box-sizing: border-box;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}

.hero__center {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__title {
  display: block;
  height: auto;
  max-width: 90vw;
  max-height: 65vh;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.svg-title {
    display: block;
    width: auto;
    height: 65vh;
    max-width: 90vw;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

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.2em;
    font-weight: 350;
    line-height: 2.5em;
    letter-spacing: .2em;
    color: #333333;
    margin: 0;
    flex: 2;
    width: 100%;
    text-align: justify; /* 両端揃え */
    text-justify: inter-word; /* 単語間のスペースを調整 */
    padding-left: 0;
}
.heading-2 {
    font-size: 1.6em;
    font-weight: 350;
    text-align: center;
    line-height: 2.5em;
    letter-spacing: .2em;
    color: #333333;
    margin: 0;
    flex: 2;
    width: 100%;
    padding-left: 0
}
.date {
    font-weight: 500;
    font-size: 3em;
    text-align: center;
    letter-spacing: 0.25em;
    line-height: 1.5em;
    color: #333333;
}

.date span {
    font-size: 0.5em
}

.lead {
    margin: 0 auto;
    font-size: 1.6em;
    font-weight: 300;
    text-align: center;
    letter-spacing: .15em;
    color: #333333;
    display: block
}

.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
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
.youtube {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.youtube .yt-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 アスペクト比 */
    overflow: hidden;
    margin-bottom: 30px; /* 動画間の余白 */
}

.youtube .yt-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    border: none;
    font-weight: 300
}

th,
td {
    display: block;
    text-align: left;
    letter-spacing: .2em;
    color: #4D4D4D;
    
}

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
}

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%
}


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

.container {
    position: relative;
    margin: 0 auto;
    max-width: 1080px;
    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;
}


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

.text {
    font-size: 1.3em;
    line-height: 3em;
    letter-spacing: .07em;
    font-weight: 350;
    text-align: center;
    color: #333333;
	text-decoration: none; /* 下線を消す（必要に応じて） */
}
a:hover {
    
    font-weight: 500;
	opacity: .6
}
.btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 400px;
    margin: auto;
    padding: 1.3rem 2.8rem;
    font-weight: 500;
    border: 2px solid #719aa7;
    color: #FFF;
    background: #719aa7;
    border-radius: 0.5vh;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    box-sizing: border-box;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)
}

.btn:hover {
    color: #719aa7;
    border: 3px solid #719aa7;
    /* 幅を変えない */
    background: #FFF;
}
.line-hight{
	line-height: 2em;
}
.link-container {
    display: flex;
    justify-content: center; /* 水平方向に中央揃え */
}
.link-text {
    font-size: 1em;
    letter-spacing: .1em;
    font-weight: 400;
    text-align: center;
    color: #333333;
    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%
    }
}

#footer {
    background-color: #464646;
    padding: 40px 20px;
	display: block; /* インライン要素をブロック要素に変更 */
    text-align: center;
	margin: 0 auto; /* 自動で中央揃え */
    border-top: 1px solid #e7e7e7;
    color: #ECECEC;
}
.footer-logo img {
  max-width: 100%; /* 画像が親要素を超えないようにする */
  height: auto; /* アスペクト比を維持 */
  display: block; /* 画像をブロック要素にする */
  margin: 0 auto; /* 画像自体を中央揃え */
}
#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;
   
}

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

.navi li a {
    color: #ECECEC;
    
    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;
    margin-top: 30px
}

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

.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: 1em;
    }
    .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;
       
    }
    .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: 840px) {
		.align-left{
	text-align: left;
}
	}
@media screen and (max-width: 768px) {
	.date{
		font-size: 2em
	}
	.text {
    font-size: 0.95em;
}
    .link-caption {
        margin-top: 2vw;
        /* テキストの上にスペースを追加 */
        font-size: 0.8em;
    }
	    .btn {
        padding: 2rem 2.5rem;
        font-size: 1.1em;
        width: 320px
    }
	    .youtube {
        max-width: 100%;
        padding: 0;
    }
    .heading-3 {
        font-size: 1.3em;
    }
    .heading-4 {
        font-size: 1.3em;
    }
    .lead {
        font-size: 1.15em;
        
    }
    .image-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    a[href^="tel:"] {
        pointer-events: none
    }
  .hero__title {
    max-width: 60vw;
    max-height: 65vh;
  }

    .heading-2 {
        font-size: 1.3em;
    }
    .heading {
        font-size: 0.8em;
    }

    .svg-title {
        bottom: -3px;
        max-width: 250px
    }

    .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
    }

    .sp-br {
        display: block
    }
    .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
    }
}