@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 150%;
    background-color: floralwhite;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
body::-webkit-scrollbar {
    display: none;
}
header {
    width: 100%;
    height: 100vh;
}
.sec_wrapper {
    margin: 0 auto;
    display: block;
    position: relative;
    padding: 5%;
}
img {
    max-width: 100%;
}
.sec_title img {
    height: 60px;
}
a {
    cursor: url("../images/rock_cursor.png"), auto;
}
/*タイトル装飾*/
.sec_title {
    display: block;
    text-align: center;
    z-index: 10;
    margin: 50px auto;
}
/*h2ホバーアクション*/
.switch_image {
    position: relative;
}
.switch_image img {
    transition: opacity 0.5s;
}
.switch_image:hover img:first-of-type {
    opacity: 0;
}
.switch_image img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.switch_image:hover img:last-of-type {
    opacity: 1;
}
/*******************************
       ローディング*******************************/
#splash {
   display: none;
    position: fixed;
    width: 100vw;
    height: 100%;
    z-index: 9999;
    background: #fff;
    text-align: center;
    color: #fff;
}
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.svg_img {
    width: 100%;
    height: 100%;
}
#mask .st0 {
    fill: none;
    stroke: #fff;
    stroke-width: 100; /*線の太さを指定する*/
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 1500; /* 線の間隔を指定する */
    stroke-dashoffset: 1500; /* 線の位置を指定する */
}
.sec_top-wrapper {
    width: 100vw;
    max-width: 100%;
}
/*****************************************
スライドショー**********************/
.slick {
    margin: 0;
    padding: 0;
    line-height: 0;
}
.slick__bg {
    display: block;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.slick__bg01 {
    background-image: url(yn_top01.jpg);
}
.slick__bg02 {
    background-image: url(yn_top02.jpg);
}

.slick__bg04 {
    background-image: url(yn_top04.jpg);
}
.slick__bg05 {
    background-image: url(yn_top05.jpg);
}
.slick__bg06 {
    background-image: url(yn_top06.jpg);
}


.yz_icon {
    display: block;
    width: 10%;
    filter: drop-shadow(5px 5px 5px #aaa);
    position: absolute;
    top: 60%;
    right: 10%;
    z-index: 99;
}
.top_header {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    justify-content: space-between;
    align-items: center;
    transition: all 2s;
}
h1 {
    margin-right: auto;
    width: 15%;
    margin-left: 50px;
    z-index: 999;
}
h1 a {
    filter: drop-shadow(2px 2px 2px rgba(255, 255, 255, 0.8));
}
/*ハンバーガー*/
.hamburger-menu {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 99999
}
.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 3px;
    border-radius: 3px;
    background: #CC0D50;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
    top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
    top: 24px;
}
.hamburger-menu__bar:last-child {
    top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
}
.navigation {
    display: none;
    background: rgba(34, 34, 34, 0.90);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    height: 100vh;
}
.navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
em:first-child {}
.navigation__link {
    display: block;
    padding: 24px 0;
    transition: .5s;
}
.navigation__list-item img {
    height: 30px;
}
/*↑↑↑ハンバーガー↑↑↑*/
/*******TOPページナビゲーション*********/
.main_nav {
    z-index: 1;
}
.nav_link {
    height: 15px;
}
.main_nav ul {
    text-transform: uppercase;
    width: 40%;
    margin-right: 50px;
}
.main_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.main_nav ul li {
    margin-left: 10px;
    padding: 10px;
}
.main_nav ul li a {
    position: relative;
}
.main_nav ul li a::after {
    position: absolute;
    content: "";
    display: block;
    height: 3px;
    background-color: #CC0D50;
    bottom: -10px;
    left: 0;
    width: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.main_nav ul li a:hover::after {
    width: 100%;
}
/*ーーーーーーページネーションーーーーーーー*/
@media screen and (min-width:768px) {
        .pagination {
            position: fixed;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1em;
            z-index: 10;
            list-style: none;
          text-align: end;
            
        }
        .pagination a {
            display: block;
            height: 20px;
            margin-bottom: 5px;
            color: #CC0D50;
            position: relative;
            padding: 4px;
        }
        .pagination a.active:after {
            box-shadow: inset 0 0 0 5px;
        }
        /*現在地表示のテキストの設定*/
        .pagination a .hover-text {
            position: absolute;
            right: 15px;
            top: 0;
            opacity: 0;
            -webkit-transition: opacity 0.5s ease;
            transition: opacity 0.5s ease;
            padding-right: 15px;
        }
        .pagination a:hover {
            color: aliceblue;
            transition: 0.5s ease;
        }
        .pagination a:after {
            -webkit-transition: box-shadow 0.5s ease;
            transition: box-shadow 0.5s ease;
            width: 10px;
            height: 10px;
            display: block;
            border: 1px solid;
            transform: rotate(45deg);
            content: "";
            position: absolute;
            top: 10px;
            right: -13px;
            bottom: 0;
        }
}
@media screen and (max-width:767px) {
  .pagination {
      display: none;
  }
}

/*768px以下は現在地表示のテキストを非表示*/
@media screen and (max-width:768px) {
    .pagination a .hover-text {
        display: none;
    }
}
/*ーーーーーーページネーションーーーーーーー*/
/******************セクションNEWS********************/
.index_update {
    display: block;
    padding-bottom: 80px;
    width: 100%;
}
.index_live, .index_discography, .index_biography {
    background-image: url("../images/YN_bg_image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}






.news_icon {
    width: 50px;
    margin-right: 20px;
}
.liveinfo_icon {
    width: 80px;
    margin-right: 20px;
}
.index_newslist {
    width: 80%;
    margin: 0 auto;
    padding: 50px 90px;
}
.news_item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    border-bottom: 3px solid #CC0D50;
}
.news_item p {
    margin-bottom: 3px;
}
.sp_only {
    display: none;
}
.news_text {
    margin-left: 150px;
}
.news_disk {
    position: absolute;
    bottom: 5px;
    left: 10px;
    width: 80px;
    ;
    align-items: center;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news_disk:hover {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}
.news_disk:hover img:nth-of-type(2) {
    opacity: 0;
}
/*shopnowポップアップ-↓↓↓↓↓↓↓↓↓*/
#popup {
    display: none;
}
/*shop nowボタン*/
.popup-open {
    position: absolute;
    cursor: pointer;
    right: 0;
    bottom: 10px;
    background: #CC0D50;
    border: 2px solid #CC0D50;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 200px;
    padding: 5px 10px;
    text-align: center;
    line-height: 110%;
    width: 15%;
    font-size: 1.5rem;
}
.popup-overlay {
    display: none; /* input にチェックが入るまでは非表示に */
}
#popup:checked ~ .popup-overlay {
    display: flex;
    z-index: 99999;
    background-color: #00000070;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}
.popup-window {
    width: 50vw;
    height: 30%;
    max-width: 560px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.69);
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-shrink: 0;
}
.popup-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}
.popup_text li {}
.popup-text img {
    margin-left: 5px;
    width: 70px;
}
.popup-text:not(:last-of-type) {
    margin-bottom: 1em
}
.popup-close {
    cursor: pointer;
    position: absolute;
    top: -26px;
    right: 0;
}
.shop_link {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.shop_link:hover {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}
.shop_link:hover img:nth-of-type(2) {
    opacity: 0;
}
/*---------------shopnowポップアップ↑↑↑↑↑↑↑-------------------*/
.popup-open:hover {
    transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
}
.popup-open:hover {
    background: #fff;
    color: #CC0D50;
    transform: scale(1.1);
}
.news_text p {
    font-size: 1.6rem;
    margin: 5px;
    align-items: center;
}
/*************セクションLIVE************/
/*************youtubeスライダー************/
.index_live {
    width: 100%;
    
}
.swiper-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.89);
    width: 80%;
    z-index: 10;
}
.swiper-container .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.swiper-container .swiper-slide {
    position: relative;
    width: 100%;
}
.swiper-container .swiper-slide:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.swiper-container .swiper-slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#thumbs {
    height: 15%;
    box-sizing: border-box;
    padding: 10px 0;
}
#thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.2;
    cursor: pointer;
}
#thumbs .swiper-slide:before {
    content: none;
}
#thumbs .swiper-slide-active {
    opacity: 1;
}
.test-area {
    position: relative;
    margin-inline: auto;
    background: rgba(0, 0, 0, 0.81);
    padding: 50px 50px 100px;
}
  .youtube_link{
    display:block;
    width: 30%;
    margin: 30px auto 0;
    position: relative;
    
  }
.youtube_link {
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.youtube_link:hover {
    transform: translateY(-5px);
}






/*矢印の位置*/
.swiper-button-prev {
    left: 20px;
    z-index: 9999;
}
.swiper-button-next {
    right: 20px;
    z-index: 9999;
}
/***************セクションDISCOGRAPHY**************/
.index_discography, .index_biography {
    background-color: floralwhite;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.dg_wrapper {
    background-color: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 0px 1px 15px rgba(255, 255, 255, 0.18);
    width: 80%;
    margin: 0 auto;
}
.disc_container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
}
.pic_disc1 {
    padding: 10%;
    width: 45%;
}
.disc_textaria {
    width: 45%;
    margin-left: 5px;
    margin-top: 5%;
}
.disc_title {
    font-weight: 800;
    margin-bottom: 10px;
}
p.disc_detail {
    font-size: 1.6rem;
    line-height: 140%;
}
.click{
  width: 100px;
  margin: 10px auto;
}
.click:hover{
  width: 120px;
  margin:  0;
  transition: 0.5s ease;
  
  
}

/********モーダル設定**********/
#mordal-open {
    display: none;
}
.modaal-btn {
    display: block;
    position: relative;
    text-decoration: none;
}
.modaal-btn img {
    display: block;
    width: 100%;
    transition: 0.3s;
}
.modaal-btn:before {
    content: "click";
    display: block;
    color: #CC0D50;
   
  
    background-image: url("../images/YN_logo_white.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.55);
    width: 80%;
    height: 80%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    z-index: 3;
    transition: 0.8s;
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 0.2em;
    
}
.modaal-btn:hover img {
    filter: blur(5px);
}
.modaal-btn:hover:before {
    opacity: 1;
    margin-top: -0.5em;
}
.modaal-container {
    width: 600px;
    height: 600px;
    background-image: url("../images/YN_logo_white.png");
    background-color: inherit;
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: 80% 80%;
    overflow: hidden;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
    background: #C74B7A;
}
.disc_list {
    font-family: "Sawarabi Mincho";
    font-size: 1.5rem;
    color: whitesmoke;
}
.disc_logo {
    width: 45%;
    position: absolute;
    top: 100px;
    left: 150px;
}
ol.disc_list {
    list-style-type: decimal;
    position: absolute;
    top: 35%;
    left: 18%;
}
.black_cd {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-animation: rotate-center 3s linear 2s 10 both;
    animation: rotate-center 3s linear 2s 10 both;
}
@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.modaal-content-container {
    height: 50vh;
    overflow-y: hidden;
}
audio {
    width: 100px;
    height: 15px;
    margin-left: 10px
}
/********************セクションBIOGRAPHY***************/
.prof_name {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(204, 13, 80, 1.00);
    margin-bottom: 10px;
}
.pr_wrapper {
    width: 80%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 1px 15px rgba(255, 255, 255, 0.18);
    z-index: 999;
    margin: 0 auto;
}
.prof_container {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    align-items: center;
}
img.pic_prof {
    width: 40%;
}
.prof_textarea {
    width: 50%;
}
p.prof_detail {
    font-size: 1.6rem;
    line-height: 130%;
}

.insta_wrapper{
  width: 60%;
  margin: 100px auto 0;
  display: flex;
  
}

/***********フッター*************/
/*TOPへ戻るボタン アニメーション*/
#page-top_pick {
    z-index: 999;
    position: fixed;
}
#page-top_pick img {
    width: 5%;
    bottom: 20%;
    position: fixed;
    right: 5%;
    filter: drop-shadow(2px 2px 2px rgba(255, 255, 255, 0.8));
}
.rotate-vert-center:hover {
    -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
    animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
@-webkit-keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

/* カルーセルの外枠 */
.carousel {
  width: 600px;
  height: auto;
  display: flex;    /* 子要素を横に並べる */
  overflow: hidden; /* はみ出た部分は表示しない */
  margin: 200px auto;   /* 水平方向中央寄せ */
}
/* カルーセル内の画像 */
.insta_img {
  margin: 0;
  padding: 0;
  display: block; /* imgタグの改行のすき間を消すため */
}
/* スクロールアニメーションのキーフレーム */
@keyframes scroll {
  /* 初期位置は1個目の画像が左端 */
  0% { margin-left: 0; }      
  /* 1個分左の位置に進めて2個目の画像を左端にする */
  20% { margin-left: -100%; }
  /* 少しの間上と同じ位置 */  
  25% { margin-left: -100%; }
  /* 2個分左の位置に進めて3個目の画像を左端にする */
  45% { margin-left: -200%; }
  /* 少しの間上と同じ位置 */  
  50% { margin-left: -200%; }
  /* 以降は上と同様に繰り返し */
  70% { margin-left: -300%; }
  75% { margin-left: -300%; }
  95% { margin-left: -400%; }
  100% { margin-left: -400%; }
}
/* カルーセルの子要素にスクロールアニメーションを設定 */
.carousel > :first-child {
  animation-name: scroll;    /* キーフレーム名 */
  animation-duration: 15s;  /* 再生時間全体は20秒 */
  animation-delay: 0;      /* 読込直後から遅延無しで開始 */
  animation-iteration-count: infinite;  /* 無限に繰り返す */
}




footer {
    width: 100%;
    background-color: #2d003c;
    padding: 50px 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.footer_link {
    width: 30%;
}
ul.link_sns {
    display: flex;
    justify-content: space-between;
    height: auto;
}
.footer_sns_link {
    width: 50%;
}
.link_apia40 {
    width: 10%;
}
.footer_sns_link, .footer_nav_link, .link_apia40 {
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.footer_sns_link:hover {
    transform: translateY(-5px);
}
.footer_nav_link:hover {
    transform: translateY(-5px);
}
.link_apia40:hover {
    transform: translateY(-5px);
}

.yz_icon2{
    display: block;
    width: 10%;
    filter: drop-shadow(5px 5px 5px #aaa);
    margin: 5% auto;
}
    
/******************************************
 
モバイル TOP

*******************************************/
@media (max-width:768px) {
    #splash_logo {
        top: 50%;
        left: 90%;
        transform: translate(-50%, -50%);
    }
    .svg_img {
        width: 50%;
        height: 50%;
    }
    h1 {
        margin: 20px;
        width: 30%;
    }
    .main_nav {
        display: none;
    }
    .sec_title img {
        height: 50px;
    }
    /*タイトル装飾*/
    .sec_title {
        margin: 50px auto;
    }
    .yz_icon {
        width: 20%;
        top: 70%;
        right: 10%;
    }
    .sec_wrapper {
        height: auto;
    }
    /*ハンバーガー*/
    .hamburger-menu {
        display: block;
    }
    .top_header {
        z-index: 999;
    }
    /*＊＊＊＊＊＊＊＊＊＊＊＊TOP
  　　　スライドショーモバイル＊＊＊＊＊＊＊＊＊＊＊＊＊*/
    .slick__bg {
        width: 100%;
        background-size: cover;
        background-position: top left
    }
    .slick__bg01 {
        background-image: url(YN_HP_topcut_SP-01.jpg);
    }
    .slick__bg02 {
        background-image: url(YN_HP_topcut_SP-02.jpg);
    }
    .slick__bg03 {
        background-image: url(YN_HP_topcut_SP-03.jpg);
    }
    .slick__bg04 {
        background-image: url(YN_HP_topcut_SP-04.jpg);
    }
    .slick__bg05 {
        background-image: url(YN_HP_topcut_SP-05.jpg);
    }
    .slick__bg06 {
        background-image: url(YN_HP_topcut_SP-06.jpg);
    }
    .slick__bg07 {
        background-image: url(YN_HP_topcut_SP-07.jpg);
    }
    /*↑↑↑↑↑↑TOPモバイルCSSここまで↑↑↑↑↑↑*/
    /**************
  　　モバイルセクションNEWS
　　↓↓↓↓↓モバイルここから↓↓↓↓↓
                                                         **********************/
    .index_newslist {
        width: 90%;
        padding: 5%;
        height: auto;
    }
    .news_item {
        position: static;
        width: 100%;
        display: block;
        background-color: rgba(204, 13, 80, 0.62);
        padding: 5%;
        border-bottom: none;
    }
    .news_item p {
        text-align: center;
        margin-bottom: 3px;
    }
    .sp_only {
        display: block;
    }
    .news_text {
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .news_disk {
        width: 70%;
        position: static;
        margin: 20px auto 30px;
    }
    .popup-open {
        position: static;
        margin: 20px auto 20px;
        width: 40%;
        border-radius: 25px;
    }
    .popup-window {
        width: 70vw;
        height: 40%;
    }
    .popup-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }
    .popup_text a li img {
        width: 10px;
    }
    #page-top_pick img {
        width: 10%;
    }
}
/************
セクションLIVE モバイル

***************/
@media screen and (max-width: 768px) {
    .swiper-container {
        width: 100%;
    }
    .swiper-wrapper {
        flex-direction: column;
        row-gap: 50px;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .test-area {
        padding: 15px;
    }
    #thumbs {
        display: none;
    }
  

  
  
  
  
    /************
セクションDISCOGRAPY モバイル
セクションBIOGRAPY モバイル

***************/
    .dg_wrapper, .pr_wrapper {
        box-shadow: 0 0 0 0;
        width: 90%;
    }
    .disc_container, .prof_container {
        display: block;
        padding: 50px 20px;
        text-align: start;
    }
    .pic_disc1, .pic_prof {
        padding: 0;
        width: 90%;
        margin: 20px auto;
    }
    .pic_prof {
        margin-left: 20px;
    }
    .disc_textaria, .prof_textarea {
        width: 90%;
        margin: 50px auto;
    }
    .disc_title {
        font-weight: 800;
        margin-bottom: 20px;
    }
    .disc_detail {
        font-size: 1.6rem;
        line-height: 140%;
    }
    .disc_title {
        color: rgba(204, 13, 80, 1.00);
        font-size: 3rem;
        font-style: italic;
    }
    .pc_only {
        display: none;
    }
    /************
    
    モバイル
discモーダル部分
    
***************/
    .modaal-container {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .modaal-btn:before {
        background-size: 30%;
    }
    .disc_logo {
        width: 30%;
        position: absolute;
        top: 10%;
        left: 35%;
    }
    ol.disc_list {
        list-style-type: decimal;
        position: absolute;
        top: 50%;
        left: 20%;
    }
    /************
    モバイル
アコーディオン部分
    
***************/
  .index_biography{
    padding-bottom: 100px;
    height: auto;
    
  }
  
  footer{
    position: static;
   display: block;
    padding: 100px 50px;
    
  }
  .yz_icon2{
    width: 15%;
  }
  
  
  
  .footer_link{
    width: 100%;
  }
  
  .footer_nav ul li{
    padding: 5px;
  }
  
  
  
  .link_sns{
    width: 80%;
    padding: 10px;
    margin:10px;
  }
  
  .link_apia40{
    width: 15%;
    margin-top: 20px ;
    
  }
  .carousel{
    width: 90%;
  }
  
  
}
/*










*/