@charset "UTF-8";

/*=============================================
基本設定
=============================================*/

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body{
    width: 100%;
    height: auto;
    font-size: 20px;
    font-family: 'ヒラギノ明朝 Pro', serif;
    line-height: 1.6;
    color: #797571;
    background-color: #fff;
}

/*=============================================
スプラッシュ画面
=============================================*/

#splash{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash img{
    width: 100px;
    height: auto;
}

#main-content{
    opacity: 0;
    transition: opacity 1s ease;
}

@keyframes fadeInOut{
    0% { opacity: 0; transform: scale(0.9); }
    20% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.05); }
}

/*=============================================
ヘッダー
=============================================*/

header div#inner{
    margin: 50px auto;
}

header div#inner nav ul.menu-list{
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: space-between; 
    width: 1000px;
    margin: 0 auto;
}

header div#inner nav ul li.menu-item{
    flex-grow: 0;
    flex-shrink: 0; 
    text-align: center; 
    position: relative; 
}

header div#inner nav ul li.menu-item a{
    color: #797571;
    display: block;
    padding: 10px 0; 
    transition: transform 0.3s ease;
    width: 100%;
    justify-content: center;
    align-items: center;
}

header div#inner nav ul li img{
    display: block;
    transition: transform 0.3s ease;
    width: auto;
    padding: 0; 
    margin: 0 auto;
}

header div#inner nav ul li.menu-item a:hover{
    transform: translateY(-5px);
    color: #b7afa8;
}

header, nav, #inner{
    overflow: visible;
}

/*=============================================
ドロップダウンメニュー
=============================================*/

.drop-menu{
    position: relative;
}

.drop-menu-list{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top center;
    transition: transform 0.3s ease, opacity 0.3s;
    width: 200px;
    background-color: #F0F0F0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 10;
}

.menu-item:hover .drop-menu-list{
    transform: translateX(-50%) scaleY(1);
}

.drop-menu-item{
    list-style: none;
}

.drop-menu-item a{
    display: block;
    text-align: center;
    padding: 12px 0;
    color: #797571;
    text-decoration: none;
    border-bottom: 1px solid rgba(121, 117, 113, 0.2);
    white-space: nowrap; 
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    background-color: transparent;
}

.drop-menu-item a:hover{
    background-color: #797571;
    color: #fff;
}

.drop-menu-item:last-child a{
    border-bottom: none;
}

header div#inner nav ul li.menu-item.drop-menu > a{
    display: flex; 
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #797571;
    padding: 10px 0;
    transition: transform 0.3s ease;
    width: 100%;
    justify-content: center; 
}

header div#inner nav ul li.menu-item.drop-menu > a img{
    padding-left: -100px;
}

/*=============================================
メイン画像
=============================================*/

div#main{
    height: 750px;
    background-image: url("images/top_img_05.jpg");
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

div.main-text-container{
    color: #fff;
    margin-right: 100px;
}

div.main-text-container h1{
    font-size: 100px;
    text-align: right;
    padding-bottom: 50px;
}

div.main-text-container p#name{
    font-size: 25px;
    text-align: right;
}

/*=============================================
自己紹介
=============================================*/

div#contents_01{
    background-color: #e4e3e3;
    width: 100%;
    height: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#self_introduction{
    width: 1050px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#self_introduction_left img{
    box-shadow: 5px 5px 5px rgba(206, 198, 190, 0.8);
    display: block;
}

#self_introduction_right{
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 50px;
}

div#self_introduction h2{
    font-size: 1.8em;
    color: #797571;
}

div#self_introduction_right hr#line_1{
    width: 500px;
    height: 1px;
    border: none;
    background-color: #CEC6BE;
    margin: 20px 0;
}

div#self_introduction p{
    color: #797571;
}

/*=============================================
制作実績
=============================================*/

div#production{
    width: 100%;
    padding-bottom: 50px;
}

div#production h2{
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 100px;
}

div#production_button ul{
    width: 1050px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

div div#production_button ul li{
    margin-bottom: 50px;
}

div#production_button ul li a{
    box-shadow: 5px 5px 5px rgba(121, 117, 113, 0.8);
    transition: all 0.3s ease;
    display: block;
}

div#production_button ul li a:hover{
    box-shadow: 10px 10px 10px rgba(121, 117, 113, 0.8);
    transform: translateY(-5px);
}

div#production_button ul li a img{
    display: block;
    width: 100%;
    height: 100%;
}

/*=============================================
スキル・経歴
=============================================*/

div#contents_02{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #e4e3e3;
}

div#skill{
    width: 1050px;
    height: 500px;
    margin: 100px auto 100px auto;
    display: flex;
    justify-content: space-between;
}

div#skill_left{
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-right: 0 50px 0 auto;
}

div#skill_left h2{
    font-size: 1.8em;
    color: #797571;
}

div#skill_left hr#line_2{
    width: 500px;
    height: 1px;
    border: none;
    background-color: #CEC6BE;
    margin: 20px 0;
}

div#skill_list ul li{
    color: #797571;
    list-style: square;
    margin-left: 20px;
}

div#skill_right{
    box-shadow: 5px 5px 5px rgba(206, 198, 190, 0.8);
}

/*=============================================
経歴はこちらボタン
=============================================*/

div#left_detail_button{
    width: 500px;
}

div#left_detail_button detail_button{
    margin: o auto;
}

div#detail_button a{
    width: 240px;
    height: 40px;
    box-shadow: 3px 3px 3px rgba(121, 117, 113, 0.8);
    transition: all 0.3s ease;
    display: block;
    line-height: 40px;
    border: 2px solid #797571;
    color: #797571;
    margin: 50px auto 0 auto;
    text-align: center;
    background-color: #fff;
}

div#detail_button a:hover{
    box-shadow: 8px 8px 8px rgba(121, 117, 113, 0.8);
    transform: translateY(-5px);
    font-weight: bold;
    color: #fff;
    background-color: #797571;
    border: 2px solid #fff;
}

/*=============================================
お問合せフォーム
=============================================*/

div#form h2{
    font-size: 1.8em;
    text-align: center;
    margin: 0 auto 50px auto;
    padding-top: 100px;
}

div#form p{
    text-align: center;
    margin: 0 auto;
}

div#inquiry_button{
    text-align: center;
    margin: 50px auto 0 auto;
}

div#inquiry_button a{
    width: 240px;
    height: 40px;
    box-shadow: 3px 3px 3px rgba(121, 117, 113, 0.8);
    transition: all 0.3s ease;
    display: block;
    line-height: 40px;
    border: 2px solid #797571;
    margin: 0 auto;
    color: #797571;
}

div#inquiry_button a:hover{
    box-shadow: 8px 8px 8px rgba(121, 117, 113, 0.8);
    transform: translateY(-5px);
    font-weight: bold;
    color: #fff;
    background-color: #797571;
    border: 2px solid #fff;
}

/*=============================================
トップへ戻るボタン
=============================================*/

div#top_button{
    display: flex;
    justify-content: flex-end;
    margin-right: 400px;
    margin-top: 50px;
}

div#top_button a{
    display: inline-block;
    transition: transform 0.3s ease;
}

div#top_button a:hover{
    transform: translateY(-5px);
}

/*=============================================
フッター
=============================================*/

footer#footer{
    background-color: #797571;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer #footer_p{
    color: #fff;
}











