@charset "utf-8";
/* CSS Document */
/*共通の項目*/ :root {
  --main-color: #222d34;
}
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}
.box1200 {
  max-width: 1200px;
  margin: 0 auto;
}
.box960 {
  max-width: 960px;
  margin: 0 auto;
}
.box800 {
  max-width: 800px;
  margin: 0 auto;
}
.box700 {
  max-width: 700px;
  margin: 0 auto;
}
.box600 {
  max-width: 600px;
  margin: 0 auto;
}
article {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: var(--main-color);
}
.content {
  width: calc(100% - 100px);
  max-width: 1000px;
  /*margin: 0 auto;*/
}
.widget--sticky {
  padding-top: calc(78px + 2rem);
  position: sticky; /*親要素にoverflow:hidden;があると効かないので注意*/
  top: 0;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.section-ttl {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.section-ttl span {
  display: block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}
.section-ttl .ja {
  font-size: clamp(18px, 3vw, 16px);
  color: #a7abae;
  line-height: 1.44;
  margin-left: 7px;
}
.section-ttl .en {
  font-size: clamp(32px, 3vw, 27px);
  line-height: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
  .box1200, .box960, .box800, .box700, .box600 {
    width: 95%;
  }
  .content {
    width: 100% !important;
  }
  .widget--sticky {
    position: static;
    width: 100%;
  }
  .section-ttl {
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-ttl span {
    display: block;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .section-ttl .ja {
    margin-left: 0;
    margin-bottom: 4px;
  }
}
/*--------------------------------------------------
 mv
----------------------------------------------------*/
#mv {
  width: 100%;
  height: calc(100vh - 166px);
  min-height: 700px;
  position: relative;
}
#mv h1 {
  position: absolute;
  z-index: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(4rem, 2.113rem + 1.85vw, 5rem);
  letter-spacing: .05em;
  color: #fff;
  top: 30vh;
  left: min(5%, 50px);
}
#mv h1 span:last-of-type {
  margin-left: 20px;
}
#mv .swiper-container {
  width: 100%;
  height: 100%;
}
#mv .swiper-container .swiper-slide {
  line-height: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#mv .swiper-container .swiper-pagination {
  display: inline-block;
  width: 48px;
  left: auto;
  right: 20px;
  bottom: 20px;
}
#mv .swiper-container .swiper-pagination-bullet {
  box-sizing: border-box;
  display: block;
  opacity: 1;
  position: relative;
  transform: scale(.7);
  transition: transform .3s ease;
  width: 48px;
  height: 48px;
  line-height: 24px;
  border-radius: 0;
  margin: 0;
  padding: 13px 0;
  background-color: transparent;
  font-weight: 700;
  text-align: center;
}
#mv .swiper-container .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 20px;
}
#mv .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1);
}
#mv .swiper-container .swiper-pagination-bullet .circle {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.circle1 {
  stroke-dasharray: 152px;
  stroke-dashoffset: 152px;
}
.swiper-pagination-bullet-active .circle {
  transform: scale(1) rotate(-90deg);
}
.swiper-pagination-bullet-active .circle1 {
  animation: sliderPagination 6s linear forwards;
}
.swiper-wrapper .slide01 {
  background: url("../img/top/01.jpg");
}
.swiper-wrapper .slide02 {
  background: url("../img/top/02.jpg");
}
.swiper-wrapper .slide03 {
  background: url("../img/top/03.jpg");
}
/*.bar {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: 0 0;
  width: 100%;
  height: 4px;
  background-color: #fdfe00;
  transition: transform 3s linear;
}*/
@keyframes sliderPagination {
  100% {
    stroke-dashoffset: 0;
  }
}
/*スマホ表示*/
@media (max-width: 768px) {
  #mv {
    height: calc(100vh - 94px); /*ナビとパンくずの高さを引く*/
  }
  .swiper-wrapper .slide01 {
    background: url("../img/top/01_sp.jpg");
  }
  .swiper-wrapper .slide02 {
    background: url("../img/top/02_sp.jpg");
  }
  .swiper-wrapper .slide03 {
    background: url("../img/top/03_sp.jpg");
  }
  #mv h1 {
    width: fit-content;
    top: 30%;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit- transform: translateY(0) translateX(-50%);
    text-align: center;
  }
  #mv h1 span {
    display: block;
    margin: 0 auto;
    line-height: 1.5;
  }
  #mv h1 span:last-of-type {
    margin-left: 0;
  }
}
/*--------------------------------------------------
 profile
----------------------------------------------------*/
#profile {
  width: 100%;
  padding-top: 9vw;
  padding-bottom: 9vw;
  background-color: #f5f5f5;
  background-image: linear-gradient(90deg, #dedede 1px, transparent 1px), linear-gradient(#dedede 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 61px 61px;
}
#profile p {
  line-height: 1.8;
}
#profile .box1200 {
  border: 2px var(--main-color) solid;
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
}
#profile h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: .5rem 50px 1rem;
  border: solid 1px var(--main-color);
  border-top: none;
  border-radius: 0 0 10px 10px;
  ont-family: futura-pt, sans-serif;
  font-weight: bold;
  font-style: italic;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  text-align: center;
}
#profile h2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border: solid 1px var(--main-color);
  border-top: none;
  border-radius: 0 0 15px 15px;
}
#profile .profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding-top: calc(78px + 2rem);*/
  margin-top: 50px;
  margin-bottom: 50px;
}
#profile .profile_text {
  width: 50%;
}
#profile .profile_img {
  width: 45%;
}
/*中央揃えにするためのcss*/
.profile_img picture img {
  display: block;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  border-radius: 500px;
  /*border: 1px solid var(--main-color);*/
}
.profile_text h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.profile_text h3 span {
  margin-left: 20px;
  color: #a7abae;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 2rem;
}
#profile .profile_detail {
  display: flex;
  width: 100%;
  margin-top: 40px;
}
#profile .profile_detail div {
  width: 50%;
  border-top: 1px var(--main-color) dotted;
  border-left: 1px var(--main-color) dotted;
}
#profile .profile_detail h4 {
  width: fit-content;
  border: var(--main-color) 1px solid;
  background-color: var(--main-color);
  color: #fff;
  border-bottom-right-radius: 10px;
  padding: 5px 20px;
  margin-bottom: 15px;
}
#profile .profile_detail ul {
  padding: 5px 10px 5px 20px;
}
/*スマホ表示*/
@media screen and (max-width: 768px) {
  #profile .profile {
    flex-direction: column;
  }
  #profile .profile_text, #profile .profile_img {
    width: 100%;
  }
  .profile_img {
    margin-bottom: 30px;
  }
  .profile_text h2 {
    text-align: center;
  }
  .profile_text h2 span {
    margin-left: 0;
    display: block;
  }
  #profile h3 {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  #profile .profile_detail {
    flex-direction: column;
  }
  #profile .profile_detail div {
    width: 100%;
  }
  #profile .profile_detail .license {
    border-right: none;
  }
  #profile .profile_detail .favorite {
    margin-top: 30px;
  }
}
/*--------------------------------------------------
 works
----------------------------------------------------*/
#works {
  max-width: 1200px;
  width: 85%;
  margin: 50px auto 9vw;
  display: flex;
  justify-content: space-between;
}
#works .wrapper {
  margin-top: 7.8rem;
}
#works a img:hover {
  opacity: 1;
}
#works p {
  line-height: 1.7;
  text-align: left;
}
.sort-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
}
.sort-btn li {
  background: #fff;
  border: var(--main-color) 1px solid;
  border-radius: 100px;
  cursor: pointer;
  padding: 5px 20px;
  margin: 0 10px;
  transition: .3s;
}
.sort-btn li:hover {
  background: var(--main-color);
  color: #fff;
}
.sort-btn li.active { /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
  background: var(--main-color);
  color: #fff;
}
/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
  .sort-btn {
    justify-content: space-between;
  }
  .sort-btn li {
    width: 48%;
    margin: 0 0 10px 0;
    text-align: center;
  }
}
/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative; /*並び替えの基準点を指定*/
}
/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 32%; /*横並びで3つ表示*/
  height: auto;
  margin: .5%;
  z-index: 1;
}
/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}
/*画像の横幅を100%にしてレスポンシブ化*/
.grid img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
.grid-title {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: calc(100% - 10%);
}
.grid-title .label, .grid-title .headline {
  padding: 0 5px;
  background-color: #fff;
  border: 1px solid var(--main-color);
  width: fit-content;
  transition: .3s;
}
.grid-title .label {
  font-size: 1rem;
  border-radius: 5px 5px 0 0;
}
.grid-title .headline {
  font-size: 1.4rem;
  border-radius: 0 5px 5px;
  margin-top: -1px;
}
.item:hover .grid-title .label, .item:hover .grid-title .headline {
  background-color: var(--main-color);
  border: 1px solid #fff;
  color: #fff;
}
/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
  #works {
    width: calc(100% - 20px);
    flex-flow: column wrap;
  }
  .item {
    width: 98%; /*横並びで2つ表示*/
    margin: 1%;
  }
}
/*ローディングが表示されるエリアの設定*/
#infscr-loading {
  width: 100%;
  text-align: center;
  margin: 20px auto;
}
#infscr-loading img {
  width: 30px; /*ローディング画像のサイズ*/
}