@charset "utf-8";

/** ***************************************************************************
 * 表示エフェクト
 * ************************************************************************* */

[class*="displayed"] {
  transition:
    transform 1.0s ease-in-out 0.0s,
    visibility 1.0s ease-in-out 0.0s,
    opacity 1.0s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

[class*="displayed"][data-delay="0.125"] {
  transition-delay: 0.125s !important;
}

[class*="displayed"][data-delay="0.25"] {
  transition-delay: 0.25s !important;
}

[class*="displayed"][data-delay="0.375"] {
  transition-delay: 0.375s !important;
}

[class*="displayed"][data-delay="0.5"] {
  transition-delay: 0.5s !important;
}

[class*="displayed"][data-delay="0.625"] {
  transition-delay: 0.625s !important;
}

[class*="displayed"][data-delay="0.75"] {
  transition-delay: 0.75s !important;
}

[class*="displayed"].window-in {
  transform: translate(0);
  visibility: visible;
  opacity: 1;
}

/** ***************************************************************************
 * 1
 */

.displayed-1 {
  transform: translate(-10px, -1px) rotate(0.1deg) skew(-1deg, -5deg);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .displayed-1 {
    transform: translate(-10px, 10px) rotate(100deg) skew(40deg, -10deg);
  }

  .displayed-1.window-in {
    transform: translate(0) rotate(90deg) !important;
  }

}

/** ***************************************************************************
 * 2
 */

.displayed-2 {
  transform: translate(-5px, -5px) rotate(2deg) skew(-8deg, -5deg);
}

/** ***************************************************************************
 * 3
 */

.displayed-3 {
  transform: translate(-30px, 10px) rotate(4deg) skew(-10deg, -5deg);
}

/** ***************************************************************************
 * 4
 */

.displayed-4 {
  transform: translate(-30px, 10px) rotate(4deg) skew(-10deg, -5deg);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .displayed-4 {
    transform: translate(-16px, 1px) rotate(0.02deg) skew(0.2deg, 14deg);
  }

}

/** ***************************************************************************
 * 5
 */

.displayed-5 {
  transform: translate(-15px, 5px) rotate(19deg) skew(1deg, -20deg);
}

/** ***************************************************************************
 * 6
 */

.displayed-6 {
  transform: translateY(50px);
  visibility: hidden;
  opacity: 0;
}

/** ***************************************************************************
 * image
 */

.displayed-image {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.displayed-image i {
  max-width: none;
  position: absolute;
  z-index: 1;
  top: -10%;
  left: -10%;
  transform-origin: center center;
  transition:
    width 1.5s ease-in-out 0.5s,
    height 1.5s ease-in-out 0.5s,
    top 1.5s ease-in-out 0.5s,
    left 1.5s ease-in-out 0.5s,
    transform 0.3s ease-in-out 0.0s;
  width: 120%;
  height: 120%;
  transform: scale(1.0);
}

.displayed-image.window-in i {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.displayed-image.window-in:hover i {
  transform: scale(0.95);
}

/** ***************************************************************************
 * ボタン
 * ************************************************************************* */

[class*="button-style-"] {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 0;
  font: inherit;
  text-decoration: none !important;
  vertical-align: middle;
  display: inline-block;
  background-color: transparent;
  box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
}

[class*="button-style-"]::-webkit-search-decoration {
  display: none;
}

[class*="button-style-"]::focus {
  outline-offset: -2px;
}

/** ***************************************************************************
 * 1
 */

.button-style-1 {
  padding: 0.25em 15px 0.375em 95px;
  cursor: default;
  color: #ccc;
  font-family: 'NotoSerifCJKjp';
  font-size: 1.125em;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.button-style-1[href] {
  cursor: pointer;
  transition:
    color 0.3s ease-in-out 0.0s,
    background-color 0.3s ease-in-out 0.0s;
  color: inherit;
  background-color: transparent;
}

.button-style-1[href]:hover {
  color: #fff;
  background-color: #000;
}

.button-style-1::before {
  content: '';
  width: 62px;
  height: 9px;
  background: url("../image/_common/icon-arrow-2.png") 0 0 / 100% 100% no-repeat;
  position: absolute;
  z-index: 1;
  top: 1em;
  left: 15px;
  transition:
    filter 0.3s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.0s;
  filter: invert(0.0);
  opacity: 0.3;
}

.button-style-1[href]::before {
  opacity: 1.0;
}

.button-style-1[href]:hover::before {
  filter: invert(1.0);
  opacity: 1.0;
}

.button-style-1::after {
  content: 'coming soon';
  margin-top: 5px;
  margin-left: 5px;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: 'NotoSansCJKjp';
  font-size: 0.625em;
  text-align: left;
  display: block;
}

.button-style-1[href]::after {
  content: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  .button-style-1 {
    font-size: 1.125em;
  }

}

/** ***************************************************************************
 * リスト
 * ************************************************************************* */

/** ***************************************************************************
 * ul
 */

ul[class],
ul[class] li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/** ***************************************************************************
 * ol
 */

ol[class],
ol[class] li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/** ***************************************************************************
 * dl
 */

dl[class],
dl[class] dt,
dl[class] dd {
  margin: 0;
  padding: 0;
}

/** ***************************************************************************
 * 表示／非表示
 * ************************************************************************* */

p + [sp] + [pc] {
  margin-top: 1.5em;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (max-width:736px) {

  [pc] {
    display: none !important;
  }

}

@media print, screen and (min-width:737px) {

  [sp] {
    display: none !important;
  }

}
