@charset "UTF-8";


/*---------------------------------------------------------------*\
$scroll hint
\*---------------------------------------------------------------*/

.hint {
  width: 160px;
  aspect-ratio: 1/0.75;
  background-color: rgba(0, 0, 0, .6);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: opacity 0.3s ease;
}

.hint .icon_hint {
  width: 28px;
  height: 28px;
  animation: slideArrow 2s infinite ease-in-out;
  margin: 0 auto 8px 76px;
}

.hint .text_hint {
  font-size: 13px;
}

@keyframes slideArrow {

  0% {
    transform: translateX(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    transform: translateX(-20px);
    opacity: 1;
  }

  100% {
    transform: translateX(-20px);
    opacity: 0;
  }
}


@media (min-width: 1281px) {

  #table .content .hint {
    display: none !important;
  }
}


@media (min-width: 961px) {

  #body_article .scrollable-image .hint {
    display: none !important;
  }
}


/*---------------------------------------------------------------*\
$button hover effects
\*---------------------------------------------------------------*/

/* primary button */
.primary_button {
  width: 260px;
  position: relative;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: none;
}

.primary_button span {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.primary_button span:after {
  content: attr(data-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: 100%;
  color: transparent;
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.primary_button:hover span {
  color: #fff;
}

.primary_button:hover span:after {
  opacity: 1;
}

.primary_button:before {
  content: '';
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, #ee0063 0%, #f828ff 100%);
  border-radius: 50%;
  filter: blur(50px);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.primary_button:hover:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.primary_button:hover {
  background-color: #2c00ee;
  transform: translateY(2px);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.6),
    inset 0 0 40px rgba(255, 255, 255, 0.8);
}

/* primary button alternative */
.primary_button_alternative {
  width: 260px;
  position: relative;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: none;
}

.primary_button_alternative span {
  position: relative;
  transition: opacity 0.3s ease-out;
  z-index: 1;
  font-size: 16px;
}

.primary_button_alternative span:after {
  content: attr(data-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: 100%;
  color: transparent;
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.primary_button_alternative:hover span {
  color: #fff;
}

.primary_button_alternative:hover span:after {
  opacity: 1;
}

.primary_button_alternative:before {
  content: '';
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, #00bce6 0%, #8a0cff 100%);
  border-radius: 50%;
  filter: blur(50px);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.primary_button_alternative:hover:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.primary_button_alternative:hover {
  background-color: rgba(255, 255, 255, .3);
  transform: translateY(2px);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.6),
    inset 0 0 40px rgba(255, 255, 255, 0.8);
}

/* secondary button */
.secondary_button {
  width: 260px;
  position: relative;
  overflow: hidden;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: none;
}

.secondary_button span {
  transition: opacity 0.3s ease-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.secondary_button span:after {
  content: attr(data-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: 100%;
  color: transparent;
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 200;
}

.secondary_button:hover span {
  color: #fff;
}

.secondary_button:hover span:after {
  opacity: 1;
}

.secondary_button:before {
  content: '';
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, #ee0063 0%, #f828ff 100%);
  border-radius: 50%;
  filter: blur(50px);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.secondary_button:hover {
  background-color: #2c00ee;
  transform: translateY(2px);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.6),
    inset 0 0 40px rgba(255, 255, 255, 0.8);
}

.secondary_button:hover:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}


@media screen and (max-width: 600px) {

  .primary_button span,
  .primary_button_alternative span,
  .secondary_button span {
    font-size: 14px;
  }
}


/*---------------------------------------------------------------*\
$animation
\*---------------------------------------------------------------*/

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__delay-0_1s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.animate__animated.animate__delay-0_2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.animate__animated.animate__delay-0_3s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animate__animated.animate__delay-0_4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animate__animated.animate__delay-0_5s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate__animated.animate__delay-0_6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animate__animated.animate__delay-0_7s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animate__animated.animate__delay-0_8s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animate__animated.animate__delay-0_9s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}


/* fadeIn */
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* fadeInUp */
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/* fadeInDown */
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/* fadeInLeft */
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {

  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {

  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*---------------------------------------------------------------*\
  アニメーション共通（Safari対策込み）
\*---------------------------------------------------------------*/

/* 初期状態 */
.anm {
  opacity: 0;
  transform: translateY(8px);
  /* 下からフェードイン */
  transition: opacity .45s ease, transform .45s ease;
  transition-delay: var(--d, 0s);
  /* 遅延は CSS変数で管理 */
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* 発火後の状態 */
.anm.go {
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------------------------------------------*\
  遅延クラス
\*---------------------------------------------------------------*/

.anm.delay-0_1s {
  --d: 0.1s;
}

.anm.delay-0_2s {
  --d: 0.2s;
}

.anm.delay-0_3s {
  --d: 0.3s;
}

.anm.delay-0_4s {
  --d: 0.4s;
}

.anm.delay-0_5s {
  --d: 0.5s;
}

.anm.delay-0_6s {
  --d: 0.6s;
}

.anm.delay-0_7s {
  --d: 0.7s;
}

.anm.delay-0_8s {
  --d: 0.8s;
}

.anm.delay-0_9s {
  --d: 0.9s;
}

.anm.delay-1s {
  --d: 1s;
}

.anm.delay-1_1s {
  --d: 1.1s;
}

.anm.delay-1_2s {
  --d: 1.2s;
}

.anm.delay-1_3s {
  --d: 1.3s;
}

.anm.delay-1_4s {
  --d: 1.4s;
}

.anm.delay-1_5s {
  --d: 1.5s;
}


/*---------------------------------------------------------------*\
  フェードタイプ（必要に応じて translateYを変更）
\*---------------------------------------------------------------*/
.anm.fadeIn {
  transform: translateY(0);
}

.anm.fadeInUp {
  transform: translateY(100%);
}

.anm.fadeInDown {
  transform: translateY(-100%);
}


/*---------------------------------------------------------------*\
$width limit
\*---------------------------------------------------------------*/

.width_limit_1440 {
  max-width: 1440px;
}

.width_limit_1280 {
  max-width: 1280px;
}

.width_limit_1080 {
  max-width: 1080px;
}

.width_limit_960 {
  max-width: 960px;
}

.width_limit_860 {
  max-width: 860px;
}

.width_limit_760 {
  max-width: 760px;
}

.width_limit_600 {
  max-width: 600px;
}


/*---------------------------------------------------------------*\
$[NEW]word break
\*---------------------------------------------------------------*/

.br_on_600 {
  display: none !important;
}

.br_on_760 {
  display: none !important;
}

.br_on_860 {
  display: none !important;
}

.br_on_960 {
  display: none !important;
}

.br_on_1080 {
  display: none !important;
}

.br_on_1280 {
  display: none !important;
}

.br_off_600 {
  display: inline !important;
}

.br_off_760 {
  display: inline !important;
}

.br_off_860 {
  display: inline !important;
}

.br_off_960 {
  display: inline !important;
}

.br_off_1080 {
  display: inline !important;
}

.br_off_1280 {
  display: inline !important;
}


@media screen and (max-width: 1280px) {

  .br_on_1280 {
    display: inline !important;
  }

  .br_off_1280 {
    display: none !important;
  }
}

@media screen and (max-width: 1080px) {

  .br_on_1080 {
    display: inline !important;
  }

  .br_off_1080 {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {

  .br_on_960 {
    display: inline !important;
  }

  .br_off_960 {
    display: none !important;
  }
}

@media screen and (max-width: 860px) {

  .br_on_860 {
    display: inline !important;
  }

  .br_off_860 {
    display: none !important;
  }
}

@media screen and (max-width: 760px) {

  .br_on_760 {
    display: inline !important;
  }

  .br_off_760 {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {

  .br_on_600 {
    display: inline !important;
  }

  .br_off_600 {
    display: none !important;
  }
}


/*---------------------------------------------------------------*\
$background image
\*---------------------------------------------------------------*/

.bg_autoHeight {
  --ratio: 1;
  /* JSで上書きされる */
  width: 100%;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_autoHeight::before {
  content: "";
  display: block;
  padding-top: calc(var(--ratio) * 100%);
  /* 高さ = 幅 × ratio */
}


/*---------------------------------------------------------------*\
$for screenreader
\*---------------------------------------------------------------*/

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/*---------------------------------------------------------------*\
$firstview - 通常の下層ページ
\*---------------------------------------------------------------*/

#firstview_general {
  width: calc(100% - 112px);
  padding: 180px 0 100px;
  margin: 0 auto;
  gap: 40px;
}

/* content */
#firstview_general .catch {
  font-size: 72px;
  line-height: 1.3;
  letter-spacing: -.5px;
}


@media screen and (max-width: 1080px) {

  #firstview_general {
    width: calc(100% - 80px);
  }
}


@media screen and (max-width: 600px) {

  #firstview_general {
    width: calc(100% - 56px);
    padding: 100px 0 64px;
    gap: 20px;
  }

  /* content */
  #firstview_general .catch {
    font-size: 30px;
  }
}


/*---------------------------------------------------------------*\
$breadcrumbs
\*---------------------------------------------------------------*/

.breadcrumbs {
  width: 100%;
  display: flex;
  gap: 8px;
  border-bottom: solid 1px rgba(0, 0, 0, .1);
  padding: 0 0 20px 0;
}

.breadcrumbs * {
  font-size: 15px;
}

.breadcrumbs a {
  text-decoration: underline !important;
}

.breadcrumbs>span {
  white-space: nowrap;
}

.breadcrumbs>span:last-child {
  width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px 0 0 0;
  display: none;
}

.breadcrumbs>a {
  text-decoration: underline !important;
}


@media screen and (max-width: 600px) {

  .breadcrumbs {
    gap: 4px;
    padding: 0 0 12px 0;
  }

  .breadcrumbs * {
    font-size: 11px;
  }
}


/*---------------------------------------------------------------*\
$page navi
\*---------------------------------------------------------------*/

.wp-pagenavi {
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  font-size: 13px;
}

.wp-pagenavi span:first-of-type {
  background-color: #D9E3F5;
  border: solid 1px #D9E3F5;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #000;
  border-color: #000;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #000;
  border-color: #000;
  font-weight: bold;
}


@media screen and (max-width: 600px) {

  .wp-pagenavi a, .wp-pagenavi span {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }
}


/*---------------------------------------------------------------*\
$underline
\*---------------------------------------------------------------*/

.u_effect_w {
  display: inline;
  background: linear-gradient(0deg, #fff, #fff) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  text-decoration: none;
  color: inherit;
  padding-bottom: 2px;
  --bg-h: 1px;
}

.u_effect_b {
  display: inline;
  background: linear-gradient(0deg, #000, #000) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  text-decoration: none;
  color: inherit;
  padding-bottom: 2px;
  --bg-h: 1px;
}

.u_wrap:where(:hover, :focus-visible) .u_effect_w,
.u_wrap:where(:hover, :focus-visible) .u_effect_b {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}


/*---------------------------------------------------------------*\
$icons
\*---------------------------------------------------------------*/

.icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon path {
  width: 100%;
  height: auto;
}


/*---------------------------------------------------------------*\
$reset styles
\*---------------------------------------------------------------*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}

a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  outline: none;
}

ul, li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

figure {
  margin: 0;
  height: fit-content;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

span, i, time, picture, a {
  display: block;
}

em {
  font-style: normal;
}

section p.description>a {
  display: inline;
  text-decoration: underline;
}


/*---------------------------------------------------------------*\
$clearfix
\*---------------------------------------------------------------*/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/*---------------------------------------------------------------*\
$block/inline
\*---------------------------------------------------------------*/

.inline_block {
  display: inline-block;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.vertical_middle {
  vertical-align: middle;
}


/*---------------------------------------------------------------*\
$all,html,body,layout
\*---------------------------------------------------------------*/

* {
  color: #000;
  font-size: 18px;
  box-sizing: border-box;
  line-height: 1;
  border-radius: 0;
}

html {
  /* lenisをfooterまで動かすために必要 */
  height: auto !important;
  /* lenisの挙動を担保するために必要 */
  scroll-behavior: auto !important;
  /* scroll-behavior: smooth; */
  margin: 0 !important;
}

body {
  font-family: "Inter Tight", "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", HelveticaNeue, "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI",
    Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

body.fadein {
  opacity: 1;
}

body.fadeout {
  opacity: 0;
}

main {
  position: relative;
}


/*---------------------------------------------------------------*\
$images and movies
\*---------------------------------------------------------------*/

img, canvas, iframe, video {
  border: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

img, svg {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}


/*---------------------------------------------------------------*\
$transition
\*---------------------------------------------------------------*/

.transition {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}


/*---------------------------------------------------------------*\
$typefaces
\*---------------------------------------------------------------*/

body.is_ja .font_black {
  font-weight: 725;
}

body.is_en .font_black {
  font-weight: 680;
}

body.is_ja .font_bold,
body.is_en .font_bold {
  font-weight: 600;
}

.inter_semibold {
  font-family: "Inter Tight", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 680;
}


/*---------------------------------------------------------------*\
$word break
\*---------------------------------------------------------------*/

/* on */
.break_on_sp {
  display: none;
}

.break_on_tablet {
  display: none;
}

.break_off_tablet {
  display: block;
}

/* off */
.break_off_sp {
  display: block;
}


/*---------------------------------------------------------------*\
$content hide
\*---------------------------------------------------------------*/

@media screen and (max-width: 600px) {

  /* on */
  .hide_on_sp {
    display: none;
  }

  /* off */
  .break_off_sp {
    display: none;
  }
}


/*---------------------------------------------------------------*\
$overflow
\*---------------------------------------------------------------*/

.hidden {
  overflow: hidden;
}


/*---------------------------------------------------------------*\
$flex
\*---------------------------------------------------------------*/

.flex {
  display: flex;
}

.inline_flex {
  display: inline-flex;
}

.flex_col {
  flex-direction: column;
}

.flex_col_reverse {
  flex-direction: column-reverse;
}

.flex_row_reverse {
  flex-direction: row-reverse;
}

.flex_wrap {
  flex-wrap: wrap;
}

.justify_between {
  justify-content: space-between;
}

.justify_center {
  justify-content: center;
}

.justify_start {
  justify-content: flex-start;
}

.justify_end {
  justify-content: flex-end;
}

.items_center {
  align-items: center;
}

.items_start {
  align-items: flex-start;
}

.items_end {
  align-items: flex-end;
}

.items_baseline {
  align-items: baseline;
}

.items_stretch {
  align-items: stretch;
}


/* grid */
.grid {
  display: grid;
}

.grid_1fr {
  grid-template-columns: 1fr;
}

.grid_2fr {
  grid-template-columns: repeat(2, 1fr);
}

.grid_3fr {
  grid-template-columns: repeat(3, 1fr);
}

.grid_4fr {
  grid-template-columns: repeat(4, 1fr);
}


@media screen and (max-width: 1400px) {

  .grid_3fr {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (max-width: 860px) {

  .grid_2fr,
  .grid_3fr {
    grid-template-columns: 1fr;
  }
}


/*---------------------------------------------------------------*\
$text align
\*---------------------------------------------------------------*/

.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}


/*---------------------------------------------------------------*\
$line height
\*---------------------------------------------------------------*/

.line_mini {
  line-height: 1.4;
}

.line_p {
  line-height: 1.8;
}

.line_ex {
  line-height: 2.2;
}

.line_max {
  line-height: 3;
}


/*---------------------------------------------------------------*\
$colors
\*---------------------------------------------------------------*/

.primary_black {
  background-color: #000;
}

.primary_white {
  background-color: #fff;
  background-clip: padding-box;
}

.primary_green {
  background-color: #00FF37;
}

.primary_dark_gray {
  background-color: #bbb;
}

.primary_linear {
  background: linear-gradient(to right, #DF41D2 0%, #F41C93 50%, #FF9644 100%);
}

.primary_linear_green {
  background: linear-gradient(to right, #74FA5C 0%, #DBFF00 100%);
}

.primary_kandji {
  background-color: #ffbc00;
}


/*---------------------------------------------------------------*\
$shadow
\*---------------------------------------------------------------*/

.shadow {
  box-shadow: 0px 10px 40px rgb(0 0 0 / 10%);
}

.shadow_s {
  box-shadow: 0px 10px 32px rgb(0 0 0 / 8%);
}

.shadow_l {
  box-shadow: 0px 10px 40px rgb(0 0 0 / 30%);
}


/*---------------------------------------------------------------*\
$font colors
\*---------------------------------------------------------------*/

.font_white {
  color: #fff;
}

.font_green {
  color: #22d700;
}

.font_gray {
  color: #888;
}

.font_linear {
  background: linear-gradient(to right, #DF41D2 0%, #F41C93 50%, #FF9644 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.font_linear_green {
  background: linear-gradient(to right, #74FA5C 0%, #DBFF00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.font_linear_blue {
  background: linear-gradient(45deg, #02F8D7, #529DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/*---------------------------------------------------------------*\
$radius
\*---------------------------------------------------------------*/

.radius_s {
  border-radius: 8px;
}

.radius {
  border-radius: 16px;
}

.radius_l {
  border-radius: 28px;
}

.radius_lTopRight {
  border-top-right-radius: 26px;
}

.radius_lTopLeft {
  border-top-left-radius: 26px;
}

.radius_lBottomRight {
  border-bottom-right-radius: 26px;
}

.radius_lBottomLeft {
  border-bottom-left-radius: 26px;
}

.radius_xl {
  border-radius: 56px;
}

.radius_round {
  border-radius: 50%;
}

.radius_button {
  border-radius: calc(infinity * 1px);
}


/* form */
input::placeholder,
textarea::placeholder {
  color: #aaa;
}


/* form - IE */
input:-ms-input-placeholder,
input:-ms-textarea-placeholder {
  color: #aaa;
}


/* form - Edge */
input::-ms-input-placeholder,
input:-ms-textarea-placeholder {
  color: #aaa;
}


/* input */
input[type="search"],
input[type="button"],
input[type="submit"],
input[type="reset"] select,
textarea,
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-weight: inherit;
  outline: none;
  border: none;
  background-color: #FFF;
}

input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="file"],
input[type="image"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
select,
textarea {
  display: block;
}

input[type="color"],
input[type="file"],
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  cursor: pointer;
}

input[type="color"],
input[type="file"],
input[type="image"] {
  border: none;
  background-color: transparent;
}

select {
  text-indent: 0.01px;
  text-overflow: '';
  background-image: url(./under_arrow.svg);
  background-position: 100% center;
  background-repeat: no-repeat;
  padding: 0 20px 0 10px;
}

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

textarea {
  overflow: auto;
  display: block;
  resize: vertical;
}


@media screen and (max-width: 960px) {

  /* word break */
  .break_on_tablet {
    display: block;
  }

  .break_off_tablet {
    display: none;
  }
}


@media screen and (max-width: 860px) {

  /* common */
  * {
    font-size: 16px;
  }
}


@media screen and (max-width: 600px) {

  /* common */
  * {
    font-size: 14px;
  }

  /* word break */
  .break_on_sp {
    display: block;
  }
}