html{
    scroll-behavior: smooth;

}

body{
    color: #333;
    overflow-x: hidden;
}

/*背景色*/
.bg_white{
    background-color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
}

.bg_orange{
    background-color: #F99300;
    color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
}

.bg_lightorange{
    background-color: #FFFAF3;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
}

.bg_lightgray{
    background-color: #f9f9f9;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
}

/*枠組み*/
#main{
z-index: 1;
max-width: 1140px;
margin: 0 auto;
padding: 0 15px;
}

.inner{
    max-width: 1140px;
    margin: auto;
}

.inner2{
    max-width: 1140px;
    margin: 60px auto;
    display: flex;
}

.outer{
    position: relative;
    overflow: hidden;
    margin-top:90px;
}

section{
    margin: 60px 0;
}

.contents_left{
    width: 48%;
}

.contents_right{
    width: 48%;
}

.btn_orange a{
    display: block;
    text-decoration: none;
    color: #F99300;
    border: 1.5px solid #F99300;
    border-radius: 5px;
    margin: 30px auto;
    text-align: center;
    width: 300px;
    padding: 20px 0;
    transition: 0.3s ;
}

.btn_orange a:hover{
    background-color: #F99300;
    color: #FFF;
}

.btn_white a{
    border: 1.5px solid #Fff;
    border-radius: 5px;
    margin: 30px auto;
    text-align: center;
    width: 300px;
    padding: 20px 0;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn_white a:hover{
    background-color: #FFF;
    color: #F99300;
}

#top_contact .btn_orange a{
    margin: 30px 0;
}

section#contact{
    margin-bottom: 0;
}

.mgn_btm_60{
    margin-bottom: 60px;
}

.mgn_top_60{
    margin-top: 60px;
}

.mgn_btm_30{
    margin-bottom: 30px;
}

.mgn_top_30{
    margin-top: 30px;
}

.img_radius img{
    border-radius: 10px;
}

 ul.ul_orange li::before{
    content: '●';
    color: #F99300;
    font-size: 0.6em;
    padding-right: 10px;
    position: relative;
    bottom: 3px;
}

.ul_border{
    border: #666 solid 1px;
    padding: 15px;
}


.head_square h2::before{
    content: '';
    display: inline-block;
    background-image: url(/_common/themes/wakayama-u/socinfo/tmpl-img/studio/top_contact_h2.png);
    margin-right: 10px;
    width: 17px;
    height: 17px;
    background-size: contain;
    vertical-align: middle;
}

.mgn_left a{
    margin: 30px 0;
}

p.p_large{
    font-size: 1.2em;
    margin-top: 10px;
}

.flex{
    display: flex;
    justify-content:
    flex-start; 
}

.between{
    justify-content: space-between!important;
}

blockquote a{
    color: #F99300;
    transition: 0.3s;
}

blockquote a:hover{
    opacity: 0.7;
    
}

blockquote a::before{
    content: '?';
    color: #F99300;
    font-size: 0.8em;
    text-decoration: none;
    padding-right: 4px;
    display: inline-block;
}
/*ヘッダー*/
header{
    width: 100%;
    background-color: #fff;
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 3px 12px -10px;
}

.spacebox{
    display: none;
}


header h1 img{
    height: 50px;
    float: left;
}

header nav ul{
    display: flex;
    margin-left: auto;
}

header nav li{
    width: 150px;
    text-align: center;
    font-size: 1.2em;
}

header nav a{
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    transition:0.8s;
}

header nav a:hover{
    opacity: 0.5;
}

.nav_contact a{
    border: #333 1px solid;
    border-radius: 100Vh;
    background-color: #333;
    color: #FFF;
    padding: 10px 20px;
    scroll-behavior: smooth;
}
/*ハンバーガー*/
#nav-content nav ul{
    display: block;
}

#nav-content nav ul li{
    width: 100%;
}


/* 位置を右上に固定 */
#toggle {
    position: fixed;
    top: 25px;
    right: 25px;
    display: none;
}
/* ハンバーガーメニューの大きさ指定 */
#toggle-box {
    position: relative;
    width: 36px;
    height: 32px;
    cursor: pointer;
}
#toggle-box > span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: transform .6s ease-in-out;
}
#toggle-box > span:nth-child(1) {
    top: 0;
}
#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニュークリックで、「×」マークにアニメーション */
.is-open #toggle-box > span {
    background: #fff;
}
.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

/* 重なり順指定 */
#toggle {
    z-index: 1000;
}
#main {
    position: relative;
    z-index: 990;
}

/* 中身メニュー、初期は非表示 */
#nav-content {
    display: none;
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #F99300;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}
#nav-content ul {
  list-style: none;
}
#nav-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 30px 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
#nav-content a:hover {
  opacity: 0.6;
}

/* is-openクラスが追加されると、メニューが表示される */
.is-open {
    overflow: hidden;
}
.is-open #nav-content {
  z-index: 999;
  visibility: visible;
  opacity: 1;
}
.is-open #nav-content a{
  pointer-events: auto;
}

/*概要*/
#top_about{
    max-width: 820px;
    margin: 60px auto;
}

#top_about_banner ul{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

#top_about_banner li{
    width:200px;
    height: 200px;
    font-size: 0.9em;
    text-align: center;
    border: 1.5px solid #333;
    border-radius: 10px;
    display: block;

}

#top_about_banner li img{
    margin: auto;
}

#top_about_banner p{
    padding: 0 10px;
}

/*フロー*/
#top_flow{
    padding: 60px 15px;
    margin: 0!important;
}

#top_flow h1{
    margin-bottom: 60px;
}

#top_flow ol{
    counter-reset: item;
}

#top_flow li{
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

#top_flow li::before{
    counter-increment: item;
    content: counter(item);
    position: absolute;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    background-color: #F99300;
    top: 0;
    left: 0;
    border: 1px solid;
    border-radius: 50%;
    padding: 20px;
}

.list_header{
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

/*撮影?編集*/
#top_service_movie{
    display: flex;
    justify-content: space-between;
}

#top_service_movie h1::before{
    content: url(/_common/themes/wakayama-u/socinfo/tmpl-img/studio/top_h1.png);
    position: absolute;
    top: 0;
    left: 0;
}

#top_service_movie h1{
    position: relative;
    padding-left: 90px;
    margin-bottom: 20px;
}

#top_service_movie h1 span{
    display: block;
    font-size: 0.5em;
}

#top_service_movie p{
    margin-bottom: 20px;
}

#top_service_movie img{
    width: 100%;
    padding-left: 20px;
}

/*ライブ配信*/
#top_service_live{
    display: flex;
    justify-content: space-between;
}

#top_service_live h1::after{
    content: url(/_common/themes/wakayama-u/socinfo/tmpl-img/studio/top_h2.png);
    position: absolute;
    top: 0;
    right: 0;
}

#top_service_live h1{
    position: relative;
    text-align: right;
    padding-right: 90px;
    margin-bottom: 20px;
}

#top_service_live h1 span{
    display: block;
    font-size: 0.5em;
}

#top_service_live p{
    margin-bottom: 20px;
}

#top_service_live img{
    width: 100%;
    padding-right: 20px;
}

/*スタジオ*/
#top_service_studio h1{
    text-align: center;
    color: #F99300;
    margin-bottom: 30px;
}

.head_ruby{
    display: block;
    font-size: 0.7em;
    padding-top: 10px;
}

.head_studio{
    border-bottom: 2px solid #F99300;
}

#top_service_studio ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#top_service_studio li{
    max-width: 370px;
    display: block;
}

/*Moodle*/
#top_service_moodle h1{
    margin-bottom: 30px;
}

#top_service_moodle{
    display: flex;
    justify-content: space-between;
}

#top_service_moodle p{
    margin-bottom: 20px;
}

/*アクセス*/
#top_access p{
    margin-bottom: 20px;
}

#top_access .btn_orange a{
    margin: 30px 0;
}

#top_access img{
max-width:600px;
}

/*お問合せ*/

section#top_contact{
    margin-top: 0;
}

#top_contact h1{
    margin-bottom: 30px;
}

#top_contact p{
    font-size: 1.2em;
    margin-top: 10px;
}

section#top_contact{
    margin-bottom: 0;
}

#top_contact .inner{
    padding: 60px 0;
}

.calendar h2{
    margin-bottom: 30px;
}

.calendar div{
    background-color: #FFF;
}

.calendar iframe{
    padding: 10px 10px 20px 10px;
}

footer{
    text-align: center;
    padding: 10px 0!important;
    position: sticky!important;
    top: 100vh;
    transform:translateX(0%)!important;
}
/****************子ページ*/
.main_visual h1{
    text-align: center;
    padding: 200px 0;
    color: #Fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    font-weight: bold;
    font-size: 3em;
}

.page_about p{
    font-size: 1.2em;
    padding-bottom: 10px;
}

/*個別ページ共通項目*/
section.page_visual{
    margin: 0 0;
}

#page_contents{
    display: flex;
    justify-content: space-between;
} 

#page_contents h1{
    margin-bottom: 30px;
}

#page_contents p{
    margin-bottom: 20px;
}


#page_contents ul li{
    padding-bottom: 5px;
}



#page_contents img{
    margin-bottom: 30px;
}

.page_flow p{
    margin-bottom: 0!important;
}

/****************動画撮影?編集について*/

#movie{
    background-image: url(/_themes/wakayama-u/aic/studio/css/movie_main.jpg);
    background-repeat:no-repeat;
    background-position:center; 
    background-size:100%;     
}





/*ライブ配信について*/
#live{
    background-image: url(/_themes/wakayama-u/aic/studio/css/live_main.jpg);
    background-repeat:no-repeat;
    background-position:center; 
    background-size:100%;     
}

/*スタジオについて*/
#studio{
    background-image: url(/_themes/wakayama-u/aic/studio/css/studio_main.jpg);
    background-repeat:no-repeat;
    background-position:center; 
    background-size:100%;     
}

ul.studio_photo{
    flex-wrap: wrap;
    font-size: 0.8em;
}

.studio_photo li{
    display: block;
    max-width: 250px;
    margin-bottom: 30px;
}

.studio_photo li img{
    margin-bottom: 10px!important;
}

/*moodleサポート*/
#moodle{
    background-color: #F99300;
    background-image: url(/_themes/wakayama-u/aic/studio/css/top_service3.png);
    background-repeat:no-repeat;
    background-position:center; 
}

.page_moodle p{
    font-size: 1em;
    padding-bottom: 30px;
}

table.onetime{
    border-collapse:  collapse;
}

.onetime th{
    border: #333 1px solid;
    text-align: left;
    width: 100px;
    padding: 5px;
}

.onetime td{
    border: #333 1px solid;
    padding: 5px;
}

@media screen and (max-width:1140px) {
    .outer{
        margin-top: 120px;
    }
    header{
        flex-wrap: wrap;
        height: auto;
    }

    header h1{
        margin-top: 20px;
    }

    .spacebox{
        display: block;
        width: 100%;
    }

    header nav{
        display: block;
        margin: 0 auto;
    }

    header nav ul{
        margin: 20px auto;
    }

    header nav li{
    }


    #top_service_studio ul{
        justify-content: center;
    }
}

@media screen and (max-width:800px){
    .studio_photo li{
        width: 48%;
        max-width: 48%;
    }
}

@media screen and (max-width:770px){
    .outer{
        margin-top: 60px;
    }
    header{
        height: 90px;
    }
    .sp{
        display: none;
    }

    .sp_btm_30{
        margin-bottom: 30px;
    }
    .block{
        display: block;
    }

    .menu-pc{
        display: none;
    }

    #toggle{
        display: block;
    }

    .is-open #nav-content{
        display: block;
    }
    .contents_left,.contents_right{
        width: 100%;
    }

    #top_about_banner ul{
        display: block;
    }
    #top_about_banner ul li{
        width: 100%;
        height: auto;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border: 1px solid #333;
    }
}

table.stream{
border-collapse:  collapse;
width: 100%;
}

table.stream th{
    border:solid 1px  #333;
    background-color: #d8dfe7;
}

table.stream td{
border:solid 1px  #333;
text-align: center;
padding: 5px;
}
.stream img{
    width: 100%;
    max-width: 500px;
}

/*お知らせページ*/
.contentArticleDoc{
    
}

.contentArticleDoc .inquiry{
    display: none;
}

.inner.news{
    max-width: 700px;
    padding:200px 0 0 0;
}

.news h1{
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    margin-bottom: 10px;
}



.news .publishedAt{
    text-align: right;
    font: 0.5em;
}

.news .body{
    margin: 60px 0;
}

.news .body p{
    padding-bottom: 30px;
}

.news .body img{
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

.news .back{
    display: none;
}

/*お知らせ一覧*/
.news .attributes{
    display: none;
}

.news .feed{
    display: none;
    text-align: right;
    margin-bottom: 30px;
}

.news .feed a,.news .feed a:visited{
    text-decoration: none;
    font-size: 0.3em;
    color: #FFF;
    background-color: #999;
    padding: 5px;
    transition: 0.3s ;
}

.news .feed a:hover{
    opacity: 0.7;
    color: #FFF;
}

.news .docs dt{
    font-size: 0.8em;
}

.news .docs dd{
    margin-bottom: 30px;
}

.news a:visited,.news a{
    color: #6891ea;
}

.news a:hover{
    color: #F99300
}

.news_btn{
    width: 200px;
    margin: 60px auto 60px auto;
    text-align: center;
}

.news_btn a,.news_btn a:visited{
    color: #fff;
    background-color: #888;
    padding: 5px 0;
    display: block;
    border: #333 solid 1px;
    text-decoration: none;
    transition: 0.3s ;
}

.news_btn a:hover{
    opacity: 0.7;
    color: #FFF;
}


.news .inquiry{
    display: none;
}


section.top_news{
    margin: 0;
    padding-top: 60px;
    padding-bottom: 30px;
}

.top_news h2{
    font-size: 2em;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.top_news .tabs{
    display: none;
}

.top_news .date{
    font-size: 0.8em;
}

.top_news dd a:visited,.top_news dd a{
    color: #6891ea;
}

.top_news dd a:hover{
    color: #F99300;
}

.top_news dd{
    margin-bottom: 30px;
}

.news .btn_orange a,.news .btn_orange a:visited{
    display: block;
    text-decoration: none;
    color: #F99300;
    border: 1.5px solid #F99300;
    border-radius: 5px;
    margin: 30px auto;
    text-align: center;
    width: 300px;
    padding: 20px 0;
    transition: 0.3s ;
}

.news .btn_orange a:hover{
    background-color: #F99300;
    color: #FFF;
}

/*制作事例*/
.contentArticleDoc{
    
}

.contentArticleDoc .inquiry{
    display: none;
}

.inner.works{
    max-width: 700px;
    padding:200px 0 0 0;
}

.works h1{
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.works h2{
    background-color: #e7e7e7;
    padding: 12px 0px 10px 20px;
    margin-bottom: 10px;
}

.works .publishedAt{
    text-align: right;
    font: 0.5em;
}

.works .body{
    margin: 60px 0;
}

.works .body p{
    padding-bottom: 30px;
}

.works .body img{
    display: block;
    margin: 0 auto;
}

.works .back{
    display: none;
}





.moodle_manual h2{
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0.5em;
    background: #fffaf4;
    border-left: solid 5px #F99300;
}

.moodle_manual .body img{
    max-width: 600px;
    margin: 0;

}

.moodle_manual h3{
    margin-bottom: 15px;
}

.moodle_manual h4::before{
 content:"●";
}

.moodle_manual .publishedAt{
    display: none!important;
}


.inner.moodle_arc{
    padding-top: 150px!important;
}

.moodle_arc h2{
    font-size: 1em;
}

.moodle_arc div{
    margin-bottom: 30px;
}

.moodle_arc div a{
    display: block;
    color: #6891ea;
    text-decoration: none;
    padding: 5px 0;
}

.moodle_arc div a:visited{
    color: #6891ea;
}

.moodle_arc div a:hover{
    color: #F99300;
}


.toc {
    margin-bottom: 60px;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.toc h2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #F99300;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.toc ul {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.toc > ul {
    padding: 1em 1em 1em 3em;
}

.toc ul ul {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc ul li {
    padding: 5px 0;
    font-weight: 600;
}

.toc ul ul li {
    font-weight: 500;
    font-size: .9em;
}

.toc ul a {
    color: #333;
    text-decoration: none;
}
