/*
Theme Name: HIBInoDesign-theme2025
Author: Asako
Version: 2025.06
*/


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
font-size: 14px;
  line-height: 1.8;
  color: #17120D;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}
ul{
	list-style: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}
.inner {
	max-width: 550px;
    padding: 0 30px;
}
.sp {
display: block;
}
	
.pc {
	display: none;
}

.fadein {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s;
}

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

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

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

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

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

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

a i {
  font-size: 0.8em;
  margin-left: 4px;
}

.svg_logo{

	margin: 0 auto;
}
.svg_logo path {
  fill: black;
  stroke: black; 
  stroke-width: .3px;
  animation: svg-anime 3s ease-in;
}

@keyframes svg-anime {
  0% {
    fill: transparent;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
  }
  90% {
    fill: transparent;
    stroke-dashoffset: 0;
  }
  100%{
    fill: black;
  }
  }



/* -------------
ヘッダーエリア
------------------ */
header {
	justify-content: space-between;
	padding-left: 20px;
	height: 67px;
	width: 100%;
	position: fixed;
    top: 0;
	z-index: 1000;
	  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
header.header-visible {
  transform: translateY(0);
}
header.flex {
    align-items: flex-start;
}

header li {
	margin: 16px 45px;
}

h1.logo {
	margin-top: 16px;
	z-index: 10000;
}

h1.logo img {
    width: 180px;
}


.nav-btn-wrap.flex {
    z-index: 10000;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:85%;
    height: 100vh;
	background:#E7E6E6;
	transition: all 0.6s;
	padding: 110px 60px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}




/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left;
}

#g-nav li a{
	font-family: "Tenor Sans", sans-serif;
    color: #17120D;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    position: relative;
}
#g-nav li a::before{
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background-color: #17120D;
	position: absolute;
    left: -30px;
    top: 50%;
}
#g-nav li:last-child a::before{
	display: none;
}
#g-nav li a:hover{
	color: #7d8e9e;
}
#g-nav li a:hover::before{
	background-color: #7d8e9e;
}
a.nav-insta {
    text-align: right;
}
a.nav-insta img{
	width: 210px;
}
#g-nav .flex{
	height: 50vh;
    justify-content: space-evenly;
	margin-bottom: 60px;
}

span.nav-small {
    display: block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.6;
}

/*========= ボタンのためのCSS ===============*/
 
.openbtn{
	position: relative;
	cursor: pointer;
    width: 70px;
    height:70px;
	padding: 10px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
	background-color: #17120D;
    height: 1px;
    border-radius: 2px;
  	width: 45%;
  }


.openbtn span:nth-of-type(1) {
	top:21px;
	width: 40%;
}

.openbtn span:nth-of-type(2) {
	top:32px;
	width: 50%;
}
.openbtn span:nth-of-type(3) {
	top:42px;
	width: 60%;
	
/*
	position: absolute;
	top: 5px;
	left: 0px;
	color: #17120D;
	font-size: 14px;
	text-transform: uppercase;
*/
}


.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.openbtn.active span:nth-of-type(2){
    top: 40px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;

}
.openbtn.active span:nth-of-type(2)::after {
	content:"";
	display: none;/*2つ目の要素のafterにClose表示を指定*/
	transform: translateY(0) rotate(-45deg);
	top:10px;
	left:19px;
}


.openbtn.active span:nth-of-type(3){
	display: none;
}

#g-nav li .instagram-icon{
	font-size: 18px;
    margin-left: -40px;
    margin-top: 30px;
}
#g-nav li .instagram-icon::before {
    position: absolute;
    content: "";
    background-image: url(img/Instagram-b.svg);
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    right: -40px;
    top: -3px;
}




@media screen and (min-width: 1024px) {
	header {
	padding-left: 45px;
}
	#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:42%;
    height: 100vh;
	background:#E7E6E6;
	transition: all 0.6s;
	padding: 110px 60px;
}
#g-nav li a{
    padding: 16px;
    font-size: 21px;
}
#g-nav li .instagram-icon {
    font-size: 21px;
}
	
}

/*To-top*/
.to-top {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 24px;
    bottom: 30px;
    background-color: rgb(255 255 255 / 30%);
    border: solid 0.5px rgb(255 255 255 / 14%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.to-top img{
	transform: rotate(-90deg);
}


/*MVスライダー*/
h2.slide-title {
	font-family: "Noto Serif JP", serif;
    font-size: 21px;
    text-align: right;
    font-weight: normal;
}

.l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10rem;
  }

  .l-section {
    border-top: 1px solid #eee;
  }
  .l-section .l-inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  [class*=swiper]:focus {
    outline: none;
  }

  .slide-media,
  .thumb-media {
    position: relative;
    overflow: hidden;
  }
  .slide-media img,
  .thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }



  .mv01 .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
  }
  .mv01 .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
  #main-slide .swiper-pagination {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 30px;
    height: 30px;
  }
  #main-slide  .swiper-pagination-bullet {
    display: block;
    width: 4px;
    height: 30px;
    cursor: pointer;
    border-radius: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: #fff;
    opacity: 1;
    margin: 20px 0;
  }

 #main-slide .swiper-pagination-bullet-active {
    background-color: #C8B7A5;
  }
  .mv01 .slide-media {
    height: 650px;
  }
  .mv01 .slide-media img {
    -webkit-transition: 7s 1s ease-out;
    transition: 7s 1s ease-out;
  }
  .mv01 .slide-title {
    font-size: 21px;
    font-weight: normal;
    line-height: 1.6;
    position: absolute;
    right: 30px;
    bottom: 10%;
    text-align: right;
    color: #fff;
  }
  .mv01 .swiper-slide[class*=-active] .slide-media img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .mv01 .swiper-slide[class*=-active] .slide-title {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
  }

  @-webkit-keyframes mv01-fadeIn {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
    }
  }

  @keyframes mv01-fadeIn {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
    }
  }
/* Hero */
/*
.hero {
  position: relative;
  text-align: center;
}
.hero-img {
  width: 100%;
  height: auto;
}
.hero-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
}
*/

/* フォント */

h2.title-en{
	font-family: "Tenor Sans", sans-serif;
    font-weight: unset;
    font-size: 40px;
}
span.title-ja{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	margin-left: 10px;
}
.text-wrap{
	font-size: 14px;
	line-height: 1.8;
}

/*ボタン*/
.btn-icon{
	margin-left: 15px;
}
.btn-wrap{
	font-family: "Tenor Sans", sans-serif;
}
.concept .btn-wrap, 
.service .btn-wrap, 
.works .btn-wrap, 
.news .btn-wrap{
	text-align: right;
    padding: 15px 0;
}

/*セクション全体*/
section.service, 
section.works,
section.voice,
section.news,
section.instagram,
section.contact{
    margin-top: 80px;
}


/*----------
	コンセプト
------------*/

.concept{
background-color: #F0EFEB;
    position: relative;
    margin-top: 60px;
    z-index: -20;
}

.concept::before{
    content: "";
    background-color: #F0EFEB;
    position: absolute;
    width: 100%;
    height: 60px;
    top: -60px;
}
.concept::after{
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 160px;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.concept-img-wrap{
	position: relative;
}


.concept h2.title-en{
    writing-mode: sideways-rl;
	color: #F4EFE9;
    position: absolute;
	line-height: 1;
    left: 11px;
    top: 30px;
}
.concept span.title-ja {
    display: inline-block;
    margin-top: 10px;
}

img.concept01 {
    width: 57vw;
}
img.concept02 {
    width: 60vw;
	display: block;
	margin: -45px 0 0 auto;
}

.text-wrap.inner {
    margin-top: 45px;
    margin-bottom: 45px;
}



.concept03{
	width: 46vw;
}


/*----------
	サービス
------------*/

.accordion-content {
  display: none;
  padding: 10px;
}
.accordion-content.active {
    display: block;
    background: #fff;
    margin-top: -3px;
}
.service-item h3{
  cursor: pointer;
  padding: 20px 0;
font-size: 16px;
	font-weight: normal;
  border-top: 0.5px solid #17120D;
  border-bottom: 0.5px solid #17120D;
}
.accordion-header h3{
	font-family: "Tenor Sans", sans-serif;
  cursor: pointer;
  padding: 20px 0;
font-size: 16px;
	font-weight: normal;
  border-top: 0.5px solid #17120D;
  border-bottom: 0.5px solid #17120D;
}


.service-item h3:first-child{
	margin-top: 30px;
	border-bottom: none;
}
.accordion-header h3:first-child{
	margin-top: 30px;
	border-bottom: none;
}

.service-item:last-child{
	border-top: none;
}
.accordion-header:last-child{
	border-top: none;
}

.service-item p{
	font-size: 14px;
	padding-top: 20px;
}
.accordion-header p{
	font-size: 14px;
}

.tab-switch{
    background-color: #fff;
    border: 2px solid #333;
    border-bottom: none;
}
.tab-title {
    flex: 1 1 auto;
    order: -1;
    position: relative;
    padding: 24px 1em 12px;
    background-color: #E1E1E1;
    color: #333;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    /* border: 2px solid #BCBCBC; */
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.service-tabs {
    display: flex;
	flex-wrap: wrap;
}

/*アコーディオン　プラスアイコン*/
/*
.accordion-header{
	position: relative;
}
.accordion-header::before, 
.accordion-header::after {
    position: absolute;
    content: '';
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 12px;
    height: 1px;
    margin: auto;
    background: #17120D;
}
.accordion-header::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}
.accordion-header .active::after {
    transform: rotate(0deg);
}
*/


.tab {
	padding: 10px 40px;
    background: #ddd;
    margin-left: 30px;
	margin-bottom: -2px;
}
.tab.active {
	background: #fff;
	border: 1px solid #17120D;
	border-bottom: none;
}
.tab-content {
	display: none;
	padding: 30px 0 0;
	border-top: 1px solid #17120D;
	border-bottom: 1px solid #17120D;
}
.tab-content.active {
	display: block;
}



/*----------
	制作実績
------------*/

.works-bg-img{
	margin-top: 80px;
}

img.works01 {
    width: 48vw;
    display: block;
    margin: 0 0 0 auto;
}
img.works02 {
    width: 60vw;
    display: block;
    margin: -30px auto 30px 0;
}

.work-item {
    padding-top: 30px;
}

.work-item p.category{
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}
.work-item p.category::before{
    position: absolute;
    content: '';
    top: 12px;
    left: 0;
    bottom: 0;
    width: 16px;
    height: 1px;
    background: #17120D;
}

.work-item-img:hover{
	background: #17120D;
	
}
.work-item-img{
  position: relative;
  overflow: hidden;
}
.work-item-img:before,
.work-item-img::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  opacity: 0;
}
.work-item-img::before {
  background: rgba(190,91,70,.6);
  width: 100%;
  height: 100%;
}
.work-item-img::after {
  color: #fff;
  content: "Read More";
  font-size: 22px;
  font-weight: bold;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
}
 
.work-item-img:hover::before,
.work-item-img:hover::after {
  opacity: 1;
}


/*-----------
	お客さまの声
------------*/
.voice{
    background-image: url(img/voice-bg.jpg);
	background-attachment: scroll;
	background-size: cover;
 	background-position: center;
	background-repeat: no-repeat;
    height: 580px;
    padding: 30px 0;
    position: relative;
}
/*
.voice::before{
	content: "";
	position: absolute;
	background-color: rgba(23,18,13,1.00);
}
*/
.voice-box{
    width: 100%;
    margin: 30px auto;
    position: relative;
}
p.voice-txt {
    position: absolute;
    width: 65%;
    margin: 0 auto;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.voice .title-en{
	color: #F4EFE9;
}
p.voice-client {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    top: 47%;
    left: 0;
    right: 0;
}
.voice-client p::before {
    position: absolute;
    content: '';
    top: 12px;
    left: 0;
    bottom: 0;
    width: 16px;
    height: 1px;
    background: #17120D;
}

.voice-box .voice-item-img img{
	position: absolute;
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
 	top: 26%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
}


.swiper-slide .vice-card {
    padding: 0 40px;
}

/* 前へ次への矢印カスタマイズ */
.voice-box .swiper-button-prev::after,
.voice-box .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 100%;
    margin: auto;
    width: 30px;
    transform: rotate(0deg);
}
/* 前への矢印カスタマイズ */
.voice-box .swiper-button-prev::after {
  background-image: url("img/arrow-voice-prev.svg");
}
/* 次への矢印カスタマイズ */
.voice-box .swiper-button-next::after {
  background-image: url("img/arrow-voice-next.svg");
}

.voice .btn-wrap {
    position: absolute;
    top: 86%;
    left: calc(50% - 55px);
    margin: 0 auto;
}




/*------------
	お知らせ
------------*/

.news ul {
  list-style: none;
}
/*
.news li {
  padding: 16px 0;
  border-bottom: 1px solid #17120D;
}
*/










/*------------
	 Instagram
------------*/
.instagram {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
.instagram img {
	width: calc(100% / 3);
    height: auto;
}

/*スライダー*/
.insta-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.slid-txt {
	font-family: "Tenor Sans", sans-serif;
  display: inline-block;
  font-size: 10px;
  white-space: nowrap;
}

/*左に流れるスライダー*/
.slid-wrap-l {
  display: flex;
  animation: loop-text-l 30s linear infinite;
}
@keyframes loop-text-l {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*右に流れるスライダー*/
.slid-wrap-r {
  display: flex;
  animation: loop-text-r 30s linear infinite;
}
@keyframes loop-text-r {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}






/*----------
	お問合せ
------------*/
.contact {
  text-align: center;
background-color: #fff;
	margin-bottom: 30px;
	position: relative;
}
.contact-wrap{
	padding: 45px 0;
}

.contact::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 256px;
    position: absolute;
    background-color: #17120D;
	z-index: 3;
    top: -30px;
    left: 30px;
}
.contact::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 256px;
    position: absolute;
    background-color: #17120D;
	z-index: 3;
    top: -30px;
    right: 30px;
}

/*
.contact a {
    display: block;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0 30px;
    height: 196px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  transition-duration: .4s;
  z-index: 2;
    color: #000;
	background-color: #fff;
    text-decoration: none;
}
*/

.contact a {
    display: block;
    border-top: 1px solid #17120D;
    border-bottom: 1px solid #17120D;
    padding: 0 30px;
    height: 196px;
    margin: 0 auto;
   background: #fff;
  color: #17120D;
  overflow: hidden;
  position: relative;
  transition-duration: .4s;
  z-index: 2;
}


/*
.contact a ::after {
  background: #ff701e;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}


.contact a:hover {
  color: #FFF;
}

.contact a:hover::after {
  opacity: 1;
	background-color: #000;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}
*/



/* Footer */
footer {
  background: #17120D;
	font-family: "Tenor Sans", sans-serif;
  color: #fff;
  text-align: center;
}
footer .flex {
    text-align: left;
    padding: 30px 30px 60px;
}
footer .flex ul {
    padding-right: 45px;
}
footer .flex ul li{
	padding: 10px 0;
}
.instagram-icon{
	display: inline-block;
	position: relative;
	font-size: 16px;
	padding-bottom: 60px;
}
.instagram-icon::before {
	position: absolute;
	content: "";
	background-image: url(img/instagram-icon.svg);
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	right: -40px;
	top: 5px;
}
footer p{
	padding: 0 0 10px;
}


/*-----------------------
	下層ページ共有
-----------------------*/
.p-header img{
	width: 100%;
	height: 100%;
}

.p-header-title{
	font-family: "Tenor Sans", sans-serif;
	font-size: 48px;
	color: #F0EFEB;
	text-align:center;
	margin-top: -80px;
}

@media screen and (min-width: 1024px) {

.p-header{
	max-width: 1200px;
	margin: 0 auto;
}
.p-header-title{
font-size: 68px;
margin-top: -85px;
}
	
	
	
}



/*-----------------------
		サービスページ
-----------------------*/
.service-page{
	background-color: #F0EFEB;
	padding: 40px 20px;
    margin: 30px 0 0;
}

.service-item-wrap {
    background-color: #fff;
    padding: 45px 10px;
	margin: 60px 0;
}
.service-item-wrap:first-child{
	margin: 0 0 60px;
}
.service-item-wrap h3 {
    font-size: 18px;
    font-weight: normal;
	padding-top: 15px;
}
.service-item-wrap h4 {
    font-size: 12px;
	font-weight: normal;
}
.service-item-wrap p{
	font-family: "Tenor Sans", sans-serif;
	padding: 15px 0;
}

p.service-item-title{
	padding: 0 0 15px;
}
.service-menu-wrap p {
    padding: 30px 0 0;
}
.service-item-wrap ul li{
    position: relative;
    margin-left: 24px;
    justify-content: space-between;
}
.service-item-wrap ul li::before {
    content: "";
    width: 12px;
    height: 1px;
    background-color: #17120D;
    position: absolute;
    top: 13px;
    left: -16px;
}
p.hosoku {
    padding: 15px 0 0;
    font-size: 12px;
    text-align: right;
}


section.works.s-page{
	margin-top: 60px;
}





@media screen and (min-width: 1024px) {
.service-page {
    padding: 60px 0;
    margin: 60px 0 0;
}
.flex-pc-only{
	display: flex;
	flex-wrap: wrap;
}
.flex-pc-only .item {
    width: 50%;
}
.flex-pc-only div img {
    padding-right: 30px;
}
.service-item-wrap:first-child{
	margin: auto;
}
.service-item-wrap {
    padding: 60px;
    max-width: 1100px;
    margin: 60px auto;
}
.service-item-wrap h3 {
    font-size: 21px;
    padding-top: 0;
}
.service-item-wrap h4 {
    font-size: 14px;
	padding-bottom: 15px;
}
section.service-box .inner {
    text-align: center;
}
	
	
}


/*-----------------------
		実績一覧ページ
-----------------------*/

section.works-page{
	padding: 60px 0;
}


@media screen and (min-width: 1024px) {
	
section.works-page{
	padding: 110px 0;
}
	
}


/*-----------------------
		実績ページ
-----------------------*/
.single-content {
    padding: 60px 0 0;
}
h2.singleTitle {
    font-size: 18px;
	font-family: "Tenor Sans", sans-serif;
	font-weight: normal;
	padding: 30px 0 0;
}
.single-content h3 {
    padding: 30px 0 5px;
    margin-left: 30px;
	position: relative;
}
.single-content h3::before{
    content: "";
    width: 20px;
    height: 1px;
    background-color: #17120D;
    display: block;
    position: absolute;
    bottom: 20px;
    left: -30px;
}
.border{
    padding-bottom: 30px;
    border-bottom: 1px solid #17120D;
}
.thumbnail-img{
	text-align: center;
}
.work-post-wrap .btn-wrap{
	text-align: center;
	padding-bottom: 60px;
}
span.work-category {
    margin-right: 15px;
}
.work-txt {
    border-bottom: 1px solid #17120D;
    padding-bottom: 30px;
}

.wp-block-columns {
    gap: 0;
}

.blog-txt {
    padding: 60px 0 15px;
}

@media screen and (min-width: 1024px) {
.single-content {
    padding: 110px 0;
}
h2.singleTitle {
    font-size: 21px;
}

.border {
    padding-bottom: 60px;
}
.wp-block-columns {
    gap: 30px;
}

	
}



/*-----------------------
	お知らせページ一覧
-----------------------*/
section.news-list {
    margin: 60px auto 80px;
	font-family: "Tenor Sans", sans-serif;
}
.news-list-item-wrap {
    border-bottom: 1px solid #17120D;
    padding: 15px 0;
}
.c-news-category a {
    margin-left: 15px;
    border: 1px solid #17120D;
    padding: 0 10px;
}

@media screen and (min-width: 1024px) {
.news-list-item-wrap {
    padding: 24px 0;
}
p.c-news-title {
    font-size: 16px;
    padding: 5px 0 0;
}

}


/*-----------------------
	お知らせページ
-----------------------*/
.news-single-content{
	    padding: 60px 0;
}

.news-single-content .btn-wrap{
	text-align: center;
	padding: 30px 0 15px;
}



/*-----------------------
		コンタクトページ
-----------------------*/

.grecaptcha-badge {
	visibility: hidden; 
}

section.contact-page {
    padding: 60px 30px;
}

/*フォーム*/
.box_step03 {
 width: 95%;
}


/*
.contact-wrap {
 padding: 110px 24px 60px 24px;
}
*/

.form-box {
  width: 90%;
  padding: 16px;
}

.form-txt {
  font-size: 14px;
	padding-bottom: 30px;
}

.form-txt-bold::after{
  content: "*";
  color: #EB0823;
}
.form-item {
    padding: 15px 0;
}
.form-item a{
  text-decoration: underline;
}

span.wpcf7-list-item.first {
    margin: 0;
}

.form-submit-button {
    padding: 15px 60px;
    margin: 0 auto;
    display: block;
    letter-spacing: 0.12em;
    background-color: #fff;
    border: 1px solid #333;
    transition: all 0.2s;
}

.form-submit-button:hover{
  background-color: #333;
  transition: all 0.2s;
	color: #fff;
}

.submit-button {
    padding-top: 45px;
}


.form-txt-thanks{
	text-align: center;
}

.contact-page .btn-wrap{
	text-align: center;
	padding-top: 30px;
}


@media screen and (min-width: 1024px) {
	
section.contact-page{
	padding: 110px 0;
}
	
	
	
.form-submit-button{
  width: 240px;
  height: 64px;
  letter-spacing: 0.12em;
}


	
}



/* Responsive */

/* 小型ノートPC・タブレット横向き（横幅768px以上） */
@media screen and (min-width: 768px) {
  /* さらに大きな画面向けのスタイル */
.inner {
    max-width: 100%;
    padding: 0 30px;
}
	
.mv01 .slide-media {
    height: 750px;
  }
	
  .service-content,
  .work-item {
    flex-direction: row;
    gap: 20px;
  }
  .hero-text {
    font-size: 2rem;
  }
	
.flex-pc{
	display: flex;
	flex-wrap: nowrap;
	gap: 15px;
}
	.work-item{
		width: 33.3%;
	}
	
	
	
}

/* ノートPC・デスクトップ（横幅1024px以上） */
@media screen and (min-width: 1024px) {
  /* PC向けのスタイル */
/*
body {
font-size: 16px;
}
*/
	
.sp {
display: none;
}
	
.pc {
	display: block;
}
	
.inner {
    max-width: calc(1000px - 30px);
    margin: 0 auto;
    padding: 0 30px;
}

	
section.service, 
section.works, 
section.voice, 
section.news, 
section.instagram, 
section.contact {
    margin-top: 110px;
}
	
.concept .btn-wrap, 
.service .btn-wrap, 
.works .btn-wrap, 
.news .btn-wrap
 {
    text-align: right;
    padding: 30px 0;
}	
	
	
	
/*メインスライド	*/
	.mv01 .slide-title {
    font-size: 24px;
    line-height: 1.8;
    top: 50%;
    left: 50%;
	right: auto;
	bottom: auto;
    transform: translate(-50%, -50%);
	text-align: center;
}
	
/*コンセプト	*/	
.pc.flex {
	display: flex;
	flex-wrap: nowrap;
}
	
.concept {
    margin-top: 110px;
}
.concept::before {
    height: 110px;
    top: -110px;
}
.concept::after {
    background-color: #fff;
    height: 110px;
    bottom: 0;
    left: 0;
    z-index: -1;
}
	
img.concept01 {
    width: 380px;
	position: relative;
}
	
img.concept02 {
    width: 410px;
    display: block;
    margin: -45px 0 auto 30%;
}
img.concept03.sp {
    width: 350px;
    display: block;
    margin: -190px 0 0 auto;
}
 
    .concept .text-wrap {
        width: 60%;
        padding: 80px 10% 0 70px;
        font-size: 14px;
        line-height: 1.8;
    }
	



	
/*---------------
	サービス
-----------------*/
.tab {
    padding: 15px 60px;
    margin-left: 14%;
    margin-bottom: -1px;
}
/*
.accordion-content {
    padding: 0 60px;
}	
*/
.text-wrap {
	width: 100%;
	padding: 80px 0 60px;
	margin: 0 auto;
	font-size: 16px;
}
.service-item {
    padding-bottom: 110px;
}
.service-item .flex img {
width: 50%;
}
.service-item .flex p {
width: 50%;
padding: 0 0 0 60px;
}
.accordion-header h3 {
    padding: 30px 0;
    font-size: 16px;
}
	
	
	
	
	
/*---------------
	制作実績
-----------------*/	
.works-bg-img {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 110px;
}
	
img.works01 {
	width: 340px;
	display: block;
	margin: 0 30px 0 auto;
}
img.works02 {
	width: 420px;
	display: block;
	margin: -30px auto 30px 45px;
}
.flex-pc{
	display: flex;
	flex-wrap: nowrap;
	gap: 30px;
}


/*---------------
	お客さまの声
-----------------*/

.voice {
	background-image: url(img/voice-bg-pc.jpg);
	background-attachment: fixed;
    width: 100%;
    height: auto;
    padding: 60px 0;
}
.voice-box {
	width: 900px;
	margin: 0 auto;
	padding: 45px 0;
	position: relative;
}
.voice-box .swiper-button-prev::after {
    left: -5px;
}
.voice-box .swiper-button-next::after {
    right: -10px;
}
	
	
/*---------------
	SNS
-----------------*/		
.instagram img {
    width: calc(100% / 6);
    height: auto;
}
.slid-txt {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.slid-wrap-r {
    display: flex;
    animation: loop-text-r 32s linear infinite;
}
.slid-wrap-l {
    display: flex
;
    animation: loop-text-l 32s linear infinite;
}



/*---------------
	お問合せ
-----------------*/		
section.contact {
    max-width: 980px;
    margin: 110px auto;
}
.contact a {
    height: 320px;
}
.contact::before, 
.contact::after{
    height: 380px;
}
.contact-wrap {
    padding: 110px 0 0;
}
.contact-border-top::before {
	width: 1px;
	height: 300px;
	left: 30px;
	top: -30px;
}
.contact-border-bottom::before {
width: 1px;
height: 300px;
bottom: -30px;
right: 30px;
}
	




/*---------------
	フッター
-----------------*/			
footer {
    padding: 110px 0 60px;
}
footer .flex{
	justify-content: center;
}
footer .flex ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-bottom: 110px;
	font-size: 16px;
}

.instagram-icon{
	font-size: 18px;
	padding-bottom: 110px;
}



}




