/* =============================================================

Custom Properties

* ============================================================= */
/* color
============================== */
:root {
  /* text color */
  --base-color: #44403f;
  /* border color */
  --border-color:#bebebe;
  /* bg color */
  --bg-color:#f5f5f5;
  /* key color */
  --key-color:  #fccf00;
  /* color */
  --white:#fff;
  --black: #333;
  --grey:#7e7775;
  --red: #f53942;
  --light-grey:#cbc8c8;
}

/* size / font
============================== */
:root {
  --header-height: 80px;
  --max-width: 1920;
  --max-width-px: calc(var(--max-width) * 1px);
  --inner-width: 1080;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc(10px + var(--slope-1px) * 10);
  --base-border-radius:10px;
  --frame-border-radius: calc(22px + var(--slope-1px) * 28);
  --ovall-radius:calc(1px / 0);
  /* font */
  --line-height: 1.556;
  --leading-trim:  calc((1em - 1lh) / 2);
  --is-support-lh: initial;
  --is-support-not-lh: "";
  /* family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: "Jost", "Noto Sans JP", sans-serif;
  /* animation */
  --button-animation:cubic-bezier(.455, .03, .515, .955);
  --pop-animation:cubic-bezier(.175, .885, .32, 1.275);
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 55px;
  }
}

:root:has(.l-sticky) {
  --sticky-height:60px;
}

@media screen and (max-width: 767px) {
  :root:has(.l-sticky) {
    --sticky-height:54px;
  }
}

:root :where(:lang(en)) {
  --leading-trim: var(--is-support-lh, calc((1cap - 1lh) / 2)) var(--is-support-not-lh, 0px);
}

@supports not (top: 1lh) {
  :root :where(:root) {
    --is-support-lh: "";
    --is-support-not-lh: initial;
  }
}

/* utility
============================== */
:root {
  --vw: 1vw;
  --vh: 1vh;
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
}

:root {
  /* svg icon */
  --icon-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M1.40526 13.1895L0 11.7842L5.18948 6.59474L0 1.40526L1.40526 0L8 6.59474L1.40526 13.1895Z" fill="white"/></svg>');
  --icon-plus: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M10.8 18H13.2V13.2H18V10.8H13.2V6H10.8V10.8H6V13.2H10.8V18ZM12 24C10.34 24 8.78 23.685 7.32 23.055C5.86 22.425 4.59 21.57 3.51 20.49C2.43 19.41 1.575 18.14 0.945 16.68C0.315 15.22 0 13.66 0 12C0 10.34 0.315 8.78 0.945 7.32C1.575 5.86 2.43 4.59 3.51 3.51C4.59 2.43 5.86 1.575 7.32 0.945C8.78 0.315 10.34 0 12 0C13.66 0 15.22 0.315 16.68 0.945C18.14 1.575 19.41 2.43 20.49 3.51C21.57 4.59 22.425 5.86 23.055 7.32C23.685 8.78 24 10.34 24 12C24 13.66 23.685 15.22 23.055 16.68C22.425 18.14 21.57 19.41 20.49 20.49C19.41 21.57 18.14 22.425 16.68 23.055C15.22 23.685 13.66 24 12 24ZM12 21.6C14.68 21.6 16.95 20.67 18.81 18.81C20.67 16.95 21.6 14.68 21.6 12C21.6 9.32 20.67 7.05 18.81 5.19C16.95 3.33 14.68 2.4 12 2.4C9.32 2.4 7.05 3.33 5.19 5.19C3.33 7.05 2.4 9.32 2.4 12C2.4 14.68 3.33 16.95 5.19 18.81C7.05 20.67 9.32 21.6 12 21.6Z" fill="white"/></svg>');
  --icon-cross: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='currentColor' fill-rule='evenodd' d='M2.9,7.2h4.4V2.9c0,0,0-.2,0-.3,0,0,0-.2.2-.2.2-.2.4-.2.6-.2s.4,0,.6.2c0,0,.1.1.2.2,0,0,0,.2,0,.3v4.4s4.4,0,4.4,0c.2,0,.4,0,.5.2.1.2.2.4.2.6s0,.4-.2.6c0,0-.2.1-.2.2,0,0-.2,0-.3,0h-4.3s0,4.3,0,4.3c0,0,0,.2,0,.3,0,0,0,.2-.2.2-.2.2-.4.2-.6.2s-.4,0-.6-.2c0,0-.1-.1-.2-.2,0,0,0-.2,0-.3v-4.4s-4.4,0-4.4,0c-.2,0-.4,0-.5-.2-.2-.2-.2-.4-.2-.6s0-.4.2-.6c.1-.1.3-.2.5-.2Z'/></svg>");
}

/* =============================================================

base

* ============================================================= */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  background: url(../img/bg.png) center top repeat;
  font-size: 62.5%;

  touch-action: manipulation;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--base-color);
  letter-spacing: .03em;
  font-weight: 500;
  font-size: calc(1.4rem + var(--slope-1px)*2);
  font-family: var(--base-font-family);
  font-feature-settings: "palt";
  line-height: var(--line-height);
  -webkit-text-size-adjust: 100%;
}

:where(img, svg) {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--base-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none;
}

a.js-tel._active {
  text-decoration: underline;
}

a.js-tel._inactive {
  color: var(--base-color);
  text-decoration: none;
}

:where(button) {
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}

*[data-anchor-id] {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

*[data-toggle-id] {
  display: none;
}

/* =============================================================

wrapper

* ============================================================= */
/* l-wrapper
============================== */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  transition: opacity .4s ease-out;
}

@media print {
  .l-wrapper {
    min-width: 1080px;
  }
}

body.is-loaded .l-wrapper {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    min-width: 0;
  }
}

/* =============================================================

header

* ============================================================= */
/* l-header
============================== */
.l-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding-inline: 45px;
  background: #fff;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, .15);
}

@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: var(--inner-padding);
  }
}

/* l-header-logo
============================== */
.l-header-logo {
  display: block;
  width: calc(220px + var(--slope-1px) * 62);
}

/* =============================================================

main

* ============================================================= */
/* main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  padding: 0;

  container-type: inline-size;
}

/* =============================================================

footer

* ============================================================= */
/* l-footer
============================== */
.l-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(70px + var(--slope-1px) * 20);
  background: var(--base-color);
  color: var(--light-grey);
  text-align: center;
  font-weight: 400;
  font-size: calc(11px + var(--slope-1px) * 1);
}

/* =============================================================

Loader

* ============================================================= */
.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url(/assets/img/logo-kitakanto.png) 50% 50%/300px auto no-repeat var(--bg-color);
  perspective: 10rem;
  transition: all .4s ease-in;
}

body.is-loaded .l-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================= *

navigation

* ============================================================= */
/* c-button
============================== */
.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25.875em;
  height: calc(44px + var(--slope-1px) * 16);
  max-width: 100%;
  margin-inline: auto;
  border: 0;
  background: var(--icon-arrow) top 50% right 14px/8px 14px no-repeat var(--black);
  box-shadow: 0 5px 3px 0 rgba(0, 0, 0, .25);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: calc(15px + var(--slope-1px) * 1);
  transition: all .2s ease-out;
}

@media (any-hover: hover) {
  .c-button:hover {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .25);
    filter: brightness(1.2);
    transform: translateY(2px);
  }
}

/* ============================================================= *

section

* ============================================================= */
/* c-section
============================== */
.c-section {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(32px + var(--slope-1px) * 16);
  padding-block: calc(60px + var(--slope-1px) * 40);
}

.c-section:not(._bg) + .c-section:not(._bg) {
  padding-top: calc(20px + var(--slope-1px) * 30);
}

.c-section._bg {
  background: url(../img/bg.png) center top repeat, linear-gradient(270deg, #c4c4c4 0%, #f6f6f6 30%, #fff 49.52%, #f6f6f6 70%, #c4c4c4 100%);
}

.c-section._speed {
  position: relative;
}

.c-section._speed:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg-speed.png) top right/100% auto no-repeat transparent;

  background-blend-mode: luminosity;
}

.c-section._speed-2 {
  position: relative;
}

.c-section._speed-2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg-speed-2.png) top right/100% auto repeat-y transparent;

  background-blend-mode: luminosity;
}

.c-section > * {
  position: relative;
  z-index: 1;
  width: calc(var(--inner-width-px) + var(--inner-padding) * 2);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/* ============================================================= *

table

* ============================================================= */
/* c-x-scroll-container
=============================== */
.c-x-scroll-container {
  position: relative;
  overflow: auto;
  width: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 15px) 0 0/50px 100%, linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fff 15px) right/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) right/20px 100%;
  background-color: #fff;
  background-attachment: local, scroll, local, scroll;
  background-repeat: no-repeat;
}

.c-x-scroll-container > * {
  min-width: 45em;
}

@media screen and (max-width: 768px) {
  .c-x-scroll-container {
    width: calc(100% + var(--inner-padding) * 2);
    margin-inline: calc(var(--inner-padding) * -1);
    padding-inline: var(--inner-padding);
  }
}

/* c-schedule
============================== */
.c-schedule {
  width: 100%;
  border-collapse: collapse;
  font-weight: 700;
  font-size: calc(16px + var(--slope-1px) * 2);
}

.c-schedule thead th {
  padding: calc(20px + var(--slope-1px) * 2);
  background: var(--key-color);
  text-align: left;
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 2);
  line-height: 1;
}

.c-schedule tbody :is(th, td) {
  padding-block: 18px;
  padding-left: 22px;
  line-height: 1;
}

.c-schedule tbody tr:first-child :is(th, td) {
  padding-top: 40px;
}

.c-schedule tbody td:last-child {
  padding-right: 22px;
  color: var(--red);
}

/* c-table
============================== */
.c-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.c-table :is(th, td) {
  min-height: 71px;
  padding: 10px 12px;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
}

.c-table thead th {
  background: var(--key-color);
}

/* ============================================================= *

Text

* ============================================================= */
/* c-comingsoon
============================== */
.c-comingsoon {
  padding: 1em;
  background: linear-gradient(270deg, #c4c4c4 0%, #f6f6f6 30%, #fff 49.52%, #f6f6f6 70%, #c4c4c4 100%);
  text-align: center;
  font-weight: 700;
  font-size: calc(24px + var(--slope-1px) * 6);
  font-family: var(--en-font-family);
}

/* ============================================================= *

title

* ============================================================= */
/* c-section-title
============================== */
.c-section-title {
  display: grid;
  align-items: center;
  grid-template-columns: 100%;
  gap: 1em;
  padding-block: 10px;
  padding-left: 30px;
  background: conic-gradient(var(--base-color) 90deg, #fff 90deg 180deg, var(--base-color) 180deg 270deg, #fff 270deg) left top/10px 10px repeat-y;
  font-weight: 700;
  font-size: calc(15px + var(--slope-1px) * 1);
  line-height: 1;
}

.c-section-title[data-en]:before {
  content: attr(data-en);
  font-weight: 700;
  font-size: calc(28px + var(--slope-1px) * 12);
  font-family: var(--en-font-family);
  line-height: .8;
}

/* ============================================================= *

index.html

* ============================================================= */
/* p-index-hero
============================== */
.p-index-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: calc(100% / 1366 * 50) calc(100% / 1366 * 33);
  background: url(../img/mv_flag.jpg) center left/cover no-repeat;
}

.p-index-hero__image {
  width: calc(100% / 1366 * 740);
  margin-left: auto;
}

.p-index-hero__text {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% / 1366 * 574);
  margin-left: calc(100% / 1366 * 76);
  transform: translateY(-50%);
}

/* p-index-intro
============================== */
.p-index-intro {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(32px + var(--slope-1px) * 8);
  padding-block: calc(60px + var(--slope-1px) * 30) calc(75px + var(--slope-1px) * 25);
  padding-inline: var(--inner-padding);
  background: url(../img/intro_flag.png) 50% 50%/auto 100% no-repeat, url(../img/bg.png) center top repeat, linear-gradient(270deg, #c4c4c4 0%, #f6f6f6 30%, #fff 49.52%, #f6f6f6 70%, #c4c4c4 100%);
}

.p-index-intro__head {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(40px + var(--slope-1px) * 16);
}

.p-index-intro__logo {
  width: calc(180px + var(--slope-1px) * 47);
  margin-inline: auto;
}

.p-index-intro__title {
  margin-block: var(--leading-trim);
  text-align: center;
  font-weight: 700;
  font-size: calc(24px + var(--slope-1px) * 10);
  font-family: var(--en-font-family);
}

.p-index-intro__body {
  display: grid;
  grid-template-columns: 100%;
  gap: 2.5em;
  text-align: center;
  line-height: 1.75;
}

.p-index-intro__body > p {
  margin-block: var(--leading-trim);
}

/* p-index-cars
============================== */
.p-index-cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(60px + var(--slope-1px) * 20) calc(40px + var(--slope-1px) * 10);
}

@media screen and (max-width: 768px) {
  .p-index-cars {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.p-index-cars__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: 100%;
  grid-row: span 2;
  gap: 18px;
}

.p-index-cars__image {
  max-width: 325px;
  margin-inline: auto;
}

.p-index-cars__text {
  display: grid;
  align-self: flex-start;
  grid-template-columns: 100%;
  gap: 20px;
  word-break: break-all;
}

.p-index-cars__head {
  margin-block: var(--leading-trim);
  font-weight: 700;
  font-size: calc(21px + var(--slope-1px) * 3);
}

.p-index-cars__body {
  margin-bottom: var(--leading-trim);
  padding-top: calc(16px + var(--leading-trim));
  border-top: 1px solid;
}

/* p-index-members
============================== */
.p-index-members {
  display: grid;
  grid-template-columns: 100%;
  gap: 48px;
}

.p-index-members__item {
  position: relative;
  z-index: 1;
}

/* p-index-member
============================== */
.p-index-member {
  display: grid;
  align-items: center;
  grid-template-columns: 326px 1fr;
  gap: 30px calc(22px + var(--slope-1px) * 43);
}

@media screen and (max-width: 768px) {
  .p-index-member {
    grid-template-columns: 100%;
  }
}

.p-index-member__image {
  max-width: 326px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-index-member__image {
    max-width: 50%;
  }
}

.p-index-member__text {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  gap: 28px;

  container-type: inline-size;
}

.p-index-member__head {
  display: grid;
  grid-template-columns: 100%;
  gap: 18px;
}

.p-index-member__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px calc(16px + var(--slope-1px) * 4);
  font-weight: 700;
  line-height: 1;
}

.p-index-member__name ._jp {
  font-size: calc(26px + var(--slope-1px) * 6);
}

.p-index-member__name ._en {
  font-size: calc(15px + var(--slope-1px) * 1);
}

.p-index-member__cars {
  margin-block: var(--leading-trim);
  font-weight: 700;
  font-size: calc(15px + var(--slope-1px) * 1);
}

.p-index-member__sign {
  height: auto;
  max-width: 238px;
  margin-left: auto;
}

.p-index-member__sign._otogawa {
  max-width: 154px;
}

@container (min-width: 610px) {
  .p-index-member__sign {
    position: absolute;
    top: 0;
    right: 40px;
  }
  .p-index-member__sign._otogawa {
    top: auto;
    bottom: 100%;
    transform: translateY(70%);
  }
}

@media screen and (max-width: 768px) {
  .p-index-member__sign {
    position: absolute;
    top: auto;
    right: 10px;
    bottom: calc(100% + 30px);
    width: 25%;
  }
}

.p-index-member__sign img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.p-index-member__message:before {
  content: "Message";
  display: block;
  margin-bottom: calc(16px + var(--slope-1px) * 6);
  padding-bottom: calc(16px + var(--slope-1px) * 6);
  border-bottom: 2px solid;
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 6);
  font-family: var(--en-font-family);
  line-height: .8;
}

@media screen and (max-width: 768px) {
  .p-index-member__message:before {
    border-bottom-width: 1px;
  }
}

.p-index-member__message > p {
  margin-block: var(--leading-trim);
  font-weight: 400;
  line-height: 1.75;
}

/* ============================================================= *

archive.html

* ============================================================= */
/* p-archive-title
============================== */
.p-archive-title {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

/* p-archive-section
============================== */
.p-archive-section {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  gap: calc(70px + var(--slope-1px) * 34);
  padding-block: calc(60px + var(--slope-1px) * 20);
}

.p-archive-section:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  aspect-ratio: 1366/1450;
  margin-top: calc(100% / 1366 * -450);
  background: url(../img/bg-speed-3.png) top right/100% auto no-repeat transparent;
}

.p-archive-section__head {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(20px + var(--slope-1px) * 5);
  width: calc(var(--inner-width-px) + var(--inner-padding) * 2);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--inner-padding);
  text-align: center;

  container-type: inline-size;
}

.p-archive-section__head > span {
  display: block;
  font-weight: 700;
  font-size: calc(100cqi / 1120 * 98);
  font-family: var(--en-font-family);
  line-height: .8;
}

.p-archive-section .c-section {
  padding-block: 0;
}

/* p-archive-gallery
============================== */
.p-archive-gallery {
  position: relative;
  margin-top: calc(32px + var(--slope-1px) * 16);
}

.p-archive-gallery__body {
  overflow: hidden;
  height: 580px;
  padding-bottom: 100px;
}

.p-archive-gallery__toggle {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  overflow: visible;
  width: 100%;
  height: 80px;
  outline: none;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 8);
  line-height: 1;
  transition: all .4s;
  appearance: none;
}

.p-archive-gallery__toggle:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 362px;
  background: linear-gradient(0deg, #333 11.54%, rgba(60, 60, 60, .96) 27.88%, rgba(85, 85, 85, .83) 44.71%, rgba(117, 117, 117, .67) 56.73%, rgba(255, 255, 255, 0) 100%);
  transition: all .4s;
}

.p-archive-gallery__toggle span {
  position: relative;
  z-index: 1;
}

.p-archive-gallery__toggle ._close {
  display: none;
}

.p-archive-gallery__toggle.is-expanded {
  background: #333;
}

.p-archive-gallery__toggle.is-expanded:before {
  opacity: 0;
  pointer-events: none;
}

.p-archive-gallery__toggle.is-expanded ._open {
  display: none;
}

.p-archive-gallery__toggle.is-expanded ._close {
  display: block;
}

.p-archive-gallery__toggle:after {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background: currentColor;
  mask: var(--icon-plus) 50% 50%/contain no-repeat;
  transition: rotate .4s;
}

.p-archive-gallery__toggle.is-expanded:after {
  rotate: 45deg;
}

/* p-archive-gallery-list
============================== */
.p-archive-gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-archive-gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================= *

Utility

* ============================================================= */
/* Media Query Setting
====================================== */
.u-tablet-block {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-tablet-block {
    display: block !important;
  }
}

.u-tablet-inline-block {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-tablet-inline-block {
    display: inline-block !important;
  }
}

.u-tablet-flex {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-tablet-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 768px) {
  .u-tablet-none {
    display: none !important;
  }
}

.u-mobile-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-block {
    display: block !important;
  }
}

.u-mobile-inline-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-inline-block {
    display: inline-block !important;
  }
}

.u-mobile-flex {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 560px) {
  .u-mobile-none {
    display: none !important;
  }
}

/* text align
====================================== */
.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-center {
  text-align: center !important;
}

/* display
====================================== */
.u-d-block {
  display: block !important;
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

/* position
====================================== */
.u-pos-static {
  position: static !important;
}

.u-pos-relative {
  position: relative !important;
}

.u-pos-absolute {
  position: absolute !important;
}

.u-pos-fixed {
  position: fixed !important;
}

/* clear
====================================== */
.u-clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

/* other
====================================== */
.u-strong {
  font-weight: bold !important;
}

.u-pointer {
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.u-color-honda {
  color: #cc0000 !important;
}

.u-color-ciao {
  color: #0068b6 !important;
}

.u-color-mamoru {
  color: #8fc31f !important;
}

.u-rotate-90 {
  transform: rotate(90deg);
}

/* animationn
====================================== */
.u-no-transition {
  transition: none !important;
}
