@charset "utf-8";

body{
    background-color: #ffffff;
}

 
/* *{
    outline: 3px solid magenta;
}  */

.loader-bg {
    align-items: center; /* 上下左右中央 */
    background-color: #d7e7f2;
    display: flex; /* 上下左右中央 */
    height: 100vh; /* 縦いっぱい */
    justify-content: center; /* 上下左右中央 */
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw; /* 横幅いっぱい */
    z-index: 9999;
    height: calc( var(--vh) * 100 );
}


#header{
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

#wrapper{
	position: relative;/*position stickyの基点にするため relativeをかける*/
	display: flex;/*左エリア、右エリア横並び指定*/
	flex-wrap: wrap;/*ボックスの折り返し可*/
}

/*左エリア*/
#fixed-area{
  /*左固定記述*/
  position: -webkit-sticky;/*Safari用*/
  position: sticky;
  top:0;
	/*横半分50%　縦を100vhにする*/
	width: 30%;
	height: 100vh;
    margin: 0 auto;
    background-color: #ffffff;
}

.mainImg{
    text-align: center;
}

.mainImg>img{
    margin-top: 38%;
    margin-bottom: 30px;
    width: 80%;
}


@media screen and (max-width:960px){
#wrapper{
	width: 100%;
}}


.mainImg2{
    width: 80%;
    margin: 0 auto;
}


.wave{
    position:relative;
    height:200px;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
    }
    canvas{
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
    }


/*右エリア*/
#container{
	/*横半分50%にする*/
	width: 70%;
}

/*＝＝＝＝＝＝＝＝＝＝＝768px以下の見え方＝＝＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (max-width:768px){
#wrapper{
	display: block;/*display:flex;を解除*/
}
#fixed-area{
 	position:relative!important;/*position stickyを解除*/
	width:100%;/*横幅を100%にして1列に見せる*/
	height: 40vh;/*縦幅を100vh⇒40vh　※任意の高さに設定可能*/
}
#container{
	width:100%;/*横幅を100%にして1列に見せる*/
}
}


#header {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    background-color: #fff;
    z-index: 9998; 
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }
  
  /* 表示時に追加されるクラス */
  #header.visible {
    transform: translateY(0);
  }

#header_p{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10000;
    border-radius: 30%;
}

.header__inner{
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px 0 70px;
    position: absolute;
    top: 65px;
    z-index: 9998;
    width: 100%;
    box-sizing: border-box;
}


.header__inner nav{
    max-width: 490px;
}

.header__inner_p nav{
    width: 100%;
    max-width: 570px;
}

.header__inner nav ul{
    display: flex;
    justify-content: space-between;
}


.header__inner nav li{
    font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    color: #0c172c;
    line-height: 1.5;
    text-align: center;
}



.header__inner span{
    font-size: 11px;
    color: #0c172c;
}

.gnav {
    position: fixed;
    margin: 10px 20px 10px 10px;
    width: 70%;
    background-color: #fff; /* 背景色を指定しないと下の要素が透けることがあります */
    z-index: 10000; /* 他の要素より前面に */
    padding: 10px 20px; /* 必要に応じて調整 */
    border-radius: 25px;
  }

.gnav a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #0c172c;
    text-decoration: none;
}

.gnav a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #274884;
    transform: translate(-100%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    content: "";
}

.gnav a:hover:after {
    transform: translate(0, 0);
}


.logo img{
    width:  64px;
}

.mainMsg{
    height: 100vh;
}

.text_03 {
    opacity: 0; /* ← 最初は透明に */
    transition: opacity 0.5s ease;
    color: #000;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 2px;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    top: 50%;
    position: relative;
    letter-spacing: 0.5em;
}

.fadeIn1500ms {
    animation-name: fadeIn1500ms;
    animation-delay: 4s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1500ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left: 50%;
    z-index: 999;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #0c172c;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#0c172c;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#0c172c;
}


.highlight {
  text-decoration: underline;
  text-underline-offset: -0.2em;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-decoration-skip-ink: none;
}

@media screen and (max-width:1000px){
    .concept_text2 {
        line-height: 4.5;
        margin: 60px auto;
        padding-right: 150px;
}
}

@media screen and (max-width:960px){
    .concept_text2 {
    font-size: 14px;
    line-height: 3.166;
    letter-spacing: 0.54em;
    margin-top: 60px;
    text-align: center;
}
}

@keyframes rotate-anime {
    0%  {transform: rotate(0);}
    100%  {transform: rotate(360deg);}
}

/* .concept_text2 h1{
font-size: 20px;

} */


#about{
    width: 100%;
    /* height: 766px; */
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin-top: 80px;
}

.about_wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
    display: flex;
    align-items: center;
}

.about_textarea{
    width: 60%;
}

.about_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
}

.about_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.about_title span{
    font-size: 16px;
}

.about_text{
    margin: 60px;
    font-size: 16px;
    line-height: 2.785;
    padding: 30px;
    background-color: #d7e7f2;
    border-radius: 20px;
}


.btnarrow5{
    position: relative;
    border: 1px solid #0c172c;
    border-radius: 3px;
    padding: 12px 52px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    color: #0c172c;
    transition: all .3s linear;
}

.btnarrow5:hover{
	background:#0c172c;
	color:#ffffff;
    transition: all 0.6s ease;
    opacity: 1;
}

.btnarrow5::before{
    position: absolute;
    content: "";
    width: 111px;
    height: 1px;
    background-color: #0c172c;
    top: 51%;
    right: -95px;
    transition: all 0.3s linear;
}

.btnarrow5::after{
    position: absolute;
    content: "";
    width: 14px;
    height: 1px;
    background-color: #0c172c;
    transform: rotate(45deg);
    top: 14px;
    right: -95px;
    transition: all 0.3s linear;
}

.btnarrow5:hover::before{
    right: -110px;
}

.btnarrow5:hover::after{
    right: -110px;
}

.viewmore{
    text-align: center;
}

.about_img2{
    width: 220px;
    margin: 90px 40px;
    
}

#works{
    width: 100%;
    height: 766px;
    background-image: url(../image/2x/works_haikei@2x.png);
    background-size: cover;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.works_wrap{
    max-width: 1080px;
    margin: 180px auto;
    padding: 90px 10px 10px 10px;
    align-items: center;
}

.works_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;

}

.works_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.works_title span{
    font-size: 16px;
}

.works_img{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 60px;
    column-gap: 5%;
    gap: 40px 5%;  
    padding: 90px 0;  
    margin: 0 auto;
    max-width: 960px;
    box-sizing: border-box;
}

.workimg {
    cursor: pointer;
    max-width: 310px;
    position: relative;
    box-sizing: border-box;
    width: 30%;
}
.workimg img {
    height: auto;
    width: 100%;
}
.hover_mask {
    align-items: center; 
    background: rgba(35, 36, 52, 0.5); 
    bottom: 0;
    color: #fff; 
    display: flex; 
    height: auto;
    justify-content: center; 
    left: 0;
    opacity: 0; 
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity.6s ease;
    width: 100%;
    text-align: center;
    line-height: normal;
        font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.hover_mask:hover {
    opacity: 1; 
}


.works_v{
    width: 188px;
    height: 39px;
    line-height: 39px;
    border: #264785 solid 1px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-align: center;
    margin-left: 500px;
    transition: opacity.2s ease;
}

.work_2{
    margin: 0;
}

#skills{
    width: 100%;
    height: 766px;
    align-items: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.skills_wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
}


.skills_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
}

.skills_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.skills_title span{
    font-size: 16px;
}

.skills{
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    padding: 0 16px;
    gap: 5%;
}

.skill_web{
    text-align: center;
}


.skill_web img{
    width: 150px;
    margin-bottom: 30px;
}

.skill_pc{
    text-align: center;
}
.skill_pc img{
    width: 150px;
    margin-bottom: 30px;
}

.skill_ear{
    text-align: center;
}
.skill_ear img{
    width: 150px;
    margin-bottom: 30px;
}

.skill_title2{
    font-size: 18px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin-bottom: 10px;
}

.skill_text{
    font-size: 14px;
    line-height: 1.730;
    letter-spacing: 0.4em;
    text-align: start;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin-bottom: 15px;
}

#contact{
    width: 100%;
    height: 766px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.contact_wrap{
    max-width: 1080px;
    margin: 90px auto;
    padding: 90px 10px 10px 10px;
}

.contact_content{
    margin-top: 118px;
    text-align: center;
    margin-bottom: 150px;
}

.contact_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
}

.contact_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.contact_title span{
    font-size: 16px;
}

#contact img{
    width: 103px;
    margin-bottom: 30px;
}

.contact_text{
    font-size: 14px;
    margin-bottom: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.button{
    position: relative;
    border: 1px solid #0c172c;
    border-radius: 3px;
    padding: 17px 52px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    background-color: #ffffff;
    color: #0c172c;
}

.button:hover{
	background:#0c172c;
	color:#ffffff;
    transition: all .6s ease;
    opacity: 1;
}

.totop{
    position: fixed;
    bottom: 350px;
    right: 10px;
    width: 29px;
}


#fotter{
    display: block;
    width: 75%;
    height: 268px;
    background-size: cover;
    height: auto;
    position: relative;
    text-align: center;
    z-index: 999;
    margin: 0 auto;
}

.fotter_menu{
    margin: 0 auto;
    max-width: 564px;
    padding-top: 90px;
}

.fotter_menu ul{
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

.fotter_menu li{
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
}

.fotter_menu p{
    font-size: 10px;
    margin-top: 120px;
    text-align:center;
    padding-bottom: 5px;
}

#concept_p{
    margin-top: 180px;
}

.concept_inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
}

.concept_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.concept_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.concept_title span{
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.concept_wrap1{
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 90px;
    padding-left: 252px;
    margin-bottom: 300px;
    gap: 5%;
}

.concept_main{
    width: 45%;
}

.concept_main img{
    width: 300px;
}


.concept_text {
    width: 459px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.18em;  
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    ;
}

.concept_wrap2{
    height: 666px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-color: #EBE2CA;
    margin-bottom: 200px;
}

.border{
    border: 1px dotted #0c172c;
}

.profile_img img{
    width: 319px;
}


.profile_wrap{
    padding-top: 90px;
    max-width: 900px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    gap: 9%;
}

.profile_text{
    width: 450px;
}

.profile_text h2{
    font-size: 30px;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    display:flex;
    letter-spacing: 0.03em;
    padding-bottom: 1%;
}

.profile_text h3{
    font-size: 20px;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.profile_text p{
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.18em;   
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

#career{
    margin-top: 90px;
}

.career_inner{
    max-width: 1080px;
    margin: 0 auto;
    padding:10px;
}

.career_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.career_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.career_title span{
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.career_img{
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 90px;
}


#vision{
    margin-top: 90px;
}

.vision_inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
}

.vision_title{
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.307em;    
    padding-left: 28px;
    color: #0c172c;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.vision_title::before{
    position: absolute;
    content: "";
    top: 0;
    width: 16px;
    left: 0;
    height: 100%;
    background-color: #0c172c;
    border-radius: 8px 8px 0 0;
}

.vision_title span{
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.vision_wrap{
    max-width: 900px;
    margin: 0 auto;
    padding-top: 90px;
    margin-bottom: 200px;
    display: flex;
    gap: 6%;
}

.vision_text{
    width: 450px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.18em;  
    padding-left: 27px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.vision_img{
    width: 150px;
}

#workspage{
    width: 100%;
    padding: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.workspage_list{
    display: flex;
    text-align: right;
    position: absolute;
    right: 0;
    top: 129px;
    gap: 20px;
}

.workspage_wrap{
    max-width: 1080px;
    margin: 180px auto;
    padding-top: 90px;
    align-items: center;
    margin-bottom: 200px;
    position: relative;
}

.workspage_img{
    display: flex;
    flex-wrap:wrap;
    gap: 5%;
    padding-top: 90px;
}

.works_content_banner,
.works_content_web{
    width:calc(100%/3);
    flex-basis: 30%;
    margin-bottom: 30px;
    position: relative;
    }

.works_content_banner a,
.works_content_web a{
    display: block;
    height: auto;
    position: relative;
    }
    
    .works_content_banner p,
    .works_content_web p{
    font-size: 18px;
    line-height: 1.333;
    margin-top: 5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.works_content_banner span,
.works_content_web span{
    font-size: 13px;
    line-height: 1.333;
    color: #968c88;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
}

.hover__mask2 p
{
font-size: 20px;
line-height: 1.333;
margin-top: 0;
height: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


.hover_mask2 {
    align-items: center; 
    background: rgba(46, 25, 17, .50); 
    bottom: 0;
    color: #fff; 
    display: flex; 
    height: 329px;
    justify-content: center; 
    left: 0;
    opacity: 0; 
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity.6s ease;
    width: 100%;
    text-align: center;
    line-height: normal;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.hover_mask2:hover {
    opacity: 1; 
}

#contactpage{
    width: 100%;
    height: 1085px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.contact_text{
    text-align: center;
    line-height: 2.222;
    letter-spacing: 0.1em;
    font-size: 16px;
    margin-top: 40px;
    padding: 10px;
}

.Form {
    margin: 50px 0 200px 0;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
}

.Form-Item {
    padding-bottom: 24px;
    width: 100%;
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
    width: 100%;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
    padding-bottom: 9px;
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

.Form-Item-Input {
    border: 0px;
    border-radius: 3px;
    height: 40px;
    text-align: left;
    width: 617px;
    background: #d7e7f2;
    font-size: 14px;
}

.Form-Item-Textarea {
    border: 0px;
    border-radius: 3px;
    height: 216px;
    text-align: left;
    width: 617px;
    background: #d7e7f2;
    font-size: 14px;
}

input[type="checkbox"] {
    margin-top: 20px;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
            appearance: none;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
}

button{
    width: 250px;
    height: 49px;
    background-color: #e0ebf3;
    margin: 0 auto;
    font-size: 15px;
    line-height: 49px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    border-radius: 3px 3px 3px 3px;
    margin-top: 20px;
    transition: all 0.5s ease;
    border-radius: 3px;
}

button:hover{
	background:#0c172c;
	color:#fff;
}

.sp__nav, 
.hamberger{
    display: none;
}

#about_sp,
#aboutp_sp{
    display: none;
}

.title_sp,
.works_img span,
.workspage_list_sp
{
    display: none;
}

#concept_sp,
.career_sp{
    display: none;
}

.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 2s;
}

.inview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.logo1_sp{
    display: none;
}

#Container .mix{
    display: none;
}

@media screen and (max-width:768px) {

#header{
    display: none;
}

.hamberger{
    display: block;
    cursor: pointer;
    height: 30px;
    width: 33px;
    z-index: 9998;
    right: 0;
}
.hamberger span{
    width: 33px;
    height: 3px;
    background-color: #0c172c;
    position: absolute;
    content: "";
    top: 30px;
    right: 30px;
    z-index: 9998;
    transition: 0.5s;
}

.hamberger span::before,
.hamberger span::after{
    position: absolute;
    content:"";
    width: 33px;
    height: 3px;
    background-color: #0c172c;
    transition: 0.5s;
}

.hamberger span::before{
    top: -10px;
}
.hamberger span::after{
    top: 10px;
}


.hamberger.open span{
    background-color: transparent;
}
.hamberger.open span::before,
.hamberger.open span::after{
    top: 0;
}

.hamberger.open span::before{
    transform: rotate(45deg);
}
.hamberger.open span::after{
    transform: rotate(-45deg);
}

/* #header_sp{
height: 667px;
background-image: url(../image/2x/main_sp@2x-100.jpg);
background-size: cover;
background-position: center;
width: 100%;
position: relative;
}
 #header__sp{
    width: 100%;
    position: relative; 
    }
 
 

#waveCanvas{
    display: none;
}
*/

.mainImg2{
    width: 80%;
    text-align: center;
}

.mainImg2 img{
    width: 70%;
}

.scrolldown2{
    left: 50%;
    top: 18%;
}


.text_03 {
    opacity: 0; /* ← 最初は透明に */
    transition: opacity 0.5s ease;
    color: #0c172c;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    top: 53%;
    position: relative;
    letter-spacing: 0.5em;
    font-size: 18px;
}



.sp__nav{
position: absolute;
width: 100%;
height: 100vh;
background-color: rgba(63, 63, 104, 0.8);
top: 0;
z-index: 9997;
}

.sp__nav ul{
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}

.sp__nav li{
padding: 16px;
font-size: 16px;
color: #ffffff;
text-align: center;
z-index: 9999;
}


/* 
.logo1_sp {
display: block;
}

.logo1_sp img{
width: 82px;
margin: 20px;
}



#concept{
    background-image: url(../image/2x/tophaikei_sp@2x.png);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-position: top;
    margin: 33px;
}

.concept_logo img{
    width: 90px;
}

.concept_text1 {
font-size: 17px;
line-height: 1.45;
letter-spacing: 0.30em;
-webkit-writing-mode: vertical-rl;
flex-direction: row-reverse;
position: absolute;
align-items: center;
right: 0;
height: 454px;
width: 30px;
padding: 30px;
background-color: rgba(255, 255, 255, 0.45);
top: 125px;
left: 7%;
}

.concept_text1  br{
display: none;
}

.concept_text2 {
font-size: 11px;
line-height: 3.1666;
margin-top: 60px;
padding-right: 0;
-webkit-writing-mode: horizontal-tb;
-ms-writing-mode: horizontal-tb;
}

.concept_logo {
    padding-top: 150px;
    text-align: center;
    padding-bottom: 150px;
    background-image: none;
} */

.concept_text {
    margin: 0 auto;
    text-align: start;
    width: 90%;
    font-size: 14px;
    line-height: 1.730;
    letter-spacing: 0.4em;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    ;
}



#about{
    display: none;
}


#about_sp{
    display: block;
    width: 100%;
    height: 900px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


.about_wrap_sp{
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
    align-items: center;
}

.about_img2{
    width: 50%;
    margin: 60px auto;
    text-align: center;
}

.about_text_sp{
    margin: 40px auto;
    margin-bottom: 60px;
    font-size: 14px;
    line-height: 2.083;
    padding: 10px;
}

.btnarrow5{
    position: relative;
    border: 1px solid #0c172c;
    border-radius: 3px;
    padding: 12px 52px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    color: #0c172c;
    transition: all .3s linear;
    margin-left: 40px;
}

.btnarrow5::before{
    position: absolute;
    content: "";
    width: 85px;
    height: 1px;
    background-color: #0c172c;
    top: 51%;
    right: -65px;
    transition: all 0.3s linear;
}

.btnarrow5::after{
    position: absolute;
    content: "";
    width: 14px;
    height: 1px;
    background-color: #0c172c;
    transform: rotate(45deg);
    top: 14px;
    right: -65px;
    transition: all 0.3s linear;
}

.btnarrow5:hover::before{
    display: none;
}

.btnarrow5:hover::after{
    display: none;
}
#works{
    width: 100%;
    height: 2000px;
    background-image: url(../image/2x/works_haikei@2x.png);
    background-size: 300%;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.workimg{
    width: 100%;
}

.works_img{
    max-width: 300px;
    display: flex;
    flex-direction: column;
    padding: 90px 0 90px 0;
    justify-content: space-around;
    row-gap: 5%;
    margin: 0 auto;
}

.title_sp {
    display: block;
    font-size: 18px;
    line-height: 1.333;
    margin-top: 5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    padding-top: 5px;
}

.works_img span{
    display: block;
    font-size: 13px;
    line-height: 1.333;
    color: #968c88;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
    padding: 5px 0 20px 0; 
}

#skills{
    width: 100%;
    height: 1300px;
    align-items: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.skills_wrap{
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
}

.skills{
    display: block;
    justify-content: space-between;
    margin-top: 100px;
    padding: 0 16px;
    gap: 5%;
}

.skill_web img{
    width: 150px;
    margin-bottom: 0px;
}

.skill_pc img{
    width: 160px;
    margin-bottom: 0px;
}

.skill_ear img{
    width: 150px;
    margin-bottom: 0px;
} 

.skill_web{
    text-align: center;
    margin-bottom: 60px;
}

.skill_pc{
    text-align: center;
    margin-bottom: 60px;
}

.skill_ear{
    text-align: center;
    margin-bottom: 120px;
}


.skill_title2{
    font-size: 18px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin-bottom: 10px;
}

.skill_text{
    font-size: 14px;
    line-height: 2.083;
    text-align: start;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin-bottom: 7px;
}


#contact{
    width: 100%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.contact_wrap{
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
}

.contact_content{
    margin-top: 118px;
    text-align: center;
    margin-bottom: 150px;
}

.contact_title span{
    font-size: 16px;
}

#contact img{
    width: 103px;
    margin-bottom: 40px;
}

.contact_text{
    font-size: 14px;
    margin-bottom: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.contact_box{
    width: 250px;
    height: 49px;
    background-color: #f7f2e6;
    margin: 0 auto;
    font-size: 15px;
    line-height: 49px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    border-radius: 3px 3px 3px 3px;
    margin-top: 20px;
}

#fotter{
    display: block;
    width: 93%;
    background-image: url(../image/2x/footer_sp@2x.png);
    background-size: cover;
    height: auto;
    position: relative;
    text-align: center;
}


.fotter_menu{
    margin: 0 auto;
    padding-top: 90px;
}

.fotter_menu ul{
    display: block;
    justify-content: space-between;
    gap: 5%;
}

.fotter_menu li{
    font-size: 16px;
    padding: 22px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
}

.fotter_menu p{
    font-size: 10px;
    margin-top: 120px;
    text-align:center;
}

#header_p{
    display: none;
}

#concept_p{
    margin-top: 150px;
}

.concept_inner{
    display: block;
    margin: 0 auto;
    padding: 10px;
}

.concept_wrap1{
    display: block;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    margin-top: 90px;
    margin-bottom: 90px;
    margin-bottom: 200px;
    gap: 5%;
    padding-left: 0;
}

.concept_main{
    width: 45%;
    margin: 0 auto;
    padding: 30px;
}

.concept_main img{
    width: 100%;
}

.concept_text h2{
    font-size: 24px;
    line-height: 1.730;
    letter-spacing: 0.045em;
    padding-top: 50px;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    ;
}

.concept_text p{
    font-size: 14px;
    line-height: 1.928;
    letter-spacing: 0.01em;    
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.concept_wrap2{
    display: none;
}

#concept_sp{
    display: block;
    width: 100%;
    height: 785px;
    background-color: #EBE2CA;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.concept_haikei_sp{
    display: block;
    width: 100%;
    height: 103px;
    background-image: url(../image/2x/concept_haikei@2x.png);
    background-size: cover;
    position: relative;
}

.concept_wrap_sp{
    margin: 0 auto;
    padding-top: 50px;
    align-items: center;
}

.concept_textarea{
    width: 100%;
}

.concept_text_sp{
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 12px;    
    line-height: 2;
    text-align: center;
}

.concept_text_sp p{
    line-height: 2;
    letter-spacing: 0.1em;
}

#aboutp_sp{
    display: block;
    width: 100%;
    height: 1200px;
    margin-top: 150px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.profile_img {
    text-align: center;
}

.profile_wrap{
    display: block;
    padding: 20px 10px 10px 10px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}

.profile_text{
    width: 95%;
    margin: 0 auto;
}

.profile_text_sp{
    width: 100%;
    text-align: center;
}

.profile_text h2{
    display: inline-block;
    position: relative;
    font-size: 30px;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    letter-spacing: 0.03em;
    padding-top: 20px;
    padding-bottom: 1%;
}

.profile_text h3{
    font-size: 20px;
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.profile_text p{
    font-size: 14px;
    line-height: 2.083;    
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

#career{
    margin-top: 90px;
}

.career_inner{
    max-width: 767px;
    margin: 0 auto;
}

.career_img{
    display: none;
}

.career_sp{
    display: block;
    padding: 30px 10px 10px 10px;
}

.career_d{
    font-size: 16px;
    line-height: 1.6875;
    letter-spacing: 0.43em;    
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.career_d span{
    font-size: 12px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.career_text{
    font-size: 12px;
    line-height: 2;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

#vision{
    margin-top: 90px;
}

.vision_inner{
    max-width: 767px;
    margin: 0 auto;
}

.vision_wrap{
    margin: 0 auto;
    padding: 30px 10px 10px 10px;
    flex-direction: column;
}

.vision_text{
    width: 95%;
    font-size: 14px;
    line-height: 2.083;
    padding: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.vision_img {
    margin: 0 auto ;
}

.vision_img img{
    width: 80%;
    margin: 0 auto ;
    margin-bottom: 40px;
}

.totop {
    width: 25px;
    right: 20px;
}

.workspage_list{
    display: none;
}

.workspage_list_sp{
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

.workspage_list_sp a{
    font-size: 13px;
    letter-spacing: 0.1em;
}


.workspage_wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
    align-items: center;
    margin-bottom: 200px;
    position: relative;
}

.workspage_img{
    display: block;
    padding-top: 40px;
}

.works_content_banner,
.works_content_web{
    width:100%;
    margin: 40px auto;
    margin-bottom: 30px;
    }

.works_content_banner p,
.works_content_web p{
    font-size: 14px;
    line-height: 1.333;
    margin-top: 5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.works_content_banner span,
.works_content_web span{
    font-size: 11px;
    line-height: 1.333;
    color: #968c88;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
}

.hover__mask2 p
{
font-size: 20px;
line-height: 1.333;
margin-top: 0;
height: auto;
font-family:"游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
;
}


.hover_mask2 {
    align-items: center; 
    background: rgba(46, 25, 17, .50); 
    bottom: 0;
    color: #fff; 
    display: flex; 
    justify-content: center; 
    left: 0;
    opacity: 0; 
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity.6s ease;
    width: 100%;
    text-align: center;
    line-height: normal;
}
.hover_mask2:hover {
    opacity: 1; 
}

.contact_text{
    text-align: center;
    line-height: 2.222;
    letter-spacing: 0.1em;
    font-size: 18px;
    margin-top: 40px;
}

.Form {
    margin: 50px 0 200px 0;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
}

.Form-Item {
    padding-bottom: 24px;
    width: 100%;
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
    width: 100%;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;   
    padding-bottom: 9px;
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

.Form-Item-Input {
    border: 0px;
    border-radius: 3px;
    height: 40px;
    text-align: left;
    width: 80%;
    background: #e0ebf3;
    font-size: 14px;
}

.Form-Item-Textarea {
    border: 0px;
    border-radius: 3px;
    height: 216px;
    text-align: left;
    width: 80%;
    background: #e0ebf3;
    font-size: 14px;
}

input[type="checkbox"] {
    margin-top: 20px;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
            appearance: none;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
}


#Container .mix{
    display: none;
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.js-fade.inview {
  opacity: 1;
  transform: translateY(0);
}

}