@charset "UTF-8";

/* Common Style
------------------------*/
/* body */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", "Shippori Mincho B1", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #000;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
/* add reset */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  color: #888;
}

/* Site Style
------------------------*/
/* background */
.background--wrap{
    z-index: 1;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: url(../images/main_pc.png) center no-repeat;
    background-size: cover;
}
.background--wrap .background--fill{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 50vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .56) 100%);
}

/* header */
header{
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 24px 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
}
header .navigation--wrap{
    display: flex;
    align-items: center;
    gap: 0 32px;
}
header .navigation--wrap h1{
    width: 64px;
}
header .navigation--wrap img{
    width: 100%;
}
header .navigation--wrap nav ul{
    display: flex;
    gap: 0 24px;
    font-size: 2rem;
}
header .contact--button a{
    display: block;
    padding: 6px 32px;
    color: #000;
    background: #fff;
    font-size: 2rem;
}
header .contact--button a:hover{
    opacity: .6;
}
@media screen and (max-width: 768px) {
    header{
        justify-content: center;
        padding: 16px 24px;
    }
    header .navigation--wrap{
        display: flex;
        flex-direction: column;
        gap: 8px 0;
    }
    header .contact--button{
        display: none;
    }
}

/* contents */
main{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 32px 48px;
    width: 100%;
}
main .contents--name{
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}
main .contents--name dl dt{
    font-size: 4.4rem;
    font-weight: bold;
}
main .contents--name dl dd{
    font-size: 2.4rem;
}
main .contents--name small{
    font-size: 1.2rem;
}
main .contents--message{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px 0;
    width: 32vw;
    max-width: 380px;
}
main .contents--message h3{
    font-size: 2.8rem;
    font-weight: bold;
}
main .contents--message p{
    font-size: 1.4rem;
}
main .contents--message .contents--contact{
    margin-top: 12px;
    display: none;
}
main .contents--message .contents--contact a{
    display: inline-block;
    padding: 6px 32px;
    color: #000;
    background: #fff;
    font-size: 2rem;
}
main .contents--message .contents--contact a:hover{
    opacity: .6;
}
@media screen and (max-width: 800px) {
    main .contents--name{
        left: 32px;
    }
    main .contents--message{
        right: 32px;
    }
}
@media screen and (max-width: 768px) {
    main{
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        padding: 16px 24px;
        gap: 16px 0;
        text-align: center;
    }
    main .contents--name{
        width: 100%;
        gap: 8px 0;
        order: 2;
    }
    main .contents--name dl dt{
        font-size: 2.4rem;
        font-weight: bold;
    }
    main .contents--name dl dd{
        font-size: 1.6rem;
    }
    main .contents--name small{
        font-size: 1.1rem;
    }
    main .contents--message{
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    main .contents--message h3{
        font-size: 2rem;
    }
    main .contents--message p{
        font-size: 1.3rem;
    }
    main .contents--message .contents--contact{
        margin-top: 12px;
        display: block;
    }
}
@media screen and (max-width: 375px) {
    main{
        padding: 24px 16px;
    }
    main .contents--name{
        display: none;
    }
}
/* page overlay */
.overlay{
    z-index: 99;
    position: fixed;
    width: 100vw;
    height: 100vh;
    inset: 0;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility 0s linear .3s;
}
.overlay.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .3s ease;
}
.overlay .overlay--close{
    position: absolute;
    top: 32px;
    right: 32px;
}
.overlay .overlay--close a{
    display: block;
    width: 56px;
    padding: 16px;
    border: solid .5px #fff;
}
.overlay .overlay--close a img{
    width: 100%;
}
.overlay--profile .overlay--background{
    width: 32%;
    background: url(../images/bg_profile_pc.png) center no-repeat;
    background-size: cover;
}
.overlay--profile .overlay--contents{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 68%;
    background: #10131C;
    padding: 80px 64px;
    overflow-y: scroll;
}
.overlay--profile .overlay--contents h3{
    font-size: 3.2rem;
}
.overlay--profile .overlay--contents .profile--block dl{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.overlay--profile .overlay--contents .profile--block dt{
    width: calc(24%);
    border-bottom: solid 1px #333;
    padding: 12px 8px;
}
.overlay--profile .overlay--contents .profile--block dd{
    width: calc(76% - 16px);
    border-bottom: solid 1px #333;
    padding: 16px 8px;
}
.overlay--profile .overlay--contents .profile--block ul{
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}
.overlay--profile .overlay--contents .profile--block ul li{
    border-bottom: solid 1px #333;
    padding: 16px 8px;
}
.overlay--message .overlay--background{
    width: 32%;
    background: url(../images/bg_message_pc.png) center no-repeat;
    background-size: cover;
}
.overlay--message .overlay--contents{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 68%;
    background: #10131C;
    padding: 80px 64px;
    overflow-y: scroll;
}
.overlay--message .message--block{
    display: flex;
    flex-direction: column;
    gap: 16px 0;
}
.overlay--message .message--contactBlock{
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    border-top: solid 1px #333;
    padding: 16px 0;
}
.overlay--message .message--contactButton a{
    display: inline-block;
    padding: 6px 32px;
    color: #000;
    background: #fff;
    font-size: 2rem;
    text-align: center;
}
.overlay--message .message--contactButton a:hover{
    opacity: .6;
}
.overlay--message .overlay--contents h3{
    font-size: 4.4rem;
    line-height: 1.2;
    letter-spacing: -0.05em;
}
.overlay--message .overlay--contents p{
    font-size: 1.4rem;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .overlay--profile{
        flex-direction: column;
    }
    .overlay--profile .overlay--background{
        width: 100%;
        height: 16%;
        background: url(../images/bg_profile_sp.png) center no-repeat;
        background-size: cover;
    }
    .overlay--profile .overlay--contents{
        gap: 24px;
        width: 100%;
        height: 84%;
        padding: 40px 24px;
    }
    .overlay--message{
        flex-direction: column;
    }
    .overlay--message .overlay--background{
        width: 100%;
        height: 16%;
        background: url(../images/bg_message_sp.png) center no-repeat;
        background-size: cover;
    }
    .overlay--message .overlay--contents{
        gap: 24px;
        width: 100%;
        height: 84%;
        padding: 40px 24px;
    }
    .overlay--message .message--block{
        gap: 8px 0;
    }
.overlay--message .message--contactButton a{
        display: block;
        padding: 6px 24px;
    }
    .overlay--message .overlay--contents h3{
        font-size: 3.2rem;
    }
    .overlay--message .overlay--contents p{
        font-size: 1.4rem;
    }
    .overlay .overlay--close{
        top: 24px;
        right: 24px;
    }
    .overlay .overlay--close a{
        width: 48px;
        padding: 12px;
    }
}