@charset "UTF-8";
/*
Theme Name: to-scope
Author: Y.Nosaka
Version: 3.0-202403
*/
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body * {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  font-family: "Inter", sans-serif;
}

.c-rounded-btn {
  display: block;
  text-decoration: none;
  color: grey;
  display: block;
  line-height: 30px;
  margin: 5px 10px 5px 0;
  background-color: #EDE9DD;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: 0.5s;
}

.c-square-btn {
  display: block;
  text-decoration: none;
  letter-spacing: 0.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  border: 1px solid #8C8572;
  text-decoration: none;
  color: #8C8572;
  transition: 0.5s;
}

/* ------------------------- */
/* Layout : header */
/* ------------------------- */
.l-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.l-header .l-header__logo {
  display: flex;
  padding: 5px 0;
}
.l-header .l-header__logo-img {
  width: 38px;
  padding: 3px;
  margin-right: 10px;
}
.l-header .l-header__logo-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-header .l-header__logo-text {
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.2em;
  margin-right: 20px;
}
.l-header .l-header__logo-text a {
  text-decoration: none;
  color: gray;
  font-family: "Josefin Sans", sans-serif;
}
.l-header .l-header__menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.l-header .l-header__menu .l-header__menu-L {
  display: flex;
}
.l-header .l-header__menu .l-header__menu-L ul {
  display: flex;
  margin-left: 20px;
}
.l-header .l-header__menu .l-header__menu-L ul li {
  list-style-type: none;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0;
}
.l-header .l-header__menu .l-header__menu-L ul li:last-of-type {
  border-right: none;
}
.l-header .l-header__menu .l-header__menu-L ul li a {
  text-decoration: none;
  color: #7E7E7E;
  font-size: 14px;
  letter-spacing: 0.2em;
  display: block;
  padding: 8px 20px 20px 20px;
  transition: 0.5s;
}
.l-header .l-header__menu .l-header__menu-L ul li a:hover {
  background-color: #F5F1E8;
}
.l-header .l-header__menu .l-header__menu-R {
  display: flex;
}
.l-header .l-header__menu .l-header__menu-R-storebtn:hover {
  background-color: #E8DFC8;
  color: rgb(0, 0, 0);
}
.l-header .l-header__menu .l-header__menu-R-storebtn:hover .fa-shopping-cart {
  color: rgb(0, 0, 0);
}
.l-header .l-header__menu .l-header__menu-R-storebtn .fa-shopping-cart {
  margin-right: 10px;
  color: #BCB5A4;
  transition: 0.5s;
}
.l-header .l-header__menu .l-header__menu-R-insta .fa-instagram {
  color: #BCB5A4;
  font-size: 26px;
  line-height: 30px;
  margin: 10px;
  transition: 0.5s;
}
.l-header .l-header__menu .l-header__menu-R-insta .fa-instagram:hover {
  color: rgb(0, 0, 0);
}
.l-header__sp {
  display: none;
}
.l-header__hm {
  display: none;
}

/* wordpressのメニューにて設定されたクラス名の反映 */
.home::after {
  content: "Home";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  font-size: 12px;
  color: #BCB5A4;
  letter-spacing: 0.2em;
}

.works::after {
  content: "Works";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  font-size: 12px;
  color: #BCB5A4;
  letter-spacing: 0.2em;
}

.studio::after {
  content: "Studio";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  font-size: 12px;
  color: #BCB5A4;
  letter-spacing: 0.2em;
}

.make::after {
  content: "Make";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  font-size: 12px;
  color: #BCB5A4;
  letter-spacing: 0.2em;
}

.shop::after {
  content: "Shops";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  font-size: 12px;
  color: #BCB5A4;
  letter-spacing: 0.2em;
}

/* responsive : tab & sp （共通） */
@media screen and (max-width: 768px) {
  .l-header .l-header__menu {
    display: none;
  }
  .l-header .l-header__sp {
    position: static;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .l-header .l-header__sp-L .l-header__sp-logo {
    display: flex;
  }
  .l-header .l-header__sp-L .l-header__sp-logo-img {
    width: 30px;
    margin: 10px 0;
  }
  .l-header .l-header__sp-L .l-header__sp-logo-img img {
    width: 100%;
  }
  .l-header .l-header__sp-L .l-header__sp-logo-text {
    margin-left: 10px;
    font-size: 1em;
    letter-spacing: 0.1em;
    line-height: 54px;
  }
  .l-header .l-header__sp-L .l-header__sp-logo-text a {
    text-decoration: none;
    color: gray;
    font-family: "Josefin Sans", sans-serif;
  }
  .l-header .l-header__sp-R {
    display: flex;
    width: 40%;
    justify-content: right;
  }
  .l-header .l-header__sp-R svg {
    display: inline-block;
    width: 20%;
  }
  .l-header .l-header__hm {
    /* 初期設定は非表示 */
    /* not-inviewが外れたら表示 */
    display: block;
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(217, 213, 203, 0.7);
    height: 430px;
    padding: 5px;
    transition: 0.5s;
  }
  .l-header .l-header__hm.not-inview {
    top: -430px;
  }
  .l-header .l-header__hm ul {
    width: 80%;
    margin: 0 auto;
  }
  .l-header .l-header__hm ul li {
    list-style-type: none;
    margin-left: 0;
  }
  .l-header .l-header__hm ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: gray;
    font-size: 0.8em;
    font-weight: bold;
    background-color: #EDE9DD;
    border-bottom: 2px solid #aaa392;
    margin-bottom: 5px;
    transition: 0.5s;
  }
  .l-header .l-header__hm ul li a:hover {
    background-color: #d3cfc3;
  }
  .l-header .l-header__hm-close {
    text-align: right;
    margin: 15px 0px 15px auto;
    color: white;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    font-weight: bold;
    border: 1px solid white;
    border-radius: 10px;
  }
  .l-header .l-header__hm-close .fa-times {
    display: block;
    padding-right: 10px;
  }
  .l-header .l-header__hm-sns {
    display: flex;
    align-items: center;
    background-color: #EDE9DD;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 3px 15px;
    border-bottom: 2px solid #aaa392;
    border-radius: 15px;
    margin: 10px;
    margin-left: 10%;
    position: relative;
  }
  .l-header .l-header__hm-sns p {
    font-size: 15px;
    color: #867e6a;
    line-height: 35px;
  }
  .l-header .l-header__hm-sns a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* ------------------------- */
/* footer */
/* ------------------------- */
footer {
  padding: 50px 100px 30px 100px;
  background-color: rgba(218, 217, 217, 0.6235294118);
}

.footer-wrap {
  display: flex;
}

.footer-content {
  width: 30%;
  margin-right: 5%;
}

.footer-content h3 {
  font-size: 16px;
  color: grey;
  margin-bottom: 15px;
}

.footer-content p, li {
  font-size: 14px;
  color: grey;
}

.footer-content ul {
  margin: 15px;
}

.footer-content:nth-of-type(3n) {
  margin-right: 0;
}

.contact-info {
  margin: 15px;
}

.contact-info p {
  line-height: 30px;
}

.copyright {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.copyright p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.return-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
}

.return-btn-wrap {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: grey;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}

@media screen and (max-width: 480px) {
  footer {
    padding: 30px;
  }
  .footer-wrap {
    display: block;
  }
  .footer-content {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-content p, li {
    margin-left: 10px;
  }
}
.fade-in {
  opacity: 0;
}

.loading {
  background-color: #EDE9DD;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: center;
  padding-top: 50vh;
  color: #aaa392;
  transition: 0.5s;
}
.loading .loadingWrapper {
  margin: 5px auto;
  width: 55px;
  height: 40px;
  display: flex;
}
.loading .loadingWrapper div {
  width: 8px;
  height: 100%;
  margin-right: 3px;
  background-color: #aaa392;
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.loading .loadingWrapper div:nth-child(1) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.loading .loadingWrapper div:nth-child(2) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.loading .loadingWrapper div:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.loading .loadingWrapper div:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.loading .loadingWrapper div:nth-child(5) {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loading {
  0%, 100% {
    transform: scaleY(0.4);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes loading {
  0%, 100% {
    transform: scaleY(0.4);
  }
  50% {
    transform: scaleY(1);
  }
}
/* ------------------------- */
/* Project : index */
/* ------------------------- */
.p-index__catch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 70px;
  padding-top: 40px;
  text-align: center;
}
.p-index__catch .p-index__catch-logo .p-index__catch-logo-wrap {
  width: 90px;
  margin: 0 auto;
  display: flex;
}
.p-index__catch .p-index__catch-logo .p-index__catch-logo-wrap svg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-name: kf-rotate-logo;
          animation-name: kf-rotate-logo;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars {
  margin-bottom: 5px;
  opacity: 0;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate {
  opacity: 1;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char {
  display: inline-block;
  margin-right: 8px;
  font-size: 48px;
  margin-bottom: 5px;
  margin-top: 25px;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Josefin Sans", sans-serif;
  -webkit-animation-name: kf-char-animation;
          animation-name: kf-char-animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(1) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(2) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(3) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(4) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(6) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(7) {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(8) {
  -webkit-animation-delay: 0.64s;
          animation-delay: 0.64s;
}
.p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char:nth-child(9) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}
.p-index__catch-text {
  letter-spacing: 0.2em;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 45px;
}

/* responsive : sp */
@media screen and (max-width: 480px) {
  .p-index__catch {
    margin-top: 40px;
  }
  .p-index__catch .p-index__catch-logo {
    padding-top: 0px;
  }
  .p-index__catch .p-index__catch-logo .p-index__catch-logo-wrap {
    width: 70px;
  }
  .p-index__catch .p-index__catch-logo .p-index__catch-chars {
    margin: 15px 0;
  }
  .p-index__catch .p-index__catch-logo .p-index__catch-chars.animate .char {
    margin: 0 3px 0 0;
    font-size: 2.3rem;
  }
  .p-index__catch-text {
    margin-bottom: 30px;
    font-size: 0.1em;
  }
}
@-webkit-keyframes kf-rotate-logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes kf-rotate-logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes kf-char-animation {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kf-char-animation {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-index__fv {
  background-color: #F5F1E8;
  padding: 80px;
  position: relative;
}
.p-index__fv .p-index__fv-img {
  width: 50vw;
  min-width: 400px;
  margin-left: auto;
  position: absolute;
  top: 80px;
  right: 80px;
}
.p-index__fv .p-index__fv-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__fv .p-index__fv-top {
  position: relative;
  margin-top: 80px;
}
.p-index__fv .p-index__fv-top .p-index__fv-catchcopy {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.8em;
  line-height: 55px;
  margin-top: 5px;
  margin-left: 20px;
}
.p-index__fv .p-index__fv-top .p-index__fv-catchcopy span {
  padding-bottom: 10px;
  position: relative;
}
.p-index__fv .p-index__fv-top .p-index__fv-catchcopy span.line-animation::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background: linear-gradient(to right, #8C8572, #EDE9DD);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation-name: kf-fv-catchcopyline-animation;
          animation-name: kf-fv-catchcopyline-animation;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-index__fv .p-index__fv-top .p-index__fv-catchcopy-sp {
  display: none;
}
.p-index__fv .p-index__fv-top .p-index__fv-text {
  width: 70%;
  max-width: 500px;
  min-width: 400px;
  margin-top: 70px;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.05);
}
.p-index__fv .p-index__fv-top .p-index__fv-text p {
  margin: 20px 0;
  line-height: 30px;
  font-size: 16px;
  letter-spacing: 0.3em;
}
.p-index__fv .p-index__fv-detail-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.p-index__fv .p-index__fv-detail-btn a:hover {
  background-color: #EDE9DD;
}

.p-index__slider {
  width: 100%;
}
.p-index__slider .swiper-slide img {
  width: 100%;
}

@-webkit-keyframes kf-fv-catchcopyline-animation {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}

@keyframes kf-fv-catchcopyline-animation {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
/* responsive : sp  */
@media screen and (max-width: 480px) {
  .p-index__fv {
    padding: 30px;
  }
  .p-index__fv .p-index__fv-img {
    min-width: 0;
    width: 75vw;
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .p-index__fv .p-index__fv-top .p-index__fv-catchcopy {
    display: none;
  }
  .p-index__fv .p-index__fv-top .p-index__fv-catchcopy-sp {
    display: block;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.4em;
    line-height: 50px;
    margin-left: 0;
  }
  .p-index__fv .p-index__fv-top .p-index__fv-catchcopy-sp span {
    padding-bottom: 10px;
    position: relative;
  }
  .p-index__fv .p-index__fv-top .p-index__fv-catchcopy-sp span.line-animation::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    background: linear-gradient(to right, #8C8572, #EDE9DD);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-animation-name: kf-fv-catchcopyline-animation;
            animation-name: kf-fv-catchcopyline-animation;
    -webkit-animation-duration: 3.5s;
            animation-duration: 3.5s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .p-index__fv .p-index__fv-top .p-index__fv-text {
    min-width: 0;
    width: 100%;
    padding: 10px 20px;
    margin-top: 20px;
  }
  .p-index__fv .p-index__fv-top .p-index__fv-text p {
    line-height: 25px;
    font-size: 1em;
    letter-spacing: 0.1em;
  }
  .p-index__fv .p-index__fv-detail-btn {
    margin-top: 20px;
  }
}
.work {
  padding: 70px 100px 20px;
}

.index-title {
  text-align: center;
  color: #E3DFD3;
  font-size: 72px;
  letter-spacing: 0.1em;
  font-family: "Literata", serif;
  margin-bottom: 60px;
}

.works-list {
  display: flex;
  margin-bottom: 50px;
  transition: 0.5s;
}

.works-list:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.works-info {
  width: 55%;
  padding: 20px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
}

.works-info:nth-of-type(2n) {
  background-image: url("img/natural-bg2.png");
  background-position: center 10px;
}

.works-info:nth-of-type(1) {
  background-image: url("img/natural-bg.png");
}

.works-list:nth-of-type(2n) .works-info {
  padding: 20px 40px 20px 0;
}

.works-info h3 {
  font-size: 35px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  border-bottom: 1px solid #E3DFD3;
}

.works-img-wrap {
  width: 45%;
}

.works-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-text p {
  line-height: 50px;
}

.works-price {
  margin: 15px 0;
}

.price-text {
  font-size: 25px;
}

.tax-text {
  font-size: 15px;
  color: gray;
}

.works-price p {
  line-height: 40px;
  color: rgba(0, 0, 0, 0.6);
}

.works-btn-container {
  display: flex;
  justify-content: center;
}

.works-btn {
  margin: 30px 0;
}

.works-btn a {
  text-decoration: none;
  color: #8C8572;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 40px;
  padding: 0px 80px;
  border-radius: 40px;
  box-shadow: 1px 4px 9px #8C8572;
  background-color: #F4EFE2;
  transition: 0.5s;
}

.works-btn a:hover {
  background-color: #E8DFC8;
}

@media screen and (max-width: 780px) {
  .work {
    padding: 50px 30px;
  }
  .index-title {
    font-size: 48px;
    margin-bottom: 30px;
  }
  .works-list {
    display: block;
  }
  .works-list:nth-of-type(2n) .works-info {
    padding: 20px;
  }
  .works-img-wrap {
    width: 100%;
  }
  .works-info {
    width: 100%;
    padding: 20px;
    background-size: 100%;
  }
  .works-info:nth-of-type(2n) {
    background-image: url("img/natural-bg2.png");
    background-position: center 30px;
    background-size: 70vw;
  }
  .works-info h3 {
    font-size: 28px;
  }
  .works-text p {
    line-height: 40px;
  }
  .works-list:nth-of-type(2n) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 440px) {
  .works-info:nth-of-type(2n) {
    background-position: center 90px;
    background-size: 100%;
  }
}
.news {
  width: 70%;
  margin: 0 auto 100px;
  padding: 10px 50px;
}
.news .news-title {
  color: #d8d3c5;
  font-size: 48px;
  letter-spacing: 0.1em;
  font-family: "Literata", serif;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.news .news-title::after {
  content: "";
  width: 120px;
  height: 4px;
  border-radius: 4px;
  background-color: #d8d3c5;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.news .news-link {
  text-decoration: none;
  color: #000;
}
.news dl {
  display: flex;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid lightgray;
  transition: 0.5s;
  position: relative;
}
.news dl:hover {
  background-color: #E3DFD3;
}
.news dl dd {
  margin-right: 30px;
  padding: 20px;
}
.news dl dt {
  flex-grow: 1;
  padding: 20px;
}
.news dl dt a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.news dl .news-arrow {
  width: 50px;
  height: auto;
}
.news dl .news-arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(0, 0, 0, 0.55);
  border-right: 3px solid rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 780px) {
  .news {
    width: 100%;
    padding: 0 5%;
  }
  .news .news-title {
    font-size: 36px;
  }
  .news dl {
    display: block;
    padding: 10px;
  }
  .news dl dd {
    padding: 0;
    margin-bottom: 10px;
  }
  .news dl dt {
    padding: 0;
    margin-right: 50px;
  }
}
.creator {
  background-color: #F5F1E8;
  padding: 60px 100px;
}
.creator .detail-btn {
  display: flex;
  justify-content: center;
}
.creator .detail-btn a:hover {
  background-color: #EDE9DD;
}

.creator-wrap {
  display: flex;
  margin-bottom: 50px;
}

.creator-img-wrap {
  width: 50%;
  display: flex;
  justify-content: center;
}

.creator-img {
  width: 370px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin: 15px auto;
}

.creator-info {
  width: 50%;
}

.creator-info h4 {
  margin: 15px 0;
  font-weight: normal;
}

.creator-name {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 0.3em;
}

.creator-history {
  border-top: 1px solid #d8c28c;
  border-bottom: 1px solid #d8c28c;
  margin-bottom: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
}

.creator-history p {
  line-height: 30px;
  position: relative;
}

.creator-history p::before {
  content: "▼";
  font-size: 10px;
  color: #ddc381;
  line-height: 30px;
  position: absolute;
  left: -25px;
}

.creator-text {
  padding-right: 50px;
}

.creator-text p {
  line-height: 35px;
}

@media screen and (max-width: 480px) {
  .creator {
    padding: 30px;
  }
  .creator h2 {
    margin-bottom: 10px;
  }
  .creator-name {
    font-size: 22px;
  }
  .creator-wrap {
    display: block;
  }
  .creator-img-wrap {
    width: 100%;
  }
  .creator-img {
    width: 50vw;
    height: 50vw;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    margin: 15px auto;
  }
  .creator-info {
    width: 100%;
    margin-top: 20px;
  }
}
.shops {
  padding: 60px 100px;
}

.shops-title {
  font-size: 30px;
  letter-spacing: 0.2em;
  margin: 60px 0 25px 0;
  text-align: center;
}

.shops-online {
  display: flex;
  margin-bottom: 80px;
  opacity: 0;
  transition: 0.5s;
}

.shops-real {
  display: flex;
  opacity: 0;
  transition: 0.5s;
}

.shop-list {
  background-color: #FFFCF5;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  margin-right: 5%;
  margin-bottom: 20px;
  padding: 30px;
  width: 30%;
}

.shop-list:nth-of-type(3n) {
  margin-right: 0;
}

.shop-img-wrap {
  width: 90%;
  margin: 15px auto;
}

.shop-img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #E8DFC8;
  border-radius: 15px;
  max-height: 160px;
}

.shop-list h4 {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  margin-bottom: 15px;
}

.shop-btn {
  display: flex;
  justify-content: center;
}

.shop-btn a {
  display: block;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: rgb(0, 0, 0);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 40px;
  padding: 0px 40px;
  background-color: #F4EFE2;
  border-radius: 40px;
  transition: 0.5s;
}

.shop-btn a:hover {
  background-color: #E8DFC8;
}

.shop-info p {
  margin: 10px;
  color: rgba(0, 0, 0, 0.6);
}

.shop-map {
  border: 5px solid #E8DFC8;
  border-radius: 15px;
  margin: 25px 0 15px 0;
}

.shop-map iframe {
  border: 0;
  border-radius: 15px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .shops {
    padding: 30px;
  }
  .shops-title {
    font-size: 24px;
    margin: 20px 0 10px 0;
  }
  .shops-online {
    display: block;
  }
  .shop-list {
    width: 95%;
  }
  .shops-real {
    display: block;
  }
  .shop-map iframe {
    width: 100%;
  }
}
/* ------------------------- */
/* page */
/* ------------------------- */
.page-header {
  margin-top: 70px; /* headerの幅分下げる */
  position: relative;
}

.page-header-img-wrap {
  width: 100%;
  height: 380px;
}

.page-header-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-header-text p {
  letter-spacing: 0.8em;
  text-indent: 0.8em;
  color: white;
  font-size: 36px;
  font-weight: bold;
  padding: 10px 40px;
  background-color: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 480px) {
  .page-header {
    margin-top: 0;
  }
  .page-header-img-wrap {
    height: 240px;
  }
  .page-header-text p {
    font-size: 24px;
    padding: 10px 25px;
  }
}
/* about works */
.page-works-use {
  padding: 150px 80px;
  max-width: 1400px;
}

.page-works-use h2 {
  letter-spacing: 0.3em;
  margin-bottom: 60px;
}

.page-works-use-content1 {
  padding: 0 5vw;
  position: relative;
}

.page-works-use-img-wrap {
  width: 60vw;
}

.page-works-use-img-wrap-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-works-use-text {
  width: 40vw;
  padding: 40px 50px 70px 50px;
  margin: 30px;
  background-color: #F4EFE2;
  outline: 1px solid #BCB5A4;
  outline-offset: -10px;
}

.work-use-text1 {
  position: absolute;
  left: 40%;
  top: 150px;
}

.page-works-use-text p {
  letter-spacing: 0.4em;
  margin-top: 30px;
  color: #484848;
}

.page-works-use-content2 {
  width: 80vw;
  margin-top: 150px;
  display: flex;
  justify-content: right;
  position: relative;
}

.work-use-info {
  position: absolute;
  left: 15%;
  top: 50px;
}

.work-img2 {
  width: 45vw;
}

.work-use-text2 {
  width: 30vw;
  margin: 20px 0;
  font-size: 14px;
  padding: 30px 40px 60px 40px;
}

.work-use-info h3 {
  letter-spacing: 0.4em;
}

.work-use-num {
  font-family: "Pinyon Script", cursive;
  font-size: 52px;
}

.page-works-use-content3 {
  margin-top: 150px;
  margin-left: 7%;
  position: relative;
}

.work-img3 {
  width: 50vw;
}

.work-use-text3 {
  width: 30vw;
  margin: 20px 0;
  font-size: 14px;
  padding: 30px 40px 60px 40px;
}

.info3 {
  left: 40vw;
}

.info3 h3 {
  text-align: right;
}

.page-works-use-content4 {
  margin-top: 150px;
}

.info4 {
  position: initial;
  width: 40vw;
  margin: 0 auto;
}

.work-use-text4 {
  width: 100%;
  margin: 20px 0;
  font-size: 14px;
  padding: 30px 40px 60px 40px;
}

.page-works-use-lineup {
  display: flex;
  margin-top: 50px;
}

.works-lineup {
  width: 35%;
  margin-right: 14%;
}

.works-lineup h3 {
  font-weight: bold;
  letter-spacing: 0.3em;
  margin: 20px 0;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #8C8572;
}

.works-lineup h3::before {
  width: 50px;
  height: 1px;
  background-color: grey;
}

.works-lineup:nth-of-type(1) {
  margin-right: 2%;
  margin-left: 14%;
}

.work-lineup-img-wrap {
  width: 100%;
}

.page-works-lineup-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.work-lineup-shop-btn {
  display: block;
  background-color: #f0ede5;
  text-decoration: none;
  color: #7E7E7E;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px;
  border-radius: 30px;
  transition: 0.5s;
}

.work-lineup-shop-btn:hover {
  background-color: #dbd6c4;
  color: #4e4e4e;
}

.work-lineup-info {
  padding: 0 10px;
}

.work-lineup-info-title {
  font-weight: bold;
  margin-bottom: 5px;
  text-indent: -5px;
}

.work-lineup-info p {
  font-size: 14px;
  color: #87847d;
}

@media screen and (max-width: 480px) {
  .page-works-use {
    padding: 30px 20px;
    max-width: 1400px;
  }
  .page-works-use h2 {
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .page-works-use-content1 {
    padding: 0 5vw;
  }
  .page-works-use-img-wrap {
    width: 60vw;
  }
  .page-works-use-img-wrap-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-works-use-text {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #F4EFE2;
    outline: 1px solid #BCB5A4;
    outline-offset: -10px;
  }
  .work-use-text1 {
    position: initial;
    left: initial;
    top: initial;
    background: none;
    outline: 1px solid transparent;
    padding: 0;
    margin: 20px 0;
  }
  .page-works-use-text p {
    letter-spacing: 0.3em;
    margin-top: 0;
    padding: 12px;
    font-size: 14px;
    color: #484848;
  }
  .work-use-text1 p {
    padding: 0;
    margin: 10px 0;
  }
  .work-img1 {
    padding: 0;
  }
  .page-works-use-img-wrap {
    width: 100%;
  }
  .page-works-use-content2 {
    width: 100vw;
    margin-left: -20px;
    margin-top: 100px;
    display: block;
    position: initial;
  }
  .work-use-info {
    position: initial;
    left: 15%;
    top: 50px;
  }
  .work-img2 {
    width: 100%;
  }
  .work-use-text2 {
    width: 90%;
    margin: 30px auto;
    font-size: 14px;
    padding: 12px;
  }
  .work-use-info h3 {
    margin-left: 15px;
    letter-spacing: 0.4em;
    color: white;
  }
  .info2 {
    margin-top: -80px;
  }
  .page-works-use-content3 {
    margin-top: 120px;
    margin-left: 0;
    position: initial;
    margin-left: -20px;
  }
  .work-img3 {
    width: 100vw;
  }
  .work-use-text3 {
    width: 100%;
    margin: 30px auto;
    font-size: 14px;
    padding: 12px;
  }
  .info3 {
    left: 0;
    margin-top: -80px;
    margin-left: 20px;
  }
  .info3 h3 {
    text-align: right;
  }
  .page-works-use-content4 {
    margin-top: 80px;
    margin-bottom: 100px;
  }
  .info4 {
    position: initial;
    width: 100%;
    margin: 0 auto;
  }
  .info4 h3 {
    color: black;
  }
  .work-use-text4 {
    width: 100%;
    margin: 20px 0;
    font-size: 14px;
    padding: 12px;
  }
  .page-works-use-lineup {
    display: block;
    margin-top: 50px;
  }
  .works-lineup {
    width: 100%;
  }
  .works-lineup:nth-of-type(1) {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
/* studio */
.page-studio h2 {
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  margin-top: 120px;
  padding: 0px 80px;
}

.page-studio-about {
  margin: 30px 20px;
  padding: 0px 80px;
}

.page-studio-about p {
  letter-spacing: 0.3em;
  line-height: 35px;
}

.page-studio-info {
  background-color: #EDE9DD;
  margin: 60px 0;
  padding: 80px;
}

.decorate-text {
  font-weight: bold;
}

.page-studio-info h3 {
  letter-spacing: 0.3em;
  margin-bottom: 50px;
}

.page-studio-img-wrap {
  width: 47%;
  margin-bottom: 80px;
  margin-right: 6%;
}

.page-studio-img-wrap:nth-of-type(2n) {
  margin-right: 0;
}

.page-studio-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}

.page-studio-info-text {
  margin: 30px;
  padding: 30px;
}

.page-studio-info-text p {
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}

.page-studio-info-images {
  padding: 0 60px;
  display: flex;
  flex-wrap: wrap;
}

.page-studio-contact-text {
  padding: 0 30px;
}

.page-studio-contact-text p {
  padding-bottom: 30px;
}

.work-original {
  margin-left: 0;
}

@media screen and (max-width: 480px) {
  .page-studio h2 {
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    margin-top: 80px;
    padding: 0px 20px;
  }
  .page-studio-info h3 {
    margin-bottom: 30px;
  }
  .page-studio-about {
    margin: 30px;
    padding: 0px;
  }
  .page-studio-about p {
    letter-spacing: 0.2em;
  }
  .page-studio-info {
    background-color: #EDE9DD;
    margin: 40px 0;
    padding: 50px 30px;
  }
  .page-studio-info-text {
    margin: 0px;
    padding: 10px;
    margin-bottom: 30px;
  }
  .page-studio-info-text p {
    letter-spacing: 0.3em;
  }
  .page-studio-info-images {
    padding: 0px;
    display: block;
    margin-bottom: 80px;
  }
  .page-studio-img-wrap {
    width: 85%;
    margin: 0 auto 30px auto;
  }
  .page-studio-img-wrap:nth-of-type(2n+1) {
    margin-left: 0;
  }
  .page-studio-img {
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-studio-contact-text {
    padding: 10px;
  }
}
/* making */
.page-making {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-making h2 {
  letter-spacing: 0.3em;
  margin-bottom: 30px;
}

.page-making-intro {
  margin-bottom: 80px;
}

.page-making-intro p {
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-size: 16px;
}

.page-making-img-wrap {
  width: 55%;
}

.page-making-img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-making-title {
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-size: 24px;
}

.flow1 {
  position: relative;
  padding: 0 20px;
}

.flow-bg {
  width: 75%;
  z-index: -1;
  position: absolute;
  top: -45px;
  left: 0px;
}

.page-making-info-left-side {
  display: flex;
}

.page-making-info-text1 {
  position: relative;
  margin-left: 5%;
  width: 40%;
}

.page-making-info-text1-wrap {
  position: absolute;
  bottom: 0;
}

.page-making-info-text1-wrap p {
  display: block;
  line-height: 50px;
  letter-spacing: 0.4em;
}

.page-making-info-text1-wrap span {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.page-making-info-arrow {
  width: 100px;
  border-top: 50px solid rgb(205, 197, 183);
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  margin: 100px auto 60px auto;
}

.page-making-info-right-side {
  display: flex;
  flex-direction: row-reverse;
}

.title-right {
  text-align: right;
}

.flow-bg2 {
  width: 70%;
  z-index: -1;
  position: absolute;
  top: -45px;
  right: 30px;
}

@media screen and (max-width: 480px) {
  .page-making {
    padding: 80px 30px;
    margin: 0 auto;
  }
  .page-making-info-left-side {
    display: block;
  }
  .page-making-img-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-making-info-text1 {
    position: initial;
    width: 100%;
    margin-left: 0;
  }
  .page-making-info-text1-wrap {
    position: initial;
    bottom: 0;
  }
  .page-making-info-text1-wrap p {
    display: block;
    line-height: 35px;
    letter-spacing: 0.3em;
  }
  .page-making-info-text1-wrap span {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 5px 0;
  }
  .page-making-info-arrow {
    width: 60px;
    border-top: 30px solid rgb(205, 197, 183);
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    margin: 40px auto 70px auto;
  }
  .page-making-info-right-side {
    display: block;
  }
  .title-right {
    text-align: right;
  }
  .flow-bg2 {
    width: 100%;
    z-index: -1;
    position: absolute;
    top: -25px;
    right: 0px;
  }
}
/* ------------------------- */
/* Project : single */
/* ------------------------- */
#template-single {
  margin: 90px auto 30px;
  max-width: 850px;
  padding: 30px 5%;
}

.entry-header .pagetitle {
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.entry-header .post-info {
  display: flex;
  justify-content: space-between;
}
.entry-header .entry-date {
  line-height: 40px;
}
.entry-header .entry-cat a {
  display: block;
  padding: 0 15px;
  background-color: rgba(0, 0, 0, 0.1);
  line-height: 40px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
}

.entry-content {
  margin: 30px 0;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 20px;
  min-height: 200px;
  line-height: 2;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=style.css.map */