@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Yomogi&display=swap");

@import url("slide.css");
@import url("inview.css");
:root {
  --primary-color: #827c75;
  --primary-inverse-color: #fff;
  --space-large: 8vw;
  --space-small: 2vw;
}

@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body * {
  box-sizing: border-box;
}

html,
body {
  font-size: 13px;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  html,
  body {
    font-size: 14px;
  }
}

@media screen and (min-width: 1600px) {
  html,
  body {
    font-size: 1vw;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  -webkit-text-size-adjust: none;
  background: #fff;
  color: var(--primary-color);
  line-height: 2;
}

figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav ul {
  list-style: none;
}

nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

section li {
  margin-left: 1rem;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
}

input {
  font-size: 1rem;
}

section {
  overflow-x: hidden;
  padding: var(--space-large);
}

a {
  color: inherit;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  opacity: 0.9;
}

#container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

body:not(.home) header {
  margin-bottom: var(--space-large);
}

#logo img {
  display: block;
}

#logo {
  margin: 0;
  padding: 0;
  width: 10vw;
  position: relative;
  z-index: 1;
  left: 4.5vw;
  top: 4vw;
}

@media screen and (max-width: 500px) {
  #logo {
    top: 0;
    width: 60px;
  }
}

header nav ul {
  display: none;
}

@media screen and (min-width: 900px) {
  header > nav > ul {
    margin-right: 10vw;
    display: flex;
  }
  header nav li a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  header nav i {
    padding-right: 0.5rem;
  }
  header nav li.active > a {
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
  }
}

#menubar li.active > a {
  font-weight: bold;
  background: hsla(0, 0%, 100%, 0.644);
  border-left: 1px solid var(--primary-inverse-color);
}

header nav ul ul,
.small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both;
}

header nav ul ul {
  position: absolute;
  z-index: 100;
}

header nav ul ul a {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3em 1em;
  margin-top: 4px;
  border: 1px solid var(--primary-color);
}

#menubar {
  display: none;
}

#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menubar a {
  display: block;
  text-decoration: none;
}

.large-screen #menubar {
  display: block;
}

.small-screen #menubar.display-block {
  display: block;
}

#menubar_hdr.display-none {
  display: none;
}

.ddmenu_parent ul {
  display: none;
}

a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  margin-right: 0.5em;
}

@keyframes animation1 {
  0% {
    right: -100vw;
  }
  100% {
    right: 0px;
  }
}

.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 700px;
  height: 100%;
  padding: 90px 5vw 50px;
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  animation: animation1 0.2s both;
}

@media screen and (max-width: 700px) {
  .small-screen #menubar.display-block {
    width: 100%;
  }
}

.small-screen #menubar ul ul {
  margin: 2rem;
}

.small-screen #menubar nav ul li {
  border: 1px solid #fff;
  margin: 1rem 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.small-screen #menubar a {
  color: inherit;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.small-screen #menubar nav ul li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.8);
}

.small-screen #menubar nav ul li:hover > a {
  color: #fff;
}

#menubar_hdr {
  animation: opa1 0.3s 0.5s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  top: 0;
  right: calc(var(--space-small) + 5px);
  width: 60px;
  height: 60px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  mix-blend-mode: exclusion;
}

#menubar_hdr.ham {
  mix-blend-mode: normal;
}

#menubar_hdr div span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  position: absolute;
}

#menubar_hdr div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#menubar_hdr div span:nth-child(1) {
  top: 0;
}

#menubar_hdr div span:nth-child(2) {
  bottom: 0;
}

#menubar_hdr.ham div span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

#btn-special {
  padding: 0;
  margin: 0;
}

#btn-special a {
  display: block;
  text-decoration: none;
  position: fixed;
  z-index: 100;
  right: 0px;
  top: 20vw;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(#ec9347, #d36b12);
  color: #f6ebd2;
  padding: 2rem 1rem;
  border-radius: 3px 0px 0px 3px;
  letter-spacing: 0.1em;
}

#btn-special i {
  padding-bottom: 1rem;
}

main {
  flex: 1 0 auto;
  overflow-x: hidden;
  padding: 6vw 0 0;
}

main h2 {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 5vw;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

main h2.c {
  align-items: center;
}

main h2 span.sub-text {
  display: inline-block;
  border-top: 1px solid var(--primary-color);
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.1rem;
  padding-top: 2rem;
}

main h2.no-line span.sub-text {
  border: none;
  padding-top: 0;
}

main h3 {
  font-weight: 600;
  font-size: 1.4rem;
}

.iframe-box {
  width: 100%;
  height: 0;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.iframe-box iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer small {
  font-size: 100%;
}

footer {
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  font-size: 0.85rem;
  padding: 5vw;
}

@media screen and (min-width: 600px) {
  footer {
    display: flex;
    justify-content: space-between;
  }
}

footer .image {
  width: 200px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  footer .image {
    width: auto;
  }
  footer .image img {
    width: 80px;
  }
}

footer .logo {
  opacity: 0.5;
}

@media screen and (min-width: 600px) {
  footer .text {
    display: flex;
    gap: 5rem;
  }
}

footer h4 {
  font-weight: 200;
  font-size: 1.2rem;
}

.pr a {
  text-decoration: none;
  display: block;
  background: rgba(0, 0, 0, 0.9);
  text-align: right;
  padding: 0.5rem 1rem;
  color: #ccc;
}

.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}

.icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-self: center;
  gap: 1rem;
}

.icons i {
  font-size: 30px;
}

.list-c2 > a {
  text-decoration: none;
  display: block;
}

@media screen and (min-width: 600px) {
  .list-c2 {
    display: flex;
  }
}

.list-c2 .list {
  text-align: center;
  position: relative;
  overflow-y: hidden;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  padding: 5rem 2rem;
  margin: 1rem 0;
}

@media screen and (min-width: 600px) {
  .list-c2 > * {
    flex: 1;
  }
  .list-c2 .list {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list-c2 > a .list {
    height: 100%;
  }
}

.list-c2 .list.image1 {
  background: url("../images/contact.jpg") no-repeat center center / cover;
}

.list-c2 .list.image2 {
  background: url("../images/company.jpg") no-repeat center center / cover;
}

.list-c2 h4 {
  font-weight: 200;
  line-height: 1.2;
}

.list-c2 h4 .main-text {
  display: block;
  font-size: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .list-c2 h4 .main-text {
    font-size: 4rem;
  }
}

.list-c2 h4 .sub-text {
  position: relative;
  padding: 0 5rem;
}

.sub-text::before {
  left: 0;
}

.sub-text::after {
  right: 0;
}

.list-c2 h4 .sub-text::before,
.list-c2 h4 .sub-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  border-top: 1px solid #fff;
}

.list-c2 .list .text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}

.list-c2 .list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: transform 0.3s 0.1s;
}

.list-c2 .list:hover::before {
  transform: translateY(100%);
}
.list-c2 .list .btn2 a {
  background: rgba(0, 0, 0, 0.7);
}

.list-c2 .list .btn1 a {
  text-shadow: none;
}

.new {
  display: grid;
  grid-template-columns: auto 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.new dt,
.new dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.new dt {
  padding-right: 4rem;
}

.faq {
  background: #5e5c5a;
  color: #fff;
  position: relative;
}

@media screen and (min-width: 600px) {
  .faq {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.faq h2 {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.4em;
}

@media screen and (min-width: 600px) {
  .faq h2 {
    writing-mode: vertical-lr;
    margin-right: 18vw;
  }
}

.faq h2 .kazari {
  line-height: 1;
  font-size: 0.9rem;
}

@media screen and (min-width: 600px) {
  .faq h2 .kazari {
    font-size: 20vw;
    position: absolute;
    right: 0px;
    top: var(--space-large);
    color: rgba(255, 255, 255, 0.05);
  }
}

.faq dt {
  font-size: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0 1rem 0;
}

@media screen and (min-width: 600px) {
  .faq dt {
    padding: 2rem 2rem 1rem 2rem;
  }
}

.faq dd {
  padding: 0 0 2rem 0;
  font-size: 0.9rem;
}

@media screen and (min-width: 600px) {
  .faq dd {
    padding: 0 2rem 2rem 2rem;
  }
}

@media screen and (min-width: 600px) {
  .faq .text {
    width: 50%;
  }
}

.list-yoko-scroll * {
  margin: 0;
  padding: 0;
}

.list-yoko-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin-right: calc(-1 * var(--space-large));
  padding-bottom: 3vw;
}

.list-yoko-scroll::-webkit-scrollbar {
  display: none;
}

.list-yoko-scroll .list {
  width: 60%;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 600px) {
  .list-yoko-scroll .list {
    width: 28%;
    padding: 2rem;
  }
}

.list-yoko-scroll .list .text {
  flex: 1;
}

.list-yoko-scroll .list::before,
.list-yoko-scroll .list::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 10px;
  border: 0.5px solid var(--primary-color);
}

.list-yoko-scroll .list::before {
  left: 0px;
  top: 0px;
  border-right: none;
  border-bottom: none;
}

.list-yoko-scroll .list::after {
  right: 0px;
  bottom: 0px;
  border-top: none;
  border-left: none;
}

.list-yoko-scroll h4 {
  margin-bottom: 1rem;
}

.list-yoko-scroll p {
  font-size: 0.9rem;
}

.list-yoko-scroll .name {
  text-align: right;
}

.list-yoko-scroll .name img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-left: 20px;
}

.box1 {
  overflow-x: visible;
  position: relative;
  background: #f5f4ec;
  padding: var(--space-large);
  margin-top: 10vw;
}

.box1 .deco-text {
  position: absolute;
  right: 0;
  top: -13.5vw;
  color: #f5f4ec;
  font-size: 7vw;
  line-height: 1;
}

.box1 .illust1 {
  position: absolute;
  right: 20vw;
  top: 9vw;
  width: 23vw;
  opacity: 0.2;
}

.box1 .illust2 {
  position: absolute;
  right: 4vw;
  top: 2vw;
  width: 13vw;
  opacity: 0.2;
}

.box1 .text {
  margin-bottom: 5rem;
}

@media screen and (min-width: 600px) {
  .box1 {
    display: flex;
    gap: 5vw;
    border-radius: 20vw 0 20vw 0;
  }
  .box1 > * {
    flex: 1;
  }

  .box1 .illust1 {
    right: auto;
    left: 3vw;
    top: -4vw;
    width: 12vw;
  }

  .box1 .illust2 {
    right: auto;
    left: 16vw;
    top: -10vw;
    width: 8vw;
  }
  .box1 h2 img {
    width: 5vw;
  }
  .box1 .text {
    margin-bottom: 0;
  }
}

.box1 .image {
  position: relative;
}

.box1 .image img {
  border-radius: 10px;
}

.box1 .image img:nth-of-type(1) {
  width: 80%;
}

.box1 .image img:nth-of-type(2) {
  width: 40%;
}

.box1 .image img:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 15vw;
}

.logo-kazari {
  background: url("../images/logo_kazari.svg") no-repeat left top / 70%;
}

.list1.image1 {
  background: url("../images/bim.jpg") no-repeat center center / cover;
}

.list1.image2 {
  background: url("../images/modeling.jpg") no-repeat center center / cover;
}

.list1.image3 {
  background: url("../images/perspective.jpg") no-repeat center center / cover;
}

.list1.image4 {
  background: url("../images/movie.jpg") no-repeat center center / cover;
}

.list1 {
  padding: var(--space-large);
  position: relative;
  overflow-x: hidden;
  margin-bottom: 1vw;
}

.list1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: transform 0.5s 0.1s;
}

.list1:hover::before {
  transform: translateX(100%);
}

/*テキストブロック*/

.list1 .text {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 600px) {
  .list1 .text {
    width: 45%;
  }
}

.list1 .text.reverse {
  margin-left: auto;
}

.list1 h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

.list1 h3 .large {
  font-size: 5rem;
}

@media screen and (max-width: 1024px) {
  .list1 h3 .large {
    font-size: 4rem;
  }
}

@media screen and (max-width: 800px) {
  .list1 h3 .large {
    font-size: 3rem;
  }
}

.list1 h3 span:not(.large) {
  font-size: 1rem;
  opacity: 0.5;
  position: absolute;
  right: 0px;
  top: 0px;
}

.list-grid1 .list * {
  margin: 0;
  padding: 0;
}

.list-grid1 .list {
  display: grid;
  margin-bottom: 2rem;
}

.list-grid1 .list p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.list-grid1 .list {
  padding: 1rem;
  background: #fff;
  color: #111;
  grid-template-rows: auto 1fr auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.list-grid1 .list figure {
  margin: -1rem;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 800px) {
  .list-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
  }
  .list-grid1 .list {
    margin-bottom: 0;
  }
}

.title-bg {
  display: flex;
  justify-content: center;
}

.title-bg h2 {
  font-weight: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3vw;
}

.title-bg h2 .tate {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
}

.title-bg h2 .yoko {
  font-size: 0.9rem;
  margin-bottom: 3vw;
  letter-spacing: 0.1rem;
  opacity: 0.5;
}

.btn1 a,
.btn2 a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.btn1 a:hover,
.btn2 a:hover {
  letter-spacing: 0.2rem;
  box-shadow: none;
}

.btn1 a {
  color: var(--primary-color);
  background: var(--primary-inverse-color);
}

.btn2 a {
  color: #fff;
  border: 1px solid #fff;
}

.list1:hover .btn2 a {
  background: rgba(0, 0, 0, 0.8);
}

/*btn3*/

.btn3 {
  text-align: right;
  letter-spacing: 0.1em;
}

.btn3 a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-right: 5rem;
}

.btn3 a::after {
  content: "";
  background: url("../images/arrow1.svg") no-repeat right center / 100px;
  display: block;
  position: absolute;
  right: 0px;
  bottom: -1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  border: 1px solid var(--primary-color);
}

.btn3 a:hover::after {
  background-color: var(--primary-color);
  background-position: left center;
}

.btn3.white {
  color: #fff;
}

.btn3.white a::after {
  background: url("../images/arrow1_white.svg") no-repeat right center / 100px;
  border: 1px solid #fff;
}

.btn3.white a:hover::after {
  background-color: #fff;
  background-position: left center;
}

.slide-thumbnail-box {
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

.slide-thumbnail1 {
  margin-bottom: 6vw;
}

.slide-thumbnail1 .img {
  display: flex;
}

.slide-thumbnail1 .img img {
  padding: 0 1rem;
}

.slide-thumbnail1 .img div:nth-of-type(even) {
  transform: translateY(3vw);
}

.slide-thumbnail1 .rtl,
.slide-thumbnail1 .ltr {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {
  animation-name: slide-rtl;
}

.slide-thumbnail1 .ltr {
  animation-name: slide-ltr;
}

@keyframes slide-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.ta1 caption {
  font-weight: bold;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  margin-bottom: 1rem;
  border-radius: 5px;
}

.ta1 {
  table-layout: fixed;
  border-top: 1px solid var(--primary-color);
  width: 100%;
  margin-bottom: 5rem;
}

.ta1 tr {
  border-bottom: 1px solid var(--primary-color);
}

.ta1 th,
.ta1 td {
  padding: 1rem;
  word-break: break-all;
}

.ta1 th {
  width: 30%;
  text-align: left;
  background: #eee;
}

@media screen and (min-width: 900px) {
  .ta1 th {
    width: 20%;
  }
}

.order1 {
  order: 1;
}

.padding0 {
  padding: 0 !important;
}

.padding-bottom0 {
  padding-bottom: 0 !important;
}

.padding-lr0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.space-small {
  padding-left: var(--space-small);
  padding-right: var(--space-small);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.color-check,
.color-check a {
  color: #ff0000 !important;
}

.l {
  text-align: left !important;
}

.c {
  text-align: center !important;
}

.r {
  text-align: right !important;
}

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.look {
  line-height: 1.5 !important;
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}

.small {
  font-size: 0.75em;
}

.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}

.pc {
  display: none;
}

.dn {
  display: none !important;
}

.block {
  display: block !important;
}

.bg1 {
  background: #f0f0f0;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
}

.works .list-grid1 .list {
  box-shadow: none;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
  vertical-align: middle;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#response-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  display: none;
}
.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.required {
  background: #cc0000;
  color: #fff;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: normal;
}

/* ========================================
   LAZY LOADING IMAGES
   ======================================== */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

img.loaded {
  opacity: 1;
}

/* Blur effect while loading (optional) */
img[data-src]:not(.loaded) {
  filter: blur(5px);
}
