*{
    padding: 0;
    margin: 0;
}

html{
    overflow-x: hidden;
    font-size: 10px;
    font-family: "筑紫A丸ゴシック","YuMincho",sans-serif;
    color: rgb(35, 182, 35);
    /* scroll-behavior: smooth; */
}



img{
    vertical-align: bottom;
}

/*スナップスクロール*/
.container {
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
}

.container::-webkit-scrollbar{
    display:none
}

.area {
    display: flex;
    justify-content: center;
    scroll-snap-align: start;
    height: 100vh;
    width: 100vw;
}

.container h1 {
    font-size: 2rem;
    font-weight: lighter;
}

.area:nth-child(even) {
    background-color: rgb(238, 238, 238);
}

.area:nth-child(odd) {
    background-color: rgb(255, 255, 255);
}

/**/
/*================= ヘッダー ==================*/
#header img{
    position: fixed;
    top: 50px;
    left: 100px;
}

#header img:hover{
    opacity: .6;
}

/*  メニュー  */
#menu{
    position: fixed;
    top: 50px;
    right: 100px;
    font-size: 14px;
}

#menu a{
    text-decoration: none;
    color: rgb(35, 182, 35);
    margin-left: 20px;
}

#menu a:hover{
    color: rgb(35, 115, 43);
}

/*================= 本編 ==================*/
#area-0{
    position: relative;
    justify-content: center;
    scroll-snap-align: start;
    background-color: rgb(238, 238, 238);
    
}

#area-0 .first{
    display: flex;
    font-size: 70px;
    letter-spacing: .2em;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#area-0 .scrl {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    justify-content: center;
    width: 100%;
    height: 100px;
    bottom: 0px;
    box-sizing: border-box;
}

#area-0 .scrl p{
    position: absolute;
    top: 50%;
    margin: -80px;
    letter-spacing: .15em;
    font-size: 1.4rem;
}

#area-0 .top_scrl > div {
    position: relative;
    width: 1px;
    height: 100px;
    background-color: #ccc;
    overflow: hidden;
}

#area-0 .top_scrl div::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 50px;
    background-color: rgb(35, 182, 35);
    animation: animation 2.2s ease-in-out infinite;
    z-index: 2;
}

@keyframes animation{
    0% {
        transform: translateY(-50px);
    }
    100%{
        transform: translateY(150px);
    }
}
/**/

.js-curnav-switch.current {
    color: #fff;
    background-color: rgb(35, 182, 35);
    border-radius: 50%;
}

nav{
    position: fixed;
	display: flex;
    height: 100%;
	align-items: center;
	color:rgb(35, 182, 35);
    font-size: 1.3rem;
	text-align: center;
    margin-left: 50px;
}

nav ul{
    list-style: none;
}

nav ul li a{
    display: block;
    width: 20px;
    height: 20px;
    text-decoration: none;
    color: rgb(35, 182, 35);
    padding:10px;
    transition:all 0.3s;
}

nav ul li.current a,
nav ul li a:hover {
    font-weight: bold;
    color: #fff;
    background-color: rgb(35, 182, 35);
    border: solid 1px rgb(35, 182, 35);
    border-radius: 50%;
}


.container .flexbox .img{
    border: solid 2px rgb(35, 182, 35);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.container .flexbox .img:hover{
    opacity: .5;
    transform: scale(1.06);
}

.container .flexbox{
    display: flex;
    align-items: center;
    width: 1000px;
    justify-content: space-between;
}

.container .flexbox .in_flexbox span{
    color: #fff;
    background-color: rgb(35, 182, 35);
    border: solid 1px rgb(35, 182, 35);
    border-radius: 50%;
    padding: 8px;
    font-size: 1.2rem;
}

.container .flexbox .in_flexbox .play{
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.container .flexbox .in_flexbox .cate{
    font-size: 1.4rem;

    margin-top: 10px;
}

.container .flexbox .in_flexbox .box{
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    gap: 10px;
}

.container .flexbox .in_flexbox .day{
    font-size: 1.2rem;
}

/*================= profile ==================*/
/*#pf_wrap{
    background-image: url(../img/rakugaki01.png);
    background-position: top 300px right 300px;
    background-size: 130px auto;
    background-repeat: no-repeat;
}*/

.logo{
    width: 1000px;
    margin: auto;
    padding-top: 300px;
}

#profile{
    display: flex;
    align-items: center;
    width: 1000px;
    margin: auto;
    padding-top: 100px;
}

#profile .name{
    font-size: 2rem;
}

[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    text-align: center;
    top: -1.2em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.5em;
}

#profile .sentense{
    font-size: 1.4rem;
    line-height: 4rem;
}

#pf_btn{
    display: table;
    position: absolute;
    bottom: 100px;
    right: 200px;
    width: 100px;
    height: 100px;
    border: solid 2px rgb(35, 182, 35);
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    overflow:hidden;
    transition:color .4s ease-in-out;
    -webkit-box-shadow: 0 5px 0 rgb(35, 182, 35);
    box-shadow: 0 5px 0 rgb(35, 182, 35);
    text-decoration: none;
}

#pf_btn .btn{
    display: table-cell;
    vertical-align: middle;
}

#pf_btn:hover{
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    -webkit-box-shadow: 0 2px 0 rgb(35, 182, 35);
    box-shadow: 0 2px 0 rgb(35, 182, 35);
}

#pf_btn a{
    color: rgb(35, 182, 35);
    text-decoration: none;
}

#pf_btn a:visited{
    color: rgb(35, 182, 35);
    text-decoration: none;
}


/*================= work/work01 ==================*/

/*btn*/
#back_btn{
    position: fixed;
    display: table;
    top: 120px;
    left: 120px;
    width: 70px;
    height: 70px;
    border: solid 2px rgb(35, 182, 35);
    border-radius: 50%;
    background-color: rgb(35, 182, 35);
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    transition:color .4s ease-in-out;
    text-decoration: none;
}

#back_btn .button{
    display: table-cell;
    vertical-align: middle;
}

#back_btn:hover{
    opacity: .7;
}

#back_btn a{
    color: #fff;
    text-decoration: none;
}

#back_btn a:visited{
    color: #fff;
    text-decoration: none;
}
/**/

.work_in{
    max-width: 1000px;
    margin: auto;
}

.work_in h2{
    margin: 200px 0 40px;
    font-size: 2rem;
    color: #000;
}

.work_in .btn{
    display:inline-block;
    z-index:1;
    position:relative;
    font-size:14px;
    font-family:inherit;
    color:rgb(35, 182, 35);
    border-radius: 14px;
    padding:10px 20px;
    outline:0;
    border:solid 2px rgb(35, 182, 35);
    /*background-color:rgb(35, 182, 35);*/
    overflow:hidden;
    transition:color .4s ease-in-out;
    -webkit-box-shadow: 0 5px 0 rgb(35, 182, 35);
    box-shadow: 0 5px 0 rgb(35, 182, 35);
    text-decoration: none;
    /*margin-top: 200px;*/
}

.work_in .btn:hover{
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    -webkit-box-shadow: 0 2px 0 rgb(35, 182, 35);
    box-shadow: 0 2px 0 rgb(35, 182, 35);
}

.work_in .btn a{
    color: #fff;
    
}  

.work_in .btn a:visited{
    color: #fff;
}  

#work01 .inside{
    display: flex;
    gap: 100px;
    margin-top: 30px;
}

.work_in h3{
    font-size: 1.8rem;
}

.work_in .wf01,.ds01,.ds02,.ds03,.ds04,.ds05,.ds06,.ds07{
    border: solid 2px rgb(35, 182, 35);
}

.work_in .inside .sentense{
    font-size: 1.4rem;
    line-height: 3rem;
}

.work_in .inside .sentense h4{
    font-size: 1.8rem;
    margin-top: 40px;
}

.work_in .inside .sentense p{
    color: black;
}

.work_in .ds{
    position: relative;
    text-align: center;
    width: 700px;
    margin: 0px auto;
}

.work_in .margin{
    margin: 200px auto 0px;
}

.work_in .ds .main{
    display: inline-block;
    text-align: left;
}

/* ---------- 吹き出し ---------- */
.work_in .balloon{
    display: inline-block;
    font-size: 1.4rem;
    background: #fff;
    border: solid 1px #000;
    border-radius: 10px;
    padding: 10px;
}

#work01 .balloon01{
    position: absolute;
    top: 150px;
    left: -90px;
}

#work01 .balloon02{
    position: absolute;
    top: 220px;
    right: -70px;
}

#work01 .balloon03{
    position: absolute;
    top: 750px;
    left: -70px;
    text-align: left;
}

#work01 .balloon04{
    position: absolute;
    top: 1400px;
    right: -150px;
}

#work01 .balloon05{
    position: absolute;
    top: 1700px;
    left: -150px;
}

#work01 .balloon06{
    position: absolute;
    top: 1050px;
    right: -150px;
}

#work01 .balloon07{
    position: absolute;
    top: 2850px;
    right: -90px;
}

/*================= work02 ==================*/
#work02 .btn{
    margin-bottom: 40px;
}

#work02 .balloon2_1{
    position: absolute;
    top: 200px;
    right: -160px;
}

#work02 .balloon2_2{
    position: absolute;
    top: 320px;
    left: -130px;
}

#work02 .balloon2_3{
    position: absolute;
    top: 1740px;
    left: -120px;
}

#work02 .balloon2_4{
    position: absolute;
    top: 600px;
    left: -130px;
}

#work02 .balloon2_5{
    position: absolute;
    top: 1100px;
    right: -150px;
}

#work02 .balloon2_6{
    position: absolute;
    top: 2600px;
    right: -150px;
}

/*================= work03 ==================*/
#work03 .btn{
    margin-bottom: 40px;
}

#work03 .balloon3_1{
    position: absolute;
    top: 160px;
    right: -130px;
}

#work03 .balloon3_2{
    position: absolute;
    top: 240px;
    left: -70px;
}

#work03 .balloon3_3{
    position: absolute;
    top: 800px;
    right: -140px;
}

#work03 .balloon3_4{
    position: absolute;
    top: 940px;
    left: -90px;
}

#work03 .balloon3_5{
    position: absolute;
    top: 1200px;
    right: -90px;
}

/*================= work04 ==================*/
/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    padding-bottom: 40px;
    background-color: #fff;
    width: 1000px;
    margin: 0 auto;}
  
/*タブのスタイル*/
.tab_item {
    width: 50px;
    height: 50px;
    text-align: center;
    /*border-bottom: 3px solid #5ab4bd;*/
    background-color: #d9d9d9;
    border-radius: 50%;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: rgb(35, 182, 35);
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    margin: 50px 10px 0px 0px;
}
.tab_item:hover {
    opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 40px 40px 0;
    clear: both;
    overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content,
#tab05:checked ~ #tab05_content,
#tab06:checked ~ #tab06_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background-color: rgb(35, 182, 35);
    color: #fff;
}

#work04 .balloon4_1{
    position: absolute;
    top: 100px;
    right: -120px;
}

#work04 .balloon4_2{
    position: absolute;
    top: 500px;
    left: -90px;
}

#work04 .balloon4_3{
    position: absolute;
    top: 900px;
    left: -120px;
}

#work04 .balloon4_4{
    position: absolute;
    top: 650px;
    right: -110px;
}

#work04 .balloon4_5{
    position: absolute;
    top: 980px;
    right: -150px;
}

#work04 .balloon4_7{
    position: absolute;
    top: 160px;
    left: -120px;
}

#work04 .balloon4_8{
    position: absolute;
    top: 340px;
    right: -150px;
}

#work04 .balloon4_10{
    position: absolute;
    top: 140px;
    left: -90px;
}

#work04 .balloon4_11{
    position: absolute;
    top: 140px;
    left: -90px;
}

#work04 .balloon4_13{
    position: absolute;
    top: 100px;
    right: -140px;
}

#work04 .balloon4_14{
    position: absolute;
    top: 510px;
    right: -120px;
}

#work04 .balloon4_15{
    position: absolute;
    top: 2540px;
    left: -150px;
}

#work04 .balloon4_17{
    position: absolute;
    top: 140px;
    left: -90px;
}

#work04 .balloon4_18{
    position: absolute;
    top: 500px;
    right: -90px;
}

#work04 .balloon4_20{
    position: absolute;
    top: 100px;
    right: -150px;
}

/*================= work05 ==================*/
#work05 .balloon5_1{
    position: absolute;
    top: 20px;
    right: -120px;
}

#work05 .balloon5_2{
    position: absolute;
    top: 340px;
    left: -100px;
}

#work05 .balloon5_3{
    position: absolute;
    top: 540px;
    right: -100px;
}

#work05 .balloon5_4{
    position: absolute;
    top: 940px;
    left: -90px;
}

#work05 .balloon5_5{
    position: absolute;
    top: 1240px;
    right: -100px;
}

#work05 .balloon5_7{
    position: absolute;
    top: 240px;
    left: -100px;
}

#work05 .balloon5_8{
    position: absolute;
    top: 540px;
    right: -90px;
}

#work05 .balloon5_9{
    position: absolute;
    top: 840px;
    left: -70px;
}

/*================= work06 ==================*/
#work06 .balloon6_1{
    position: absolute;
    top: 500px;
    right: -90px;
}

#work06 .balloon6_2{
    position: absolute;
    top: 200px;
    left: -160px;
}

#work06 .balloon6_3{
    position: absolute;
    top: 700px;
    left: -120px;
}

#work06 .balloon6_4{
    position: absolute;
    top: 2100px;
    right: -160px;
}

#work06 .balloon6_5{
    position: absolute;
    top: 3050px;
    left: -100px;
}

#work06 .balloon6_6{
    position: absolute;
    top: 2300px;
    left: -140px;
}

#work06 .balloon6_7{
    position: absolute;
    top: 3350px;
    right: -100px;
}

/*================= work07 ==================*/
#work07 .balloon7_1{
    position: absolute;
    top: 200px;
    left: -90px;
}

#work07 .balloon7_2{
    position: absolute;
    top: 800px;
    left: -90px;
}

#work07 .balloon7_3{
    position: absolute;
    top: 560px;
    right: -90px;
}

#work07 .balloon7_4{
    position: absolute;
    top: 1000px;
    right: -130px;
}

/* -- 吹き出し：右 -- */
.balloon_r::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: -15px;
    top: 20px;
    border-left: 15px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.balloon_r::after{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: -14px;
    top: 20px;
    border-left: 15px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/* -- 吹き出し：左 -- */
.balloon_l::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -15px;
    top: 20px;
    border-right: 15px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

.balloon_l::after{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -14px;
    top: 20px;
    border-right: 15px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}