/* =================================================
共通
================================================= */

/* =========================
font / typography
========================= */
html {
  font-size: 10px;
  font-weight: 1000;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Yu Gothic UI",
    "Meiryo",
    sans-serif;
  font-size: 14px;
  text-align: justify;
  margin: 0;
  letter-spacing: 0;
  line-height: 1.3;

}

p span {
  display: inline;
  white-space: normal;
}

@media (min-width: 434px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.bold {
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.mincho {
  font-family: "Yu Mincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    "MS PMincho",
    serif;
}

.no-wrap {
  display: inline-block;
  text-indent: 0;
}

/* =========================
image
========================= */
img {
  width: 100%;
  user-select: none;
  pointer-events: none;
}

/* =========================
reset / base
========================= */
* {
  box-sizing: border-box;
}

.no-select {
  user-select: none;
  pointer-events: none;
}

/* =========================
responsive
========================= */
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

/* =========================
flex / grid layout
========================= */
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.jsf-start {
  justify-content: flex-start;
}

.jsf-center {
  justify-content: center;
}

.jsf-end {
  justify-content: flex-end;
}

.jsf-between {
  justify-content: space-between;
}

.jsf-around {
  justify-content: space-around;
}

.alg-start {
  align-items: flex-start;
}

.alg-center {
  align-items: center;
}

.alg-end {
  align-items: flex-end;
}

.alg-strech {
  align-items: stretch;
}

.jsf-self-start {
  justify-self: flex-start;
}

.jsf-self-center {
  justify-self: center;
}

.jsf-self-end {
  justify-self: flex-end;
}

.alg-self-start {
  align-self: flex-start;
}

.alg-self-center {
  align-self: center;
}

.alg-self-end {
  align-self: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}


/* ========== gap ========== */
.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.gap-55 {
  gap: 55px;
}

.gap-60 {
  gap: 60px;
}

.gap-65 {
  gap: 65px;
}

.gap-70 {
  gap: 70px;
}

.gap-75 {
  gap: 75px;
}

.gap-80 {
  gap: 80px;
}



/* =========================
display / visibility
========================= */
.block {
  display: block;
}

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

.hidden {
  display: none !important;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* ========== Margin ========== */
.mar-10 {
  margin: 10px;
}

.mar-20 {
  margin: 20px;
}

.mar-30 {
  margin: 30px;
}

.mar-40 {
  margin: 40px;
}

.mar-50 {
  margin: 50px;
}

.mar-60 {
  margin: 60px;
}

.mar-70 {
  margin: 70px;
}

.mar-80 {
  margin: 80px;
}

.mar-90 {
  margin: 90px;
}

.mar-100 {
  margin: 100px;
}

/* ========== Margin Top ========== */
.mar-top-10 {
  margin-top: 10px;
}

.mar-top-20 {
  margin-top: 20px;
}

.mar-top-30 {
  margin-top: 30px;
}

.mar-top-40 {
  margin-top: 40px;
}

.mar-top-50 {
  margin-top: 50px;
}

.mar-top-60 {
  margin-top: 60px;
}

.mar-top-70 {
  margin-top: 70px;
}

.mar-top-80 {
  margin-top: 80px;
}

.mar-top-90 {
  margin-top: 90px;
}

.mar-top-100 {
  margin-top: 100px;
}

.mar-top-120 {
  margin-top: 120px;
}

/* ========== Margin Bottom ========== */
.mar-bottom-10 {
  margin-bottom: 10px;
}

.mar-bottom-20 {
  margin-bottom: 20px;
}

.mar-bottom-30 {
  margin-bottom: 30px;
}

.mar-bottom-40 {
  margin-bottom: 40px;
}

.mar-bottom-50 {
  margin-bottom: 50px;
}

.mar-bottom-60 {
  margin-bottom: 60px;
}

.mar-bottom-70 {
  margin-bottom: 70px;
}

.mar-bottom-80 {
  margin-bottom: 80px;
}

.mar-bottom-90 {
  margin-bottom: 90px;
}

.mar-bottom-100 {
  margin-bottom: 100px;
}

/* ========== Margin Left ========== */
.mar-left-10 {
  margin-left: 10px;
}

.mar-left-20 {
  margin-left: 20px;
}

.mar-left-30 {
  margin-left: 30px;
}

.mar-left-40 {
  margin-left: 40px;
}

.mar-left-50 {
  margin-left: 50px;
}

.mar-left-60 {
  margin-left: 60px;
}

.mar-left-70 {
  margin-left: 70px;
}

.mar-left-80 {
  margin-left: 80px;
}

.mar-left-90 {
  margin-left: 90px;
}

.mar-left-100 {
  margin-left: 100px;
}

/* ========== Margin Right ========== */
.mar-right-10 {
  margin-right: 10px;
}

.mar-right-20 {
  margin-right: 20px;
}

.mar-right-30 {
  margin-right: 30px;
}

.mar-right-40 {
  margin-right: 40px;
}

.mar-right-50 {
  margin-right: 50px;
}

.mar-right-60 {
  margin-right: 60px;
}

.mar-right-70 {
  margin-right: 70px;
}

.mar-right-80 {
  margin-right: 80px;
}

.mar-right-90 {
  margin-right: 90px;
}

.mar-right-100 {
  margin-right: 100px;
}

/* ========== padding ========== */
.pad-5 {
  padding: 5px;
}

.pad-10 {
  padding: 10px;
}

.pad-20 {
  padding: 20px;
}

.pad-30 {
  padding: 30px;
}

.pad-40 {
  padding: 40px;
}

.pad-50 {
  padding: 50px;
}

.pad-60 {
  padding: 60px;
}

.pad-70 {
  padding: 70px;
}

.pad-80 {
  padding: 80px;
}

.pad-90 {
  padding: 90px;
}

.pad-100 {
  padding: 100px;
}

/* ========== padding Top ========== */
.pad-top-10 {
  padding-top: 10px;
}

.pad-top-20 {
  padding-top: 20px;
}

.pad-top-30 {
  padding-top: 30px;
}

.pad-top-40 {
  padding-top: 40px;
}

.pad-top-50 {
  padding-top: 50px;
}

.pad-top-60 {
  padding-top: 60px;
}

.pad-top-70 {
  padding-top: 70px;
}

.pad-top-80 {
  padding-top: 80px;
}

.pad-top-90 {
  padding-top: 90px;
}

.pad-top-100 {
  padding-top: 100px;
}

/* ========== padding Bottom ========== */
.pad-bottom-10 {
  padding-bottom: 10px;
}

.pad-bottom-20 {
  padding-bottom: 20px;
}

.pad-bottom-30 {
  padding-bottom: 30px;
}

.pad-bottom-40 {
  padding-bottom: 40px;
}

.pad-bottom-50 {
  padding-bottom: 50px;
}

.pad-bottom-60 {
  padding-bottom: 60px;
}

.pad-bottom-70 {
  padding-bottom: 70px;
}

.pad-bottom-80 {
  padding-bottom: 80px;
}

.pad-bottom-90 {
  padding-bottom: 90px;
}

.pad-bottom-100 {
  padding-bottom: 100px;
}

/* ========== padding Left ========== */
.pad-left-10 {
  padding-left: 10px;
}

.pad-left-20 {
  padding-left: 20px;
}

.pad-left-30 {
  padding-left: 30px;
}

.pad-left-40 {
  padding-left: 40px;
}

.pad-left-50 {
  padding-left: 50px;
}

.pad-left-60 {
  padding-left: 60px;
}

.pad-left-70 {
  padding-left: 70px;
}

.pad-left-80 {
  padding-left: 80px;
}

.pad-left-90 {
  padding-left: 90px;
}

.pad-left-100 {
  padding-left: 100px;
}

/* ========== padding Right ========== */
.pad-right-10 {
  padding-right: 10px;
}

.pad-right-20 {
  padding-right: 20px;
}

.pad-right-30 {
  padding-right: 30px;
}

.pad-right-40 {
  padding-right: 40px;
}

.pad-right-50 {
  padding-right: 50px;
}

.pad-right-60 {
  padding-right: 60px;
}

.pad-right-70 {
  padding-right: 70px;
}

.pad-right-80 {
  padding-right: 80px;
}

.pad-right-90 {
  padding-right: 90px;
}

.pad-right-100 {
  padding-right: 100px;
}

/* =========================
position / alignment
========================= */

section,
div,
p {
  position: relative;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* =========================
width / max-width / min-width
========================= */
.w-100 {
  width: 100%;
}

.w-95 {
  width: 95%;
}

.w-90 {
  width: 90%;
}

.w-85 {
  width: 85%;
}

.w-80 {
  width: 80%;
}

.w-75 {
  width: 75%;
}

.w-70 {
  width: 70%;
}

.w-65 {
  width: 65%;
}

.w-60 {
  width: 60%;
}

.w-55 {
  width: 55%;
}

.w-50 {
  width: 50%;
}

.w-45 {
  width: 45%;
}

.w-40 {
  width: 40%;
}

.w-35 {
  width: 35%;
}

.w-30 {
  width: 30%;
}

.w-25 {
  width: 25%;
}

.w-20 {
  width: 20%;
}

.w-15 {
  width: 15%;
}

.w-10 {
  width: 10%;
}

.w-5 {
  width: 5%;
}

.max-w-1280 {
  max-width: 1280px;
}

.max-w-1200 {
  max-width: 1200px;
}

.max-w-1100 {
  max-width: 1100px;
}

.max-w-1000 {
  max-width: 1000px;
}

.max-w-900 {
  max-width: 900px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-700 {
  max-width: 700px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-300 {
  max-width: 300px;
}

.max-w-200 {
  max-width: 200px;
}

.max-w-250 {
  max-width: 250px;
}

.max-w-100 {
  max-width: 100px;
}

.min-w-1200 {
  min-width: 1200px;
}

.min-w-1100 {
  min-width: 1100px;
}

.min-w-1000 {
  min-width: 1000px;
}

.min-w-900 {
  min-width: 900px;
}

.min-w-800 {
  min-width: 800px;
}

.min-w-700 {
  min-width: 700px;
}

.min-w-600 {
  min-width: 600px;
}

.min-w-500 {
  min-width: 500px;
}

.min-w-400 {
  min-width: 400px;
}

.min-w-300 {
  min-width: 300px;
}

.min-w-200 {
  min-width: 200px;
}

.min-w-100 {
  min-width: 100px;
}


/* =========================
background
========================= */
.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-cov {
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-rep {
  background-repeat: repeat;
}



/* =================================================
index.html
================================================= */

/* =========================　PC用 =========================　*/
.pc-head {
  background-image: url(../images/pc-head.webp);
  background-size: contain;
  aspect-ratio: 1920/900;
}

.pc-head-txt {
  padding: 3vw 0 0 3vw;
}

.pc-head-item {
  z-index: 2;
}

.pc-head-item img {
  max-width: 175px;
}

.pc-01 {
  background-image: url(../images/pc-section01-bg.webp);
}

.section01-ttl p {
  margin: 0;
  gap: 1em;
  font-weight: bold;
  font-size: 1.7em;
  white-space: nowrap;
}

.section01-ttl p::before,
.section01-ttl p::after {
  content: "";
  width: 75px;
  aspect-ratio: 116/63;
  background-size: contain;
  background-repeat: no-repeat;
}

.section01-ttl p::before {
  background-image: url(../images/ico-01.webp);
}

.section01-ttl p::after {
  background-image: url(../images/ico-02.webp);
}

.section01-item,
.section02-item {
  gap: 40px;
  margin-bottom: 40px;
}

.pc-02 {
  background-image: url(../images/pc-section02-bg.webp);
  background-position: center top;
}

.section02-item {
  margin-top: 40px;
}



/* =========================　スマホ用 =========================　*/
.sp-head {
  background-image: url(../images/sp-head.webp);
  aspect-ratio: 750/650;
}

.sp-head-ttl {
  padding: 5vw 0 0 5vw;
}

.sp-01 {
  background-image: url(../images/sp-section01-bg.webp);
  background-position: center bottom;
}

.sp-section01-ttl p {
  margin: 0;
  gap: .1em;
  font-weight: bold;
  font-size: clamp(17.6px, calc(3.67vw + 3.83px), 32px);
  text-align: center;
}

.sp-section01-ttl p::before,
.sp-section01-ttl p::after {
  content: "";
  display: block;
  width: 3em;
  aspect-ratio: 116/63;
  background-size: contain;
  background-repeat: no-repeat;
}

.sp-section01-ttl p::before {
  background-image: url(../images/ico-01.webp);
}

.sp-section01-ttl p::after {
  background-image: url(../images/ico-02.webp);
}

.sp-section01-item {
  gap: 20px;
}

.sp-02 {
  background-color: #fff;
}

.sp-section02-head {
  background-image: url(../images/sp-section02-head.jpg);
  aspect-ratio: 1332/660;
}

.sp-contact-ttl {
  color: #d6a761;
  font-size: clamp(20px, calc(3.05vw + 8.55px), 32px);
}

.contact-item {
  padding: 15px;
  border: 1px solid #d6a761;
}

.contact-item-ttl {
  color: #fff;
  background-color: #d6a761;
  padding: 2px;
}

.contact-item-exp p {
  width: 33%;
  padding: 5px;
  background-color: #fdecc8;
  margin: 0;
  margin-top: 2px;
  font-size: 12px;
}

.contact-care-intro {
  font-size: clamp(13px, calc(1.27vw + 8.23px), 18px);
  color: #3a4e9f;
  line-height: 1.5;
}

.eye-note {}

.eye-note-ttl {
  writing-mode: vertical-lr;
  color: #fff;
  font-weight: bold;
  background-color: #ee835c;
  padding: 5px;
}

.eye-note-txt {
  padding: 10px;
  background-color: #f9f5ea;
  border: 1px solid #ee835c;
}

.eye-note-txt p {
  margin: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ee835c;
  font-weight: 500;
}

.eye-note-txt p:last-child {
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sp-hr {
  background-image: url(../images/sp-hr.jpg);
  height: 100px;
  margin: 40px 0;
}

.hochoki-otameshi-txt {
  padding: 10px;
  font-size: clamp(13px, calc(1.27vw + 8.23px), 18px);
  background-color: #fff4d6;
  font-weight: 500;
  line-height: 1.5;
}

/* =================================================
LINE・Instagram
================================================= */

.item-box-a {
  /* position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); */
  width: 80%;
  min-width: 250px;
  max-width: 900px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.item-box01-a {
  /* top: 45.4%; */
  filter: drop-shadow(5px 5px 1px rgba(0, 0, 0, 0.5));
}

.item-box01-a:hover {
  /* transform: translate(calc(-50% + 5px), calc(-50% + 5px)); */
  transform: translate(2px, 2px);
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  filter: none;
}

.item-box02-a {
  bottom: -1.5%;
  border-radius: 9999px;
  overflow: hidden;
}

.item-box02-a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* 初期状態では左側に隠れていない */
  width: 0;
  /* 幅を0にして非表示にする */
  height: 100%;
  background: linear-gradient(45deg,
      rgba(254, 218, 117, 0.5),
      rgba(250, 126, 30, 0.5),
      rgba(214, 41, 118, 0.5),
      rgba(150, 47, 191, 0.5),
      rgba(79, 91, 213, 0.5));
  transition: width 0.5s ease;
  /* widthをアニメーション化 */
  z-index: -1;
}

.item-box02-a:hover::before {
  width: 100%;
}

.item-box02-a:hover {
  background-color: transparent;
}


.line {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) !important;
  bottom: 10px;
  width: 80%;
  min-width: 250px;
  max-width: 300px;
  margin: auto;
}

.line a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.line a:hover {
  -webkit-filter: drop-shadow(1px 1px 5px #555);
  filter: drop-shadow(1px 1px 5px #555);
}


@media screen and (min-width: 1024px) {
  .line {
    left: 20px;
    right: auto;
    bottom: 20px;
    width: 25%;
    transform: translateX(0%) !important;
  }
}


@media screen and (max-width: 1024px) {
  .item-box01-a {
    top: 38.0%;
  }

  .item-box02-a {
    bottom: -.80%;
  }

  .item-box02-a::before {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .line {
    left: 20px;
    right: auto;
    bottom: 20px;
    width: 25%;
    transform: translateX(0%) !important;
  }
}



/* =================================================
footer
================================================= */
footer {
  width: 100%;
  background-image: url(../images/footer-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1.92/1;
  padding: 50px 0;
  gap: 60px;
}


footer a {
  width: 60%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;

}

footer a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  footer {
    gap: 30px;
    padding-bottom: 110px;
  }

  footer a {
    width: 90%;
    max-width: 600px;
  }

}