<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";



:root{
  --line-black:#727272;
  --yellowgreen:#93ff56;
  --sidewidth:85px;
  --spheaderheight:65px;
  --backcolor:#fdfdfd;

}
@media screen and (max-width: 1200px) {
  :root{
    --sidewidth:65px;
  }
}
@media screen and (max-width: 767px) {
  :root{
    --sidewidth:31px;
  }
}

img{
  width: 100%;
  height: auto;
}
.wide{
  transform:scale(1, 0.85);
  
}
.to{
  transform-origin: top;
}
.mincho{
  font-family: HVMuseRegular;
  letter-spacing: 0.009em;
  transform:scale(1, 0.9);
}
.dpn{
  display: none;
}
.sponly{
  display: none;
}

@media screen and (max-width: 767px) {
  .sponly{
    display: inherit;
  }
  .pconly{
    display: none;
    pointer-events: none;
  }
}



body{
  background-color: var(--backcolor);
  font-family: "A1 Gothic L", sans-serif;
  letter-spacing: 0.16em;
  -webkit-font-smoothing:antialiased;
  -webkit-font-smoothing: none;
-webkit-font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* letter-spacing: 0.09em; */
  font-feature-settings: 'palt';
  font-weight: 200;
  font-weight: 400;
  line-height: 1.79;
  /* line-height: 1.99; */
  text-align: justify;
  font-size: clamp(0.938rem, 0.786rem + 0.32vw, 1.063rem);

  /* letter-spacing: 0.11em;
  line-height: 2.13; */


}

@media screen and (max-width: 767px) {
  body{
    font-size: 13px;
  }
}

/* マウスストーカー */

.cursor {
  position: fixed;
  background-color: rgba(108,0,169, 1);
  backdrop-filter: blur(1.5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: -6px 0 0 -6px;
  will-change: transform;
  user-select: none;
  pointer-events: none;
  z-index: 1000;
  transition: all 0.3s ease-out;
  mix-blend-mode: exclusion;
  transform: translate(-10px,-10px);
}

@media screen and (max-width: 767px) {
  .cursor {
    display: none;
  }
}

.cursor.is-active{
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
}


header{
  width: var(--sidewidth);
  position: fixed;
  left: 0;
  height: 100%;
  min-height: 724px;
  border-right: 1px solid var(--line-black);
  /* letter-spacing: 0.14em; */
  z-index: 9;
  font-family: HVMuseRegular;
}

@keyframes linet {
  0%{
    transform: scaleY(0); 
    transform-origin:top;
    }

	100% {
     transform: scaleY(1); 
     transform-origin:top; 
    }
}

@keyframes lineb {
  0%{
    transform: scaleY(0); 
    transform-origin:bottom;
    }

	100% {
     transform: scaleY(1); 
     transform-origin:bottom; 
    }
}

@keyframes liner {
  0%{
    transform: scaleX(0); 
    transform-origin:right;
    }

	100% {
     transform: scaleX(1); 
     transform-origin:right; 
    }
}

@keyframes linel{
  0%{
    transform: scaleX(0); 
    transform-origin:left;
    }

	100% {
     transform: scaleX(1); 
     transform-origin:left; 
    }
}

@keyframes linec{
  0%{
    transform: scaleY(0); 
    transform-origin:center;
    }

	100% {
     transform: scaleY(1); 
     transform-origin:center; 
    }
}

@media screen and (max-width: 767px) {
  header{
    width: 100%;
    background-color: blue;
    min-height: inherit;
    position: fixed;
    left: 0;
		top: 0;
		right: 0;
		bottom: 0;
    height: 100vh;
    max-height: var(--spheaderheight);
    border-right: none;
    z-index: 10000;
    transition: max-height .3s ease-in-out;
    backdrop-filter: blur(8px);
    background-color: rgba(253,253,253,0.8);
  
  }
  
  header.on{
    backdrop-filter:none;
    max-height: 100vh;
    backdrop-filter: blur(8px);

  }

  .tophead{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: var( --spheaderheight);
    border-bottom: 1px solid var(--line-black);
    align-items:center;
    position: relative;
    z-index: 10000;
  }

  header::after{
    display: block;
		content: '';
    position: fixed;
    top:0;
    width: 100%;
    height: var(--spheaderheight);
  }
}

h1 {
  width: 30px;
  margin: 43px auto 0;
}

@media screen and (max-width: 767px) {
  h1 {
    width: 133px;
    height: auto;
    margin: 0;
    margin-left: 20px;
    /* transform:translateY(-2px); */
    position: relative; 
  }
}

@media screen and (max-width: 767px) {
  header a.sponly{
    display: block;
    display: inline-block;
    line-height: var( --spheaderheight);
    pointer-events:auto;
  }

  header a.sponly img{
    vertical-align: middle;
  }
}

header ul{
  position: absolute;
  inset: auto 0 35px 0 ;
}

header ul li{
  writing-mode:vertical-rl;
  font-size: 20px;
  padding-bottom: 12px;
  padding-top: 12px;
  line-height: var(--sidewidth);
}

header ul li a p{
  position: relative;
  transition: all 0.3s ease-out;
  transform:scale(0.9, 1);
  letter-spacing: 0.014em;
}

header ul li a p:hover{
  transform: translateX(5px);
}

header ul li a p::before{
  position: absolute;
  width: 1px;
  background-color: var(--line-black);
  height: 100%;
  display: inline-block;
  right: calc(var(--sidewidth) / 2 + 6px);
}

.after{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.before{
  display: flex;
  align-items: center;
}

.before span,
.after span{
  line-height: 1.1;
  transition: color .3s ease-out;
}

.after span{
  transform: translateY(100%);
}


@media screen and (max-width: 1200px) {
  header ul li{
    font-size: 19px;
  }
}

header .openbtn1{
  display: none;
}

@media screen and (max-width: 767px) {
  
  header nav{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    width: 100vw;
    transform: translateY(-100vh);
    opacity: 0;
  }

  header.on nav{
    transform: translateY(0);
    opacity: 1;
    transition: transform .3s ease-in-out, opacity .8s .2s;
  }

  header nav::before {
    display: block;
    max-height: calc(var(--sidewidth) + 101px);
    height:  calc(var(--sidewidth) + 13vh);
    content: "";
  }

  header nav ul{
    display: flex;
    flex-direction: column;
    inset: auto;
    margin-left: 19.6vw;
    
  }

  header nav ul li{
    writing-mode:inherit;
    line-height: 1em;
    display: flex;
    align-items: center;
    height: calc(var(--sidewidth) + 20px + 6vh);
    max-height: calc(40px + 1.125em);
    padding-bottom: 10px;
    padding-top: 10px;
  }

  header nav ul li p{
    font-size: 18px;
    font-size: 22px;
    position: relative;
    letter-spacing: 0.01em;
    transform:scale(1, 0.9);
  }
  
  header nav ul li p::before{
    content: "";
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    border:1px solid var(--line-black);
    display: inline-block;
    background-color: var(--yellowgreen);
    margin-right: 0.8em;
    transform: translateY(-0.055em);
    position: absolute;
    left: -1.3em;
    margin-top: 0.3em;
  }

  header .openbtn1{
    display: flex;
    z-index: 1000;
  }

  .openbtn1{
    position: relative;
    cursor: pointer;
    width: var( --spheaderheight);
    height: var( --spheaderheight);
    justify-content: center;
    align-items: center;
  }

  /*ボタン内側*/
  .openbtn1 &gt; div &gt; div{
      transition: all .4s;
      width: 25px;
      height: 2px;
      margin-bottom: 5px;
      border-top: 2px solid #000;
    }

  .openbtn1  &gt; div &gt; div:nth-of-type(2) {
    width: 16px;
    margin-bottom: 0;
    border-top: none;
    border-bottom: 2px solid #000;
  }

  .openbtn1.on  &gt; div &gt; div:nth-of-type(1) {
    transform: translateY(3px) rotate(45deg);
    transform-origin: center;
  }

  .openbtn1.on  &gt; div &gt; div:nth-of-type(2) {
    transform: translateY(-4px) rotate(-45deg);
    width: 25px;
    transform-origin: center;
  }
}

div.side{
  width: var(--sidewidth);
  position: fixed;
  right: 0;
  height: 100%;
  border-left: 1px solid var(--line-black);
  
}

div.side a{
  writing-mode:vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 23px;
  line-height: var(--sidewidth);
  background-color:var(--yellowgreen) ;
  border-bottom: 1px solid var(--line-black);
  padding: 54px 0;
  position: relative;
  display: block;
  z-index: 10;
  padding-left:5px ;
  transform: scale(1);
}

@media screen and (max-width: 767px) {
  div.side{
    top:var(--spheaderheight);
  }

  div.side a{
    font-size: 19px;
    font-size: 20px;
    padding: 33px 0;
    padding-left: 3px;
    padding-left:1.4px;
  }
}

div.side span{
  position:relative;
  border-left: 1px solid var(--line-black);
  padding-left: 2px;
  transform:scale(0.9, 1);
  display: inline-block;
  width: 2.66em;

}

@media screen and (max-width: 1200px) {
  div.side span{
    width: 2.2em;
  }
}
@media screen and (max-width: 767px) {
  div.side a span{
    padding-left: 0px;
    width: 1.45em;
    width: 1.23em;
    width: 1.2em;
  }
}

.sctext{ 
  width: var(--sidewidth);
  top:0;
  position: absolute;
  overflow: hidden;
  font-size: 16px;
  line-height: var(--sidewidth);
  text-orientation: sideways;
	writing-mode: vertical-rl;
  display: flex;
  height: 100vh;
}

@media screen and (max-width: 1200px) {
  .sctext{ 
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .sctext{ 
    font-size: 10px;
  }
}

/* 右文字スクロール------------- */
.sctext &gt; div{ 
  flex-wrap: nowrap;
  display: flex;
}

.sctext &gt; div:first-child {
  animation: slide1 30s -15s linear infinite;
}

.sctext &gt; div:last-child {
  animation: slide2 30s linear infinite;
}

.sctext &gt; div &gt; div{
  white-space: nowrap;
  -ms-transform:scale(0.85, 1) ;
  -webkit-transform:scale(0.85, 1);
  transform:scale(0.85, 1);
  padding-bottom: 2.29em;
} 

@keyframes slide1 {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
 
@keyframes slide2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}

.sctext div span{
  width: 0.78em;
  height: 0.78em;
  display: inline-block;
  border:0.5px solid #000 ;
  transform:scale(1.21, 1);
  margin-top: 0.65em;
  margin-bottom: 0.45em;
  margin-left: -0.03em;
} 

main{
  min-height: calc(100vh - 292px);
}
@media screen and (max-width: 767px) {
  main{
    margin-top: var(--spheaderheight);
  }
}
section{
  width: calc(100% - var(--sidewidth) * 2);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  section{
    width: calc(100% - var(--sidewidth));
    margin: 0 var(--sidewidth) 0 auto;
  }
}

section.mainimage{
  display: flex;
  flex-wrap: wrap;

}


section.mainimage div{
  width: calc(100% / 3);
  position: relative;
}

section.mainimage div:nth-of-type(1):before,
section.mainimage div:nth-of-type(2):before,
section.mainimage div:nth-of-type(4):before,
section.mainimage div:nth-of-type(5):before{
  content: "";
  border-right: 1px solid var(--line-black); 
  width: 1px;
  height:100%;
  position: absolute;
  top:0;
  right: 0;
  transform: scaleY(0); 
}

section.mainimage div:nth-of-type(1):before{
  animation: lineb 0.6s 1.3s linear forwards;
}

section.mainimage.tate div:nth-of-type(1):before{
  animation: lineb 0.3s 0.9s linear forwards;
}

@media screen and (max-width: 767px) {
  section.mainimage div:nth-of-type(1):before{
    animation: lineb 0.3s 0.9s linear forwards;
  }
}

section.mainimage div:nth-of-type(4):before{
  animation: lineb 0.6s 0.7s linear forwards;
}

section.mainimage div:nth-of-type(2):before{
  animation: linet 0.6s 0.7s linear forwards;
}

section.mainimage div:nth-of-type(5):before{
  animation: linet 0.6s 1.3s linear forwards;
}

section.mainimage.tate div:nth-of-type(5):before{
  animation: linet 0.4s 0.9s linear forwards;
}

section.mainimage.tate div:nth-of-type(2):before,
section.mainimage.tate div:nth-of-type(4):before{
  content: none;
}

section.mainimage.tate div:nth-of-type(3):before{
  content: "";
  border-right: 1px solid var(--line-black); 
  width: 1px;
  height:100%;
  position: absolute;
  top:0;
  right: 0;
  transform: scaleY(0); 
}
section.mainimage.tate div:nth-of-type(3):before{
  animation: linec 0.2s 0.7s linear forwards;
}

section.mainimage.tate div{
    width: calc(100% / 2);
}

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

  section.mainimage div:nth-of-type(5):before{
    animation: linet 0.4s 0.9s linear forwards;
  }

  section.mainimage div:nth-of-type(2):before,
  section.mainimage div:nth-of-type(4):before{
    content: none;
  }
  
  section.mainimage div:nth-of-type(3):before{
    content: "";
    border-right: 1px solid var(--line-black); 
    width: 1px;
    height:100%;
    position: absolute;
    top:0;
    right: 0;
    transform: scaleY(0); 
  }

  section.mainimage div:nth-of-type(3):before{
    animation: linec 0.2s 0.7s linear forwards;
  }
  
  section.mainimage div{
      width: calc(100% / 2);
  }
}

section.mainimage div:first-of-type,section.mainimage div:nth-of-type(2),section.mainimage div:nth-of-type(3){
  position: relative;
}

section.mainimage div:first-of-type::after,section.mainimage div:nth-of-type(2)::after,section.mainimage div:nth-of-type(3)::after{
  content: "";
  border-bottom: 1px solid var(--line-black); 
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0); 
}

section.mainimage div:first-of-type::after{
  animation: linel 0.4s 0.7s linear forwards;
}

section.mainimage div:nth-of-type(2)::after{
  animation: linel 0.4s 1.1s linear forwards;
}

section.mainimage div:nth-of-type(3)::after{
  animation: linel 0.4s 1.5s linear forwards;
}

section.mainimage.tate div:nth-of-type(4)::after{
  content: "";
  border-bottom: 1px solid var(--line-black); 
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0)
}

section.mainimage.tate div:nth-of-type(4)::after{
  animation: liner 0.3s 0.7s linear forwards;
}

section.mainimage.tate div:nth-of-type(3)::after{
  animation: liner 0.3s 1.1s linear forwards;
}

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

  section.mainimage div:nth-of-type(4)::after{
    content: "";
    border-bottom: 1px solid var(--line-black); 
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0)
  }

  section.mainimage div:nth-of-type(4)::after{
    animation: liner 0.3s 0.7s linear forwards;
  }

  section.mainimage div:nth-of-type(3)::after{
    animation: liner 0.3s 1.1s linear forwards;
  }
}

section.mainimage div:nth-of-type(3n){
  border-right: none;
}

section.mainimage div img{
  padding: 12.35% 28.18% 23.55%;
}

section.mainimage.tate div img{
  padding: 19.6% 23.1% 38.29%;
}

@media screen and (max-width: 767px) {
  section.mainimage div img{
    padding: 19.6% 23.1% 38.29%;
  }
}

section.mainimage div:nth-of-type(5) img{
  transform: translateY(0.5%);
}

section.mainimage.tate div:nth-of-type(5) img{
  transform: translateY(2.8%);
}

@media screen and (max-width: 767px) {
  section.mainimage div:nth-of-type(5) img{
    transform: translateY(2.8%);
  }
}

section.mainimage div p{
  position: absolute;
  top:62.72%;
  color:  var(--yellowgreen);
  font-family: 'Slackside One', cursive;
  font-size: calc(( 100vw - var(--sidewidth) * 2 ) * 0.0257);
  font-variant-ligatures:none;
  width: 100%;
  text-align: center;
  transform:rotate(-5.1deg);
}

section.mainimage.tate div p{
  top:55.56%;
  font-size: calc(( 100vw - var(--sidewidth) ) * 0.062);
  letter-spacing:0.015em;
}

@media screen and (max-width: 767px) {
  section.mainimage div p{
    top:55.56%;
    font-size: calc(( 100vw - var(--sidewidth) ) * 0.062);
    letter-spacing:0.015em;
  }
}

@media screen and (min-width: 768px) {
  section.mainimage.tate div p{
    font-size: calc(( 100vw - var(--sidewidth) * 2 ) * 0.062); 
  }
}

section.mainimage div:nth-of-type(5) p{
  top:65.7%;
}

section.mainimage.tate div:nth-of-type(5) p{
  top:60.5%;
}

@media screen and (max-width: 767px) {
  section.mainimage div:nth-of-type(5) p{
    top:60.5%;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


section.about {
  overflow: hidden;
  padding-top: 77px;
  padding-bottom: 193px;
  background-color:var(--backcolor) ;
  position: relative;
}

section.about::after {
  content: "";
  border-top: 1px solid var(--line-black); 
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  animation: liner 0.8s 0.7s linear forwards;
  transform: scaleX(0);
}

section.about.abtate::after {
  animation: linel 0.6s 0.7s linear forwards;
}

@media screen and (max-width: 767px) {
  section.about::after {
    animation: linel 0.6s 0.7s linear forwards;
  }
}

@media screen and (max-width: 767px) {
  section.about {
    padding: 77px 30px 121px;
  }
}

section.about &gt; div:first-of-type{
  margin: 0 0 0 auto;
  width:fit-content;
  padding-right: calc(( 100vw - var(--sidewidth) * 2 ) * 0.2087);
  position: relative;
}

@media screen and (max-width: 767px) {
  section.about &gt; div:first-of-type{
    margin: 0 auto;
    padding-right: 0px;
    padding-left: 2px;
  }
}

section.about &gt; div:first-of-type p{
  width: auto;
  width:fit-content;
}

section.about &gt; div:first-of-type p:not(:last-of-type){
  padding-bottom: 0.65em;
}
.long{
  display: inline-block;
  width: calc(1em * 2.5);
}

.long span{
  transform:scale(2.5, 1);
  transform-origin:left;
  display: inline-block;
}

.curvelinewrap{
  position: relative;
}

.curvelinefirst{
  position: absolute;
  display: none;
}

.curveline{
  position: absolute;
  width: 2245px;
  transform: translate(-889px,-809px);
  display: block;
}

@media screen and (max-width: 767px) {
  .curveline{
    width: 1753px;
    transform: translate(-696px,-633px);
  }
}

.cls-1{
  fill:none;fill-rule:evenodd;stroke:#a2a2a2;stroke-miterlimit:10;
  stroke-width: 1px;
  stroke-dasharray: 5885px;
  stroke-dashoffset: 5885px;
  animation: draw 2.1s cubic-bezier(0.04, 0.71, 0.96, 0.42) forwards;
  transform: scaleX(-1) translateX(-100%);
}

@keyframes draw {
  0% {
    /* stroke-dashoffset: -5885px; */
    stroke-dashoffset: 5885px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}

.aboutlinkwrap{
  width: clamp(7.875rem, 3.483rem + 9.16vw, 11.5rem);
  aspect-ratio: 184 / 92;
  height: auto;
  position: absolute;
  bottom: -57px;
  left: 246px;
}

@media screen and (max-width: 767px) {
  .aboutlinkwrap{
    position: relative;
    bottom: inherit;
    left: inherit;
    width: min(32.07vw,141px);
    margin: 0 calc( -1 * clamp(1.438rem, -4.276rem + 23.26vw, 6.875rem)) 0 auto;
    margin-top:57px;
  }
}

.aboutlink{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-family: HVMuseRegular;
  padding-top: 11.3%;
  padding-left: 14.6%;
  font-size: 101.2%;
  transition: all 0.3s ease-out;
}

.aboutlink:hover{
  transform: scale(1.07);
}
.aboutlink span{
  display: inline-block;
  transform: scale(1,0.9);
  width: auto;
  height: auto;
  letter-spacing: 0.017em;
}
.arrow{
  width: 1.5em;
  vertical-align: middle;
  stroke-width:1.2px;
  fill:none;
  fill-rule:evenodd;
  stroke:#fff;
  stroke-miterlimit:10;
  margin-left: 0.42em;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

.workscontent{
  border-top:1px solid var(--line-black) ;
  display: flex;
}

@media screen and (max-width: 767px) {
  .workscontent{
    flex-direction: column;
  }
}

.worksmain{
  width: 62%;
  height: auto;
  position: relative;
  aspect-ratio: 1268 / 718;
  background-color: #f8f8f8;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .worksmain{
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .worksmain{
    width: 100%;
  }
}

video{
  width: 100%;
  height: auto;
  /* // iPhone safariの枠線を消す */
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  /* // PCのChromeの枠線を消す */
  outline: none;
  border: none;
  vertical-align: bottom;
}

.worksimg img{
  width: 100%;
  height: auto;
  position: absolute;
  animation: change-img-anim 9s infinite;
}

.worksimg img:nth-of-type(1) {
  animation: change-img-anim-first 9s infinite;
	animation-delay: 0s;
}

.worksimg img:nth-of-type(2) {
	animation-delay: 3s;
}

.worksimg img:nth-of-type(3) {
	animation-delay: 6s;
}

@keyframes change-img-anim-first {
	0%{ opacity: 1;}
  30%{ opacity: 1;}
  36%{ opacity: 1;}
  45%{ opacity: 0;}
  100%{ opacity: 0;}
}

@keyframes change-img-anim {
  0%{ opacity: 0;}
  30%{ opacity: 1;}
  36%{ opacity: 1;}
  45%{ opacity: 0;}
  100%{ opacity: 0;}
}

.worksdetail {
  padding: 56px 70px;
  flex: 1;
}

@media screen and (max-width: 1200px) {
  .worksdetail{
    padding: 4.7% 6.3%;
  }
}

@media screen and (max-width: 1024px) {
  .worksdetail{
    padding: 4.7% 5.3%;
  }
}

@media screen and (max-width: 767px) {
  .worksdetail{
    padding: 5.1% 5.75% 17.9%;
    padding: 5.4% 5.75% 17.9%;
  }
}

.worksdetail p{
  /* 767/17 1400/26 */
  font-size: clamp(1.063rem, 0.381rem + 1.42vw, 1.625rem);
  /* 767/8 1400/24 */
  margin-bottom: clamp(0.5rem, -0.712rem + 2.53vw, 1.5rem);
  line-height: 1.52;
  /* font-family:   "A1 Gothic R" , sans-serif; */
}

@media screen and (max-width: 767px) {
  .worksdetail p{
    font-size:18px;
    font-size:19px;
    font-size:18.7px;
    margin-bottom: 10px;
  }
}

p.maru{
  display: inline-block;
  position: relative;
  margin-left: 0.28em;
  /* 1400/18 767/11 */
  font-size: clamp(0.688rem, 0.157rem + 1.11vw, 1.125rem);
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  p.maru{
    font-size: 11px;
    font-size: 12px;
  }
}

p.maru::before{
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border:1px solid var(--line-black);
  display: inline-block;
  background-color: var(--yellowgreen);
  margin-right: 0.8em;
  transition: all 0.4s ease-in-out;
  transform: scale(1,1.1);
}

p.maru:hover::before{
  width: 0.9em;
  height: 0.9em;
  transition: all 0.4s ease-in-out;
  transform:translateY(0.2em)  scale(1,1.1);
}

p.maru::after{
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  border-top: 1px solid var(--line-black); 
  height: 1px;
  bottom: -0.59em;
  right: 0;
  z-index: -1;
}

p.maru:hover::after{ 
  animation: push .7s ease-in-out;
}

@keyframes push {
  0%{
    transform: scaleX(1); 
    transform-origin:right;
    }
	45% {
     transform: scaleX(0); 
     transform-origin:right;
    }
  55% {
    transform: scaleX(0); 
    transform-origin:left;
    }

	100% {
     transform: scaleX(1); 
     transform-origin:left; 
    }
}

@media screen and (max-width: 767px) {
  .works p.maru::after{
    bottom: -3px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
section.service{
  border-top: 1px solid var(--line-black);
  /* line-height: 1.79; */
}

section.service &gt; div{
  padding: 110px 90px 80px;
  max-width: calc(1100px + 90px * 2);
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  section.service &gt; div{
    /* 767/45 1024/90 */
    padding: 110px clamp(2.813rem, -5.581rem + 17.51vw, 5.625rem) 80px;
  }
}

@media screen and (max-width: 767px) {
  section.service &gt; div{
    padding: 57px 10.5% 34px;
    padding: 57px 10.5% 43px;
  }
}

section.service &gt; div &gt; p{
  max-width: 670px;
  margin: 0 auto;
  padding: 0 35px;
}

@media screen and (max-width: 767px) {
  section.service &gt; div &gt; p{
    padding: 0;
  }
}

.servicecontent{
  display: flex;
  align-items:center;
  padding: 60px 5px 60px;
}

@media screen and (max-width: 1024px) {
  .servicecontent{
    align-items: start;
  }
}

@media screen and (max-width: 767px) {
  .servicecontent{
    flex-direction: column;
    padding: 0px 5px 45px;
    align-items: center;
  }
}

.servicecontent:first-of-type {
  border-bottom:  1px solid var(--line-black);
}

.serviceimg{
  flex-basis: 44%;
  padding: 0 8% 0 5.5%;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

@media screen and (max-width: 1024px) {
  .serviceimg{
    flex-basis: 55%;
    margin-top: 29px;
  }
}

@media screen and (max-width: 767px) {
  .serviceimg{
    padding: 0;
    margin-top: 45px;
    width: min(43.55vw,259px);
    transform: translateX(4%);
  }
  
  .serviceimg2{
    margin-top: 47px;
    margin-top: 54px;
    padding-bottom: 11px;
  }
}

.serviceimg &gt; div{
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.serviceimg &gt; div:first-of-type{
  justify-content:center;
  margin-bottom: 2.9%;
}

.serviceimg &gt; div &gt; div{
  overflow: hidden;
  width: 43%;
}

.serviceimg &gt; div &gt; div.serviceill{
  overflow:visible;
  transform: translateY(-2.9%);
}

.serviceimg &gt; div img{
  transform: scale(1.37);
}

.servicecontent &gt; div:nth-of-type(2){
  flex: 1;
}

h3{
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  margin-left: -0.07em;
  /* font-family:   "A1 Gothic R" , sans-serif; */
}

@media screen and (max-width: 1200px) {
  h3{
    font-size: 25px;
    font-size: 1.56rem;
  }
}

@media screen and (max-width: 1024px) {
  h3{
    font-size: 22px;
    font-size: clamp(1.375rem, 1.002rem + 0.78vw, 1.5rem);
  }
}

@media screen and (max-width: 767px) {
  h3{
    font-size: 18px;
    font-size: 19px;
    font-size: 18.7px;
    margin-top: 21px ;
    margin-top: 42px;
    margin-top: 39px;
  }
}

.servicecontent &gt; div:nth-of-type(2) &gt; p{
  margin-top: 1.1em;
  margin-bottom: 1.1em;
}

@media screen and (max-width: 1024px) {
  .servicecontent &gt; div:nth-of-type(2) &gt; p{
    margin-top: 1.2em;
    margin-bottom: 0.38em;
  }
}

@media screen and (max-width: 767px) {
  .servicecontent &gt; div:nth-of-type(2) &gt; p{
    margin-top: 4px;
    margin-top: 7px;
    margin-bottom: 8px;
  }
}

.webimg, .graphicimg &gt; div:nth-of-type(2){
  display: flex;
  text-align: left;
  gap: 10px;
  gap: 0;
}

@media screen and (max-width: 1024px) {
  .webimg, .graphicimg &gt; div:nth-of-type(2){
    flex-direction: column;
  }
}

.graphicimg &gt; div:nth-of-type(2) &gt; div:nth-last-of-type(2){
  flex: 1;
}

.ex{
  border: 1px solid var(--line-black);
  display: inline-block;
  /* 1400/13 767/10 */
  font-size: clamp(0.625rem, 0.398rem + 0.47vw, 0.813rem);
  padding: 0.35em 0.75em 0.35em 0.9em;
  margin-right: 0.86em;
  margin-bottom: 0.52em ;
}

@media screen and (max-width: 1024px) {
  .ex{
    padding: 0.29em 0.43em 0.29em 0.6em;
    margin-right: 0.6em;
    margin-bottom: 0.19em ;
  }
}

@media screen and (max-width: 767px) {
  .ex{
    font-size: 10px;
    font-size: 9px;
  }
}

.servicelinkwrap{
  align-self: flex-end;
  height: 1px;
  transition: all 0.3s ease-out;
}

.servicelinkwrap:hover{
  transform: scale(1.07);
}
.servicelinkwrap span{
  display: inline-block;
  transform: scale(1,0.9);
  width: auto;
  height: auto;
  letter-spacing: 0.017em;
}
@media screen and (max-width: 1024px) {
  .servicelinkwrap{
    height: auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 900px) {
  .servicelinkwrap{
    margin-top: 18px;
  }

}

@media screen and (max-width: 757px) {
  .servicelinkwrap{
    margin-top: 20px;
    margin-top: 29px;
  }
  .mg9{
    margin-top: 9px;
  }

}

.servicelink{
  display: block;
  width: 150px;
  /* 1024/136px 1200/150px */
  width: clamp(8.5rem, 3.409rem + 7.95vw, 9.375rem);
  aspect-ratio: 150 / 68;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-family: HVMuseRegular;
  padding-top: 9.4%;
  padding-top: 8.45%;
  padding-left: 16%;
  padding-left: 15.47%;
  font-size: 82.4%;
  font-size: 91.1%;
  left: 246px;
  letter-spacing: 0.11em;
  transform: translate(4px,-4em);
}

@media screen and (max-width: 1024px) {
  .servicelink{
    transform: translate(8px,0);
    width: clamp(7.063rem, 4.451rem + 5.45vw, 7.938rem);
  }
}

@media screen and (max-width: 767px) {
  .servicelink{
    transform: translate(8px,0);
    width:min(27.3vw,118px);
  }
}

.servicearrow{
  width: 1.3em;
  stroke-width:1.8px;
}








/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */



section.contact{
  border: 1px solid var(--line-black);;
  background-color: var(--backcolor);
  z-index: 10;
  position: relative;
  width: calc(100% - var(--sidewidth) * 2 + 34px);
  border-radius: 55px;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  section.contact{
    width: calc(100% - var(--sidewidth) * 2 + 16px);
  }
}

@media screen and (max-width: 767px) {
  section.contact{
    width: calc(100% - var(--sidewidth)  - 5px);
    margin-left: 12px;
    border-radius: 35px;
  }
}

section.contact a{
  width: 100%;
  display: block;
  padding: 60px 12% 180px 9.8%;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  section.contact a{
    padding: 54px 12% 64px;
  }
}

.contactus{
  font-size: 90px;
  /* 767/53px 1400/90px */
  font-size: clamp(3.313rem, 0.51rem + 5.85vw, 5.625rem);
  margin-left: -0.1em;
  margin-top: 0.6em;
  margin-bottom: calc(0.395em + 9px);
  overflow: hidden;
  height: 0.8em;
  line-height: 1em;
}

@media screen and (max-width: 767px) {
  .contactus{
    font-size:  min(11.7vw, 61px);
    margin-bottom:0.56em;
  }
}

section.contact .contactus div{
  transform: translateY(-0.2em) scale(1, 0.95);
}

section.contact .contactus div span{
  transition: all 0.2s ease-out;
}

section.contact:hover .contactus div span{
  display:inline-block;
  transform: translateY(-100%);
  transition: all 0.4s ease-out;
}

.contactlinkwrap{
  width: clamp(7.875rem, 3.483rem + 9.16vw, 11.5rem);
  aspect-ratio: 184 / 92;
  height: auto;
  float: right;
  margin-top: -40px;
  transition: all 0.3s ease-out;
  transform-origin: top left;
}

section.contact:hover .contactlinkwrap{
  transform: scale(1.07);
}

@media screen and (max-width: 1024px) {
  .contactlinkwrap{
    margin-top: 1px;
  }
}

@media screen and (max-width: 767px) {
  .contactlinkwrap{
    width: min(25.97vw,124px);
    margin: 60px -6px 0 auto;
    float: inherit;
  }
}

.contactlink{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-family: HVMuseRegular;
  padding-top: 12.53%;
  padding-left: 16.9%;
  font-size: 94.08%;
}

@media screen and (max-width: 767px) {
  .contactlink{
    padding-top: 9.53%;
    font-size: 89.08%;
  }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
footer.footer{
  margin-top: -200px;
}

footer{
  text-align: center;
  padding: 74px 0 30px;
}

@media screen and (max-width: 767px) {
  footer{
    width: calc(100% - var(--sidewidth) + var(--sidewidth) * 0.5);
  }
}

footer &gt; a:first-of-type{
  width: 200px;
  display: inline-block;
  height: auto;
}

@media screen and (max-width: 767px) {
  footer &gt; a:first-of-type{
    width: 133px;
  }
}

.sns{
  display: flex;
  margin: 0 auto;
  justify-content:center;
  gap: 14px;
  padding: 28px 0 69px;
}

.sns a{
  display: block;
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sns a{
    width: 32px;
    height: 32px;
  }
}

.sns img{
  width: 46%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.twitter img{
  width: 42%;
}

.copy{
  font-size: clamp(0.625rem, 0.474rem + 0.32vw, 0.75rem);
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

.title{
  position: relative;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  justify-content :flex-end;
  letter-spacing: 0.11em;
  padding-right: 32px;
  padding-top: 21px;
}
@media screen and (max-width: 1200px) {
  .breadcrumb {
    font-size: 10px;
    padding-right: 24px;
    padding-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 10px;
    padding-right: 21px;
    padding-top: 16px;
    transform: scale(0.8) scale(1, 0.85);
    transform-origin: right;
    display: none;
  }
}
.breadcrumb li:not(:last-of-type)::after {
  content: "&gt;";
  margin: 0 .6em; 
  color: #777; 
}
.breadjp {
    margin-left: -12%;
}
.breadjp span{
  transform: scale(0.8) translateY(0.09em);
  transform-origin:right center;
  display: inline-block;
  width: 100%;
  height: auto;
}

h4{
   /* 767/25 1400/35 */
  font-size:clamp(1.563rem, 0.805rem + 1.58vw, 2.188rem);
  padding-top: min(6.94%,107px);
  padding-bottom: min(7%,108px);
  letter-spacing: 0.009em;
  width: 81.664%;
  max-width:1154px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  h4{
    padding-top: 10.8%;
    padding-bottom: 10.3%;
  }
}

@media screen and (max-width: 767px) {
  h4{
    font-size: 24px;
    /* font-size: 27px; */
    padding-left: 5.75%;
    padding-top: 67px;
    padding-bottom: 69px;
    padding-top: 85px;
    padding-bottom: 59px;
    width: 100%;
  }
}
.workspg .works{
  margin-bottom: clamp(43px, 15px + 3.63vw, 66px);
}

@media screen and (max-width: 767px) {
  .workspg .works{
    margin-bottom: 27px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

.workspage .title div{
  position: relative;
}
.workspage .title div nav{
  position: absolute;
  right: 0;
  z-index: 10;
}

h5{
  /* max-width: 818px; */
  width: 70.5%;
  margin: 0 auto;
  /* 767/22 1400/31 */
  font-size: clamp(1.375rem, 0.693rem + 1.42vw, 1.938rem);
  padding-top:171px;
  padding-bottom: 35px;
  padding-bottom: 101px;
  line-height: 1.52;
}

@media screen and (max-width: 1200px) {
  h5{
    padding-top:163px;
    padding-bottom: 3.3%;
    padding-bottom: 7.7%;
    width: 79%;
  }
  
}
@media screen and (max-width: 767px) {
  h5{
    font-size: 20px;
    padding-top: 114px;
    padding-top:102px;
    padding-bottom: 11px;
    padding-top: 83px;
    padding-bottom: 32px;
    /* width: 82.5%;
    width: 79%; */
  }
}
.workspage section:nth-of-type(3){
  margin-bottom: 137px;
  margin-bottom:59px;
  margin-top: 94px;

}
@media screen and (max-width: 1200px) {
  .workspage section:nth-of-type(3){
    margin-bottom: 114px;
    margin-bottom: 14.85%;
    margin-bottom: 0.85%;
    margin-top: 54px;
  }
}
@media screen and (max-width: 767px) {
  .workspage section:nth-of-type(3){
    margin-bottom: 86px;
    margin-bottom: 91px;
    margin-bottom: 35px;
    margin-top: 27px;
  }
}
.workspage section:nth-of-type(3) &gt; div{
  max-width: 818px;
  width: 70.5%;
  padding: 0 0.19em;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .workspage section:nth-of-type(3) &gt; div{
    /* width: 79%; */

  }
}
@media screen and (max-width: 767px) {
  .workspage section:nth-of-type(3) &gt; div{
    width: 82.5%;
    width: 79%;

  }
}
p.gr{
  color: #A8A8A8;
  font-size: 12px;
  font-size:clamp(0.625rem, 0.474rem + 0.32vw, 0.75rem);
  margin-top: 7px;
  letter-spacing: 0.098em;
  padding:0 0.19em
}

@media screen and (max-width: 1200px) {
  p.gr{
    margin-top:0.69%;
  }
}
@media screen and (max-width: 767px) {
  p.gr{
    font-size: 10px;
    transform: scale(0.8) scale(1, 0.81);
    transform: scale(0.8) scale(1, 0.9);
    transform-origin: left;
    margin-top: 2px;
  }
}
p.newtab {
  /* font-size: 14px;
  font-size: clamp(0.75rem, 0.599rem + 0.32vw, 0.875rem);
  font-size: clamp(0.875rem, 0.724rem + 0.32vw, 1rem); */
  margin-top: 47px;
}
@media screen and (max-width: 1200px) {
  p.newtab {
    margin-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  p.newtab {
    font-size: 11px;
    font-size: 13px;
    font-size: 15px;
    margin-top: 37px;
    margin-top: 40px;
  }
}

.newtab a{
  position: relative;
  display: inline-block;
}

.newtab a::after{
  position: absolute;
  content: url(/img/newtab.svg);
  margin-left: 0.55em;
  width: 0.6em;
  height: 0.6em;
  transform: translateY(0.01em);
}

p.newtab::after{
  bottom: -0.25em;
  width: calc(100% + 1.35em);
  right: -1.35em;
}
@media screen and (max-width: 767px) {
  p.newtab::after{
    bottom: -0.07em;
  }
}

.workspage section:nth-of-type(2){
  padding: 0 3.25%;
}
.workspage section:nth-of-type(2) &gt; div:not(:last-child){
  margin-bottom: 6.47%;
}
@media screen and (max-width: 767px) {
  .workspage section:nth-of-type(2) &gt; div:not(:last-child){
    margin-bottom: 8.32%;
  }
}

.next{
  text-align: center;
  padding: 145px 0;
  letter-spacing: 0.12em;
  font-size: clamp(0.875rem, 0.724rem + 0.32vw, 1rem); 
}
@media screen and (max-width: 1200px) {
  .next{
    padding: 118px 0;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .next{
    padding: 94px 0;
    font-size: 13px;
  }
}
.arrowback{
  fill:none;
  stroke:#000;
  stroke-miterlimit:10;
  width: 2.1em;
  margin-right: 1em;
  transform: translateY(0.215em);
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


.aboutpg section:nth-of-type(2) &gt; div, .aboutpg section:nth-of-type(3) &gt; div,
.contactpg section:nth-of-type(2)  &gt; div, .contactformkakunin &gt; div
/* .contactformthank section:nth-of-type(1) &gt; div,
.contactformthank section:nth-of-type(2) &gt; div */
{
  max-width:677px;
  width: 70.5%;
  margin: 0 auto;
  padding: 0 0.13em;

}
@media screen and (max-width: 767px) {
  .contactpg section:nth-of-type(2)  &gt; div{
    width: 77.8%;
    padding-right: 0.06em;
    padding-left: 0.06em;
    margin-top: -1em;
  }
}
.aboutpg h4, .contactpg h4{
  padding-right: 0;
  padding-left: 0;
  max-width:677px;
  width: 70.5%;
  margin: 0 auto;
  padding-bottom: 62px;
}
.contactpg h4.thank{
  font-size: 3.8em;
  line-height: 1.3;
  text-align: left;
  
}
@media screen and (max-width: 767px) {
  .contactpg h4{
    font-size: 24px;
    padding-left: 5.75%;
    /* padding-top: 67px; */
    /* padding-bottom: 69px; */
    width: 100%;
  }

  .contactpg h4.thank{
    padding-left: 0;
    width: 77.8%;
    font-size: 44px;
    padding-top: 71px;
    padding-bottom: 40px;
  }
}
.lslh{
  letter-spacing: 0.11em;
  line-height: 2.13;
  letter-spacing: 0.09em;
  /* line-height: 2.36; */
}
@media screen and (max-width: 767px) {
  .ls767{
    letter-spacing: 0.11em;

  }
}

.aboutpg section:nth-of-type(2),.aboutpg section:nth-of-type(3){
  padding: 0 0.19em;
}
.aboutpg section:nth-of-type(2) p:not(:last-of-type){
  margin-bottom: 1.5em;
  margin-bottom: 2.36em;
}
@media screen and (max-width: 767px) {
  .aboutpg section:nth-of-type(2){
    margin-top: -5px;
    margin-top: -14px;
  }
  .aboutpg section:nth-of-type(2) p:not(:last-of-type){
    margin-bottom: 28px;
  }
}

.aboutpg section:nth-of-type(3) &gt; div{
  display: flex;
  padding-top: 90px;
  padding-top: 129px;
  margin-bottom: 170px;
  padding-top:clamp(109px, 85px + 3.16vw, 129px);
  margin-bottom: clamp(158px, 119px + 5.06vw, 190px);
}

@media screen and (max-width: 767px) {
  .aboutpg section:nth-of-type(3) &gt; div{
    flex-direction: column;
    padding-top: 77px;
    margin-bottom: 107px;
  }
}

.aboutpg section:nth-of-type(3) &gt; div &gt; div:first-of-type{
  font-size: 22px;
  font-size: clamp(1.25rem, 1.099rem + 0.32vw, 1.375rem);
  padding-right:4em ;
  padding-right:3.05em ;
  /* 767/3.05em 1400/4em */
  padding-right:clamp(3.05em, 1.899em + 2.4vw, 4em) ;

}
@media screen and (max-width: 767px) {
  .aboutpg section:nth-of-type(3) &gt; div &gt; div:first-of-type{
    font-size: 19px;
  }
}
.aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2){
  font-size: 16px;
  /* 14/767 16/1400 */
  font-size: clamp(0.875rem, 0.724rem + 0.32vw, 1rem);
  padding-top: 0.4em;
  padding-top:1.25em;

}

@media screen and (max-width: 767px) {
  .aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2){
    font-size: 12px;
    padding-top: 20px;
  }
}
.aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2) span{
  font-size: 0.74em;
  letter-spacing: 0.16em;
}
.aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2) p:first-of-type span{
  margin-left: 1.5em;
  font-size: 0.8em;
}
.aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2) p:nth-of-type(2){
  margin-top: -0.57em;
  padding-left: 0.12em;
}
.aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2) p:nth-of-type(3){
  margin-top: 0.84em;
}
@media screen and (max-width: 767px) {
  .aboutpg section:nth-of-type(3) &gt; div &gt; div:nth-of-type(2) p:nth-of-type(3){
    margin-top: 2px;
  }
}

.aboutpg section:nth-of-type(4) div{
  height: 430px;
  height: clamp(343px, 238px + 13.74vw, 430px);
  overflow: hidden;
  margin-bottom: -30px;

}

@media screen and (max-width: 767px) {
  .aboutpg section:nth-of-type(4) div{
    height: 422px;
    margin-bottom: -180px;
    position: relative;
  }
  .aboutpg section:nth-of-type(4) div::after{
    content: "";
    display: block;
    width: 100%;
    height: 180px;
    bottom: 0;
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
    position: absolute;

  }
}
.aboutpg section:nth-of-type(4) img{
  object-fit: cover;
  min-height: 100%;

}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.intro,.flowwrap{
  margin: 0 auto;
  width: 70.5%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .intro,.flowwrap{
    width: 77.8%;
  }
  .intro{
    width: calc(77.8% + 0.29em);
  }
}

h6{
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.16em;
}

@media screen and (max-width: 767px) {
  h6{
    font-size: 19px;
    margin-bottom: 9px;
  }
}

.intro{
  font-size: 1.18em;
}

@media screen and (max-width: 767px) {
  .intro{
    font-size: 15px;
  }

}
.intro &gt; p{
  padding: 0 0.055em;
}


.shurui{
  display: flex;
  justify-content:space-between;
  margin-top: 72px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 133px;
}

@media screen and (max-width: 767px) {
  .shurui{
    flex-direction: column;
    margin-top: 90px;
  }
}

.shurui &gt; div{
  width: calc(100% / 3);
  border-top: 1px solid var(--line-black);
  border-bottom: 1px solid var(--line-black);
  position: relative;
  padding-bottom: 85px;
}

@media screen and (max-width: 1200px) {
  .shurui &gt; div{
    padding-bottom: 66px;
  }
}

@media screen and (max-width: 767px) {
  .shurui &gt; div{
    width: 100%;
    padding-bottom: 75px;
  }

  .shurui &gt; div:not(:last-of-type){
    border-bottom: none;
  }

  .shurui &gt; div:last-of-type{
    padding-bottom: 65px;
  }
}


.shurui &gt; div:not(:last-of-type)::before{
  content: "";
  position: absolute;
  border-left:1px solid var(--line-black) ;
  width: 1px;
  height: calc(100% - 30px);
  height: calc(100% );
  top: 15px;
  top: 0px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .shurui &gt; div:not(:last-of-type)::before{
    border-left: none;
  }
}

.shurui &gt; div &gt; div:first-of-type{
  text-align: center;
  background-color: var(--backcolor);
  border-radius:50% ;
  position: relative;
  width: 206px;
  aspect-ratio: 206 / 199;
  border: 1px solid var(--line-black);
  box-shadow: 0 0 0 5px #fff;
  height: auto;
  margin: -38px auto 0 auto;
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; div:first-of-type{
    width: 179px;
    margin: -35px auto 0 auto;
  }
}

.shurui &gt; div &gt; div:first-of-type::after{
  content: "";
  background-color: var(--backcolor);
  width: 290px;
  width: calc(100% + 2px);
  height: 178px;
  position: absolute;
  top:38px;
  left: -1px;
  z-index: 3;
  height: 218px;
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; div:first-of-type::after{
    top: 35px;
  }
}
.shurui &gt; div &gt; div:first-of-type&gt; img{
  width: 127px;
  padding-top:19px;
  mix-blend-mode:darken;
  z-index: 4;
  position: relative;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; div:first-of-type&gt; img{
    width: 114px;
    padding-top: 6px;
  }
}

.shurui &gt; div &gt; p, .meyasu{
  width: 74.13%;
  margin: 0 auto;
  line-height: 2.13;
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; p,.meyasu{
    width: 77.8%;
  }
}

.shurui &gt; div &gt; p:first-of-type{
  text-align: center;
  font-size: 1.1em;
  padding-bottom: 28px;
  border-bottom: 2px dotted var(--line-black);
  z-index: 20;
  position: relative;
  margin-top: -64px;
  padding-bottom: 42px;
  line-height: 1.64;
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; p:first-of-type{
    margin-top: -57px;
    padding-bottom: 25px;
    padding-bottom: 24px;
  }
}
section:nth-of-type(3) .shurui &gt; div &gt; p:first-of-type{
  height: 5.4em;
}

@media screen and (max-width: 767px) {
  section:nth-of-type(3) .shurui &gt; div &gt; p:first-of-type{
    height: auto;
  }
}

.mw885dn{
  display: none;
}
@media screen and (max-width: 885px) {
  .shurui &gt; div &gt; p:first-of-type{
    /* font-size: 0.93em; */
  }
}

section:nth-of-type(3) .shurui &gt; div:not(:first-of-type) &gt; p:first-of-type{
  padding-top: 1em;
}

@media screen and (max-width: 767px) {
  section:nth-of-type(3) .shurui &gt; div:not(:first-of-type) &gt; p:first-of-type{
    padding-top: 0;
  }
}
.shurui &gt; div &gt; p:nth-of-type(2){
  padding-top: 13px;
  z-index: 20;
  position: relative;
  margin-bottom: 31px;
}

@media screen and (max-width: 1200px) {
  .shurui &gt; div &gt; p:nth-of-type(2){
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; p:nth-of-type(2){
    margin-bottom: 12px;
    padding-top: 7px;
  }
}


.meyasu {
  font-size: 0.9em;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.8;
  gap:0.6em 0;
}
@media screen and (max-width: 1200px) {
  .meyasu {
    flex-direction: column;
  }
  .meyasu p:nth-of-type(3){
    margin-top: 0.4em;
  }

}
@media screen and (max-width: 767px) {
  .meyasu {
    flex-direction: row;
  }

  .meyasu p:nth-of-type(3){
    margin-top: 0;
  }
  
}

.meyasu p:nth-of-type(odd){
  width:8.2em ;
  font-size: 0.83em;
}


@media screen and (max-width: 767px) {
  .meyasu p:nth-of-type(odd){
    width: 8.5em;
  }

}
.meyasu p:nth-of-type(even){
  width: calc(100% - 8.2em);
  transform-origin: top;
  padding-top: 0.03em;
  text-align: start;
}
@media screen and (max-width: 1200px) {
  .meyasu p:nth-of-type(even){
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .meyasu p:nth-of-type(even){
    width: calc(100% - 8.2em);
  }
}

.meyasu span{
  display: inline-block;
  z-index: 2;
  position: relative;
  border: 1px solid var(--line-black);
  padding: 0 0.7em;
  border-radius: 50vh;
  z-index: 2;
}

.meyasu span::after{
  content: "";
  width: calc(100% + 2px);
  height:6px;
  background-color: var(--backcolor);
  top: 7px;
  left: -1px;
  position: absolute;
  z-index: -1;
}

.shurui &gt; div &gt; p:nth-of-type(5){
  margin-top: 14px;
}

.shurui &gt; div &gt; p:nth-of-type(2),.shurui &gt; div &gt; p:nth-of-type(4),.shurui &gt; div &gt; p:nth-of-type(6){
  padding-right: 0.15em;
  padding-left: 0.15em;
  
}

@media screen and (max-width: 767px) {
  .shurui &gt; div &gt; p:nth-of-type(2),.shurui &gt; div &gt; p:nth-of-type(4),.shurui &gt; div &gt; p:nth-of-type(6){
    padding-right: 0.06em;
    padding-left: 0.06em;
  }
}

.shurui &gt; div &gt; p:nth-of-type(4),.shurui &gt; div &gt; p:nth-of-type(6){
  font-size: 0.9em;
  line-height: 1.8;
}

.kome{
  text-align: right;
  font-size: 0.7em;
  width: 99%;
  margin-top: 5px;
}

@media screen and (max-width: 1200px) {
  .kome{
    width: 98.8%;
  }
}
@media screen and (max-width: 767px) {
  .kome{
    width: 98.2%;
  }
}

.flowwrap{
  display: flex;
  align-items: flex-start;
  justify-content:space-between;
  margin-top: 110px;
}

@media screen and (max-width: 1200px) {
  .flowwrap{
    flex-direction: column;
    margin-top: 76px;
  }
}

.flowwrap &gt; p{
  font-size: 1.3em;
}

.flow{
  width: 83%;
  max-width: 553px;
  margin-top: 30px;
}

@media screen and (max-width: 1200px) {
  .flow{
    margin: 0 0 0 auto;
    margin-top: 39px;
  }
}
@media screen and (max-width: 767px) {
  .flow{
    width: 96.07%;
  }
}

.flow &gt; div{
  display: flex;
  gap:68px;
}

@media screen and (max-width: 767px) {
  .flow &gt; div{
    gap:2.65em;
  }
}

.dot{
  width:13px;
  height:13px;
  background-color: var(--yellowgreen);
  border-radius: 50%;
  z-index: 2;
  position: relative;
  line-height: 3em;
  text-align: center;
  font-weight: 500;
  font-size: 0.85em;
  border: 1px solid var(--line-black);
}

@media screen and (max-width: 767px) {
  .dot{
    width:11px;
    height:11px;
  }
}

.dottedline{
  width: 1px;
  height: 100%;
  margin-left: 1.65em;
  margin-left: 6px;
  z-index: -1;
  background-image: repeating-linear-gradient(0deg, var(--line-black), var(--line-black) 5px, transparent 5px, transparent 10px, var(--line-black) 10px), repeating-linear-gradient(90deg, var(--line-black), var(--line-black) 5px, transparent 5px, transparent 10px, var(--line-black) 10px), repeating-linear-gradient(180deg, var(--line-black), var(--line-black) 5px, transparent 5px, transparent 10px, var(--line-black) 10px), repeating-linear-gradient(270deg, var(--line-black), var(--line-black) 5px, transparent 5px, transparent 10px, var(--line-black) 10px);
  background-size: 1px 100%, 100% 0px, 0px 100% , 100% 0px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .dottedline{
    margin-left: 5px;
  }
}

.aaa {
  flex:1;
}

.aaa &gt; p:nth-of-type(1)  {
  line-height: 1;
  position: relative;
  font-weight: 400;
  height: 1em;
  margin-top: -0.12em;
}

@media screen and (max-width: 767px) {
  .aaa &gt; p:nth-of-type(1)  {
    font-size: 13.5px;
  }
}

.aaa &gt; p:first-of-type &gt; span{
  display: inline-block;
  padding-right: 1em;
  border-radius: 50%;
  font-size: 0.8em;
  transform: translateY(-0.08em);
  position: relative;
  font-weight: 500;
}

.aaa &gt; p:nth-of-type(2) {
  font-size: 0.9em;
  line-height: 1.77;
  margin-top: 20px;
  margin-bottom: 73px;
  transform-origin: top;
}

@media screen and (max-width: 767px) {
  .aaa &gt; p:nth-of-type(2) {
    margin-top: 17px;
    margin-bottom: 54px;
  }
}

.aaa &gt; p:nth-of-type(2) span{
  display: inline-block;
  font-size: 0.85em;
  line-height: 1.9;
  margin-top: 1.4em;
  padding-left:1.5em;
	text-indent:-1.5em;
}

.servicepg section:nth-of-type(3) {
  margin-top: 190px;
  margin-bottom: 170px;
}

@media screen and (max-width: 767px) {
  .servicepg section:nth-of-type(3) {
    margin-top: 108px;
    margin-bottom: 100px;
  }
  .servicepg section:nth-of-type(3) &gt; .shuruiwrap &gt; .shurui &gt; div:nth-of-type(1) &gt; div:nth-of-type(1) &gt; img{
    width: 113px;
    padding-top: 9px;
  }
  .servicepg section:nth-of-type(3) &gt; .shuruiwrap &gt; .shurui &gt; div:nth-of-type(2) &gt; div:nth-of-type(1) &gt; img{
    width: 115px;
    padding-top: 12px;
  }
  .servicepg section:nth-of-type(3) &gt; .shuruiwrap &gt; .shurui &gt; div:nth-of-type(2) &gt; p:nth-of-type(1){
    margin-top: -42px;
  }

  .servicepg section:nth-of-type(3) &gt; .shuruiwrap &gt; .shurui &gt; div:nth-of-type(3) &gt; div:nth-of-type(1) &gt; img{
    padding-top: 7px;
  }
  
}
.textlink{
  border-bottom: 1px solid var(--line-black);
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

.mini{
  font-size: 0.75em;
  margin-top: 0.96em;
}

@media screen and (max-width: 767px) {
  .mini{
    margin-top: 1.41em;
    margin-top:1.39em;

  }
}
.form{
	width:100%;
  margin-top: 4.06em;
}

@media screen and (max-width: 767px) {
  .form{
    margin-top: 4.3em;
  }
}

.form ~ span.wide{
  display: inline-block;
}

.form dl:not(:last-of-type){
  padding-bottom: 3.94em;
}

@media screen and (max-width: 767px) {
  .form dl:not(:last-of-type){
    padding-bottom: 4.31em;
  }
}

.form dt{
	font-weight:300;
  margin-bottom: 0.48em;
}

@media screen and (max-width: 767px) {
  .form dt{
    margin-bottom: 0;
  }
}

.form dt label{
  display: flex;
}
.required {
  font-weight:400;
  display: inline-block;
  line-height: 1em;
  border-radius: 3px;
  vertical-align: baseline;
  align-self: center;
  margin-left: 0.3em;
  color: red;
}

.form dd{
  width: 100%;
  position: relative;
  font-size: 1.71em;
  font-weight:400;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .form dd{
    font-size: 1.59em;
  }
}

.input, textarea{
  border-bottom: 1px solid var(--line-black);
  width: 100%;
  padding:  0.21em 0.13em ;
  letter-spacing: 0.09em;
  font-weight: 200;
  font-family: sans-serif;
}

@media screen and (max-width: 767px) {
  .input, textarea{
    padding: 0.47em 0.13em;
  }
}

textarea{
  border: 1px solid var(--line-black);
  margin-top:0.76em;
  padding:  0.4em 0.8em ;
}

.errorMessage{
  font-size: 0.55em;
  font-weight: 400;
  color: red;
  margin-top: -0.4em;
  display: block;
  padding-left: 0.3em;
}

input:invalid ~ .errorMessage, textarea:invalid ~ .errorMessage {
  display: block;
}

input:valid ~ .errorMessage, textarea:valid ~ .errorMessag {
  display: none;
}

input:placeholder-shown ~ .errorMessage, textarea:placeholder-shown ~ .errorMessage {
  display: none;
}

@media screen and (max-width: 767px) {
  .form span.errorMessage{
    margin-top: -0.82em;
  }
}

.form span.errorMessagelast{
  margin-top: -4.7em;
}

input::placeholder,
textarea::placeholder {
  color: #e4e4e4;
}

.submitwrap{
  margin-bottom: 210px;
  width: 17.82em;
  height: 6.4em;
  margin:clamp(0.938rem, -2.016rem + 6.16vw, 3.375rem) auto clamp(8.5rem, 3.88rem + 9.64vw, 12.313rem);
  position: relative;
}

@media screen and (max-width: 767px) {
  .submitwrap{
    margin: 26px auto 118px;
  }
}

.henkowrap{
  height: 4em;
  width: 17.82em;
  margin: 0.2em auto 11.59em;
}

@media screen and (max-width: 767px) {
  .henkowrap{
    margin:10px auto 118px;
  }
}

.submitwrap::after {
  content: "";
  display: block;
  background-image: url(/img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width:  2em;
  aspect-ratio: 56.29 / 24.41;
  right: 2.4em;
  top: 2.77em
}

.submitButton {
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  letter-spacing: 0.09em;
  text-align: center;
  padding-right: 1.9em;
  line-height: 6.4em;
}

.henko{
  background-color: var(--backcolor);
  color: #000;
  border: 1px solid var(--line-black);
  padding-right: 0;
  line-height: 4em;
}

.submitButton:disabled {
  background-color: #999;
  color: #ddd;
  cursor: not-allowed;
}

.submitButton:not(:disabled):hover {
  opacity: 0.8;
}

.displaynone{
  display: none;
}

.henko{
  background-color: var(--backcolor);
  color: #000;
  border: 1px solid var(--line-black);
}

.thankli{
  font-size: 0.85em;
  list-style: none;
  margin-top: 1.3em;
  margin-bottom: 6em;
}

</pre></body></html>