@charset "utf-8";
/* ===================================================================
 frame.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/

/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var, b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, thead, tfoot, tr, th, td,
main, article, aside, canvas, details, embed, figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5em;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}
h1, h2, h3, h4, h5, h6, th {
  font-size: 100%;
  font-family: inherit;
}
em  {
  font-style: normal;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
table, th, td {
  text-align: left;
  border: none;
}
ul, ol, li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  font-size: 100%;
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: normal;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
select::-ms-expand {
  display:none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*----------------------------------------------------------
 Base
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
body {
  min-width: 320px;
  font-size: 1.6em;
  color: #333;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}
h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}
input, select, textarea {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

/*----------------------------------------------------------
 Anchers
------------------------------------------------------------*/
a {
  color: #333;
  text-decoration: none;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    color: #333;
    opacity: .7;
  }
  a img {
    transition: .3s;
  }
}

/*----------------------------------------------------------
 page
------------------------------------------------------------*/
.f_page {
  display: flex;
  flex-direction: column;
}
.f_inner {
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
}
.f_inner._sizeM {
  max-width: calc(1200px + 8vw);
}
.f_inner._sizeS {
  max-width: calc(960px + 8vw);
}

.f_inner > :first-child { margin-top: 0; }
.f_inner > :last-child { margin-bottom: 0; }

@media screen and (max-width: 767px) {
  .f_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*----------------------------------------------------------
 header
------------------------------------------------------------*/
.f_header {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  background: #f6f7f9;
  border-bottom: 1px solid transparent;
  transition: .3s;
}
.f_page.-top .f_header,
.f_page.-collectionDetails .f_header,
.f_header.-fixed {
  background: #f6f7f9;
  border-color: #111;
}
.f_header-head {
  width: 150px;
  padding-top: 5px;
}
.f_header-nav {
  flex-grow: 1;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .f_header {
    padding: 0 20px;
    height: 50px;
  }
  .f_header-head {
    width: 100px;
  }
}

/*----------------------------------------------------------
 globalnav
------------------------------------------------------------*/
.f_globalnav {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}
.f_globalnav-btn {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

/* list
-------------------------------------------------*/
.f_globalnav-list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-grow: 1;
}
.f_globalnav-list > li {
  height: 100%;
  text-align: right;
}
.f_globalnav-list > li:first-child {
  width: 30vw;
}
.f_globalnav-list > li + li {
  margin-left: 30px;
}
.f_globalnav-list > li > a,
.f_globalnav-list > li > span {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 2px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.f_globalnav-list > li > a:after,
.f_globalnav-list > li > span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  transform: scale(0);
  transition: .3s;
}

/* hover */
.f_globalnav-list > li > a:hover,
.f_globalnav-list > li > span:hover {
  opacity: 1;
}
.f_globalnav-list > li:hover > a:after,
.f_globalnav-list > li:hover > span:after {
  transform: scale(1);
}

@media screen and (max-width: 767px) {
  .f_globalnav-list {
    display: none;
  }
}

/* child menu
-------------------------------------------------*/
.f_globalnav-child {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  background: #f6f7f9;
  transform: scaleY(0);
  transform-origin: top left;
  transition: .3s;
}
.f_globalnav-list > li:hover .f_globalnav-child {
  transform: scaleY(1);
}
.f_globalnav-child:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,0));
}
.f_globalnav-child-list {
  display: flex;
  justify-content: center;
  padding: 30px;
}
.f_globalnav-child-list > li {
  margin: 0 30px;
}
.f_globalnav-child-list > li a {
  color: #333;
}

/* hover */
.f_globalnav-child-list > li a:hover {
  opacity: .7;
}

/*----------------------------------------------------------
 drawernav
------------------------------------------------------------*/
.f_drawernav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 0;
  background: #f6f7f9;
  opacity: 0;
  transition: .5s;
}
.f_drawernav.-opened {
  z-index: 100;
  height: 100vh;
  opacity: 1;
}
.f_drawernav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85vw;
  max-width: 1100px;
  height: 85vh;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top left;
  transition: .5s;
}
.f_drawernav.-opened .f_drawernav-inner {
  opacity: 1;
  transform: scaleY(1);
}

@media screen and (max-width: 767px) {
  .f_drawernav-inner {
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    padding: 50px 5vw 80px;
    overflow-y: auto;
  }
}

/* drawernav-btn
-------------------------------------------------*/
.f_drawernav-btn {
  display: block;
  position: relative;
  width: 39px;
  height: 40px;
  cursor: pointer;
  transition: .3s;
}
.f_drawernav-btn.-close {
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 2;
}

.f_drawernav-btn:before,
.f_drawernav-btn:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  height: 2px;
  background: #111;
  transition: .3s;
}
.f_drawernav-btn:before {
  top: 16px;
  width: 90%;
}
.f_drawernav-btn:after {
  bottom: 16px;
  width: 70%;
}

.f_drawernav-btn:hover:before,
.f_drawernav-btn:hover:after { width: 100%; }

/* active */
.f_drawernav-btn.-active:before {
  top: 19px;
  width: 100%;
  transform: rotate(-25deg);
}
.f_drawernav-btn.-active:after {
  bottom: 19px;
  width: 100%;
  transform: rotate(25deg);
}
.f_drawernav-btn.-active:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  .f_drawernav-btn {
    width: 34px;
  }
  .f_drawernav-btn.-close {
    top: 5px;
    right: 20px;
  }
}

/* drawernav-main
-------------------------------------------------*/
.f_drawernav-main {
  display: grid;
  grid-template-columns: 1fr 46%;
  grid-template-rows: max-content max-content 1fr;
  align-items: start;
  width: 100%;
}
.f_drawernav-main-nav {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
}

/* info */
.f_drawernav-main-info {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.f_drawernav-main-info-logo {
  max-width: 340px;
  margin: 10px 0;
}
.f_drawernav-main-info-name {
  font-size: 2rem;
  font-weight: bold;
}

/* SNS */
.f_drawernav-main-snsList {
  display: flex;
  align-items: center;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin-top: 30px;
}
.f_drawernav-main-snsList > li {
  width: 30px;
  margin-right: 30px;
}

/* button */
.f_drawernav-main-btnList {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  margin-top: 40px;
}
.f_drawernav-main-btnList > li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 280px;
  height: 60px;
  padding: 0 25px 0 15px;
  border: 1px solid #111;
  color: #111;
  line-height: 1;
}
.f_drawernav-main-btnList > li a:hover {
  opacity: 1;
}
.f_drawernav-main-btnList > li a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  width: 20px;
  height: 6px;
  border-bottom: 1px solid #111;
  border-right: 2px solid #111;
  transform: skew(45deg);
  transition: .3s;
}
.f_drawernav-main-btnList > li a:hover {
  background: #111;
  color: #fff;
}
.f_drawernav-main-btnList > li a:hover:after {
  border-color: #fff;
  translate: 5px 0;
}

@media screen and (max-width: 767px) {
  .f_drawernav-main {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .f_drawernav-main-nav {
    order: 2;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #111;
  }

  /* info */
  .f_drawernav-main-info {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
  .f_drawernav-main-info-logo {
    width: 240px;
    margin: 0;
  }
  .f_drawernav-main-info-name {
    display: none;
  }

  /* SNS */
  .f_drawernav-main-snsList {
    order: 3;
    margin-top: 30px;
  }
  .f_drawernav-main-snsList > li {
    width: 24px;
    margin-right: 20px;
  }

  /* button */
  .f_drawernav-main-btnList {
    order: 4;
    margin-top: 30px;
  }
  .f_drawernav-main-btnList > li a {
    width: 180px;
    height: 46px;
    padding-left: 10px;
    font-size: 1.4rem;
  }
  .f_drawernav-main-btnList > li a:after {
    top: calc(50% - 2px);
    right: 15px;
    width: 16px;
    height: 4px;
  }
}

/* drawernav-list
-------------------------------------------------*/
.f_drawernav-list > li + li {
  margin-top: 10px;
}
.f_drawernav-list > li > a,
.f_drawernav-list > li > span {
  font-size: 4.2rem;
}

.f_drawernav-list-child {
  margin-bottom: 30px;
}
.f_drawernav-list-child > li {
  position: relative;
  padding-left: 56px;
}
.f_drawernav-list-child > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 23px;
  left: 15px;
  width: 26px;
  height: 1px;
  background: #888;
}
.f_drawernav-list-child > li > a {
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .f_drawernav-list > li > a,
  .f_drawernav-list > li > span {
    font-size: 2rem;
    font-weight: bold;
  }
  .f_drawernav-list-child > li {
    margin-top: 10px;
    padding-left: 30px;
  }
  .f_drawernav-list-child > li:before {
    top: 11px;
    left: 7px;
    width: 16px;
  }
  .f_drawernav-list-child > li > a {
    font-size: 1.6rem;
  }
}

/*----------------------------------------------------------
 breadcrumbs
------------------------------------------------------------*/
.f_breadcrumbs {
  position: relative;
  z-index: 3;
  order: 3;
  padding: 10px 30px;
}
.f_breadcrumbs-list {
  display: flex;
  align-items: center;
}
.f_breadcrumbs-list > li {
  position: relative;
}
.f_breadcrumbs-list > li + li {
  margin-left: 8px;
  padding-left: 18px;
}
.f_breadcrumbs-list > li + li:before {
  content: "";
}
.f_breadcrumbs-list > li:before {
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #aaa;
  border-right: 2px solid #aaa;
  transform: rotate(45deg);
}
.f_breadcrumbs-list > li > a,
.f_breadcrumbs-list > li > span {
  font-size: 1.2rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .f_breadcrumbs {
    padding: 10px 0 5px 20px;
  }
  .f_breadcrumbs-list {
    max-width: 100%;
    padding-right: 20px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .f_breadcrumbs-list:-webkit-scrollbar {
    display: none;
  }
  .f_breadcrumbs-list > li {
    white-space: nowrap;
  }
}

/*----------------------------------------------------------
 main
------------------------------------------------------------*/
.f_main {
  order: 2;
  min-height: calc(100vh - 190px);
  padding: 70px 0 80px;
}
.f_main-header {
  margin: -70px 0 50px;
  padding: 120px 0 20px;
  background: #f6f7f9;
}
.f_main-header-inner {
  display: flex;
  justify-content: space-between;
}
.f_main-header-title {
  width: 26%;
}
.f_main-header-title:only-child {
  width: 100%;
}
.f_main-header-lead {
  width: 70%;
  padding-top: 5px;
}
.f_main-header-lead > p {

}
.f_main-header-lead > p + p {
  margin-top: 1.5em;
}
.f_pageTitle {
  font-size: 5.6rem;
  color: #444;
  line-height: 1.2;
  font-weight: bold;
}
.f_pageTitle-jp {
  font-size: 1.4rem;
}
.f_pageTitle-sub {
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .f_main {
    min-height: calc(100vh - 360px);
    padding: 100px 0 50px;
  }
  .f_main-header {
    margin: -150px 0 30px;
    padding-bottom: 15px;
  }
  .f_main-header-inner {
    flex-direction: column;
  }
  .f_main-header-title,
  .f_main-header-lead {
    width: 100%;
  }
  .f_pageTitle {
    font-size: 3rem;
  }
  .f_pageTitle-jp {
    font-size: 1.2rem;
  }
}

/*----------------------------------------------------------
 footer
------------------------------------------------------------*/
.f_footer {
  order: 4;
  display: grid;
  grid-template-rows: max-content 1fr auto;
  align-items: start;
  position: relative;
  z-index: 4;
  padding: 30px;
  background: #f6f7f9;
}
.f_footer-logo {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 200px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .f_footer {
    align-items: end;
    padding: 30px 20px;
  }
  .f_footer-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 180px;
    margin-bottom: 0;
  }
}

/* nav
-------------------------------------------------*/
.f_footer-btnPagetop {
  position: absolute;
  right: 24px;
}
.f_footer-btnPagetop:not(.-fixed) {
  top: -50px;
}
.f_footer-btnPagetop.-fixed {
  position: fixed;
  bottom: 15px;
}
.f_footer-btnPagetop a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0 2px;
  border-radius: 50%;
  overflow: hidden;
  transition: .3s;
}
.f_footer-btnPagetop a span {
  display: none;
  text-indent: -9999px;
}
.f_footer-btnPagetop a:before,
.f_footer-btnPagetop a:after {
  content: "";
  display: block;
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: scale(1, 0.8) rotate(45deg);
  transition: .3s;
}
.f_footer-btnPagetop a:before {
  top: 12px;
}
.f_footer-btnPagetop a:after {
  top: 17px;
}

@media screen and (min-width: 768px) {
  /* hover */
  .f_footer-btnPagetop a:hover {
    background: #111;
    opacity: 1;
  }
  .f_footer-btnPagetop a:hover:before,
  .f_footer-btnPagetop a:hover:after {
    border-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .f_footer-btnPagetop {
    right: 13px;
  }
  .f_footer-btnPagetop:not(.-fixed) {
    top: -60px;
  }
  .f_footer-btnPagetop.-fixed {
    bottom: 25px;
  }
}

/* footer-nav
-------------------------------------------------*/
.f_footer-nav {
  display: flex;
  justify-content: flex-end;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-bottom: 20px;
}
.f_footer-nav > li + li {
  margin-left: 20px;
}
.f_footer-nav > li a {
  font-size: 1.4rem;
}
.f_footer-nav > li a.-blank {
  position: relative;
  padding-right: 16px;
}
.f_footer-nav > li a.-blank:before,
.f_footer-nav > li a.-blank:after {
  content: "";
  display: block;
  position: absolute;
  transition: .3s;
}
.f_footer-nav > li a.-blank:before {
  top: calc(50% - 7px);
  right: 5px;
  width: 1px;
  height: 13px;
  background: #888;
  transform: rotate(45deg);
}
.f_footer-nav > li a.-blank:after {
  top: calc(50% - 6px);
  right: 0;
  width: 9px;
  height: 9px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #888;
  transform: none;
}
.f_footer-nav > li a.-blank:hover:before,
.f_footer-nav > li a.-blank:hover:after {
  translate: 2px -2px;
}

@media screen and (max-width: 767px) {
  .f_footer-nav {
    flex-direction: column;
    justify-content: flex-start;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin: 30px 0;
  }
  .f_footer-nav > li + li {
    margin: 5px 0 0;
  }
}

/* footer-SNS
-------------------------------------------------*/
.f_footer-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.f_footer-sns > li {
  width: 24px;
}
.f_footer-sns > li + li {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .f_footer-sns {
    justify-self: end;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .f_footer-sns > li {
    width: 20px;
  }
  .f_footer-sns > li + li {
    margin-left: 20px;
  }
}

/* footer-info
-------------------------------------------------*/
.f_footer-info {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}
.f_footer-info-name {
  display: none;
}
.f_footer-info-copyright {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .f_footer-info {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
  .f_footer-info-name {
    display: block;
    margin-bottom: 5px;
    font-size: 2.2rem;
    color: #555;
    font-weight: bold;
  }
}
