/* -----
     全体共通----- */
body {
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    scroll-behavior: smooth;
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
.flex {
    display: flex;
}
header {
    width: 18.23%;
    height: 100vh;
    position: relative;
    overflow: hidden scroll;
}
main {
    width: 81.77%;
    height: 100vh;
}
img {
    width: 100%;
}
.mobile-footer {
    display: none;
}

/* header */
.title {
    text-align: center;
    margin: 20px auto;
}
.title p {
    font-size: 1rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
}
.title h2 {
    font-size: 1.5rem;
    font-family: "Cormorant Garamond", serif;
}
h1 {
    max-width: 150px;
    margin: 20px auto 30px;
}
.menu {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
.menu ul {
    height: 50%;
}
.menu li {
    list-style: none;
    margin-bottom: 30px;
}
.menu a {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
}
.menu a:hover {
    background-color: #7C9CC6;
    color: azure;
    padding: 2px 5px;
    border-radius: 2px;
    transform: scale(1.2);
    opacity: 0.6;
    transition-duration: 0.5s;
}
.current a {
    background-color: #8aba8e;
    color: azure;
    padding: 2px 5px;
    border-radius: 2px;
}
/* ------ハンバーガーメニュー------ */
.hamburger {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 10;
    width: 30px;
    height: 30px;
    padding: 20px;
    cursor: pointer;
}
.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}
.hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 3px;
    background-color: #333333;
    transition: transform .3s;
}
.hamburger.is-active span {
    background-color: azure;
}
.hamburger span:nth-child(1) {
    top: 30%;
}
.hamburger span:nth-child(2) {
    top: 60%;
}
.hamburger span:nth-child(3) {
    top: 90%;
}
/* ------表示されるナビゲーションー------ */
.drawer {
    visibility: hidden;
    /* opacity: 0; */
    position: fixed;
    overflow: hidden scroll;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100vh;
    background-color: #7C9CC6;
    transition: opacity .3s, visibility .3s;
}
.drawer.is-active {
    visibility: visible;
    opacity: 1;
}
.drawer_list {
    width: fit-content;
    height: 100%;
    margin: 0px auto 70px;
    list-style: none;
}
.drawer_item {
    text-align: center;
    padding-top: 50px;
}
.drawer_link {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
}
.drawer_link:hover {
    background-color: #8aba8e;
    padding: 10px 15px;
}
.sp-show {
    display: none;
}
/* メインビジュアル */
#fv .fv div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0 auto;
}
.mv01 {
    background-image: url(../img/pc_fv01.jpg);
}
.mv02 {
    background-image: url(../img/pc_fv02.jpg);
}
.mv03 {
    background-image: url(../img/pc_fv03.jpg);
}
.mv04 {
    background-image: url(../img/pc_fv04.jpg);
}
.fv {
    position: relative;
}
.mv-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: serif;
    position: absolute;
    right: 3%;
    bottom: 3%;
}

/* footer */
footer {
    font-size: 0.8rem;
    color: #333333;
    text-align: center;
    margin-top: 30%;
}
/* ★セクションを遅れて表示★ */
section {
    animation-name: fadeIn1s;
    animation-delay: 1.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* -----
     profile----- */
#profile .mv {
    background-image: url(../img/pc_fv_rayer.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}
.career {
    width: 80%;
    margin: 5% auto;
    gap: 30px;
    justify-content: center;
}
.career img {
    max-width: 250px;
}
.career-content {
    margin-top: 10px;
}
.career-content p {
    color: rgb(246, 251, 251);
    font-size: 0.6rem;
}
.career-content h3 {
    color: rgb(246, 251, 251);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.career-content li {
    color: rgb(246, 251, 251);
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.8;
}
.career-content a {
    text-decoration: none;
    color: rgb(246, 251, 251);
    background-color: #7C9CC6;
    padding: 3px 10px;
}
.career-content a:hover {
    text-decoration: none;
    color: #333333;
    background-color: azure;
    padding: 3px 10px;
}
.career-content li:last-child {
    margin-top: 5px;
}
.profile-video {
    width: 40%;
    margin: 40px auto 10px;
}
.youtube-video {
    aspect-ratio: 16/9;
    margin: 0 auto;
}
iframe {
    width: 100%;
    height: 100%;
    display: block;
}
/* 有明抄ページ */
.career-content a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0.5em 0 0;
    border: 5px solid transparent;
    border-right: 0 solid transparent;
    border-left: 8px solid #2b28b4;
}
#ariake {
    background-color: antiquewhite;
}
.ariake01 {
    width: 90%;
    margin: 50px auto;
    padding: 15px 20px;
    background-color: #a5cecd;
    border-radius: 10px;
}
.ariake01 img {
    display: block;
    width: 100%;
    margin: 10px auto;
}
.ariake01 h4 {
    font-size: 1.5rem;
    margin: 10px 0;
}
.ariake01 p {
    font-size: 1rem;
    text-align: left;
}
.ariake {
    width: 85%;
    margin: 50px auto;
}
.ariake figure {
    margin-bottom: 20px;
}


/* -----
     history----- */
#history .mv {
    background-image: url(../img/pc_history.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}
#history section {
    width: 60%;
    height: 100vh;
    background-color: rgb(255, 255, 255,0.5);
    margin: 0 0 10px 30px;
    overflow: hidden scroll;
}
.sub-menu {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}
.sub-menu li {
    list-style: none;
    margin: 20px auto;
}
.sub-menu a {
    text-decoration: none;
    color: azure;
    font-family: sans-serif;
    font-size: 0.8rem;
    background-color: #7C9CC6;
    padding: 3px 6px;
    border-radius: 3px;
}
.sub-menu a:hover {
    color: #333333;
    background-color: #a5cecd;
    transition-duration: 1s;
}
.sub-current a {
    background-color: #3d76c1;
}
/* 略歴リスト */
#history dl {
    width: 90%;
    margin: 30px auto;
}
.history-top dt,.dllist p {
    font-family: sans-serif;
    font-weight: bold;
	font-size: 0.9rem;
	line-height: 1.6em;
    color: azure;
    background-color: #7C9CC6;
    border-radius: 1px;
    width: fit-content;
    padding: 2px 10px 0 10px;
    margin: 5px 0 5px 0;
}
.dllist dt {
    font-family: sans-serif;
    font-weight: bold;
	font-size: 0.9rem;
	line-height: 1.6em;
}
dd {
    font-size: 0.9rem;
	font-weight: normal;
	line-height: 1.4em;
	margin-bottom: 15px;
    text-align: justify;
}
dd a {
    text-decoration: none;
}
h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}
#history figure {
    width: 60%;
    margin: 20px auto;
}
#history figcaption {
    font-family: sans-serif;
    font-size: 0.7rem;
    text-align: center;
}
#history .dllist img {
    box-shadow: 2px 2px 3px rgb(53, 53, 53);
}
.history-nav,.history-nav1 {
    margin: 50px 0;
}
.history-nav1>.pagenavi-wrap {
    display: flex;
    justify-content: end;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}
.pagenavi-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}
.pagenavi-wrap a {
    text-decoration: none;
    color: azure;
    background-color: #7C9CC6;
    padding: 5px 20px;   
}
.pagenavi-wrap a:hover {
    color: #333333;
    background-color: azure;
    border: 2px solid #7C9CC6;
}


/* -----
     seiun----- */
#seiun .mv {
    background-image: url(../img/pc_seiun.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}
#seiun section {
    width: 80%;
    height: 100vh;
    background-color: rgb(255, 255, 255,0.8);
    margin: 0 auto;
    overflow: hidden scroll;
}
.seiun-description {
    background-image: url(../img/back.jpg);
    background-size: contain;
    background-repeat: repeat-y;
    width: 90%;
    padding: 1rem;
    margin: 30px auto;
}
.seiun-description h3 {
    font-size: 1.5rem;
    background-color: #8aba8e;
    width: fit-content;
    border-radius: 8px;
    padding: 0 5px 2px 5px;
}
.seiun-description p {
    margin: 10px 0 10px 0;
}
#seiun dl {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    margin-left: 10px;
    gap: 10px 20px;
}
#seiun dt {
    width: 10%;
    text-align: right;
    white-space: nowrap;
    
}
#seiun dd {
    width: 85%;
    text-align: justify;
}
#seiun .dllist {
    margin-left: 8%;
}
#seiun .dllist p {
    margin-left: 10px;
}
.seiun-100th {
    background-color: #ECF6ED;
    border-radius: 5px;
    width: 80%;
    margin: 20px auto;
}
.seiun-100th h3 {
    font-weight: bold;
    padding: 10px;
}
.seiun-100th p {
    padding: 10px;
    margin-left: 10px;
}
#seiun .seiun-notes {
    width: 80%;
    font-size: 1rem;
    color: red;
    margin: 0 auto 20px;
    background-color: transparent;
}
/* -----
     seminar----- */
#seminar .mv {
    background-image: url(../img/pc_seminar.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}
#seminar section {
    width: 80%;
    height: 100vh;
    background-color: rgb(255, 255, 255,0.8);
    margin: 0 auto;
    overflow: hidden scroll;
}
.seminar-description {
    background-image: url(../img/back.jpg);
    background-size: contain;
    background-repeat: repeat-y;
    width: 90%;
    padding: 1rem;
    margin: 30px auto;
}
.seminar-description h3 {
    font-size: 1.5rem;
    background-color: #8aba8e;
    width: fit-content;
    border-radius: 8px;
    padding: 0 5px 2px 5px;
}
.seminar-description p {
    margin: 10px auto;
}
.seminar-description img {
    display: block;
    width: 95%;
    margin: 0 auto;
}
.seminar-photo {
    width: 80%;
    margin: 100px auto;
}
.seminar-photo figure {
    width: 90%;
    margin: 20px auto  40px;
}
.seminar-photo img {
    box-shadow: 2px 2px 3px rgb(53, 53, 53);
}
.seminar-photo figcaption {
    font-size: 1rem;
    margin: 5px auto;
    text-align: center;
}
.seminar-scene {
    display: flex;
    gap: 20px;
    width: 80%;
    margin: 80px auto 20px;
}
.seminar-scene figcaption {
    font-size: 1rem;
    text-align: center;
}
/* -----
     book----- */
#book .mv {
    background-image: url(../img/pc_book.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}
#book section {
    width: 80%;
    height: 100vh;
    background-color: rgb(255, 255, 255,0.9);
    margin: 0 auto;
    overflow: hidden scroll;
}
.book-list {
    border-collapse: collapse;
    width: 90%;
    margin: 30px auto;
    border: solid 2px rgb(83, 83, 83);
}
.book-list a {
    text-decoration: none;
    color: #1a0dab;
}
.book-list a:visited {
    text-decoration: none;
    color: #551A8B;
}
.book-list th {
    padding: 5px 10px;
    background-color: #ECF6ED;
    text-align: left;
    border: solid 1px rgb(83, 83, 83);
}
.book-list td {
    padding: 5px 10px;
    border: solid 1px rgb(83, 83, 83);
}

/* -----
     news----- */
#news .mv {
    background-image: url(../img/pc_news.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}
#news section {
    width: 80%;
    height: 100vh;
    background-image: url(../img/back01.webp),url(../img/back02.webp);
    background-position: top 50px left 50px,bottom 50px right 50px;
    background-color: rgb(255, 255, 255,0.9);
    margin: 0 auto;
    overflow: hidden scroll;
}
#news h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding-top: 80px;
}
.news-list {
    list-style: none;
    max-width: 90%;
    margin: 120px auto;
}
.news-item {
    display: flex;
    border-bottom: 1px solid #CCC;
    padding: 20px 20px;
    gap: 30px;
}
.news-item:first-child {
    border-top: 1px solid #CCC;
    padding: 20px 20px;
}
.news-list .news-item .date {
    margin: 0;
    font-size: 1.2rem;
    color: #767676;
}
.news-list .news-item .news-content {
    margin: 0;
    max-width: 100%;
}

/* -----
     contact----- */
#contact .mv {
    background-image: url(../img/pc_contact.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}
#contact section {
    width: 50%;
    left: 0;
    background-color: rgb(255, 255, 255,0.7);
}
.message {
    width: 100%;
    margin: 200px auto;
}
.message p {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 3;
    text-align: center;
}
.contact-mail {
    width: 90%;
    margin: 0 auto 20px;
}

@media (max-width: 428px) {
    .flex {
        flex-direction: column;
        justify-content: center;
    }
    /* ハンバーガーメニュー表示 */
    .pc_show {
        display: none;
    }
    .sp-show {
        display: block;
    }
    .mobile-footer {
        display: block;
        margin-bottom: 30px;
    }
    /* index */
    #fv .fv div {
        width: 100vw;
    }
    .mv01 {
        background-image: url(../img/sp_fv01.jpg);
        background-size: contain;
    }
    .mv02 {
        background-image: url(../img/sp_fv02.jpg);
    }
    .mv03 {
        background-image: url(../img/sp_fv03.jpg);
    }
    .mv04 {
        background-image: url(../img/sp_fv04.jpg);
    }
    /* profile */
    #profile .mv {
        background-image: url(../img/sp_fv_rayer.jpg);
        background-size: cover;
    }
    #profile .mv {
        overflow: scroll;
    }
    .career {
        width: 100%;
    }
    .career img {
        display: block;
        margin: 50px auto 30px;
    }
    .career-content {
        margin: 30px auto 30px;
        text-align: center;
    }
    .profile-video {
        width: 80%;
        margin-bottom: 50px;
    }
    .ariake01 {
        width: 100%;
    }
    .ariake01 h4 {
        font-size: 1rem;
    }
    .ariake01 p {
        font-size: 0.7rem;
    }
    .ariake {
        width: 90%;
    }
    /* history */
    #history .mv {
        background-image: url(../img/sp_history.jpg);
        background-size: cover;
    }
    #history section {
        background-color: rgb(255, 255, 255,0.7);
        width: 90%;
        margin: 0px auto;
    }
    h4 {
        margin: 50px 0 20px;
        font-size: 1rem;
    }
    .dllist dt {
        font-size: 0.8rem;
    }
    dd {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    #history figure {
        width: 80%;
    }
    #history figcaption {
        font-size: 0.5rem;
    }
    /* seiun */
    #seiun .mv {
        background-image: url(../img/sp_seiun.jpg);
        background-size: cover;
    }
    .seiun-description,
    .seminar-description {
        margin: 55px auto 30px;
    }
    .seiun-description h3,
    .seminar-description h3 {
        font-size: 1.2rem;
    }
    .seiun-description p,
    .seminar-description p {
        font-size: 0.7rem;
        margin: 5px auto;
    }
    #seiun .dllist {
        margin-bottom: 50px;
    }
    /* seminar */
    #seminar .mv {
        background-image: url(../img/sp_seminar.jpg);
        background-size: cover;
    }
    #seminar section {
        width: 90%;
    }
    .seminar-photo figure {
        width: 100%;
        margin-bottom: 70px;
    }
    .seminar-photo figcaption {
        font-size: 0.7rem;
    }
    .seminar-scene {
        flex-direction: column;
    }
    .seminar-scene figcaption {
        font-size: 0.7rem;
    }
    .seminar-photo {
        margin: 70px auto 50px;
    }
    /* book */
    #book .mv {
        background-image: url(../img/sp_book.jpg);
        background-size: cover;
    }
    #book section,#seiun section,#news section {
        width: 90%;
    }
    .book-list {
        margin: 60px auto;
    }
    .book-list a,
    .book-list a,
    .book-list td {
        font-size: 0.7rem;
        padding: 5px;
    }
    /* news */
    #news .mv {
        background-image: url(../img/sp_news.jpg);
        background-size: cover;
    }
    #news h3 {
        font-size: 1.5rem;
    }
    .news-list .news-item .date {
        font-size: 0.8rem;
    }
    /* contact */
    #contact .mv {
        background-image: url(../img/sp_contact.jpg);
        background-size: cover;
    }
    #contact section {
        width: 90%;
        margin: 0 auto;
    }
    .message {
        width: 100%;
    }
    .message p {
        font-size: 0.8rem;
        font-weight: bold;
        line-height: 2;
        text-align: center;
        padding: 20px 10px;
    }
    .contact-mail {
        width: 90%;
    }
    .contact-mail img {
        margin-bottom: 20px;
    }
}