@charset "UTF-8";
/* =============================================================

Custom Properties

* ============================================================= */
:root {
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --header-height: 65px;
  --inner-width: 800;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc(15px + var(--slope-1px) * 10);
  /* family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: Lato, sans-serif;
}

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

Base

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

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(180deg, rgb(250 253 255), rgb(251 200 0));
  background-attachment: fixed;
  color: #000;
  letter-spacing: .03em;
  font-size: 1.6rem;
  font-family: var(--base-font-family);
  font-feature-settings: "palt";
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
  margin-inline: auto;
}

img[src$=".svg"] {
  opacity: 0;
}

a {
  color: inherit;
  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: inherit;
  text-decoration: none;
}

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

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

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

*[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateY(20px);
}

*[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateY(0);
}

*.js-itrsec-right[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateX(0);
}

*.js-itrsec-left[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateX(0);
}

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

l-wrapper

* ============================================================= */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  max-width: var(--inner-width-px);
  margin: 0 auto;
  padding: 0;
  background: #efefef;
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
}

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

Header

* ============================================================= */
/* header
=============================== */
.l-header {
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  margin: 0 auto;
  background: #fff
}

.l-header__logo {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 80%;
  margin: auto 0;
}

.l-header__logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
  max-width: 100%;
  transition: opacity .25s;
}

.l-header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__logo a:hover {
  opacity: .6;
}

@media screen and (max-width: 560px) {
  .l-header{
    height: 50px;
  }
  .l-header__logo{
    max-width: 60%;
  }
}


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

main

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

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

Footer

* ============================================================= */
/* l-footer
============================== */
.l-footer {
  padding: 1.5em var(--inner-padding);
  background: #333;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}

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

Sticky

* ============================================================= */
/* l-sticky-nav
============================== */
.l-sticky-nav {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(15px + var(--slope-1px) * 15);
  width: 100%;
  padding: calc(10px + var(--slope-1px) * 10) var(--inner-padding);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  background-color: #000;
  box-shadow: 0 0 10px 2px rgba(99, 99, 99, .2);
}

.l-sticky-nav.is-show {
  opacity: 1;
  pointer-events: auto;
}

/* l-sticky-button-container
============================== */
.l-sticky-button-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

/* l-sticky-button
============================== */
.l-sticky-button {
  display: block;
  transition: all .3s ease-out;
}

.l-sticky-button:hover {
  opacity: .7;
}

/* l-sticky-toggle-button
============================== */
.l-sticky-toggle-button {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(6px + var(--slope-1px) * 6);
  outline: none;
  border: 0;
  border-radius: 0;
  background: none;
  color: inherit;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-sticky-toggle-button:hover {
  opacity: .7;
}

.l-sticky-toggle-button__icon {
  position: relative;
  display: block;
  width: calc(23.5px + var(--slope-1px) * 23.5);
  height: calc(1.5px + var(--slope-1px) * 1.5);
  margin: var(--margin) 0;
  border-radius: 3px;
  background: #000;
  transition: all .4s;

  --margin: calc(6.5px + var(--slope-1px) * 6.5);
}

body.is-menu-open .l-sticky-toggle-button__icon {
  background: transparent;
}

.l-sticky-toggle-button__icon:before, .l-sticky-toggle-button__icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #000;
  transition: translate .2s .2s, rotate .2s;
}

body.is-menu-open .l-sticky-toggle-button__icon:before, body.is-menu-open .l-sticky-toggle-button__icon:after {
  transition: translate .2s, rotate .2s .2s;
}

.l-sticky-toggle-button__icon:before {
  translate: 0px calc(var(--margin) * -1);
}

body.is-menu-open .l-sticky-toggle-button__icon:before {
  translate: 0px 0px;
  rotate: 45deg;
}

.l-sticky-toggle-button__icon:after {
  translate: 0px var(--margin);
}

body.is-menu-open .l-sticky-toggle-button__icon:after {
  translate: 0px 0px;
  rotate: -45deg;
}

.l-sticky-toggle-button__text {
  font-weight: 700;
  font-size: calc(9px + var(--slope-1px) * 9);
  font-family: var(--en-font-family);
  line-height: 1;
}

/* l-sticky-toggle-menu
============================== */
.l-sticky-toggle-menu {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all .3s;
  pointer-events: none;

  overscroll-behavior-y: none;
}

body.is-menu-open .l-sticky-toggle-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-sticky-toggle-menu[data-toggle-type=fade] {
  left: 0;
  max-width: 800px;
  margin: 0 auto;
}

.l-sticky-toggle-menu[data-toggle-type=right] {
  width: 0;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, .2);
}

body.is-menu-open .l-sticky-toggle-menu[data-toggle-type=right] {
  width: 400px;
}

/* l-sticky-pagetop
============================== */
.l-sticky-pagetop {
  position: absolute;
  right: 3%;
  bottom: 115%;
  z-index: 2;
  display: block;
  font-size: calc(8px + var(--slope-1px) * 8);
}

@media screen and (max-width: 1080px) {
  .l-sticky-pagetop {
    position: absolute;
    right: 0;
    margin-right: .5em;
  }
}

.l-sticky-pagetop__button {
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .8em 1em;
  border-radius: 5px;
  background: #000;
  color: #fff;
  border: solid #fff 1px;
  text-decoration: none;
  transition: all .2s ease;
  transition: opacity .2s;
}

.l-sticky-pagetop__button:hover {
  opacity: .7;
}

.l-sticky-pagetop__button:before {
  content: "";
  display: block;
  width: .5em;
  height: .5em;
  margin-top: .25em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

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

Modal

* ============================================================= */
/* l-modal
=============================== */
.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100005;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .75);
}

.l-modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 var(--inner-padding);
}

.l-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
}

.l-modal__contents {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  width: 700px;
  max-width: 100%;
  max-height: calc(90vh - 30px);
  /* padding: 5px; */
  border-radius: var(--base-border-radius);
  border-radius: var(--base-border-radius);
  /* background: #fff; */
}

.l-modal__contents._short {
  width: 800px;
}

.l-modal__close {
  margin-top: 1em;
  outline: none;
  border: 0;
  border-radius: 0;
  background: none;
  color: #fff;
  line-height: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-modal__close span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  font-size: 18px;
}

.l-modal__close span:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m336-280 144-144 144 144 56-56-144-144 144-144-56-56-144 144-144-144-56 56 144 144-144 144 56 56ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>') 50% 50%/contain no-repeat;
}

.l-modal__close:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
}

/* c-button
============================== */
.c-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  transition: all .3s ease-out;
}

.c-button:hover {
  opacity: .7;
}

/* c-shadow-button
============================== */
.c-shadow-button {
  display: block;
}

.c-shadow-button._round {
  border-radius: 33px;
}

.c-shadow-button._radius {
  border-radius: 5px;
}

.c-shadow-button._down {
  margin-bottom: 5px;
  box-shadow: 0px 5px 0px 0px #000;
}

.c-shadow-button._down._gray {
  margin-bottom: 5px;
  box-shadow: 0px 5px 0px 0px #666666;
}
@media screen and (max-width: 560px) {
  .c-shadow-button._down {
    margin-bottom: 3px;
    box-shadow: 0px 3px 0px 0px #000;
  }
  .c-shadow-button._down._gray {
    margin-bottom: 3px;
    box-shadow: 0px 3px 0px 0px #666666;
  }
}

.c-shadow-button._down img {
  transition: transform .2s ease-out;
}

.c-shadow-button._down:hover img {
  transform: translateY(5px);
}

.c-shadow-button._down-right._black {
  margin-bottom: 4px;
  box-shadow: 4px 4px 0px 0px #000;
}

.c-shadow-button._down-right img {
  transition: transform .2s ease-out;
}

.c-shadow-button._down-right:hover img {
  transform: translate(4px, 4px);
}

@media screen and (max-width: 560px) {
  .c-shadow-button._radius {
    border-radius: 2px;
  }
}

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

Pace

* ============================================================= */
.pace {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: #fff;
          pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          -ms-user-select: none;
      user-select: none;

  -webkit-pointer-events: none;
}

.pace .pace-progress {
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 2000;
  width: 100%;
  height: 2px;
  background: #e70012;
}

.pace.pace-inactive {
  height: auto;
  opacity: 0;
}

/* c-section
============================== */
.c-section {
  padding: 5rem 0;
  position: relative;
}

.c-section__head {
  margin-bottom: calc(15px + var(--slope-1px) * 10);
}

.c-section__inner {
  padding: 0 var(--inner-padding);
}

@media screen and (max-width: 580px) {
  .c-section {
    padding: 2rem 0 4rem;
  }
}

/* c-image-block
============================== */
.c-image-block {
  max-width: 700px;
  margin: 0 auto;
}

.c-image-block:not(:first-child) {
  margin-top: 30px;
}

.c-image-block__foot {
  width: 90%;
  max-width: calc(350px + var(--inner-padding) * 2);
  margin: 20px auto 0;
  padding: 0 var(--inner-padding);
}

/* c-toggle-block
============================== */
.c-toggle-block {
  padding: 0 var(--inner-padding);
}

.c-toggle-block:not(:first-child) {
  margin-block: 50px;
}

.c-toggle-block__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(12px + var(--slope-1px) * 4);
  margin-bottom: 1em;
  text-align: center;
  font-weight: 500;
  font-size: calc(15px + var(--slope-1px) * 5);
}

.c-toggle-block__lead:before, .c-toggle-block__lead:after {
  content: "";
  display: block;
  width: 2px;
  height: calc(18px + var(--slope-1px) * 6);
  border-radius: 3px;
  background: currentColor;
}

.c-toggle-block__lead:before {
  transform: rotate(-33deg);
}

.c-toggle-block__lead:after {
  transform: rotate(33deg);
}

.c-toggle-block__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .3em 2em;
  outline: none;
  /* border: calc(1.5px + var(--slope-1px) * .5) solid; */
  border-radius: 35px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: calc(18px + var(--slope-1px) * 6);
  cursor: pointer;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-toggle-block__button:hover {
  opacity: .7;
}

.c-toggle-block__button:before, .c-toggle-block__button:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(12px + var(--slope-1px) * 4);
  bottom: 0;
  width: calc(12px + var(--slope-1px) * 4);
  height: 2px;
  margin: auto 0;
  background: currentColor;
  transition: transform .3s;
}

.c-toggle-block__button:not(.is-open):after {
  transform: rotate(90deg);
}

.c-toggle-block__contents {
  display: none;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 5px;
}

@media screen and (max-width: 580px) {
  .c-toggle-block:not(:first-child){
    margin-block: 20px;
  }
  .c-toggle-block__button{
    font-size: 1.2rem;
    padding-block: .6em;
  }
}


/* c-toggle-note
============================== */
.c-toggle-note{
  margin: 30px var(--inner-padding) 0;
}
.c-toggle-note .c-toggle-block__button{
  width: 50%;
  max-width: 300px;
  margin-inline: auto;
  font-size: calc(13px + var(--slope-1px) * 3);
  border: 1px solid #333;
  padding: .6em;
  background: none;
  color: #333;
}
.c-toggle-note .c-toggle-block__button:before,
.c-toggle-note .c-toggle-block__button:after{
  height: 1px;
}

.c-toggle-note._white .c-toggle-block__button {
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 580px) {
  .c-toggle-note {
    margin-top: 20px;
  }
}

/* c-notes
============================== */
.c-notes {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  text-align: justify;
  text-justify: auto;
}

.c-notes:not(:first-child) {
  margin-top: 30px;
}

.c-notes p + p{
  margin-top: 10px;
}

.c-notes__normal {
  font-size: calc(8px + var(--slope-1px) * 2);
  line-height: 1.5;
}

.c-notes__important {
  font-weight: bold;
  font-size: calc(11px + var(--slope-1px) * 3);
  line-height: 1.42857;
}

.c-notes__kei {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .25em;
  border: 1px solid;
  background: #e9f6fe;
  text-align: center;
  text-align: center;
  font-weight: 500;
  font-size: calc(12px + var(--slope-1px) * 2);
}

@media screen and (min-width: 961px) {
  .c-notes__kei {
    letter-spacing: .5em;
  }
}

.c-notes__kei:not(:first-child) {
  margin-top: 12px;
}

/* c-more-block
============================== */

.p-more-section{
  margin-top: 50px;
}

.p-more-head{
  margin-inline: auto;
}

.p-more-head img{
  margin: 0 auto;
}


@media screen and (max-width: 580px) {
  .p-more-section{
    margin-top: 30px;
  }
  .p-more-head{
    width: 80%;
    margin-bottom: 15px;
  }
}

.c-more-block-wrapper:not(:first-child) {
  margin-top: 50px;
}

.c-more-block {
  position: relative;
  overflow: hidden;
  height: calc(300px + var(--slope-1px) * 100);
  margin: 0 var(--inner-padding);
  background: #fff;
  border-radius: calc(10px + var(--slope-1px) * 10);
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
  transition: all .3s ease-out;
}

.c-more-block:not(:first-of-type){
  margin-top: 1.5625em;
}

.c-more-block__ttl {
  font-size: calc(16px + var(--slope-1px)* 8);
  font-weight: bold;
  text-align: center;
  padding: 10px;
  color: #fff;
}

.c-more-block._rakumaru .c-more-block__ttl {
  background: #45B035;
}

.c-more-block._zankure .c-more-block__ttl {
  background: #0088d3;
}

.c-more-block._valiho .c-more-block__ttl {
  background: #f18d00;
}

.c-more-block.is-open {
  height: var(--open-height);
}

.c-more-block__contents {
  padding-bottom: calc(56.25px + var(--slope-1px) * 18.75);
}

.c-more-block__button {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  padding: calc(22.5px + var(--slope-1px) * 7.5);
  outline: none;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 500;
  font-size: calc(18.75px + var(--slope-1px) * 6.25);
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-more-block__button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(180px + var(--slope-1px) * 60);
}

.c-more-block.is-open .c-more-block__button {
  background: #fff;
}

.c-more-block.is-open .c-more-block__button:after {
  display: none;
}

.c-more-block._black .c-more-block__button:after{
  background: linear-gradient(to top, rgb(33, 33, 33) 0%, rgba(33, 33, 33) 30%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block._blue .c-more-block__button:after{
  background: linear-gradient(to top, #00B9EF 0%, #00B9EF 30%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block._rakumaru .c-more-block__button:after{
  background: linear-gradient(to top, rgba(76,165,53,1) 0%, rgba(76,165,53,1) 30%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block._zankure .c-more-block__button:after{
  background: linear-gradient(to top, rgba(0,136,211,1) 0%, rgba(0,136,211,1) 30%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block._valiho .c-more-block__button:after{
  background: linear-gradient(to top, rgba(241,141,0,1) 0%, rgba(241,141,0,1) 30%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block__button span {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  line-height: 1;
  transition: all .3s ease-out;
  color: #fff;
}

.c-more-block__button span:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 -960 960 960"><path d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>') 50% 50%/contain no-repeat;
}

.c-more-block__button span._close {
  display: none;
}

.c-more-block__button span._close:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 -960 960 960"><path d="M280-440h400v-80H280v80ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>');
}

.c-more-block__button:hover span {
  opacity: .7;
}

.c-more-block.is-open .c-more-block__button span._open {
  display: none;
}

.c-more-block.is-open .c-more-block__button span._close {
  display: flex;
  color: #000;
}

@media screen and (max-width: 580px) {
  .c-more-block {
    margin: 0;
  }
}

/* c-tab
============================== */
.c-tab__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--column), 1fr);
  gap: 4px;

  --column: 3;
}

.c-tab__item {
  display: flex;
  align-items: flex-end;
}

.c-tab__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  height: calc(30px + var(--slope-1px) * 30);
  outline: none;
  border: 0;
  border-radius: 5px 5px 0 0;
  background: #b5b5b6;
  color: #636363;
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 12);
  transition: opacity .3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-tab__button:hover {
  opacity: .7;
}

.c-tab__button.is-current {
  height: calc(37.5px + var(--slope-1px) * 37.5);
  background: #000;
  color: #fff;
  pointer-events: none;
}

.c-tab__button.is-current:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: block;
  width: calc(7.5px + var(--slope-1px) * 7.5);
  height: calc(6.5px + var(--slope-1px) * 6.5);
  margin: 0 auto;
  background: inherit;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.c-tab__contents {
  display: none;
  padding: var(--inner-padding);
  background: #fff;
}

.c-tab__contents.is-current {
  display: block;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: pan-y;
}

.slick-slider.slick-initialized {
  max-height: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.slick-vertical .slick-track {
  display: block;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
}

.slick-slide a {
  outline: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  outline: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

/* Arrows */
.slick-arrow {
  position: absolute;
  top: calc(240px + var(--slope-1px) * 180);
  z-index: 10;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: calc(22.96875px + var(--slope-1px) * 26.03125);
  height: calc(51.5625px + var(--slope-1px) * 58.4375);
  margin: auto 0;
  padding: 0;
  outline: none;
  outline: none;
  border: 0;
  border-radius: 0;
  color: currentColor;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.slick-arrow:hover {
  opacity: .7;
}

.slick-arrow.slick-prev {
  left: 0;
  background: url(../img/slide-arrow-left.png) 50% 50%/contain no-repeat;
}

.slick-arrow.slick-next {
  right: 0;
  background: url(../img/slide-arrow-right.png) 50% 50%/contain no-repeat;
}

/* Dots */
.slick-slider.slick-dotted {
  margin-bottom: 65px;
}

.slick-dots {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
}

.slick-dots > li {
  display: block;
  opacity: 1;
}

.slick-dots > li button {
  position: relative;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  width: 15px;
  height: 15px;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: 100%;
  font-size: 0;
  background: #333;
  opacity: 1;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.slick-dots > li.slick-active button {
  background: #fff;
}

/* thumbs */
.slick-thumbs {
  display: flex;
  width: calc(100% + 4px);
  margin-top: 12px;
  margin-right: -4px;
}

.slick-thumbs > li {
  min-width: 0%;
  max-width: 50%;
  padding-right: 4px;
}

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

p-mainvisual

============================================================ */
.p-mainvisual {
  background: #5EBBEA;
  padding-bottom: 40px;
}
.p-mainvisual-contents {
  position: relative;
}

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

p-anchor

============================================================ */
.p-anchor {
  padding: 4rem var(--inner-padding) 3rem;
  position: absolute;
  bottom: calc(10px + var(--slope-1px) * 15);
}

.p-anchor-body {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.p-anchor-block a{
  position: relative;
}

.p-anchor-block span {
  position: absolute;
  top: -15px;
  left: 5px;
  z-index: 2;
}

@media screen and (max-width: 580px) {
  .p-anchor {
    padding: 2rem var(--inner-padding) 1.5rem;
  }
  .p-anchor-body {
    gap: 8px;
  }
  .p-anchor-block span {
    top: -13px;
    left: 0;
  }
  .p-anchor-block span img {
    max-height: 22px;
  }
}

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

p-campaign

============================================================ */
.p-campaign {
  margin: 0 var(--inner-padding);
}

.p-campaign .c-more-block {
  height: calc(410px + var(--slope-1px) * 360);
}

.p-campaign .c-more-block.is-open {
  height: var(--open-height);
}

.p-campaign-note {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  text-align: justify;
  font-size: calc(9px + var(--slope-1px) * 2);
}

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

nbox

============================================================ */
/* p-nbox
============================== */
.p-nbox {
  background: url(../img/bg-nbox.png) no-repeat center/cover,
  repeating-linear-gradient(140deg, transparent, transparent 10px, rgba(186, 227, 249, 1) 10px, rgba(186, 227, 249, 1) 25px),
  rgba(200, 233, 250, 1);
  background-size: contain;
  background-position: top, center;
}

.p-nbox-coupon {
  padding: 0 var(--inner-padding) var(--inner-padding);
}

/* c-car-nav-grid
============================== */
.c-car-nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-bottom: calc(10px + var(--slope-1px) * 5);
  padding: 0 10px;
}

.c-car-nav-grid > * {
  width: calc((100% - 10px) / 4);
}

@media screen and (max-width: 560px) {
  .c-car-nav-grid {
    gap: 11px 5px;
    padding: 0;
  }
  .c-car-nav-grid > * {
    width: calc((100% - 50px) / 3);
  }
  .c-car .c-car-nav-grid {
    padding: 0 30px;
  }
}

/* c-car-nav
============================== */
.c-car-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  border: solid 1px #333;
  box-shadow: 0px 5px 0px 0px #333;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 5);
  line-height: 1;
  transition: all .3s ease-out;
}
@media screen and (max-width: 560px) {
  .c-car-nav  {
    box-shadow: 0px 3px 0px 0px #333;
  }
}

.c-car .c-car-nav:nth-child(2) {
  margin-right: 20px;
}

.c-car-nav i {
  position: absolute;
  top: -17px;
}
@media screen and (max-width: 560px) {
  .c-car-nav i {
    width: 80%;
    top: -13px;
  }
}

.c-car-nav_subtitle{
  margin-bottom: 1em;
}

.c-car-nav:hover {
  opacity: .7;
}

.c-car-nav img {
  max-width: 100%;
  max-height: 80px;
}

.c-car-nav__text {
  position: absolute;
  top: -15px;
}

.c-car-nav span {
  position: relative;
  display: block;
  margin-top: .5em;
  padding-right: 24px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}

.c-car-nav-second span {
  position: relative;
  display: block;
  margin-top: .5em;
  padding-right: 24px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}

.c-car-nav span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23333" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
}

.c-car-nav-second span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23e60012" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
}


@media screen and (max-width: 580px) {
  .c-car-nav {
    padding: 10px 5px;
  }
  .c-car-nav span{
    padding-right: 16px;
  }
  .c-car-nav span:after{
    width: 15px;
    height: 15px;
  }
  .c-car-nav__text {
    top: -8px;
  }
  .c-car-nav_subtitle{
    margin: 0.2em 1em;
  }
}

/* c-car-slider
============================== */
.c-car-slider {
  position: relative;
  overflow: visible !important;
}

.c-car-slider__item {
  background: #fff;
  border-radius: 20px;
  position: relative;
  margin: var(--inner-padding);
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
}

.c-car-slider__inner{
  padding: calc(20px + var(--slope-1px)* 10) var(--inner-padding);
  position: relative;
  z-index: 1;
}


.c-car-slider__arrow {
  top: calc(180px + var(--slope-1px)* 200);
  margin: 0;
}

.c-car-slider__button {
  margin: 20px auto 0;
  max-width: 500px;
}

.c-car-slider__button._x2 {
  display: ;
}

.c-car-slider__button .c-button + .c-button {
  margin-top: 15px;
}

.c-car-slider__campaign {
  padding: 10px;
}

.c-car-zankure {
  padding-top: calc(20px + var(--slope-1px) * 10);
}

.c-car-zankure__difference {
  padding-block: 10px;
}

.c-car-slider__sub span{
  padding-block: calc(10px + var(--slope-1px) * 5);
  display: block;
}

.c-car-slider__sub span img{
  width: auto;
}
@media screen and (max-width: 560px) {
  .c-car-slider__sub span img{
    width: 35%;
  }
}

.c-car-slider__foot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(10px + var(--slope-1px) * 10);
}

.c-car-slider__detail.recommend {
  padding: 10px 10px 0;
}
.c-car-zankure.recommend {
  padding-top: 0;
}

/* c-car-zankure
============================== */
.c-car-zankure__body {
  margin-top: 11px;
  font-size: calc(9px + var(--slope-1px)* 3);
  line-height: 1.53846;
  text-align: justify;
  text-justify: auto;
  background: #F3F3F3;
  padding: calc(10px + var(--slope-1px) * 15);
  border-radius: 10px;
}


.c-car-zankure__body span {
  font-size: calc(10px + var(--slope-1px) * 3);
  padding-top: 10px;
  display: block;
}

.c-car-price__caution {
  text-align: justify;
  text-justify: auto;
  font-size: calc(10px + var(--slope-1px) * 4);
  font-weight: bold;
  background: #F3F3F3;
  padding: 15px;
  margin-top: calc(10px + var(--slope-1px) * 15);
  border-radius: 10px;
}

/* c-car-toggle
============================== */
.c-car-toggle__head {
  position: relative;
  display: block;
  transition: all .3s ease-out;
}

.c-car-toggle__head:hover {
  opacity: .7;
}

.c-car-toggle__head:before, .c-car-toggle__head:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(8px + var(--slope-1px) * 12);
  bottom: 0;
  display: block;
  width: calc(13px + var(--slope-1px) * 5);
  height: 3px;
  margin: auto 0;
  background: #fff;
  transition: transform .3s;
}

.c-car-toggle__head:not(.is-open):after {
  transform: rotate(90deg);
}

.c-car-toggle__body {
  display: none;
  margin-top: 11px;
  text-align: justify;
  text-justify: auto;
  font-size: calc(9px + var(--slope-1px) * 3);
  background: #F3F3F3;
  padding: calc(10px + var(--slope-1px) * 15);
  border-radius: 10px;
}

.c-car-toggle__body > p {
  text-align: justify;
  text-justify: auto;
}

.c-car-toggle__body > p + p {
  margin-top: 1em;
}


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

zankure

============================================================ */
.p-zankure {
  background-color: #fff000;
  background-image: radial-gradient(#fff880 20%, transparent 20%), radial-gradient(#fff880 20%, transparent 20%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  padding-top: 2em;
}
@media screen and (max-width: 560px) {
  .p-zankure {
    padding-top: 1.5em;
  }
}

.p-zankure__head {
  position: absolute;
  top: 0;
  left: 25px;
  z-index: 2;
}
@media screen and (max-width: 560px) {
  .p-zankure__head {
    width: 50%;
    left: -5px;
  }
}

.p-zankure .c-car-nav-grid {
  padding-left: calc(175px + var(--slope-1px) * 275);
  padding-right: calc(10px + var(--slope-1px) * 15);
  justify-content: space-between;
}

.p-zankure .c-car-nav {
  width: calc((100% - 10px) / 2);
}

.p-zankure .c-car-slider__inner {
  padding-top: 0;
}

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

ev

============================================================ */
.p-ev {
  background: url(../img/bg-ev.png), linear-gradient(to bottom, #fff000 0px 25px, #00A0E0 25px 100%);
  background-repeat: no-repeat;
  background-position: top,center;
  background-size: contain;
}

.p-ev__head {
  margin-bottom: -10px;
}

.p-ev-block {
  background: #fff;
  border-radius: 20px;
  padding: var(--inner-padding);
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
}

.p-ev .c-more-block {
  margin: 0px;
  height: calc(200px + var(--slope-1px) * 200);
}

.p-ev .c-more-block.is-open {
  height: var(--open-height);
}

.p-ev .c-more-block.is-open .c-more-block__button {
  background: #00B9EF;
}
.p-ev .c-more-block.is-open .c-more-block__button span._close {
  color: #fff;
}

.p-ev .c-more-block__button span._close:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="M280-440h400v-80H280v80ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>');
}

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

usedcar

============================================================ */
/* p-usedcar
============================== */
.p-usedcar {
  background: url(../img/bg-usedcar.png) no-repeat center/cover,
  repeating-linear-gradient(140deg, transparent, transparent 10px, rgba(186, 227, 249, 1) 10px, rgba(186, 227, 249, 1) 25px),
  rgba(200, 233, 250, 1);
  background-size: contain;
  background-position: top, center;
}

.p-usedcar__body {
  padding: 0 var(--inner-padding);
}

.p-usedcar__inner{
  padding: 0 var(--inner-padding);
}

@media screen and (max-width: 580px) {
  .p-usedcar__inner {
    padding: 0;
  }
}

/* p-usedcar-slider
============================== */
.p-usedcar-slider {
  padding: 0;
}

.p-usedcar-slider__arrow.slick-prev {
  left: calc(var(--inner-padding) * -2);
  background: url(../img/slide-arrow-left.png) 50% 50% / contain no-repeat;
}

.p-usedcar-slider__arrow.slick-next {
  right: calc(var(--inner-padding) * -2);
  background: url(../img/slide-arrow-right.png) 50% 50% / contain no-repeat;
}

@media screen and (max-width: 580px) {
  .p-usedcar-slider__arrow.slick-prev {
    left: calc(var(--inner-padding) * -1);
  }
  .p-usedcar-slider__arrow.slick-next {
    right: calc(var(--inner-padding) * -1);
  }
}

/* p-usedcar-nav
============================== */
.p-usedcar-nav {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: calc(100% - var(--inner-padding) * 2);
  margin: 10px auto;
  border-radius: calc(6px + var(--slope-1px) * 4);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
  transition: all .3s ease-out;
}

.p-usedcar-nav:hover {
  opacity: .7;
}

.p-usedcar-nav__image {
  width: 100%;
  aspect-ratio: 650 / 480;
  overflow: hidden;
}

.p-usedcar-nav__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-usedcar-nav__contents {
  flex-grow: 1;
  padding: calc(18px + var(--slope-1px) * 12);
}

.p-usedcar-nav__head {
  margin-bottom: 21px;
  padding-bottom: .3em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 12);
  line-height: 1.5;
}

.p-usedcar-nav__data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-usedcar-nav__data dl {
  display: flex;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 15);
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 8);
  min-width: calc(100% / 2 - 5px);
}

.p-usedcar-nav__data dt {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 5.5em;
  background: #666;
  color: #fff;
}

@media screen and (max-width: 560px) {
  .p-usedcar-nav__data {
    gap: 7px;
  }
}

.p-usedcar-nav__price {
  margin-top: calc(18px + var(--slope-1px) * 12);
}

.p-usedcar-nav__price dl {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: calc(9px + var(--slope-1px) * 6);
  font-weight: bold;
  font-size: calc(15px + var(--slope-1px) * 10);
  line-height: 1;
}

.p-usedcar-nav__price dd {
  color: #E60012;
  font-size: calc(24px + var(--slope-1px) * 16);
  font-family: var(--en-font-family);
}

.p-usedcar-nav__price dd em {
  font-size: 2em;
}

.p-usedcar-nav__price dd span {
  font-size: .75em;
  font-family: var(--base-font-family);
}

.p-usedcar-nav__foot {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  height: calc(34.2px + var(--slope-1px) * 22.8);
  padding-top: calc(7.8px + var(--slope-1px) * 5.2);
  background: #036EB8;
  color: #fff;
  font-weight: bold;
  font-size: calc(13.8px + var(--slope-1px) * 9.2);
  line-height: 1;
}

.p-usedcar-nav__foot em {
  font-size: calc(16.8px + var(--slope-1px) * 11.2);
}

.p-usedcar-nav__foot:after {
  content: "";
  display: block;
  width: calc(12.6px + var(--slope-1px) * 8.4);
  height: calc(12.6px + var(--slope-1px) * 8.4);
  margin-left: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
  transform: rotate(-90deg);
}

.usedcar-sp{
  display: none;
}

@media screen and (max-width: 580px) {
  .usedcar-pc{
    display: none;
  }
  .usedcar-sp{
    display: block;
  }
}

/* p-usedcar-button
============================== */
.p-usedcar-button {
  max-width: 500px;
  width: 100%;
  margin: 20px auto 0;
}

/* p-usedcar-notes
============================== */
.p-usedcar-notes {
  margin: 30px var(--inner-padding) 0;
  padding: 1.2em;
  background: #fff;
  text-align: center;
  font-size: calc(10px + var(--slope-1px)* 4);
  border-radius: 10px;
}

@media screen and (max-width: 580px) {
  .p-usedcar-notes {
    margin-inline: 0;
  }
}

/* p-usedcar-hot
============================== */
.p-usedcar-hot {
  margin-top: 30px;
}


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

style

============================================================ */
.p-style{
  background-color: #E6E6E6;
  background-image: radial-gradient(#eeeeee 20%, transparent 20%), radial-gradient(#eeeeee 20%, transparent 20%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  padding-top: 1em;
}

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

showroom

============================================================ */
.p-showroom {
  background: url(../img/bg-sr.png), #FFF000;
  background-repeat: repeat-y;
  background-size: contain;
  padding-top: 1em;
}

/* p-showroom-grid
============================== */
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media screen and (max-width: 580px) {
  .showroom-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.showroom-grid__item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
}

.showroom-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-decoration: none !important;
  transition: all .4s;
  box-sizing: border-box;
}

.showroom-panel:hover {
  opacity: .7;
}


.showroom-panel>* {
  transition: inherit;
  min-height: 0%;
}

.showroom-panel__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  width: 100%;
  padding: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}

@media screen and (max-width: 580px) {
  .showroom-panel__head{
    font-size: 1.4rem;
  }
}

.showroom-panel__img img {
  display: block;
  width: 100%;
}

.showroom-panel__info {
  padding: 2em 1.2em 1em;
  font-size: 1.3rem;
  position: relative;
}

@media screen and (max-width: 580px) {
  .showroom-panel__info{
    font-size: 1rem;
  }
}

.showroom-panel__info>dl {
  overflow: hidden;
}

.showroom-panel__info>dl dt {
  float: left;
}

.showroom-panel__info>dl dt:after {
  content: "\FF0F";
}

.showroom-panel__info>dl dd {
  overflow: hidden;
}

.showroom-panel__badge {
  display: inline-block;
  position: absolute;
  font-size: 1.3rem;
  top: 0;
  right: 0;
  background: #036EB8;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 0 0 0 10px;
}

@media screen and (max-width: 580px) {
  .showroom-panel__badge{
    font-size: 1rem;
  }
}

.showroom-panel._at .showroom-panel__badge {
  background: #333333;
}

.showroom-panel__zip {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.showroom-panel__address {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}

@media screen and (max-width: 580px) {
  .showroom-panel__address{
    font-size: 1rem;
  }
}

.showroom-panel__tel {
  font-size: 1.5rem;
  margin-bottom: 0.8em;
  font-weight: bold;
}

@media screen and (max-width: 580px) {
  .showroom-panel__tel{
    font-size: 1.2rem;
  }
}

.showroom-panel__close {
  margin-bottom: 0.4em;
}

.p-showroom__btn {
  position: relative;
  background: #036EB8;
  text-align: center;
  color: #fff;
  padding: .5rem;
  font-size: 15px;
  font-weight: bold;
  border-radius: 0 0 5px 5px;
}

.p-showroom__btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 6rem;
  bottom: 0;
  display: block;
  width: 15px;
  height: 15px;
  margin: auto 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
  transform: rotate(-90deg);
}

@media screen and (max-width: 560px) {
  .p-showroom__btn {
    padding: .5rem 1.5rem .5rem .5rem;
  }
  .p-showroom__btn:after {
    right: 3rem;
  }
}

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

p-caution

* ============================================================= */
.p-caution {
  background: #fff;
  padding: 4rem 0;
}

.p-caution p + p{
  margin-top: 10px;
}

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

Utility

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

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

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

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

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

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

@media screen and (max-width: 960px) {
  .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;
}

/* bg
====================================== */
.u-bg-yellow {
  background: 
    url(../img/bg-confetti.png) no-repeat top / contain,
    repeating-linear-gradient(-29deg,
    rgb(255 255 255 / 15%),
    rgb(255 255 255 / 15%) 15px,
    rgb(255 255 255 / 35%) 15px,
    rgb(255 255 255 / 35%) 25px),
    linear-gradient(150deg, rgba(255,248,229,1) 10%, rgba(255,214,36,1) 100%);
}

.u-bg-red {
  background: 
  url(../img/bg-confetti.png) no-repeat top / contain,
    repeating-linear-gradient(-29deg,
    rgb(255 255 255 / 5%),
    rgb(255 255 255 / 5%) 15px,
    rgb(255 255 255 / 15%) 15px,
    rgb(255 255 255 / 15%) 25px),
    linear-gradient(150deg, rgb(237 119 73) 10%, rgb(229 1 50) 100%)
}

.u-bg-orange {
  background: 
  url(../img/bg-confetti.png) no-repeat top / contain,
    repeating-linear-gradient(-29deg,
    rgb(255 255 255 / 5%),
    rgb(255 255 255 / 5%) 15px,
    rgb(255 255 255 / 15%) 15px,
    rgb(255 255 255 / 15%) 25px),
    linear-gradient(150deg, rgb(254 213 0) 10%, rgb(229 3 49) 100%)
}

@media screen and (max-width: 560px) {
  .u-bg-yellow {
    background: 
      url(../img/bg-confetti.png) no-repeat top / contain,
      repeating-linear-gradient(-29deg,
      rgb(255 255 255 / 15%),
      rgb(255 255 255 / 15%) 10px,
      rgb(255 255 255 / 35%) 10px,
      rgb(255 255 255 / 35%) 15px),
      linear-gradient(150deg, rgba(255,248,229,1) 10%, rgba(255,214,36,1) 100%);
  }
  
  .u-bg-red {
    background: 
    url(../img/bg-confetti.png) no-repeat top / contain,
      repeating-linear-gradient(-29deg,
      rgb(255 255 255 / 5%),
      rgb(255 255 255 / 5%) 10px,
      rgb(255 255 255 / 15%) 10px,
      rgb(255 255 255 / 15%) 15px),
      linear-gradient(150deg, rgb(237 119 73) 10%, rgb(229 1 50) 100%)
  }
  
  .u-bg-orange {
    background: 
    url(../img/bg-confetti.png) no-repeat top / contain,
      repeating-linear-gradient(-29deg,
      rgb(255 255 255 / 5%),
      rgb(255 255 255 / 5%) 10px,
      rgb(255 255 255 / 15%) 10px,
      rgb(255 255 255 / 15%) 15px),
      linear-gradient(150deg, rgb(254 213 0) 10%, rgb(229 3 49) 100%)
  }
}

/* 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);
}

.u-border{
  position: relative;  
}

.u-border:after{
  content:"";
  display:block;
  width:91%;
  height:1px;
  background-color: #ccc;
  position:absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

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