/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: #333;
  background-color: #F7F3F0;
  overflow-x: hidden;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt" on;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

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

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.ly_bg_red_area {
  background-color: var(--color-red);
}

.ly-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/texture.jpg");
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

.font-poppins {
  font-family: var(--font-poppins);
}

.font-shippori-antique {
  font-family: var(--font-shippori);
  letter-spacing: 0;
}

.font-noto {
  font-family: var(--font-noto);
}

.el_sub_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .el_sub_title {
    align-items: flex-start;
    padding: 0 24px;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .el_sub_title {
    padding: 0 20px;
  }
}
.el_sub_title .el_sub_title_eng {
  width: 300px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .el_sub_title .el_sub_title_eng {
    width: 240px;
  }
}
@media screen and (max-width: 375px) {
  .el_sub_title .el_sub_title_eng {
    width: 200px;
    margin-bottom: 8px;
  }
}
.el_sub_title .el_sub_title_eng.no_margin {
  margin-bottom: 0;
}
.el_sub_title .el_sub_title_jp_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .el_sub_title .el_sub_title_jp_wrap {
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .el_sub_title .el_sub_title_jp_wrap .el_sub_title_dots_end {
    display: none;
  }
}
.el_sub_title .el_sub_title_jp_wrap .el_sub_title_jp {
  color: var(--color-red, #E72A25);
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .el_sub_title .el_sub_title_jp_wrap .el_sub_title_jp {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .el_sub_title .el_sub_title_jp_wrap .el_sub_title_jp {
    font-size: 16px;
  }
}

.el_horizontal_dots {
  width: 20px;
  height: 20px;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

.br_sp {
  display: block;
}
@media screen and (max-width: 600px) {
  .br_sp {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
