@charset "UTF-8";
/* --------------------
		setting
-------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap");
@import url("https://use.typekit.net/xrz1tlh.css");
:root {
  --c-txt: #555555;
  --c-summer: #93A256;
  --c-autumn: #B2683A;
}

@media screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値)　*/
/* --------------------
		content
-------------------- */
#content {
  overflow: hidden;
  position: relative;
  line-height: 1;
  color: var(--c-txt);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#content img {
  width: 100%;
  height: auto;
}

header {
  position: relative;
}

.p__header {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  line-height: 2.2;
  font-size: 3.4666666667vw;
  padding: 13.3333333333vw 10vw 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .p__header {
    padding: 0;
    font-size: 13px;
    text-align: center;
    margin: 80px auto 120px;
  }
}
.p__header p {
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  .p__header p {
    margin-bottom: 10px;
  }
}

.intro-icon {
  position: absolute;
  bottom: 2.6666666667vw;
  right: 0;
  width: 57.0666666667vw;
  opacity: 0.15;
}
@media screen and (min-width: 1000px) {
  .intro-icon {
    width: 20.859375vw;
    right: 15.625vw;
    bottom: -2.34375vw;
    position: absolute;
  }
}

section {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  section {
    margin-bottom: 150px;
  }
}

.sec-head {
  position: relative;
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .sec-head {
    margin-bottom: 100px;
  }
}

.label-logo {
  margin: 0 auto 8vw;
}
@media screen and (min-width: 1000px) {
  .label-logo {
    margin: 0 auto 45px;
  }
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
  font-size: 4vw;
  line-height: 2;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  h2 {
    font-size: 21px;
    margin-bottom: 30px;
  }
}
h2 span {
  position: relative;
  font-size: 6.4vw;
  display: inline-block;
}
@media screen and (min-width: 1000px) {
  h2 span {
    font-size: 36px;
  }
}
h2 span::after {
  content: "";
  display: inline-block;
  background-color: var(--c-txt);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.main-item {
  position: relative;
  width: 48vw;
  margin: 0 auto 5.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  .main-item {
    width: 273px;
    margin: 0 auto 30px;
  }
}

.main-item-bk {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  color: #F5F5F5;
  font-size: 14.4vw;
  white-space: nowrap;
  letter-spacing: 0.1em;
  display: flex;
  width: 100vw;
}
@media screen and (min-width: 1000px) {
  .main-item-bk {
    position: absolute;
    font-size: 81px;
    display: flex;
    width: 100vw;
  }
}
.main-item-bk-txt {
  white-space: nowrap;
}
.main-item-bk-txt:nth-child(odd) {
  animation: loop 150s -75s linear infinite;
}
.main-item-bk-txt:nth-child(even) {
  animation: loop2 150s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.main-item-btn {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
}
.main-item-btn a {
  display: block;
  width: 48vw;
  margin: 0 auto;
  background-color: var(--c-txt);
  border: 1px solid var(--c-txt);
  color: #fff;
  text-align: center;
  padding: 2.6666666667vw;
  border-radius: 3px;
  font-size: 3.2vw;
  letter-spacing: 0.08em;
  transition: all 0.8s ease;
}
@media screen and (min-width: 1000px) {
  .main-item-btn a {
    width: 273px;
    padding: 15px;
    font-size: 16px;
  }
}
.main-item-btn a:hover {
  background-color: #fff;
  color: var(--c-txt);
  border: 1px solid var(--c-txt);
  box-sizing: border-box;
}

.nav {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 21.3333333333vw;
}
.nav figure {
  width: 49.0666666667vw;
}
.nav figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 3.7333333333vw;
  padding: 1.8666666667vw 0 1.8666666667vw 3.4666666667vw;
  color: #fff;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
}
.nav figcaption:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  border: 1px solid currentColor;
  border-top: 0;
  border-left: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  right: 3.7333333333vw;
  top: 3.2vw;
}
@media screen and (min-width: 1000px) {
  .nav figcaption:after {
    width: 0.390625vw;
    height: 0.390625vw;
  }
}
.nav__summer {
  position: relative;
}
.nav__summer figcaption {
  background-color: rgba(61, 75, 0, 0.3);
}
.nav__autumn {
  position: relative;
}
.nav__autumn figcaption {
  background-color: rgba(141, 67, 21, 0.4);
}

h3 {
  font-size: 7.4666666667vw;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 4vw;
}
@media screen and (min-width: 1000px) {
  h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.summer h3 span {
  color: var(--c-summer);
}

.name {
  font-size: 2.9333333333vw;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  position: relative;
  border-left: 1px solid var(--c-txt);
  border-right: 1px solid var(--c-txt);
  width: 45.6vw;
  margin: 0 auto 8vw;
}
@media screen and (min-width: 1000px) {
  .name {
    font-size: 11px;
    width: 171px;
    margin: 0 auto 30px;
  }
}

.autumn h3 span {
  color: var(--c-autumn);
}

.swiper__ph {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .swiper__ph {
    margin-bottom: 50px;
  }
}
.swiper__ph .swiper-pagination {
  bottom: 5.3333333333vw !important;
  width: auto !important;
  right: 5.3333333333vw !important;
  left: auto !important;
}
@media screen and (min-width: 1000px) {
  .swiper__ph .swiper-pagination {
    bottom: 20px !important;
    right: 20px !important;
  }
}
.swiper__ph .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0) !important;
  border: 1px solid #fff;
  height: 2.1333333333vw;
  width: 2.1333333333vw;
  opacity: 1;
  margin: 1.3333333333vw !important;
}
@media screen and (min-width: 1000px) {
  .swiper__ph .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    margin: 5px !important;
  }
}
.swiper__ph .swiper-pagination-bullet-active {
  background-color: #fff !important;
  height: 2.1333333333vw;
  width: 2.1333333333vw;
  margin: 1.3333333333vw !important;
}
@media screen and (min-width: 1000px) {
  .swiper__ph .swiper-pagination-bullet-active {
    height: 8px;
    width: 8px;
    margin: 5px !important;
  }
}
.swiper__ph .swiper-slide img {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .swiper__ph .swiper-slide img {
    width: 410px;
  }
}

.comment {
  width: 80vw;
  margin: 0 auto 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .comment {
    width: 410px;
    margin: 0 auto 50px;
  }
}
.comment__head {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 5.8666666667vw;
  font-style: italic;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .comment__head {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.comment p {
  font-size: 3.4666666667vw;
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .comment p {
    font-size: 14px;
  }
}

.credit {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  margin-left: 9.8666666667vw;
}
@media screen and (min-width: 1000px) {
  .credit {
    margin: 0;
    width: 410px;
    overflow: hidden;
  }
}
.credit li {
  width: 34.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .credit li {
    width: 141px;
  }
}
.credit li a:hover img {
  transform: scale(1.05);
}
.credit__img {
  width: 34.6666666667vw;
  margin-bottom: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .credit__img {
    width: 141px;
    margin-bottom: 15px;
  }
}
.credit__img img {
  transition: all 0.5s ease;
}
.credit__txt {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 2.9333333333vw;
  margin-bottom: 4vw;
  line-height: 1.5;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .credit__txt {
    font-size: 11px;
    margin-bottom: 15px;
  }
}
.credit__txt span {
  font-size: 3.4666666667vw;
  margin-bottom: 4vw;
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
  .credit__txt span {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.credit__btn {
  padding: 2.1333333333vw;
  background-color: #fff;
  border: 1px solid var(--c-txt);
  color: var(--c-txt);
  text-align: center;
  border-radius: 0.8vw;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 3.2vw;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .credit__btn {
    padding: 8px;
    font-size: 12px;
    border-radius: 3px;
  }
}
.credit__btn-main {
  border: 1px solid var(--c-txt);
  background-color: var(--c-txt);
  color: #fff;
}
.credit li:last-child {
  margin-right: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .credit li:last-child {
    margin-right: 3.90625vw;
  }
}

.pc-flex {
  margin: 0 auto 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .pc-flex {
    display: flex;
    width: 950px;
    margin: 0 auto 6.25vw;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1000px) {
  .summer {
    width: 410px;
  }
}
.summer .comment p span {
  color: var(--c-summer);
}
.summer .credit li a:hover .credit__txt {
  color: var(--c-summer);
}
.summer .credit li a:hover .credit__btn {
  border: 1px solid var(--c-summer);
  color: var(--c-summer);
}
.summer .credit li a:hover .credit__btn-main {
  border: 1px solid var(--c-summer);
  background-color: var(--c-summer);
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .autumn {
    width: 410px;
  }
}
.autumn .comment p span {
  color: var(--c-autumn);
}
.autumn .credit li a:hover .credit__txt {
  color: var(--c-autumn);
}
.autumn .credit li a:hover .credit__btn {
  border: 1px solid var(--c-autumn);
  color: var(--c-autumn);
}
.autumn .credit li a:hover .credit__btn-main {
  border: 1px solid var(--c-autumn);
  background-color: var(--c-autumn);
  color: #fff;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  width: 80vw;
  margin: 21.3333333333vw auto;
  border-top: 1px solid #D6D6D6;
}

#sec-2 .name {
  width: 51.7333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec-2 .name {
    width: 194px;
  }
}

#sec-3 .name {
  width: 42.4vw;
}
@media screen and (min-width: 1000px) {
  #sec-3 .name {
    width: 159px;
  }
}

/* --------------------
		aside
-------------------- */
aside {
  position: relative;
  margin: 0;
  padding: 21.3333333333vw 10vw;
  background-color: #E8E8E6;
}
@media screen and (min-width: 1000px) {
  aside {
    padding: 100px 0;
  }
}
aside a {
  transition: all 0.8s ease;
}
aside a:hover {
  opacity: 0.5;
}

.otheritem h4 {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 6.4vw;
  text-align: center;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .otheritem h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.otheritem p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  font-size: 2.9333333333vw;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  .otheritem p {
    font-size: 11px;
    margin-bottom: 40px;
  }
}

.aside__btn {
  width: 100%;
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .aside__btn {
    width: 600px;
    margin: 0 auto 80px;
  }
}
.aside__btn a {
  text-align: center;
  background-color: var(--c-txt);
  color: #fff;
  border: solid 1px var(--c-txt);
  margin: 0 auto;
  display: block;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 3.4666666667vw;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5.3333333333vw 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .aside__btn a {
    font-size: 13px;
    padding: 20px 250px;
  }
}

.aside__btn.labeltop {
  margin-bottom: 0;
}
.aside__btn.labeltop a {
  background-color: #E8E8E6;
  color: var(--c-txt);
  font-weight: 600;
}

/* --------------------
		footer
-------------------- */
.footer {
  padding: 16vw 0;
  background-color: var(--c-txt);
}
@media screen and (min-width: 1000px) {
  .footer {
    padding: 3.90625vw 0;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 29.3333333333vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    width: min(130px, 10.15625vw);
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
}
@media screen and (min-width: 1000px) {
  .footer__logo a {
    transition: all 0.5s ease;
  }
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: min(13px, 1.015625vw);
  }
}

/* --------------------
	move
-------------------- */
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
}

.fadein-active {
  opacity: 1;
  visibility: visible;
}

.fadeinup {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
  transform: translateY(20px);
}

.fadeinup-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.turn-right {
  position: relative;
}

.turn-right:after {
  content: "";
  display: block;
  background-color: var(--c-txt);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.turn-right-active {
  position: relative;
}

.turn-right-active:after {
  content: "";
  display: block;
  background-color: var(--c-txt);
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transition: all 1.5s cubic-bezier(0.6, 0.09, 0.08, 0.9);
}

.scale {
  overflow: hidden;
}

.scale img {
  transform: scale(1.1);
  transition: all 2s ease;
}

.scale-active {
  overflow: hidden;
}

.scale-active img {
  transform: scale(1);
}

.link__none {
  pointer-events: none;
  text-decoration: none !important;
  opacity: 0.5;
}/*# sourceMappingURL=260814_doors-w_switch_style.css.map */