@charset "UTF-8";
@import url("//fonts.googleapis.com/css?family=Cabin:600");
/*none*/
@import url("//fonts.googleapis.com/css?family=Cabin:600");
body {
  font-family: 'Cabin', "Noto Sans Japanese", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-display: swap; }

/** variable
/**************************************/
/** display
/**************************************/
.onlyDesctop {
  display: block; }
  @media (max-width: 768px) {
    .onlyDesctop {
      display: none; } }

.onlyMobile {
  display: none; }
  @media (max-width: 768px) {
    .onlyMobile {
      display: block; } }

/** anchorLink
/**************************************/
.anchorLink {
  position: absolute;
  top: -110px; }

/*none*/
body {
  font-family: 'Cabin', "Noto Sans Japanese", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-display: swap; }

/** header
/**************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  min-width: 1100px;
  width: 100%;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1001;
  height: 70px;
  padding: 0 60px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  .header:after {
    content: '';
    height: 0;
    clear: both;
    visibility: hidden;
    display: block; }
  @media screen and (max-width: 1200px) {
    .header {
      padding: 0 20px; } }
  @media (max-width: 768px) {
    .header {
      min-width: 0;
      height: 50px;
      padding: 0;
      padding-right: 5.3333333333%;
      padding-left: 5.3333333333%;
      box-sizing: border-box; } }
  @media (max-width: 768px) and (min-width: 769px) {
    .header {
      padding-right: 0px;
      padding-left: 0px; } }
  .page-life .header,
  .page-onePeace2 .header {
    position: static; }
  .header-wrap {
    position: relative; }
    .header-wrap:after {
      content: '';
      height: 0;
      clear: both;
      visibility: hidden;
      display: block; }
  .header-logo {
    float: left;
    background-image: url("/assets/img/common/logo.svg");
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat; }
    @media (min-width: 769px) {
      .header-logo {
        width: 150px;
        height: 31px;
        margin-top: 20px; } }
    @media (max-width: 768px) {
      .header-logo {
        width: 120px;
        height: 25px;
        margin-top: 14px; } }
    .header-logo a {
      display: block;
      height: 100%;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
  .header-menu {
    display: flex;
    position: absolute;
    left: 200px;
    top: 0;
    /*margin-right: 200px;
    text-align: center;
    display: flex;

    @media screen and (max-width: 1100px) {
      margin-right: 320px;
    }*/ }
    @media (max-width: 768px) {
      .header-menu {
        display: none; } }
  .header-social {
    position: absolute;
    right: 0;
    top: 21px; }
    @media (max-width: 768px) {
      .header-social {
        display: none; } }

/** globalMenu
/**************************************/
.globalMenu-item {
  display: block;
  margin-right: 25px;
  position: relative;
  z-index: 103; }
  @media screen and (max-width: 1200px) {
    .globalMenu-item {
      margin-right: 15px; } }
  .globalMenu-item > span,
  .globalMenu-item > a {
    font-size: 1.3em;
    letter-spacing: 0.05em;
    display: block;
    height: 70px;
    line-height: 70px;
    font-weight: bold; }
    .globalMenu-item > span:last-child,
    .globalMenu-item > a:last-child {
      margin-right: 0; }
    .desctop .globalMenu-item > span, .desctop
    .globalMenu-item > a {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .globalMenu-item > span:hover, .desctop
      .globalMenu-item > a:hover {
        opacity: 0.5; }
  .globalMenu-item:hover .globalMenu-child {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1; }

.globalMenu-child {
  position: absolute;
  top: 70px;
  left: 0;
  background: #f9f9f9;
  z-index: 102;
  width: 185px;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  text-align: left;
  -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
  .globalMenu-child-label {
    background-color: #222;
    color: #fff;
    padding: 10px;
    font-size: 12px; }
  .globalMenu-child a {
    display: block;
    padding: 10px 10px;
    font-size: 12px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1.5; }
    .desctop .globalMenu-child a {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .globalMenu-child a:hover {
        background: #222;
        color: #fff; }

/** trigger
/**************************************/
.trigger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  cursor: pointer;
  color: inherit;
  border: 0;
  background-color: transparent;
  position: fixed;
  right: 48px;
  top: 29px;
  z-index: 1001; }
  .page-life .trigger,
  .page-onePeace2 .trigger {
    position: absolute; }
  @media (min-width: 769px) {
    .trigger {
      display: none; } }
  @media (max-width: 768px) {
    .trigger {
      top: 13px;
      right: 5.3333333333%; } }
  .gsc-overflow-hidden .trigger {
    display: none; }
  .trigger-box {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 4px 0 0 4px; }
  .trigger-inner {
    position: absolute;
    width: 25px;
    height: 2px;
    display: block;
    background-color: #222;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .trigger-inner:before {
      top: 7px;
      display: block;
      content: "";
      position: absolute;
      width: 25px;
      height: 2px;
      background-color: #222;
      -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
      -moz-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .trigger-inner:after {
      top: 14px;
      display: block;
      content: "";
      position: absolute;
      width: 25px;
      height: 2px;
      background-color: #222;
      visibility: visible;
      -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
      -moz-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .is-opened .trigger-inner {
      transform: translate3d(0, 7px, 0) rotate(135deg); }
      .is-opened .trigger-inner:before {
        opacity: 0; }
      .is-opened .trigger-inner:after {
        transform: translate3d(0, -14px, 0) rotate(-270deg); }

/** button
/**************************************/
.button-v1 {
  border: 2px solid;
  display: block;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 13px;
  width: 100%;
  height: 40px;
  line-height: 36px;
  letter-spacing: 0.1em; }
  @media (min-width: 769px) {
    .button-v1 {
      font-size: 14px;
      width: 140px;
      height: 44px;
      line-height: 40px; } }
  .button-v1__black {
    color: #222;
    border-color: #222; }
    .desctop .button-v1__black {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .button-v1__black:hover {
        background: #222;
        color: #fff; }
  .button-v1__white {
    background: #000;
    color: #fff;
    border-color: #fff; }
    .desctop .button-v1__white {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .button-v1__white:hover {
        background: #fff;
        color: #222; }
  .button-v1__transparent {
    background: none; }
  .button-v1__instagram i {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background-size: 20px auto;
    background-image: url("/assets/img/common/icon_instagram_black.svg");
    background-repeat: no-repeat;
    background-position: left top; }
    @media (min-width: 769px) {
      .button-v1__instagram i {
        width: 18px;
        height: 18px;
        background-size: 18px auto; } }
  .desctop .button-v1__instagram {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
    .desctop .button-v1__instagram:hover i {
      background-image: url("/assets/img/common/icon_instagram.svg"); }

/** globalMenuMobile
/**************************************/
.globalMenuMobile {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .is-opened .globalMenuMobile {
    visibility: visible;
    height: 100%;
    pointer-events: auto; }
  .gsc-overflow-hidden .globalMenuMobile {
    z-index: 1002; }
  .globalMenuMobile-outer {
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
  .globalMenuMobile-list {
    padding: 0 0 40px;
    width: 73.3333333333%;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
  .globalMenuMobile-item > span,
  .globalMenuMobile-item > a {
    font-size: 15px;
    padding: 20px 0;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none; }
  .globalMenuMobile-item span {
    position: relative; }
    .globalMenuMobile-item span i {
      position: absolute;
      right: 5%;
      top: 50%;
      margin-top: -7px; }
      .globalMenuMobile-item span i:before {
        width: 7px;
        height: 7px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        display: block;
        content: ''; }
      .globalMenuMobile-item span i:before {
        -webkit-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        -o-transition: 0.3s ease-out;
        transition: 0.3s ease-out; }
    .globalMenuMobile-item span.is-opened i:before {
      -webkit-transform: rotate(315deg);
      -moz-transfrom: rotate(315deg);
      -ms-transform: rotate(315deg);
      -o-transform: rotate(315deg);
      transform: rotate(315deg); }
  .globalMenuMobile-child {
    display: none;
    border-bottom: 1px solid #e5e5e5;
    background: #f9f9f9;
    padding: 10px 0; }
    .globalMenuMobile-child-item a {
      font-size: 13px;
      display: block;
      padding: 7px 0 7px 10px;
      text-decoration: none; }
    .globalMenuMobile-child-label {
      font-size: 13px;
      display: block;
      padding: 7px 0 7px 10px;
      text-decoration: none;
      color: #fff;
      background-color: #222;
      margin: 8px 0; }
  .globalMenuMobile-social {
    text-align: center; }

/** footer
/**************************************/
.footer {
  background: #f2f2f2;
  padding: 15px 6.6666666667%;
  width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  @media (max-width: 768px) {
    .footer {
      width: 100%; } }
  @media (min-width: 769px) {
    .footer {
      padding: 90px 5.5555555556%; } }
  @media (max-width: 768px) {
    .footer {
      text-align: center; } }
  .footer-bottom:after {
    content: '';
    height: 0;
    clear: both;
    visibility: hidden;
    display: block; }
  @media (min-width: 769px) {
    .footer-logo {
      float: left;
      margin-right: 25px; } }
  @media (max-width: 768px) {
    .footer-logo {
      margin-bottom: 20px; } }
  .footer-copyright {
    font-size: 10px; }
    @media (min-width: 769px) {
      .footer-copyright {
        float: left;
        margin-top: 10px;
        font-size: 12px; } }
    @media (max-width: 768px) {
      .footer-copyright {
        margin-bottom: 30px; } }
  .footer-pageTop {
    display: block;
    width: 22px;
    height: 12px; }
    .footer-pageTop:before {
      width: 12px;
      height: 12px;
      border-top: 2px solid #222;
      border-right: 2px solid #222;
      -webkit-transform: rotate(315deg);
      transform: rotate(315deg);
      display: block;
      content: ''; }
    .desctop .footer-pageTop {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .footer-pageTop:hover {
        opacity: 0.5; }
    @media (min-width: 769px) {
      .footer-pageTop {
        left: 50%;
        position: absolute;
        margin: 10px 0 0 -11px; } }
    @media (max-width: 768px) {
      .footer-pageTop {
        margin: 20px auto;
        padding-top: 10px; } }
  @media (min-width: 769px) {
    .footer-social {
      float: right; } }
  @media (max-width: 768px) {
    .footer-social {
      border-bottom: 1px solid #e5e5e5;
      padding-bottom: 30px; } }

/** bottomMenu
/**************************************/
.bottomMenu {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px; }
  .bottomMenu:after {
    content: '';
    height: 0;
    clear: both;
    visibility: hidden;
    display: block; }
  @media (min-width: 769px) {
    .bottomMenu {
      border-bottom: 2px solid #e5e5e5;
      padding-bottom: 60px;
      margin-bottom: 60px; } }
  @media (min-width: 769px) {
    .bottomMenu-content {
      float: left;
      width: 20%; } }
  @media (min-width: 769px) {
    .bottomMenu-content:first-child {
      width: 40%; }
      .bottomMenu-content:first-child:after {
        content: '';
        height: 0;
        clear: both;
        visibility: hidden;
        display: block; } }
  @media (min-width: 769px) {
    .bottomMenu-item {
      margin-bottom: 20px; } }
  @media (max-width: 768px) {
    .bottomMenu-item {
      text-align: center; } }
  .bottomMenu-item a {
    font-weight: bold;
    font-size: 12px; }
    .desctop .bottomMenu-item a {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .bottomMenu-item a:hover {
        opacity: 0.5; }
    @media (min-width: 769px) {
      .bottomMenu-item a {
        font-size: 14px; } }
    @media (max-width: 768px) {
      .bottomMenu-item a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #e5e5e5; } }
  .bottomMenu-subColumn:after {
    content: '';
    height: 0;
    clear: both;
    visibility: hidden;
    display: block; }
  @media (max-width: 768px) {
    .bottomMenu-subColumn {
      display: none; } }
  .bottomMenu-sub {
    float: left;
    width: 50%; }
    .bottomMenu-sub-item {
      margin-bottom: 10px; }
      .bottomMenu-sub-item a {
        font-size: 12px;
        color: #999; }
        .desctop .bottomMenu-sub-item a {
          -webkit-transition: 0.3s ease-out;
          -moz-transition: 0.3s ease-out;
          -o-transition: 0.3s ease-out;
          transition: 0.3s ease-out; }
          .desctop .bottomMenu-sub-item a:hover {
            color: #222; }

/** socialButton
/**************************************/
.socialButton:after {
  content: '';
  height: 0;
  clear: both;
  visibility: hidden;
  display: block; }

.socialButton a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top; }
  .socialButton a:last-child {
    margin-right: 0; }
  .socialButton a.socialButton__cart {
    margin-right: 20px; }
  .desctop .socialButton a {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
    .desctop .socialButton a:hover {
      opacity: 0.5; }

.socialButton__myPage {
  width: 28px;
  height: 28px;
  background-image: url("/assets/img/common/icon_mypage.svg"); }
  @media (max-width: 768px) {
    .footer .socialButton__myPage {
      display: none !important; } }

.socialButton__cart {
  width: 28px;
  height: 22px;
  background-image: url("/assets/img/common/icon_cart.svg"); }
  @media (max-width: 768px) {
    .footer .socialButton__cart {
      display: none !important; } }

.socialButton__search {
  width: 28px;
  height: 22px;
  background-image: url("/assets/img/common/icon_search.svg");
  position: relative; }
  @media (max-width: 768px) {
    .footer .socialButton__search {
      display: none !important; } }

.socialButton__facebook, .socialButton__twitter, .socialButton__instagram, .socialButton__youtube {
  width: 28px;
  height: 28px;
  background: #222;
  position: relative;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }
  .socialButton__facebook:before, .socialButton__twitter:before, .socialButton__instagram:before, .socialButton__youtube:before {
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.socialButton__facebook:before {
  width: 12px;
  height: 12px;
  left: 54%;
  background-image: url("/assets/img/common/icon_facebook.svg"); }

.socialButton__twitter:before {
  width: 14px;
  height: 11px;
  background-image: url("/assets/img/common/icon_twitter.svg"); }

.socialButton__instagram:before {
  width: 14px;
  height: 11px;
  background-image: url("/assets/img/common/icon_instagram.svg"); }

.socialButton__youtube:before {
  width: 12px;
  height: 10px;
  background-image: url("/assets/img/common/icon_youtube.svg"); }

.socialButton-title {
  font-weight: bold;
  display: block;
  font-size: 10px; }
  @media (min-width: 769px) {
    .socialButton-title {
      vertical-align: middle;
      display: inline-block;
      margin-right: 20px;
      font-size: 12px; } }
  @media (max-width: 768px) {
    .socialButton-title {
      margin-bottom: 10px; } }

/** homeContents
/**************************************/
.homeContents {
  position: relative;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .homeContents:after {
    content: '';
    height: 0;
    clear: both;
    visibility: hidden;
    display: block; }
  @media (max-width: 768px) {
    .homeContents {
      width: 89.3333333333%;
      margin-left: auto;
      margin-right: auto;
      position: relative; } }
  .homeContents a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; }
  .desctop .homeContents {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
  .homeContents-core {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media (max-width: 768px) {
      .homeContents-core {
        width: 50%; } }
  .homeContents-content {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    @media (max-width: 768px) {
      .homeContents-content {
        height: 250px;
        width: 100%; } }
    @media screen and (max-width: 480px) {
      .homeContents-content {
        height: 200px; } }
    .homeContents-content:nth-child(even) {
      float: right; }
    .homeContents-content:nth-child(odd) {
      float: left; }
    .desctop .homeContents-content {
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .desctop .homeContents-content:hover .button-v1 {
        background: #fff;
        color: #222; }
  .homeContents.movie .homeContents-content, .homeContents.shopList .homeContents-content, .homeContents.friends .homeContents-content {
    position: relative; }
    .homeContents.movie .homeContents-content:after, .homeContents.shopList .homeContents-content:after, .homeContents.friends .homeContents-content:after {
      content: '';
      background: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 0;
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
  @media (min-width: 769px) {
    .homeContents-image {
      width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); } }
  .homeContents-image img {
    width: 100%;
    height: auto;
    -webkit-transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 2s cubic-bezier(0.23, 1, 0.32, 1); }
  .homeContents-title {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    position: relative;
    font-weight: bold; }
    @media (min-width: 769px) {
      .homeContents-title {
        font-size: 40px;
        margin-bottom: 30px; } }

/** shopList
/**************************************/
.shopList {
  margin: 70px auto 30px;
  background-image: url("/assets/img/home/shop_photo.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  @media (max-width: 768px) {
    .shopList {
      margin: 35px auto 15px; } }
  .shopList-logo {
    margin-bottom: 20px; }
    @media (min-width: 769px) {
      .shopList-logo {
        margin-bottom: 40px; } }
    @media (max-width: 768px) {
      .shopList-logo img {
        width: 100%;
        height: auto; } }
  .shopList-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff; }
    @media (min-width: 769px) {
      .shopList-title {
        font-size: 26px;
        margin-bottom: 40px; } }

/** friends
/**************************************/
.friends {
  background-image: url("/assets/img/home/friends_photo.jpg"); }
  @media (max-width: 768px) {
    .friends {
      margin-bottom: 30px; } }

/** movie
/**************************************/
.movie {
  background-image: url("/assets/img/home/movie_photo.jpg"); }

/** searchBox
/**************************************/
.socialButton .searchBox {
  position: absolute;
  width: 300px;
  top: 49px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }

.globalMenuMobile .searchBox {
  margin-top: 60px;
  width: 73.3333333333%;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.is-searchOpened .searchBox {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  padding: 10px 10px 5px 10px;
  background: #fff; }

.searchBox .gsib_a {
  padding: 2px 6px; }

.searchBox .gsc-control-cse {
  padding: 0;
  border: none; }

.searchBox .gsc-search-button-v2 {
  background: #222;
  border: none;
  cursor: pointer;
  border-radius: 0 !important;
  height: 47px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }

.searchBox .gsc-input {
  padding: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  font-size: 14px !important;
  color: #222 !important;
  height: 30px !important;
  -webkit-appearance: none !important;
  text-indent: 0 !important; }
  .searchBox .gsc-input-box {
    box-shadow: none !important; }

/** result
/**************************************/
.gsc-results-wrapper-overlay {
  width: 90% !important;
  left: 5% !important;
  top: 20px !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

.gsc-adBlock {
  display: none !important; }

@media (max-width: 768px) {
  .gsc .gs-web-image-box,
  .gsc .gs-promotion-image-box {
    float: none !important; } }

@media (max-width: 768px) {
  .gsc-thumbnail {
    display: block !important;
    width: 100% !important;
    float: none !important; } }

@media (max-width: 768px) {
  .gsc-thumbnail a {
    display: block !important; } }

@media (max-width: 768px) {
  .gsc-thumbnail .gs-image {
    width: 100% !important;
    display: block !important; } }

@media (max-width: 768px) {
  .gsc-thumbnail .gs-image-box {
    width: 100% !important;
    margin-bottom: 10px; } }

@media (max-width: 768px) {
  .gsc-table-cell-snippet-close {
    display: block !important;
    width: 100% !important;
    float: none !important; } }

@media (max-width: 768px) {
  .gs-title {
    line-height: 1.4 !important; } }

.gsc-result {
  margin-bottom: 10px !important;
  padding-bottom: 25px !important;
  border-bottom: 1px solid #e4e4e4 !important; }
  .gsc-result:hover {
    border: 1px solid #fff !important;
    border-bottom: 1px solid #e4e4e4 !important; }

.gsc-thumbnail-inside {
  padding: 0 0 0 0 !important; }

.gsc-result .gs-title {
  height: auto !important; }

.gs-title {
  color: #333 !important;
  margin-bottom: 5px;
  font-weight: bold;
  text-decoration: underline !important;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  .gs-title b {
    color: #cd0911 !important; }
  .gs-title:hover {
    opacity: .7; }

.gsc-url-top {
  padding: 0 0 10px 0 !important; }

.gs-image-box {
  width: 190px !important; }

.gs-snippet {
  font-size: 13px !important;
  line-height: 1.8 !important; }

.gs-image {
  width: 160px !important;
  max-width: none !important;
  max-height: none !important;
  height: auto; }

.gsc-cursor-box {
  margin-top: 40px !important; }
  .gsc-cursor-box .gsc-cursor {
    padding: 10px 0 0;
    position: relative;
    text-align: center;
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap; }
    .gsc-cursor-box .gsc-cursor .gsc-cursor-page {
      display: block !important;
      margin: 0 2px 5px;
      font-size: 14px;
      width: 32px;
      height: 32px;
      line-height: 32px;
      display: block;
      background: #eee !important;
      color: #333 !important;
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
      .gsc-cursor-box .gsc-cursor .gsc-cursor-page:hover {
        background: #d0d0d0 !important;
        text-decoration: none !important; }
      .gsc-cursor-box .gsc-cursor .gsc-cursor-page.gsc-cursor-current-page {
        background: #222 !important;
        color: #fff !important; }

/** common
/**************************************/
.header {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .header a {
    text-decoration: none; }
  .header > * {
    font-family: 'Trebuchet MS', "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, Helvetica, Arial, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }

.footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .footer a {
    text-decoration: none; }
  .footer > * {
    font-family: 'Trebuchet MS', "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, Helvetica, Arial, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }

@media (min-width: 769px) {
  #Content {
    padding-top: 70px; } }

.globalMenu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .globalMenu > * {
    font-family: 'Trebuchet MS', "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, Helvetica, Arial, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
  .globalMenu-item > span,
  .globalMenu-item > a {
    font-size: 13px; }
  .globalMenu-child a {
    font-weight: normal;
    line-height: 1.5; }

@media (max-width: 768px) {
  div#Page {
    margin-top: 50px; } }

/** friends modal
/**************************************/
#ModalWindow {
  z-index: 1002; }

@media (max-width: 768px) {
  #ModalContents {
    width: 100% !important;
    left: 0 !important;
    margin-left: 0 !important; } }

#ModalContents #ModalCloseBtn {
  bottom: auto;
  top: 20px; }

.modalFriends {
  padding: 30px; }
  @media (max-width: 768px) {
    .modalFriends {
      padding: 0; } }
  .modalFriends-wrap {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 768px) {
      .modalFriends-wrap {
        display: block;
        padding-top: 10px;
        width: 89.3333333333%;
        margin-left: auto;
        margin-right: auto;
        position: relative; } }
  .modalFriends-photo {
    width: 50%; }
    @media (max-width: 768px) {
      .modalFriends-photo {
        width: 70%;
        margin: 0 auto; } }
  .modalFriends-content {
    padding: 40px 20px;
    width: 50%; }
    .is-single .modalFriends-content {
      display: flex;
      justify-content: center;
      align-items: center; }
    @media (max-width: 768px) {
      .modalFriends-content {
        padding: 10px 0 20px;
        width: 100%; } }
  .modalFriends-title {
    text-align: center;
    font-size: 24px; }
    @media (max-width: 768px) {
      .modalFriends-title {
        font-size: 18px; } }
  .modalFriends-country {
    text-align: center;
    font-size: 14px;
    margin-bottom: 40px; }
    .is-single .modalFriends-country {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .modalFriends-country {
        font-size: 12px;
        margin-bottom: 10px; } }

.is-single .modalFriendsPhoto {
  display: flex;
  justify-content: center;
  align-items: center; }

.modalFriendsPhoto-image img {
  width: 100%;
  height: auto; }

.modalFriendsPhoto-main-slide .slick-track {
  display: flex;
  justify-content: center;
  align-items: center; }

.modalFriendsPhoto-main-slide .slick-slide img {
  width: 100%;
  height: auto; }

.modalFriendsPhoto-main-slide .slick-dots {
  display: none !important; }

.modalFriendsPhoto-thumb {
  margin-top: 10px; }
  .modalFriendsPhoto-thumb-slide .slick-track {
    display: flex; }
  .modalFriendsPhoto-thumb-slide .slick-slide {
    cursor: pointer;
    margin-right: 5px;
    width: 69px;
    height: 69px;
    overflow: hidden;
    position: relative; }
    .modalFriendsPhoto-thumb-slide .slick-slide img {
      width: auto;
      height: 100%;
      left: 50%;
      position: absolute;
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
    .modalFriendsPhoto-thumb-slide .slick-slide:last-child {
      margin-right: 0; }

@media (max-width: 768px) {
  .modalFriendsItem {
    display: flex;
    justify-content: space-between; } }

.modalFriendsItem-image {
  width: 200px;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .modalFriendsItem-image {
      width: 30%; } }
  .modalFriendsItem-image img {
    width: 100%;
    height: auto; }

.modalFriendsItem-content {
  text-align: center; }
  @media (max-width: 768px) {
    .modalFriendsItem-content {
      width: 50%; } }

.modalFriendsItem-title {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.6; }
  @media (min-width: 769px) {
    .modalFriendsItem-title {
      font-size: 16px;
      margin-bottom: 10px; } }

.modalFriendsItem-price {
  font-size: 12px;
  line-height: 1.4;
  color: #999; }
  @media (min-width: 769px) {
    .modalFriendsItem-price {
      font-size: 14px;
      line-height: 1.6; } }

.modalFriendsItem-button {
  margin: 40px auto 0;
  text-decoration: none !important;
  font-size: 14px; }
  @media (max-width: 768px) {
    .modalFriendsItem-button {
      height: 30px;
      line-height: 30px;
      margin-top: 10px;
      width: 80%;
      font-size: 12px; } }

/** concept
/**************************************/
@media (max-width: 768px) {
  #MV .img.is-pc {
    display: none; } }

#MV .img.is-sp {
  display: none; }
  @media (max-width: 768px) {
    #MV .img.is-sp {
      width: 200px;
      margin: 30px auto 0 !important;
      display: block; } }
  #MV .img.is-sp img {
    width: 100%;
    height: auto; }

/** news
/**************************************/
#Main .newsDetailMore {
  margin-top: 60px;
  text-decoration: none;
  line-height: 44px !important; }
  @media (max-width: 768px) {
    #Main .newsDetailMore {
      margin-top: 30px; } }

/*# sourceMappingURL=legacy.css.map */