@charset "utf-8";

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.header_inner {
  padding: 15px 0 10px 10px;
  background-color: #fff;
}

.header_logo img {
  width: 60%;
  height: auto;
}

@media screen and (min-width: 980px) {
  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
  }

  .gnav .gnav_list {
    display: flex;
    gap: 50px;
  }
}

@media (any-hover:hover) {
  .gnav_list li:hover {
    color: #FC864A;
  }
}

.gnav_link {
  text-align: center;
  background-color: transparent;
}

.gnav_link span {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  font-family: Dosis,Noto Sans JP,sans-serif;
}

.main_visual {
  position: relative;
  top: 71px;
}

@media screen and (min-width: 980px){
  .main_visual {
    position: relative;
    top: 120px;
  }
}

h1 img {
  width: 100%;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
bottom:-120%;
  left:0;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#999;
  /*動き*/
transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
  text-align: center; 
}

#g-nav li a{
color: #333;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top:10px;
right: 10px;
cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;	
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.section_copy {
  margin-top: 150px;
  margin-bottom: 100px;
  padding: 0 15px;
}

@media screen and (min-width: 980px) {
  .section_copy {
    margin-top: 250px;
    margin-bottom: 150px;
  }
}

.section_copy_inner h2 {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 50px;
}

.section_copy_inner p {
 font-size: 22px;
 text-align: center;
 font-weight: 500;
 line-height: 1.7;
}


.service_inner {
  padding-bottom: 100px;
  text-align: center;
}

@media screen and (min-width: 980px) {
  .service_inner {
    padding-bottom: 50px;
    text-align: center;
  }
}

.section_deco {
  font-size: 40px;
  letter-spacing: 6px;
  font-family: "Dosis","Noto Sans JP",sans-serif;
  font-weight: 700;
}

.work_box .section_deco::before {
  content: "";
  display: block;
  background-image: url(../img/workvisual.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 97px;
  height: 255px;
  position: absolute;
  top: -100px;
  right: 5%;
}

@media screen and (min-width: 980px) {
  .work_box .section_deco::before {
    width: 147px;
    height: 305px;
    top: -180px;
    right: 10%;
  }
}

.section_deco strong {
  position: relative;
  display: inline-block;
  line-height: 1em;
  overflow: hidden;
  padding-bottom: 20px;
  font-family: "Dosis","Noto Sans JP",sans-serif;
  font-weight: 700;
}

.section_deco strong::before, .section_deco strong::after {
  content: "";
  display: block;
  border-bottom: 3px solid #3A322F;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.section_deco strong::before {
  left: -5px;
}

.section_deco strong::after {
  right: -5px;
}

.under {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #3A322F;
  border-right: 3px solid #3A322F;
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.section_subtitle {
  font-weight: 700;
  font-size: 18px;
}

.service_body {
  margin-top: 50px;
  padding: 0 15px;
}

.service_l {
  padding-bottom: 50px;
}

@media screen and (min-width: 980px) {
  .service_body {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }

  .service_l {
    width: 48%;
  }
}

.headline img {
 width: 125px;
 height: auto;
}

.headline {
  text-align: left;
}

.service_l h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  padding: 20px 0 50px;
  line-height: 1.5;
}

.service_img {
  text-align: left;
}

.service_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 980px){
  .service_img img {
    width: 520px;
    height: auto;
  }
}

.service_r {
  text-align: left;
}


.service_r h4 img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 980px){
  .service_r {
    width: 48%;
    text-align: left;
  }

  .service_r h4 img {
    width: 430px;
    height: auto;
  }
}

.service_content {
  font-size: 16px;
  line-height: 1.7;
  padding: 30px 0 50px;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.service_item {
  background-color: #fff;
  border: 2px solid #3A322F;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}

@media (any-hover:hover) {
  .service_item:hover {
    transform: translate(-10px, -10px);
    box-shadow: 5px 5px #FC864A;
  }
}

.service_item {
  display: block;
  padding: 20px;
}

.service_item .service_btn {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
}
  
/*  .service_item .service_btn::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}*/

.more {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  font-weight: 700;
}

.more a {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FC864A;
}

.arrow {
  transition: 1s;
  transform: rotateY(0deg);
}

@media (any-hover:hover) {
  .more a:hover .arrow {
    transform: rotateY(360deg);
  }
}

/* ワーク */

.pickup_inner {
  text-align: center;
}

.work .section_title {
  border-color: #fff;
}

.pickup_box {
  padding: 0 0 50px;
  margin: 10px 0 50px;
}

@media screen and (min-width: 980px) {
  .pickup_box {
    padding: 30px 0;
    margin: 50px 0;
  }
}

.data {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: #eee;
  z-index: 1000;
  padding: 10px 30px;
  width: 100%;
}

.pop {
  background-color: #3A322F;
  color: #fff;
  font-size: 28px;
  line-height: 1.4;
  padding: 0 10px;
  font-weight: 500;
  font-family: "Dosis","Noto Sans JP",sans-serif;
  position: absolute;
  top: -15px;
  left: 0;
}

.pickup_title {
  font-size: 22px;
  line-height: 3;
  color: #3A322F;
  height: 2.8em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 500;
}

@media screen and (min-width: 980px) {
  .data {
    position: absolute;
    bottom: 0px;
    left: -30px;
    background-color: #eee;
    z-index: 1000;
    padding: 10px 30px;
    width: 450px;
  }
}

/* ワーク */

.work_box {
  background-color: #EFE2DC;
  margin-top: 50px;
  position: relative;
  padding: 50px 0 100px;
}

.work_box .container {
  padding: 0 15px;
}

.index_work_area {
  margin-top: 30px;
}

@media screen and (min-width: 980px){
  .work_box {
    padding: 100px;
  }

  .work_box .container {
    padding: 0;
  }
}

.common_title {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: .08em;
  display: inline;
  font-weight: 600;
  position: relative;
}

@media screen and (min-width: 980px){
  .common_title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 980px){
  .index_work_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 80px;
    padding-top: 180px;
  }
  
  .index_work_area li {
    position: relative;
    width: 30%;
  }
}

.work_anime {
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
  padding-bottom: 50px;
}

.work_anime:last-child {
  padding-bottom: 0;
}

@media (any-hover:hover) {
  .work_anime {
    padding-bottom: 0;
  }
  .work_anime:hover {
    transform: translate(-10px, -10px);
    box-shadow: 8px 8px #FC864A;
  }
}

@media screen and (min-width: 980px) {
  .index_work_area .work01 {
    top: -135px;
  }

  .index_work_area .work02 {
    top: -90px;
  }

  .index_work_area .work03 {
    top: -45px;
  }
}

.work_area_img img {
  width: 100%;
}

.work_area_txt {
  position: relative;
  background-color: #fff;
  padding: 35px 25px 25px;
}

.work_tag {
  position: absolute;
  top: -25px;
  left: -10px;
  width: 100%;
  font-family: "Dosis","Noto Sans JP",sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work_tag span {
  display: inline-block;
  background-color: #FC864A;
  font-size: 20px;
  padding: 10px 30px;
}

.work_tag::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #3A322F transparent transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.work_area_txt h3 {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #3A322F;
}

.work_content {
  letter-spacing: 0.08em;
}

.common_btn {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  margin: 50px auto 0;
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 40px;
}

@media screen and (min-width: 980px) {
  .common_btn {
    width: 360px;
  }
}

@media (any-hover:hover) {
  .common_btn:hover {
    transform: translate(-10px, -10px);
    box-shadow: 5px 5px #FC864A;
    border-radius: 40px;
  }
}

.common_btn_main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 70px;
  margin: 0 auto;
  padding: 0 60px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  color: #fff;
}

.common_btn_main::before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 20px;
}

.work_box .common_btn_main {
  background-color: #fff;
  color: #3A322F;
}

.work_box .common_btn_main::before {
  background: url(../img/arrow.svg) no-repeat;
}


/* お客様の声 */
.voice {
  margin-bottom: 100px;
}

.voice h2,
.voice .section_subtitle {
  text-align: center;
}

.voice h2 {
  padding-top: 50px;
}

.voice .section_subtitle {
  padding-bottom: 50px;
}


.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:100%;
  margin:0 auto;
}

.voice_slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:94%;
  margin:0 auto;
}

.slider img,
.voice_slider img {
  width:100vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
  height:auto;
}

.slider .slick-slide,
.voice_slider .slick-slide {
transform: scale(0.8);/*左右の画像のサイズを80%に*/
transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center,
.voice_slider .slick-slide.slick-center {
opacity: 1;/*透過なし*/
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  letter-spacing: -.4em;
  position: absolute;
  top: 45%;
  display: block;
  width: 40px;
  height: 66px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: 2px solid #3A322F;
  outline: none;
  background-color: #fff;
  z-index: 5;
}

.slick-prev {
  left: 0;
  transition: all .3s;
}

.slick-next {
  right: 0;
  transition: all .3s;
}

.top_slider .slick-prev, .top_slider .slick-next {
  top: 50%;
  margin: 0;
}

.top_slider .slick-prev {
  left: calc(50% - 423px);
}

.slick-prev::before, .slick-next::before {
  content: "";
  display: inline-block;
  background-size: cover;
  position: absolute;
  top: 25%;
  width: 18px;
  height: 30px;
}

.slick-prev::before {
  background-image: url(../img/left-solid.svg);
  left: 25%;
}

.slick-next::before {
  background-image: url(../img/right-solid.svg);
  right: 25%;
}*/

.slick-dots {
  position: absolute;
  bottom: 8px;
  width: auto;
  right: calc(50% - 350px);
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 6px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 30px;
  height: 6px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}

.slick-dots li button::before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 6px;
  border-radius: 10em;
  content: "";
  background-color: #3A322F;
  text-align: center;
  opacity: .5;
  color: black;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: black;
}

@media screen and (min-width: 980px) {
  .slider .slick-slide.slick-center,
  .voice_slider .slick-slide.slick-center {
    transform: scale(1);/*中央の画像のサイズだけ等倍に*/
    opacity: 1;/*透過なし*/
  }

  .slider img,
  .voice_slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
  }

  .slick-prev {
    left: 45%;
    margin-left: -370px;
  }
  
  .slick-next {
    right: 45%;
    margin-right: -370px;
  }
}

.voice .slick-dots {
  text-align: center;
}

@media screen and (min-width: 980px) {
  .voice ul {
    margin-top: 50px;
  }
}

/* プロフィール */
.profile {
  background-color: #EFE2DC;
  padding: 0 15px 100px;
  margin-bottom: 0;
  position: relative;
}

.container_profile {
  max-width: 1000px;
  margin: 0 auto;
}

.container_profile h2 {
  padding-top: 50px;
}

.profile_img_inner {
  margin-top: 50px;
}

.profile_img {
  text-align: center;
}
.profile_img img {
  width: 100%;
  height: auto;
}

.name_container {
  margin-top: -55px;
  margin-bottom: 50px;
}

.company,
.profile_name {
  font-weight: 500;
  font-family: "Dosis","Noto Sans JP",sans-serif;
}

.company,
.profile_name,
.profile_subname {
  text-align: right;
  color: #fff;
  text-shadow: 3px 3px 3px #3A322F;
}

.company {
  font-size: 24px;
}

.profile_name {
  font-size: 30px;
}

.history {
  letter-spacing: 0.07em;
  line-height: 1.5;
  background-color: #fff;
  border: 2px solid #3A322F;
  padding: 15px;
  margin-bottom: 50px;
}

.history p:first-child {
  padding-bottom: 20px;
}

.profile_data {
  background-image: url(../img/profile_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  color: #fff;
  border: 2px solid #3A322F;
}

.profile_data_title {
  font-size: 26px;
  font-weight: bold;
  background-color: #3A322F;
  padding: 15px;
  margin-bottom: 15px;
}

.profile_data ul {
  line-height: 1.5;
  padding-bottom: 30px;
}

.profile_data ul li {
  margin: 0 1em;
  padding-left: 1em;
  text-indent: -1em;
  padding-bottom: 7px;
}

.profile_data ul li::before {
  content:  "";     /* 空の要素作成 */
  width:  10px;               /* 幅指定 */
  height:  10px;              /* 高さ指定 */
  display:  inline-block;     /* インラインブロックにする */
  background-color: #fff;  /* 背景色指定 */
  border-radius:  50%;        /* 要素を丸くする */
  position:  relative;        /* 位置調整 */
  top: -1px;                  /* 位置調整 */
  margin-right: 5px;          /* 余白指定 */
}

.profile_data ul li:last-child {
  padding-bottom: 0;
}

.profile_data p {
  margin: 0 1em;
  line-height: 1.5;
  letter-spacing: 0.07em;
  padding-bottom: 30px;
}

.profile_data_subtitle {
  font-size: 22px;
  font-weight: bold;
  color: #3A322F;
  margin-bottom: 15px;
}

@media screen and (min-width: 980px) {
  .name_container {
    margin-top: -100px;
    margin-bottom: 80px;
  }

  .company {
    font-size: 40px;
  }
  
  .profile_name {
    font-size: 60px;
  }

  .profile_subname {
    font-size: 24px;
  }
}


/* インフォエリア */

.contact_inner {
  background-color: #3A322F;
  padding: 60px 15px;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 980px){
  .contact_inner {
    padding: 60px 0;
  }

  .info_area {
    display: flex;
    position: relative;
  }
  
  .info_area::after {
    content: "";
    display: block;
    width: 215px;
    height: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/thankyou.svg);
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .contact_inner {
    width: 50%;
  }
}

.contact_copy {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (min-width: 980px) {
  .contact_copy {
    font-size: 24px;
  }
}

.contact_inner .common_btn_main {
  background-color: #FC864A;
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 40px;
}

@media (any-hover:hover) {
  .contact_inner .common_btn:hover {
    transform: translate(-10px, -10px);
    box-shadow: 5px 5px #fff;
    border-radius: 40px;
  }
}

.contact_inner .common_btn_main::before {
  background: url(../img/arrow-o.svg) no-repeat;
}

.sns_inner {
  background-color: #e0e0e0;
  padding: 60px 0;
  text-align: center;
}

.sns_list {
  padding-top: 40px;
}

@media screen and (min-width: 980px){
  .sns_inner {
    width: 50%;
  }

  .sns_list {
    padding-top: 0;
  }
}


.sns_inner li {
  border: 2px solid #3A322F;
  background-color: #fff;
  width: 215px;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}

@media (any-hover:hover) {
  .sns_inner li:hover {
    transform: translate(-10px, -10px);
    box-shadow: 5px 5px #FC864A;
  }
}
.sns_inner li:last-child {
  margin-bottom: 0;
}

.sns_inner li a {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 15px 20px;
}

.sns_inner li a img {
  margin-right: 10px;
}
.footer_logo {
  text-align: center;
  padding: 50px 0;
}

.footer_logo span {
  display: block;
  font-weight: 700;
}

.footer_logo img {
  width: 100px;
}

.footer_menu {
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 50px;
  line-height: 1.7;
}

.footer_menu li {
  display: inline-block;
  border-right: 1px solid #3A322F;
  line-height: 1;
  padding: 0 1.6em;
}

.footer_menu li:nth-of-type(3),
.footer_menu li:nth-of-type(4) {
  border-right: none;
}

@media screen and (min-width: 980px) {
  .footer_menu li:nth-of-type(3) {
    border-right: 1px solid #3A322F;
  }
}

@media (any-hover:hover) {
  .footer_menu li:hover {
    color: #FC864A;
  }
}

.copyright {
  background-color: #3A322F;
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 8px 0;
}