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

Break Point Settings

****************************************************/
/* Visivility depends on the device */
.pc {
  display: block;
}

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

.sp {
  display: none !important;
}

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

.line-break {
  display: inline-block;
}

/****************************************************

format

****************************************************/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: clamp(14px, 2.4vw, 24px);
  line-height: 1.8;
}

body {
  margin: 0 auto;
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-size: clamp(24px, 7.5vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1em;
  color: #04007B;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    min-width: calc(100% - 40px);
  }
}

a {
  transition: ease 0.3s;
  opacity: 1;
}

a:hover {
  opacity: 0.5;
}

p {
  font-size: clamp(14px, 2.4vw, 24px);
  font-weight: 600;
  color: #04007B;
}

/****************************************************

基本設計

****************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  font-size: clamp(14px, 2.4vw, 24px);
  padding: .8em 0;
  background: #fff;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0;
    height: 60px;
  }
}

.header h1 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-200%);
  color: transparent;
}

.header .inner {
  width: calc(100% - 40px);
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header .inner {
    width: calc(100% - 20px);
  }
}

.header .inner .flex {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .inner .flex .sitelogo {
  height: 100%;
  width: 24%;
  display: block;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .sitelogo {
    width: 50%;
  }
}

.header .inner .flex .sitelogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  object-position: left;
}

.header .inner .flex .menu {
  display: flex;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0.9;
    width: 100vw;
    max-width: 350px;
    height: 100vh;
    transform: translateX(101%);
    transition: ease 0.3s 0.2s;
  }
  .header .inner .flex .menu.active {
    transform: translateX(0);
    transition: ease 0.5s;
  }
}

.header .inner .flex .menu ul {
  display: flex;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul {
    display: block;
    margin: 0 auto;
    padding-top: 5em;
    padding: 5em 3em 0;
    z-index: 2;
  }
}

.header .inner .flex .menu ul li {
  border-right: 1px solid #62A0DA;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li {
    width: 100%;
    border-bottom: 1px solid #62A0DA;
    border-right: 0;
  }
}

.header .inner .flex .menu ul li:last-of-type {
  border-right: 0;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li:last-of-type {
    border-bottom: 0;
  }
}

.header .inner .flex .menu ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  align-content: center;
  line-height: 1;
  padding: 0.5em 0.75em 0.6em;
  font-weight: 500;
  color: #62A0DA;
  font-size: min(1.55vw, 18px);
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li a {
    position: relative;
    color: #fff;
    z-index: 2;
    padding: 1em 0;
    font-size: 16px;
    color: #62A0DA;
    font-weight: 600;
  }
}

.header .inner .flex .menu ul li a:hover {
  opacity: 1;
  background: #62A0DA;
  color: #fff;
}

.header .inner .flex .menu ul li span {
  display: inline-block;
}

.header .inner .flex .spmenu-open {
  display: none;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .spmenu-open {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: #62A0DA;
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    z-index: 3;
  }
  .header .inner .flex .spmenu-open span {
    position: absolute;
    top: calc(50% - 1.5px);
    left: 20%;
    display: block;
    width: 60%;
    height: 3px;
    background: #fff;
    border-radius: 1.5em;
  }
  .header .inner .flex .spmenu-open span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 1.5em;
    display: block;
    transform-origin: center;
    transform: translateY(-350%);
    transition: ease 0.3s;
  }
  .header .inner .flex .spmenu-open span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 1.5em;
    display: block;
    transform-origin: center;
    transform: translateY(350%);
    transition: ease 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .header .inner .flex .spmenu-open.active span {
    background: transparent;
  }
  .header .inner .flex .spmenu-open.active span::before {
    transform: translateY(0) rotate(45deg);
  }
  .header .inner .flex .spmenu-open.active span::after {
    transform: translateY(0) rotate(-45deg);
  }
}

.header .inner .flex .menu .rentalcar {
  position: relative;
  display: flex;
  align-items: center;
  background: #FF5757;
  margin-left: .2em;
  color: #fff;
  font-size: min(1.55vw, 18px);
  padding: .25em 3em .3em 1em;
  border-radius: 2em;
  font-weight: 800;
  transition: ease .3s;
  border: solid 2px #FF5757;
}

.header .inner .flex .menu .rentalcar::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  transform: translate(-40%, -50%);
  width: 2em;
  height: auto;
  aspect-ratio: 2 / 1;
  background: url(../img/icon-kuma.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu .rentalcar::before {
    transform: translate(-135%, -50%);
  }
}

.header .inner .flex .menu .rentalcar::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transform: translate(0, 25%);
  aspect-ratio: 1 / 1;
  width: 2.5em;
  height: auto;
  background: url(../img/icon-kuma02.webp) no-repeat center/contain;
  opacity: .3;
}

.header .inner .flex .menu .rentalcar:hover {
  background: #fff;
  color: #FF5757;
  opacity: 1;
}

.header .inner .flex .menu .rentalcar:hover::before {
  background: url(../img/icon-kuma01.webp) no-repeat center/contain;
}

.header .inner .flex .menu .rentalcar:hover::after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu .rentalcar {
    display: flex;
    justify-content: center;
    margin: 2em 3em 0;
    font-size: 16px;
  }
}

#gototop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 12.5vw;
  max-width: 60px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.15);
  border-radius: 0.3em;
  z-index: 10;
}

#gototop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ch {
  position: relative;
  width: 100%;
  height: calc(56.25vw - 5vh - 76px);
  max-height: calc(95vh - 76px);
  background: url(../img/ch-back.webp) repeat;
  margin-top: 76px;
}

.ch::before {
  position: absolute;
  content: '';
  top: 10%;
  right: 0;
  width: 8%;
  height: auto;
  aspect-ratio: 1 / 2.2;
  transform: translate(-25%, 0%);
  background: url(../img/kazari02b.webp) no-repeat center/contain;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .ch::before {
    top: 5%;
    width: 10%;
  }
}

@media screen and (max-width: 768px) {
  .ch {
    margin-top: 50px;
    height: 85vw;
    max-height: none;
  }
}

.ch::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 2px);
  width: 100%;
  height: auto;
  aspect-ratio: 2880 / 138;
  background: url(../img/ch-cover01.webp) no-repeat center top/cover;
}

.ch .ch-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ch .ch-item .item01 {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 15%;
  transform: translate(0%, 0);
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item01 {
    top: 5%;
    left: 2%;
  }
}

.ch .ch-item .item02 {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 45%;
  transform: translate(35%, 50%);
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item02 {
    width: 60%;
    transform: translate(50%, 50%);
  }
}

.ch .ch-item .item025 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 45%;
  transform: translate(-60%, 60%) rotate(-30deg);
}

.ch .ch-item .item03 {
  position: absolute;
  bottom: 3%;
  left: 5%;
  width: 4%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item03 {
    left: 1%;
    bottom: 0;
  }
}

.ch .ch-item .item04 {
  position: absolute;
  bottom: 9%;
  left: 38%;
  width: 4%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item04 {
    width: 5%;
    left: 29%;
    bottom: 4%;
  }
}

.ch .ch-item .item05 {
  position: absolute;
  bottom: 3%;
  right: 2%;
  width: 5%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item05 {
    right: 1%;
    bottom: 1.5%;
  }
}

.ch .ch-item .item06 {
  position: absolute;
  bottom: 8%;
  right: 32%;
  width: 5%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item06 {
    right: 29%;
    bottom: 4%;
  }
}

.ch .ch-item .item07 {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 3%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item07 {
    width: 4%;
    bottom: 2%;
    right: 7%;
  }
}

.ch .ch-item .item08 {
  position: absolute;
  bottom: 8%;
  right: 38%;
  width: 3%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item08 {
    right: 35%;
    bottom: 4%;
    width: 4%;
  }
}

.ch .ch-item .item09 {
  position: absolute;
  bottom: 9%;
  left: 43%;
  width: 3%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item09 {
    left: 35%;
    bottom: 4%;
    width: 4%;
  }
}

.ch .ch-item .item10 {
  position: absolute;
  top: 33%;
  right: 10%;
  width: 3%;
  z-index: 3;
  transform: initial;
}

@media screen and (max-width: 768px) {
  .ch .ch-item .item10 {
    right: 4%;
    top: 44%;
    width: 5%;
  }
}

.ch .inner-ch {
  position: relative;
  width: 70%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .ch .inner-ch {
    width: 90%;
  }
}

.ch .inner-ch .ch-title {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  z-index: 5;
}

.ch .inner-ch::after {
  content: '';
  display: block;
  position: absolute;
  right: 28%;
  top: 10%;
  width: 5%;
  transform: translateX(200%);
  max-width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../img/stamp02.webp) no-repeat center/contain;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .ch .inner-ch::after {
    width: 7%;
    right: 20%;
    top: 12%;
    transform: translate(-50%, calc(-50% +  20px));
  }
}

.ch.opened .ch-title {
  animation: cheerful-pop 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.ch .ch-wrap {
  position: absolute;
  width: 80%;
  max-width: 1550px;
  height: auto;
  aspect-ratio: 14 / 4.5;
  left: 50%;
  bottom: -7vh;
  transform: translateX(calc(-100vw - 50%));
  z-index: 3;
  transition: 2s .7s ease all;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap {
    bottom: -5vw;
    transition: 1.5s .7s ease all;
  }
}

.ch .ch-wrap .ch-wrap-img {
  position: absolute;
  bottom: 9%;
  width: auto;
  z-index: 5;
}

.ch .ch-wrap .ch-wrap-img img {
  width: auto;
  height: 100%;
}

.ch .ch-wrap .ch-wrap-img::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  background: url(../img/car-img00.webp) no-repeat center/contain;
  width: 110%;
  height: auto;
  aspect-ratio: 783 / 57;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap .ch-wrap-img {
    height: 35%;
  }
}

.ch .ch-wrap .ch-wrap-img:nth-of-type(1) {
  height: 47%;
  left: 0%;
  transform: translate(0%, 0) scale(1);
}

.ch .ch-wrap .ch-wrap-img:nth-of-type(2) {
  height: 40%;
  left: 50%;
  transform: translate(-35%, 0) scale(1);
}

.ch .ch-wrap .ch-wrap-img:nth-of-type(3) {
  height: 50%;
  right: 0%;
  transform: translate(0%, 0) scale(1);
}

.ch.opened .ch-wrap {
  left: 50%;
  transform: translateX(-50%);
}

@keyframes cheerful-pop {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.2) rotate(-15deg);
    /* 少し斜めから出現させる */
  }
  40% {
    opacity: 1;
    transform: translateY(-50%) scale(1.15) rotate(5deg);
    /* ポンッと大きく弾む (少し大きめに) */
  }
  70% {
    transform: translateY(-50%) scale(0.95) rotate(-3deg);
    /* 小さく反動をつける */
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
    /* 元のサイズに戻る */
  }
}

#sec000.sec00 {
  position: relative;
  background: #62A0DA;
  padding: min(26.5vw, 350px) 0 min(12.5vw, 180px);
}

@media screen and (max-width: 768px) {
  #sec000.sec00 {
    padding: min(35vw, 200px) 0 min(12.5vw, 180px);
  }
}

#sec000.sec00 .title-wrap {
  font-size: clamp(24px, 7.5vw, 36px);
  text-align: center;
}

#sec000.sec00 .title-wrap .sec-title {
  display: inline-block;
  font-size: min(3.64vw, 36px);
  color: #fff;
}

#sec000.sec00 .title-wrap .sec-title span {
  display: inline-block;
}

#sec000.sec00 .title-wrap .sec-title span.large {
  margin-left: -0.1em;
  font-size: 2em;
}

#sec000::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 45%;
  height: auto;
  aspect-ratio: 2 / 1.5;
  background: url(../img/back04.webp) no-repeat center/contain;
  opacity: .8;
}

@media screen and (max-width: 768px) {
  #sec000::before {
    top: 22%;
  }
}

.sec {
  width: 100%;
  padding: min(12.5vw, 180px) 0;
}

.sec .sec-title {
  font-size: min(6.25vw, 54px);
  line-height: 1.2;
}

.sec .sec-title.tel-icon {
  margin-bottom: 0;
  margin-top: 0.2em;
  font-size: min(6.25vw, 42px);
}

.sec .sec-title.tel-icon .kuma {
  position: relative;
  display: inline-block;
  padding-left: 2em;
}

.sec .sec-title.tel-icon .kuma::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-25%, -50%);
  width: 2.5em;
  height: 2.5em;
  display: block;
  background: url(../img/icon-tel01.webp) no-repeat center/contain;
}

.sec.sec-tel {
  position: relative;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sec.sec-tel .tel {
  font-size: min(14vw, 144px);
  font-weight: 900;
  line-height: 1;
  color: #FF5757;
  margin-bottom: 0.1em;
  pointer-events: none;
}

.sec .rental-wrap {
  position: relative;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap {
    width: 100%;
    max-width: 550px;
  }
}

.sec .rental-wrap .rental {
  position: relative;
  font-size: clamp(16px, 2.85vw, 36px);
  border-radius: 1em;
  align-items: center;
  background: #fff;
  padding: 2.5em 1.5em 2em;
  margin: 0 auto;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental {
    padding: 1em;
  }
}

.sec .rental-wrap .rental::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  transform: translate(MIN(1.5vw, 10px), MIN(1.5vw, 10px));
  width: 101%;
  height: 101%;
  border-radius: 1em;
  background: url(../img/back05.webp) repeat center/cover;
  z-index: -1;
}

.sec .rental-wrap .rental .text-wrap {
  position: relative;
  width: 95%;
  text-align: center;
  max-width: 565px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental .text-wrap {
    margin-top: 0.5em;
    width: 100%;
    max-width: 450px;
  }
}

.sec .rental-wrap .rental .text-wrap .lines {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, -105%);
  width: 45%;
  z-index: 1;
}

.sec .rental-wrap .rental .text-wrap .lines img {
  display: block;
  width: 100%;
}

.sec .rental-wrap .rental .text-wrap .lines::after {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  transform: translate(85%, 30%);
  background: url(../img/sec01-img03.webp) no-repeat center/contain;
  width: 70%;
  height: auto;
  aspect-ratio: 1 / 1;
  z-index: -1;
}

.sec .rental-wrap .rental .text-wrap .flex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental .text-wrap .flex {
    width: 80%;
    margin: 0 auto 1em;
    padding: 1em;
  }
}

.sec .rental-wrap .rental .text-wrap .flex p {
  font-size: .9em;
  padding-top: .2em;
}

.sec .rental-wrap .rental .text-wrap .flex h3 {
  position: relative;
  text-align: left;
  color: #FF5757;
  font-weight: 800;
  font-size: 1.6em;
  line-height: 1;
  margin-bottom: 0;
}

.sec .rental-wrap .rental p {
  color: #04007B;
  line-height: 1.5;
  text-align: center;
}

.sec .rental-wrap .rental p.time {
  font-size: min(5vw,28px);
}

.sec .rental-wrap .rental .inquiry {
  position: relative;
  padding: .5em 1.5em .5em 3.5em;
  border-radius: 1.5em;
  background: #FF5757;
  margin-bottom: .5em;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental .inquiry {
    margin: 0 auto .5em;
    padding: .5em 1em .5em 3em;
  }
}

.sec .rental-wrap .rental .inquiry p {
  position: relative;
  font-size: .95em;
  color: #FFF;
  display: inline-block;
}

.sec .rental-wrap .rental .inquiry p::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.2em;
  height: auto;
  aspect-ratio: 182 / 112;
  background: url(../img/icon-tel04.webp) no-repeat center/contain;
  transform: translate(-110%, -50%);
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental .inquiry p::after {
    width: 2em;
    transform: translate(-110%, -45%);
  }
}

.sec .rental-wrap .rental .free-tel {
  position: relative;
  font-size: 2.7em;
  line-height: 1;
  font-weight: 800;
  color: #FF5757;
  margin-bottom: 0.3em;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental .free-tel {
    pointer-events: all;
    font-size: 2.7em;
  }
}

.sec .rental-wrap .rental .rental-note {
  padding: .5em 1em;
  border: solid min(.5vw,4px) #FF5757;
  border-radius: .5em;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .sec .rental-wrap .rental .rental-note {
    padding: 1em;
    text-align: center;
  }
}

.sec .rental-wrap .rental .rental-note p {
  color: #FF5757;
  text-align: left;
}

.sec08 {
  position: relative;
  background: #62A0DA;
  overflow: hidden;
}

.sec08::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #E2F1FF;
  width: 120%;
  min-width: 600px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .sec08::before {
    width: 140%;
  }
}

.sec08 .inner00 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.sec08 .inner00 .title-wrap {
  position: relative;
  display: block;
  text-align: center;
}

.sec08 .inner00 .title-wrap .sec-title {
  display: inline-block;
  margin-bottom: 1em;
  color: #04007B;
  font-size: min(3.64vw, 36px);
}

.sec08 .inner00 .title-wrap .sec-title .large {
  font-size: 2em;
}

.sec08 .inner00 .calendar-wrap {
  position: relative;
  background: #fff;
  border: solid min(1vw, 7px) #04007B;
  border-radius: 1em;
  padding: 1.5em 0 3em;
  font-size: min(2.08vw, 26px);
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap {
    padding: 1em 1em 4em;
    font-size: min(3.75vw, 16px);
  }
}

.sec08 .inner00 .calendar-wrap .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 620px;
  margin: 0 auto 2em;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-header {
    margin: 0 auto 2em;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-header h5 {
  font-size: 1.77em;
  color: #04007B;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-header h5 {
    margin: 0 auto;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-header h5 span {
  font-size: .7em;
}

.sec08 .inner00 .calendar-wrap .calendar-header button {
  cursor: pointer;
  background: #04007B;
  color: #fff;
  padding: .1em 2em .2em;
  border-radius: 1em;
  opacity: 1;
  transition: .3;
}

.sec08 .inner00 .calendar-wrap .calendar-header button:hover {
  opacity: .5;
}

.sec08 .inner00 .calendar-wrap .calendar-header button.prev-btn {
  position: relative;
}

.sec08 .inner00 .calendar-wrap .calendar-header button.prev-btn::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translate(100%, -50%) rotate(-135deg);
  width: min(2vw, 20px);
  height: min(2vw, 20px);
  border-top: min(.3vw, 3px) solid #fff;
  border-right: min(.3vw, 3px) solid #fff;
  transition: .5s;
}

.sec08 .inner00 .calendar-wrap .calendar-header button.next-btn {
  position: relative;
}

.sec08 .inner00 .calendar-wrap .calendar-header button.next-btn::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%) rotate(45deg);
  width: min(2vw, 20px);
  height: min(2vw, 20px);
  border-top: min(.3vw, 3px) solid #fff;
  border-right: min(.3vw, 3px) solid #fff;
  transition: .5s;
}

.sec08 .inner00 .calendar-wrap .calendar-inner {
  position: relative;
  width: 70%;
  max-width: 470px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-inner {
    width: 100%;
    max-width: 450px;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-inner .holy {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-125%, 0);
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-inner .holy {
    position: relative;
    font-size: min(3.125vw, 14px);
    transform: translate(25%, -10%);
  }
}

.sec08 .inner00 .calendar-wrap .calendar-inner .holy::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 110%);
  width: 100%;
  height: auto;
  aspect-ratio: 72 / 44;
  background: url(../img/icon-kuma01.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-inner .holy::before {
    transform: translate(-50%, 30%);
  }
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-inner .flex {
    display: flex;
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn {
    display: flex;
    margin: 0 0 0 auto;
    width: 65%;
    max-width: 250px;
    justify-content: space-between;
    font-weight: 800;
  }
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn button {
    cursor: pointer;
    background: #04007B;
    color: #fff;
    padding: .1em 2em .2em;
    border-radius: 1em;
    opacity: 1;
    transition: .3;
  }
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn button:hover {
    opacity: .5;
  }
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn button.prev-btn {
    position: relative;
  }
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn button.prev-btn::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(100%, -50%) rotate(-135deg);
    width: min(2vw, 20px);
    height: min(2vw, 20px);
    border-top: min(.3vw, 3px) solid #fff;
    border-right: min(.3vw, 3px) solid #fff;
    transition: .5s;
  }
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn button.next-btn {
    position: relative;
  }
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar-sp-btn button.next-btn::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%) rotate(45deg);
    width: min(2vw, 20px);
    height: min(2vw, 20px);
    border-top: min(.3vw, 3px) solid #fff;
    border-right: min(.3vw, 3px) solid #fff;
    transition: .5s;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-inner .calendar {
    width: 100%;
    max-width: 100%;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tr {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, 1fr);
  gap: .3em;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar .week {
  color: #04007B;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar th {
  text-align: center;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody {
  font-weight: 600;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody .date-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody tr {
  margin-bottom: .3em;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody tr:last-child {
  margin-bottom: 0;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody tr td {
  border: solid 1.1px #bbb;
  padding: .2em 0;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody tr td:not(.is-sunday) {
  cursor: pointer;
}

.sec08 .inner00 .calendar-wrap .calendar-inner .calendar tbody tr td .is-holiday {
  color: #fff;
  background: url(../img/icon-kuma01.webp) no-repeat center/contain;
}

.sec08 .inner00 .calendar-wrap .calendar-item01 {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 4%;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-item01 {
    width: 5%;
    min-width: 18px;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-item02 {
  position: absolute;
  bottom: 0;
  left: 12%;
  width: 6%;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-item02 {
    left: 13%;
    min-width: 25px;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-item03 {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 6%;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-item03 {
    right: 25%;
    width: 8%;
    min-width: 28px;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-item04 {
  position: absolute;
  bottom: 0;
  right: 8%;
  width: 5%;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-item04 {
    right: 13%;
    width: 8%;
    min-width: 28px;
  }
}

.sec08 .inner00 .calendar-wrap .calendar-item05 {
  position: absolute;
  bottom: 0;
  right: 2%;
  width: 5%;
}

@media screen and (max-width: 768px) {
  .sec08 .inner00 .calendar-wrap .calendar-item05 {
    width: 7%;
    min-width: 30px;
  }
}

#sec02 {
  height: 10vw;
  width: 100%;
}

.sec01 {
  position: relative;
  margin-top: min(5vw, 70px);
  padding-top: min(7vw, 100px);
  z-index: 1;
}

.sec01 .inner {
  text-align: center;
}

.sec01 .cover {
  position: absolute;
  top: max(-7vw, -110px);
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3507 / 252;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sec01 .cover {
    z-index: -1;
  }
}

.sec01 .cover img {
  width: 110%;
  margin-left: -5%;
}

.sec01 .title-wrap {
  display: block;
  font-size: clamp(24px, 7.5vw, 36px);
}

.sec01 .title-wrap .sec-title {
  position: relative;
  display: inline-block;
  font-size: min(3.64vw, 36px);
  text-align: left;
  margin-bottom: 1em;
}

.sec01 .title-wrap .sec-title span {
  display: inline-block;
}

.sec01 .title-wrap .sec-title span.large {
  font-size: 2em;
}

.sec01 .title-wrap .sec-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-70%, -60%);
  width: 70%;
  min-width: 120px;
  aspect-ratio: 350 / 247;
  background: url(../img/sec01-text01.webp) no-repeat center/contain;
  display: block;
}

.sec01 .title-wrap .sec-title .img-wrap {
  position: absolute;
  font-size: 1em;
  top: 0;
  right: 0;
  width: 5.5em;
  transform: translate(110%, -10%) rotate(10deg);
}

.sec01 .title-wrap .sec-title .img-wrap::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  transform: translate(75%, -50%);
  width: 2em;
  height: 2em;
  background: url(../img/stamp03.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec01 .title-wrap .sec-title .img-wrap::before {
    transform: translate(15%, -100%);
  }
}

@media screen and (max-width: 768px) {
  .sec01 .title-wrap .sec-title .img-wrap {
    width: 5em;
    min-width: 75px;
    transform: translate(110%, 5%) rotate(10deg);
  }
}

.sec01 .title-wrap .sec-title .img-wrap img {
  width: 100%;
}

.sec01 .flex {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: .5em;
}

.sec01 .flex .price {
  text-align: left;
  color: #62A0DA;
  font-size: min(3.75vw,22px);
  margin-right: 2em;
}

@media screen and (max-width: 768px) {
  .sec01 .flex .scroll {
    position: relative;
    font-size: min(3.75vw,22px);
  }
}

@media screen and (max-width: 768px) {
  .sec01 .flex .scroll::before {
    position: absolute;
    content: '▶';
    bottom: 50%;
    right: 0;
    transform: translate(100%, -60%);
    width: 1em;
    height: 1em;
    aspect-ratio: 1 / 1;
    animation: scroll 2s ease infinite;
  }
  @keyframes scroll {
    0% {
      transform: translate(100%, 60%);
    }
    50% {
      transform: translate(130%, 60%);
    }
    100% {
      transform: translate(100%, 60%);
    }
  }
}

@media screen and (max-width: 768px) {
  .sec01 .table-scroll-box {
    overflow-x: auto;
    width: 100%;
  }
}

.sec01 .table-scroll-box table {
  table-layout: fixed;
  width: 100%;
  color: #04007B;
  border-collapse: collapse;
  /* すべてのセルの基本デザイン */
}

@media screen and (max-width: 768px) {
  .sec01 .table-scroll-box table {
    width: 190%;
    max-width: 1100px;
  }
}

.sec01 .table-scroll-box table th, .sec01 .table-scroll-box table td {
  text-align: center;
  align-content: center;
}

.sec01 .table-scroll-box table thead th {
  position: sticky;
  top: 76px;
  width: 100%;
  z-index: 10;
  color: #04007B;
  padding: 10px 0;
  font-size: min(2.6vw, 26px);
  /* ヘッダーとtbodyの間の10pxの隙間 */
  border-bottom: 10px solid #fff;
}

@media screen and (max-width: 768px) {
  .sec01 .table-scroll-box table thead th {
    top: 0px;
    font-size: min(4.69vw, 20px);
  }
}

.sec01 .table-scroll-box table thead th:nth-child(1) {
  background: #62A0DA;
  color: #fff;
  width: 30%;
}

.sec01 .table-scroll-box table thead th:nth-child(2) {
  background: #E2F1FF;
  width: calc((100% - 30%) / 4);
}

.sec01 .table-scroll-box table thead th:nth-child(3) {
  background: #E7E2FF;
  width: calc((100% - 30%) / 4);
}

.sec01 .table-scroll-box table thead th:nth-child(4) {
  background: #E2F1FF;
  width: calc((100% - 30%) / 4);
}

.sec01 .table-scroll-box table thead th:nth-child(5) {
  background: #E7E2FF;
  width: calc((100% - 30%) / 4);
}

.sec01 .table-scroll-box table tbody {
  font-weight: 600;
}

.sec01 .table-scroll-box table tbody tr.tr_1 td {
  position: relative;
}

.sec01 .table-scroll-box table tbody tr.tr_1 td::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #A2D1FF;
}

.sec01 .table-scroll-box table tbody tr:last-child td {
  border-bottom: 10px solid #fff;
}

.sec01 .table-scroll-box table tbody tr td {
  font-size: 1.5em;
}

.sec01 .table-scroll-box table tbody tr td:nth-child(2), .sec01 .table-scroll-box table tbody tr td:nth-child(3), .sec01 .table-scroll-box table tbody tr td:nth-child(4), .sec01 .table-scroll-box table tbody tr td:nth-child(5) {
  border: solid 2px #A2D1FF;
}

.sec01 .table-scroll-box table tbody tr td:nth-child(2) {
  border-left: none;
}

.sec01 .table-scroll-box table tbody tr td.last-td {
  font-size: .85em;
  color: #62A0DA;
  text-align: left;
  padding: .2em;
  line-height: 1.2;
}

.sec01 .table-scroll-box table tbody tr td.table-bottom {
  width: 100%;
  background: #E2F1FF;
  font-size: 1em;
  border-right: solid 2px #E2F1FF;
  border-left: solid 2px #E2F1FF;
  padding: 0 .5em;
}

.sec01 .table-scroll-box table tbody tr td.row-span {
  width: 30%;
  background: #62A0DA;
  color: #fff;
  border: none;
  border-bottom: 10px solid #fff;
}

.sec01 .table-scroll-box table tbody tr td.row-span::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #62A0DA;
}

.sec01 .table-scroll-box table tbody tr td .yen {
  font-size: .7em;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont {
  position: relative;
  display: flex;
  justify-content: right;
  padding: .5em;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont::before {
  position: absolute;
  content: '';
  bottom: 50%;
  left: 0;
  transform: translate(0%, 50%);
  width: 42%;
  height: auto;
  aspect-ratio: 2 / 1.8;
}

@media screen and (max-width: 768px) {
  .sec01 .table-scroll-box table tbody tr td .rental-cont::before {
    max-width: 105px;
  }
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok01::before {
  background: url(../img/rentalcar01.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok02::before {
  background: url(../img/rentalcar02.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok03::before {
  background: url(../img/rentalcar03.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok04::before {
  background: url(../img/rentalcar04.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok04::after {
  position: absolute;
  content: 'AT';
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  transform: translate(30%, -25%);
  background: #04007B;
  border-radius: 50%;
  font-size: min(3.125vw,18.5px);
  z-index: 2;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok05::before {
  background: url(../img/rentalcar05.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok06::before {
  background: url(../img/rentalcar06.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok07::before {
  background: url(../img/rentalcar07.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok08::before {
  background: url(../img/rentalcar08.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok09::before {
  background: url(../img/rentalcar09.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok10::before {
  background: url(../img/rentalcar10.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok11::before {
  background: url(../img/rentalcar11.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok12::before {
  background: url(../img/rentalcar12.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont.text-blok13::before {
  background: url(../img/rentalcar13.webp) no-repeat center/contain;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont .text-blok {
  width: 60%;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont .text-blok p {
  color: #fff;
  padding-top: .2em;
}

.sec01 .table-scroll-box table tbody tr td .rental-cont .text-blok .line-top {
  font-size: min(2.864vw, 30px);
  line-height: 1.2;
  padding-bottom: .4em;
  background-image: linear-gradient(to right, #fff 0%, #fff 60%, transparent 60%, transparent 100%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
}

@media screen and (max-width: 768px) {
  .sec01 .table-scroll-box table tbody tr td .rental-cont .text-blok .line-top {
    font-size: min(5vw, 24px);
  }
}

.sec01 .table-scroll-box table tbody tr td .rental-cont .text-blok .line-top span {
  display: inline-block;
}

.sec02 {
  position: relative;
  overflow: hidden;
  background: #E2F1FF;
  z-index: 1;
  padding: min(22.5vw, 250px) 0 min(12.5vw, 180px) 0;
}

@media screen and (max-width: 768px) {
  .sec02 {
    padding: min(22.5vw, 140px) 0 min(12.5vw, 180px) 0;
  }
}

.sec02 .title-wrap {
  display: block;
  font-size: clamp(24px, 7.5vw, 36px);
}

.sec02 .title-wrap .flex {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.sec02 .title-wrap .flex .sec-title {
  position: relative;
  display: inline-block;
  font-size: min(3.64vw, 36px);
  margin-bottom: 1em;
  color: #04007B;
}

.sec02 .title-wrap .flex .sec-title .large {
  font-size: 2em;
}

.sec02 .title-wrap .flex .sec-title .img-wrap {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 50%;
  width: 6.5em;
  transform: translate(-250%, -25%);
}

.sec02 .title-wrap .flex .sec-title .img-wrap img {
  width: 100%;
}

.sec02 .title-wrap .flex .sec-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 50%;
  min-width: 150px;
  aspect-ratio: 521 / 130;
  background: url(../img/sec02-text01.webp) no-repeat center/contain;
  display: block;
}

@media screen and (max-width: 768px) {
  .sec02 .exsample-wrap {
    max-width: 550px;
    margin: 5% auto 0 auto;
  }
}

.sec02 .exsample-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(20px, 20px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5em;
}

@media screen and (max-width: 768px) {
  .sec02 .exsample-back {
    width: 90%;
    left: 50%;
    transform: translate(calc(-50% + 20px), 20px);
  }
}

.sec02 .exsample {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 1.5em;
  background: #62A0DA;
  width: 100%;
  border-radius: 1em;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .sec02 .exsample {
    gap: 1em;
  }
}

@media screen and (max-width: 768px) {
  .sec02 .exsample {
    display: block;
  }
}

.sec02 .exsample::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  background: url(../img/back05.webp) repeat center/cover;
  z-index: -1;
  border-radius: 1em;
  transform: translate(MIN(1.5vw, 10px), MIN(1.5vw, 10px));
}

.sec02 .exsample::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  transform: translate(25%, -75%) rotate(10deg);
  width: 18%;
  height: auto;
  aspect-ratio: 2 / 1.5;
  background: url(../img/sec02-logo.svg) no-repeat center/contain;
}

.sec02 .exsample .car-name {
  width: 32%;
}

@media screen and (max-width: 1200px) {
  .sec02 .exsample .car-name {
    width: 40%;
    margin: 0 auto 2em;
  }
}

@media screen and (max-width: 768px) {
  .sec02 .exsample .car-name {
    width: 100%;
    max-width: 450px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-bottom: 1em;
  }
}

.sec02 .exsample .car-name .car-name-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4em;
}

@media screen and (max-width: 768px) {
  .sec02 .exsample .car-name .car-name-wrap {
    margin-bottom: 0;
  }
}

.sec02 .exsample .car-name .car-name-wrap p {
  font-size: min(3.12vw, 36px);
  line-height: 1.5;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .sec02 .exsample .car-name .car-name-wrap p {
    font-size: min(6.25vw, 36px);
  }
}

.sec02 .exsample .car-name img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .sec02 .exsample .car-name img {
    display: block;
    width: 40%;
  }
}

.sec02 .exsample .list {
  padding: 1.5em;
  width: 65%;
  background: #fff;
  border-radius: 1em;
  line-height: 1.5;
}

.sec02 .exsample .list .list-wrap {
  background: #E2F1FF;
}

@media screen and (max-width: 1200px) {
  .sec02 .exsample .list {
    width: 100%;
    padding: 1em;
  }
}

.sec02 .exsample .list .time {
  background: #62A0DA;
  margin-bottom: .5em;
  text-align: center;
  color: #fff;
}

.sec02 .exsample .list .flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 .5em;
}

@media screen and (max-width: 600px) {
  .sec02 .exsample .list .flex {
    display: block;
    padding: 0;
  }
}

.sec02 .exsample .list .flex::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 10%;
  height: 1em;
  background: url(../img/arrow.webp) no-repeat center/contain;
}

@media screen and (max-width: 600px) {
  .sec02 .exsample .list .flex::before {
    right: 75%;
    width: 2em;
    height: .8em;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: url(../img/arrow.webp) no-repeat right/cover;
    transform: translate(50%, -50%) rotate(90deg);
  }
}

.sec02 .exsample .list .flex .left {
  position: relative;
  margin-left: 2em;
}

@media screen and (max-width: 600px) {
  .sec02 .exsample .list .flex .left {
    margin-bottom: 2.5em;
    margin-left: clamp(2em, 7vw, 2.5em);
  }
}

.sec02 .exsample .list .flex .left::before {
  position: absolute;
  content: '借';
  top: 50%;
  left: 0;
  width: 2em;
  height: 2em;
  text-align: center;
  align-content: center;
  color: #fff;
  transform: translate(-110%, -50%);
  background: #62A0DA;
  border-radius: 50%;
  font-size: min(3.125vw,16px);
}

@media screen and (max-width: 600px) {
  .sec02 .exsample .list .flex .left::before {
    font-size: min(3.125vw,14px);
  }
}

.sec02 .exsample .list .flex .right {
  position: relative;
}

@media screen and (max-width: 600px) {
  .sec02 .exsample .list .flex .right {
    margin-left: clamp(2em, 7vw, 2.5em);
  }
}

.sec02 .exsample .list .flex .right::before {
  position: absolute;
  content: '返';
  top: 50%;
  left: 0;
  width: 2em;
  height: 2em;
  text-align: center;
  align-content: center;
  color: #fff;
  transform: translate(-110%, -50%);
  background: #FF5757;
  border-radius: 50%;
  font-size: min(3.125vw,16px);
}

@media screen and (max-width: 600px) {
  .sec02 .exsample .list .flex .right::before {
    font-size: min(3.125vw,14px);
  }
}

.sec02 .exsample .list .price {
  padding: 0 .5em .5em;
  justify-content: right;
  display: flex;
  font-size: 1.1em;
}

.sec02 .exsample .list .price:last-child {
  padding: 0 .5em;
}

.sec03 {
  overflow: hidden;
  position: relative;
  background: #E2F1FF;
  padding: min(12.5vw, 180px) 0 min(20.5vw, 250px) 0;
}

.sec03::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  background: #fff;
  width: 120%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .sec03::before {
    left: -20%;
    width: 140%;
  }
}

.sec03 .title-wrap {
  position: relative;
  display: block;
  font-size: clamp(24px, 7.5vw, 36px);
  text-align: center;
}

.sec03 .title-wrap .sec-title {
  display: inline-block;
  font-size: min(3.64vw, 36px);
  margin-bottom: 1em;
}

.sec03 .title-wrap .sec-title span {
  display: inline-block;
}

.sec03 .title-wrap .sec-title span.large {
  font-size: 2em;
}

.sec03 .title-wrap .img-wrap {
  font-size: min(3.64vw, 36px);
  position: absolute;
  top: 0;
  left: calc(50% + 8.5em);
  width: 8em;
  transform: translate(0, -24%);
}

.sec03 .title-wrap .img-wrap img {
  width: 100%;
}

.sec03 .title-wrap .img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -70%);
  width: 60%;
  aspect-ratio: 409 / 183;
  background: url(../img/sec03-text01.webp) no-repeat center/contain;
  display: block;
}

.sec03 .flex {
  width: 100%;
  display: flex;
  font-size: min(2.6vw, 24px);
  gap: 2em;
  margin-bottom: 2em;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex.icon-pc {
    display: none;
  }
}

.sec03 .flex.icon-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex.icon-sp {
    display: flex;
    width: 95%;
    max-width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .sec03 .flex {
    margin: 0 auto 2em;
    justify-content: center;
    gap: 1em 2em;
  }
}

@media screen and (max-width: 768px) {
  .sec03 .flex {
    font-size: min(3.125vw, 20px);
  }
}

.sec03 .flex .icon {
  position: relative;
  width: calc((100% - 8em)/4);
  height: auto;
  aspect-ratio: 1/1;
  background: #62A0DA;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  box-sizing: border-box;
  text-align: center;
  align-content: center;
  padding-bottom: .5em;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex .icon {
    width: calc(100% / 3 - 1.34em);
  }
}

.sec03 .flex .icon img {
  width: 65%;
  height: auto;
  display: block;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex .icon img {
    width: 50%;
    margin: 0 auto;
  }
}

.sec03 .flex .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100%  + .6em);
  transform: translateY(-50%);
  width: 1em;
  height: auto;
  aspect-ratio: 92 / 159;
  background: url(../img/sec03-arrow.webp) no-repeat center/contain;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex .icon::after {
    left: calc(100% + 0.5em);
    width: 1em;
  }
}

.sec03 .flex02 {
  display: flex;
  font-size: min(2.6vw, 24px);
  gap: 2em;
  width: 100%;
  background: #ccc;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02.icon-pc {
    display: none;
  }
}

.sec03 .flex02.icon-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02.icon-sp {
    display: flex;
    width: 95%;
    max-width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02 {
    margin: 0 auto;
    justify-content: center;
    gap: 1em 2em;
  }
}

@media screen and (max-width: 768px) {
  .sec03 .flex02 {
    font-size: min(3.125vw, 20px);
  }
}

.sec03 .flex02 .icon-blank {
  width: calc((100% - 8em) / 4);
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02 .icon-blank {
    width: calc(100% / 3 - 1.34em);
  }
}

.sec03 .flex02 .icon {
  position: relative;
  width: calc((100% - 8em) / 4);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  background: #62A0DA;
  font-weight: 600;
  box-sizing: border-box;
  text-align: center;
  align-content: center;
  padding-bottom: 1em;
}

.sec03 .flex02 .icon.icon01 {
  background: #FF5757;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02 .icon {
    width: calc(100% / 3 - 1.34em);
    padding: 1em;
  }
}

.sec03 .flex02 .icon img {
  height: auto;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 60%;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02 .icon img {
    width: 60%;
    margin: 0 auto;
  }
}

.sec03 .flex02 .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100%  + 0.6em);
  transform: translateY(-50%);
  width: 1em;
  height: auto;
  aspect-ratio: 92 / 159;
  background: url(../img/sec03-arrow02c.webp) no-repeat center/contain;
}

@media screen and (max-width: 1200px) {
  .sec03 .flex02 .icon::after {
    left: calc(100% + 0.5em);
    width: 1em;
  }
}

.sec03 .flex02 .icon:nth-child(3)::after,
.sec03 .flex02 .icon :nth-child(4)::after {
  content: none;
}

.sec04 {
  position: relative;
  text-align: center;
  background: #62A0DA;
}

.sec04 .cover {
  position: absolute;
  top: max(-7vw, -110px);
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3507 / 252;
  overflow: hidden;
}

.sec04 .cover img {
  width: 110%;
  margin-left: -5%;
}

.sec04 .title-wrap {
  display: block;
  font-size: min(2vw, 21px);
}

.sec04 .title-wrap .flex {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec04 .title-wrap .flex .sec-title {
  display: inline-block;
  font-size: 2em;
  color: #fff;
  text-align: left;
  line-height: 1.3;
  font-size: min(3.64vw, 36px);
  margin-left: 6em;
}

.sec04 .title-wrap .flex .sec-title .large {
  font-size: 2em;
}

.sec04 .title-wrap .flex .sec-title .img-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8em;
  transform: translate(-120%, 0);
}

.sec04 .title-wrap .flex .sec-title .img-wrap::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 65%;
  min-width: 90px;
  height: auto;
  aspect-ratio: 2 / .8;
  transform: translate(-30%, -100%);
  background: url(../img/sec04-text01.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec04 .title-wrap .flex .sec-title .img-wrap::before {
    transform: translate(0%, -100%);
  }
}

.sec04 .title-wrap .flex .sec-title .img-wrap img {
  width: 100%;
  height: auto;
}

.sec04 .note-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 1.5em;
  padding: 3em;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .sec04 .note-wrap {
    padding: 1em;
  }
}

.sec04 .note-wrap .note-box {
  margin-bottom: 2.5em;
}

.sec04 .note-wrap .note-box:nth-child(2) {
  margin-bottom: 0;
}

.sec04 .note-wrap .note-box .rental {
  background: #62A0DA;
  border-radius: 1.5em;
  padding: .5em 0;
  margin-bottom: 2em;
  color: #fff;
  font-size: 1.1em;
}

@media screen and (max-width: 768px) {
  .sec04 .note-wrap .note-box .rental {
    margin-bottom: 1em;
  }
}

.sec04 .note-wrap .note-box .rental.rental02 {
  background: #FF5757;
}

.sec04 .note-wrap .note-box .flex {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  align-items: flex-start;
}

@media screen and (max-width: 480px) {
  .sec04 .note-wrap .note-box .flex {
    display: block;
    width: 95%;
  }
}

.sec04 .note-wrap .note-box .flex.flex01 {
  align-items: flex-start;
  margin-bottom: 2em;
}

.sec04 .note-wrap .note-box .flex .icon {
  position: relative;
  width: 13%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #62A0DA;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  box-sizing: border-box;
  text-align: center;
  align-content: center;
}

@media screen and (max-width: 768px) {
  .sec04 .note-wrap .note-box .flex .icon {
    display: block;
    margin: 0 auto 1em;
    width: 25%;
    max-width: 80px;
  }
}

.sec04 .note-wrap .note-box .flex .icon.icon01 {
  background: #FF5757;
}

.sec04 .note-wrap .note-box .flex .icon img {
  height: auto;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.sec04 .note-wrap .note-box .flex .icon img.icon-img01 {
  width: 70%;
}

.sec04 .note-wrap .note-box .flex .icon img.icon-img02 {
  width: 60%;
}

.sec04 .note-wrap .note-box .flex .note-cont {
  text-align: justify;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .sec04 .note-wrap .note-box .flex .note-cont {
    width: 100%;
  }
}

.sec04 .note-wrap .note-box .flex .note-cont p {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: .8em;
}

.sec04 .note-wrap .note-box .flex .note-cont .note-text {
  background: #E2F1FF;
  padding: 1.5em 1em;
  margin-top: 1.5em;
}

.sec04 .note-wrap .note-box .flex .note-cont .note-text p {
  margin-bottom: 0;
}

.sec04 .note-wrap .note-box .flex .note-cont span {
  padding-bottom: .2em;
  background-image: linear-gradient(to right, #FF5757 0%, #FF5757 60%, transparent 60%, transparent 100%);
  background-size: 12px 3px;
  background-repeat: repeat-x;
  background-position: bottom;
}

.sec04 .note-wrap .note-box .flex .note-cont span.span01 {
  padding: 0 .4em  .2em;
}

.sec04 .note-wrap .note-box .flex .note-cont span.span02 {
  padding-right: .4em;
}

.sec06 {
  position: relative;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}

.sec06 .inner {
  max-width: 1000px;
}

.sec06::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 25 / 17;
  background: url(../img/back06.webp) no-repeat center/contain;
  transform: translate(45%, 13%);
  opacity: 0.5;
  z-index: -1;
}

.sec06 .sec-title {
  font-size: min(3.64vw, 36px);
}

.sec06 .sec-title span {
  font-size: 2em;
}

.sec06 .ques {
  position: relative;
  font-size: 1.4em;
  font-weight: 700;
  width: 100%;
  background: #62A0DA;
  color: #fff;
  border-radius: 1.5em;
  padding: 0.5em 1.3em 0.5em 3.3em;
  margin-top: 1.2em;
}

@media screen and (max-width: 768px) {
  .sec06 .ques {
    font-size: min(4.375vw, 24px);
  }
}

.sec06 .ques::before {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0.8em;
  height: 2.5em;
  width: 2em;
  background: url(../img/sec06-icon01.webp) no-repeat center/contain;
}

.sec06 .ans {
  position: relative;
  font-size: 1.1em;
  text-align: justify;
  padding-left: 4em;
  padding-right: 2em;
  margin-top: 0.6em;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec06 .ans {
    font-size: min(4.375vw, 20px);
    padding-left: 3.8em;
    padding-right: 1em;
  }
}

.sec06 .ans::before {
  content: '';
  position: absolute;
  top: -0.4em;
  left: 1em;
  height: 2.5em;
  width: 2.5em;
  background: url(../img/sec06-icon02.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec06 .ans::before {
    left: .8em;
  }
}

.sec06 .cancel {
  display: inline-block;
  margin-top: 1em;
  margin-left: 4em;
  margin-right: 1em;
  background: #E2F1FF;
  padding: 1em;
}

.sec06 .cancel p {
  color: #000;
}

.sec07 {
  position: relative;
  background: #62A0DA;
  overflow: hidden;
}

.sec07::before {
  position: absolute;
  content: '';
  top: 10%;
  right: -5%;
  width: 25%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 2 / 1;
  background: url(../img/ch-item01.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec07::before {
    width: 28%;
  }
}

.sec07::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 50%;
  height: auto;
  aspect-ratio: 2 / 1.7;
  transform: translate(-30%, 48%) scaleX(-1);
  background: url(../img/ch-item02.webp) no-repeat center/contain;
}

.sec07 .sec-title {
  color: #fff;
  font-size: min(3.64vw, 36px);
}

.sec07 .sec-title .large {
  font-size: 2em;
}

.sec07 .loan-wrap {
  position: relative;
  z-index: 1;
}

.sec07 .loan-wrap::after {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 101%;
  max-width: 1000px;
  height: 101%;
  background: url(../img/back05.webp) repeat center/cover;
  z-index: -1;
  border-radius: 2em;
  transform: translate(MIN(1.5vw, 10px), MIN(1.5vw, 10px));
  transform: translate(calc(-50% + 20px), 20px);
}

.sec07 .loan-wrap::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 10%;
  height: auto;
  aspect-ratio: 1 / 3;
  transform: translate(-80%, -80%);
  background: url(../img/kazari02a.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec07 .loan-wrap::before {
    transform: translate(0%, -60%);
    width: 20%;
  }
}

.sec07 .loan-wrap .table-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 2em;
  padding: 1.5em 1em 1.5em 3em;
  background: #fff;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .sec07 .loan-wrap .table-inner {
    padding: 1.5em 1em 1.5em 2em;
  }
}

.sec07 .loan-wrap .table-inner .table-scloll {
  width: 100%;
  height: 530px;
  overflow-y: scroll;
  padding-right: 3em;
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: auto;
}

@media screen and (max-width: 768px) {
  .sec07 .loan-wrap .table-inner .table-scloll {
    padding-right: 2em;
  }
}

.sec07 .loan-wrap .table-inner .table-scloll::-webkit-scrollbar {
  width: 17px;
  display: block !important;
}

@media screen and (max-width: 768px) {
  .sec07 .loan-wrap .table-inner .table-scloll::-webkit-scrollbar {
    width: 12px;
  }
}

.sec07 .loan-wrap .table-inner .table-scloll::-webkit-scrollbar-track {
  background-color: #e0e0e0 !important;
  box-shadow: inset 0 0 0 10px #e0e0e0 !important;
  -webkit-box-shadow: inset 0 0 0 10px #e0e0e0 !important;
  border-radius: 10px;
}

.sec07 .loan-wrap .table-inner .table-scloll::-webkit-scrollbar-thumb {
  background-color: #62A0DA !important;
  border-radius: 10px !important;
  border: 3px solid #e0e0e0 !important;
}

.sec07 .loan-wrap .table-inner .loan-bottom {
  text-align: justify;
  margin-bottom: 1.5em;
}

.sec07 .loan-wrap .table-inner .loan-bottom p {
  font-size: min(3.125vw,16px);
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}

.sec07 .loan-wrap .table-inner .loan-bottom .chapter {
  font-size: min(4.375vw,20px);
  font-weight: 800;
}

.sec07 .loan-wrap .table-inner .loan-bottom .article {
  font-size: min(3.75vw,18px);
  font-weight: 800;
  margin-bottom: .3em;
}

.sec07 .loan-wrap .table-inner .loan-bottom .text-blank {
  text-indent: -1em;
  padding-left: 1em;
}

.sec07 .loan-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(20px, 20px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2em;
}

.tek3 .sub-title {
  margin-top: .5em;
  font-size: clamp(12px, 3.125vw, 32px);
}

.footer {
  width: 100%;
  border-top: 1px solid #999;
}

.footer .shop {
  width: 100%;
  background: #62A0DA;
  padding: 10px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
}

.footer .shop img {
  width: auto;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .footer .shop img {
    height: 30px;
  }
}

.footer p {
  font-weight: 400;
  text-align: center;
  font-size: 12px;
  padding: 0.3em;
}
