@charset "utf-8";

/* --------------------------------------
Responsive | Breakpoint

スマホ(タテ): 
@media screen and (max-width:599px)
-----------------------------------------
PC:
@media screen and (min-width:1366px)
-------------------------------------- */


/* ---------------------------------
common
--------------------------------- */
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ","Miryo,Osaka","MS Pゴシック","MS PGothic",sans-serif;
    background-color: #26211c;
    color: #dbdbdb;
}
img {
    display: block;
    width: 100%;
}

/* ---------------------------------
openbtn
--------------------------------- */
@media screen and (max-width:599px) {
/*ボタン外側*/
.openbtn1 {
    transform: translate(0);
    position: fixed;
    top: 30px;
    right: 3%;
    padding: 10px 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: rgb(0 0 0 / 0%);
    z-index: 99999;
  }
  /*ボタン内側*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #b8b8b8;
}
.openbtn1 span:nth-of-type(1) {
    top: 22px;
    width: 50%;
}
.openbtn1 span:nth-of-type(2) {
    top: 29px;
    width: 50%;
}
.openbtn1 span:nth-of-type(3) {
    top: 36px;
    width: 50%;
}
  
/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
} 
.openbtn1.active span:nth-of-type(2) {
    display: none;
}
.openbtn1.active span:nth-of-type(3) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}
}

/* ---------------------------------
header
--------------------------------- */

header {
    width: 80%;
}
header nav ul {
    display: flex;
    flex-direction: row-reverse;
    margin: 60px 0 40px 0;
}
header nav ul li {
    margin-left: 8%;
    font-family: "jaf-domus-titling-web", sans-serif;
    font-weight: 300;
    font-style: normal;
}
header nav ul li a {
    padding: 30px 0;
    font-size: 13px;
    text-decoration: none;
    color: #dbdbdb;
    transition: .5s;
}
header nav ul li a:hover {
    color: #dbdbdb80;
    transition: .5s;
}
@media screen and (max-width: 599px) {
/* ------------------------
ハンバーガーメニューのnav設定
------------------------ */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
header nav {
    transform: translate(-100%, 0%);
    transition: all .5s;
}
header nav ul {
    display: block;
    margin: 0;
    background: #37373780;
}
header nav ul li {
    margin: 0;
    text-align: center;
    line-height: 12vh;
}
header nav ul li a {
    padding: 30px 150px;
}
header nav.active {
    /* 元の位置に戻る */
    transform: translate(0, 0%);
}
main {
    margin-top: 120px;
}

}

/* ---------------------------------
main
--------------------------------- */
main {
    display: flex;
}
main #mainImages {
    width: 80%;
    filter: sepia(70%) contrast(.5) blur(0.5px);
}
main #mainImages canvas {
    width: 100% !important;
    height: 600px;
    object-fit: cover;
    overflow: hidden;
}
main #name {
    width: 20%;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center
}
main #name h1 {
    margin-bottom: 50px;
    font-size: 18px;
    letter-spacing: .3rem;
    font-family: "hannari", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
}
main #name h1 a {
    color: #dbdbdb;
}
main #name h2 {
    font-family: 'Julius Sans One', sans-serif;
    font-size: 50px;
    color: hsla(0, 0%, 86%, 0.1);
}
/* ▼about▼ */
main#about {
    display: flex;
    flex-direction: row-reverse;
}
main #introduction {
    position: relative;
    top: 10em;
}
/* ▲about▲ */

@media screen and (max-width: 599px) {
main #name {
    width: 100px;
    height: max-content;
}
main #name h1 {
    margin-bottom: 30px;
}
}

/* ---------------------------------
footer
--------------------------------- */
footer {
    margin: 20px 0 5px 0;
    font-size: 12px;
}
footer p {
    text-align: center;
}
