@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;
  }
}

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

format

****************************************************/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: clamp(14px, 4.375vw, 18px);
  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, 4.375vw, 18px);
  font-weight: 600;
  color: #04007B;
}

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

基本設計

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

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

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

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

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

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

.header .inner .flex .sitelogo {
  height: 40px;
  width: auto;
  display: block;
}

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

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

@media screen and (max-width: 768px) {
  .header .inner .flex .menu {
    position: absolute;
    top: 0;
    right: 0;
    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: 50px;
    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);
  }
}

#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;
}

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

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

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

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

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

.ch .inner-ch::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateX(-100%);
  width: 5%;
  max-width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../img/stamp01.webp) no-repeat center/contain;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .ch .inner-ch::before {
    width: 10%;
    transform: translateX(7%);
    top: 55%;
  }
}

.ch .inner-ch::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 15%;
  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: 10%;
    transform: translateX(-5%);
    top: 10%;
  }
}

.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: 100%;
  max-width: 1920px;
  height: auto;
  aspect-ratio: 1400 / 350;
  left: 50%;
  bottom: -5vh;
  transform: translateX(-50%);
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap {
    bottom: -5vw;
  }
}

.ch .ch-wrap img {
  position: absolute;
}

.ch .ch-wrap img:nth-of-type(1) {
  z-index: 3;
  bottom: 9%;
  left: 17%;
  transform: translateX(0) scale(0.5);
  height: 77%;
  width: auto;
  opacity: 0;
  transition: 0.5s 0.7s;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap img:nth-of-type(1) {
    bottom: 25%;
    height: 100%;
  }
}

.ch .ch-wrap img:nth-of-type(2) {
  z-index: 4;
  bottom: 5%;
  left: 32%;
  transform: translateX(0) scale(0.5);
  height: 48%;
  width: auto;
  opacity: 0;
  transition: 0.5s 0.7s;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap img:nth-of-type(2) {
    bottom: 10%;
    height: 60%;
  }
}

.ch .ch-wrap img:nth-of-type(3) {
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  height: 77%;
  width: auto;
  opacity: 0;
  transition: 0.5s 0.7s;
}

.ch .ch-wrap img:nth-of-type(4) {
  z-index: 4;
  bottom: 5%;
  left: 68%;
  transform: translateX(-100%) scale(0.5);
  height: 58%;
  width: auto;
  opacity: 0;
  transition: 0.5s 0.7s;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap img:nth-of-type(4) {
    bottom: 8%;
    height: 70%;
  }
}

.ch .ch-wrap img:nth-of-type(5) {
  z-index: 3;
  bottom: 9%;
  left: 86%;
  transform: translateX(-100%) scale(0.5);
  height: 58%;
  width: auto;
  opacity: 0;
  transition: 0.5s 0.7s;
}

@media screen and (max-width: 768px) {
  .ch .ch-wrap img:nth-of-type(5) {
    bottom: 20%;
    height: 80%;
    transform: translateX(-110%) scale(0.5);
  }
}

.ch.opened img:nth-of-type(1) {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ch.opened img:nth-of-type(1) {
    transform: translateX(-40%) scale(1);
  }
}

.ch.opened img:nth-of-type(2) {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ch.opened img:nth-of-type(2) {
    transform: translateX(-40%) scale(1);
  }
}

.ch.opened img:nth-of-type(3) {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ch.opened img:nth-of-type(3) {
    transform: translateX(-40%) scale(1);
  }
}

.ch.opened img:nth-of-type(4) {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ch.opened img:nth-of-type(4) {
    transform: translateX(-40%) scale(1);
  }
}

.ch.opened img:nth-of-type(5) {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ch.opened img:nth-of-type(5) {
    transform: translateX(-60%) scale(1);
  }
}

@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);
    /* 元のサイズに戻る */
  }
}

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

.sec .sub-title {
  font-size: clamp(12px,3.125vw, 32px);
  text-align: center;
}

.sec .sub-title.mb2 {
  margin-bottom: 2em;
  font-weight: 800;
  font-feature-settings: "palt";
}

.sec .sub-title.mb2 span {
  color: #62A0DA;
  font-size: 1.3em;
}

.sec .btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 350px;
  margin: auto auto 0 auto;
  border-radius: 50vw;
  padding: .5em 1.5em .5em 1em;
  text-align: center;
  box-sizing: border-box;
  border: 2px solid #62A0DA;
  background: #62A0DA url(../img/sec03-arrow02a.webp) no-repeat 90%/0.4em;
  transition: .2s ease all;
}

.sec .btn:hover {
  background: #fff url(../img/sec03-arrow.webp) no-repeat 90%/0.4em;
}

.sec .btn:hover p {
  color: #62A0DA;
}

@media screen and (max-width: 768px) {
  .sec .btn:hover {
    background: #62A0DA url(../img/sec03-arrow02a.webp) no-repeat 90%/0.4em;
  }
  .sec .btn:hover p {
    color: #fff;
  }
}

.sec .btn a {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec .btn p {
  margin-top: 0;
  color: #fff;
  font-size: .7em;
  line-height: 1;
}

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

.sec .sec-title.shop {
  font-size: min(7.28vw, 72px);
  margin-bottom: 0.7em;
}

.sec .sec-title.tel-icon {
  margin-bottom: 0;
  margin-top: 0.2em;
}

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

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

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

.sec.sec-tel.t2 {
  padding: min(17vw, 180px) 0 min(12.5vw, 180px);
}

.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.sec-tel.tel2 {
  padding: min(17vw, 180px) 0 0;
}

.sec.sec-tel.tel3 {
  padding: 0 0 min(17vw, 180px) 0;
}

.sec.sec-tel .read01 {
  font-size: 1.3em;
  font-size: clamp(12px, 2.343vw, 24px);
  font-weight: 500;
}

.sec.sec-tel .read01 span {
  display: inline-block;
}

.sec.sec-tel .text-wrap {
  position: relative;
  z-index: 1;
  width: auto;
  text-align: center;
  background: #E2F1FF;
  padding: 1em 2em;
  border-radius: 1em;
  display: inline-block;
  margin-top: 1em;
}

.sec.sec-tel .text-wrap .flex01 {
  display: flex;
  justify-content: space-between;
}

.sec.sec-tel .kazari01 {
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateX(-25%);
  width: 20%;
  max-width: 800px;
  z-index: -1;
}

.sec.sec-tel .kazari02 {
  position: absolute;
  right: 0;
  bottom: -10%;
  transform: translateX(65%);
  width: 55%;
  max-width: 800px;
  z-index: -1;
}

.sec.sec-tel .kazari03 {
  position: absolute;
  left: 3%;
  bottom: 10%;
  width: 12.5%;
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .sec.sec-tel .kazari03 {
    left: 1%;
    bottom: 23%;
  }
}

.sec.sec-tel .kazari04 {
  position: absolute;
  right: 2%;
  top: 5%;
  width: 7.5%;
  max-width: 120px;
}

@media screen and (max-width: 768px) {
  .sec.sec-tel .kazari04 {
    top: 10%;
  }
}

.sec .shop-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: clamp(24px, 7.5vw, 36px);
}

@media screen and (max-width: 768px) {
  .sec .shop-flex {
    display: block;
    max-width: 550px;
    margin: 0 auto;
  }
}

.sec .shop-flex li {
  width: 48%;
  text-align: center;
  font-weight: 600;
  color: #04007B;
  display: flex;
  flex-direction: column;
}

.sec .shop-flex li:first-child p {
  margin-bottom: .5em;
}

.sec .shop-flex li:first-child .btn p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sec .shop-flex li {
    width: 100%;
  }
  .sec .shop-flex li:nth-of-type(2) {
    margin-top: 2em;
  }
}

.sec .shop-flex li .imgbox01 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 0.5em;
  background: url(../img/shop-komatsu.webp) no-repeat center/cover;
}

.sec .shop-flex li .imgbox02 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 0.5em;
  background: url(../img/shop-dsfactory.webp) no-repeat center/cover;
}

.sec .shop-flex li p {
  font-size: 1em;
  margin-top: 0.7em;
  line-height: 1;
}

.sec .shop-flex li p span {
  font-size: 0.7em;
  margin-top: 1em;
  display: inline-block;
  line-height: 1.6;
}

.sec .shop-flex li p span.lightbule {
  color: #EA6D8D;
  margin-top: 0;
}

.sec .shop-flex li p span.block {
  font-size: 1em;
  display: inline-block;
  margin-top: 0;
}

.sec .shop-flex li p span.block_p {
  margin-top: 0;
  font-size: .7em;
}

@media screen and (max-width: 768px) {
  .sec .shop-flex li p.group_cnt {
    margin-bottom: 1em;
  }
}

.sec .shop-flex li .btn p {
  margin-top: 0;
  font-size: .7em;
}

.sec .rental {
  font-size: clamp(24px, 7.5vw, 36px);
  width: 80%;
  display: flex;
  justify-content: center;
  border: solid 0.2em #EA6D8D;
  border-radius: 1em;
  align-items: center;
  padding: 1em;
  margin: 2em auto 0;
  gap: 1.5em;
}

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

.sec .rental img {
  width: 30%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .sec .rental img {
    width: 50%;
  }
}

.sec .rental .text-wrap {
  background: #fff;
  text-align: left;
  padding: 0;
  margin: 0;
}

.sec .rental .text-wrap h3 {
  text-align: left;
  color: #EA6D8D;
  font-weight: 800;
  font-size: 1.1em;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sec .rental .text-wrap h3 {
    font-size: 0.95em;
  }
}

.sec .rental .text-wrap p {
  font-size: 0.6em;
}

.sec .rental .text-wrap .btn {
  margin-top: 1.5em;
  border: 2px solid #825021;
  background: #825021 url(../img/sec03-arrow02a.webp) no-repeat 90%/0.4em;
}

.sec .rental .text-wrap .btn:hover {
  background: #fff url(../img/sec03-arrow02b.webp) no-repeat 90%/0.4em;
}

.sec .rental .text-wrap .btn:hover p {
  color: #825021;
}

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

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

.sec.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) {
  .sec.sec01 .cover {
    z-index: -1;
  }
}

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

.sec.sec01::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 25 / 17;
  background: url(../img/logo-main01c.svg) no-repeat center/contain;
  transform: translate(-45%, 11%);
  opacity: 0.5;
  z-index: -1;
}

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

.sec.sec01 .title-wrap .flex {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}

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

.sec.sec01 .title-wrap .flex .sec-title span {
  font-size: 2em;
  margin-left: -0.1em;
}

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

@media screen and (max-width: 768px) {
  .sec.sec01 .title-wrap .flex .sec-title .img-wrap {
    width: 7.5em;
    transform: translate(-110%, -8%);
  }
}

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

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

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

.sec.sec01 .flex02 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 4%;
  width: 100%;
  margin-bottom: 5em;
}

@media screen and (max-width: 768px) {
  .sec.sec01 .flex02 {
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 2.5em;
  }
}

.sec.sec01 .flex02 .wrap {
  position: relative;
  font-size: clamp(14px, 4.375vw, 18px);
  background: #FF5757;
  border-radius: 1em;
  text-align: center;
  padding: 2em 0;
  width: 50%;
  max-width: 420px;
}

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

.sec.sec01 .flex02 .wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(2%, 3%);
  width: 102%;
  height: 102%;
  display: block;
  border-radius: 1em;
  background: url(../img/back02.webp) repeat;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec.sec01 .flex02 .wrap::after {
    transform: translate(1%, 1.5%);
  }
}

.sec.sec01 .flex02 .wrap.car01::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: auto;
  aspect-ratio: 280 / 161;
  background: url(../img/sec01-img02a.webp) no-repeat center/contain;
  transform: translate(-35%, 42%);
}

@media screen and (max-width: 768px) {
  .sec.sec01 .flex02 .wrap.car01::before {
    width: 45%;
    transform: translate(-8%, 19%);
  }
}

.sec.sec01 .flex02 .wrap.car02::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  height: auto;
  aspect-ratio: 350 / 337;
  background: url(../img/sec01-img02b.webp) no-repeat center/contain;
  transform: translate(33%, 47%);
}

@media screen and (max-width: 768px) {
  .sec.sec01 .flex02 .wrap.car02::before {
    width: 28%;
    transform: translate(16%, 19%);
  }
}

.sec.sec01 .flex02 .wrap p {
  color: #fff;
  line-height: 1.6;
  font-size: 0.95em;
}

@media screen and (max-width: 768px) {
  .sec.sec01 .flex02 .wrap p {
    font-size: 0.95em;
  }
}

.sec.sec01 .flex02 .wrap p.text01 {
  font-size: clamp(24px, 5vw, 45px);
  font-weight: 800;
  line-height: 1;
  margin-top: 0.3em;
}

.sec.sec01 .flex02 .wrap p.text02 {
  font-size: clamp(24px, 5vw, 45px);
  font-weight: 800;
  line-height: 1;
  margin-top: -0.3em;
}

.sec.sec01 .flex02 .wrap p.text02 span {
  font-size: 5em;
  line-height: 1;
  margin-top: -1em;
}

.sec.sec01 .btn {
  font-size: clamp(24px, 7.5vw, 36px);
}

.sec.sec02 {
  position: relative;
  overflow: hidden;
}

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

.sec.sec02::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: #E2F1FF;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec.sec02::after {
    height: 50vw;
  }
}

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

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

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

.sec.sec02 .title-wrap .flex .sec-title span {
  font-size: 2em;
  margin-left: -0.1em;
}

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

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

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

@media screen and (max-width: 768px) {
  .sec.sec02 .title-wrap .flex .sec-title::before {
    width: 50%;
    transform: translate(60%, -63%);
  }
}

.sec.sec02 .flex03 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  border: solid 2px #62A0DA;
  align-items: center;
  padding: 1em;
  border-radius: 1em;
  margin: 2em auto 2em;
  max-width: 940px;
}

.sec.sec02 .flex03 img {
  width: 20%;
  margin-right: 1em;
}

.sec.sec02 .flex03 p {
  width: 80%;
  color: #62A0DA;
}

.sec.sec02 .flex02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 {
    flex-wrap: wrap;
    max-width: 550px;
    margin: 0 auto;
  }
}

.sec.sec02 .flex02 img {
  width: 40%;
  height: auto;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 img {
    order: 1;
    width: 50%;
  }
}

.sec.sec02 .flex02 .wrap {
  position: relative;
  font-size: min(1.8vw, 18px);
  width: calc(60% - 1em);
  text-align: left;
  padding: 1.5em 1em 1.8em 2em;
  margin-right: 1em;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap {
    width: 100%;
    order: 2;
    margin-right: 0;
    margin-bottom: 2em;
    padding: 1em 2em 1.5em 2em;
  }
}

.sec.sec02 .flex02 .wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: #62A0DA;
  width: 120%;
  height: 100%;
  border-radius: 0 1em 1em 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap::after {
    width: 100%;
    height: calc(100% + 10em);
    border-radius: 1em;
    top: auto;
    bottom: 0;
  }
}

.sec.sec02 .flex02 .wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/back03.webp) repeat;
  width: 122%;
  height: 102%;
  transform: translate(1em, 1em);
  border-radius: 0 1em 1em 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap::before {
    width: 102%;
    height: calc(100% + 10em);
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    transform: translate(0, 1em);
  }
}

.sec.sec02 .flex02 .wrap p {
  position: relative;
  font-size: clamp(12px, 1.8vw, 18px);
  color: #fff;
  font-weight: 500;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap p {
    font-size: min(3.75vw, 18px);
  }
}

.sec.sec02 .flex02 .wrap p.text01 {
  font-size: 1.8em;
  font-weight: 800;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap p.text01 {
    font-size: min(4.68vw, 28px);
  }
}

.sec.sec02 .flex02 .wrap .logo01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 7em;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  transform: rotate(15deg) translate(20%, -35%);
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap .logo01 {
    width: 25%;
    transform: rotate(15deg) translate(10%, -35%);
  }
}

.sec.sec02 .flex02 .wrap .logo01.a {
  right: auto;
  left: 0;
  transform: rotate(-15deg) translate(-25%, -45%);
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02 .wrap .logo01.a {
    transform: rotate(-15deg) translate(-5%, -90%);
  }
}

.sec.sec02 .flex02.a {
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02.a {
    margin: 0 auto;
  }
}

.sec.sec02 .flex02.a .wrap {
  margin-left: 1em;
  margin-right: 0;
  padding: 1.5em 1em 1.8em 4em;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02.a .wrap {
    padding: 1em 2em 1.5em 2em;
    margin-left: 0;
  }
}

.sec.sec02 .flex02.a .wrap::after {
  right: auto;
  left: 0;
  border-radius: 1em 0 0 1em;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02.a .wrap::after {
    border-radius: 1em;
  }
}

.sec.sec02 .flex02.a .wrap::before {
  right: auto;
  left: 0;
  border-radius: 1em 0 0 1em;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02.a .wrap::before {
    border-radius: 1em;
  }
}

.sec.sec02 .flex02.b .wrap {
  padding: 2.5em 1em 2.8em 2em;
}

@media screen and (max-width: 768px) {
  .sec.sec02 .flex02.b .wrap {
    padding: 1em 2em 1.5em 2em;
  }
}

.sec.sec03 {
  overflow: hidden;
  position: relative;
}

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

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

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

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

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

.sec.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%);
}

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

.sec.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;
}

.sec.sec03 .flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: min(1.43vw, 18px);
  gap: 2.5em;
}

@media screen and (max-width: 768px) {
  .sec.sec03 .flex {
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
    gap: 1em 2em;
    font-size: min(3.125vw, 16px);
  }
}

.sec.sec03 .flex .icon {
  position: relative;
  width: 20%;
  height: auto;
  aspect-ratio: 1/1;
  background: #62A0DA;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  padding: 1em 2em 0;
  box-sizing: border-box;
  text-align: center;
}

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

.sec.sec03 .flex .icon img {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
}

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

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

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

.sec.sec03 .flex .icon:last-of-type::after {
  content: none;
}

.sec.sec04 {
  text-align: center;
}

.sec.sec04 .inner {
  max-width: none;
  width: 100%;
}

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

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

.sec.sec04 .title-wrap .flex .img-wrap {
  width: 9em;
  margin-right: 0.7em;
  transform: translateY(-20%);
}

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

.sec.sec04 .title-wrap .flex .sec-title {
  font-size: 2em;
  color: #FF5757;
  text-align: left;
  line-height: 1.3;
}

.sec.sec04 .lw-wrap {
  width: 100%;
  overflow: hidden;
}

.sec.sec05 {
  position: relative;
  background: #E2F1FF;
  font-size: clamp(24px, 7.5vw, 36px);
  z-index: 1;
  overflow: hidden;
}

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

.sec.sec05 .sec-title {
  font-size: min(7.28vw, 72px);
  margin-bottom: 0.7em;
}

.sec.sec05 .flex {
  display: flex;
  justify-content: space-between;
}

.sec.sec05 .flex li {
  width: 48%;
  text-align: center;
  font-weight: 600;
  color: #04007B;
}

@media screen and (max-width: 768px) {
  .sec.sec05 .flex li {
    font-size: min(4vw, 24px);
  }
}

.sec.sec05 .flex li .imgbox01 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 0.5em;
  background: url(../img/shop-komatsu.webp) no-repeat center/cover;
}

.sec.sec05 .flex li .imgbox02 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 0.5em;
  background: url(../img/shop-dsfactory.webp) no-repeat center/cover;
}

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

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

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

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

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

.sec.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) {
  .sec.sec06 .ques {
    font-size: min(4.375vw, 24px);
  }
}

.sec.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;
}

.sec.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) {
  .sec.sec06 .ans {
    font-size: min(4.375vw, 20px);
    padding-left: 3em;
    padding-right: 0;
  }
}

.sec.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) {
  .sec.sec06 .ans::before {
    left: 0;
  }
}

.sec.sec07 .table-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1em;
  border: 2px solid #E2F1FF;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .sec.sec07 .table-inner {
    max-width: 600px;
  }
}

.sec.sec07 .table-inner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/back03.webp) repeat;
  width: 100%;
  height: 100%;
  transform: translate(1em, 1em);
  border-radius: 1em;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec.sec07 .table-inner::after {
    transform: translate(0.5em, 0.5em);
  }
}

.sec.sec07 .table-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 15%;
  height: auto;
  aspect-ratio: 5 / 1;
  background: url(../img/sec07-icon.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .sec.sec07 .table-inner::before {
    width: 30%;
  }
}

.sec.sec07 table {
  width: 100%;
  overflow: hidden;
  border-radius: 1em;
}

.sec.sec07 table th {
  width: 30%;
  align-content: center;
  padding: 1em;
  text-align: center;
  color: #04007B;
  background-color: #E2F1FF;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .sec.sec07 table th {
    width: 100%;
    display: block;
  }
}

.sec.sec07 table td {
  border-bottom: 1px solid #E2F1FF;
  padding: 1em;
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 500;
  color: #04007B;
}

@media screen and (max-width: 768px) {
  .sec.sec07 table td {
    display: block;
    width: 100%;
    font-size: min(3.75vw, 18px);
  }
}

.sec.sec07 table td p {
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec.sec07 table td p {
    font-size: min(3.75vw, 18px);
  }
}

.sec.sec07 table tr:last-child th {
  border-bottom: 0;
}

.sec.sec07 table tr:last-child td {
  border-bottom: 0;
}

.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;
}
