@charset "UTF-8";
* {
    cursor: none;
  }

body {
    background: #fff;
    font-family: "Robot" , "Shippori Mincho" , serif;
    height: 100vh;

    
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#f6f6f6;
  text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:150px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}



/*トップのイメージ*/
.top-image {
    width: 100%;
    text-align: center;
    position: relative;
    top: -5.5%;
    z-index: -1;
    margin-bottom: 170px;
}
.top-image img {
    width: 85%;
    animation: slideIn 2s ease-out;
}
.top-img02 {
    position: absolute;
    top: 0;
    width: 100%;
    animation: slideIn 3s ease-out;
}
.top-img02 img {
    width: 85%;
}
.top-img05 {
    width: 100%;
    position: relative;
    margin: 50px 0 50px 0;
}
.top-img05 img{
    width: 100%;
}
.top-img06 {
    position: absolute;
    top: 0;
    width: 100%;
}
.top-img06.show {
    animation: slideIn 1.5s ease-out;
}
.top-img06 img {
    width: 100%;
    top: 0;
}
.top-img07 {
    position: absolute;
    top: 0;
    width: 100%;
}
.top-img07.show {
    animation: slideIn 2s ease-out;
}
.top-img07 img {
    width: 100%;
}
.top-img08 {
    position: absolute;
    top: 0;
    width: 100%;
}
.top-img08.show {
    animation: slideIn 2.2s ease-out;
}
.top-img08 img {
    width: 100%;
}

@keyframes slideIn {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
.top-image-text p {
    font-size: 30px;
    color: #5c5c5c;
    font-family: "Noto Sans JP" , sans-serif;
    font-weight: bold;
    display: block;
}
.top-image-text span {
    font-size: 15px;
    color: #5c5c5c;
    display: block;
  
}



/*デフォルトのマウスカーソルを非表示にする*/

/*独自のマウスカーソルを作成*/
.cursor {
position: fixed;
top: -5px;
left: -5px;
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
transform: translate(0, 0);
pointer-events: none;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
top: -20px;
left: -20px;
width: 20px;
height: 20px;
background: #5c5c5c;
opacity: 0.7;
}

/*メインヘッダー*/
.main_nav {
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 25px 40px;
    z-index: 999;
    align-items: center;
    box-sizing: border-box;
}
.main_nav.change-color {
    background-color: rgb(255, 255, 255,0.8);
  }
ul li {
    list-style: none;
}
.nav {
    margin-left: 0 auto;
}
.main_left {
    display: flex;
    align-items: center;
    transition: all 0.3s ease 0s;
}
.main_left:hover {
    transform: translateY(-3px);
}
.nav-left {
    display: flex;
}
.nav_link-left {
    margin: 0 auto;
}
.nav_lists-left {
    display: flex;
    align-items: center;
}
.nav_list-left {
    padding:0 13px;
    /* cursor: pointer; */
	display: block;
	border: 0;
}
.nav_list-left .nav_link-left {
    color: #5c5c5c;
    font-family: "Noto Sans JP" , sans-serif;
    font-weight: bold;
    display: block;
    position: relative;
    font-size: 15px;
    text-align: center;
    margin: auto;
}
.nav-left-01 img {
    width: 33px;
    margin: auto;
    display: block;
}
.nav_lists {
    display: flex;
    /*レスポンシブ*/
    max-height: 400px; /* パソコンサイズで表示 */
    transition: max-height 0.3s;
}
.nav_list {
    padding:  5px 10px;
    margin: 0 10px;
    background-color: #f6f6f6;
    /* cursor: pointer; */
	display: block;
	border: 0;
	border-radius: 8px;
	transition: color .3s, background .3s, box-shadow .3s, transform 0.3s;
}
.nav_list:hover {
    color: white;
	box-shadow: 0 3px 0 #5c5c5c;
	transform: translateY(3px);
}
/*サブメニュー*/
.sub-menu {
    position: absolute;
    width: 120px;
    top: 50px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    text-align: center;
}
.sub-menu a {
    color: #5c5c5c;
    padding: 10px 15px;
    font-size: 13px;
    font-family: "Noto Sans JP" , sans-serif;
    font-weight: bold;
    margin-bottom: 1px;
    background-color: #f6f6f6;
    display: block;
}
.sub-menu a:hover {
    color: #fff;
}
.nav_list:hover ul,.nav_list ul.focused {
    opacity: 1;
    visibility: visible;
}
.nav_list li a:hover,.nav_list li a:focus {
    background: #9c9c9c;
}
.nav_link {
    transition: all 0.3s;
}
.nav_link img {
    width: 50px;
}
.nav_list .nav_link {
    color: #5c5c5c;
    letter-spacing :2px;
    font-weight: bold;
    display: block;
    position: relative;
    font-size: 13px;
    text-align: center;
    font-family: "Noto Sans JP" , sans-serif;
}
.nav_list .nav_link:before {
    position: absolute;
    content: ・;
    left: 50%;
    transform: translateX(-50%);
    top: -22px;
    opacity: 0;
    transition: 0.3s all;
}

/* サブヘッダー */
.sab_nav {
    width: 100%;
    padding: 80px 40px 0 40px ;
    position: relative;
}
#sabButton {
    background-color: #ffffff; /* ボタンのデフォルトの背景色 */
    color: #5c5c5c; /* ボタンのデフォルトのテキスト色 */
    font-size: 13px;
    letter-spacing :2px;
    text-align: center;
    font-weight: bold;
    font-family: "Noto Sans JP" , sans-serif;
    border: none;
    padding: 5px 13px;
    border-radius: 12px;
    cursor: none; /* カーソルをポインターに変更 */
}
#sabButton:hover {
background-color: #f6f6f6; /* マウスを合わせたときの背景色 */
color: #5c5c5c; /* マウスを合わせたときのテキスト色 */
}
#sab01Button {
    background-color: #f6f6f6; /* ボタンのデフォルトの背景色 */
    color: #5c5c5c; /* ボタンのデフォルトのテキスト色 */
    font-size: 13px;
    letter-spacing :2px;
    text-align: center;
    font-weight: bold;
    font-family: "Noto Sans JP" , sans-serif;
    border: none;
    padding: 5px 13px;
    border-radius: 12px;
    cursor: none; /* カーソルをポインターに変更 */
}
#sab01Button:hover {
background-color: #f6f6f6; /* マウスを合わせたときの背景色 */
color: #5c5c5c; /* マウスを合わせたときのテキスト色 */
}
.text1 {
    font-size: 16px;
    font-weight: bold;
    color: #5c5c5c;
    font-family: "Noto Sans JP" , sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center; /* 垂直中心 */
    margin-bottom: 30px;
  }
.text1:after {
    border-top: 1px solid;
    content: "";
    width: 93%; /* 線の長さ */
}

.top-all {
    width: 100%;
    padding: 200px 40px 0 40px;
}
.top-all-01 {
    width: 100%;
    padding: 200px 40px 0 40px;
}
.top-main-title {
    display: flex;
    width: 100%;
}
.top-all-sakuhin {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: last baseline;
}
.top-all-logo {
    width: 19%;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.024),
    0 5px 6.1px rgba(0, 0, 0, 0.02),
    0 16.1px 17.4px rgba(0, 0, 0, 0.03),
    0 19.2px 19.8px rgba(0, 0, 0, 0.02),
    0 30.4px 28.8px rgba(0, 0, 0, 0.02),
    0 80px 60px rgba(0, 0, 0, 0.03);
} 
.top-all-logo img {
    width: 100%;
    inset: 0px;
    border-radius: 15px 15px 0 0 ;
}
.top-all-p {
    width: 100%;
    padding: 20px 20px 30px 20px;

}
.top-all-title {
    width: 100%;
    margin-bottom: 25px;
}
.top-all-title p {
    font-size:1.7rem;
    font-weight: bold;
    color: #5c5c5c;
    justify-content: space-between;
    font-family: "Noto Sans JP" , sans-serif;
}
.p-text-title {
    width: 100%;
    margin-bottom: 10px;
    justify-content: left;
}
.p-text-title p {
    color: #5c5c5c;
    font-size: 18px;
    font-weight: bold;
    font-family: "Noto Sans JP" , sans-serif;
}
.top-all-p span {
    color: #999999;
    font-size: 12px;
    font-weight: bold;
    font-family: "Noto Sans JP" , sans-serif;
}


.top-more {
    width: 100%;
}
.top-more-button {
    width: 30%;
    margin-bottom: 25px;
    margin: auto 0 auto auto;
}
.top-more-list {
    padding:  10px 15px;
    background-color: #f6f6f6;
    cursor: pointer;
	display: block;
	border: 0;
	border-radius: 8px;
	transition: color .3s, background .3s, box-shadow .3s, transform 0.3s;
}
.top-more-list:hover {
    color: white;
	box-shadow: 0 3px 0 #5c5c5c;
	transform: translateY(3px);
}
.top-more-link {
    transition: all 0.3s;
}
.top-more-list .top-more-link {
    color: #5c5c5c;
    font-weight: bold;
    display: block;
    position: relative;
    font-size: 16px;
    text-align: center;
    font-family: "Noto Sans JP" , sans-serif;
}


footer {
    width: 100%;
    height: 100px;
    margin: 80px 0 0 0;

}
.footer_main {
    border-top: 1px solid #333;
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px 40px 0 40px;
}
.footer_main img {
    width: 50px;
    opacity: 0.8;
}
small {
    color: #5c5c5c;
    font-size: 18px;
    font-weight: bold;
    font-family: "Noto Sans JP" , sans-serif;
}

.hamburger-menu {
    display: none; /* ハンバーガーメニューを初めは非表示にする */
}





/*パソコン用*/
@media only screen and (min-width: 960px) {
    .top-all-logo {
        transform: translateY(10px);
        opacity: 0;
        transition: .5s;
    } 
    /* 追記 */
    .top-all-logo.show{
        transform: translateY(0);
        opacity: 1;
      }
    .top-all-logo:hover {
        transform: translateY(-0.7em);
    }
}

/*スマホ用*/
@media only screen and (max-width: 960px) {

    /*カーソル*/
    .cursor {
        display: none;
    }

    .hamburger-menu {
        display: block; /* ハンバーガーメニューを表示する */
    }
        .nav_lists {
        display: none; /* 通常のメニューを非表示にする */
    }

    .menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		background-color: #5c5c5c;
		position: absolute;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        background-color: #5c5c5c;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #3584bb;
    }
    .menu-content ul {
        padding: 70px 10px 0;
    }
    .menu-content ul li {
        list-style: none;
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 16px;
        box-sizing: border-box;
        color:#5c5c5c;
        text-decoration: none;
        padding: 20px 15px 20px 15px;
        position: relative;
        font-family: "Noto Sans JP" , sans-serif;
        font-weight: bold;
        display: block;
    }
    .menu-content ul li a::before {
        content: "";
        width: 8px;
        height: 8px;
        border-top: solid 2px #5c5c5c;
        border-right: solid 2px #5c5c5c;
        transform: rotate(45deg);
        position: absolute;
        right: 15px;
        top: 27px;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #ffffff;
        transition: all 0.5s;/*アニメーション設定*/
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }


    
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width:100px;
    }


    /*メインナビ*/
    .main_nav {
        padding: 25px 20px;
        z-index: 999;
        align-items: center;
        box-sizing: border-box;
    }

    /*サブナビ*/
    .sab_nav {
        padding: 80px 20px 0 20px ;
        overflow-y: auto; /* 縦方向にスクロールできるようにする */
        white-space: nowrap; /* ボタンが横方向に並ぶようにする */
        scroll-snap-type: y mandatory; /* 縦方向にスナップするように設定 */
        scrollbar-width: none; /* Firefox対応: スクロールバーを非表示にする */
        -ms-overflow-style: none; /* IE/Edge対応: スクロールバーを非表示にする */
    }
    .sab_nav::-webkit-scrollbar {
        display: none; /* Webkitブラウザ対応: スクロールバーを非表示にする */
    }
    .sav_nav a {
        display: inline-block; /* ボタンを横方向に並べる */
        scroll-snap-align: start; /* スクロールの開始位置にボタンをスナップする */
    }
    #sabButton {
        font-size: 12px;
        padding: 10px 13px;
        border-radius: 12px;
    }
    #sabButton:hover {
    background-color: #f6f6f6; /* マウスを合わせたときの背景色 */
    color: #5c5c5c; /* マウスを合わせたときのテキスト色 */
    }
    #sab01Button {
        font-size: 12px;
        padding: 10px 13px;
        border-radius: 12px;
    }

    /*トップメイン画像*/
    .top-image {
        margin-top: 120px;
        margin-bottom: 0;
    }
    .top-image img {
        width: 98%;
        animation: slideIn 1.5s ease-out;
    }
    .top-img02 {
        animation: slideIn 2s ease-out;
    }
    .top-img02 img {
        width: 98%;
    }

    /*サブメイン画像*/
    .top-img05 {
        margin: 0 0 0 0;
    }
    .top-img06 {
        animation: slideIn 1.5s ease-out;
    }
    .top-img07 {
        animation: slideIn 2s ease-out;
    }
    .top-img08 {
        animation: slideIn 2.2s ease-out;
    }

    /*作品画面調整*/
    .top-all {
        padding: 120px 20px 0 20px;
    }
    .top-all-01 {
        padding: 30px 20px 0 20px;
    }


    /*作品一覧テキスト*/
    .text1 {
        font-size: 15px;
        margin-bottom: 20px;
      }
    .text1:after {
        width: 75%; /* 線の長さ */
    }

    /*作品メインタイトル*/
    .top-all-title {
        width: 100%;
        margin-bottom: 25px;
    }
    .top-all-title p {
        font-size:1.7rem;
        font-weight: bold;
        color: #5c5c5c;
        justify-content: space-between;
        font-family: "Noto Sans JP" , sans-serif;
    }
    /*view moreボタン*/
    .top-more{
        display: none;
    }

    /*作品調整*/
    .top-all-sakuhin {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* iOSデバイスでスムーズなスクロールを有効にする */
    }
    .top-all-logo a {
        display: block;
    }
    .top-all-logo {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 250px;
        margin: 0 10px 70px 10px;
        box-shadow:
        0 1.9px 2.5px rgba(0, 0, 0, 0.024),
        0 5px 6.1px rgba(0, 0, 0, 0.02),
        0 10.1px 12.4px rgba(0, 0, 0, 0.03),
        0 15.2px 16.8px rgba(0, 0, 0, 0.02),
        0 20.4px 18.8px rgba(0, 0, 0, 0.02),
        0 30px 25px rgba(0, 0, 0, 0.03);
    } 
    
    /*フッター*/
    footer {
        margin: 30px 0 30px 0;
        font-size: 15px;
    
    }
    .footer_main {
        padding: 20px 20px 0 20px;
    }
    .footer_main img {
        width: 50px;
    }
    small {
        font-size: 12px;
        font-weight: bold;
    }

}