@charset "utf-8";
/* CSS Document */
html{
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body{
    font-family: Arial, "Helvetica Neue", sans-serif;
    background-image:url(../img/background-va.png);
    top: 0px;
    left: 0px;
    margin: 0px;
    background-size: cover;
}
ul,li,ol,p,h1,h2,h3{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
a{
    text-decoration: none;
    color: #000;
}
img{
    width:100%;
}
header{
    display: flex;
    align-items: center;
    background-color: #f1caff;
    position: fixed;
    width: 100%;
    min-height: 100px;
    padding: 10px 30px;
    z-index: 10;
    top: 0;
    left: 0;
}
.header-logo{
    flex-shrink: 0;
}
header .header-logo img{
    width: 350px;
    display: block;
    position: absolute;
    top: 0;
}
.pc-nav{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-left: auto;
}
.nav-group{
    display: flex;
    align-items: center;
}
.page-nav{
    gap: 38px;
}
.section-nav{
    gap: 22px;
}
.pc-nav a{
    display: block;
    font-weight: 600;
    transition: opacity .2s ease;
}
.page-nav a{
    font-size: 21px;
    border-bottom: 2px solid #000;
}
.section-nav a{
    font-size: 13px;
    letter-spacing: .06em;
    color: #5b5b5b;
}
.pc-nav a:hover{
    opacity: .55;
}
.hamburger,
.mobile-nav{
    display: none;
}
#work,
#price,
#voice,
#portfolio,
#link{
    scroll-margin-top: 120px;
}
.main{
    margin-top: 200px;
}
.section img{
    height: 100px;
    width: auto;
    display: flex;
    margin: 100px auto 0px;
}
.main-container {
    width: 70%;
    margin: 50px auto 0px;
    padding: 35px 60px;
    background-color: rgba(255, 255, 255, 0.7);
}


/* 「宅録声優のお仕事募集中！」 */
.main-container h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}


/* 説明文 */
.main-text {
    width: 80%;
    margin: 0 auto 70px;

    font-size: 24px;
    line-height: 1.5;
}

.main-text li::before {
    content: "・";
}


/* メールアドレスなど */
.main-address {
    width: 80%;
    margin: 0 auto;
}

.main-address li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


/* 左側の紫色の部分 */
.address {
    width: 230px;
    padding: 8px 15px;
    margin-right: 35px;
    background-color: #BF8AFF;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    flex-shrink: 0;
}


/* 右側のアドレス */
.address-li {
    font-size: 22px;
    font-weight: 600;
}

.price-container {
    width: 70%;
    margin: 50px auto 0px;
}

.voice-container {
    width: 100%;
    margin: 50px auto 0px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 50px;
}
.voice-category {
    margin-bottom: 30px;
}
.voice-category:last-child{
    margin-bottom: 0px;
}
.voice-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
}
.section p {
    display: flex;
    justify-content: center;
    font-size: 20px;
    padding: 10px 0px 0px;
    color: #000000;
    font-weight: 600;
}
.sample-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.sample-item {
    width: 150px;
    height: 100px;
    position: relative;
    background-color: #a966ff;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 5px 3px rgb(115 62 184);
}
.sample-item:hover {
    transform: scale(1.05);
}
.sample-item p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    color: #fff;
    text-align: center;
    font-size: 12px;
    z-index: 2;
    font-weight: 600;
}
.spectrum {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 70px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sample-item.playing .spectrum {
    opacity: 1;
}
.sample-item.playing {
    border: 3px solid #ffffff;
}
.folio-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 50px;
    width: 90%;
    margin: 50px auto 0px;
    justify-content: center;
}
.folio-list p{
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 50px;
    width: 90%;
    margin: 50px auto 100px;
    justify-content: center;
}

ul.folio-list li {
    width: 200px;
    background: #f0f8ffc4;
    padding: 20px;
    border-radius: 20px;
}

ul.link-list li {
    width: 200px;
    background: #f0f8ffc4;
    padding: 20px;
    border-radius: 20px;
}

.link-list img {
    width: 100%;
    display: block;
}

.link-list p {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
header{
    min-height: 60px;
    height: 60px;
    padding: 0 18px;
}
header .header-logo img{
    width: 160px;
}
.pc-nav{
    display: none;
}
.hamburger{
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 9px 7px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 12;
}
.hamburger span{
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #000;
    transition: transform .3s ease, opacity .3s ease;
}
.hamburger.is-open span:nth-child(1){
    transform: translateY(10.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2){
    opacity: 0;
}
.hamburger.is-open span:nth-child(3){
    transform: translateY(-10.5px) rotate(-45deg);
}
.mobile-nav{
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(241, 202, 255, .98);
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .2s ease, visibility .3s;
}
.mobile-nav.is-open{
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.mobile-nav a{
    padding: 14px 24px;
    border-top: 1px solid rgba(0,0,0,.14);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
#work,
#price,
#voice,
#portfolio,
#link{
    scroll-margin-top: 75px;
}
.section .first {
    margin: 100px auto 0px;
}
.section img {
    height: 50px;
    margin: 50px auto 0px;
}
.section p {
    font-size: 15px;
}
.main {
    margin-top: 100px;
}
.main-container {
    width: 100%;
    margin: 30px auto 0px;
    padding: 30px 30px;
}

.main-text {
    width: 100%;
    margin: 0 auto 50px;
    font-size: 15px;
}
.main-container h2 {
    font-size: 30px;
}
.address {
    width: 140px;
    font-size: 15px;
    margin-right: 20px;
}
.address-li {
    font-size: 20px;
}
.main-address {
    width: 100%;
}

.price-container {
    width: 100%;
    margin: 30px auto 0px;
}

.voice-container {
    margin: 30px auto 0;
    padding: 30px 30px;
}
.sample-list {
    justify-content: center;
}
.folio-list {
    margin: 30px auto 100px;
}
ul.folio-list li {
    width: 150px;
    column-gap: 50px;
    row-gap: 30px;
}
.folio-list p {
    font-size: 15px;
}
.link-list {
    margin: 30px auto 100px;
}
ul.link-list li {
    width: 150px;
    column-gap: 50px;
    row-gap: 30px;
}
.link-list p {
    font-size: 15px;
}
}
@media screen and (max-width: 500px) {
header .header-logo img {
    width: 130px;
}

.section img{
    height: 50px;
    margin: 30px auto 0px;
}
.main-container {
    padding: 30px 20px;
}
.main-container h2 {
        font-size: 24px;
    }
.address-li {
    font-size: 15px;
}
.address {
    width: 100px;
    font-size: 10px;
    margin-right: 10px;
}
.sample-item {
    width: 130px;
}
.sample-item p {
    font-size: 10px;
}
.link-list {
    column-gap: 20px;
    row-gap: 20px;
}
ul.link-list li {
    width: 110px;
    padding: 10px;
}
.link-list p {
    font-size: 10px;
}
.folio-list {
    column-gap: 20px;
    row-gap: 20px;
}
ul.folio-list li {
    width: 110px;
    padding: 10px;
    border-radius: 20px;
}
.folio-list p {
    font-size: 10px;
}
}
