@charset "UTF-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    max-width: 1440px;
    margin: 0 auto;
}
body {
    display: flex;
    align-items: center;
    max-width: 100%;
    min-width: 320px;
    justify-content: center;
    flex-direction: column;
    font-family: "Zen Old Mincho";
    background: #F5F5F5;
}
p {
    font-family: "Zen Old Mincho";
    font-size: 1.8rem;
    color: #3D3D3D;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 3;
}
img {
    max-width: 100%;
    height: auto;
}
h2 {
    font-family: Suranna;
    font-size: 5rem;
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(91, 101, 86, 0.15);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.5px;
}
h3 {
    color: #3D3D3D;
    text-shadow: 0px 4px 4px rgba(91, 101, 86, 0.15);
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 5px;
    text-align: left;
}
.h3_linna {
    color: #3D3D3D;
    text-shadow: 0px 4px 4px rgba(91, 101, 86, 0.15);
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-align: left;
}

@media screen and (max-width: 1165px) {
    h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }  
    h3_linna {
        font-size: 1.8rem;
        letter-spacing: 0px;
    }
}

/* TB→SP */
@media screen and (max-width: 768px){
    body {
        display: flex;
        text-align: center;
        align-items: center;
        max-width: 100%;
        min-width: 320px;
        justify-content: center;
        flex-direction: column;
        font-family: "Zen Old Mincho";
        background: #F5F5F5;
    }
    p {
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 1.4px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    h2 {
        font-size: 3.5rem;
        letter-spacing: 1px;
    }
    h3 {
        font-size: 2rem;
        letter-spacing: 1px;
    }  
}

/* SP */
@media screen and (max-width: 425px) {
    p {
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 1.4px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }  
    .h3_linna {
        font-size: 1.8rem;
        letter-spacing: 1.8px;
    }
}

/* SP */
@media screen and (max-width: 375px) {
    p {
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 1.4px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    h2 {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    h3 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }  
    .h3_linna {
        font-size: 1.6rem;
        letter-spacing: 1.8px;
    }
}


/* SP */
@media screen and (max-width: 320px) {
    p {
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: 1.4px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    h3 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    } 
    .h3_linna {
        font-size: 1.6rem;
        letter-spacing: 1.6px;
    } 
}

.header {
    display: flex;
    max-width: 1440px;
    flex-direction: row;
    padding: 10px 1.73%;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    align-self: stretch;

    position: fixed; /* 上部に固定 */
    top: 0;
    width: 100%;
    background-color: #F5F5F5;/* 初期の背景色 (不透明) */
    color: white;
    text-align: center;
    z-index: 100; /* 他の要素よりも前面に表示 */
    transition: background-color 0.5s ease; /* 背景色の変化にアニメーションを付与 */
    z-index: 1000;
}

.header_txt{
    color: #333;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    font-family: "Cinzel Decorative";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.pc_instagram_icon {
    width: 50px;
    height: auto;
}
.pc_line_icon {
    width: 40px;
    height: auto;
}
.humburger_line_img {
    display: none;
}
.openbtn {
    display:none;
}


/*==================================================
　5-2-7 3本線が奥行きを持って回転して×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}
/*ボタン内側*/
.openbtn .openbtn-area{
    transition: all .4s;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #333;
  	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/
.openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}

/* LAPTOP */
@media screen and (max-width: 1024px) {
    .header {
        gap: 15px;
        width: 100vw;
    }
    .header_txt {
        display: none;
    }
    .openbtn {
        display: inline;
    }
    .pc_instagram_icon {
        display: none;
    }
    .pc_line_icon {
        display: none;
    }
    .sp_instagram_icon {
        width: 50px;
        height: auto;
    }
    .sp_line_icon {
        width: 40px;
        height: auto;
    }
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .header {
        padding: 5px;
        width: 100vw;
    }
    .header_txt {
        display: none;
    }
    .pc_instagram_icon {
        display: none;
    }
    .pc_line_icon {
        display: none;
    }
    .sp_instagram_icon {
        width: 50px;
        height: auto;
    }
    .sp_line_icon {
        width: 40px;
        height: auto;
    }
}

/* SP */
@media screen and (max-width: 425px) {
    .header {
        padding: 0px;
        width: 100vw;
    }
    .header_txt {
        display: none;
    }
}

/* SP___nav___↓↓ */
.sp_nav {
    display: flex;
    width: 100vw;
    height: 100vh;
    padding-bottom: 45px;
    flex-direction: column;
    align-items: center;
    background: #F5F5F5;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    
    transform: translateX(-1000%);
    transition: transform 0.4s;
}
.sp_nav.active {
    transform: translateX(0);
}

.sp_nav_inside_box {
    display: flex;
    width: 100vw;
    padding: 70px 10px;
    align-items: flex-start;
    
    background-image: url(../images/images_nav/nav_img.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    flex-direction: column;
}

@media screen and (max-width: 1024px) {
    .sp_nav_inside_box {
        padding: 70px 10px;
    }
}

.sp_nav_txt_box {
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}
.sp_nav_txt {
    color: #333;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Cinzel Decorative";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sp_nav_icon_box {
    display: flex;
    padding: 30px 0% 0px 2%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.sp_nav_instagram_icon {
    width: 60px;
    height: 60px;
}
.sp_nav_line_icon {
    width: 40.04px;
    height: 40px;
}
/* SP___nav___↑↑ */

/* main ↓↓ */
.top_page_box {
    display: flex;
    padding: 60px 6.94% 0px 6.94%; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 200px;
    align-self: stretch;
}

.top_page_img_box {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex-direction: row;

    position: relative;
}
.chica_yoga {
    position: absolute;
    z-index: 2;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size:3vw;
    color: #F5F5F5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .chica_yoga {
        top: 60%;
        font-size:4vw;
    }
}
/* SP */
@media screen and (max-width: 425px) {
    .chica_yoga {
        top: 60%;
        font-size:6vw;
    }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    width: 100%;
	height: auto;/*スライダー全体の縦幅を画面の高さ（100vhか90vh）にする*/
    overflow: hidden; /* スライダーがはみ出さないように隠す */
    margin: 0 auto; 
}

/*　背景画像設定　*/
.slider-item01 {
    background:url(../images/images_toppage/top/top_img1.png);
}
.slider-item02 {
    background:url(../images/images_toppage/top/top_img2.png);
}
.slider-item03 {
    background:url(../images/images_toppage/top/top_img3.png);
}
.slider-item {
    width: 100%;
    height:auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    aspect-ratio: 6 / 4;
}

/* 1440pxより大きいサイズ */
@media (min-width: 1441px) {
    .slider-item { 
        height: 60vh; 
    }
}

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

@media (max-width: 768px) {
    .slick-prev, 
    .slick-next {
    top: 45%;
    }
}
@media (max-width: 425px) {
    .slick-prev, 
    .slick-next {
    top: 40%;
    }
}
@media (max-width: 375px) {
    .slick-prev, 
    .slick-next {
    top: 35%;
    }
}

.slick-prev {
    left:4.5%;
    transform: rotate(-135deg);
}
.slick-next {
    right:4.5%;
    transform: rotate(45deg);
}
.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin: 50px 0 0 0;
}

@media (max-width: 768px) {
    .slick-dots {
        position: relative;
        z-index: 3;
        text-align:center;
        margin:50px 0 0 0;
    } 
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;
    height:8px;
    display:block;
    border-radius:50%;
    background:#ccc;
}
.slick-dots .slick-active button{
    background:#333;
}



/* TB→SP */
@media screen and (max-width: 768px) { 
    .top_page_box {
        padding: 50px 2% 0px 2%;
        gap: 50px;
    }

    .top_page_img_box {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        flex-direction: row;
    }
}

.section_self_introduction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 20px;
    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}


.section_self_introduction.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

.self_introduction_box {
    display: flex;
    width: auto;
    height: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-image: url(../images/images_toppage/selfintroduction/self-introduction_back.png);
    background-position: center left;
    background-size: cover;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
}
.self_introduction_txt {
    align-self: stretch;
    color: #363736;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(5, 43, 8, 0.15);
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 15px;
}

@keyframes bounce {
    0%, 80% {
        transform: translateY(0); /* 最初と最後の位置は元の場所 */
    }
    80% {
        transform: translateX(-10px); /* 中間で少し横に移動 */
    }
}
.more_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    animation: bounce 1.5s ease infinite; /* 1.5秒で1回のバウンド、無限ループ */
}
.more_txt {
    color: #3D3D3D;
    text-align: center;
    -webkit-text-stroke-color: #3D3D3D;
    font-family: Suranna;
    font-size: 5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
}
.icon_arrow_more {
    width: 30%;
    height: auto;
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .section_self_introduction {
        padding-top: 35px;
    }
    .self_introduction_box {
        display: flex;
        height: 170px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }
    .self_introduction_txt {
        font-size: 2rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0px;
    }
    .more_txt {
        font-size: 3rem;
    }
    .icon_arrow_more {
        width: 20%;
        height: auto;
    }

}
/* TB→SP */
@media screen and (max-width: 425px) {
    .section_self_introduction {
        gap: 15px;
    }
    .self_introduction_box {
        display: flex;
        height: 170px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }
    .self_introduction_txt {
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0px;
    }
    .more_txt {
        font-size: 2rem;
    }
    .icon_arrow_more {
        width: 20%;
        height: auto;
    }
}

/* SP */
@media screen and (max-width: 375px) {
    .self_introduction_txt {
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0px;
    }
}

/* SP */
@media screen and (max-width: 320px) {
    .self_introduction_txt {
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0px;
    }
}

/* TB */
@media screen and (max-width: 768px) {
    .more_txt {
        font-size: 3.5rem;
    }
    .icon_arrow_more {
        width: 20%;
        height: auto;
    }
}

/* TB→SP*/
@media screen and (max-width: 425px) {
    .more_txt {
        font-size: 2.5rem;
    }
    .icon_arrow_more {
        width: 20%;
        height: auto;
    }
}

.section_studio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 200px;
    align-self: stretch;
}

.studio_list_box {
    display: flex;
    width: 100%;
    justify-content: center;
}

.studio_list {
    font-family: "Zen Old Mincho";
    font-size: 3rem;
    color: #3D3D3D;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.5px;

    opacity: 0;  /* 初期状態では見えない */
    transform: translateY(100px);  /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease;  /* アニメーションの時間を指定 */
    position: relative;  /* 絶対位置から相対位置に修正 */
}

/* 表示時の状態 */
.studio_list.visible {
    opacity: 1;
    transform: translateY(0);
}


.sutudio_top_img_box {
    display: flex;
    display: flex;
    width: 100%;
    height: 561.46px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;

    background-image: url(../images/images_toppage/studio/studio_top_img.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;

    position: relative;
    margin-bottom: 70px;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}

.sutudio_top_img_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

/* studio_title_txtのスライドインアニメーション */
.studio_title_txt {
    position: absolute;
    left: -100px; /* 初期位置を画面外に設定 */
    top: 225.73px;
    opacity: 0;  /* 最初は非表示 */
    padding-left: 16%;
    transition: opacity 1s ease-out;
}

.studio_title_txt.slide-in {
    animation: studio-slide-in 1.5s ease forwards;
}

@keyframes studio-slide-in {
    0% {
        left: -30%;
        opacity: 0;
    }
    100% {
        left: 10px;
        opacity: 1;
    }
}

.studio_title_inside_box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.studio_top_flower {
    width: 40%;
    height: auto;
    object-fit: contain;

    position: absolute;
    right: 0vw;
    top: -5px;
}
.studio_box {
    display: flex;
    padding: 70px 3.2%;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
    background-color: #FFF;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}

.studio_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

.studio_txt_box {
    display: flex;
    width: 32%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}
.studio_url {
    color: #000;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-align: left;
    text-decoration-line: underline;
}
.studio_info_box {
    display: flex;
    /* align-items: center; */
    gap: 40px;
    flex: 1 0 0;
}
.studio_box_linna {
    display: flex;
    padding: 70px 40px;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}
.studio_info_box_linna {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1 0 0;
}
.studio_info_box_inside {
    display: flex;
    width: 45%;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.map_container {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
}
.google_map {
    align-self: stretch;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.studio_info_txt_box {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: #eff9ea;
}
.studio_info_txt_box_2{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.studio_name_txt {
    color: #3D3D3D;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 3px;
}
.studio_address_box {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.address {
    color: #3D3D3D;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.maternityyoga_img {
    display: flex;
    aspect-ratio: 16/9;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.maternityyoga_container {
    width: 100%;
    position: relative;
}

/* PC→LAPTOP */
@media screen and (max-width: 1320px) {
    .studio_top_flower {
        width: 40%;
        height: auto;
        object-fit: contain;
    
        position: absolute;
        right: -5vw;
        top: 45px;
    }
}

/* PC→LAPTOP */
@media screen and (max-width: 1300px) {
    .studio_info_box_inside {
        gap: 20px;
    }
    .studio_info_box {
        display: flex;
        gap: 20px;
        flex: 1 0 0;
    }
    .studio_name_txt {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .address {
        font-size: 1.6rem;
    }
}

/* PC→LAPTOP */
@media screen and (max-width: 1000px) {
    .studio_name_txt {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .address {
        font-size: 1.5rem;
    }
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .section_studio {
        gap: 50px;
    }
    .sutudio_top_img_box {
        width: 100%;
        height: 400px;
        margin: 50px 0% 70px 0%;   
    }
    .studio_title_txt {
        padding-left: 10%;
        font-size: 3.5rem;
        position: absolute;
        left: 50px;
        top: 150px;
    }
    .studio_top_flower {
        width: 35%;
        height: auto;
        object-fit: contain;
        position: absolute;
        right: -15px;
        top: 60px;
    }
    .scroll_box1 {
        position: absolute;
        left: 0px;
        bottom: -165px;
    }
    .studio_box {
        padding: 50px 0px;
        flex-direction: column;
    }
    .studio_txt_box {
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        align-self: stretch;
    }
    .studio_url {
        font-size: 1.4rem;
    }
    .studio_info_box {
        width: 100%;
        gap: 50px;
        flex-direction: column;
    }
    .studio_box_linna {
        display: flex;
        padding: 50px 0%;
        gap: 30px;
        flex-direction: column;
    }
    .studio_info_box_linna {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 40px;
        flex: 1 0 0;
        flex-direction: column;
    }
    .studio_info_box_inside {
        width: 100%;
        gap: 30px;
        flex-direction: column;
    }
    .map_container {
        width: 100%;
        position: relative;
        padding-top: 56.25%;
    }
    .google_map {
        align-self: stretch;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .studio_info_txt_box {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }
    .studio_name_txt {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    .studio_address_box {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }
    .address {
        color: #3D3D3D;
        font-family: "Zen Old Mincho";
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1px;
    }
    
    .maternityyoga_img {
        object-fit: cover;
        width: 100%;
        align-self: stretch;
    }
}

/* SP */
@media screen and (max-width: 425px) {
    .sutudio_top_img_box {
        width: 100%;
        height: 250px;   
    }
    .studio_list {
        font-family: "Zen Old Mincho";
        font-size: 2rem;
    }
    .studio_title_txt {
        padding-left: 10%;
        font-size: 2.5rem;
        position: absolute;
        left: 30px;
        top: 90px;
    }
    .studio_top_flower {
        width: 40%;
        height: auto;
        object-fit: contain;
        position: absolute;
        right: -10px;
        top: 54px;
    }
    .address {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .studio_name_txt {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}


/* SP */
@media screen and (max-width: 375px) {
    .sutudio_top_img_box {
        width: 100%;
        height: 200px;   
    }
    .studio_title_txt {
        padding-left: 10%;
        font-size: 3rem;
        position: absolute;
        left: 15px;
        top: 60px;
    }
    .studio_top_flower {
        width: 35%;
        height: auto;
        object-fit: contain;
        position: absolute;
        right: 0px;
        top: 44px;
    }
    .address {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .studio_name_txt {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
}
/* SP */
@media screen and (max-width: 320px) {
    .studio_title_txt {
        padding-left: 10%;
        font-size: 2.5rem;
        position: absolute;
        left: 15px;
        top: 65px;
    }
    .studio_top_flower {
        width: 40%;
        height: auto;
        object-fit: contain;
        position: absolute;
        right: -5px;
        top: 30px;
    }
    .address {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .studio_name_txt {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
}

.section_temple_yoga {
    display: flex;
    padding-top: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}

.section_temple_yoga.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

.temple_yoga_top_img_box {
    display: flex;
    width:  100%;
    height: 625px;
    align-self: stretch;

    background-image: url(../images/images_toppage/templeyoga/templeyoga_top_img_box.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
}

/* temple_yoga_title_txt_boxのスライドインアニメーション */
.temple_yoga_title_txt_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 100px 50px;
    opacity: 0; /* 最初は非表示 */
    transition: opacity 0.1s ease-out;
    position: relative;
}
.temple_yoga_title_txt_box.slide-in {
    animation: temple-slide-in 1.5s ease forwards;
}

@keyframes temple-slide-in {
    0% {
        left: -100%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}


.temple_yoga_title_txt {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Zen Old Mincho";
    font-size: 3rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.temple_yoga_txt_box {
    display: flex;
    padding: 30px 5px 20px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    align-self: stretch;
}
.temple_yoga_txt {
    color: #0C5306;
    text-align: center;
    font-family: Suranna;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3px;
}
.temple_br_sp {
    display: none;
}
.temple_jp_txt {
    font-size: 1.8rem;
    padding-top: 15px;
}

/*  PC→TB */
@media screen and (max-width: 1024px) {
    .temple_yoga_top_img_box {
        display: flex;
        width:  100%;
        height: 525px;
    }
}

/*  TB→SP */
@media screen and (max-width: 768px) {
    .temple_yoga_top_img_box {
        width: 100%;
        height: 400px;
    }
    .temple_yoga_title_txt_box {
        display: flex;
        width: auto;
        height: auto;
        padding: 170px 0% 100px 4.2%;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        flex: 1 0 0;
        align-self: stretch;
    }
    .temple_yoga_title_txt {
        font-size: 2rem;
    }
    .temple_yoga_txt_box {
        padding: 30px 10px 20px 0px;
        gap: 5px;
    }
    .temple_yoga_txt {
        font-size: 2.5rem;
        letter-spacing: 1.8px;
    }
}

/* SP */
@media screen and (max-width: 425px) {
    .temple_yoga_top_img_box {
        width: 100%;
        height: 200px;
    }
    .temple_yoga_txt {
        font-size: 2rem;
        letter-spacing: 0px;
    }
    .temple_yoga_title_txt {
        font-size: 1.8rem;
    } 
    .temple_yoga_txt_box {
        padding: 30px 5px 10px 0px;  
    }
    .temple_jp_txt {
        font-size: 1.4rem;
    }
}
/* SP */
@media screen and (max-width: 375px) {
    .temple_yoga_top_img_box {
        width: 100%;
        height: 200px;
    }
    .temple_yoga_txt {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }
    .temple_yoga_title_txt {
        font-size: 1.6rem;
    } 
    .temple_br_sp {
        display: inline;
    }
    .temple_yoga_txt_box {
        padding: 30px 5px 10px 0px;  
    }
    .temple_jp_txt {
        padding-top: 10px;
    }
}

.section_yoga_event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    position: relative;
}
.yoga_event_top_img_box {
    display: flex;
    width: 100%;
    height: 650px;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    background-image: url(../images/images_toppage/yogaevent/yogaevent_top_img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}

.yoga_event_top_img_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

/*yoga_event_title_txtのスライドインアニメーション */
.yoga_event_title_txt_box {
    display: flex;
    justify-content: center;
    align-items: center;
    left: -100px; /* 初期位置を画面外に設定 */
    opacity: 0; /* 最初は非表示 */
    transition: opacity 1s ease-out;
    position: relative;
}
.yoga_event_title_txt_box.slide-in {
    animation: yoga-event-slide-in 1.5s ease forwards;
}

@keyframes yoga-event-slide-in {
    0% {
        left: -50%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

.yoga_event_txt_box {
    display: flex;
    padding: 200px 0%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    align-self: stretch;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}

.yoga_event_txt_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

/* ナビゲーションボックスのスタイル */
.yoga_event_txt_box_lesson_pc {
    display: flex;
    align-items: flex-start;
    gap: 20px; /* テキスト同士の間隔 */
}

/* 各テキストナビゲーションのスタイル */
.pc_yoga_list {
    position: relative;
    font-size: 1.8rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease; /* ホバー時に文字の色を変える */
}

.pc_yoga_list::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* 線が伸びる最大幅 */
    height: 2px; /* 線の太さ */
    background-color: #333; /* 線の色 */
    transform: scaleX(0); /* 最初は線を隠す */
    transform-origin: left; /* 左から伸ばす */
    transition: transform 0.3s ease; /* 線の伸び方 */
}

/* ホバー時に線を左から右に伸ばす */
.pc_yoga_list:hover::after {
    transform: scaleX(1); /* 線を100%の長さにする */
}

/* ホバー時に文字の色を変える */
.pc_yoga_list:hover {
    color: #7E7F7E; /* ホバー時にテキストの色を変更 */
}
.yoga_event_txt_box_lesson_sp {
    display: none;
}
.yoga_event_txt_pc {
    color: #3D3D3D;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3;
    letter-spacing: 2px;
}
.yoga_event_txt_sp {
    display: none;
}
.yoga_event_img_box {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    margin-bottom: 20px;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}
.yoga_event_img_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}
.yoga_event_img {
    display: flex;
    width: 20%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

/* PC→TB */
@media screen and (max-width: 1024px) {
    .yoga_event_top_img_box {
        height: 525px;
    }
}
@media screen and (max-width: 1010px) {
    .pc_yoga_list {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }
}
@media screen and (max-width: 860px) {
    .pc_yoga_list {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }
}
@media screen and (max-width: 858px) {
    .pc_yoga_list {
        font-size: 1.4rem;
        letter-spacing: 0px;
    }
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .yoga_event_top_img_box {
        height: 400px;
        position: relative;
    }
    .yoga_event_txt_box { 
        padding: 100px 0% 50px 0%;
        gap: 30px;
    }
    .yoga_event_txt_box_lesson_pc {
       display: none;
    }
    .yoga_event_txt_pc {
        display: none;
    }
    .yoga_event_txt_box_lesson_sp {
        display: inline;
        align-self: stretch;
    }

    /* 全体のボックススタイル */
    .yoga_event_txt_box_lesson_sp {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    /* 各内部のボックススタイル */
    .yoga_event_txt_box_lesson_sp_inside {
        display: flex;
        gap: 20px;
    }

    /* 各テキストのスタイル */
    .yoga_event_txt_sp {
        position: relative;
        font-size: 1.4rem;
        color: #333;
        padding-bottom: 5px;
        overflow: hidden;
        transition: color 0.3s ease;
    }

    /* 左から右に線が伸びるアニメーション */
    .yoga_event_txt_sp::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px; /* 線の太さ */
        background-color: #333; /* 線の色 */
        transform: scaleX(0); /* 最初は線を隠す */
        transform-origin: left; /* 左から右に伸びる */
        transition: transform 0.3s ease; /* アニメーションの速度 */
    }

    /* ホバー時のエフェクト */
    .yoga_event_txt_sp:hover::after {
        transform: scaleX(1); /* 線が左から右に伸びる */
    }
    .yoga_event_txt_sp:hover {
        color: #7E7F7E; /* ホバー時にテキストの色を変える */
    }
    .yoga_event_txt_sp {
        display: inline;
        color: #3D3D3D;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 1.8rem;
        line-height: 2;
        letter-spacing: 1px;
    }
    .yoga_event_img_box {
        display: none;
    }  
    .br-pc {
        display: none;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    .yoga_event_txt_box_lesson_sp_inside {
        display: flex;
        gap: 10px;
    }  
    .yoga_event_txt_sp {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }
    .yoga_event_txt_box { 
        padding: 65px 0% 0px 0%;
        gap: 15px;
    }
}

/* SP */
@media screen and (max-width: 425px) {
    .yoga_event_top_img_box {
        height: 200px;
    }
    .yoga_event_txt_sp {
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: 0px;
    }    
}

/* SP-Sサイズ */
@media screen and (max-width: 325px) {
    .yoga_event_top_img_box {
        height: 200px;
    }
    .yoga_event_txt_sp {
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: -1px;
    }
    .yoga_event_txt_box_lesson_sp_inside {
        display: flex;
        gap: 5px;
    }
}

.section_photography {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.photography_top_img_box {
    display: flex;
    width: 100%;
    height: 650px;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    background-image: url(../images/images_toppage/photography/photography_top_img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
    padding: 450px 10% 0px 0%;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}
.photography_top_img_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}
.photography_txt_box {
    display: flex;
    padding: 200px 0% 0px 0%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}
.photography_txt_box.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}

/* photography_top_img_box のスライドインアニメーション */
.photography_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: -100px; /* 初期位置を画面外に設定 */
    opacity: 0;  /* 最初は非表示 */
    position: relative; /* relativeを追加してleftが効くようにする */
    transition: opacity 1s ease-out;
}
.photography_title.slide-in {
    animation: photography-slide-in 1.5s ease forwards;
}

@keyframes photography-slide-in {
    0% {
        left: -100%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

.photography_txt {
    color: #3D3D3D;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3;
    letter-spacing: 4px;
}

@media screen and (max-width: 1024px) {
    .photography_top_img_box {
        padding: 350px 5% 0px 0%;
        height: 525px;
    }
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .photography_top_img_box {
        padding: 290px 5% 0px 0%;
        height: 400px;
    }
    .photography_txt_box {
        padding: 100px 2% 50px 2%;
    }
    .photography_txt {
        color: #3D3D3D;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    .br-pc {
        display: none;
    }
}

/* SP */
@media screen and (max-width: 425px) {
    .photography_top_img_box {
        padding: 130px 5% 0px 0%;
        height: 200px;
    }
    .photography_txt_box {
        padding: 65px 2% 0px 2%;
    }
    .photography_txt {
        color: #3D3D3D;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2;
        letter-spacing: 0px;
        white-space: nowrap;
    }
    .br-pc {
        display: none;
    }
}

.section_topics {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 20px;

    opacity: 0;               /* 初期状態では見えない */
    transform: translateY(100px); /* 初期位置を下に100pxずらす */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの時間を指定 */
}
.section_topics.visible {
    opacity: 1;               /* アニメーション後に見えるようにする */
    transform: translateY(0);  /* 元の位置に戻す */
}
.topics_top_img_box {
    display: flex;
    height: 650px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-image: url(../images/images_toppage/topics/topics_top_img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
}
.topics_top_inside_frame {
    display: flex;
    width: 70%;
    height: 165px;
    justify-content: center;
    align-items: center;
    border: 6px solid #FFF;
    background: rgba(255, 255, 255, 0.50);
}
.topics_title_txt {
    color: #707070;
    text-align: center;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.20);
    font-family: Suranna;
    font-size: 5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.5px;
}

@media screen and (max-width: 1024px) {
    .topics_top_img_box {
        background-image: url(../images/images_toppage/topics/topics_top_img.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
        height: 525px;
        padding: 100px 50px;
        flex-direction: column;
    }
    .topics_top_inside_frame {
        width: auto;
        height: 135px;
        align-self: stretch;
        border: 3px solid #FFF;
        background: rgba(255, 255, 255, 0.50);
    }
}

/* TB→SP */
@media screen and (max-width: 768px) {
    .topics_top_img_box {
        background-image: url(../images/images_toppage/topics/topics_top_img.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
        height: 400px;
        padding: 100px 50px;
        flex-direction: column;
    }
    .topics_top_inside_frame {
        width: auto;
        height: 100px;
        align-self: stretch;
        border: 3px solid #FFF;
        background: rgba(255, 255, 255, 0.50);
    }
    .topics_title_txt {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
}

/* SP */
@media screen and (max-width: 425px) {
    .section_topics {
        gap: 10px;
    }

    .topics_top_img_box {
        background-image: url(../images/images_toppage/topics/topics_top_img.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: 0px 5px 5px 0px rgba(91, 101, 86, 0.15);
        height: 200px;
        padding: 100px 50px;
        flex-direction: column;
    }
    .topics_top_inside_frame {
        width: auto;
        height: auto;
        align-self: stretch;
        border: 3px solid #FFF;
        background: rgba(255, 255, 255, 0.50);
    }
    .topics_title_txt {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}

/* 親要素にレスポンシブ対応の幅を設定 */
.elfsight-app-37529b91-1b81-42de-88bd-78dd79949216 {
    width: 100%; /* 幅を親コンテナの100%に設定 */
    max-width: 1240px; /* 最大幅を設定（任意で調整可能） */
    margin: 0 auto; /* 中央寄せ */
}

/* 小さなデバイス向けのスタイル */
@media (max-width: 768px) {
    .elfsight-app-37529b91-1b81-42de-88bd-78dd79949216 {
        max-width: 100%; /* モバイルデバイスでは最大幅を100%に */
    }
}

@media (max-width: 480px) {
    .elfsight-app-37529b91-1b81-42de-88bd-78dd79949216 {
        max-width: 100%; 
    }
}
/* main ↑↑ */

.footer1 {
    display: flex;
    padding: 50px 0px;
    justify-content: center;
    align-items: center;
}
.line_box {
    display: flex;
    width: 300px;
    height: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.line_txt_img_box {
    display: flex;
    width: 152px;
    height: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.line_txt {
    color: #06C755;
    font-family: "Helvetica Neue";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.instagram_box {
    display: flex;
    width: 300px;
    height: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.instagram_txt_img_box {
    display: flex;
    width: 152px;
    height: 25px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
}

.instagram_txt_img {
    width: 168px;
    height: 47px;
    flex-shrink: 0;
}

.instagram_txt {
    color: #343433;
    font-family: "Helvetica Neue";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.qr_corde_img_line {
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.qr_corde_img_instagram {
    display: flex;
    width: 110px;
    height: 110px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.footer2 {
    display: flex;
    flex-direction: row;
    padding: 25px 25px;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}
.footer2_txt {
    color: #333;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    font-family: "Cinzel Decorative";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.copyright_box {
    display: flex;
    padding: 30px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.copyright_txt {
    color: #333;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    font-family: Helvetica;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.footer_sp {
    display: none;
}

/* LAPTOP */
@media screen and (max-width: 1024px) {
    .footer2 {
        gap: 15px;
    }
    .footer2_txt {
        font-size: 1rem;
    }
}

/* TB→SP */
@media screen and (max-width: 1024px) {
    .footer1 {
        display: none;
    }
    .footer2 {
        display: none;
    }
    .footer2_txt {
        display: none;
    }

    .footer_sp {
        display: inline;
        display: flex;
        padding: 20px 0px;
        justify-content: center;
        align-items: center;
        gap: 50px;
        align-self: stretch;
    }
    .sp_instagram_icon{
        display: inline;
        width: 60px;
        height: 60px;
    }
    .sp_line_icon {
        display: inline;
        width: 40.04px;
        height: 40px;
    }
    .page_top_box {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .page_top_arrow_img {
        width: 30%;
        height: auto;
    }
    .page-top {
        font-family: "Zen Old Mincho";
        font-size: 1.3rem;
        line-height: 2;
        letter-spacing: 1.4px;
    }
}   
