@charset "UTF-8";
/*↑ブラウザでソースを表示する際の文字化け防止対策。ファイルの先頭に書かなければならないためコメントアウトは2行目から書く。*/

/*スクロールをスムーズにするCSS*/
html{
    scroll-behavior: smooth;
}

/*全ページフォント指定CSS*/
body {
    font-family: "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/*全ページのデフォルト画面余白をなくすCSS*/
body{
    margin: 0;
}

/*ローディング画面*/
#loading{
    background-color: #ffffff;
    position: fixed;
    display: grid;
    z-index: 9999;
    inset: 0;
    place-items: center;
}

.loadingScreen{
    text-align: center;
     animation: fadeIn .5s ease 0s 1 normal;
    -webkit-animation: fadeIn .5s ease 0s 1 normal;
}

.logo{
    width: 20%;
    height: auto;
}

.loaded{
    opacity: 0;
    visibility: hidden;
}

.top-logo:hover{
    transition: 0.3s;
    opacity:0.6;
    cursor: pointer;
}

/*上からふわっと表示するロゴ*/

.logofade{
         
　opacity:0;
  animation-name: logo;
  animation-duration:3s; 
  animation-fill-mode: forwards;
    
   -webkit-animation: logo 3s ease 0s 1 normal;
}

@keyframes logo{
0% {
 opacity: 0;
 transform: translateY(-50px);
}
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

/*パンくずリストCSS*/
.breadcrumb{
    margin: 0;
    padding: .5rem 0;
    background-color: #efefef;
    font-size: 0.875rem;
}

.bread-container ol{
    margin: 0;
    padding: 0;
    list-style: none;
}

.bread-container ol li{
    margin-left: 5px;
    display: inline-block;
    &::after{
        content: "≫";
        padding: 0 0 .5rem;
        color: #B3B3B3;
    }
    &:last-child::after{
        content: none;
    }
}

.bread-container ol li a{
    text-decoration: none;
    color: #ff6347;
    padding: 5px;
}

.bread-container ol li a:hover{
    opacity:0.6;
    transition:0.3s;
}


/*<article>と<aside>を横列びにするCSS*/
.wrapper{
    display: flex;
    justify-content: space-between;
    margin: 5px;
    margin-bottom: 50px;
    min-height: 180vh;
    position: relative;
    padding-bottom: 120px;
    box-sizing: border-box;
}

/*<article>部分のcss*/    
article{
    width: 74%;
}

/*<aside>部分のcss*/
aside{
    width: 22%;
}

aside ul{
    list-style: none;
    padding-left: 0;
}

/*画面幅600pxまでのデバイスでの画面表示CSS*/
@media(max-width: 600px){
    .wrapper{
        display: block;
    }
    article{
        width: 100%;
    }
    aside{
        width:100%
    }
}

aside ul li .link-item{
    /*width: 100%;*/
    position: relative;
    align-items: center;
    /*justify-content: space-between;*/
    display: flex;
    text-decoration: none;
}

aside ul li .link-item::before{
    content: '';
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #efefef;
    border-right: 2px solid #efefef;
    margin-right: 20px;
    z-index: 2;
}

aside ul li .link-item::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #ff6347;
    border-radius: 10px;
}

/*<article>と<aside>のメディアクエリ*/
/*@media (max-width:600px){
    article{
        width:100%;
    }
    aside{
        display: none;
    }
}
*/

/*<aside>最上部QuickLinkのCSS*/
.sub-title{
    font-size: 1.375rem;
    padding: o 8px 8px;
    /*
    border-bottom: 2px solid;
    color: #ff6347;
    */
    border-bottom: 2px dotted #ff6347;
}

.side{
    list-style: none;
    margin-bottom: 60px;
    color: #ff6347;
    font-size: 1.375rem;
}

.side li{
    border-bottom: 1px #ff6347 solid;


}

.side a{
    padding: 10px;
    display:block ;
    color: #ff6347;
    background-color: #f5f5f5;
}

.side a:hover{

    color: #ff4500;
    background-color: #d3d3d3;
    transition: 0.3s;
}

/*img{
     margin: auto;
}*/

/*トップページ&Aboutページのプロフィールピクチャ画像CSS（下記.photo4を使用中のためコメントアウト中）*/
/*
.MyPicture{
        border-radius: 50%;
        width: 30%;
        height: auto;
        box-shadow: 0 0 5px 0 #000000;
        margin-left: 5%;
}
*/

/*ふわっと表示CSS*/
.fade{
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

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

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.header-sub-container{

    position: relative;
    background-color: #ff6347;
    height: 60px;
    display: flex;
    align-items: center;
        
}

.shin-logo{
    position: absolute;
    right: 0;
    left: 0;
    margin:0 auto;  
    /*margin-left: 20px;*/
    width: 150px;
    height: auto;
    display: flex;
    cursor: pointer;
    
}

.shin-logo a{
    cursor: pointer;
}

.shin-logo a img{
    width: 100%;
    height: auto;
}

@media(max-width: 600px){
    .header-sub-container{
        height: 60px;
    }

   .shin-logo{
    width: 120px;
        /*width: 125px;*/
        height: auto;
   }
}


/*スライドメニューボタン*/
.btn-menu{
    position: fixed;
    left: 5px;
    top: 5px;
    z-index: 4;
    /*padding: 1rem;*/
    color: #ff6347;
    background: #ff6347;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 1px solid #ffffff;
    border-radius: 50%;
    transition: 0.4s;
    /*vertical-align: 50%;*/
    /*transform: translateY(-5px);*/
}

.btn-menu:hover{
    opacity:0.6;
    transition:0.3s;
}

/*ハンバーガーアイコン画像のCSS*/
.humberger-img{
    width: 40%;
    height: auto;
    /*align-items: center;*//*縦方向センタリング*/
    transform: translateY(1px);
}

#menu-close{
    z-index: 9999;
}

.menu-container{
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 4;
    width: 300px;
    height: 100vh;
    background: #efefef;
    /*box-shadow: 0 0 20px rgba(0, 0, 0, .3);*/
    translate: 0 0;
    transition: translate .4s;
    z-index: 9997;
}

.menu{
    list-style: none;
    padding-top: 5rem;
    justify-content: center;
    text-align: center;
    margin-right: 3rem;
}

.menu a{
    color: #ff6347;
    display: block;
    padding: 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.menu a:hover{
    opacity: 0.6;
    transition: 0.4s;
}

.panel-open{
    translate: 300px;
}

/*スライドメニューオープン時の黒い透明マスク部分のCSS*/
.menu-mask{
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: 9996;
}

/*スライドメニューオープン時の黒い透明マスク部分を表示させるCSS*/
.mask-visible{
    opacity: 0.6;
    visibility: visible;
    z-index: 9996;
    transition: 0.4s;
}

/*BGMボタン*/
.bgmButton{
    cursor: pointer;
    /*padding: 10px 10px;*/
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff; 
    font-size: 12px;
    color: #ffffff;
    background-color: #ff6347;
    border-radius: 50%;
    /*box-shadow: 4px 4px #efefef;*/
    text-align: center;
    position: absolute;
    right: 5px;
    top: 5px;
}

.bgmButton:hover{
    opacity:0.6;
    transition:0.3s;
}

/*画面上部日本風雲のCSS*/
.japanese-cloud1{
    width: 30%;
    height: auto;
}

.japanese-cloud2{
    width: 40%;
    height: auto;
}

.left-align{
    text-align: left;
    margin-left: 5%;
}

.right-align{
    text-align: right;
    margin-right: 5%;
}

/*トップページドロップメニュー下「鳥」画像のCSS*/
.bird{
    width: 60%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*お知らせ（notification）のcss*/
 .top-info {
    /*display: flex;*/
    flex-wrap: wrap;
    width: 80%;
    height: auto;
    margin: 0 auto 50px;
    padding: 15px 20px;
    border: solid #eee;
    border-left-color: #ff6347;
    border-left-style: solid;
    border-left-width: 7px;
    background-color: #eee;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    line-height: 2;
}

.top-info dt {
        width: 20%;
}

.top-info dd {
        width: 80%;
}

.top-info dd a {
        color: #0064a5;
    text-decoration: underline;
}

/*トップページお知らせ日付部分CSS(角丸四角形）*/
/*
.date{
    display: inline-block;
    width: 150px;
    padding: 5px;
    padding-left: 10px;
    border-radius :5px;
    background-color:#d6d6d6;
    color: #000000;
}
*/

/*トップページお知らせ日付部分CSS（右端のみ円形）*/

.date{
    display: inline-block;
    width: 150px;
    padding:0.5rem;
    padding-left: 10px;
    border-radius :3px  2rem 2rem 3px;
    background-color:#d6d6d6;
    color: #000000;
}


/*NEWマーク（アイコン）のCSS*/
.new-mark{
    padding:5px;
    border:1px solid #ff0000;
    font-size:medium;
    color:#ffffff;
    background-color:#ff0000;
    border-radius:5px;
    margin-left: 10px;
}

header{
    text-align: center;
}

/*見出し枠のcss*/
.midashi{
    text-align: left;
    padding : 0.5rem;
    border-left: 4px solid #ff6347;
    background-color: #eee;
    border-radius :3px;
}

/*小見出し（オレンジドット）のcss*/
.komidashi{
    border-bottom: 2px dotted #ff6347;
    font-size: medium;
}

/*小見出し（オレンジライン）のcss*/
.komidashi-solid{
    border-bottom: 2px solid #ff6347;
    font-size: medium;
}

.komidashi::before{
    content: '◼︎';
    color: #ff6347;
}

/*ブログ（記事）ページ見出しCSS*/
.midashi-article{
    text-align: left;
    padding : 0.5rem;
    border-left: 4px solid #ff6347;
    background-color: #ff6347;
    border-radius :3px;
    color: #ffffff;
}

/*ホームページ講座各ページページ見出しCSS*/
.midashi-seminar{
    text-align: left;
    padding : 0.5rem;
    border-left: 4px solid #ff6347;
    background-color: #ff6347;
    border-radius :3px;
    color: #ffffff;
}

/*半透明エフェクトのCSS*/
/*
.opacity-effect:hover{
transition: 0.3s;
opacity:0.6;
}
*/    

/*divでクラスがfade2のもののcss*/
div .fade2{
    overflow: hidden;
}

/*横からふわっと表示*/
.fade2{  
    opacity:1;
    animation-name: About;
    animation-duration:2s; 
    animation-fill-mode: forwards;
   -webkit-animation: About 2s ease 0s 1 normal;
}

@keyframes About{
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*.sns-linkCSSはありません。その代わりに「.grid3」がSNSメニューのCSSになります。*/

/*トップページ上部SNSリンクアイコンのhover CSS*/
.sns-link:hover{
    transition: 0.3s;
    opacity:0.6;
}

/*トップページ上部snsアイコン（note）のCSS*/
/*.note-link{
    cursor: pointer;
    padding: 7px 70px;
    border: 3px solid #ff6347;
    font-size: medium;
    color: #ff6347;
    background-color: transparent;
    border-radius: 20px;
}
*/

/*noteリンクボタンの半透明エフェクト*/
/*.note-link:hover{
    transition: 0.3s;
    opacity:0.6;
}
*/

/*noteリンクボタンその２*/
.note-link{
    cursor: pointer;
    padding: 5px 60px;
    border: 2px solid #ff6347;
    font-size: 15px;
    color: #ffffff;
    background-color: #ff6347;
    border-radius: 20px;
    margin: 0 auto;
    z-index:9999;
    box-shadow: 4px 4px #efefef;
}

.note-link:hover{
    background-color:#ffffff;
    color:#ff6347;
    transition:0.3s;
    box-shadow: 4px 4px #ff6347;
}

.note-link{
     animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

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

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*画面サイズが600px以下の時のnoteリンクボタンが横幅100%表示css*/
/*
@media(max-width: 600px){
   .note-link{
    width: 100%;
   } 
}
*/

/*トップページヘッドラインリンクの色指定css（左オレンジボーダー枠内のリンク）*/
.top-link{
    color: #ff6347;
}

.top-link:hover{
    transition: 0.3s;
    opacity:0.6;
}

/*雲（パララックス効果）のCSS*/
.parallax-container {
  position: relative;
  /*height: 600px;*/
}

.parallax-img {
  position: absolute;
  top: 0;
  right: 5%;
  width: 15%;
  z-index: -1;
  /*transform: translateY(0);*/
  /*transition: transform 0.1s linear;*/
}

/*MUSICページ・トップページのミュージック欄*/
.card1{
    display: flex;
    width: 95%;
    height: auto;
    margin: auto;
    background-color: #efefef;
    border-radius: 10px;
    box-shadow: 4px 4px #d6d6d6;
    margin-bottom: 10px;
}

.music-name-sentence{
    width: 50%;
    padding: 15px;
    margin: auto;
}

.music-link{
    width: 50%;
    padding: 15px;
    margin: auto;
}

/*
.music-link:hover{
    transition: 0.3s;
    opacity:0.6;
}
*/

@media(max-width: 600px){
    .card1{
        flex-direction: column;
    }

    .music-name-sentence{
        width: 90%;
        padding: 15px;
        padding-bottom: 5px;
    }

    .music-link{
        width: 90%;
        padding: 15px;
        padding-bottom: 5px;
    }
}

/*Movieページ・トップページ「ムービー」欄*/
.movie-card1{
    display: flex;
    width: 95%;
    height: auto;
    margin: auto;
    background-color: #efefef;
    border-radius: 10px;
    box-shadow: 4px 4px #d6d6d6;
    margin-bottom: 10px;
}

.movie-name-sentence{
    width: 50%;
    padding: 15px;
    margin: auto;
}

.movie-link{
    width: 50%;
    padding: 15px;
    margin: auto;
    border-radius: 20px;
}

@media(max-width: 600px){
.movie-card1{
    flex-direction: column;
}

.movie-name-sentence{
    width: 90%;
    padding: 15px;
    padding-bottom: 5px;
}

.movie-link{
    width: 90%;
    padding: 15px;
    padding-bottom: 5px;
}
}

/*トップページへ戻るボタン*/
.TopPageBack{
    width: 300px;
    cursor: pointer;
    padding: 7px 7px;
    border: 2px solid #ff6347;
    font-size: medium;
    color: #ffffff;
    background-color: #ff6347;
    border-radius: 20px;
    box-shadow: 4px 4px #efefef;
}

/*hover時に文字色、背景色が反転するCSS*/
.TopPageBack:hover{
    background-color:#ffffff;
    color:#ff6347;
    transition:0.3s;
    box-shadow: 4px 4px #ff6347;
}

/*各ブログの「ブログ一覧へ戻る」「トップページへ戻る」メニュー*/
.TopPageBack-menu{
    display: grid;
    gap: 26px;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    margin: auto;
    }

@media(max-width: 600px){
    .TopPageBack-menu{
        display: grid;
        gap: 26px;
        grid-template-columns: 1fr;
        width: 70%;
        margin: auto;
    }
}

/*hover時に半透明になるCSS*/
/*
.TopPageBack:hover{
    transition: 0.3s;
    opacity:0.6;
}
*/

.movie-list div iframe{
    height: 300px;
}

/*各ページ内のgrid表示*/
.grid{
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    margin-top: 6%;
    margin-bottom: 50px;
}

/*各ページ内のgrid表示その２*/
.grid2{
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    margin-top: 6%;
    margin-bottom: 50px;
}

/*box-shadowをつけるCSS*/
.shadow{
    box-shadow: 4px 4px #efefef;
}

/*トップページSNSリンクアイコンのcss*/
.grid3{
    display: grid;
    gap: 26px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 40%;
    margin: auto;
}

.grid3 div{
    width: 100%;
    text-align: center;
}

.grid3 div a i{
    color: #ff6347;
}

@media(max-width: 600px){
    .grid3{
        display: grid;
        gap: 26px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        width: 70%;
        margin: auto;
    }

    .grid3 div{
        width: 100%;
        text-align: center;
    }

    .grid3 div a i{
        color: #ff6347;
    }
}

/*Galleryページのcss*/
.big-photo{
    display: block;
    margin: auto;
    max-width: 500px;
    max-height: auto;
}

.gallery {
    max-width: 100%;
    margin-top: 10%;
}


/*
.title{text-align: center;
}
*/

/*センタリングCSS*/
.centering{
    text-align: center;
}

/*文章をセンタリングするCSS*/
.sentence{
    text-align: center;
}


@media(max-width: 600px){

    .gallery{

        margin-top: 20%;
    }
}

.photo{
    width: 300px;
    height: auto;
}

.photo:hover{
    transition: 0.3s;
    opacity:0.6;
}

.photo3{
    width: 300px;
    height: auto;
    }

/*トップページ&Aboutページプロフィールピクチャ（モーダルウィンドウ）のCSS*/
.photo4{
    border-radius: 50%;
    width: 30%;
    height: auto;
    box-shadow: 0 0 5px 0 #000000;
    margin-left: 5%;
}

.photo4:hover{
    transition: 0.3s;
    opacity:0.6;
}

ul{
    list-style: none;
}

/*モーダルウィンドウのCSS*/
.photo-grid{
    display: grid;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
    /*border: solid 1px #000000;*/ /*実際に使う際は、線は消してかまいません。*/
    list-style: none;

}

.photo-grid li img{
    width: 100%;
    cursor: pointer;
}

.modal{
    display: none;
    width: 50%;
    visibility: hidden;
    opacity: 0;
    border-radius: 20px;
}

@media(max-width: 600px){
    .modal{
        width: 100%;
    }
}

.modal img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.photo-mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    visibility: hidden;
    opacity: 0;
    z-index: 9998;
}

.scale-up{
    position: fixed;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    visibility: visible;
    opacity: 1;
    z-index: 9999;

}

.photo-mask-visible{
    visibility: visible;
    opacity: 0.6;
    transition: 0.4s;
}

.modal-close-button-visible{
    visibility: visible;
    opacity: 0.6;
    transition: 0.4s;
}

.modal-close-button{
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    top: -10px;
    right: 5px;
    z-index: 9999;
    border-radius: 50%;
    border: 2px solid #000000;
    color: #ffffff;
    background-color: #000000;
    opacity: 0.6;
    font-size: 16px;
    font-weight: bold;
    /*font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;*/
}

/*ブログ一覧の各記事リンク（カードデザイン）*/
.blog-grid{
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

/*セミナー一覧(セミナーページ)の各記事リンク（カードデザイン）*/
.seminar-grid{
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.blog-link{
    text-decoration: none;
}

.wrap{
    display: flex;
    /*grid-template-columns: 1fr 1fr 1fr;*/
    align-items:center;
    /*flex-wrap: wrap;*/
    /*gap: 10px;*/
    width: 95%;
    margin: auto;
    margin-bottom: 4px;
    background-color: #efefef;
    border-radius: 10px;
    box-shadow: 4px 4px #d6d6d6;
    /*margin: 10px 0 10px 0;*/
}

.wrap:hover{
    transition: 0.3s;
    opacity:0.6;
    /*ホバー時にもbox-shadowを記述しないと表示に不具合が出る。理由はわからない...*/
    box-shadow: 4px 4px #d6d6d6;
}

.image{
    width: 30%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;

}

.text{
    width: 70%;
    padding: 0 30px;
    color: #000000;
    font-size: 12px;
}

.item-img{
    display: block;
    width: 100%;        
    height: auto;
    border-radius: 10px;
}

@media (max-width:600px){
    .text{
        font-size: 10px;
    }
}

/*ブログ本文のマージン（周りのスペース）を配置する*/
.blog_content{
padding: 10px;
}

/*HTML・CSS・JavaScriptアイコンのCSS*/
/*「html」と表示するアイコン（リンクのないボタン）*/
.html-icon{
    padding:5px;
    border:1px solid #00a3af;
    font-size:medium;
    color:#ffffff;
    background-color:#00a3af;
    border-radius:5px;
}

/*「CSS」と表示するアイコン（リンクのないボタン）*/
.css-icon{
    padding:5px;
    border:1px solid #dc143c;
    font-size:medium;
    color:#ffffff;
    background-color:#dc143c;
    border-radius:5px;
}

/*「javascript」と表示するアイコン（リンクのないボタン）*/
.javascript-icon{
    padding:5px;
    border:1px solid #ff8c00;
    font-size:medium;
    color:#ffffff;
    background-color:#ff8c00;
    border-radius:5px;
}

.icon-flex{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;   
}

@media(max-width: 600px){
    .html-icon{
        font-size: 10px;
    }

    .css-icon{
        font-size: 10px;
    }

    .javascript-icon{
        font-size: 10px;
    }
    
}

/*Social MediaページSNS POST埋め込み*/
.sns-post-grid{
    display: grid;
    width: 98%;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    gap: 10px;
    justify-content: center;/*横方向センタリング*/
    margin: auto;
}

.sns-post-item{
    width: 98%;
    height: auto;
    background-color: #ff6347;
    border-radius: 10px;
    box-shadow: 4px 4px #efefef;
    overflow: hidden;
    margin-bottom: 10px;
}

.sns-post-item p{
        text-align: center;
    color: #ffffff;
}

@media(max-width: 600px){
    .sns-post-grid{
        grid-template-columns: 1fr;
    }

}

/*各ページのオレンジ色イラストの配置CSS*/
.illustration{
    text-align: center;
}

/*トップページマジシャン画像（トップページMovie欄画像）SCC*/
.magician{
    width: 10%;
    height: auto;
}

/*トップページmusic_lover画像（トップページ「スペシャルジュークボックス」欄画像）CSS*/
.music_lover{
    width: 10%;
    height: auto;
}

/*トップページ両手あげhuman画像（トップページWorks欄画像）CSS*/
.human{
    width: 10%;
    height: auto;
}

/*Aboutページspirit画像CSS*/
.spirit{
    width: 10%;
    height: auto;
}

/*Aboutページウーマンマジシャン画像CSS*/
/*
.woman-magician{
    width: 10%;
    height: auto;
}
*/

/*Social-Mediaページマジシャン画像CSS*/
.magician2{
    width: 12%;
    height: auto;
}

/*トップページ下部Social-Media欄running-man画像CSS*/
.running-man{
    width: 10%;
    height: auto;
}

/*Galleryページマジシャン画像CSS*/
.magician3{
    width: 12%;
    height: auto;
}

/*トップページマジシャン画像（トップページAbout欄画像）CSS*/
.magician4{
    width: 12%;
    height: auto;
}

/*Movieページrunning-man2画像CSS*/
.running-man2{
    width: 12%;
    height: auto;
}

/*Contactページrunning-magician画像CSS*/
.running-magician{
    width: 10%;
    height: auto;
}

/*Worksページhuman2画像CSS*/
.human2{
    width: 10%;
    height: auto;
}

/*トップページsuper magician画像CSS（トップページGallery欄画像）*/
.supermagician{
    width: 10%;
    height: auto;
}

/*トップページChar画像CSS（トップページ「ホームページ講座欄画像）*/
.Char{
    width: 12%;
    height: auto;
}

/*トップページjedai画像CSS（トップページ「ホームページ講座欄画像）*/
.jedai{
    width: 12%;
    height: auto;
}

/*トップページhyper magician画像CSS（トップページ下部Contact欄画像）*/
.hypermagician{
    width: 12%;
    height: auto;
}

/*トップページ木々画像の配置CSS*/
.illustration-right{
    text-align: right;
    margin-right: 20%;
}

/*aside部分の木々画像CSS*/
.tree{
    width: 40%;
    height: auto;
}

/*aside部分の木々画像CSS（メディアクエリ）*/
@media (max-width:600px){
    .tree{
        width: 20%;
    height: auto;
    } 
}

/*横幅100%、縦幅autoにするCSS*/
.width100{
    width: 100%;
    height: auto;
}

/*半透明エフェクトのCSS*/
.opacity-effect:hover{
transition: 0.3s;
opacity:0.6;
}

/*角丸にするCSS*/
.rounded-corners{
    border-radius: 10px;
}

/*「×ボタン付き広告」CSS*/
.image-function{
        margin: 0 auto;
        position: fixed;
        bottom:3%;
        left:40%;
        width: 20%;
        height: auto;
        z-index: 9995;
    }

    .ad-image{
        width: 100%;
        height: auto;
        margin: 0 auto;
        border-radius: 20px;
    }

.close{
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    top: -15px;
    right: -0px;
    z-index: 9999;
    border-radius: 50%;
    border: 2px solid #000000;
    color: #000000;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    /*font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;*/
}

.floating-image:hover{
    opacity: 0.6;
    transition:0.3s;
}

.hided{
    visibility: hidden;
    opacity: 0;
}

/*広告等を下からふわっと表示*/
.ad-fade{
         
　opacity:0;
  animation-name: logo;
  animation-duration:2s; 
  animation-fill-mode: forwards;
    
   -webkit-animation: ad 2s ease 0s 1 normal;
}

@keyframes ad{
0% {
 opacity: 0;
 transform: translateY(50px);
}
  100%{
    opacity: 1;
    transform: translateY(0);
  }
} 

/*ページトップ（ページ先頭）へ戻るボタンのCSS*/
.page-top{
    display: block;
    position: sticky;
    bottom: 5%;
    right: 5%;
    visibility: hidden;
    opacity: 0;
    width: 7%;
    z-index: 5000;
    padding: 0;
    margin-left: auto;
    background: transparent;
    border: none;
    transition: 0.3s;
}

.page-top img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media(max-width: 600px){
    .page-top{
        width: 10%;
    }
    .page-top img{
        border-radius: 5px;
    }
}

/*パソコンのみホバーを適用し、スマホはホバーを無効にするCSS（ページ先頭へ戻るボタンのみ適用）*/
@media (hover: hover) {
    .page-top img:hover{
        transition: 0.3s;
        opacity:0.6;
    }
}

/*表示(ページトップへ戻るボタン用)*/
.hyouji{
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

/*フッター*/
footer {
  width: 100%;
  height: 120px; 
  text-align: center;
  padding: 50px 0;
  background-color: #ff7f50;
  position: absolute;
}

footer ul{
    list-style:none;
    padding-left: 0;

}

footer ul li{
    display: inline-block;
    margin:10px;
    
}

footer ul li a{
    display: block;
    margin: 0;
    padding: 10px 0 6px;
    color: #000;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

footer ul li:hover a{
    display: block;
    margin: 0;
    padding: 10px 0 6px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s;
}
footer p{
    color: #000;
    font-size: 14px;
    
}
