@charset "utf-8";
/* CSS Document */

/*div{
    border: 1px solid #000;
}*/

img{max-width: 100%;height:auto;}

body{
    background-color: #FDFCF9;
}

/************************ フォント設定 ************************/

/* 英語の見出し */
h2{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#212121;
    font-size: 48px;
}

h3{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #212121;
    font-size: 24px;
    line-height: 125%;  
}

/* 日本語の本文 */
p{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #272727;
    font-size: 14px;
    line-height: 170%;
}

/* 見出し（日本語（小）） */
.section_h_small{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
}

.header_menu li{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#272727;
    list-style-type: none;
}

.footer_menu li{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#fff;
    list-style-type: none;
}

.role{
    color:#888;
    font-size: 13px;
}

.category{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#888;
    font-size: 13px;
}

/************************ 全体の共通設定 ************************/

/* aタグのリアクション */
a:link{
    text-decoration: none;color:#272727;
}
a:visited{
    text-decoration: none;color:#272727;
}
a:hover{
    text-decoration: none;color: #fff;
    transition: color 0.4s ease;
}
a:active{
    text-decoration: none;color: #272727;
}

/* 横並び */
.container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/* 制作物に関する情報のリスト */
.works_list{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #272727;
    font-size: 14px;
    line-height: 170%;
    list-style-type: none;
}

/* ボタン */
.btn_box{
    width: fit-content;
    height: 40px;
    padding: 5px 30px;
    border: 2px solid #272727;
    border-radius: 30px;
    /*background-color: #FDFCF9;*/
    /*background-color: #FFB69E;*/
    background-color: #FDFCF9;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;

    display: flex;
    align-items: center; 
    justify-content: center; 

    margin-left: 277px;
}

.btn_box div p{
    color: #212121;
    font-weight: 600;
    white-space: nowrap;
}

.arrow {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 1px;
    margin: 3px 0 3px 20px;
    border-radius: 9999px;
    background-color: #212121;
    transition: background-color 0.4s ease;
  }
  
.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 5px;
    height: 1px;
    border-radius: 9999px;
    background-color: #212121;
    transform-origin: calc(100% - 0.5px) 50%;
    transition: background-color 0.4s ease;
}
  
.arrow::before {
    transform: rotate(45deg);
}

.arrow::after {
    transform: rotate(-45deg);
}
  
/* hover時の色の変化 */
.btn_box:hover {
    background-color: #212121;
}
  
.btn_box:hover p {
    color: #fff;
  }

.btn_box:hover .arrow,
.btn_box:hover .arrow::before,
.btn_box:hover .arrow::after{
    background-color: #fff; 
}

/* Topに戻るボタン（右下の円） */
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #FDFCF9;
    border: solid 2px #212121;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #212121;
    border-right: 3px solid #212121;
    transform: translateY(20%) rotate(-45deg);
}

/* トップページ共通：画像のhover時の変化 */
.hover_reaction:hover img{
    filter: brightness(0.7); 
    transition: filter 0.4s ease;
  }

/*===========
左から順番にフェードイン　
===========*/
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

/*===========
フェードイン　各方面
===========*/
.fadeIn_up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.fadeIn_up.is-show {
    opacity: 1;
    transform: translateY(0);
}

.fadeIn_right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.fadeIn_right.is-show {
    opacity: 1;
    transform: translateX(0);
}

.fadeIn_left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
.fadeIn_left.is-show {
    opacity: 1;
    transform: translateX(0);
}

/*===========
フェードイン　ふんわり
===========*/
.fadeIn{
    transition: 2s;
    opacity: 0;
    }

.fadeIn.animated {
    opacity: 1;
}


/************************ ファーストビュー ************************/

/* ヘッダー */
/* ロゴの位置 */
header .container #logo_pc{
    display: block;
    margin-top: 18px;
}

header .container #logo_sp{
    display: none;
}

/* メニュー */
header .header_menu{
    width: auto;
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

/* Worksボタン */
header .header_menu .header_works a{
    color: #212121;
    font-weight: 500;
    /*background-color: #4E944F;*/
    background-color: #7EB77F;
    display: block;
    width: 150px;
    border: 2px solid #272727;
    border-radius: 50px;
    padding: 8px 20px;  
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header .header_menu .header_works a:hover {
    background-color: #272727;
    color: #fff;
}

/* About meボタン */
header .header_menu .header_aboutme a{
    color: #212121;
    font-weight: 500;
    /*background-color: #F08080;*/
    background-color: #FFB69E;
    display: block;
    width: 150px;
    border: 2px solid #272727;
    border-radius: 50px;
    padding: 8px 20px;  
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header .header_menu .header_aboutme a:hover {
    background-color: #272727;
    color: #fff;
}

header .container{
    padding: 0 40px 0 15px;
    justify-content: space-between;
}

/* メイン画像 */
.fadein.active {
    opacity: 1;
    transform: translateY(0);
}

.top_main_visual_container{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px; /* ヘッダーからタイトルの距離 */
}

.main_visual_text{
    width:fit-content;
    height: auto;
    padding: 10px 0 0 30px;
}

.main_visual_text h2{
    display: block;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.main_visual_text h2 img{
    display: block;
}

.top_main_visual{
    max-width: 1200px;
    margin: -100px auto 0 auto;
    display: flex;
    justify-content: space-between;
}

.top_main_visual_container_sp{
    display: none;
}

.top_catchcopy{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -120px;
    margin-bottom: 150px;
}

.top_catchcopy p{
    display: block;
    font-size: 32px;
    font-weight:600;
    line-height: 180%;
    text-align: center;
}

/************************ フッター ************************/
footer{
    background-color: #212121;
}

footer .container{
    max-width: 1200px;
    height: 170px;
    padding: 20px 20px 10px 20px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}

footer .container nav .footer_menu{
    max-width: 150px;
    width: 150px;
    display: flex;
    justify-content: space-between;
}

footer .container nav .footer_menu li a{
    color: #fff;
}

footer .container nav .footer_menu li a:hover{
    text-decoration: none;color: #969696;
}

footer .container .copy_right{
    margin: 0 auto;
}

/************************ トップページ：メインコンテンツ ************************/
.top_main{
    max-width: 1200px;
    padding: 200px 40px 0 40px;
    margin: 0 auto;
}

#works{
    margin-bottom: 100px;
}

.top_main .feature,
.top_main .web_other,
.top_main .graphic,
.top_main .top_about{
    max-width: 1200px;
    margin-bottom: 200px;
}

/************* フィーチャーのエリア *************/
.top_main .feature .first{
    margin-bottom: 150px;
}

.top_main .feature .container .box{
    padding-top: 40px;
}

.top_main .feature .container div .title_box{
    border-bottom: 1px solid #969696;
    padding: 7px 0;
    margin-bottom: 10px;
}

.top_main .feature .container div .role_box{
    margin-bottom: 25px;
}

.top_main .feature .container div .text_box{
    max-width: 560px;
    margin-bottom: 25px;
}

.top_main .feature .container div .cv_box{
    margin-bottom: 35px;
}

.top_main .feature .container div .color_box{
    margin-bottom: 35px;
}

/************* そのほかのWebDesignのエリア *************/
.top_main .web_other .container .box{
    max-width: 500px;    
}

.top_main .web_other .container .box .image{
    margin-bottom: 8px;
}

.top_main .web_other .container .box .title_box{
    border-bottom: 1px solid #969696;
    padding-bottom: 7px; 
    margin-top: 4px;
    margin-bottom: 8px;    
}

.top_main .web_other .container .box .role_box{
    margin-bottom: 30px;
}

/************* GraphicDesignのエリア *************/
.top_main .graphic .container .box,
.top_main .graphic .container_less .box{
    max-width: 350px;
}

.top_main .graphic .container .first{
    margin-bottom: 40px;
}

.top_main .graphic .container .box .image,
.top_main .graphic .container_less .box .image{
    margin-bottom: 8px;
    /*transition: filter 0.4s ease;*/
}

.top_main .graphic .container .category,
.top_main .graphic .container_less .category{
    color: #888;
  }

.top_main .graphic .container .btn,
.top_main .graphic .container_less .btn{
    transition: color 0.4s ease;
}
  
/* hover時の変化 */
.top_main .graphic .container .box:hover .category,
.top_main .graphic .container .box:hover .btn,
.top_main .graphic .container_less .box:hover .btn{
    color: #969696; 
  }

/* コンテンツが3つない場合の横並び */
.container_less{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /*justify-content: space-between;*/
    gap: 35px;
}

/************ トップページ：About Me ************/
.top_about .about_h{
    margin-bottom: 100px;
}

.top_about .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top_about .container .text{
    max-width:750px;
    width: 750px;
}

.top_about .container .image{
    display: flex;
    flex-direction: column;
}

.top_about .container .image .portrait{
    margin-bottom: 20px;
}

.top_about .container .image .name{
    margin-left: 30px;
    margin-bottom: 30px;
}

.top_about .container .text{
    margin-bottom: 50px;
}

.top_about .container .btn_box{/* ボタン中央寄せ */
    margin: 0 auto;
}

/************************ 下層ページ共通 ************************/
/* ヘッダー下の見出しのエリア */
.lower_page{
    position: relative;
    z-index: 100;
}

.header_area{
    width: 1130px;
    border-bottom: 1px solid #969696;
    padding-top: 80px;
    padding-bottom: 80px;
    
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
}

.lower{
    max-width: 1200px;
    padding: 400px 40px 0 40px;
    margin: 0 auto;
}

.lower_h{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#212121;
    font-size: 48px;

    text-align: center;
    
}

.lower section{
    margin-bottom: 200px;
}

.section_h{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #212121;
    font-size: 32px;
}

/* 戻る矢印 */
.arrow_back {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 1px;
    margin: 3px 0;
    border-radius: 9999px;
    background-color: #212121;

    margin-right: 20px;
  }
  
  .arrow_back::before,
  .arrow_back::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0;
    width: 5px;
    height: 1px;
    border-radius: 9999px;
    background-color: #212121;
    transform-origin: 0.5px 50%;
  }
  
  .arrow_back::before {
    transform: rotate(45deg);
  }
  
  .arrow_back::after {
    transform: rotate(-45deg);
  }

  /* hover時の色の変化 */
  .btn_box:hover .arrow_back,
  .btn_box:hover .arrow_back::before,
  .btn_box:hover .arrow_back::after{
    background-color: #fff; 
  }

/************************ 下層ページ：About Me ************************/
/* セクション見出しの箱 */
.section_h_box{
    max-width: 400px;
    width: 400px;
    margin-bottom: 90px;
}

/* 自己紹介 */
.lower_about .container article{
    max-width: 600px;
}

.lower_about .container article .mb{
    margin-bottom: 30px;
}

/* 目次 */
.about_list_container{
    width: 500px;
    height: 400px;
    border: 1px solid #969696;
    border-radius: 10px;
    margin: 0 auto 200px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_list_container .box{
    width: fit-content;
    padding: 30px 50px;
    margin: 0 auto;
}

.about_list_container .box h3{
    font-size: 21px;
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

.about_list{
    list-style-type: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #272727;
    font-size: 14px;
    line-height: 170%;
}

.about_list li{
    font-size: 18px;
    width: 350px;
    border-bottom: 1px solid #969696;
    margin-bottom: 20px;
}

.about_list li:hover{
    color: #fff;
    background-color: #FFB69E;
    border-radius: 3px;
    transition: all 0.4s ease;
}

/* サブタイトル(StoryとPolicy) */
.section_h_sub{
    font-size: 14px;
    display: block;
    margin: 8px 0 50px 0;
}

/* 履歴書の裏側のストーリー */
.story_container{
    display: flex;
    gap: 50px;
    justify-content: center;
}

.story_text{
    max-width: 850px;
}

.story_text .box{
    margin-bottom: 25px;
}

.story_text .box div{
    width: fit-content;
    margin-bottom: 5px;
}

.text_box .highlight{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #272727;
    font-size: 21px;
    background-image: linear-gradient(0deg, #FFB69E80 0.5em, transparent 0.5em);
}

.story_text .box p{
    display: block;
    margin-bottom: 10px;
}

/* テキストとイラストの横並び */
.story .story_container .story_text .box{
    display: flex;
    align-items: center;
    gap: 50px;
} 

/* 大切にしていること */
.introduce{
    margin-bottom: 200px;
}

.circle_list{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: #FFB69E;
    margin-top: 5px;

    position: relative;
    z-index: 100;
}

.policy_number{
    position: absolute;
    top: 2px;
    left: 53%;
    transform: translateX(-50%);
    z-index: 200;
}

.text_box h4{
    display: block;
    width: fit-content;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #212121;
    font-size: 21px;
    margin-bottom: 10px;
}

.lower_about .policy .box{
    width: fit-content;
    display: flex;
    
    margin: 0 auto;
}

.lower_about .policy .box .text_box{
    max-width: 600px;
    width: 600px;
    margin-left: 50px;
}

.lower_about .policy .box .mb{
    margin-bottom: 40px;
}

/* できること */
.skill_sheet{
    width: fit-content;
    margin: 0 auto;
}

/* その他の制作物 */
.lower_about .other_works .container,
.lower_about .other_works .container_less{
    margin-bottom: 100px;
}

.lower_about .other_works .container_less a{
    margin-right: 90px;
}

.otherworks_title{
    color: #888;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 400;
}

/* 見出しの円の設定 */ 
.about_circle{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #FFB69E;
}

/* 採用ご担当者様へのメッセージ */
.message_container{
    display: flex;
    gap: 50px;
    align-items: center;
}

.message_text{
    max-width: fit-content;
    margin-bottom: 50px;
}

.message_text p{
    display: block;
    line-height: 200%;
}

.message_text .mb{
    display: block;
    margin-bottom: 20px;
}

.lower_about .btn_box{
    margin: -100px auto 200px auto;
}

/* Topに戻るボタンの中央寄せ */
.lower_about .other_works .btn_box{
    margin: 0 auto;
}

/************************ 下層ページ：Work01椅子屋ChairShop/Work02カレー屋 ************************/
.lower_works1 .container .box{
    max-width: 530px;
    width: 530px;
}

.lower_works1 .container .box .works_title_box{
    border-bottom: 1px solid #969696;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.lower_works1 .container .box .mb{
    margin-bottom: 30px;
}

/* Worksに戻るボタンの中央寄せ */
.lower_works1 .btn_box{
    margin: 100px auto 0 auto;
}



/***************************** SPレイアウト *****************************/
/***************************** SPレイアウト *****************************/

@media only screen and (max-width: 768px) {

/************************ スマホ：全体の共通設定 ************************/
/* 縦並び */
.container{
    max-width: 375px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main{
    max-width: 375px;
    padding: 0;
    margin: 0 auto;
}

/* ボタン */
.btn_box{
    width: 100%;
    margin: 0 auto;
}

/************************ スマホ：ファーストビュー ************************/

header .container #logo_pc{
    display: none;
}

header .container #logo_sp{
    display: block;
    width: fit-content;
    margin: 10px auto 0 auto;
}

header .header_menu{
    max-width: 375px;
    margin: 20px auto 0 auto;

    display: flex;
    justify-content: space-evenly;
}

header .container{
    max-width: 375px;
    margin-bottom: 120px;
}

/* メイン画像 */
.title_en_sp{
    margin-left: -10px;
}

.top_main_visual_container{
    display: none;
}

.top_main_visual_container_sp{
    max-width: 375px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    margin: 0 auto;
}

.top_main_visual_container_sp .top_main_visual{
    max-width: 375px;
    gap: 5px;
}

.top_main_visual_container_sp .main_visual_text{
    display: block;
    margin-left: -20px;
}

.top_catchcopy {
    margin-bottom: 80px;
}

.top_catchcopy p{
    font-size: 18px;
}
/************************ スマホ：フッター ************************/
footer{
    width: 100%;
}

footer .container{
    max-width: 375px;
    height: 230px;
    padding-top: 60px;

    display: flex;
    flex-direction: column;
}

footer .container nav .footer_menu{
    height: 80px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

footer .container nav .footer_menu .sp_none{
    display: none;
}

/************************ スマホ：トップページ：メインコンテンツ ************************/
.top_main{
    max-width: 375px;
}

/* 見出しの設定 */
#works,.about_h{
    font-size: 30px;
    text-align: center;
}

.title_box h3{
    font-size: 21px;
}

.graphic .container .box .h3{
    font-size: 21px;
}

/************* スマホ：フィーチャーのエリア *************/
.top_main .feature .first{
    margin-bottom: 70px;
}

.top_main .feature .container .box{
    /*padding-top: 40px;*/
    margin-bottom: 50px;
}

/* Theater Via Digre 画像とテキストのエリアの順番入れ替え */
/* MOVESS GYM 画像とテキストのエリアの順番入れ替え */
.top_main .feature .reverse .box{
    order: 2;
}

.top_main .feature .reverse .image{
    order: 1;
}

/************* スマホ：そのほかのWebDesignのエリア *************/

/* 縦並び */
.container_less{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top_main .web_other .container .box{
    /*max-width: 500px;*/
    margin-bottom: 100px;
}

/************* スマホ：GraphicDesignのエリア *************/
.top_main .graphic .container .box{
    /*max-width: 350px;*/
    margin-bottom: 35px;
}

.top_main .graphic .container_less .box{
    margin-bottom: 35px;
}

/* コンテンツが3つない場合のcontainer */
.container_less{
    gap: 0;
}

/************ スマホ：トップページ：About Me ************/
.top_about .container .text{
    width: 95%;
}


/************************ スマホ：下層ページ共通 ************************/
.lower_about,
.lower_works1{
    width: 90%;
}

/* ヘッダー下の見出しのエリア */
.lower_page{
    position: relative;
    z-index: 100;
}

.header_area{
    width: 90%;
    margin-bottom: 50px;
}

.lower{/* コンテンツのpadding */
    width: 100%;
    padding: 280px 6% 50px 6%; /* Top：メインコンテンツまでの距離 */
    margin: 0 auto;
}

.lower .header_area h1{
    font-size: 32px;
}

/* Works 見出し */
.works_title_box h3{
    font-size: 21px;
}

/************************ スマホ：下層ページ：About Me ************************/

/* 自己紹介 */
.lower_about .container article{
    width: 100%;
    order: 2;
}

.lower_about .container .portrait{
    margin-top: -130px;
    order: 1;
}

/* 目次 */
.about_list_container{
    width: 100%;
}

.about_list_container .box{
    width: 100%;
    padding: 30px 15px;
    margin: 0 auto;
}

.about_list_container .box h3{
    font-size: 21px;
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

.about_list{
    width: 100%;
    margin: 0 auto;
}

.about_list li{
    width: 100%; 
    margin: 0 auto 20px auto;
    text-align: left; 
    font-size: 15px;
}

/* 見出し中央揃え */
.section_h_box{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* セクション見出し */
.section_h_box .section_h{
    font-size: 24px;
    text-align: center;
}

.section_h_box .section_h_small{
    font-size: 11px;
    text-align: center;
}

/* サブタイトル（StoryとPolicy） */
.section_h_sub{
    font-size: 14px;
    text-align: center;
}

/* 履歴書の裏側のストーリー */
.story_container .box{
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.story_text{
    width: 90%; 
    margin: 0 auto; 
    text-align: center; 
}

.story_text .box{
    max-width: 768px;
    margin-bottom: 25px;
}

.story_text .story_reverse{
    display: flex;
    flex-direction: column-reverse;
}

.story_text .box h4{
    font-size: 17px; 
}

.story_text .box div img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* 大切にしていること */
.lower_about .policy .box .text_box{
    width: 85%;
    margin-left: 8%;
}

.policy .box .text_box h4{
    font-size: 17px;
    margin-top: 3px;
    margin-bottom: 12px;
}

/* その他の制作物 */
.gallery{
    width: fit-content;
    margin: 0 auto 70px auto;
}

.lower_about .other_works .container{
    margin-bottom: 30px;
}

.lower_about .other_works .container_less a{
    margin-right: 0;
}

/* 採用ご担当者様へのメッセージ */
.message_container{
    display: flex;
    flex-direction: column;
}

/************************ スマホ：下層ページ：Work01椅子屋ChairShop ************************/
.lower_works1 .container .box{
    width: 100%;
    margin-bottom: 50px;
}

}

    