@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #4F3E3F; /* RGB */
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic";
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  background-color: #F6EFE7;
  cursor: none;
  overflow-x: hidden;
}
#cursor{
  position: fixed;
  /*丸の大きさと色の指定*/
  background: rgba(171, 144, 139);
  border-radius: 10px;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;/*真ん中にくるようにマイナスマージンで調整*/
  z-index: 9999;/*一番手前に来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  transition: transform 0.2s 
}
#cursor.active{
  transform: scale(4);
  background: rgba(171, 144, 139, 0.6)
}
.none {
  display: none;
}
h2,h4{
  letter-spacing: 0.1em;
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  line-height: 1;
  font-size: 5.4rem;
  color: #AB8B8C;
}
h4{
  font-size: 3rem;
}
h2 span{
  letter-spacing: 0.05em;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-left: 25px;
}
svg, img {
  vertical-align: bottom;
}
li{
  list-style: none;
}
a {
  display: inline-block;
}
/*ページ遷移アニメーション*/
.animation-bg {
  background: #AB8B8C;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  animation-name: PageAnime-fade;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}
@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
} 
/*スクロールアニメーション（下からふわっ）*/
.fadeUpTrigger{
  opacity: 0;
}
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
      opacity: 0;
      transform: translateY(80px);
    }
  to {
      opacity: 1;
      transform: translateY(0);
    }
}
.fadeDownTrigger{
  opacity: 0;
}
.fadeDown{
  animation-name: fadeDownAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeDownAnime{
from {
    opacity: 0;
    transform: translateY(-30px);
  }
to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(max-width: 860px){
  body {
    cursor: auto;
  }
  h2{
    font-size: 3rem;
  }
  h4{
    font-size: 1.8rem;
  }
  h2 span{
    font-size: 1.6rem;
    margin-left: 15px;
  }
  #cursor{
    display: none;
  }
}

/*headerここから----------------------*/
.header{
  width: 90vw;
  margin: 0 auto;
  max-width: 1296px;
}
.header-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1{
  z-index: 1000;
  position: fixed;
  top: 30px;
  left: 5vw; 
}
h1 a{
  text-decoration: none;
  color: #AB8B8C;
  font-family: "Marcellus SC", serif;
  font-size: 2.4rem; 
}
.header-nav__list{
  display: flex;
  justify-content: flex-end;
  column-gap: 50px;
  z-index: 1000;
  position: fixed;
  top: 30px;
  right: 5vw;
}
.header-nav__list li {
  padding: 15px 0;
  line-height: 1;
}
.header-nav__list li a{
  text-decoration: none;
  color: #AB8B8C;
  font-family: "Marcellus SC", serif;
  font-size: 1.8rem;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.header-nav__list li a::after {
  content: attr(data-txt); 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  color: #DF9B9A;
  clip: rect(0,0,200px,0); 
  transition: clip 0.5s linear;
}
.header-nav__list li a:hover::after {
  clip: rect(0,200px,200px,0);
}
/* CONTACT（お仕事依頼） */
.header-nav__list li:last-child {
  padding: 0;
}
.header-nav__list li:last-child a{
  display: flex ;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header-nav__list li:last-child a p:not(.banner)::after {
  content: attr(data-txt); 
  position: absolute;
  width: 100%;
  line-height: 1;
  color: #DF9B9A;
  clip: rect(0,0,200px,0); 
  transition: clip 0.5s linear;
  top: 15px;
  left: 15px;
}
.header-nav__list li:last-child a:hover p:not(.banner)::after,
.header-nav__list li:last-child a:hover p.banner::after{
  clip: rect(0,200px,200px,0);
}
p.banner {
  color: #AB8B8C;
  font-size: 1.4rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.header-nav__list li:last-child a p.banner::after {
  content: attr(data-txt); 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  color: #DF9B9A;
  clip: rect(0,0,200px,0); 
  transition: clip 0.5s linear;
}
/*線が動くアニメーション*/
.box {
  padding: 15px;
  border-radius: 10px;
  position: relative;
  display: block;
  overflow: hidden;
}
.box__line {
  position: absolute;
}
.box__line:nth-child(1),
.box__line:nth-child(4) {
  width: 100%;
  height: 2px;
}
.box__line:nth-child(2),
.box__line:nth-child(5) {
  width: 2px;
  height: 100%;
}
.box__line:nth-child(1) {
  top: 0;
  left: 0;
  background: linear-gradient(to right, transparent, #AB8B8C);
  animation: animate1 4s linear infinite;
}
.box__line:nth-child(2) {
  top: 0;
  right: 0;
  animation: animate2 2s linear infinite;
  animation-delay: 2s;
  background: linear-gradient(to bottom, transparent, #AB8B8C);
}
.box__line:nth-child(4) {
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, transparent, #AB8B8C);
  animation: animate3 4s linear infinite;
}
.box__line:nth-child(5) {
  top: 0;
  left: 0;
  background: linear-gradient(to top, transparent, #AB8B8C);
  animation: animate4 2s linear infinite;
  animation-delay: 2s;
}
.header-nav__list li:last-child a:hover .box__line:nth-child(1){
  background: linear-gradient(to right, transparent, #DF9B9A);
}
.header-nav__list li:last-child a:hover .box__line:nth-child(2){
  background: linear-gradient(to bottom, transparent, #DF9B9A);
}
.header-nav__list li:last-child a:hover .box__line:nth-child(4){
  background: linear-gradient(to left, transparent, #DF9B9A);
}
.header-nav__list li:last-child a:hover .box__line:nth-child(5){
  background: linear-gradient(to top, transparent, #DF9B9A);
}
@keyframes animate1 {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(80%);
  }
}
@keyframes animate2 {
  0% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(80%);
  }
}
@keyframes animate3 {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(-80%);
  }
}
@keyframes animate4 {
  0% {
    transform: translateY(80%);
  }
  100% {
    transform: translateY(-80%);
  }
}
@media(max-width: 860px){
  .header-nav{
    height: 0;
  }
  h1{
    top: 20px;
    left: 30px;
  }
  h1 a{
    font-size: 1.8rem;
    line-height: 1;
  }
  /*  ハンバーガーボタン（通常）*/
  #open-button{
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 15px;
    z-index: 1000;
  }
  #open-button span{
    background: #4F3E3F;
    border-radius: 15px;
    position: absolute;
    left: 0px;
    width: 35px;
    height: 2px;
    display: inline-block;
    z-index: 9999;/*ボタンを最前面に*/
    transition: all .6s;
  }
  #open-button span:nth-of-type(1){
    top: 0px;
  }
  #open-button span:nth-of-type(2){
    top: 10px;
  }
  /*  ハンバーガーボタン（ドロワーメニュー内）*/
  #open-button.active {
    height: 30px;
  }
  #open-button.active span:nth-of-type(1) {
    top: 12px;
    left: 0px;
    transform: rotate(-45deg);
    width: 100%;
  }
  #open-button.active span:nth-of-type(2) {
    top: 12px;
    left: 0px;
    transform: rotate(45deg);
    width: 100%;
  }
  /*  ドロワーメニュー*/
  #header-nav__list{
    opacity: 0;
    display: block;
    display: none;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh; 
    padding: 20px 30px;
    transition: all 0.8s 0.8s; /*閉じる時　*/ 
    box-sizing: border-box;
  }
  #header-nav__list.panelactive{
    opacity: 1;
    display: block; 
    transition: all 1s 0.8s; /*開く時 再生時間/待ち時間 */
    overflow-y: scroll;
  } 
  #header-nav__list.panelactive ul.fadeDown{
    animation-delay: 0.6s;
  }
  .header-nav__list{
    display: block;
    padding: 50px 0 0px;
    position: relative;
    margin: 0 auto;
    width: 300px;
    right: 0;
  }
  .header-nav__list::after{
    content: '';
    position: absolute;
    background-image: url("/img/drawer-img.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    top: 25%;
    right: 0px;
    width: 150px;
    height: 150px;
    animation: lean 4s linear infinite;
  }  
  .header-nav__list li{
    margin-bottom: 40px;
    display: block;
    padding: 0;
  }
  .header-nav__list li:last-child{
    display: inline-block;
  }
  .header-nav__list li a{
    font-size: 2rem;
  }
  .header-nav__list li:last-child a {
    align-items: flex-start;
  }
  .header-nav__sns{
    width: 300px;
    display: flex;
    gap: 30px;
    padding-top: 60px;
    margin: 0 auto;
  }
  .header-nav__sns li a img{
    height: 30px;
    max-width: 40px;
    object-fit: contain;
  }
  /*丸の拡大*/
  .circle-bg{
    position: fixed;
    z-index:99;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(25deg, #F1D4CF, #F6EFE7);
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all 1.2s;/*閉じる時*/
  }
  .circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    transition: all 2s;/*開く時*/
  }
}
@media(max-width: 590px){
  .header-nav__list::after{
    width: 160px;
    height: 160px;
  }
}

/*section-mainimageここから----------------------*/
.main{
  position: relative;
  width: 90vw;
  margin: 0 auto;
  max-width: 1296px;
}
.mainimage{
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  align-items: center;
  margin: 180px auto 0;
  padding-bottom: 80px;
}
.mainimage__text{
  width: 80%;
}
.mainimage__text span{
  color: #DF9B9A;
  font-family: "Marcellus", serif;
  font-size: 6rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

/*タイピング風に出現するアニメーション*/
.TextTyping span {
	display: none;
}
/*文字列後ろの線の設定*/
.TextTyping::after {
 	content: "|";
	animation: typinganime .8s ease infinite;
}
@keyframes typinganime{
	from{
    opacity:0
  }
	to{
    opacity:1
  }
}
/*テキストの動き-じわっと出現-*/
.blur{
	animation-name:blurAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
  animation-delay: 2s;
  opacity: 0;
}
@keyframes blurAnime{
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.mainimage__img.blur{
  animation-delay: 3s;
}
.blurTrigger{
    opacity: 0;
}
.blur-fast{
  animation-name:blurAnime;
	animation-duration: 1.5s;
	animation-fill-mode:forwards;
  animation-delay: 0s;
  opacity: 0;
}

.mainimage__text div.emi-nakanishi{
   margin: 20px 0 40px;
}
div.emi-nakanishi span{
  color: #DF9B9A;
  font-family: "Cherry Bomb One", system-ui;
  letter-spacing: 0.08em;
  font-size: 11rem;
  line-height: 1.2;
}
.portfolio{
  display: block;
  text-align: right;
}
.mainimage__img{
  width: 20%
}
.mainimage__img ul li{
  list-style: none;
}
.mainimage__img ul li img{
  width: 100%;
}
.mainimage__sway img{
  width: 100%;
  margin-top: -50px;
  animation: sway 4s linear infinite;
}
@keyframes sway {
  0% {
    transform: translate(-10%, -5%);
    rotate: 10deg; /* 時計回りに10度回転 */
  }
  25%{
    transform: translate(0, 0);
    rotate: 0deg;
  }
  50%{
    transform: translate(10%, 0%);
    rotate: -10deg; /* 時計回りに10度回転 */
  }
  75%{
    transform: translate(0, 0);
    rotate: 0deg;
  }
  100% {
   transform: translate(-10%, -5%);
   rotate: 10deg; /* 時計回りに10度回転 */
  }
}
/*ドロワー内アニメーション*/
@keyframes lean {
  0% {
    rotate: 10deg; 
  }
  25%{
    rotate: 0deg;
  }
  50%{
    rotate: -10deg; 
  }
  75%{
    rotate: 0deg;
  }
  100% {
    rotate: 10deg; 
  }
}
/*スクロール誘導デザイン*/
.scroll{
  margin: 0 auto;
}
.scroll p{
  text-align: center;
  font-family: "Marcellus", serif;
}
.scroll img{
  display: block;
  margin: 0 auto;
  width: 100px;
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% {
    transform: translateY(0%);
  }
  50%{
    transform: translateY(40%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media(max-width: 1360px){
  .mainimage{
    column-gap: 0;
    align-items: flex-start;
  }
  .mainimage__text{
    width: 75%;
  }
  .mainimage__img{
    width: 25%
  }
  div.emi-nakanishi span:nth-of-type(2){
    text-align: center;
    display: block;
  }
}
@media(max-width: 1030px){
  .portfolio{
    width: 90vw;
  }
}
@media(max-width: 860px){
  #main{
    opacity: 1;
  }
  #main.fade{
    opacity: 0;
  }
  .main{
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .mainimage{
    box-sizing: border-box;
    width: calc(100vw - 60px);
    margin: 150px auto 0;
    padding-bottom: 50px;
  }
  .mainimage__text span{
    font-size: 3rem;
  }
  div.emi-nakanishi{
    margin: 15px 0 20px;
  }
  div.emi-nakanishi span{
    letter-spacing: 0.08em;
    font-size: 8rem;
  }
  div.emi-nakanishi span:nth-of-type(2){
    text-align: center;
    display: block;
  }
  .portfolio{
    width: 100%
  }
  .mainimage__img{
    margin-top: -20px;
  }
  .mainimage__sway{
    transform: translate(0px, -15px);
  }
}
@media(max-width: 730px){
  .portfolio{
    width: calc(100vw - 60px);
  }
}
@media(max-width: 590px){
  .mainimage__text{
    width: 70%;
  }
  div.emi-nakanishi span{
    letter-spacing: 0.08em;
    font-size: 4.8rem;
  }
  .portfolio{
    width: 100%
  }
  .mainimage__img{
    width: 30%
  }
}
@media(max-width: 460px){
  .portfolio{
    width: calc(100vw - 60px);
  }
  .mainimage__sway{
    transform: translate(0px, -25px);
  }
}
@media(max-width: 374px){
  .mainimage__text span{
    font-size: 2rem;
  }
  div.emi-nakanishi span{
    letter-spacing: 0.08em;
    font-size: 3.6rem;
  }
  .mainimage__img{
    margin-top: 0px;
  }
}
/*worksここから----------------------*/
.section-works{
  max-width: 1060px;
  margin: 100px auto 0;
}
.section-works__filtering{
  margin: 80px 0 40px 0;
  display: flex;
  justify-content: flex-end;
}
.section-works__filtering a{
  display: inline-block;
  padding: 0 30px;
  border-left: 1px dotted #4F3E3F;
  font-family: "Marcellus", serif;
  font-size: 2.4rem;
  text-decoration: none;
  color: #4F3E3F;
  transition: all .3s ease;
}
.section-works__filtering a:first-child{
  border: none;
}
.section-works__filtering a.is-active {
  color: #DF9B9A;
}
.section-works__filtering a:hover{
  color: #DF9B9A; 
}
.section-works__list ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
.section-works__list ul li{
  list-style: none;
  opacity: 0;
}
.section-works__list ul li a{
  text-decoration: none;
}
.section-works__list__img{
  overflow: hidden;
  position: relative;
}
.section-works__list__img img{
  width: 100%;
  object-fit: cover;
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.section-works__list__img:hover img{
  transform: scale(1.1); /* 拡大 */
}
.section-works__list__detail{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 10px 0 5px;
}
.section-works__list__category{
  font-family: "Marcellus", serif;
  color: #AB8B8C;
  font-size: 1.4rem;
  display: inline-block;
}
.section-works__list__todo{
  display: inline-block;
  text-align: right;
  color: #989898;
  font-size: 1.2rem;
}
.section-works__list ul li a h3{
  color: #4F3E3F;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}
/* COING SOON */
.section-works__list ul li[data-type="coming-soon"] a {
  pointer-events: none; /* クリックできないようにする */
}
.section-works__list ul li[data-type="coming-soon"] .section-works__list__img::after {
  content: "COMING SOON";
  font-family: "Marcellus", serif;
  font-size: 2.4rem;
  color: #4F3E3F;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
}
@media(max-width: 860px){
  .section-works__filtering{
    margin: 50px 0 30px 0;
  }
  .section-works__filtering a{
    font-size: 1.8rem;
  }
  .section-works__list ul{
    gap: 50px 30px;/*縦50px、横30pxの指定*/
    grid-template-columns: repeat(2, 1fr);
  }
  .section-works__list__category{
    font-size: 1.6rem;
  }
  .section-works__list ul li a h3{
    font-size: 1.6rem;
  }
}
@media(max-width: 590px){
  .section-works{
    margin-top: 80px;
  }
  .section-works__filtering{
    margin: 50px 0 30px 0;
  }
  .section-works__filtering a{
    padding: 0 15px;
    font-size: 1.6rem;
  }
  .section-works__filtering a:first-child{
    padding: 0 15px 0 0;
  }
  .section-works__filtering a:last-child{
    padding: 0 0 0 15px;
  }
  .section-works__list ul{
    grid-template-columns: 1fr;
  }
}
@media(max-width: 374px){
  .section-works__filtering{
    margin: 50px auto 30px auto;
    width: 260px;
  }
  .section-works__filtering a{
    font-size: 1.3rem;
  }
}
/*aboutここから----------------------*/
.section-about{
  margin: 150px auto 0;
  max-width: 1060px;
  position: relative;
}
/*背景の円を回転させる*/
.section-about::before{
  content: "";
  width: 100vw;
  height: 100vw;
  max-width: 450px;
  max-height: 450px;
  background-color: #FCF7F2;
  border-radius: 45% 55% 45% 52% / 56% 45% 55% 45% ;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0px;
  left: -10vw;
  /* animation: rotateCircle 10s linear infinite; */
}
@keyframes rotateCircle{
  0%{ 
    transform:rotate(0);
  }
  100%{ 
    transform:rotate(360deg); 
  }
}
.section-about-wrapper{
  display: flex;
  justify-content: flex-end;
  column-gap: 60px;
  align-items: center;
  padding-top: 50px;
}
.section-about__img{
  width: 32%
}
.section-about__img img{
  width: 100%;
  object-fit: cover;
}
.section-about__text{
  width: 55%;
}
.section-about__text__name{
  font-size: 2.4rem;
  font-weight: 500;
}
.section-about__text__name span{
  font-family: "Marcellus", serif;
  font-weight: 400;
  display: inline-block;
  margin-left: 30px;
  color: #AB8B8C;
}
.section-about__text p{
  margin: 20px 0;
}
.section-about__text__sns{
  display: flex;
  column-gap: 30px;
}
.section-about__text__sns li{
  list-style: none;
}
.section-about__text__sns li a img{
  height: 25px;
  object-fit: contain;
  width: 40px
}
/*ホバー円アニメーション*/
div.more{
  text-align: right;
  margin-left: auto;
}
div.more a{
  text-decoration: none;
  color: #989898;
  display: inline-block;
  width:  150px;
}
div.more-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
svg .outer {
  fill: transparent;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.5s;
}
svg .inner {
  fill: transparent;
  stroke-width: 1;
  stroke: #989898;
}
div.more a:hover .outer {
  stroke: #DF9B9A;
  stroke-width: 1.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
}
/*テキストをなぞるようにアニメーション*/
div.more p.text-progress {
  line-height: 1;
  width: 100px;
  font-family: "Marcellus SC", serif;
  font-size: 2.4rem;
  display: block;
  margin-left: -30px;
  position: relative;
}
.text-progress::after {
  content: attr(data-txt); /*擬似要素のcontentはattrから取得できる*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  color: #DF9B9A;
  clip: rect(0,0,150px,0); /* 要素のどの部分が可視であるかを定義*/
  transition: clip 0.5s linear;
}
div.more a:hover .text-progress::after {
  clip: rect(0,150px,150px,0);
}
@media(max-width: 860px){
  .section-about::before{
    left: -5vw;
    width: 500px;
    height: 500px;
  }
  .section-about-wrapper{
    display: block;
    padding-top: 50px;
  }
  .section-about__img{
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .section-about__text{
    width: 100%;
  }
  .section-about__text p{
    font-size: 1.4rem;
  }
}
@media(max-width: 590px){
  .section-about{
    margin: 100px 0 0;
  }
  .section-about::before{
    left: -35vw;
    width: 450px;
    height: 450px;
  }
  div.more{
    margin-top: 20px;
  }
}
@media(max-width: 374px){
  .section-about::before{
    left: -35vw;
    width: 350px;
    height: 350px;
  }
}

/*studyここから----------------------*/
/* buttonタグ初期設定解除 */
button {
  border: none;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
.section-study{
  margin: 150px auto 0;
  max-width: 1060px;
}
.section-study-wrapper{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.section-study-wrapper h2{
  display: flex;
  align-items: baseline;
}
.section-study-wrapper h2 span{
  display: block;
}
.section-study-wrapper p{
  width: 60%;
}
.section-study__list ul{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;/*縦横30pxの指定*/
}
.section-study__list ul li{
  list-style: none;
  line-height: 1;
}
.section-study__list ul li > button {
  overflow: hidden;
}
.section-study__list ul li img{
  width: 100%;
  object-fit: contain;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.section-study__list ul li:hover img{
  transform: scale(1.1); /* 拡大 */
}
/*モーダル表示*/
/*モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(79,62,63,70%);
	opacity: 0;
	visibility: hidden;
	transition: 0.8s;
  box-sizing: border-box;
  z-index: 1001;
  padding-right: var(--scrollbar-width, 0px);
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: fixed;
/*  上下左右中央に配置*/
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: var(--scrollbar-width, 0px);
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	top: 30px;
  right: 30px;
	width: 40px;
	height: 40px;
  z-index: 1001;
}
.modal-close img{
  width: 100%;
  object-fit: contain;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #F6EFE7;
	padding: 50px 5% 30px;
  border-radius: 3px;
  position: fixed;
  width: 90vw;
  max-width: 1296px;
  height: 90dvh;
  box-sizing: border-box;
  overflow-y: scroll;
  scrollbar-color: #DF9B9A #F6EFE7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal-content li{
  list-style: none;
}
.modal-content h3{
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
/*  wbrタグが効かない*/
  word-break: keep-all;
/*  white-space: pre;*/
}
.modal-content h3 br{
  display: none;
}
.modal-content__detail{
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}
.modal-content__detail li{
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.modal-content__detail li img{
  height: 15px;
  width: 15px;
  object-fit: contain;
  display: inline-block;
}
.modal-content__img{
  display: flex;
  justify-content: space-between;
}
.modal-content__img>li{
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-content__img li img{
  max-height: 320px;
  max-width: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 0px 10px rgba(79, 62, 63, 0.25));
  margin: 0 auto;
}
/* h4が日本語のとき*/
.japanese li h4{
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.modal-content__text{
  padding-top: 40px;
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
}
.modal-content__text p{
  width: 85%;
  font-size: 1.4rem;
}
.modal-content__link{
  padding-top: 30px;
  display: flex;
  justify-content: center;
  column-gap: 100px;
}
.modal-content__link a{
  width: 18px;
  height: 36px;
}
.modal-container:first-of-type .modal_switch-prev,
.modal-container:last-of-type .modal_switch-next {
  opacity: 0;
  pointer-events: none;
}
.modal-content__link a.first{
  opacity: 0;
}
.modal-content__link p{
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.modal-content__link a img{
  width: 100%;
  height: 100%;
}
@media(max-width: 1060px){
  .section-study-wrapper{
    display: block;
  }
  .section-study-wrapper h2{
    margin-bottom: 50px;
  }
  .section-study-wrapper p{
    width: 100%;
  }
  .section-study__list ul{
    grid-template-columns: repeat(4, 1fr);
  }
}
@media(max-width: 1060px){
  .section-study-wrapper p{
    font-size: 1.4rem;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close{
    width: 25px;
    height: 25px;
    top: 20px;
    right: 20px;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content{
    padding: 30px;
    /* 上下中央*/
    transform: translateY(calc((90dvh - 100%) / 2));
  }
  .modal-content h3{
    font-size: 1.8rem;
    line-height: 1.5;
    word-break: keep-all;
    width: 100%;
  }
  .modal-content__detail{
    column-gap: 20px;
    margin-bottom: 20px;
  }
  .modal-content__detail li{
    display: flex;
    column-gap: 10px;
  }
  .modal-content__detail li span{
    font-size: 1.2rem;
    word-break: keep-all;
    line-height: 1;
  }
  .modal-content__img{
    display: block;
  }
  /*縦の時*/
  .modal-content__img>li{
    width: 100%;
    height: auto;
  }
  .modal-content__img li img{
    position: static;
    transform: translateX(0%);
    filter: drop-shadow(0px 0px 3px rgba(79, 62, 63, 0.25));
    max-height: 350px;
    width: auto;
    max-width: 60%;
    margin: 0 auto;
    display: block;
    padding: 5px;
  }
  .japanese li h4{
    font-size: 1.6rem;
  }
  .modal-content__text{
    display: block;
    padding-top: 0px;
  }
  .modal-content__text h4{
    display: none;
  } 
  .modal-content__text p{
    width: 100%;
    font-size: 1.4rem;
  }
  .modal-content__link{
    justify-content: space-between;
    max-width: 255px;
    column-gap: 90px;
    margin: 0 auto;
  }
  .modal-content__link a{
    width: 15px;
    height: 30px;
  }
  .modal-content__link p{
    font-size: 1.6rem;
  }
}
@media(max-width: 730px){
  .section-study__list ul{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 590px){
  .section-study{
    margin: 100px auto 0;    
  }  
  .section-study-wrapper{
    margin-bottom: 30px;
  }
  .section-study__list ul{
    gap: 15px;
  }
  .section-study__list ul{
    grid-template-columns: 1fr 1fr;
  }
  .modal-content h3 br{
    display: block;
  }
  .modal-close{
    width: 20px;
    height: 20px;
  }
  .modal-content{
    padding: 30px;
    height: 90dvh;
    transform: translateY(0);
  }
  .modal-content__detail{
    margin-bottom: 40px;
  }
  .modal-content__img li img{
    padding-top: 20px;
    max-width: 100%;
  }
}

/*TOPへ*/
.top{
  margin: 130px auto 50px;
  display: flex;
  flex-direction: column;
  width: 100px;
}
.top p{
  text-align: center;
  font-family: "Marcellus", serif;
}
.top img{
  display: block;
  margin: 0 auto;
  width: 100px;
  animation: Topscroll 2s ease-in-out infinite;
}
@keyframes Topscroll {
  0% {
    transform: translateY(0%);
  }
  50%{
    transform: translateY(40%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media(max-width: 590px){
  .top{
    margin: 80px auto 30px;
  }
}

/*footerここから----------------------*/
.footer{
  background: linear-gradient(0deg, rgba(233, 166, 166, 0.6) -10%, #F6EFE7);
}
.footer-wrapper{
  width: 90vw;
  margin: 0 auto;
}
.footer-container{
  margin: 0 auto;
  max-width: 1060px;
  border-top: 1px solid #4F3E3F;
}
.footer-contact{
  padding-top: 50px;
}
.footer-contact a{
  text-decoration: none;
  color: #4F3E3F;
  font-size: 4.5rem;
  font-family: "Marcellus", serif;
  letter-spacing: 0.3rem;
  transition: all .3s ease 0s; /* ゆっくり変化させる */
}
.footer-contact a:hover{
  color: #DF9B9A;
}
span.zero{
  font-family: "Montaga", serif;
}
.footer-contact a span.arrows{
  rotate: -45deg;
  display: inline-block;
  translate: 0% 0%; 
  transition: translate 0.3s 0s ease-in-out;
}
.footer-contact a:hover span.arrows{
  translate: 0% -10%; 
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 650px;
  max-width: 100%;
  padding-top: 30px;
}
.footer-recruiting {
  color: #4F3E3F;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  padding: 20px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.footer-recruiting::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
  border: #4F3E3F 1px solid;
  transform: skewX(-10deg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}
.footer-recruiting::after{
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  width: 70px;
  height: 0.5px;
  background: #4F3E3F;
  border-radius: 1px;
  transform: rotate(30deg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}
.footer-recruiting.hovered {
  transform: translateY(-10px);
}
.footer-sns{
  display: flex;
  column-gap: 30px;
}
.footer-sns li{
  list-style: none;
}
.footer-sns li a img{
  object-fit: contain;
  width: 100%;
  height: 35px;
  display: block;
}
.footer__copyright{
  padding: 100px 0 50px;
  text-align: right;
  display: block;
  font-size: 1.4rem;
  font-family: "Marcellus", serif;
}
@media(max-width: 860px){
  .footer-wrapper{
    width: calc(100% - 60px);
    margin: 0;
    padding: 0 30px;
  }
  .footer-contact a{
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
  .footer__copyright{
    font-size: 1.2rem;
  }
  .footer-sns li {
    height: 20px;
  }
  .footer-sns li a img{
    width: 25px;
    height: 20px;
  }
}
@media(max-width: 590px){
  .footer-contact a{
    font-size: 2rem;
  }
  .footer-contact{
    padding-top: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
  }
  .footer-recruiting {
    padding: 10px 15px;
    width: 200px;
    font-size: 1.2rem;
    margin-left: auto;
  }
  .footer-recruiting::after{
    top: -20px;
    left: 20px;
    width: 55px;
    transform: rotate(70deg);
  }
  .footer-recruiting:hover, 
  .footer-recruiting.hovered {
    transform: translateY(-5px);
  }
  .footer__copyright{
    font-size: 1rem;
    padding: 100px 0 20px;
  }
}

/*work00.htmlここから----------------------*/
/*works-detailここから----------------------*/
.works-detail__category.blur-fast, .works-detail__text__link.blur-fast, .banner-detail.blur-fast{
  animation-delay: 0.4s;
}
.works-detail__img.blur-fast{
 animation-delay: 1s; 
}
.works-detail{
  margin: 0 auto;
  padding: 150px 0;
  max-width: 1060px;
}
.works-detail h2{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: #4F3E3F;
  margin-bottom: 20px;
}
.works-detail__category li{
  list-style: none;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
  padding-left: 5px;
}
.works-detail__category li:last-child {
  margin-bottom: 30px;
}
.works-detail__category li a{
  color: #4F3E3F;
}
.works-detail__img{
  width: 100%;
}
.works-detail__img img {
  max-width: 800px;
  margin: 0 auto;
  display: block;
  width: 100%;
  object-fit: contain;
}
.works-detail__img:not([data-type="website"]) img{
  max-height: 500px;
  filter: drop-shadow(0px 0px 3px rgba(79, 62, 63, 0.25));
}
.works-detail__text{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
/* お題のリンク・別ver. */
.works-detail__text__link{
  display: flex;
  align-items: center;
  column-gap: 30px;
  padding: 30px 0 0;
}
a.another-btn{
  text-decoration: none;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #4F3E3F;
  padding: 0;
  text-align: center;
  line-height: 50px;
}
.works-detail__text a{
  color: #4F3E3F;
  display: inline-block;
}
.works-detail__text p{
  padding-top: 25px;
}
.works-detail__text__details {
  padding-top: 30px;
}
.works-detail__text__details li{
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin-bottom: 20px;
}
.works-detail__text__details li:last-child {
  margin-bottom: 0;
}
.banner-detail li{
  margin-bottom: 0px;
}
.works-detail__text__details li:first-child{
  align-items: flex-start;
}
.works-detail__text__details li img{
  width: 25px;
  height: 20px;
  object-fit: contain;
}
.works-detail__text__details li:first-child img{
  padding-top: 5px;
} 
.banner-theme {
  padding-top: 30px;
}
.banner-theme .section-overview__list{
  margin-bottom: 20px;
}
.banner-theme .section-overview__list dt{
  width: 30%;
}
.banner-theme .section-overview__list dd{
  width: 70%;
}

@media(max-width: 860px){
  .works-detail{
    padding: 100px 0;
  }
  .works-detail h2{
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .works-detail__category li{
    font-size: 1.2rem;
  }
  .works-detail__img{
    margin: 30px auto 0;
  }
  .works-detail__text p{
    font-size: 1.4rem
  }
  .works-detail__text__details li{
    column-gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.4rem;
  }
  .works-detail__text__details li img{
    padding-top: 3px;
  }
  .works-detail__text__details li:first-child img{
    padding-top: 3px;
  }
  .works-detail__text__details li span{
    max-width: calc(100% - 150px);
    word-break: break-all;
  }
  .banner-theme .section-overview__list{
    margin-bottom: 20px;
    display: flex;
  }
}
@media(max-width: 590px){
  .works-detail__text__link{
    display: block;
  }
  .works-detail__text a{
    font-size: 1.4rem;
  }
  .works-detail__text__link a:first-child{
    margin-right: 20px;
  }
  .banner-theme .section-overview__list{
    display: block;
  }
  .banner-theme .section-overview__list dt{
    width: 100%;
    margin-bottom: 0;
  }
  .banner-theme .section-overview__list dd{
    width: 100%;
  }
}


/*section-proposalここから----------------------*/
.section-proposal{
  margin: 0 auto;
  padding-bottom: 150px;
  max-width: 1060px;
}
.slick-works{
  position: relative;
  margin-bottom: 80px;
}
.slick-works li img, 
.section-proposal video{
  padding-bottom: 5px;
  padding-top: 50px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0px 0px 3px rgba(79, 62, 63, 0.25));
}
.slick-works li p{
  padding-top: 20px;
}
.slide-arrow{
  position: absolute;
  width: 50px;
  height: 50px;
  object-fit: cover;
  top: calc(100% + 25px);
}
.prev-arrow{
  left: calc(50% - 75px);
}
.next-arrow{
  right: calc(50% - 75px);
}
@media(max-width: 860px){
  .section-proposal{
    padding-bottom: 100px;
  }
  .slick-works{
    margin-bottom: 60px;
  }
  .slick-works li img, 
  .section-proposal video{
    padding-top: 30px;
    max-width: 500px;
  }
  .slide-arrow{
    width: 40px;
    height: 40px;
    top: calc(100% + 15px);
  }
  .prev-arrow{
    left: calc(50% - 55px);
  }
  .next-arrow{
    right: calc(50% - 55px);
  }
}

/*section-overviewここから----------------------*/
.section-overview{
  margin: 0 auto;
  max-width: 1060px;
  padding-bottom: 150px;
}
.section-overview-wrapper{
  padding-top: 80px;
}
.section-overview__list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.section-overview__list:last-of-type {
  margin-bottom: 0;
}
.section-overview__list dt{
  font-size: 1.8rem;
  font-weight: 600;
  width: 20%;
}
.section-overview__list dd{
  width: 80%;
}
.section-overview__list__color{
  padding-top: 40px;
}
.section-overview__list__color img{
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(0px 0px 3px rgba(79, 62, 63, 0.25));
}
.section-overview__list__letter{
  padding-left: 20px;
  padding-top: 30px;
  display: flex;
  gap: 30px 100px;
  flex-wrap: wrap;
}
.section-overview__list__letter img{
  height: 45px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}
.section-overview__list__logo{
  padding-left: 20px;
  padding-top: 40px;
  display: flex;
  column-gap: 5%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}
.section-overview__list__logo img{
  width: 20%;
  object-fit: contain;
}
.section-overview__list__logo p{
  width: 75%;
  display:flex; 
  align-items: flex-start;  
  flex-direction: column;
  justify-content: center;
}
.section-overview__list__logo p span{
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
@media(max-width: 860px){
  .section-overview{
    padding-bottom: 100px;
  }
  .section-overview-wrapper{
    padding-top: 30px;
  }
  .section-overview__list{
    display: block;
    margin-bottom: 30px;
  }
  .section-overview__list dt{
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 10px;
  }
  .section-overview__list dd{
    width: 100%;
    font-size: 1.4rem;
  }
  .section-overview__list__color {
    padding-top: 20px;
  }
  .section-overview__list__letter {
    padding-left: 0;
  }
}
@media(max-width: 590px){
  .section-overview__list__logo{
    padding-left: 0px; 
    display: block;
  }
  .section-overview__list__logo img{
    width: 50%;
    margin: 0 auto;
    display: block;
  }
  .section-overview__list__logo p{
    width: calc(100% - 20px);
    padding-top: 10px;
  }
}

/*section-designここから----------------------*/
.section-design{
  margin: 0 auto 150px;
  max-width: 1060px;
}
.section-design-wrapper{
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  column-gap: 5%;
}
.section-design__pc{
  width: 70%;
}
.section-design__sp{
  width: 25%;
}
.section-design__pc img, .section-design__sp img{
  width: 100%;
  filter: drop-shadow(0px 0px 3px rgba(79, 62, 63, 0.25));
  display: block;
  margin-bottom: 30px;
}
img.drawer-pc{
  width: 80%;
  margin: 0 auto 30px;
}
img.sp-all{
  display: none;
}
@media(max-width: 860px){
  .section-design{
    margin: 0 auto 100px;
  }
  .section-design-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .section-design__pc, .section-design__sp{
    width: 100%;
  }
  .section-design__sp{
    padding-top: 30px;
  }
  .section-design__pc img, .section-design__sp img, img.drawer-pc{
    margin-bottom: 15px;
  }
  .section-design__sp img{
    width: 100%;
    object-fit: contain;
    height: auto;
  }
  .section-design__sp img{
    display: none;
  }
  .section-design__sp img:last-child{
    display: block;
  }
}

/*section-otherworksここから----------------------*/
.section-otherworks{
  margin: 0 auto 150px;
  max-width: 1060px;
}
.section-otherworks__list{
  padding-top: 100px;
}
.section-otherworks__list ul{
  width: calc(100% + 40px);
  transform: translateX(-20px);
  margin-bottom: 30px;
}
.section-otherworks__list ul li{
  width: calc((100% - 80px) / 3);
  padding: 0 20px;
}
.section-otherworks__list ul li a{
  display: block;
  overflow: hidden;
}
.section-otherworks__list ul li a img{
  width: 100%;
  object-fit: cover;
  height: auto;
  transition: transform .6s ease; 
}
.section-otherworks__list ul li a img:hover{
  transform: scale(1.1); /* 拡大 */
}
.slick-otherworks .slide-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  object-fit: cover;
  top: -80px;
}
.slick-otherworks .next-arrow{
  right: 20px;
}
.slick-otherworks .prev-arrow{
  left: calc(100% - 150px);
}
.section-otherworks__list .more a{
  width: 190px;
}
.section-otherworks__list .more a p{
  width: 152px;
}
@media screen and (max-width: 880px) {
  .section-otherworks{
    margin: 0 auto 100px;
  }
}
@media(max-width: 590px){
  .slick-otherworks .slide-arrow {
    top: -70px;
  }
}

/*about.htmlここから----------------------*/
/*section-aboutここから----------------------*/
.section-about__text__detail p{
  margin-bottom: 0;
}
.section-about__text__detail p span{
  font-weight: 600;
}

/*section-strengthsここから----------------------*/
.section-strengths{
  margin: 150px auto;
  max-width: 1060px; 
}
.section-strengths h2{
  margin-bottom: 60px;
}
.section-strengths-wrapper{
  display: flex;
  justify-content:space-between;
  column-gap: 60px;
}
.section-strengths__strengths{
  width: calc((100% - 120px) / 3);
  position: relative;
}
.section-strengths__strengths-title{
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-strengths__strengths-title::before{
  display: block;
  content: '';
  padding-top: 100%;
}
.section-strengths__strengths-title::after{
  font-size: 7rem;
  color: #DF9B9A;
  position: absolute;
  top: 30px;
  left: 20px;
  line-height: 1;
  font-family: "Marcellus SC", serif; 
}

.first::after{
  content: "1";
}
.second::after{
  content: "2";
}
.third::after{
  content: "3";
}

.sp_only{
  display: none;
}
/*円アニメーション*/
.section-strengths__strengths-title svg circle.circle{
  fill: transparent;
  stroke-dashoffset: 800; /*パスの長さ*/
  stroke-dasharray: 0;/*  線の間隔*/
  transition: stroke-dashoffset 1.5s;
}
.section-strengths__strengths-title svg circle.circle-go{
  stroke: #AB8B8C;
  stroke-width: 1.5;
  stroke-dasharray: 1000;/*  線の間隔*/
  stroke-dashoffset: 0; /*線の位置*/
}
.second svg circle.circle{
  transition-delay: 0.3s
}
.third svg circle.circle{
  transition-delay: 0.6s
}
.section-strengths__strengths-title h3{
  position: absolute;
  font-size: 2rem;
  color: #AB8B8C;
  font-weight: 600;
}
.section-strengths__strengths p{
  padding-top: 30px;
}
@media(max-width: 1070px){
  .sp_only{
    display: block;
  }
  .pc_only{
    display: none;
  }
  .section-strengths__strengths-title::after{
    font-size: 5rem;
    top: 20px;
  }
  .section-strengths__strengths-title h3{
    font-size: 1.8rem;
  }
}
@media(max-width: 860px){
  .section-strengths{
    margin: 100px auto;
  }
  .section-strengths-wrapper{
    display: block;
    margin: 0 auto;
  }
  .section-strengths__strengths{
    width: 100%;
    margin-bottom: 50px;
  }
  .section-strengths__strengths-title{
    width: 300px;
    margin: 0 auto;
  }
  .section-strengths__strengths-title::before{
    padding-top: 0;
  }
  .section-strengths__strengths-title::after{
    font-size: 6rem;
    top: 20px;
    left: 30px
  }
  .sp_only{
    display: none;
  }
  .pc_only{
    display: block;
  }
  .section-strengths__strengths p{
    padding-top: 20px;
    max-width: 450px;
    margin: 0 auto;
  }  
}
@media(max-width: 374px){
  .sp_only{
  display: block;
  }
  .pc_only{
    display: none;
  }
  .section-strengths__strengths-title{
    width: 250px;
  }
  .section-strengths__strengths-title::after{
    font-size: 5rem;
    top: 20px;
    left: 20px
  }
  .section-strengths__strengths-title h3{
    font-size: 1.6rem;
  }
}

/*section-biographyここから----------------------*/
.section-biography{
  margin: 0px auto 150px;
  max-width: 1060px; 
}
.section-biography-wrapper{
  padding-top: 80px;
  padding-left: 20px
}
.section-biography__time{
  display: flex;
  justify-content: space-between;
  column-gap: 75px;
  position: relative;
}
.section-biography__time p.time{
  font-size: 2rem;
  line-height: 1;
  width: calc(15% - 75px);
}
.section-biography__time__life-line{
  width: 1px;
  height: auto;
  background: #4F3E3F;
}
.section-biography__time__life-episode{
  width: calc(85% - 76px);
  padding-bottom: 50px;
}
.section-biography__time__life-episode span{
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  position: relative;
  line-height: 1;
  margin-bottom: 20px;
}
.section-biography__time__life-episode span::before{
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background: #AB8B8C;
  display: block;
  position: absolute;
  left: -88px;
}
.section-biography__time__life-episode p{
  font-size: 1.8rem;
  padding-left: 30px; 
}
.section-biography__time>span{
  font-size: 2rem;
  font-family: "Marcellus", serif;
  color: #AB8B8C;
  position: absolute;
  top: calc(100% + 10px);
  left: 15%;
  left: calc(15% - 75px);
}
@media(max-width: 860px){
  .section-biography-wrapper{
    padding-top: 60px;
    padding-left: 10px
  }
  .section-biography__time{
    column-gap: 25px;
  }
  .section-biography__time p.time{
    font-size: 1.8rem;
    margin-bottom: 10px;
    width: calc(15% - 25px);
  }
  .section-biography__time__life-episode{
    width: calc(85% - 26px);
    padding-bottom: 50px;
  }  
  .section-biography__time__life-episode span{
    font-size: 1.8rem;
  }
  .section-biography__time__life-episode span::before{
    left: -37px;
  }
  .section-biography__time__life-episode p{
    padding-left: 20px; 
  }
  .section-biography__time>span{
    left: calc(15% - 65px);
    font-size: 1.8rem;
  }
}
@media(max-width: 690px){
  .section-biography-wrapper{
    padding-left: 0px
  }
  .section-biography__time{
    column-gap: 15px;
  }
  .section-biography__time p.time{
    font-size: 1.6rem;
    width: calc(20% - 15px);
  }
  .section-biography__time__life-episode{
    width: calc(80% - 16px);
  } 
  .section-biography__time__life-episode span{
    font-size: 1.6rem;
  }
  .section-biography__time__life-episode span::before{
    width: 15px;
    height: 15px;
    left: -23px;
  }
  .section-biography__time__life-episode p{
    font-size: 1.4rem; 
  }
  .section-biography__time>span{
    left: calc(20% - 65px);
  }
}
@media(max-width: 430px){
 .section-biography__time p.time{
    font-size: 1.2rem;
  } 
  .section-biography__time__life-episode span{
    font-size: 1.4rem;
  }
  .section-biography__time__life-episode span::before{
    width: 10px;
    height: 10px;
    left: -20.5px;
  }
  .section-biography__time__life-episode p{
    font-size: 1.2rem; 
  } 
}
@media(max-width: 370px){
  .section-biography__time{
    column-gap: 5px;
  }
  .section-biography__time p.time{
    width: calc(20% - 2px);
  }
  .section-biography__time__life-episode{
    width: calc(80% - 3px);
  }
  .section-biography__time__life-episode span::before{
    left: -10.6px;
  }
  .section-biography__time>span{
    left: calc(20% - 55px);
    font-size: 1.4rem;
  }
}


/*追従パーツここから----------------------*/
.header-bg{
  width: 100%;
  height: 115px;
  background: #F6EFE7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
}
@media(max-width: 860px){
  .header-bg{
    height: 66px;
  }
}

