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

/* =========================
font / typography
========================= */
html {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  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
========================= */
/* まず全部非表示 */
.sp-only,
.tab-only,
.pc-only {
  display: none;
}

/* スマホ：〜434px */
@media (max-width: 434px) {
  .sp-only {
    display: block;
  }
}

/* タブレット：435px〜768px */
@media (min-width: 435px) and (max-width: 768px) {
  .tab-only {
    display: block;
  }
}

/* PC：769px〜 */
@media (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

/* =========================
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
========================= */
header,
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
================================================= */
header {
  background-image: url(../images/bg-01.webp);
  background-size: contain;
  aspect-ratio: 1920/812;
}

section {
  width: 100%;
  max-width: 1440px;
}

.header-contents {
  display: inline-block;
  top: 10%;
  left: 25%;
  width: 75%;
}

.header-logo {
  max-width: 270px;
}

.header-catch {
  font-size: 32px;
  font-weight: 900;
  color: #ec6f3f;
}

.section01 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #ec6f3f;
}

.section01-catch {
  gap: 32px;
}

.section01-catch::before,
.section01-catch::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background-color: #ec6f3f;
}

.section01-catch::before {
  transform: rotate(-20deg);
}

.section01-catch::after {
  transform: rotate(20deg);
}

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

.section02-text {
  line-height: 2;
}

.section02-deco01 {
  background-image: url(../images/deco-01.webp);
  aspect-ratio: 406/369;
}

.section02-deco02 {
  width: 50%;
  background-image: url(../images/deco-02.webp);
  aspect-ratio: 640/741;
}

.hochoki-title {
  gap: 16px;
}

.hochoki-signia-logo img {
  width: 40px;
}

.hochoki-title-text {
  font-family: "Zen Maru Gothic", sans-serif;
}

.hochoki-title-text-sub {
  gap: 10px;
}

.hochoki-title-text-sub::before,
.hochoki-title-text-sub::after {
  content: "";
  height: .9px;
  width: 20px;
  flex: 1;
  background-color: black;
}

.hochoki-title-text-main {
  font-size: 1.5em;
}

.hochoki-grid {
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.hochoki-item {
  margin: 0 auto;
}

.hochoki-item img {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.section03 {
  background-image: url(../images/bg-03.webp);
  background-position: top;
}

.megane {
  background-image: url(../images/megane-bg.webp);
  background-position: top;
  gap: 10px;
  padding: 20px 20px 40px 20px;
}

.megane-ttl {
  align-self: flex-start;
  width: 50%;
  max-width: 350px;
}

.megane-item {
  text-align: center;
}

.megane-item img {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin-bottom: 40px;
}

.contact {
  padding: 20px 20px 40px 20px;
  background-color: #fff;
}

.contact-ttl {
  width: 80%;
  max-width: 500px;
  min-width: 375px;
}
.sp_contact-ttl {
  width: 90%;
  margin-top: -50px;
}

.contact-item {
  justify-content: flex-start;
  gap: 10px;
  align-items: stretch;
  overflow-x: scroll;
}

.contact-item img {
  height: 350px;
  /* 親の高さに合わせる */
  width: auto;
  /* 縦横比を維持 */
}

.contact-ttl-deco {
  position: absolute;
  width: 220px;
  top: 10px;
  left: 540px;
}

.contact-deco {
  position: absolute;
  width: 120px !important;
}

.contact-deco-01 {
  left: 190px;
  top: -5px;
  height: 120px !important;
}

.contact-deco-02 {
  left: 770px;
    height: 136px !important;
}

.scroll {
  justify-content: flex-start;
  gap: 10px;
  color: #4B4B4B;
  font-weight: bold;
  margin-top: 10px;
}

.scroll::after {
  content: "";
  background-image: url(../images/arrrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {

  .header-contents {
    top: 50px;
    left: 10%;
    /* transform: translateX(-25%); */
  }

  .megane {
    padding-bottom: 0;
    background-image: url(../images/sp_megane-bg.jpg);
  }

  .megane-ttl {
    width: 85%;
  }

  .section03 {
    background-image: url(../images/sp_bg-03.png);
    padding-top: 100px;
  }

}

@media screen and (max-width: 600px) {
  header {
    background-image: url(../images/sp_bg-01.jpg);
    aspect-ratio: 750/612;
  }
}

@media screen and (max-width: 560px) {
  .self-check {
    width: 100%;
    flex-direction: column;
    justify-self: flex-start;
  }

  .section02-text-flex {
    position: relative;
    left: -5%;
  }

  .section02-deco01 {
    position: absolute;
    right: -27%;
    width: 125px;
  }

  .section02-deco02 {
    width: 90%;
    max-width: 375px;
  }

  .hochoki-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hochoki-item {
    max-width: 450px;
  }
}

@media screen and (max-width: 434px) {
  .header-contents {
    top: 0;
    left: 0%;
  }

  .header-logo {
    position: relative;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
  }

  .header-catch {
    font-size: 24px;
    top: 20px;
    left: 10%;
  }
}

@media screen and (min-width: 768px) {
  .scroll {
    display: none;
  }
}

/* =================================================
footer
================================================= */
footer {
  width: 100%;
  background-image: url(../images/bg-03.webp);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  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: 768px) {
  footer {
    background-image: url(../images/sp_bg-03.png);
  }
}

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

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

}