@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Murecho:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');



html, body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif, sans-serif;
	color: #000;
	letter-spacing: 1px;
}

body {
	font-size: 1rem;
	line-height: 1.8;
	background-color: #efe6da;
	overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
/*759px以下*/
@media only screen and (max-width: 759px) {
body {
	font-size: 0.9rem;
	line-height: 1.6;
}
}

@media only screen and (max-width: 759px) {
.for_pc{
		display: none;
	}	
}
@media only screen and (min-width: 760px) {
	.for_sp{
		display: none;
	}
}

#container{
	min-width: 100%; 
    background-color: transparent;
	overflow-wrap: anywhere; /* 長い単語やURLを折り返す */
}
#main_wrap{
    width: 1500px;
	background: #f7f4f0;
	margin: 0 auto 2em;
	border-radius: 10px;
	padding: 2em;
}
@media only screen and (max-width: 759px) {
	
#main_wrap{
    width: 95%;
	padding: 1em 0;
}
}


/*-----HEADER------------------------------*/

header h1 img{
	width: 70%;
}
header ul {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
header ul li {
	margin: 0 0 0 10px;
    font-size: 1.1rem;
    font-weight: bold;
}
header ul li a {
	position: relative;
}
header ul li a::after {
	text-decoration: none;
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #000000;
	bottom: -1px;             
	transform: scale(0, 1);     
	transform-origin: left top; 
	transition: transform 0.4s; 
}
header ul li a:hover::after {
	transform: scale(1, 1); 
}

ul.c-iconList {
    display: flex;
    flex-wrap: wrap;
}
ul.c-iconList li {
	margin: 0 0.8em!important;
}
@media only screen and (max-width: 759px) {
	
header ul li {
	margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 0.3em;
}
}


/*------ハンバーガーボタン------------------------*/

.c-header {
  align-items: center;
  /*background-color: #fff;*/
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 100%;
}
.c-header__logo { }
.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}
.c-header__list-item {
  list-style: none;
  text-decoration: none;
}
.c-header__list-link {
  color: #000;
  display: block;
  margin-right: 20px;
  text-decoration: none;
  padding: 10px 0px;
}
.c-header__list-link:hover {
  filter: opacity(0.6);
}
.c-hamburger-menu { position: relative; }

.shop-link{
	color: #f87700;
}
@media only screen and (max-width: 759px) {

.c-header {
	padding: 0.5rem 1rem;
	width: 100%;
}
.c-header__logo img { max-width: 70%; }
.c-hamburger-menu__list {
    background-color: #eeeeee;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
	z-index:999;
  }
}

.c-hamburger-menu__input {
  display: none;
}
.c-hamburger-menu__bg {
  background-color: #000;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}
.c-hamburger-menu__button { display: none; }

@media only screen and (max-width: 759px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
}
.c-hamburger-menu__button-mark {
  background-color: #000;
  display: block;
  height: 1px;
  transition: 0.3s;
  width: 20px;
}
@media screen and (max-width: 759px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
}



/*-----main_visual------------------------------*/

.main_visual{
	padding: 2em;
}
.main_visual .visual_wrap{
	background: url("../img/mainvisual.jpg") no-repeat center center;
    background-size: cover;
    height: 60vh;
    margin: 0;
	position: relative;
    overflow: hidden;
	border-radius: 15px;
}
@media only screen and (max-width: 759px) {
.main_visual{
	padding: 2em;
}
.main_visual .visual_wrap{
	background: url("../img/mainvisual_sp.jpg") no-repeat center center;
    background-size: cover;
	height: 40vh;
}
}


/*-----ABOUT--------------------------------*/

#about{ display: flex; }
#about .about_wrap {
	width: 90%;
	background: #efe6da;
	border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
	padding: 2em 2em 2em 5em;
    margin: 3em 0 3em 10em;
}
#about ul.col2{
    display: flex;
	justify-content: space-between;
	position: relative;
}
#about ul.col2 li:nth-child(odd){
	width: 23%;
    text-align: center;
}
#about ul.col2 li:nth-child(even) {
	width: 75%;
	padding: 3em 0;
}
#about ul.col2 li:nth-child(even)::before {
	position: absolute;
    content: '';
    background: url("../img/icon_about.png") ;
    width: 180px;
    height: 234px;
    right: 50px;
    top: -90%;
}
@media only screen and (max-width: 759px) {

#about{
	display: block;
	margin: 1em 0;
}
#about .about_wrap {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 2em;
    margin: 0 0 0 4em;
}
#about ul.col2{ display: block; }
#about ul.col2 li:nth-child(odd){ width: 100%; text-align: left; }
#about ul.col2 li:nth-child(even) { 
    width: 75%;
    padding: 2em 0;
}
#about ul.col2 li:nth-child(even)::before {
    background: url("../img/icon_about_sp.png") ;
    width: 100px;
    height: 130px;
	right: 60px;
    top: -30%;
}
}


/*-----デザイン--------------------------------*/
#web,
#graphic,
#movie 
.design_wrap {
	width: 90%;
	margin: 5em auto;
}
.design_wrap ul.col3{
	flex-wrap: wrap;
    display: flex;
	justify-content: space-between;
}
.design_wrap ul.col3 li{
	position: relative;
	width: 28%;
	margin-bottom: 3em;
}
.design_wrap ul.col3 li .client{ display: block; }
.design_wrap ul.col3 li .client p{
    position: absolute;
    color: #fff;
    font-size: 0.8rem;
	top: -10px;
    left: -10px;
    background: #f16060;
    padding: 0.2em 0.5em;
    border-radius: 4px;
}

@media only screen and (max-width: 759px) {
.design_wrap {
	width: 100%;
	margin: 5em auto;
}
.design_wrap ul.col3{
    display: block;
}
.design_wrap ul.col3 li{
    width: 84%;
    margin: 0 auto 3em;
}
}



/*-----hタイトル--------------------------------*/

h2.about,h2.web,h2.graphic,h2.movie,h2.illustration{ 
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 3rem;	
}
/*h2.about span,h2.web span,h2.graphic span,h2.movie span,h2.illustration span{
	display: block;
	font-size: 1.2rem;
} */
@media only screen and (max-width: 759px) {
	
h2.about,h2.web,h2.graphic,h2.movie,h2.illustration{ 
    font-size: 2rem;	
}
}

.design_wrap h3{  
	margin: 0.5em 0 0.5em;
    font-size: 0.9rem;
    line-height: 1.1;
    padding: 0 0.5em;
    background: transparent;
    border-left: solid 3px #575757;
}
.link{
	font-size: 0.8rem;
}
@media only screen and (max-width: 759px) {
}




/* ボタン 
----------------------------------------*/
/*一覧に戻る*/
.btnBox{ width: 250px; margin: auto; } 
.btnBox .btn{
	background: #231815;
    font-size: 0.9rem;
	color: #fff;
	text-align: center;
    font-weight: bold;
    padding: 1em;
    border-radius: 50px;
	transition-duration: 1s;
}
.btnBox .btn a{ color: #fff; }
.btnBox .btn:hover {
	background: #c0873d;
	transform: scale(0.5.0.5);
}




/*-------footer------------------------------*/

footer{
	margin: 0 0 2em;
}
footer .copyright{
	text-align: center;	
}
@media only screen and (max-width: 759px) {
	
footer{  }
}

/*------トップへ戻る-------------------------------*/

#page-top{
	position: fixed;
	background: rgb(159 159 159 / 50%);
	min-width: 50px;
	min-height: 50px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	bottom: 2%;
	right: 2%;
}


