html {
    height: 100%;
    margin: 0;
    padding: 0;
    /* font-family: FC丸ゴシック体-M ; */
    font-family: 'Hina Mincho', serif;
    /* font-family: Calligraphic 421 BT; */
    /* font-family: 'Dancing Script', cursive; */
    /* font-family: 'Noto Sans JP', sans-serif; */
    /* font-family: 'Poppins', sans-serif; */
} 

body {
    height: 100%;
    margin: 0;
    padding: 0;
}
a {
    text-decoration:  none;
}
ul {
    list-style:  none;
    padding: 0;
}
.section_title {
    font-family: 'Lugrasimo', cursive;
    font-size: 2rem;
    text-align: center;
    line-height: 1;
    border-bottom: 4px solid #000000;
    margin-top: 120px;
}

.section_sub_title {
    font-family: 'Lugrasimo', cursive;
    width: 220px;
    font-size: 60px;
    font-weight: 500;
    color: #80BA4A;
     background-color: #ffffff;
    /* transform: translate(-25%,-50%);  */
    margin-bottom: 12px;
}
nav li {
    display: inline-block;
    /* background-color: aqua; */
}

.main_container {
    width: 100%;
    /* max-width: 1120px; */
    /* background-color: aqua; */
    margin:0 auto;
    position: relative;
}

.container {
    width: 90%;
    /* max-width: 1120px; */
    /* background-color: aqua; */
    margin:0 auto;
    position: relative;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    /* background-color: aqua; */
}

img {
    background-position:center;
    background-size: cover;
    border-radius: 20px;
    width: 80%;
    height: auto;
}

.floating_text {
    position: relative;
    opacity: 0;
    transform: translateY(50px); /* 初期位置を下に設定 */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの設定 */
}

.floating-text.animate {
    opacity: 1; /* 終了時の透明度 */
    transform: translateY(0); /* 終了位置を元の位置に設定 */
}

@keyframes floatUp {
    0% {
        transform: translateY(50px); /* 初期位置を下に設定 */
        opacity: 0; /* 開始時の透明度 */
    }
    100% {
        transform: translateY(0); /* 終了位置を元の位置に設定 */
        opacity: 1; /* 終了時の透明度 */
    }
}

@media screen and (max-width: 768px) {
    .section_sub_title {
        width: 175px;
        font-size: 48px;
        font-weight: 500;
        color: #80BA4A;
        background-color: #ffffff;
        transform: translate(0%, -50%);
        margin-bottom: 12px;
    }
}

/* ヘッダー */

header {
    padding: 27px 0;
}
header img {
    height: 100%;
    width: 288px;
}
header a:visited {
    color: inherit;
}
.header_menu li {
    margin-left: 40px;
    font-size: 21px;
}
.header_menu li a:hover {
    color: #80BA4A;
    transition: .3s;
}
.header_menu li a {
    transition: .3s;
}


@media screen and (max-width: 768px) {
    header .container {
        justify-content: center;
    }
    .header_menu li {
        margin: 20px 16px 0 ;
    }
    header ul {
        padding-inline-start: 0;
    }
}
/* メイン */

#hero {
    background-image: url(../img/top_pic.png);
    background-position:center;
    background-size: cover;
    width: 100%;
    height: 1040px;
    /* height: 540px; */
    /* border-radius: 30px; */
    /* display: flex; */
    /* align-items: center; */
    /* margin-bottom: 90px; */
    overflow: hidden;
    transition: background-image 1s ease;
    opacity: 1; /* 初期の不透明度を設定 */
    /* transition: background-image 0.5s ease; 不透明度の変化を滑らかにする */
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* ここで明るさを調整 */
    z-index: 2;
}
.bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.bg-image.active {
  opacity: 1;
  z-index: 1;
}
#hero .logo_area{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    height: calc(100% - (280px + 7em));
    width: min(50vw, 860px);
}
#hero .logoimg{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 1000px;
    width: auto;
}
#hero::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000;
    position: absolute;
    top: 0;
    opacity: 0.2;
    z-index: 1;
}
.hero_inner {
    z-index: 2;
    color: #ffffff;
    width: 100%;
    text-align: center;
}
.hero_inner p {
    font-size: 24px;
    font-family: 'Zen Maru Gothic', serif;
    margin-bottom: 0;
}
.hero_inner h1 {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Corinthia', cursive;
    margin-bottom: 0;
}
.hero_inner h3 {
    font-family: 'Zen Maru Gothic', serif;
    font-size: 30px;
    transform: translate(0%, 400%);
}
#about h3 {
    font-family: 'Zen Maru Gothic', serif;
    font-size: 30px;
    transform: translate(0%, 0%);
}

.hero_img {
    background-position:center;
    background-size: cover;
    border-radius: 0px;
    width: 100%;
    height: auto;
}
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-70%);
    z-index: 1;
}
.slide {
    width: auto;
    height: 720px;
}
@media screen and (max-width: 768px) {
    #hero {
        /* height: 100%; */
    }
    .hero_inner p {
        font-size: 16px;
        margin:10px;
    }
    .hero_inner h1 {
        font-size: 48px;
        margin: 0;
    }
    .hero_inner h3 {
        font-size: 20px;
        margin-top: 0;
    }
    .slide {
        width: auto;
        height: 210px;
    }
}
@media screen and (max-height: 1100px) {
    #hero .logo_area {
        height: calc(100% - (120px + 7em));
        width: auto;
    }
}
@media screen and (max-height: 1100px) and (max-width: 1000px) {
    #hero .logo_area {
        height: calc(100% - (80px + 7em));
        width: auto;
        top: 50px;
    }
}
@media screen and (max-width: 1000px) {
    #hero .logo_area {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: calc(100% - (75px + 5em));
    }
}
@media screen and (max-width: 591px) {
    #hero .logo_area {
        top: 50%;
        transform: translate(-50%, -50%);
        max-height: calc(100vh - (120px + 7em));
        height: auto;
    }
}
@media screen and (max-height: 1100px) and (max-width: 591px) {
    #hero .logo_area {
        /* width: 82vw; */
    }
}
@media screen and (max-width: 1200px) {
    #hero .logo_area {
        /* top: 100px; */
        /* transform: translateX(-50%); */
        width: 82vw;
    }
}
/* about */

#about {
    width: 90%;
    max-width: 1120px;
    padding-bottom: 25px;
    background-color: #cc0099;
    margin-top:25px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
}
.title {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    color: #ffffff;
    margin-bottom: 25px;
}
.program-title {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    /* color: #ffffff; */
    margin-bottom: 25px;
}

/* カルーセル */

.carousel {
    width: 100vw;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.carousel_container {
    display: flex;
    width: calc(200% + 50px);
    /* height: auto; */
    animation: slide 25s infinite linear;
}
.carousel_container img {
    width: calc(20% - 10px);
    /* height: auto; */
    flex-shrink: 0;
    margin-right: 10px;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 25px));
    }
}

.attention {
    color: #ff0000;
}
.about_container {
    width: 105%;
    max-width: 1200px;
    transform: translate(-2.5%, 0%);
}
.about_img{
    width: 18%;
    border-radius: 10px;
    object-fit: cover;
    /* animation: slide 10s infinite linear; */
}
#goal h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    margin-left: 25px;
}
.column-2 {
    width: 48%;
    margin-bottom: 40px;
    margin-left: 20px;
    color: #ffffff;
}
.program-column-2 {
    width: 48%;
    margin-bottom: 40px;
    margin-left: 20px;
    color: #000;
}
.text {
    line-height: 1.5;
}
.design_inner {
    position: relative;
}
.inner_title {
    font-size: 28px;
    color: #ffffff;
    /* padding-top: 30px; */
}
.program-inner_title {
    font-size: 28px;
    color: #000;
    /* padding-top: 30px; */
}
.design_heading {
    font-family: 'Corinthia', cursive;
    font-size: 80px;
    font-weight: 700;
    color: #80BA4A;
    opacity: 0.3;
    position: absolute;
    top: 0;
    transform: translateY(-0%);
    z-index: -1;
}

@media screen and (max-width: 768px) {
    #about {
        margin-bottom: 40px;
    }
    .title {
        font-size: 12px;
    }
    .program-title {
        font-size: 12px;
    }
    .about_container {
        width: 105%;
        /* max-width: 1120px; */
        transform: translate(-2.5%, 0%);
    }
    
    #about h3 {
        font-size: 18px;
    }
    #about p {
        font-size: 14px;
    }
    #design img {
        margin-bottom: 30px;
    }
    .inner_title {
        font-size: 18px;
    }
    .column-2 {
        width: 100%;
        margin-bottom: 10px;
    }
    .program-inner_title {
        font-size: 18px;
    }
    .program-column-2 {
        width: 100%;
        margin-bottom: 10px;
    }
    .text {
        line-height: 1.5;
        font-size: 14px;
    }
    .design_heading {
        font-size: 40px;
        transform: translateY(-40%);
    }

    .carousel_container {
        animation: slide 30s infinite linear;
    }
    .carousel_container img {
        width: calc(30% - 10px);
    }
    .image {
        order: 2;
    }
}

/* ゴール */

#goal {
    width: 90%;
    max-width: 1120px;
    padding-bottom: 25px;
    background-color: #6600cc;
    margin-top:25px;
    position: relative;
    margin-top: 120px;
    margin-bottom: 60px;
}


/* PARFORMANCE */


.section_parformance {
    font-family: 'Lugrasimo', cursive;
    text-align: center;
}
#parformance {
    width: 90%;
    max-width: 1120px;
    padding-bottom: 25px;
    /* background-color: #6600cc; */
    margin-top:25px;
    position: relative;
    margin-top: 120px;
    margin-bottom: 60px;
}
.section_inner_tittle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.section_inner {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
}
.section_inner p{

}
.section_img {
    overflow-clip-margin: content-box;
    overflow: clip;
    
}
#consulting h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
}

.inner_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    /* background-color: aqua; */
}

.consulting_inner {
    position: relative;
    /* background-color: #80BA4A; */
}
.consulting_heading {
    font-family: 'Corinthia', cursive;
    font-size: 80px;
    font-weight: 700;
    color: #80BA4A;
    opacity: 0.3;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(0%);
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .sub {
        font-size: 21px;
    }
    #consulting h3 {
        font-size: 18px;
    }
    #consulting p {
        font-size: 14px;
    }
    #consulting img {
        margin-bottom: 30px;
    }
    .text {
        line-height: 1.5;
        font-size: 14px;
    }
    .image {
        order: 2;
    }
    .consulting_heading {
        font-size: 40px;
        transform: translateY(-40%);
        left: 0;
    }
    .inner_flex {
        display: block;
    }
}


/* MARCHE */


#vender {
    width: 90%;
    max-width: 1120px;
    padding-bottom: 25px;
    /* background-color: #6600cc; */
    margin-top:25px;
    position: relative;
    margin-top: 120px;
    margin-bottom: 60px;
}
.promotion_inner {
    position: relative;
}
.column-40 {
    width: 40%;
    margin-bottom: 40px;
}
.column-55 {
    width: 55%;
    margin-bottom: 40px;
}
#promotion h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}
.promotion_heading {
    font-family: 'Corinthia', cursive;
    font-size: 80px;
    font-weight: 700;
    color: #80BA4A;
    opacity: 0.3;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(50%);
    z-index: -1;
}

@media screen and (max-width: 768px) {
    #promotion {
        margin-bottom: 40px;
    }
    .column-40 {
        width: 100%;
        margin-bottom: 10px;
    }
    .column-55 {
        width: 100%;
        margin-bottom: 10px;
    }
    #promotion h3 {
        font-size: 18px;
    }
    #promotion p {
        font-size: 14px;
    }
    #promotion img {
        margin-bottom: 30px;
    }
    .promotion_heading {
        font-size: 40px;
        left: 0;
        transform: translateY(-40%);
    }
}

/* SCHEDULE */

#schedule {
    width: 90%;
    max-width: 1120px;
    padding-bottom: 25px;
    /* background-color: #6600cc; */
    margin-top:25px;
    position: relative;
    margin-top: 120px;
    margin-bottom: 60px;
}
.grid-container {
    display: grid;    
    grid-template-columns: repeat(2,3fr);
    gap: 10px;
    background-color: #c6a75c;
}
.timetable_before {
    width: 100%;
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    background-color: #c6a75c;
}
.timetable_after {
    width: 100%;
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    background-color: #6b216d;
}
.time {
    width: 100%;
    font-size: 16px;
    color: #ffffff;
    grid-column-start: 1;
    grid-column-end: auto;
    text-align: center;
    margin-top: -9%;
}
.event {
    width: 90%;
    height: 95%;
    font-size: 16px;
    grid-column-start: 2;
    grid-column-end: auto;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 2 0 ;
}
.event-main {
    width: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0.4em 0px;
}
.event-common {
    width: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0.4em 0px;
}
#company dl {
    max-width: 900px;
    margin-left: auto;
    font-size: 16px;
    /* background-color: #80BA4A; */
}
#company dt {
    width: 30%;
    padding: 36px 0;
    border-bottom: solid 1px #dcecba;
    /* background-color: #80BA4A; */
}
#company dd {
    width: 70%;
    padding: 36px 0;
    border-bottom: solid 1px #dcecba;
    margin-inline-start: 0;
    /* background-color: #80BA4A; */
}

@media screen and (max-width: 768px) {
    .event-common {
        font-size: 14px;
        margin: 0.35em 0px;
    }
}

/* アクセス */

#access img {
    width: 100%;
    height: 100%;
    margin-top: 40px;
    margin-bottom: 60px;
}

#access p {
    margin-bottom: 60px;
}

/* チケット */

#tiket {
    margin-bottom: 120px;
}
#tiket a{
    margin-bottom: 60px;
}
.shape-link {
    display: inline-block;
    width: 240px;
    height: 100px;
    background-color: #ff99cc;
    border-radius: 54px;
    text-align: center;
    line-height: 100px;
    color: white;
    text-decoration: none;
    margin-top: 54px;
    font-size: 28px;
}
.sold-out {
    text-decoration: line-through;
    color: #888;
    position: relative;
}
.sold-out::after {
    content: "満席";
    color: red;
    font-weight: bold;
    position: absolute;
    /* right: -3em; */
    top: 0;
}

/* ボトム */

.column-a {
    background-image: url(../img/hug.png);
    background-position:center;
    background-size: cover;
    width: 24%;
    height: 270px;
    border-radius: 20px;
}
.column-b {
    background-image: url(../img/hug2.png);
    background-position:center;
    background-size: cover;
    width: 18%;
    height: 270px;
    border-radius: 20px;
}
.column-c {
    background-image: url(../img/hug3.png);
    background-position:center;
    background-size: cover;
    width: 24%;
    height: 270px;
    border-radius: 20px;
}
.column-d {
    background-image: url(../img/hug4.png);
    background-position:center;
    background-size: cover;
    width: 28%;
    height: 270px;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .column-a, .column-b, .column-c, .column-d  {
        width: 48%;
        height: 140px;
        margin: 1%;
    }
}
#out {
    background-image: url(../img/top_pic.png);
    background-position:center;
    background-size: cover;
    width: 100%;
    /* height: 520px; */
    height: 540px;
    /* border-radius: 30px; */
    display: flex;
    align-items: center;
    /* margin-bottom: 90px; */
    overflow: hidden;
    transition: background-image 1s ease;
    opacity: 1; /* 初期の不透明度を設定 */
    /* transition: background-image 0.5s ease; 不透明度の変化を滑らかにする */
}
/* フッター */

footer {
    text-align: center;
    margin-top: 60px ;
    background-color: #000000;
    width: 100%;
}
footer img {
    height: 25px;
    width: 240px;
}
.copyright {
    font-size: 14px;
    margin-top: 40px;
    color: #ffffff;
    padding-bottom: 30px;
}
.footer_title {
    padding-top: 30px;
    color: #ffffff;
}
.social_icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social_icon {
    color: #ffffff;
    font-size: 36px;
    text-decoration: none;
    transition: color 0.3s;
}
.social_icon:hover {
    color: #1da1f2;
}
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.contact-button:hover {
    background-color: #0056b3;
}
@media screen and (max-width: 768px) {
    footer {
        /* margin: 40px; */
    }
    footer img {
        align-items: center;
    }
    .copyright {
        margin-top: 20px;
    }
    .footer_title {
        font-size: 12px;
        padding-top: 30px;
        padding-bottom: 20px;
        color: #ffffff;
    }
}
