@font-face {
  font-family: "sans";
  src: url("https://fonts.googleapis.com/css2?family=Klee+One&display=swap");
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  background-color: var(--main-bg);
  overflow-x: hidden;
  position: relative;
  font-family: "sans";
  font-weight: 700;
}

:root {
  --main-bg: #ebf2fa;
  --dark-blue: #060b32;
  --orange-1000: #ff5c00;
  --orange-900: #ef6c21;
  --orange-800: #f7823e;
  --orange-700: #e48148;
  --yellow: #ffcc00;
  --white: #fff;
  --black: #000;
}

/* ----------------------------------------------- */

/* ========== 共通開始 ========== */

/* One beneFIT */
.onebenefit {
  color: var(--orange-800);
  font-weight: bold;
  letter-spacing: 2px;
}

/* inner --------------- */
.inner {
  padding: 5% 10%;
  margin: 0 auto;
}

/* section-title--------- */
.section-title {
  width: 100%;
  position: relative;
  text-align: center;
  color: var(--white);
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 4vw;
  position: relative;
  display: flex;
  align-items: center;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  display: block;
}

.section-title h2::before {
  margin-right: 0.4em;
  background: linear-gradient(
    -90deg,
    var(--orange-1000),
    var(--yellow),
    transparent
  );
}
.section-title h2::after {
  margin-left: 0.4em;
  background: linear-gradient(
    90deg,
    var(--orange-1000),
    var(--yellow),
    transparent
  );
}

/* CTA -----------------  */

.bottom-cta {
  width: 95%;
  background-color: var(--dark-blue);
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  border-radius: 50px;
  padding: 6px 6px;
  box-shadow: 2px 2px 0 var(--dark-blue);
  max-width: 370px;
  display: none;
  display: flex;
  gap: 12px;
}

.bottom-cta a {
  background-color: var(--orange-1000);
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 50px;
  padding: 2px;
  position: relative;
}

.bottom-cta a:last-child {
  background-color: #24da13;
}

.bottom-cta a div {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.bottom-cta a div i {
  font-size: 24px;
}

.bottom-cta a span {
  flex: 1;
  color: var(--black);
  font-size: 16px;
  text-align: center;
}

.cta-box a,
.cta-box button {
  border: none;
  display: inline-block;
  color: var(--white);
  background-image: linear-gradient(30deg, var(--orange-1000), var(--yellow));
  border-radius: 5px;
  background-size: 100% auto;
  font-size: 17px;
  padding: 0.6em 1.5em;
  cursor: pointer;
}

.sticky {
  position: fixed;
  top: 5%;
  right: 5%;
}

/* color--------- */
.orange-color {
  color: var(--orange-700k);
}

/* margin-------- */
.mb-20 {
  margin-bottom: 20px;
}

/* ========== 共通終了 ========== */

/* ========== ヘッダー開始 ========== */

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0% 4% 1% 2%;
  z-index: 1000;
}

header .logo {
  margin-top: 20px;
  width: 100px;
}

header .logo img {
  object-fit: cover;
}

/* ========== ヘッダー終了 ========== */

/* ========== メイン開始 ========== */

main {
  box-shadow: 0 20px 20px 20px #0000002a;
  position: relative;
  z-index: 50;
}

/* ファーストビュー ---------------------- */
#first-view {
  background-color: var(--main-bg);
  position: relative;
  overflow: hidden;
}

#first-view .img-box {
  height: 95vh;
  max-height: 983px;
  position: relative;
}

#first-view .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 25vw 0 0;
  border-width: 150px 400px 0 0;
  border-color: var(--white) transparent transparent transparent;
  z-index: 100;
}

#first-view .img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000007a;
}

#first-view .img-box img {
  filter: saturate(140%);
  height: 983px;
  width: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
}

#first-view .img-box img:last-child {
  display: none;
}

.text-box__fv {
  position: absolute;
  top: 20%;
  left: 10%;
}

.fv-960br,
.fv-450br {
  display: none;
}
.text-box__fv h1 {
  font-size: 4vw;
  position: relative;
  color: var(--white);
}

.text-box__fv .texts {
  margin-top: 5vw;
  color: #d4d4d4;
}

.texts p {
  font-size: 20px;
  line-height: 1.3;
}

.text-box__fv .texts ul {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 20vw 20vw;
  gap: 24px;
  font-size: 2vw;
}

.text-box__fv .texts ul li {
  position: relative;
  background: linear-gradient(#043c70, var(--dark-blue));
  border: 2px solid #2e5d89;
  border-radius: 4px;
  text-align: center;
  padding: 15px 10px;
  color: var(--white);
  letter-spacing: 2px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.text-box__fv .texts ul li span {
}

.text-box__fv .texts ul li .and {
  font-size: 12px !important;
  color: #fff;
  margin: 0 4px;
}

.point {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: var(--orange-1000);
  border: 1px solid var(--orange-800);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* お悩み ---------------------- */
#worries {
  background-color: var(--main-bg);
  position: relative;
  padding-bottom: 10vw;
  overflow: hidden;
}

.worries-item {
  background-image: url(/imgs/worriesBG.webp);
  background-position: top;
  background-repeat: no-repeat;
  padding: 0 0 5vw 0;
}

#worries .worries-contents {
  position: relative;
  width: 100%;
  max-width: 1000px;
  z-index: 11;
  margin: 0 auto;
}

.worries-title {
  font-size: clamp(1.25rem, 0.875rem + 1.88vw, 3.125rem);
  text-align: center;
  margin-bottom: 3vw;
}

.worries-title h3 {
  display: inline-block;
  border-bottom: 2px solid var(--orange-700);
}

.worries-contents ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
  width: fit-content;
  margin: 0 auto;
  gap: 50px;
}

.worries-contents ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.worries-contents ul li:nth-child(2n) {
  padding-left: 30px;
}

.worries-contents ul li .img-box {
  min-width: 50px;
  max-width: 50px;
  position: relative;
}


.worries-contents ul li .texts p {
  font-size: clamp(1.25rem, 0.875rem + 0.63vw, 1.625rem);
}

.top-right-triangle {
  position: absolute;
  bottom: 0vw;
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 93vw 0 0;
  border-color: var(--dark-blue) transparent transparent transparent;
  z-index: 9;
}

/* メッセージ------- */
#message {
  padding: 0 3vw 0 3vw;
  padding-bottom: 10vw;
  background-color: var(--main-bg);
  position: relative;
  overflow: hidden;
}

.bottom-left-triangle {
  position: absolute;
  bottom: 0vw;
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10vw 93vw;
  border-color: transparent transparent var(--dark-blue) transparent;
  transform: rotate(-0deg);
  transform-origin: top left;
  z-index: 9;
}

#message h3 {
  text-align: center;
  padding: 50px 0;
  font-size: clamp(1rem, 0.7rem + 1.5vw, 2.5rem);
}

/* strength---- */
#strength {
  padding: 5% 0 0 0;
  position: relative;
  background: url(/imgs/strengthBG.webp) center center no-repeat;
  background-size: cover;
}

#strength::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #010101;
  z-index: -1;
}

#strength .container__St {
  color: var(--white);
  font-weight: normal;
  position: relative;
  z-index: 20;
  height: 100%;
  overflow: hidden;
}

#strength .container__St::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background-color: var(--orange-700);
  transform: rotate(-50deg);
  transform-origin: top left;
  z-index: -1;
  opacity: 0.7;
}

#strength .container__St::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100px;
  height: 100%;
  background-color: var(--orange-900);
  transform: rotate(50deg) translate(30px, -130px);
  transform-origin: top right;
  z-index: -1;
  opacity: 0.7;
}

.container__St .strength-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  margin-bottom: 5vw;
}

.container__St .strength-box .texts {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.container__St .strength-box .texts h4 {
  font-size: clamp(1.25rem, 0.875rem + 1.88vw, 2rem);
  margin-top: 50px;
  margin-bottom: 60px;
  font-weight: bold;
}

.container__St .strength-box .texts p {
  font-size: clamp(1rem, 0.75rem + 1.25vw, 1.5rem);
  line-height: 1.5;
}

.reverse__grid .img-box {
  order: 2;
}

#strength .cta-box {
  display: none;
}

/* line-wrap */
.line-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  /* pointer-events: none; */
}

.line-wrap .line {
  position: absolute;
  top: 30%;
  right: 0;
  width: 100px;
  background-color: var(--orange-900);
  transform: rotate(50deg) translate(30px, -130px);
  transform-origin: top right;
  z-index: 10;
  animation: width 1s cubic-bezier(1, 0, 0, 1) forwards;
  animation-delay: 3s;
  opacity: 0.1;
}

.line-wrap .line2 {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100px;
  background-color: var(--orange-900);
  transform: rotate(-50deg) translate(30px, -130px);
  transform-origin: top left;
  z-index: 10;
  animation: width 1s cubic-bezier(1, 0, 0, 1) forwards;
  animation-delay: 3s;
  opacity: 0.1;
}

@keyframes width {
  0% {
    height: 0%;
  }
  100% {
    height: 150%;
  }
}

/* test--------------------------------------- */
#test {
  background-color: var(--main-bg);
  padding: 4%;
  position: relative;
  z-index: 1;
}

#test .test-inner {
  height: 100%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

#test .test-inner h2 span {
  width: fit-content;
  padding: 10px;
  display: block;
  letter-spacing: 2px;
  background-color: #02073c;
  color: var(--white);
  margin-bottom: 5px;
  font-size: 50px;
}

#test .boxs {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  overflow-x: auto;
  margin-top: -200px;
  z-index: 9999;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}

#test .boxs::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

#test .test-img {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 60%;
  left: 40%;
  transform: translate(-40%, -50%);
  transform-origin: center;
  animation: rotate 20s infinite ease;
  z-index: 200;
  opacity: 0.7;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

#test .box:nth-child(2) {
  margin-top: -200px;
}
#test .box:last-child {
  margin-top: -200px;
}

#test .box {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 45%;
  position: relative;
  z-index: 9999;
}
#test .box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
  width: 100%;
  background-color: var(--white);
  opacity: 0.6;
  z-index: -1;
}

.img-ab {
  position: absolute;
  bottom: 0;
  height: 80%;
  width: 100%;
  opacity: 0.2;
}

.box .aaaa {
  position: absolute;
  right: 0;
  top: 100px;
  writing-mode: vertical-rl;
  font-size: 20px;
  color: var(--white);
  -webkit-text-stroke: 1px var(--black);
  text-stroke: 1px var(--black);
  letter-spacing: 2px;
}

.box:nth-child(2n + 1) {
  align-self: flex-end;
}

.box .img-box {
  width: 80%;
  height: 300px;
  position: relative;
  box-shadow: 0 0 10px var(--black);
}
.box .img-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: relative;
}

.box .sub-box {
  display: flex;
  position: absolute;
  left: 20%;
  bottom: -50px;
}

.box .sub-box span {
  color: var(--white);
  width: 70px;
  height: 70px;
  background-color: var(--orange-1000);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}

.box .sub-box span:last-child {
  background-color: rgb(10, 5, 82);
}

.box .txts {
  padding-left: 16%;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 5%;
}

.box .txts h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.box .txts p {
  font-size: 16px;
  line-height: 1.5;
}

/* 他社比較--------------- */
#cost {
  background-color: var(--main-bg);
  position: relative;
  /* padding-top: 5vw; */
  padding: 4%;
  padding-bottom: 6vw;
}

#cost .section-title {
  color: var(--black);
}

#cost .top-right-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 45vw 0 0;
  border-color: #1d55ae transparent transparent transparent;
}

#cost .bottom-right-triangle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 0 0 100vw;
  border-color: transparent transparent transparent var(--orange-700);
}

#cost .bottom-left-triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7vw 30vw;
  border-color: transparent transparent #2f313d transparent;
}

#cost .test-inner {
  height: 100%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

#cost .test-inner h2 span {
  width: fit-content;
  padding: 10px;
  display: block;
  letter-spacing: 2px;
  background-color: #02073c;
  color: var(--white);
  margin-bottom: 5px;
  font-size: 50px;
}

#cost .test-inner .table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: -150px;
  margin-right: -10px;
}

#cost h2 {
}

/* 店舗情報 */
#access {
  padding: 5% 0;
  background-color: #1b0202;
  background: url(/imgs/accessBG.webp) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
  background-attachment: fixed;
}

#access::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 0;
}

.shops {
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  width: 90%;
}

.shop {
  margin-bottom: 50px;
}

.shop h3 {
  font-size: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  color: var(--orange-900);
}

.shop .container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.shop .map-box {
  width: 50%;
}

.map-box iframe {
  max-width: 100%;
  height: 300px;
}

.shop .texts {
  width: 50%;
}

.shop .texts ul li {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  margin-bottom: 30px;
}

.shop .texts ul li:last-child {
  margin-bottom: 0px;
}

.shop .texts ul li a {
  color: rgb(54, 137, 255);
  border-bottom: 1px solid rgb(54, 137, 255);
  width: fit-content;
}

/* flow------------------------------------------------------------------ */
#flow {
  background-color: #2f313d;
  padding: 5% 0;
  position: relative;
}

#flow .section-title {
  color: #fff;
  padding: 0 5% 5% 5%;
}

#flow .section-title::before {
  width: 100%;
}

.flow-box {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.flow-img {
  display: flex;
  row-gap: 20px;
}

.flow-img li {
  margin: auto 1%;
  position: relative;
  padding-bottom: 70px;
}

.flow-img-box {
  position: relative;
}

.flow-text {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 10px;
  color: #fff;
  height: 50px;
  width: 100%;
}

.arrow {
  width: 100%;
  position: relative;
}

/* contact----------- */
#contact {
  background-color: #2f313d;
  padding: 4% 0;
  position: relative;
}

#contact h3 {
  text-align: center;
  color: #fff;
  font-size: 3vw;
}

.contact-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 24px;
}

#contact .contact-message {
  margin-top: 0;
}

.c-img {
  width: 60%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.c-img img {
  width: 100%;
  object-fit: cover;
}

#contact form {
  max-width: 800px;
  background-color: #fff;
  margin: 0 auto;
  padding: 40px 30px;
  margin-top: 50px;
}

#contact form ul li {
  display: grid;
  grid-template-columns: 1.2fr 4fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

#contact form ul li:last-child {
  align-items: flex-start;
}

#contact form ul li .label-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#contact form ul li .label-area .required {
  background-color: #f7823e;
  color: #fff;
  padding: 3px 10px;
  letter-spacing: 3px;
  font-size: 10px;
}

#contact form ul li .input-area input {
  outline: 1px solid #0f1550;
  font-size: 20px;
  width: 60%;
  padding: 10px;
}

#contact .date input {
  outline: 1px solid #0f1550;
  font-size: 18px;
  width: 60%;
  padding: 10px;
  color: rgb(74, 74, 74);
}

#contact form ul li .radio input {
  width: fit-content;
  outline: none;
}

.radio {
  display: flex;
  gap: 20px;
}

#contact form ul li select {
  outline: 1px solid #0f1550;
  font-size: 18px;
  width: 60%;
  padding: 10px;
  color: rgb(74, 74, 74);
}

textarea {
  outline: 1px solid #0f1550;
  max-height: 100px;
  width: 80%;
}

.text-area {
  align-items: flex-start !important;
}

form .cta-box {
  margin: 0 auto;
  text-align: center;
}

form .cta-box button {
  padding: 0.6em 3em;
}

/* ========== メイン終了 ========== */

/* ========== フッター開始 ========== */
footer {
  background-color: #fff;
  padding: 30px;
}

footer .img-box {
  width: 10vw;
  margin: 0 auto;
}

.icons {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 5vw;
  margin-top: 30px;
}

.icons a img {
  width: 3vw;
}

.copywrite {
  font-size: 1.2vw;
  font-weight: normal;
  margin-top: 30px;
  text-align: center;
}

/* ========== フッター終了 ========== */

/* ========== tyページ開始 ========== */

.ty-wrap {
  width: 100%;
  height: 100vh;
  background-color: var(--dark-blue);
  color: #fff;
  position: relative;
}

.ty-inner {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 100%;
}

.ty-title {
  text-align: center;
}

.ty-title p {
  color: var(--orange-1000);
  margin-bottom: 20px;
}

.ty-title h1 {
  font-size: 5vw;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

.ty-inner .ty-box {
  background-color: #e3e3e3;
  color: #000;
  max-width: 700px;
  width: 100%;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  line-height: 1.4;
}

.ty-inner .ty-home {
  text-align: right;
}

.ty-inner .ty-home a {
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px solid #fff;
}

/* ========== tyページ終了 ========== */

/* ========== ANIMATION開始 ========== */

.animate {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #e48148;
  z-index: 2000;
}

#first-view .animate {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1500;
}

.animate {
  animation: showRight 1s cubic-bezier(1, 0, 0, 1) forwards;
  animation-delay: calc(0.3s * var(--i));
}

@keyframes showRight {
  100% {
    width: 0;
  }
}

/* ========== ANIMATION終了 ========== */

/* ========== レスポンシブ開始 ========== */

/* 960px以下の時のスタイル */
@media (max-width: 960px) {
  header .logo {
    margin-top: 15px;
    width: 75px;
  }

  header .cta-box {
    display: none;
  }

  .bottom-cta {
    display: flex;
  }
  /* FV--------------------  */
  #first-view .img-box::before {
    border-width: 100px 250px 0 0;
  }
  #first-view .img-box {
    height: 65vh;
  }
  #first-view .img-box img:first-child {
    display: none;
  }
  #first-view .img-box img:last-child {
    display: block;
  }
  .fv-960br {
    display: block;
  }
  .fv-960p {
    display: none;
  }
  .text-box__fv {
    top: 20%;
    left: 3%;
  }
  .text-box__fv h1 {
    font-size: 8vw;
    text-align: right;
    margin-left: 0;
  }
  .text-box__fv .texts {
    margin-top: 5vh;
  }
  .text-box__fv .texts p {
    font-size: clamp(1rem, 0.7rem + 0.63vw, 1.3rem);
    font-weight: normal;
  }

  .text-box__fv .texts ul {
    grid-template-columns: 30vw 30vw;
    gap: 10px;
    font-size: clamp(1.25rem, 0.875rem + 0.63vw, 1.625rem);
  }

  #first-view .cta-box {
    display: none;
  }

  /* Worries--------------------  */

  .worries-item {
    background-image: url(/imgs/worriesSP.png);
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff !important;
    padding: 7vw 0 7vw 0;
  }

  .worries-title {
    margin-bottom: 5vw;
  }

  .worries-contents ul li .texts p {
    font-size: clamp(0.875rem, 0.688rem + 0.94vw, 1.25rem);
  }

  .worries-contents ul {
    grid-template-columns: 1fr;
    gap: 1.5vh;
    font-weight: 600;
  }

  .worries-contents ul li:nth-child(2n) {
    padding-left: 0;
  }

  /* message */
  #message {
    padding: 0 3vw 0 3vw;
    padding-bottom: 0vw;
    position: relative;
    overflow: hidden;
  }

  .bottom-left-triangle {
    display: none;
  }

  /* Strength-------------------- */
  #strength .container__St {
    overflow-x: auto;
    white-space: nowrap;
  }

  #strength .container__St::after,
  #strength .container__St::before {
    display: none;
  }

  #strength .container__St::before {
    top: unset;
    bottom: 10%;
    left: 0;
    width: 140%;
    height: 100px;
    background-color: #e48148;
    display: block;
    transform: unset;
    transform-origin: top right;
  }

  .container__St .strength-box {
    display: inline-block;
    width: 60%;
    margin-right: 15%;
    white-space: normal;
    position: relative;
  }

  .container__St .strength-box:last-child {
    display: inline-block;
    height: 100%;
    margin-right: 0;
    white-space: normal;
    position: relative;
  }

  #strength .cta-box {
    margin-top: 5%;
    display: flex;
    justify-content: center;
  }

  #strength .cta-box button {
    padding: 1em 5em;
    position: relative;
  }

  #strength .cta-box img {
    width: 20px;
    position: absolute;
    top: -10px;
    left: -10px;
    filter: drop-shadow(30px 10px 4px #24da13);
  }

  .strength-box .img-box {
    width: 300px;
    position: relative;
  }

  .strength-box .img-box img {
    position: relative;
    filter: blur(1px);
  }

  .container__St .strength-box .texts {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .container__St .strength-box .texts {
    width: 75%;
  }

  .container__St .strength-box .texts h4 {
    margin-bottom: 5px;
    font-weight: bold;
  }

  .container__St .strength-box .texts p {
    font-size: 16px;
    line-height: 1.5;
  }

  .delite {
    display: none;
  }

  .line-wrap .line {
    z-index: 0;
  }
  /* test---------------------- */
  #test .boxs {
    flex-direction: row;
    width: 100%;
    margin-top: 60px;
    gap: 10%;
  }

  #test .box:nth-child(2) {
    margin-top: 0px;
  }

  #test .box:last-child {
    margin-top: 0px;
  }

  #test .box {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    min-width: 90%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }
  #test .box:last-child {
    margin-right: 10%;
  }

  #test .test-img {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-40%, -50%);
    transform-origin: center;
    animation: rotate 20s infinite ease;
    opacity: 0.7;
    z-index: 0;
  }

  /* Access-------------------- */

  #access {
    padding: 10% 0;
    background-color: #1b0202;
    background: url(/imgs/accessBG.webp) center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 10;
    background-attachment: fixed;
    background: none;
  }

  #access::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
  }

  #access::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -10;
    width: 100%; /* .innerのmax-widthと同じ設定 */
    height: 100%;
    background-image: url(/imgs/accessBG.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  #access .shop .container {
    display: block;
  }

  .shop {
    margin-bottom: 100px;
  }

  .shop h3 {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }

  .shop .map-box {
    width: 90%;
    margin: 0 auto;
  }

  .map-box iframe {
    max-width: 100%;
    width: 100%;
    height: 300px;
  }

  .shop .texts {
    width: 100%;
    margin-bottom: 24px;
  }

  .shop .texts ul {
    max-width: fit-content;
  }

  .shop .texts ul li {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
  }

  .shop .texts ul li:first-child span:last-child {
    line-height: 1.3;
  }

  /* Flow-------------------- */

  .flow-box {
    width: 100%;
    padding: 0 3vw;
    margin: 0 auto;
  }

  .flow-text p {
    font-size: clamp(0.625rem, 0.294rem + 1.18vw, 1rem);
  }

  /* Contact-------------------- */
  #contact form {
    width: 94%;
  }
  #contact form ul li {
    display: block;
  }
  #contact form ul li .input-area input,
  textarea {
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
  }

  #contact form ul li .label-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #contact form ul li .label-area .form-label {
    order: 2;
  }

  #contact form ul li .label-area .required {
    padding: 3px 3px;
    letter-spacing: 1.5px;
    font-size: 10px;
    margin-bottom: 3px;
  }

  #contact .date input {
    margin-top: 10px;
  }

  #contact form ul li .radio {
    justify-content: center;
    text-align: center;
  }

  /* footer------------------------ */

  footer {
    padding: 20px;
    padding-bottom: 100px;
  }

  footer .img-box {
    width: 20vw;
    margin: 0 auto;
  }

  .icons {
    gap: 10vw;
    margin-top: 15px;
  }

  .icons a img {
    width: 6vw;
  }

  .copywrite {
    font-size: 2.5vw;
    margin-top: 30px;
  }

  @media screen and (max-width: 600px) {
    .fv-450br {
      display: block;
    }

    .section-title h2 {
      font-size: 6vw;
    }
  }

  @media screen and (max-width: 450px) {
    #first-view .img-box img:last-child {
      position: absolute;
      bottom: -250px;
    }
    .section-title h2 {
      font-size: 8vw;
    }

    .text-box__fv .texts ul {
      margin: 20px 0;
      display: grid;
      gap: 16px;
      font-size: 16px;
      grid-template-columns: 1fr 1fr;
    }

    .worries-contents ul li .img-box {
      min-width: 30px;
      max-width: 30px;
    }

    /* test */

    #test {
      padding: 10% 4%;
      position: relative;
      overflow: hidden;
    }

    #test .test-img {
      display: none;
    }

    .box .aaaa {
      top: 10px;
    }

    #test .test-inner h2 span,
    #cost .test-inner h2 span {
      font-size: 20px;
    }

    #test .box {
      gap: 35px;
    }

    .box .img-box {
      height: 150px;
    }
    .box .img-box img {
      height: 150px;
    }

    .box .sub-box {
      bottom: -20px;
    }

    .box .sub-box span {
      width: 35px;
      height: 35px;
      font-size: 22px;
    }

    .box .txts {
      padding-left: 7%;
      padding-top: 0px;
      padding-bottom: 20px;
    }

    .box .txts h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .box .txts p {
      font-size: 14px;
      line-height: 1.1;
      font-weight: normal;
    }

    .shop .map-box {
      width: 100%;
    }

    .map-box iframe {
      height: 170px;
    }

    .container__St .strength-box {
      display: inline-block;
      width: 100%;
      margin-right: 15%;
      white-space: normal;
      position: relative;
    }

    /* flow 縦 */

    .flow-box {
      width: 100%;
      max-width: 150px;
      /* display: flex; */
      margin: 0 auto;
      margin-bottom: 30px;
    }

    .flow-img li {
      /* margin: auto 1%; */
      position: relative;
      padding-bottom: 0px;
    }

    .flow-img {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      row-gap: 8px;
    }

    .flow-text {
      position: unset;
      transform: unset;
      height: auto;
    }

    .flow-text p {
      font-size: 20px;
    }

    .flow-img li:nth-child(2n) {
      width: 18%;
    }

    .arrow {
      transform: rotate(90deg) scale(0.8);
      display: flex;
      align-items: center;
    }

    /* contact--------------------------------------- */

    #contact h3 {
      font-size: 5vw;
    }
    .c-img {
      width: 90%;
    }

    #cost .test-inner .table {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      margin-top: 0px;
      margin-right: 0px;
    }
  }
}

/* ========== レスポンシブ終了 ========== */

/* Styles based on service.module.css */
.slide-swiper-area {
  position: relative;
}

.slide-loopSlide {
  position: relative;
  display: flex;
  width: 100vw;
  overflow: hidden;
  padding: 30px 0 30px 0;
}

.slide-loopSlide ul {
  padding: 0;
  width: calc(100vw - 100px); /* 幅を少し狭める */
  display: flex;
  flex-shrink: 0;
  padding: 5vw 0;
}

.slide-loopSlide ul:first-child {
  animation: slide1 60s -30s linear infinite;
}

.slide-loopSlide ul:last-child {
  animation: slide2 60s linear infinite;
}

.slide-loopSlide ul li {
  display: inline-block;
  width: 100%;
  min-width: 50px; /* min-widthを小さくする */
  margin-right: 20px;
  list-style: none;
  text-align: center;
  transition: all 0.3s;
}

.slide-loopSlide ul li a {
  cursor: default;
}

.slide-loopSlide ul li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50px;
  background: #ffffff;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}

.slide-loopSlide:hover ul li {
  opacity: 0.5;
}

.slide-loopSlide:hover ul:first-child,
.slide-loopSlide:hover ul:last-child {
  animation-play-state: paused;
}

.slide-loopSlide ul li:hover {
  opacity: 1;
  transform: translateY(-16px);
}

@media screen and (max-width: 960px) {
  /* slideloop--------------------  */
  .slide-loopSlide ul {
    width: 150%;
  }
  .slide-loopSlide ul li img {
    border-radius: 10px;
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
