@charset "UTF-8";

/* 
base style 
*/
html { 
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}
main {
    width: 100%;
}
.section-title {
    font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 768px) {
    main {
        width: 100%;
}
}


/* 
header 
*/

/* 
header-pc
*/
.header-pc {
    background-color: #fff;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 10;
}
.logo {
    margin-left: 20px;
    /* box-shadow: 0px 0px 10px -5px #777777;
    border-radius: 100px; */
}
.link-item {
    display: inline-block;
    list-style: none;
    margin-right: 40px;
    margin-top: 10px;
}
.link-item > a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #000;
    text-decoration: none;
}
.link-item > a:hover {
    opacity:0.8;
	transition:0.2s;
    transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
    .header-pc {
      display: none;
    }
}
  
/* 
header-sp
*/
.header-sp {
    display: none;
    width: 100vw;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.logo-sp {
    margin-top: 20px;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    .header-sp {
        display: block;
        font-size: 15px;
    }
}

/* 
nav-bar-sp 
*/
.nav-bar-sp {
    background-color: #fff;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11;
    display: none;
}

.link-group-sp {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
}
.link-item-sp {
    display: inline-block;
    list-style: none;
    margin: 10px;
    font-size: 15px;
}
.link-item-sp > a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #000;
    text-decoration: none;
}
.link-item-sp > a:hover {
    transition: 0.5s ;
    color: #1d3658;
}
@media screen and (max-width: 768px) {
    .nav-bar-sp {
        display: block;
    }
}



/*
main
*/

/* 
Top 
*/
.top {
    width: 100%;
    height: 800px;
    background: url(/assets/img/top-img.JPG);
    background-size: cover;
    background-position: center;
}

/* 
About me
*/
.about-me {
    margin: 0 auto;
    width: 800px;
    height: 380px;
    padding-top: 100px;
    display: flex;
    font-family:'Noto Sans JP';
}
.about-me-icon {
    width: 200px;
    height: 200px;
}
.about-me-description {
    margin-left: 50px;
}
.about-me-description > h2 {
    font-size: 20px;
}
.about-me-description > p {
    font-size: 16px;
}
.about-me-dm {
    color: #000;
}


.section-title {
    padding-top: 50px;
    font-size: 25px;
    font-weight: bold;
}

/* 
Career 
*/
.career {
    margin: 0 auto;
    width: 800px;
    margin-top: 130px;
    margin-bottom: 130px;
}
.career-item {
    font-size: 16px;
}
.career-item > span {
    font-weight: bold;
}

/* 
Script 
*/
.script {
    margin: 0 auto;
    width: 800px;
}
/* .script-list {} */
.script-item-link {
    text-decoration: none;
    color: #000;
}
.script-item:hover {
    opacity:0.8;
	transition:0.2s;
    transform: translateY(-5px);
}
.script-item {
    height: 100px;
    margin: 0;
    padding: 0;
    padding-bottom: 5px;
    box-shadow: 0px 4px 30px -5px #aaaaaa;
    border-radius: 10px;
}
.script-title {
    font-family:'Noto Sans JP';
    font-size: 18px;
    padding-top: 16px;
    padding-left: 20px;
    margin-bottom: 20px;
    padding-bottom: 0;
}
.script-label {
    display: flex;
    padding-left: 28px;
}
.script-label-inner {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 200;
    margin-right: 8px;
    margin-top: 0;
    padding-top: 0;
    padding: 0 10px;
    color: #fff;
    background-color: #272727;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}


/* 
SNS
*/
.sns-list {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 80px;
}
.sns-item {
    list-style: none;
    margin: 20px;
    opacity: 0.8;
}
@media screen and (max-width: 768px) {
    .sns-list {
      padding-left: 0;
      display: flex;
      justify-content: center;
    }
    .sns-item {
      list-style: none;
      margin: 20px 20px 0 20px;
      opacity: 0.8;
    }
}



/* 
footer 
*/
footer {
    background-color: #141414;
    height: 140px;
}
/*
guide
*/
.guide {
    margin: 0 auto;
    width: 780px;
    padding-top: 20px;
}
.guide > a {
    text-decoration: none;
}
.guide-btn {
    text-align: center;
    padding-top: 12px;
    background-color: #fff;
    color: #232323;
    width: 220px;
    height: 50px;
    font-weight: 500;
    letter-spacing: 6px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0px 6px 25px -10px #232323;
    border-radius: 8px;
}
.guide-btn:hover {
    opacity: 0.6;
}

/* 
レスポンシブ 
*/

@media screen and (max-width: 768px) {
    /* ヘッダーとナビゲーションバーの調整 */
    .logo {
        margin-left: 10px;
    }

    /* 「About me」セクションの調整 */
    .about-me {
        margin-left: 0px;
        width: 90%; /* コンテンツの幅を調整 */
        flex-direction: column; /* アイテムを縦に並べる */
        align-items: center;
    }
    .about-me-icon {
        width: 150px;
        height: 150px;
        margin-left: 30px;
    }
    .about-me-description {
        margin-top: 20px; /* アイコンと説明の間隔 */
        text-align: center;
    }
    .about-me-description > h2 {
        font-size: 18px;
    }
    .about-me-description > p {
        font-size: 12px;
    }
    .about-me-dm {
        font-size: 12px;
    }

    /* 「Career」セクションの調整 */
    .career {
        width: 90%;
        margin-top: 100px !important; /* 上部の余白を追加、強制適用 */
    }
    .career-item {
        font-size: 14px;
    }

    /* 「Script」セクションの調整 */
    .script {
        width: 90%;
    }
    .script-item {
        height: auto; /* 高さを自動調整に */
    }
    .script-title {
        font-size: 16px;
        padding-left: 12px;
    }
    .script-label {
        flex-wrap: wrap; /* 要素が折り返されるように設定 */
        padding-left: 20px;
    }
    .script-label-inner {
        font-size: 12px; /* キーワードのフォントサイズを小さく */
        margin-bottom: 8px; /* 折り返された行間の余白を設定 */
        white-space: normal; /* テキストが自然に折り返されるように設定 */
    }

    /* 「SNS」セクションの調整 */
    .sns-item img {
        height: 30px; /* SNSアイコンのサイズ調整 */
    }

    /* 
    footer 
    */
    footer {
    padding-top: 20px;
    background-color: #141414;
    height: 180px;
    }
    
    /*
    guide
    */
    .guide {
    margin: 0 auto;
    width: 100%;
    padding-top: 10px;
    }
    .guide > a {
    text-decoration: none;
    }
    .guide-btn {
    text-align: center;
    padding-top: 15px;
    background-color: #fff;
    color: #000;
    width: 200px;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0px 6px 25px -10px #232323;
    border-radius: 8px;
    } 
    .guide-btn:hover {
        opacity: 0.6;
    }
}
