@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: #ffffd3; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 24px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

main {
  padding-top: 182px; }
  @media only screen and (max-width: 1440px) {
    main {
      padding-top: 12.63888889vw; } }
  @media only screen and (max-width: 767px) {
    main {
      padding-top: 155px; } }

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding-top: 68px; }
  @media only screen and (max-width: 767px) {
    .header {
      padding-top: 0;
      height: 90px; } }
  .header .inner {
    max-width: 1366px; }
  .header.headerTop.display .header__logo {
    opacity: 1; }
  .header.headerTop .header__logo {
    opacity: 0;
    transition: opacity 1s, width .3s; }
    @media only screen and (max-width: 767px) {
      .header.headerTop .header__logo {
        opacity: 1; } }
  .header__logo {
    width: 800px;
    display: block;
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: width .3s; }
    @media only screen and (max-width: 1440px) {
      .header__logo {
        width: 55.55555556vw; } }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 257px;
        top: 58px;
        left: 50%;
        transform: translate(-50%, 0%); } }
    .header__logo.small {
      width: 270px; }
      @media only screen and (max-width: 767px) {
        .header__logo.small {
          width: 146px; } }
  .header .gnav {
    width: 100%;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        position: fixed;
        height: 100svh;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        visibility: hidden;
        opacity: 0;
        transition: opacity .3s, visibility .3s;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column; } }
    @media only screen and (max-width: 767px) {
      .header .gnav.is-active {
        visibility: visible;
        opacity: 1; } }
    .header .gnav__list {
      display: flex; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list {
          display: block;
          text-align: center; } }
      .header .gnav__list:nth-of-type(1) li {
        margin-right: 40px; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list:nth-of-type(1) li {
            margin-right: 0; } }
      .header .gnav__list:nth-of-type(2) li {
        margin-left: 40px; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list:nth-of-type(2) li {
            margin-left: 0; } }
      .header .gnav__list li {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.02em;
        font-family: "pf-grand-gothik-variable", sans-serif;
        font-variation-settings: 'wdth' 125, 'wght' 700, 'ital' 0; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li {
            font-size: 32px;
            font-size: 3.2rem;
            margin-bottom: 40px;
            color: #ffffcd; } }
        .header .gnav__list li.disable {
          pointer-events: none;
          opacity: 0.3; }
  .header .hamburger {
    position: fixed;
    top: 28px;
    right: 14px;
    padding: 10px;
    z-index: 151; }
    .header .hamburger.is-active .hamburger__inner span {
      background: #ffffcd; }
      .header .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
        top: 6px;
        transform: rotate(20deg); }
      .header .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
        bottom: 0px;
        transform: rotate(-20deg); }
    .header .hamburger__inner {
      width: 32px;
      height: 8px;
      position: relative; }
      .header .hamburger__inner span {
        width: 32px;
        height: 2px;
        display: block;
        background: #000;
        position: absolute;
        left: 0;
        transition: transform .3s, background-color .3s; }
        .header .hamburger__inner span:nth-of-type(1) {
          top: 0; }
        .header .hamburger__inner span:nth-of-type(2) {
          bottom: 0; }

.c-title02 {
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 0.59055;
  font-family: "pf-grand-gothik-variable", sans-serif;
  font-variation-settings: 'wdth' 125, 'wght' 500, 'ital' 0; }
  @media only screen and (max-width: 767px) {
    .c-title02 {
      font-size: 15px;
      font-size: 1.5rem; } }

.c-linkArrow {
  width: 100%;
  height: 67px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 67px; }
  @media only screen and (max-width: 767px) {
    .c-linkArrow {
      height: 35px;
      border-radius: 35px; } }
  @media only screen and (min-width: 768px) {
    .c-linkArrow:hover .c-linkArrow__wrap {
      width: calc(100% - 78px); }
    .c-linkArrow:hover i {
      width: 67px;
      border-left: 2px solid #000;
      border-color: #000;
      border-radius: 67px; } }
  .c-linkArrow__wrap {
    width: 100%;
    height: 67px;
    display: flex;
    align-items: center;
    border-radius: 67px;
    padding-left: 36px;
    border: 2px solid #000;
    padding-top: 5px;
    transition: width .2s; }
    @media only screen and (max-width: 767px) {
      .c-linkArrow__wrap {
        height: 35px;
        border-radius: 35px;
        font-size: 15px;
        font-size: 1.5rem;
        justify-content: center;
        padding-left: 0; } }
  .c-linkArrow i {
    width: 101px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 67px 67px 0;
    border: 2px solid transparent;
    border-left: none;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: all .2s; }
    @media only screen and (max-width: 767px) {
      .c-linkArrow i {
        display: none; } }
    .c-linkArrow i img {
      width: 27px; }

.c-column3 {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .c-column3 {
      display: block; } }
  @media only screen and (min-width: 768px) {
    .c-column3.column2 li {
      width: 48%; } }
  .c-column3 li {
    width: 29.9377916%; }
    @media only screen and (max-width: 767px) {
      .c-column3 li {
        width: 100%;
        margin-bottom: 46px; } }
    @media only screen and (max-width: 767px) {
      .c-column3 li:last-of-type {
        margin-bottom: 0; } }
    .c-column3 li .ttl {
      padding-bottom: 14px;
      border-bottom: 2px solid #000;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-column3 li .ttl {
          padding-bottom: 10px;
          margin-bottom: 18px; } }
    .c-column3 li .text {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.02em;
      line-height: 1.83333333; }
      @media only screen and (max-width: 767px) {
        .c-column3 li .text {
          font-size: 10px;
          font-size: 1rem;
          letter-spacing: 0.01em;
          line-height: 1.7; } }
      .c-column3 li .text .jp {
        margin-bottom: 24px;
        letter-spacing: 0.05em; }
        @media only screen and (max-width: 767px) {
          .c-column3 li .text .jp {
            margin-bottom: 18px; } }
      .c-column3 li .text .en {
        letter-spacing: 0.05em; }
      .c-column3 li .text p em {
        font-variation-settings: 'wdth' 100, 'wght' 900, 'ital' 0; }
      .c-column3 li .text p a {
        font-variation-settings: 'wdth' 100, 'wght' 900, 'ital' 0;
        line-height: 1.1;
        display: inline-block;
        border-bottom: 2px solid #000; }

.c-head {
  padding-bottom: 64px; }
  @media only screen and (max-width: 767px) {
    .c-head {
      padding-bottom: 25px; } }
  .c-head .inner {
    max-width: 1366px; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.brands .whole {
  padding: 106px 0 76px; }
  @media only screen and (max-width: 767px) {
    body.brands .whole {
      padding: 0 24px 25px; } }

@media only screen and (max-width: 767px) {
  body.brands .brandsSlider {
    overflow: visible; } }

body.brands .brandsSlider .brandsSliderWrapper {
  transition-timing-function: linear !important;
  opacity: 0; }
  @media only screen and (max-width: 767px) {
    body.brands .brandsSlider .brandsSliderWrapper {
      display: block;
      position: relative;
      width: 100%; } }
  body.brands .brandsSlider .brandsSliderWrapper.load {
    opacity: 1; }

@media only screen and (max-width: 767px) {
  body.brands .brandsSlider .grid-sizer {
    width: calc((100% - 22px) / 2); } }

@media only screen and (max-width: 767px) {
  body.brands .brandsSlider .gutter-sizer {
    width: 22px; } }

body.brands .brandsSlider .brandsSliderSlide {
  width: 368px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer; }
  @media only screen and (max-width: 767px) {
    body.brands .brandsSlider .brandsSliderSlide {
      width: calc((100% - 22px) / 2);
      margin-bottom: 21px; } }
  body.brands .brandsSlider .brandsSliderSlide:hover .box .image img:nth-of-type(2) {
    opacity: 1; }
  body.brands .brandsSlider .brandsSliderSlide .box {
    height: auto;
    display: block;
    cursor: auto; }
  body.brands .brandsSlider .brandsSliderSlide .image {
    position: relative;
    cursor: grab; }
    body.brands .brandsSlider .brandsSliderSlide .image img {
      transition: opacity .3s; }
      body.brands .brandsSlider .brandsSliderSlide .image img:nth-of-type(2) {
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0; }
    body.brands .brandsSlider .brandsSliderSlide .image:active {
      cursor: grabbing; }
  body.brands .brandsSlider .brandsSliderSlide .text {
    text-align: right;
    font-size: 26px;
    font-size: 2.6rem;
    letter-spacing: 0.02em;
    font-family: "pf-grand-gothik-variable", sans-serif;
    font-variation-settings: 'wdth' 125, 'wght' 500, 'ital' 0;
    margin-top: 16px; }
    @media only screen and (max-width: 767px) {
      body.brands .brandsSlider .brandsSliderSlide .text {
        font-size: 10px;
        font-size: 1rem;
        margin-top: 11px;
        padding-right: 4px; } }

body.contact .mainvisual .contactSlider .swiper-wrapper {
  transition-timing-function: linear !important; }
  body.contact .mainvisual .contactSlider .swiper-wrapper .swiper-slide {
    width: 340vw;
    width: 570px; }
    @media only screen and (max-width: 767px) {
      body.contact .mainvisual .contactSlider .swiper-wrapper .swiper-slide {
        width: 300px; } }
    body.contact .mainvisual .contactSlider .swiper-wrapper .swiper-slide img {
      cursor: grab; }
      body.contact .mainvisual .contactSlider .swiper-wrapper .swiper-slide img:active {
        cursor: grabbing; }
    body.contact .mainvisual .contactSlider .swiper-wrapper .swiper-slide > div {
      padding-top: 96.85714286%;
      background-position: center center;
      background-size: cover;
      cursor: grab; }
      body.contact .mainvisual .contactSlider .swiper-wrapper .swiper-slide > div:active {
        cursor: grabbing; }

body.contact .info {
  padding: 84px 0 78px; }
  @media only screen and (max-width: 767px) {
    body.contact .info {
      padding: 42px 0; } }
  body.contact .info .inner {
    max-width: 1366px; }

body.contact .links .inner {
  max-width: 1366px; }

body.contact .copyright {
  padding: 80px 0 58px;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-family: "pf-grand-gothik-variable", sans-serif;
  font-variation-settings: 'wdth' 100, 'wght' 500, 'ital' 0; }
  @media only screen and (max-width: 767px) {
    body.contact .copyright {
      padding: 44px 0;
      font-size: 10px;
      font-size: 1rem; } }
  body.contact .copyright .inner {
    max-width: 1366px; }

/**

 */
@media only screen and (min-width: 768px) {
  body.top {
    background: #000; } }

@media only screen and (max-width: 767px) {
  body.top {
    overflow: hidden; } }

body.top .bgBlk {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 110; }

body.top .loading {
  width: 100vw;
  height: 100svh;
  position: relative;
  pointer-events: none; }
  @media only screen and (max-width: 767px) {
    body.top .loading {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 101; } }
  body.top .loading__bg {
    width: 100%;
    height: 100%; }
    @media only screen and (max-width: 767px) {
      body.top .loading__bg {
        background: #000; } }
  body.top .loading__logo video {
    width: 1060px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto; }
    @media only screen and (max-width: 1440px) {
      body.top .loading__logo video {
        width: 69vw; } }
    @media only screen and (max-width: 767px) {
      body.top .loading__logo video {
        width: 300px; } }
  body.top .loading__logo .logoMovie {
    width: 1060px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: opacity 1s;
    z-index: +2; }
    @media only screen and (max-width: 1440px) {
      body.top .loading__logo .logoMovie {
        width: 69vw; } }
    @media only screen and (max-width: 767px) {
      body.top .loading__logo .logoMovie {
        width: 330px;
        position: absolute;
        top: 50%;
        bottom: auto;
        transform: translate(0%, -50%);
        animation-name: logoAnim;
        animation-delay: 2.2s;
        animation-duration: 0.6s;
        animation-timing-function: linear;
        animation-fill-mode: forwards; } }
    body.top .loading__logo .logoMovie.hide {
      opacity: 0; }

@keyframes logoAnim {
  0% {
    width: 330px;
    top: 50%;
    transform: translate(0%, -50%); }
  100% {
    width: 330px;
    top: -24px;
    transform: translate(0%, 0%); } }

body.top main {
  padding-top: 217px;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 1440px) {
    body.top main {
      padding-top: 15.06944444vw; } }
  @media only screen and (max-width: 767px) {
    body.top main {
      padding-top: 155px; } }

body.top .mainvisual {
  position: relative; }
  body.top .mainvisual__image {
    padding-top: 56.10294118%;
    border-radius: 46px;
    overflow: hidden;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__image {
        margin: 22px -24px 0;
        border-radius: 0px;
        padding-top: 75.2688172%; } }
    body.top .mainvisual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    body.top .mainvisual__image video {
      min-width: 102%;
      min-height: 102%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__image video {
          width: 101%;
          min-height: 0; } }
  body.top .mainvisual__text {
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    line-height: 1.476375;
    font-family: "pf-grand-gothik-variable", sans-serif;
    font-variation-settings: 'wdth' 125, 'wght' 700, 'ital' 0;
    text-align: center;
    width: calc(100% - 80px);
    z-index: +2; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__text {
        position: static;
        transform: translate(0, 0);
        font-size: 10px;
        font-size: 1rem;
        font-weight: 600;
        margin: 0 auto;
        width: 100%;
        font-variation-settings: 'wdth' 100, 'wght' 400, 'ital' 0; } }

body.top .about {
  padding: 84px 0 78px; }
  @media only screen and (max-width: 767px) {
    body.top .about {
      padding: 42px 0; } }
  body.top .about .inner {
    max-width: 1366px; }

body.top .links .inner {
  max-width: 1366px; }
  body.top .links .inner .c-linkArrow:nth-of-type(1) {
    margin-bottom: 28px; }
    @media only screen and (max-width: 767px) {
      body.top .links .inner .c-linkArrow:nth-of-type(1) {
        margin-bottom: 20px; } }
  body.top .links .inner .c-linkArrow span {
    display: block; }

body.top .star {
  padding: 76px 0;
  text-align: center;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .star {
      padding: 45px 0; } }
  body.top .star__link {
    display: inline-block;
    cursor: pointer; }
    body.top .star__link.disable {
      pointer-events: none; }
    body.top .star__link i {
      width: 67px;
      display: block;
      margin: 0 auto 22px; }
      @media only screen and (max-width: 767px) {
        body.top .star__link i {
          width: 50px;
          margin: 0 auto 16px; } }
    body.top .star__link span {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.02em;
      line-height: 1.476375;
      font-family: "pf-grand-gothik-variable", sans-serif;
      font-variation-settings: 'wdth' 125, 'wght' 700, 'ital' 0; }
      @media only screen and (max-width: 767px) {
        body.top .star__link span {
          font-size: 10px;
          font-size: 1rem; } }
  body.top .star__popup {
    width: 470px;
    padding: 42px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid #000;
    text-align: left;
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translate(-50%, 40px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, transform .3s;
    z-index: 100; }
    @media only screen and (max-width: 767px) {
      body.top .star__popup {
        width: calc(100% - 24px);
        bottom: 150px;
        padding: 24px; } }
    body.top .star__popup.active {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0px); }
    body.top .star__popup strong {
      font-size: 30px;
      font-size: 3rem;
      letter-spacing: 0.02em;
      font-family: "pf-grand-gothik-variable", sans-serif;
      font-variation-settings: 'wdth' 125, 'wght' 500, 'ital' 0;
      display: block;
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        body.top .star__popup strong {
          font-size: 24px;
          font-size: 2.4rem;
          margin-bottom: 20px; } }
    body.top .star__popup p {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      line-height: 1.83333333; }
      @media only screen and (max-width: 767px) {
        body.top .star__popup p {
          font-size: 10px;
          font-size: 1rem;
          line-height: 1.6; } }
