/** Shopify CDN: Minification failed

Line 35:0 Unexpected "}"

**/
/*  */
:root {
  --heading-size-02: 3rem;

  --very-light-blue-color: #f9feff;
  
  --light-blue-color: #5bb6eb;
  --light-blue-color: #00b5e2;

  --light-blue-color02: #72cce9;
  
  --blue-color: #334fb4;
  --text-blue-color: #003057;
  
  --pink-color: #ff5252;
  --yellow-color: #ffe500;
  --yellow-color-02: #ffff00; 

  --shadow: 0 0 10px rgba(0, 0, 0, 0.25);

  --container-padding-pc: 6rem;
  --container-padding-mb: 4rem 1.5rem;

  --font-heading-family: "M PLUS Rounded 1c", sans-serif;

  --color-foreground: #003057;

  --animate-duration: 2s;
}
}

body {
  font-size: 16px;
      font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--text-blue-color);
}

body,
h1, h2, h3, h4, h5, h6,
p,
li {
  /* font-family: 'DM Sans', 'Noto Sans JP', sans-serif; */
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: var(--text-blue-color);
}

figure {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

iframe {
  margin: 0;
  width: 100%;
}

/* strong {
  color: var(--blue-color);
} */

.br-pc {
  display: none;
}

@media (min-width: 750px) {
.br-pc {
  display: block;
}  
}

.br-mb {
  display: block;
}

@media (min-width: 750px) {
.br-mb {
  display: none;
}  
}

/* header */
.header__heading .header__heading-logo {
  border-radius: 0.4rem;
}

/* slide */
.slideshow .slideshow__text-wrapper {
  min-height: calc(100vh - 30rem);
}

.slideshow .slideshow__text-wrapper .banner__text {
  padding: 2rem;
  color: #fff;
  background-color: var(--light-blue-color);
  line-height: 1;
  border-radius: 0.4rem;
}

/*  */
.custom-collection-grid.rise-style {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

@media (min-width: 750px) {
  .custom-collection-grid.rise-style {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 1200px;
  }
}

.product-card {
  border-radius: 0.4rem;
  /* padding: 16px; */
  transition: box-shadow 0.3s ease;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.product-card-info {
  padding: 2rem;
  display: grid;
  gap: 0.8rem;
}

.product-card-info > * {
  margin: 0;
}

.product-image {
  max-width: 100%;
  /* border-radius: 8px; */
  transition: transform 0.3s ease;
  aspect-ratio: 3/2;
  object-fit: cover;
  vertical-align: middle;
}

.product-image-link {
  display: block;
}

.product-image-link:hover .product-image {
  transform: scale(1.05);
}

.product-title {
  font-size: 2.4rem;
  font-weight: 600;
  /* margin-top: 12px;
  margin-bottom: 4px; */
  margin: 0;
}

.product-price {
  /* font-size: 0.95rem; */
  color: #777;
  /* margin-bottom: 12px; */
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.form-field select,
.quantity-input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  max-width: 160px;
}

.btn.btn--primary {
    background-color: var(--yellow-color);
  color: var(--text-blue-color);
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 800;
  transition: background-color 0.3s ease;
  display: block;
  text-decoration: none;
}

.btn.btn--primary:hover {
  background-color: var(--blue-color);
  color: #fff;
}

.sticky-checkout-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
}

.sticky-checkout-button {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.sticky-checkout-button:hover {
  background-color: #333;
}

/*  */
.front-section-title {
  font-size: var(--heading-size-02);
  font-weight: 800;
  margin: 0;
}

/*  */
.header-bar {
  background-color: var(--light-blue-color02);
  color: #fff;
}

.header-bar-inner {
  display: block;
  text-decoration: none;
}

/*  */
.container-warning {
  padding: 4rem 0;
  background-color: var(--yellow-color);
}

@media screen and (min-width: 990px) {
  .container-warning {
    padding: 8rem 4rem;
    background-color: var(--yellow-color);
  }
}

.container-information {
  padding: 4rem 0;
}

.front-warning-contents {
  display: flex;
  flex-direction: column;
        padding: 2rem;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  gap: 1rem 0;
}

@media screen and (min-width: 990px) {
  .front-warning-contents {
    display: flex;
    flex-direction: row;
      padding: 4rem;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
      align-items: center;
    gap: 0 4rem;
  }
}

.front-warning_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.front-warning_inner header p {
  border: solid 1px;
    background: #fff;
    padding: 1rem;
  font-size: 2rem;
    font-weight: 800;
    color: #ff0000;
  margin: 0;
  line-height: 1.2;
}

.front-warning_inner header {
  text-align: center;
}

.front-warning_inner h3 {
  width: 100%;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 800;
  margin: 1rem 0;
}

@media screen and (min-width: 750px) {
.front-warning_inner h3 {
  width: 100%;
  font-size: var(--heading-size-02);
  text-align: center;
  font-weight: 800;
  margin: 3rem 0;
}}

.front-warning-image {
  margin: 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 990px) {
  .front-warning-image {
    margin: 0;
    /* width: 30%; */
  }
}

.front-warning-image img {
  aspect-ratio: 3/2;
  object-fit: contain;
  /* height: 100%;
  width: 50%; */
}

@media screen and (min-width: 750px) {
.front-warning-image img {
  aspect-ratio: 1/1;
  object-fit: contain;
  /* height: 100%; */
  width: 100%;
}
}

.front-warning-text {
  flex-grow: 1;
}

@media screen and (min-width: 990px) {
  .front-warning-text {
    flex-grow: 1;
    width: 70%;
  }
}

.front-warning-text h3 {
  text-align: center;
  font-size: 2.4rem;
  margin: 0;
}

@media screen and (min-width: 990px) {
  .front-warning-text h3 {
      text-align: center;
      font-size: 3rem;
  }
}

.front-warning-text strong {
  margin-top: 1rem;
  width: 100%;
    text-align: center;
}

.c-warning-marker {
  display: inline-block;
    font-size: 2rem;
    padding: 2rem;
    line-height: 1.4;
  border-radius: 1rem;
}

/* front information */
.front-information-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 990px) {
  .front-information-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.front-information-image {
  max-width: 100%;
}

@media screen and (min-width: 990px) {
  .front-information-image {
    max-width: 20%;
  }
}

/* front rental steps */
.container-rental-steps {
  padding: 4rem 0;
}

@media screen and (min-width: 750px) {
  .container-rental-steps {
    padding: var(--container-padding-pc);
  }
}

.front-rental-steps h2 {
  font-size: var(--heading-size-02);
  font-weight: 800;
  margin-top: 0;
}

.front-rental-steps-list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  display: grid;
  gap: 3rem 0;
}


.front-rental-steps-list li {
  position: relative; 
  padding: 2rem;
  background-color: #fff;
  box-shadow: var(--shadow);
  /* border: solid 1px #ededed; */
  display: flex;
  gap: 0 2rem;
    align-items: center;
  flex-direction: column;
}

@media (min-width: 750px) {
.front-rental-steps-list li {
  position: relative; 
  padding: 3rem;
  background-color: #fff;
  box-shadow: var(--shadow);
  /* border: solid 1px #ededed; */
  display: flex;
  gap: 0 2rem;
    align-items: center;
    flex-direction: row;
}
}

.front-rental-steps-list li h3 {
    display: flex;
  align-items: center;
    justify-content: space-between;
  flex-direction: column;
  font-weight: 800;
  font-size: 2.4rem;
}

@media (min-width: 750px) {
.front-rental-steps-list li h3 {
      display: flex;
  align-items: center;
    flex-direction: row;
    justify-content: space-between;
  font-weight: 800;
  font-size: 3.2rem;
}
}

/* front rental products */
.container-rental-products {
  padding: 4rem 0;
}

@media (min-width: 750px) {
  .container-rental-products {
    padding: var(--container-padding-pc);
  }
}

.front-rental-products-inner {
  display: grid;
  gap: 2rem 0;
}

@media screen and (min-width: 990px) {
  .front-rental-products-inner {
    display: grid;
    gap: 4rem 0;
  }
}

.front-rental-products-block {
  padding: 3rem 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 750px) {
.front-rental-products-block {
  padding: 6rem;
  box-shadow: var(--shadow);
}
}

.front-rental-products-guideline {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 990px) {
  .front-rental-products-guideline {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.front-rental-products-notice {
  display: flex;
  gap: 0 3rem;
  flex-direction: column-reverse;
  align-items: center;
}

@media screen and (min-width: 990px) {
	.front-rental-products-notice {
		display: flex;
		gap: 0 3rem;
		flex-direction: column;
		align-items: center;
      width: 50%;
	}
}

.front-rental-products-notice h3 {
  text-align: center;
  font-size: 2.4rem;
}

@media screen and (min-width: 750px) {
.front-rental-products-notice h3 {
  text-align: center;
    font-size: 2.8rem;
}
}

.front-rental-products-notice figure {
  max-width: 100%;
}

@media screen and (min-width: 750px) {
.front-rental-products-notice figure {
  max-width: 30%;
}
}

.front-rental-products h2 {
  font-size: var(--heading-size-02);
  font-weight: 800;
  margin: 0;
}

.front-rental-products-images {
  display: flex;
    align-items: center;
    justify-content: center;
}

/* cancel policy */
.cancelPolicyContents {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--light-blue-color02);
  width: 100%;
  height: 100vh;
  transition: 0.4s;
  color: #fff;
  align-items: center;
  padding: 4rem;
  z-index: 10;
}

.cancelPolicyContents h2 {
  color: #fff;
  font-weight: 800;
}

.cancelPolicyContents a {
  color: #fff;
  text-decoration: underline;
}

.cancelPolicyContentsScrollBlock {
  overflow: scroll;
  height: 100%;
  padding-bottom: 4rem;
  border-top: solid rgba(255, 255, 255, .25) 1px;
}

.cancelPolicyContents ul li,
.cancelPolicyContents p {
  color: #fff;
  line-height: 1.5;
}

.cancelPolicyContentsCloseButton {
  cursor: pointer;
}

.cancelPolicyContentsContainer {
  display: grid;
  gap: 2rem 0;
}

/* front parking */
.front-parking-buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
	margin: 2rem 0;
}

.front-parking-info-text {
  margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.front-parking-info-text > a  {
  text-align: center;
  font-size: 1.8rem;
  display: block;
  max-width: max-content;
  margin: auto;
}

.front-parking-info-text p {
  background-color: var(--yellow-color);
  text-align: center;
  padding: 2rem;
}

.front-parking-info-text p strong {
  font-size: 2rem;
}

/* front rules */
.container-rules {
  padding: 4rem 0;
}

@media screen and (min-width: 990px) {
	.container-rules {
		padding: var(--container-padding-pc);
	}
}

.front-rules .front-rules_inner {
  display: flex;
  flex-direction: row-reverse;
}

.front-rules-text {
  padding: 4rem 2rem;
	background-color: rgba(255,255,255,.75);
}

@media screen and (min-width: 990px) {
.front-rules-text {
  padding: 6rem;
	background-color: rgba(255,255,255,.75);
}
}

.front-rules .front-rules-text h2 {
  text-align: center;
}

.front-rules-text ul {
  display: flex;
  padding: 0;
    list-style: none;
    flex-wrap: wrap;
  gap: 1rem;
    justify-content: center;
}

.front-rules-text ul li {
  padding: 2rem;
  line-height: 1.25;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: solid 1px;
    border-radius: .5rem;
    justify-content: center;
  text-align: center;
  background-color: #fff;
  gap: 1rem;
  font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-color);
  width: 100%;
}

@media screen and (min-width: 990px) {
.front-rules-text ul li {
width: auto;  
}
}

.front-rules-notice {
  text-align: center;
}

/*  */
.c-button-parking-info {
  padding: 1.6rem 2.4rem;
  text-align: center;
  background-color: var(--pink-color);
  color: #fff;
  border: 0;
  border-radius: 0.4rem;
}

.c-button-parking-info:hover {
  cursor: pointer;
}

.c-button-main {
    background-color: var(--blue-color);
    color: #fff;
    border-radius: 100vh;
    text-decoration: none;
  padding: 1.5rem 3rem;
  font-weight: 800;
  line-height: 1;
}

.c-button-main:hover {
  background: var(--yellow-color);
    color: var(--text-blue-color);
}

.c-marker-yellow {
  background-color: var(--yellow-color);
}

.c-block-warning {
  background-color: var(--yellow-color);
	padding: 2rem;
}

/* utils */
.u-text-center {
  text-align: center;
}

/* override */
.card__media .media img {
  aspect-ratio: 3/2;
  object-fit: cover;
  vertical-align: middle;
}

.footer__content-bottom-wrapper {
  justify-content: center;
}

/*  */
.slideshow__text.banner__box {
  background-color: rgba(0, 0, 0, .25);
}

/*  */
.header-bar-inner {
  padding: .5rem;
}

.header-bar p {
  margin: 0;
  font-weight: 600;
  color: #fff;
    font-size: 1.6rem;
  line-height: 1;
}

@media screen and (min-width: 750px) {
.header-bar p {
  margin: 0;
  font-weight: 600;
  color: #fff;
    font-size: 2.4rem;
}
}

.header-bar p span {
  font-size: 2rem;
  color: var(--yellow-color-02);
}

@media screen and (min-width: 750px) {
.header-bar p span {
  font-size: 3.2rem;
  color: var(--yellow-color-02);
}
}


.header-bar-inner {
 display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 750px) {
.header-bar-inner {
 display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
}


.header-bar figure img {
  max-width: 10rem;
}



/*  */
.front-introduction-els {
  display: flex;
  align-items: center;
}

.front-introduction-els figure {
  width: 20%;
}

.front-introduction-info {
  flex-grow: 1;
  text-align: center;
}

.front-introduction-info h2 {
  font-weight: 800;
}

/*  */
.front-rental-steps-number {
  font-weight: 800;
    font-size: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    background-color: #5bb6eb;
    color: #fff;
  min-width: 5rem;
  line-height: 1;
  text-align: center;
}

/*  */
@media screen and (min-width: 990px) {
.front-rental-steps-list li > figure {
  width: 25%;
}
}



@media screen and (min-width: 990px) {
.front-rental-steps-info {
  flex-grow: 1;
  width: 75%;
}
}

.front-rental-steps-info h3 {
display: flex;
}

/*  */
.front-rental-products-payments {
  text-align: center;
}

.front-rental-products-payments ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 0 3rem;
}

@media (min-width: 750px) {
.front-rental-products-payments ul {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 0 3rem;
}
}

/*  */
.front-rental-products-warning {
  padding: 3rem 1rem;
  border: solid 1px;
  width: 100%;
  display: grid;
  gap: 2rem 0;
  border-radius: 1rem;
}

@media (min-width: 750px) {
.front-rental-products-warning {
  padding: 3rem;
  border: solid 1px;
  width: 50%;
}
}

.front-rental-products-warning h3 {
  text-align: center;
  margin: 0;
}

.front-rental-products-warning p {
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
}

.front-rental-products-warning ul {
  padding-left: 1.6em;
  margin: 0;
}

/*  */
.front-parking-info-list {
  margin: 4rem 0;  
}

.front-parking-info-list li {
 font-size: 1.8rem; 
}

/*  */
.front-introduction-desc-image img {
  border-radius: 1.6rem;
}

.front-introduction-desc-image a {
  display: block;
}

/*  */
.product-notice p {
  font-size: 1.4rem;
  padding: 1.5rem;
  color: #ff005c;
  border: solid 2px;
  line-height: 1.2;
  border-radius: 1rem;
}

.product-rental-products-warning {
  width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    margin: auto;
  flex-direction: column;
  text-align: left;
}

@media screen and (min-width: 750px) {
.product-rental-products-warning {
  width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: auto;
  flex-direction: row;
}
}

.cancelPolicyContents h3 {
font-weight: 800;
    color: #fff;
    padding-bottom: 1.6rem;
    padding-top: 1.6rem;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
  margin-top: 2rem;
}

.cancelPolicyContents ul {
  padding: 2.4rem 4rem;
    border: solid 1px #fff;
    display: grid;
    gap: 2.4rem;
  border-radius: 1rem;
}

.cancelPolicyContents ul li {
  color: #fff;
}

.cancelPolicyContents h3,
.cancelPolicyContents p {
 text-align: left; 
}

.cancelPolicyContents p,
.cancelPolicyContents ul {
  margin: 0;
}

/*  */
.swiper-pagination {
  position: initial;
}

/*  */
.button, .shopify-challenge__button, .customer button {
  background-color: var(--blue-color);
  color: #fff;
}

.button:after, .shopify-challenge__button:after, .customer button:after, .shopify-payment-button__button--unbranded:after {
  box-shadow: none;
}


/*  */
.container-parking h2 {
  text-align: center;
}


/*  */
.icon-image-step {
  width: 4em;
  vertical-align: middle;
}



/*  */
.template-policy h2,
.template-policy h3 {
  margin-top: 4rem;
padding: 1rem;
    border-bottom: solid 2px;
    border-top: solid 2px;
  font-weight: 800;
}


.template-policy table {
  width: 100% !important;
  border: solid 1px var(--text-blue-color);
}

.template-policy table th,
.template-policy table td {
  padding: 1.6rem;
  border: solid 1px var(--text-blue-color);
}

.shopify-policy__container {
  max-width: 90ch;
}

@media screen and (min-width: 750px) {
    .footer {
        margin-top: 6rem !important;
    }
}

/*  */
.izyMultiBook {
 justify-content: center; 
}

@media screen and (min-width: 750px) {
.izyMultiBook {
 justify-content: flex-start; 
}
}

/*  */
.flatpickr-current-month * {
  color: var(--blue-color) !important; 
}

/*  */
.animate-on-scroll {
    /* 変化時間を1秒に、タイミング関数を ease-in-out に変更 */
    transition: 1.5s ease-in-out;
}

.animate__delay-05s {
 animation-delay: calc(var(--animate-delay) * 0.5);
}
.animate__delay-08s {
 animation-delay: calc(var(--animate-delay) * 0.8);
}
.animate__delay-13s {
 animation-delay: calc(var(--animate-delay) * 1.3);
}
.animate__delay-16s {
 animation-delay: calc(var(--animate-delay) * 1.6);
}

/*  */
.material-symbols-outlined {
  font-size: 1em;
}

/*  */
.badge {
  background-color: var(--pink-color);
}

/*  */
#MainContent {
  padding-bottom: 3rem;
}

.footer-block__details-content {
  margin: 0 !important;
}

.shopify-policy__body table tr td:first-of-type {
  background-color: var(--very-light-blue-color);
}

.shopify-policy__body table tr,
.shopify-policy__body table tr td{
  display: block;
  height: auto !important;
  width: auto !important;
}

@media screen and (min-width: 750px) {
.shopify-policy__body table tr td{
display: table-cell;
height: initial !important;
width: initial !important;
}
.shopify-policy__body table tr {
display: table-row;
height: initial !important;
width: initial !important;  
}
}

.c-triangle-down-red {
    display: block;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #ff0000;
    height: calc(tan(60deg) * 20px / 2);
    width: 20px;
    margin: auto;
}

.cancelPolicyContentsContainer h3,
.terms-modal-content h3 {
      padding-bottom: 1.6rem;
    padding-top: 1.6rem;
    border-bottom: solid 1px var(--text-blue-color);
    border-top: solid 1px var(--text-blue-color);
}

.shopify-policy__title h1 {
  font-size: 2.4rem;
}

@media screen and (min-width: 990px) {
.shopify-policy__title h1 {
  font-size: calc(var(--font-heading-scale) * 4rem);
}
}

.front-warning-contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media screen and (min-width: 990px) {
.front-warning-contents {
  display: grid;
    grid-template-columns: 20% 1fr 20%;
    gap: 3rem;
}
}

.front-warning-image {
  align-items: center;
  justify-content: center;
  order: 1;
}

  @media screen and (min-width: 990px) {
    .front-warning-image {
  align-items: center;
  justify-content: center;
  order: initial;
}
  }
  
.front-warning-text {
   order: 3;
   grid-column: 1 / -1;
  }

  @media screen and (min-width: 990px) {
  .front-warning-text {
   order: initial;
   grid-column: auto;
    width: auto;
  }
}



/* 20250722 */
.label_izyrent {
width: initial !important;
max-width: 100% !important;
}

.flatpickr-calendar, .flatpickr-days, .dayContainer  {
width: initial !important;
max-width: 100% !important;
}

.dayContainer {
min-width: 100% !important;
max-width: 100% !important;
}

.product-form__buttons {
  width: 100%;
  max-width: initial !important;
}

#izyrent .flatpickr-calendar {
  margin: auto;
}
