@charset "utf-8";

/* ============= destyle css=================== */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q,
samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  box-sizing: border-box;
}

body {
  margin: 0;
  }

main {
  display: block;
}

p,table,blockquote,address,pre,iframe,form,figure,dl{
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
}

ul,ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  text-decoration: none;
  color:#333;
}
em{
  font-style: normal;
}

b,strong {
  font-weight: bolder;
}

svg,img,embed,object,iframe {
  vertical-align: bottom;
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

/* ================common==================== */

html{
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
  color:#333;
}

body{
  background: #fbf3e8;
  letter-spacing: 0.1em;
}

::selection {
  color: #fff;
  background-color: #333;
}

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

.txt{
  margin: 0 0 2rem 0;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 599px) {  
  .txt{
    font-size: 1.4rem;
  }
}

.caption-txt{
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

.button{
	margin: 3rem auto 0;
	padding: 0;
	width: 70%;
	max-width: 20rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  background-color: #fff;
  border-radius: 4rem;
}

@media screen and (max-width: 599px) {
  .button{
    font-size: 1.4rem;
  }
}

.button a{
  position: relative;
  display: block;
  padding: 1rem 2.5rem 1rem 3.5rem;
  color: #333;
}

.button a:hover{
  opacity: 0.7;
}

.button a:before{
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.1rem solid ;
  border-right: 0.1rem solid #333;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 1rem;
  border-radius: 0.1rem;
  content: '';
}

.item-icon{
  display: block;
  width: 13rem;
  padding: 0.3rem 1.3rem;
  margin: 0 1rem 1rem 0;
  text-align: center;
  font-size: 1.4rem;
  border: 1px solid #333;
  border-radius: 7rem;
}

.border{
  border-bottom: 1px dotted #333;
}

.normal-link{
  color:#333;
  text-decoration: underline;
}

.normal-link:hover{
  opacity: 0.7;
}

.pc-style{
  display: block;
}

.sp-style{
  display: none;
}

@media screen and (max-width: 599px) {
  .pc-style{
    display: none;
  }
  
  .sp-style{
    display: block;
  }
}

/* =================header==================== */

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 15rem;
  box-shadow: 0 0.2rem 1rem -0.5rem rgba(58, 37, 59, 0.3);
  z-index: 10;
}

.header.change-color {
  background-color: #fbf3e8;
  opacity: 0.8;
  transition: 0.5s;
}

.header h1{
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left; 
  letter-spacing: 0.2rem;
}

/* .header h1:before{
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url(../img/title_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
} */

.header .burger-button{
  display: none;
}

.header .menu{
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
}

.header .menu li{
  margin-left: 2rem;
  padding: 0.5rem 2rem;
}

.header .menu li:hover{
  border-radius: 3.6rem;
  background: #fff;
}

.header .menu li span{ 
  font-size: 1.4rem;
}

.header .burger-menu{
  display: none;
}

/* =================header SP==================== */

@media screen and (max-width: 1240px) {
  .header{
    padding: 2rem 7rem;
  }
}

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

.header{
  margin: 0 auto;
  padding: 2rem;
  display: block;
}

.header h1{
  font-size: 1.6rem;
  text-align: left; 
}

.header .menu{
  flex-direction: column;
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(251, 243, 232, 0.7);
  color: #333;
  transition: .3s;
  z-index: 2;
}

.header .menu li{
  margin: 1.5rem 0;
  padding: 0 0 0.5rem 0;
  width: 50%;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 0.1rem dotted #333;
}

.header .menu li:hover{
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition: .3s;
}

.header .menu.open{
  position: fixed;
  padding: 10rem 0 0 0;
  right: 0;
  top: 0;
}

 /* burger-button */

.header .burger-button{
  display :block;
  position: fixed;
  top: 1.8rem;
  right: 1.8rem;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.header .burger-line{
  display: block;
  position: relative;
  width: 100%;
  height: 0.1rem;
  background-color: #333;
  transition: .2s;
}

.header .burger-line:before,
.header .burger-line:after {
  position: absolute;
  width: 100%;
	height: 100%;
  background-color: #333;
  transition: .5s;
  content: "";
}

.header .burger-line:before{
  transform: translateY(-1rem);
}

.header .burger-line:after{
  transform: translateY(1rem);
}

.header .burger-line.open{
  background-color: transparent;
}

.header .burger-line.open:before,
.header .burger-line.open:after{
  content: "";
  transition: .2s;
}

.header .burger-line.open:before {
  transform: rotate(45deg);
}

.header .burger-line.open:after{
  transform: rotate(-45deg);
}
}

/* ==================TOP=================== */

.fv-content{
  max-width: 1200px;
  margin: 8rem auto 6rem;
}

.fv-content .fv-flex{
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 5rem;
}

.fv-content .fv-flex .fv-image{
  width: 20rem;
}

.fv-content .fv-flex .fv-txt{
  margin: 0 0 1rem 0;
  font-size: 2.8rem;
  color: #333;
  letter-spacing: 0.5rem;
  line-height: 1.2;
  font-weight: 400;
}

.fv-content .fv-flex .fv-sub-txt{
  font-size: 1.8rem;
  color: #333;
  letter-spacing: 0.3rem;
  text-align: center;
  font-weight: 400;
}

/*---- fv animation svg fade-in ----*/
.fv-content .fv-flex .fv-image.fade-In{
  animation-name:fadeInAnime;
  animation-duration:7s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*---- fv animation txt effect ----*/
.fv-content .fv-flex .fv-block .eachTextAnime span{ 
  opacity: 0;
}

.fv-content .fv-flex .fv-block .eachTextAnime.appeartext span{
  animation:text_anime_on 2s ease-out forwards;
}

@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

/*---- fv animation scroll down effect ----*/
/* .fv-content .fv-flex .fv-block .fv-notice-txt{
	position: absolute;
	bottom: 1%;
	right: 50%;
	animation: arrowmove 7s ease-in-out infinite;
}

@keyframes arrowmove{
  0%{bottom: 1%; opacity:0;}
  45%{bottom: 1%; opacity:0;}
  50%{bottom: 3%; opacity:1;}
  55%{bottom: 1%; opacity:1;}
  60%{bottom: 3%; opacity:1;}
  65%{bottom: 1%; opacity:1;}
  70%{bottom: 3%; opacity:1;}
  75%{bottom: 1%; opacity:1;}
  80%{bottom: 3%; opacity:1;}
  85%{bottom: 1%; opacity:0.7;}
  90%{bottom: 3%; opacity:0.5;}
  95%{bottom: 1%; opacity:0.2;}
 100%{bottom: 1%; opacity:0;}
}

.fv-content .fv-flex .fv-block .fv-notice-txt span{
  position: absolute;
  left: -2rem;
  bottom: -10rem;
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.fv-content .fv-flex .fv-block .fv-notice-txt:before {
  content: "";
  position: absolute;
  bottom: -10rem;
  right: -0.6rem;
  width: 0.1rem;
  height: 2rem;
  background-color: #333;
  transform: skewX(-31deg);
}

.fv-content .fv-flex .fv-block .fv-notice-txt:after{
  content:"";
  position: absolute;
  bottom: -10rem;
  right:0;
  width:0.1rem;
  height: 5rem;
  background-color:#333;
} */
/* fv animation END*/


.content{
  max-width: 1200px;
  margin: 0 auto 8rem;
}

.section-title{
  position: relative;
  margin: 0 0 4rem 0;
  font-size: 3.2rem;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.3rem;
  color: #333;
  padding: 0 0 3.5rem 0;
  border-bottom: 1px solid #333;
}

.section-title em{
  position: absolute;
  display: block;
  top: 5rem;
  left: 0;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  color: #333;
}


#WORKS{
  padding: 5rem 0;
}

#WORKS .works-list{
  display :flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#WORKS .works-list:after{
  content: "";
  display: block;
  width: 30%;
  height: 0;
}

#WORKS .works-list li{
  width: 30%;
}

#WORKS .works-list .works_link{
  position: relative;
  border: 1px solid #333;
}

#WORKS .works-list .works_link .top_image img {
  width: 100%;
  height: 100%;
}

#WORKS .works-list .works_link a:after{
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  transition: all 0.3s ease;
  z-index: -1;
}

#WORKS .works-list .works_link a:hover:after {
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  background-color: #333;
}

#WORKS .works-type-01,
#WORKS .works-type-02,
#WORKS .works-type-03 {
  position: relative;
  display: block;
  margin: 1.2rem 0 0.6rem;
  padding: 0 0 0 1.5rem;
  font-size: 1.4rem;
  color: #333;
}

#WORKS .works-type-01:before,
#WORKS .works-type-02:before,
#WORKS .works-type-03:before{
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  top: 0.6rem;
  left: 0;
  border-radius: 0.45rem;
  background-color: #ef79a4;
  content: '';
}

#WORKS .works-type-02:before{
  background-color: #35cece;
}

#WORKS .works-type-03:before{
  background-color: #f1a011;
}

#WORKS .works-txt{
  font-size: 1.6rem;
  margin: 0 0 6rem 0;
}

#PROFILE .prof-content{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8rem 0 0 0;
}

#PROFILE .prof-content .prof-image{ 
  width: 40%;
}

#PROFILE .prof-content .fluid-box {
  width: 40rem;
  height: 40rem;
  box-shadow: 12px 12px 2px 1px #e6e6e6;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  animation: fluidrotate 8s linear infinite;
  overflow: hidden;
}

@keyframes fluidrotate {
  50% {
    border-radius: 80% 20% 59% 41% / 72% 21% 79% 28%;
  }
  85% {
    border-radius: 100% 69% 100% 83% / 68% 99% 53% 93%;
  }
}

#PROFILE .prof-content .fluid-box .fluid-image{
  width: 40rem;
  height: 40rem;
  background-size: cover;
  background-image: url(../img/fv_image_01.jpg);
}

#PROFILE .prof-content .prof-txt-box{
  width: 45%;
  text-align: left;
}

#PROFILE .prof-content .prof-txt-box .prof-name{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.5rem;
  margin: 0 0 2rem 0;
}

#PROFILE .prof-content .prof-txt-box .prof-txt{
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.2rem;
}

.page-top a{
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  padding: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 6rem;
  background-color: #333;
  border: 0.1rem #fbf3e8 solid;
}

.page-top a:before{
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  width: 1.6rem;
  height: 1.6rem;
  border-top: solid 0.2rem #fbf3e8;
  border-left: solid 0.2rem #fbf3e8;
  transform: rotate(45deg);
  content: '';
}

.page-top a:hover{
  opacity: 0.3;
}

footer{
  background-color: #333;
  padding: 6rem 0 2rem 0;
}

footer p{
  margin: 3rem 0 0 0;
  font-size: 1rem;
  color: #fbf3e8;
  text-align: center;
}

footer .under-icon{
  text-align: center;
}

footer .under-icon img{
  width: 12rem;
}


/* =================TOP TB======================= */

@media screen and (max-width: 1440px) {  
  .content{
    max-width: 1000px;
    padding: 0 5rem;
    
  }
  .fv-content{
    max-width: 1000px;
    padding: 0 5rem;
  }
  #PROFILE .prof-content .prof-image{ 
    width: 40%;
  }
  #PROFILE .prof-content .fluid-box {
    width: 30rem;
    height: 30rem;
  }
  #PROFILE .prof-content .fluid-box .fluid-image{
    width: 30rem;
    height: 30rem;
  }
}

@media screen and (max-width: 940px) {  
  #PROFILE .prof-content .fluid-box {
    width: 25rem;
    height: 25rem;
  }
  #PROFILE .prof-content .fluid-box .fluid-image{
    width: 25rem;
    height: 25rem;
  }
}

/* =================TOP SP======================= */

@media screen and (max-width: 768px) {  
  .fv-content{
    margin: 7rem auto 4rem;
  }
  
  .fv-content .fv-flex .fv-image{
    width: 15rem;
  }

  .fv-content .fv-flex .fv-txt{
    margin: 0 0 1.6rem 0;
    font-size: 2.3rem;
  }

  .content{
    padding: 0 6rem;
  }
  
  #WORKS .works-list li{
    width: 46%;
  }

  #WORKS .works-txt{
    margin: 0 0 6rem 0;
  }

  #PROFILE .prof-content{
    display: block;
  }

  #PROFILE .prof-content .prof-image{ 
    width: 100%;
  }

  #PROFILE .prof-content .fluid-box {
    margin: 0 auto;
    width: 30rem;
    height: 30rem;
  }

  #PROFILE .prof-content .fluid-box .fluid-image{
    width: 30rem;
    height: 30rem;
  }

  #PROFILE .prof-content .prof-txt-box{
    margin: 5.5rem 0 0 0;
    width: 100%;
  }

  .page-top a{
    bottom: 2rem;
    right: 2rem;
  }
}

@media screen and (max-width: 599px) { 
  .fv-content .fv-flex{
    margin: 5rem auto;
    gap: 2rem;
  }

  .fv-content .fv-flex .fv-txt{
    font-size: 1.8rem;
  }

  .fv-content .fv-flex .fv-sub-txt{
    font-size: 1.4rem;
  }

  .section-title{
    font-size: 2.4rem;
  }
  
  .section-title em{
    top: 3.5rem;
  }

  #WORKS .works-type-01,
  #WORKS .works-type-02,
  #WORKS .works-type-03 {
    font-size: 1.2rem;
  }

  #WORKS .works-list{
    display: block;
    padding: 2rem 0 0 0;
  }

  #WORKS .works-list li{
    width: 85%;
    margin: 0 auto;
  }

  #WORKS .works-txt{
    font-size: 1.4rem;
  }

  #PROFILE .prof-content .prof-txt-box .prof-name{
    text-align: center;
    font-size: 1.4rem;
  }

  #PROFILE .prof-content .prof-txt-box .prof-txt{
    font-size: 1.4rem;
  }

  .content{
    padding: 0 4rem;
  }
}

@media screen and (max-width: 500px) { 
  .fv-content .fv-flex{
    display: block;
  }

  .fv-content .fv-flex .fv-image{
    margin: 0 auto 2rem;
  }

  .fv-content .fv-flex .fv-txt{
    text-align: center;
    font-size: 2.2rem;
  }

  .fv-content .fv-flex .fv-sub-txt{
    text-align: center;
    font-size: 1.6rem;
  }
}



/* ================== works first vew ==================== */

.works-title-block{
  position: relative;
}

.works-title-block .works-title {
  position: relative;
  margin: 6rem 0 41rem 0;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 300;
}

.works-title-block .works-title em {
  display: block;
  width: 30%;
  max-width: 12rem;
  margin: 0 auto 1rem;
	color: #333;
	font-size: 1.8rem;
  font-weight: 300;
  line-height: 3rem;
  background-color: #fff;
  box-shadow: 0 0.2rem 1rem -0.5rem rgba(58, 37, 59, 0.3);
}

.works-title-block .works-title:after {
	content: '';
	position: absolute;
	bottom: -6rem;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 0.1rem;
	height: 4rem;
	background-color: #333;
}

.works-title-block .works_image,
.works-title-block .works_image_banner,
.works-title-block .works_image_printed {
  position: absolute;
  top: 36rem; 
  left: 50%;  
  transform: translate(-50%,-50%);
  margin: 3rem auto;
  max-width: 70rem;
  z-index: 1;
}

.works-title-block .works_image_banner {
  max-width: 45rem;
}

.works-title-block .works_image_printed{
  max-width: 60rem;
}

.works-title-block .works-notice-txt{
  position: absolute;
  top: 59rem; 
  left: 50%;  
  transform: translateX(-50%);
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
  z-index: 2;
}

/*---- works first vew image animation ----*/
.works-title-block .works_image .fade-In,
.works-title-block .works_image_banner .fade-In,
.works-title-block .works_image_printed .fade-In{
  animation-name:WorkfadeInAnime;
  animation-duration:2.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes WorkfadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================== works section ==================== */

.works-content{
  overflow: hidden;
}

.works-content-box{
  position: relative;
  background: #fff;
  padding: 15rem 20rem 4rem 20rem; 
}

.works-content-box .inner{
  margin : 0 auto;
  max-width: 800px;
}

.works-content-box .inner .content-list-box{
  padding: 5rem;
  margin: 4rem auto 8rem;
  max-width: 800px;
  background-color: #fbf3e8;
}

.works-content-box .inner .content-list-box .content-list-title{
  position: relative;
  padding: 0 0 0.5rem 1.3rem;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  text-align: left;
  border-bottom: 0.1rem dotted #333;
}

.works-content-box .inner .content-list-box .content-list-title:before{
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.5rem;
  height: 2.3rem;
  background-color: #333;
  border-radius: 3rem;
  content: "";
}

.works-content-box .inner .content-list-box ol{
  counter-reset:list;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 2rem 0 0 0;
}

.works-content-box .inner .content-list-box li{
  position :relative;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 0.7rem 3rem;
}

.works-content-box .inner .content-list-box li:before{
  position: absolute;
  counter-increment: list;
  content: counter(list);
  left: -3rem;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
  text-align: center;
  color: #fbf3e8;
  background: #333;
  font-size: 1.3rem;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.works-content-box .works-sub-title{
  margin: 8rem auto 2rem;
  padding: 0.5rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  text-align: center;
  background-color: #fbf3e8;
}

.works-content-box .works-sub-border-title{
  margin: 2rem auto 6rem;
  padding: 1.5rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  text-align: lef;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.works-content-box .works-detail-title{
  display: flex;
	justify-content: center;
	align-items: center;
  text-align:center;
  margin: 0.5rem 0 2rem;
  font-size: 1.6rem;
  font-weight: 400;
}

.works-content-box .works-detail-title::before,
.works-content-box .works-detail-title::after {
	content: '';
	width: 5rem;
	height: 0.1rem;
	background-color: #333;
}

.works-content-box .works-detail-title::before {
	margin-right: 2rem;
}
.works-content-box .works-detail-title::after {
	margin-left: 2rem;
}

.works-content-box .normal-list li{
  list-style-type: disc;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 0.7rem 2rem;
}

.works-content-box .works_all_image{
  margin: 10rem 0 8rem;
}

.works-content-box .works_banner_image{
  margin: 6rem auto;
  max-width: 50rem;
}

.works-content-box .works_process_image{
  margin: 6rem auto;
}

.works-content-box .logo_image{
  max-width: 20rem;
  margin: 4rem auto ;
}

.works-content-box .works-flex-image{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  margin: 0 0 4rem 0;
}

.works-content-box .works-flex-image li{
  width: 46%;
  margin: 0 0 2rem 0;
}

.works-content-box .works-block-image{
  padding: 2rem;
  margin: 0 0 4rem 0;
}

.works-content-box .works-block-image li{
  width: 80%;
  margin: 0 auto 2rem;
}

.works-content-box .figma-iframe{
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 45rem;
}

.notice-box{
  padding: 1.5rem 3rem;
  box-shadow: 0 0.2rem 1rem -0.5rem rgba(58, 37, 59, 0.3);
  border-radius: 0.5rem;
}

.notice-box .notice-txt{
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
}

.works-content-box .pager-box ul{
  display: flex;
  justify-content: center;
  padding: 4rem 0 0 0;
  border-top: 1px dotted #333;
}

.works-content-box .pager-box li{
  margin: 0 2rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.works-content-box .pager-box li a{
  position: relative;
  display: block;
  padding: 1rem 2.5rem 1rem 2.5rem;
  color: #fff;
  background: #333;
  border-radius: 4rem;
}

.works-content-box .pager-box li a:before{
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 1rem;
  border-radius: 0.1rem;
  content: '';
}

.works-content-box .pager-box li a:hover{
  opacity: 0.7;
}

/* ================== works TB ==================== */

@media screen and (max-width: 1240px) {
  .works-content-box{
    padding: 10rem 15rem 4rem 15rem;
  }
  .works-title-block .works-notice-txt{
    top: 56rem;
  }
}

@media screen and (max-width: 1024px) {
  .works-content-box{
    padding: 10rem 10rem 4rem 10rem;
  }

  .works-title-block .works-title {
    font-size: 2rem;
    margin: 6rem 0 27rem 0;
  }
  
  .works-title-block .works-title:after {
    bottom: -4.5rem;
    height: 3rem;
  }
  
  .works-title-block .works_image{
    width: 55%;
    top: 27rem; 
  }

  .works-title-block .works_image_banner{
    width: 40%;
    top: 26rem;
  }

  .works-title-block .works_image_printed{
    width: 50%;
    top: 26rem;
  }

  .works-title-block .works-notice-txt{
    top: 47rem;
  }
}

@media screen and (max-width: 768px) {  
  .works-content-box{
    padding: 6rem 8rem 4rem 8rem;
  }

  .works-title-block .works_image{
    width: 65%;
    top: 26rem;
  }
  .works-title-block .works-notice-txt{
    top: 43rem;
  }
}

/* ================== works SP ==================== */

@media screen and (max-width: 599px) {
  .works-content-box{
    padding: 7rem 3rem 4rem 3rem;
  }

  .works-content-box .inner .content-list-box{
    padding: 3rem;
  }

  .works-content-box .inner .content-list-box .content-list-title{
    font-size: 1.6rem;
  }

  .works-content-box .inner .content-list-box li{
    font-size: 1.4rem;
  }

  .works-content-box .works-block-image li{
    width: 100%;
  }

  .works-content-box .works-sub-title{
    margin: 8rem auto 2rem;
    padding: 0.6rem;
    font-size: 1.6rem;
  }

  .works-content-box .works-sub-border-title{
    margin: 8rem auto 2rem;
    padding: 1.2rem;
    font-size: 1.6rem;
  }

  .works-title-block .works-notice-txt{
    font-size: 1.3rem;
    top: 44rem;
  }

  .works-content-box .normal-list li{
    font-size: 1.4rem;
  }

  .works-title-block .works_image{
    width: 85%;
  }

  .works-title-block .works_image_banner{
    width: 65%;
  }

  .works-title-block .works_image_printed{
    width: 80%;
  }

  .works-content-box .works_all_image{
    padding: 0 4rem;
  }  

  .works-content-box .pager-box ul{
    display: block;
  }
  
  .works-content-box .pager-box li{
    width: 80%;
    margin: 0 auto 1.5rem;
    text-align: center;
  }
}

@media screen and (max-width: 460px) {
  .works-title-block .works_image{
    top: 23rem;
  }

  .works-content-box .works-sub-title,
  .works-content-box .works-sub-border-title{
    margin: 4rem auto 2rem;
  }

  .works-title-block .works-notice-txt{
    top: 38rem;
  }
}

/* ================== about section ==================== */

.about-content{
  padding: 8rem 0;
}

.about-content .about-title{
  position: relative;
  margin: 0 0 8rem 0;
  text-align: left;
  font-size: 12rem;
  letter-spacing: 1.6rem;
  color: #fff;
  font-weight: 600;
}

.about-content .about-title em{
  position: absolute;
  bottom: -2rem;
  left: 0;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  background-color: #fff;
  color: #333;
}

.about-content .tool-list li{
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.4;
  margin: 0 2rem 0 0;
}

.about-content dl{
  display :flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}

.about-content dt{
  width: 140px;
  padding: 2rem 0 2rem 0;
}

.about-content dd{
  position: relative;
  width: 80%;
  padding: 2rem 0 2rem 5rem;
  border-left: 0.4rem solid #fff;
}

.about-content dd:after{
  position: absolute;
  top: 2.6rem;
  left: -1.1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #333;
  border: 0.4rem solid #fff;
  content: "";
}

@media screen and (max-width: 800px) {  
  .about-content dl{
    display :block;
  }

  .about-content dt{
    width: 100%;
    padding: 2rem 0 1.5rem;
    border-bottom: 0.3rem solid #fff;
  }

  .about-content dd{
    width: 100%;
    padding: 1.5rem 0 2rem;
    border: none
  }

  .about-content dd:after{
    content: none;
  }
}

@media screen and (max-width: 599px) { 
  .about-content{
    padding: 3rem 0 8rem;
  }

  .about-content .about-title{
    margin: 0 0 6rem 0;
    font-size: 7rem;
    letter-spacing: 1.4rem;
  }
  
  .about-content .about-title em{
    bottom: -3rem;
    font-size: 1.4rem;
  }
  
  .about-content .tool-list li{
    display: block;
    font-size: 1.4rem;
    line-height: 2;
  }

  .about-content dl{
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .about-content dt{
    padding: 2rem 0 1rem;
  }

  .about-content dd{
    padding: 1rem 0 2rem;
  }
}


/* ================== margin/padding ==================== */

.mb-20{
  margin-bottom: 2rem;
}

.mb-30{
  margin-bottom: 3rem;
}

.mb-60{
  margin-bottom: 6rem;
}

.mt-10{
  margin-top: 1rem;
}

.mt-20{
  margin-top: 2rem;
}

.mt-30{
  margin-top: 3rem;
}

.mt-40{
  margin-top: 4rem;
}

.pr-30{
  padding-right: 3rem;
}

.pl-30{
  padding-left: 3rem;
}