@charset "UTF-8";
/*------------------------------------------
reset.scss
-----------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*------------------------------------------
base.scss
-----------------------------------------*/
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 1.4rem; /* 16px */
  font-weight: 300;
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-ideograph;
  background: #fff;
  transition: 1s;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

.bgblack a,
.bgblack02 a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
  display: block;
}

/*----responsive---------*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .pc {
    display: block !important;
  }
}

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

/*----------box---------*/
.container__full {
  width: 100%;
  margin: 0 auto;
}
.container__xl {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.container__l {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.container__m {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}
.container__m--yohaku {
  max-width: 780px;
  margin: 16% auto 8%;
  width: 80%;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .container__m--yohaku {
    width: 100%;
    margin: 60px auto;
  }
}
.container__s {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.container__s--yohaku {
  max-width: 500px;
  width: 80%;
  padding: 10% 0;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .container__s--yohaku {
    width: 100%;
    padding: 0;
  }
}
.container__s--footer {
  max-width: 500px;
  width: 80%;
  margin: 100px auto;
}
@media screen and (min-width: 600px) {
  .container__s--footer {
    width: 100%;
    padding: 0;
  }
}
.container__ss {
  margin: 10% auto;
  max-width: 460px;
  width: 64%;
}

.wrap-mgt-l {
  margin-top: 100px;
}
@media screen and (min-width: 600px) {
  .wrap-mgt-l {
    margin-top: 200px;
  }
}

.u-txt-vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .u-txt-vertical {
    font-size: 1.2rem;
  }
}

.box {
  max-width: 540px;
  width: 92%;
  margin: 16px auto 0;
}

.group {
  width: 100%;
  margin: 0 auto 0;
}
@media screen and (min-width: 600px) {
  .group {
    margin: 60px auto 0;
  }
}

.group__2col {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.group__2col--sp {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
@media screen and (min-width: 600px) {
  .group__2col--sp {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 60px;
  }
}

.group__left {
  width: 80%;
  margin: 60px auto 0 0;
}

.group__left--s {
  width: 64%;
  margin: 0 auto 0 0;
}

.group__center {
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (min-width: 600px) {
  .group__center {
    width: 100%;
  }
}

.group__center02 {
  width: 100%;
  margin: 60px auto 0;
  max-width: 540px;
}

.group__right {
  width: 72%;
  margin: 60px 0 0 auto;
}

.group__row--left {
  max-width: 460px;
  margin: 60px auto 0 0;
  width: 80%;
  padding-top: 60px;
}
@media screen and (min-width: 600px) {
  .group__row--left {
    padding-top: 0;
  }
}

.group__row--left02 {
  max-width: 460px;
  margin: 60px auto 0 0;
  width: 100%;
}

.small {
  width: 72%;
  margin: 0 auto 0 0;
}
@media screen and (min-width: 600px) {
  .small {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

.center {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .center {
    margin: 0 auto;
    width: 100%;
  }
}

.group__mgT-none {
  margin-top: -60px;
}
@media screen and (min-width: 600px) {
  .group__mgT-none {
    margin-top: 0;
  }
}

.group__row--right {
  max-width: 460px;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 600px) {
  .group__row--right {
    margin: 60px 0 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .group__row--right .small {
    max-width: 400px;
  }
}
.group__row--right .center {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .group__row--right .center {
    width: 100%;
  }
}

.group__titlebox {
  width: 80%;
}
@media screen and (min-width: 600px) {
  .group__titlebox {
    width: 84%;
  }
}

.group__title {
  display: flex;
  max-width: 640px;
  width: 100%;
  margin: 40px auto;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (min-width: 600px) {
  .group__title {
    margin: 60px auto 0;
  }
}

.group__title--ver02 {
  display: flex;
  max-width: 640px;
  width: 100%;
  margin: 10% auto;
  flex-direction: row;
  align-items: baseline; /* ここでbaselineを指定 */
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .group__title--ver02 {
    margin: 60px auto 0;
  }
}

.group__title--right {
  display: flex;
  max-width: 640px;
  width: 100%;
  margin: 10% auto;
  flex-direction: row;
  align-items: flex-end; /* ここでbaselineを指定 */
  justify-content: flex-end;
}
@media screen and (min-width: 600px) {
  .group__title--right {
    margin: 60px auto 0;
  }
}

.box__title01 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* margin-left: 20px; */
  font-size: 3.2rem;
  font-weight: 400;
  text-align: right;
  line-height: 0.8;
  width: 14%;
  font-family: "Playfair Display", serif;
}
.box__title01 span {
  font-family: "Lora", serif;
}
@media screen and (min-width: 600px) {
  .box__title01 {
    font-size: 3.6rem;
    width: 12%;
  }
}

.box__title02 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* margin-left: 20px; */
  font-size: 3.5rem;
  font-weight: 400;
  text-align: right;
  line-height: 0.8;
  width: 8%;
  font-family: "Playfair Display", serif;
}
@media screen and (min-width: 600px) {
  .box__title02 {
    width: 6%;
  }
}
.box__title02 span {
  font-family: "Lora", serif;
}

.box__title03 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* margin-left: 20px; */
  font-size: 3.1rem;
  font-weight: 400;
  text-align: right;
  line-height: 0.8;
  width: 6%;
  font-family: "Playfair Display", serif;
}
@media screen and (min-width: 600px) {
  .box__title03 {
    font-size: 3.6rem;
  }
}
.box__title03 span {
  font-family: "Lora", serif;
}

.box__title04 {
  padding-top: 30px;
  margin-bottom: -20px;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 600px) {
  .box__title04 {
    padding-top: 60px;
    margin-bottom: -30px;
  }
}

/*------------------------------------------
main.scss
-----------------------------------------*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh; /* 画面いっぱい */
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .hero-slider {
    height: 100vh;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.typing {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
}

.typing-effect {
  width: 52ch;
  animation: typing 3s steps(52), effect 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .typing-effect {
    font-size: 2rem;
    animation: typing 2s steps(52), effect 0.5s step-end infinite alternate;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes effect {
  50% {
    border-color: transparent;
  }
}
.look {
  width: 100%;
}
.look__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-items: center;
  max-width: 1200px;
  width: 90%;
  margin: 40px auto 0;
}
@media screen and (min-width: 600px) {
  .look__wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.look__item100 {
  width: 90%;
  max-width: 1200px;
  margin: 1rem auto 0;
}

.shopper {
  background-image: url(../img/bg_sp.jpg);
  background-size: cover;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px auto 0;
  padding: 40px 0;
}
.shopper__img {
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (max-width: 599px) {
  .shopper__img {
    padding: 64px 0;
  }
}

.schedule {
  width: 100%;
  margin: 120px auto 0;
  max-width: 640px;
}

.links {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 800px;
  margin: 120px auto 0;
}
@media screen and (min-width: 600px) {
  .links {
    flex-direction: row;
    justify-content: space-between;
    margin: 160px auto 0;
  }
}
.links a {
  color: #fff;
}
.links__link {
  font-size: 1.8rem;
  color: #fff;
  padding: 16px 0;
  text-align: center;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .links__link {
    width: 32%;
  }
}
.links__link span {
  font-size: 1.2rem;
  display: block;
}
.links__link:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (min-width: 600px) {
  .links__link:nth-child(n+2) {
    margin-top: 0;
  }
}
.links__bg--blue01 {
  background-color: #a4b6ce;
}
.links__bg--blue02 {
  background-color: #6381a7;
}
.links__bg--blue03 {
  background-color: #213363;
}
.links__disabled {
  pointer-events: none; /* クリックできないようにする */
  opacity: 1; /* 透過させない */
  cursor: default; /* カーソルを「リンク」ではなく通常に */
}
.links__disabled:hover {
  opacity: 1;
}

.footer {
  max-width: 180px;
  width: 30%;
  margin: 120px auto 0;
}

/*------img title------*/
figure.titlebox {
  max-width: 500px;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 96%;
  margin: 2% auto 0;
}
figure.titlebox figcaption {
  position: absolute;
  bottom: 45%;
  width: 100%;
  height: 50px;
  font-size: 4rem;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  font-family: "PT Sans", sans-serif;
}

/*------box img 01------*/
.box-parent {
  max-width: 640px;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.morebtn {
  right: 16px;
  bottom: 16px;
  opacity: 1;
  position: absolute;
  width: 56px;
  height: 30px;
  color: #fff;
  border: solid 1px #fff;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 15px;
}

.box-parent:hover .morebtn {
  opacity: 0;
  transition: all 0.6s ease;
}

.box-mask {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: end;
  padding: 0 30px;
  opacity: 0;
}

.box-parent:hover .box-mask {
  opacity: 1;
  transition: all 0.6s ease;
  padding: 0 30px 30px 30px;
}

/*------box img 01------*/
figure.box-parent:hover .morebtn {
  opacity: 0;
  transition: all 0.6s ease;
}

/*--------credit--------*/
.credit {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  margin-top: 16px;
}
.credit a {
  color: #fff;
}
@media screen and (min-width: 600px) {
  .credit {
    font-size: 1.2rem;
  }
}

.credit li {
  margin-top: 12px;
}

.credit--center {
  margin-top: 16px;
  text-align: center;
}

/*--------staff--------*/
.staff {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-top: 80px;
  font-weight: 500;
  line-height: 1.6;
}

/*--------footer--------*/
footer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 10px;
}

.footer__area {
  margin: 0 auto;
}

.footer__brandlogo {
  width: 150px;
  margin: 0 auto;
}
.footer__theme {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .footer__theme {
    max-width: 240px;
  }
}

.footer__message {
  margin-top: 40px;
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
  font-family: "Playfair Display", serif;
}
.footer__theme {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 24px;
}
.footer__concept {
  font-size: 1.2rem;
  margin-top: 16px;
}

small {
  display: block;
  margin: 60px auto 15px;
  color: #000;
  font-size: 1rem;
}

/*------------------------------------------
animation.scss
-----------------------------------------*/
.fadein {
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--up.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--down.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--left.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--right.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*----------page top icon---------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */