@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
@import url("https://use.typekit.net/xvc5gzg.css");
html {
  font-size: 62.5%;
}

/* --------------------
		設定
-------------------- */
/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値)　*/
@media screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

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

:root {
  --c-txt: #222;
  --c-bg: #fff;
  --c-bg_01: #F4F4F4;
}

/* --------------------
		#content
-------------------- */
#content {
  overflow: hidden;
  position: relative;
  line-height: 1;
  color: var(--c-txt);
}

#content span {
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}

#content img {
  width: 100%;
  height: auto;
}

#content a {
  -webkit-transition: .3s;
  transition: .3s;
}

#content a:hover {
  opacity: 0.7;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

#content .mv .mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1000px) {
  #content .mv .mv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#content .mv .mv__inner .mv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 4s 0s ease;
  transition: all 4s 0s ease;
}

@media screen and (min-width: 1000px) {
  #content .mv .mv__inner .mv__title {
    -webkit-transition: all 2s 1s ease;
    transition: all 2s 1s ease;
  }
}

#content .mv .mv__inner .mv__title h1 {
  width: 80%;
  margin: 16vw auto;
}

@media screen and (min-width: 1000px) {
  #content .mv .mv__inner .mv__title h1 {
    width: 65%;
  }
}

#content .mv .mv__inner .mv__ph img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 1000px) {
  #content .mv .mv__title,
  #content .mv .mv__ph {
    width: 50%;
  }
}

@-webkit-keyframes blurIn {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes blurIn {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

#content .mv .fade-blur {
  -webkit-animation: blurIn 3s ease forwards;
          animation: blurIn 3s ease forwards;
}

#content .lead {
  width: 80%;
  margin: 0 auto;
  margin-top: 16vw;
}

@media screen and (min-width: 1000px) {
  #content .lead {
    margin-top: 7.8125vw;
  }
}

#content .lead p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 3rem;
}

@media screen and (min-width: 1000px) {
  #content .lead p {
    font-size: 1.4rem;
  }
}

#content .pickup {
  margin-top: 24vw;
}

@media screen and (min-width: 1000px) {
  #content .pickup {
    margin-top: 11.71875vw;
  }
}

#content .pickup .pickup__inner {
  max-width: 100%;
}

#content .pickup .pickup__title {
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 2rem;
}

@media screen and (min-width: 1000px) {
  #content .pickup .pickup__title {
    font-size: 2.2rem;
  }
}

#content .pickup .pickup-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
}

@media screen and (min-width: 1000px) {
  #content .pickup .pickup-items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: visible;
    padding: 0;
  }
}

#content .pickup .pickup-items__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 72%;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  #content .pickup .pickup-items__link {
    width: 21.09375vw;
  }
}

#content .pickup .pickup-items__link img {
  width: 100%;
  display: block;
  margin-top: 10.66667vw;
}

@media screen and (min-width: 1000px) {
  #content .pickup .pickup-items__link img {
    margin-top: 40px;
  }
}

#content .pickup .pickup-items__check {
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  display: inline-block;
  text-decoration: underline;
  margin-top: 5.33333vw;
}

@media screen and (min-width: 1000px) {
  #content .pickup .pickup-items__check {
    margin-top: 20px;
  }
}

/* --------------------
		section
-------------------- */
section {
  margin-top: 24vw;
}

@media screen and (min-width: 1000px) {
  section {
    margin-top: 11.71875vw;
  }
}

section .main-item {
  width: 100%;
  background-color: var(--c-bg_01);
  padding-top: 16%;
  padding-bottom: 16%;
}

@media screen and (min-width: 1000px) {
  section .main-item {
    padding-top: 7.8125vw;
    padding-bottom: 7.8125vw;
  }
}

section .main-item .pickup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1000px) {
  section .main-item .pickup__inner {
    width: 53.125vw;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

section .main-item .pickup__inner .main-item__ph {
  width: 72%;
}

@media screen and (min-width: 1000px) {
  section .main-item .pickup__inner .main-item__ph {
    width: 21.09375vw;
    margin-right: 5.46875vw;
  }
}

section .main-item .pickup__inner .main-item__detail .main-item__head {
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 10%;
}

@media screen and (min-width: 1000px) {
  section .main-item .pickup__inner .main-item__detail .main-item__head {
    margin-top: 0;
    text-align: left;
  }
}

section .main-item .pickup__inner .main-item__detail .main-item__credit {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin: 6% auto;
}

@media screen and (min-width: 1000px) {
  section .main-item .pickup__inner .main-item__detail .main-item__credit {
    text-align: left;
    margin: 1.5625vw auto;
  }
}

section .main-item .pickup__inner .main-item__detail .main-item__btn a {
  display: block;
  width: 100%;
  height: 50px;
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 1.5rem;
  line-height: 50px;
  text-align: center;
  background-color: var(--c-txt);
}

@media screen and (min-width: 1000px) {
  section .main-item .pickup__inner .main-item__detail .main-item__btn a {
    width: 340px;
  }
}

section h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.9rem;
  line-height: 1.8;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 24vw;
}

@media screen and (min-width: 1000px) {
  section h3 {
    font-size: 2.4rem;
    margin-top: 11.71875vw;
  }
}

section .styling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1000px) {
  section .styling {
    margin: 0 auto;
    margin-top: 7.8125vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50vw 1fr;
        grid-template-columns: 50vw 1fr;
    -ms-grid-rows: 65.625vw 1fr;
        grid-template-rows: 65.625vw 1fr;
        grid-template-areas: "sub main" "sub text";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

section .styling .styling__main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__main {
    grid-area: main;
    width: 43.75vw;
    margin-right: auto;
    margin-left: 3.90625vw;
  }
}

section .styling .styling__main,
section .styling .styling__content {
  margin-top: 16vw;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__main,
  section .styling .styling__content {
    margin-top: 14.84375vw;
  }
}

section .styling .styling__sub {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__sub {
    grid-area: sub;
  }
}

section .styling .styling__content {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 2;
  text-align: left;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 10.66667vw;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__content {
    font-size: 1.4rem;
    grid-area: text;
    margin-top: 18.75vw;
    margin-left: 3.90625vw;
  }
}

section .styling .styling__text {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__text {
    margin: 0;
  }
}

section .styling .styling__sub,
section .styling .styling__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

section .styling .styling__ph_2 {
  width: 69.33333vw;
  margin: 0 auto;
  margin-top: 10.66667vw;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__ph_2 {
    width: 33.20312vw;
    margin-right: 0;
    margin-left: auto;
    margin-top: 0;
  }
}

section .styling .styling__ph_3 {
  width: 69.33333vw;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__ph_3 {
    width: 33.20312vw;
  }
}

section .styling .styling__ph img {
  width: 100%;
  display: block;
}

section .styling .styling__items {
  width: 90%;
  margin: 0 auto;
  margin-top: 10.66667vw;
}

@media screen and (min-width: 1000px) {
  section .styling .styling__items {
    width: 29.6875vw;
    margin: 0;
    margin-top: 3.90625vw;
  }
}

section .styling .styling__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  line-height: 1.6;
}

section .styling .styling__items .styling-item__btn {
  width: 60px;
  text-align: center;
  margin-left: 20px;
}

section .styling .styling__items .styling-item__btn a {
  display: block;
  line-height: 36px;
  font-size: 1.1rem;
  outline: 1px solid var(--c-txt);
  outline-offset: -1px;
}

section .styling .styling__items .gray {
  color: #8f8f8f;
}

section .styling li:first-of-type .styling-item__btn a {
  outline: 0;
  color: #fff;
  background-color: #000;
}

section .styling--reverse .styling__ph_3 {
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  section .styling--reverse {
    -ms-grid-columns: 1fr 50vw;
        grid-template-columns: 1fr 50vw;
        grid-template-areas: "main sub" "text sub";
  }
  section .styling--reverse .styling__main {
    margin-left: 3.90625vw;
  }
  section .styling--reverse .styling__content {
    margin-left: 3.90625vw;
  }
  section .styling--reverse .styling__ph_2 {
    margin-left: 0;
    margin-right: auto;
  }
  section .styling--reverse .styling__ph_3 {
    margin-left: auto;
    margin-right: 0;
  }
}

.interview {
  width: 100%;
  margin-top: 24vw;
  padding-top: 19.2vw;
  padding-bottom: 101.33333vw;
  background-image: url(/special/260116_kagure-w_kanoco/common/img/interview_bg.jpg);
  background-position: right bottom;
  background-size: cover;
}

@media (min-width: 540px) {
  .interview {
    padding-bottom: 53.33333vw;
  }
}

@media screen and (min-width: 1000px) {
  .interview {
    margin-top: 11.71875vw;
    padding-left: 3.90625vw;
    padding-top: 7.8125vw;
    padding-bottom: 7.8125vw;
  }
}

.interview .interview__inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .interview .interview__inner {
    width: 46.875vw;
    margin: 0;
  }
}

.interview h4 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
}

.interview h4 span {
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.0rem;
  line-height: 1.6;
}

.interview .interview__link {
  font-family: times-new-roman, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 3;
}

.interview .interview__link a {
  text-decoration: underline;
}

.interview .interview__comment {
  margin-top: 10.66667vw;
}

@media screen and (min-width: 1000px) {
  .interview .interview__comment {
    margin-top: 3.125vw;
  }
}

.interview .interview__comment p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 3rem;
}

@media screen and (min-width: 1000px) {
  .interview .interview__comment p {
    font-size: 1.4rem;
  }
}

/* --------------------
		aside
-------------------- */
aside {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 26.66667vw 0 26.66667vw;
}

@media screen and (min-width: 1000px) {
  aside {
    width: 600px;
    margin: 0 auto;
    padding: 7.8125vw 0 7.8125vw;
    margin: 0 auto;
  }
}

aside p {
  line-height: 2;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1000px) {
  aside p {
    font-size: 12px;
  }
}

aside a {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

aside a:hover {
  opacity: 0.5;
}

.aside__ttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4vw;
  margin-bottom: 5.33333vw;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .aside__ttl {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.aside__cap {
  margin-bottom: 13.33333vw;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .aside__cap {
    margin-bottom: 50px;
  }
}

.aside__btn {
  margin: 0 auto;
  font-size: 3.46667vw;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .aside__btn {
    font-size: 13px;
  }
}

.aside__btn a {
  position: relative;
  display: block;
  border: 1px solid var(--c-txt);
  background-color: var(--c-txt);
  color: #fff;
  padding: 4.53333vw;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media screen and (min-width: 1000px) {
  .aside__btn a {
    padding: 17px;
  }
}

.aside__btn a:hover {
  opacity: 1;
}

/* --------------------
		footer
-------------------- */
.footer {
  padding: 16vw 0;
  background-color: var(--c-txt);
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}

@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: calc(min(130px, 10.15625vw));
    margin: 0 auto 1.25vw;
  }
}

.footer__logo a {
  display: block;
}

@media screen and (min-width: 1000px) {
  .footer__logo a {
    -webkit-transition: all 0.5s ease;
    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: calc(min(13px, 1.015625vw));
  }
}
/*# sourceMappingURL=260116_kagure-w_kanoco_style.css.map */