/* --------------- variables --------------------- */
/* Break Point */
.bgVideo:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 236, 250, 0.5);
  position: fixed;
  top: 0;
  left: 0;
}
.bgVideo video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#contens {
  position: relative;
  z-index: 1;
}

@keyframes fadeInClear {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
#mv .mainCatch {
  opacity: 0;
  filter: blur(15px);
  animation: fadeInClear 1s ease-out forwards;
  animation-delay: 0.5s;
}
#mv .mainText {
  opacity: 0;
  filter: blur(15px);
  animation: fadeInClear 1s ease-out forwards;
  animation-delay: 0.5s;
}
#mv .mainText p:first-of-type {
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
#mv .mainText p:last-of-type {
  font-weight: 400;
  line-height: 2;
}
#mv .mainText .readmore a:before {
  content: "";
  background: #60616b;
  box-shadow: inset 0 0 46px rgba(101, 102, 150, 0.25);
  border-radius: 50%;
  position: absolute;
  right: 0;
}
#mv .mainText .readmore a:after {
  content: "";
  background: url(../images/common/icon_arrow_small_white.svg) no-repeat;
  background-size: contain;
  position: absolute;
}

#keyword {
  position: relative;
}
#keyword h2 {
  font-family: "Lora", serif;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
#keyword .keywordList {
  position: relative;
}
#keyword .keywordList li button {
  color: #c8c8c8;
  display: inline-block;
  text-align: center;
  background-color: #111;
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.15);
  text-decoration: none;
  line-height: 1;
}
#keyword .keywordList li button.active {
  color: #111;
  background-color: rgba(255, 255, 255, 0.3);
}
#keyword .keywordBlog {
  position: relative;
}
#keyword .keywordBlog > li {
  display: none;
}
#keyword .keywordBlog > li figure {
  height: 100%;
  overflow: hidden;
  position: relative;
}
#keyword .keywordBlog > li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#keyword .keywordBlog > li figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#keyword .keywordBlog > li .tag {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
#keyword .keywordBlog > li .tag span {
  color: #fff;
}
#keyword .keywordBlog > li .title {
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
}
#keyword .keywordBlog > li .cat {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
#keyword .keywordBlog > li .readmore {
  position: absolute;
  z-index: 2;
  color: #fff;
}
#keyword .keywordBlog > li .readmore:after {
  content: "";
  background: url(../images/common/icon_arrow_small_gray.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}

#service .serviceTitle {
  font-weight: 600;
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
#service .serviceList ul li a {
  display: flex;
  align-items: center;
  background: linear-gradient(117deg, rgb(255, 255, 255) 12%, rgb(236, 235, 243) 100%);
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 1.3;
}
#service .serviceList ul li .icon {
  width: 28px;
}
#service .newService h2 {
  color: #000000;
  font-family: "Lora", serif;
  font-weight: 400;
}
#service .newService .newServiceList li .title h3 {
  font-weight: 600;
  line-height: 1.7;
}
#service .newService .newServiceList li .title p {
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
#blog {
  overflow: hidden;
}
#blog h2 {
  font-family: "Lora", serif;
  font-weight: 400;
  color: #fff;
}
#blog .blogList > li {
  opacity: 0;
  transform: translateX(40px);
}
#blog .blogList > li.is-show {
  opacity: 1;
  transform: translateX(0);
}

#news {
  background-color: #fff;
}
#news h2 {
  font-family: "Lora", serif;
  font-weight: 400;
}
#news .snsList > p {
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
#news .snsList ul li a {
  display: inline-block;
}

.contactTextbox {
  background-color: #fff;
}

/* fadeIn */
.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  .commonInner {
    padding: 0 20px;
    max-width: 648px;
    margin: 0 auto;
  }
  #mv {
    min-height: calc(100svh - 220px);
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: flex-end;
  }
  #mv .mvInner {
    padding: 0 20px;
    width: 100%;
    max-width: 648px;
    margin: 0 auto;
  }
  #mv .mainCatch {
    max-width: 380px;
  }
  #mv .mainText {
    max-width: 480px;
    margin-top: 20px;
  }
  #mv .mainText p:first-of-type {
    font-size: 18px;
  }
  #mv .mainText p:last-of-type {
    font-size: 12px;
    margin-top: 10px;
  }
  #mv .mainText .readmore {
    margin-top: 24px;
    text-align: right;
  }
  #mv .mainText .readmore a {
    display: inline-block;
    position: relative;
    color: #444444;
    font-family: "Inter", sans-serif;
    padding-right: 45px;
    font-size: 14px;
    letter-spacing: normal;
  }
  #mv .mainText .readmore a:before {
    width: 38px;
    height: 38px;
    top: -8px;
    right: -3px;
  }
  #mv .mainText .readmore a:after {
    width: 14px;
    height: 14px;
    top: 0.4em;
    right: 9px;
  }
  #keyword {
    padding: 40px 0 40px;
  }
  #keyword h2 {
    font-size: 40px;
  }
  #keyword .keywordList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px 8px;
  }
  #keyword .keywordList li:nth-child(n+8):not(.toggleBtn) {
    display: none;
  }
  #keyword .keywordList li.toggleBtn button {
    min-width: 34px;
    padding-inline: 13px;
    text-align: center;
  }
  #keyword .keywordList li button {
    border-radius: 18px;
    font-size: 14px;
    padding: 10px 26px;
  }
  #keyword .keywordBlog {
    margin-top: 40px;
  }
  #keyword .keywordBlog > li {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 600/538;
  }
  #keyword .keywordBlog > li + li {
    margin-top: 12px;
  }
  #keyword .keywordBlog > li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 15px 20px 40px;
  }
  #keyword .keywordBlog > li figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #keyword .keywordBlog > li figure img {
    width: 100%;
  }
  #keyword .keywordBlog > li .tag {
    margin-top: 16px;
  }
  #keyword .keywordBlog > li .tag span {
    font-size: 14px;
  }
  #keyword .keywordBlog > li .title {
    font-size: 20px;
  }
  #keyword .keywordBlog > li .cat {
    font-size: 14px;
    left: 20px;
    bottom: 20px;
  }
  #keyword .keywordBlog > li .readmore {
    bottom: 20px;
    right: 15px;
    display: inline-block;
    color: #aaaaaa;
    font-family: "Inter", sans-serif;
    padding-right: 22px;
    font-size: 13px;
    letter-spacing: normal;
  }
  #keyword .keywordBlog > li .readmore:after {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    top: calc(50% - 4px);
  }
  #service {
    padding: 60px 0 50px;
  }
  #service .stopBtn {
    text-align: right;
  }
  #service .stopBtn img {
    max-width: 23px;
  }
  #service .serviceTitle {
    font-size: 18px;
  }
  #service .serviceListWrap {
    overflow: hidden;
    margin-top: 30px;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
    padding-bottom: 10px;
  }
  #service .serviceList {
    display: flex;
    gap: 8px;
  }
  #service .serviceList + .serviceList {
    margin-top: 8px;
  }
  #service .serviceList:first-of-type ul {
    animation: slideLeft 25s linear infinite;
  }
  #service .serviceList:last-of-type ul {
    animation: slideRight 25s linear infinite;
  }
  #service .serviceList.paused ul {
    animation-play-state: paused !important;
  }
  #service .serviceList ul {
    display: flex;
    gap: 8px;
  }
  #service .serviceList ul li {
    height: 65px;
    white-space: nowrap;
  }
  #service .serviceList ul li a {
    padding: 10px 30px 10px 55px;
    border-radius: 5px;
  }
  #service .serviceList ul li a:before {
    content: "";
    display: inline-block;
    background: url(../images/home/arrow.webp) no-repeat center/cover;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #service .serviceList ul li .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  #service .serviceList ul li p {
    font-size: 16px;
  }
  #service .newService {
    margin-top: 70px;
  }
  #service .newService h2 {
    font-size: 40px;
  }
  #service .newService figure {
    margin-top: 30px;
    width: calc(100% + 40px);
    transform: translateX(-20px);
  }
  #service .newService figure img {
    width: 100%;
  }
  #service .newService .newServiceList {
    margin-top: -70px;
    position: relative;
    z-index: 2;
  }
  #service .newService .newServiceList li + li {
    margin-top: 8px;
  }
  #service .newService .newServiceList li a {
    display: block;
    background: linear-gradient(270deg, rgba(230, 232, 239, 0.8) 0%, rgb(255, 255, 255) 100%);
    border-radius: 5px;
    padding: 20px 25px 20px 20px;
    position: relative;
  }
  #service .newService .newServiceList li a:before {
    content: "";
    display: inline-block;
    background: url(../images/home/arrow.webp) no-repeat center/cover;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 14px;
    right: 14px;
  }
  #service .newService .newServiceList li .title h3 {
    font-size: 18px;
  }
  #service .newService .newServiceList li .title p {
    font-size: 12px;
    margin-top: 10px;
  }
  #service .newService .newServiceList li .text {
    font-size: 14px;
    margin-top: 15px;
  }
  #blog {
    background: url(../images/home/bg_blog_sp.webp) no-repeat;
    background-color: #222222;
    background-position: center;
    background-size: 100% auto;
    padding: 55px 0 65px;
  }
  #blog h2 {
    font-size: 40px;
  }
  #blog .blogList {
    margin-top: 30px;
  }
  #blog .blogList > li:nth-of-type(n + 5) {
    display: none;
  }
  #news {
    padding: 55px 0 50px;
  }
  #news h2 {
    font-size: 40px;
  }
  #news .snsList {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 25px;
  }
  #news .snsList > p {
    font-size: 12px;
  }
  #news .snsList ul {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  #news .snsList ul li {
    width: 30px;
  }
  .contactTextbox {
    padding-top: 15px;
    padding-bottom: 120px;
  }
  /* fadeIn */
}
@media print, screen and (min-width: 1024px) {
  .commonInner {
    max-width: 1100px;
    width: 100%;
    padding-inline: 60px;
    margin: 0 auto;
  }
  #mv {
    display: flex;
    align-items: center;
    min-height: calc(100svh - 90px);
    padding: 210px 0 60px;
  }
  #mv .mvInner {
    max-width: 1180px;
    width: 90%;
    margin: 0 auto;
  }
  #mv .mainCatch {
    width: 55%;
  }
  #mv .mainText {
    width: calc(45% + 30px);
    margin-left: auto;
    margin-top: -2.4vw;
  }
  #mv .mainText p:first-of-type {
    font-size: 28px;
  }
  #mv .mainText p:last-of-type {
    font-size: 15px;
    margin-top: 10px;
  }
  #mv .mainText .readmore {
    margin-top: 10px;
    text-align: right;
  }
  #mv .mainText .readmore a {
    display: inline-block;
    position: relative;
    color: #444444;
    font-family: "Inter", sans-serif;
    padding-right: 45px;
    font-size: 14px;
    letter-spacing: normal;
  }
  #mv .mainText .readmore a:hover:before, #mv .mainText .readmore a:hover:after {
    transform: scale(1.2);
  }
  #mv .mainText .readmore a:before {
    width: 38px;
    height: 38px;
    top: -8px;
    right: -3px;
    transition: 0.3s;
  }
  #mv .mainText .readmore a:after {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    top: 0.4em;
    right: 9px;
    transition: 0.3s;
  }
  #keyword {
    padding: 0 0 30px;
  }
  #keyword h2 {
    font-size: 90px;
  }
  #keyword .keywordList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 8px;
    margin: 0 auto 0;
    max-width: 1040px;
  }
  #keyword .keywordList li:not(.toggleBtn) {
    display: block !important;
  }
  #keyword .keywordList li button {
    border-radius: 20px;
    font-size: 14px;
    padding: 8px 20px;
    transition: 0.5s;
  }
  #keyword .keywordList li button:hover, #keyword .keywordList li button:focus-visible {
    box-shadow: none;
    color: #111;
    background-color: rgba(255, 255, 255, 0.3);
    outline: 1px solid #fff;
  }
  #keyword .keywordBlog {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  #keyword .keywordBlog > li {
    width: calc(33.3333333333% - 10px);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 600/538;
  }
  #keyword .keywordBlog > li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 20px 25px 40px;
  }
  #keyword .keywordBlog > li a:hover figure img, #keyword .keywordBlog > li a:focus-visible figure img {
    transform: scale(1.05);
  }
  #keyword .keywordBlog > li a:hover .readmore:after, #keyword .keywordBlog > li a:focus-visible .readmore:after {
    right: -0.5em;
  }
  #keyword .keywordBlog > li figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #keyword .keywordBlog > li figure img {
    transition: 0.5s;
  }
  #keyword .keywordBlog > li .tag {
    margin-top: 20px;
  }
  #keyword .keywordBlog > li .tag span {
    font-size: 14px;
  }
  #keyword .keywordBlog > li .title {
    font-size: 24px;
  }
  #keyword .keywordBlog > li .cat {
    font-size: 14px;
    left: 25px;
    bottom: 20px;
  }
  #keyword .keywordBlog > li .readmore {
    bottom: 20px;
    right: 20px;
    display: inline-block;
    color: #aaaaaa;
    font-family: "Inter", sans-serif;
    padding-right: 25px;
    font-size: 13px;
    letter-spacing: normal;
  }
  #keyword .keywordBlog > li .readmore:after {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    top: 0.4em;
    transition: 0.3s;
  }
  #service {
    padding: 180px 0 220px;
  }
  #service .stopBtn {
    text-align: right;
  }
  #service .stopBtn img {
    max-width: 23px;
    transition: 0.5s;
    cursor: pointer;
  }
  #service .stopBtn img:hover, #service .stopBtn img:focus-visible {
    opacity: 0.5;
  }
  #service .serviceTitle {
    font-size: 26px;
    text-align: center;
  }
  #service .serviceListWrap {
    overflow: hidden;
    margin-top: 40px;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
    padding-bottom: 10px;
  }
  #service .serviceList {
    display: flex;
    gap: 8px;
  }
  #service .serviceList + .serviceList {
    margin-top: 8px;
  }
  #service .serviceList:first-of-type ul {
    animation: slideLeft 25s linear infinite;
  }
  #service .serviceList:last-of-type ul {
    animation: slideRight 25s linear infinite;
  }
  #service .serviceList.paused ul {
    animation-play-state: paused !important;
  }
  #service .serviceList ul {
    display: flex;
    gap: 8px;
  }
  #service .serviceList ul li {
    height: 90px;
    width: 238px;
    white-space: nowrap;
  }
  #service .serviceList ul li a {
    padding: 20px 30px 20px 75px;
    border-radius: 10px;
    transform: scale(0.96);
    transition: 0.6s cubic-bezier(0.3, 0.2, 0, 1);
  }
  #service .serviceList ul li a:hover, #service .serviceList ul li a:focus-visible {
    transform: scale(1);
    box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.3);
  }
  #service .serviceList ul li a:before {
    content: "";
    display: inline-block;
    background: url(../images/home/arrow.webp) no-repeat center/cover;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 14px;
    right: 11px;
  }
  #service .serviceList ul li .icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
  #service .serviceList ul li p {
    font-size: 16px;
  }
  #service .newService {
    margin-top: 150px;
    position: relative;
    display: flex;
  }
  #service .newService .title {
    width: calc(50% - 63px);
  }
  #service .newService h2 {
    font-size: 70px;
    line-height: 0.9;
  }
  #service .newService figure {
    margin-top: 40px;
  }
  #service .newService figure img {
    border-radius: 11px;
  }
  #service .newService .newServiceList {
    width: calc(50% + 180px);
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 0;
  }
  #service .newService .newServiceList li + li {
    margin-top: 6px;
  }
  #service .newService .newServiceList li a {
    display: flex;
    border: 1px solid #fdfdfe;
    background: linear-gradient(270deg, rgba(230, 232, 239, 0.5) 0%, rgb(255, 255, 255) 100%);
    border-radius: 10px;
    padding: 35px 80px 25px 35px;
    position: relative;
    transform: scale(0.96);
    transition: 0.6s cubic-bezier(0.3, 0.2, 0, 1);
  }
  #service .newService .newServiceList li a:before {
    content: "";
    display: inline-block;
    background: url(../images/home/arrow.webp) no-repeat center/cover;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 14px;
    right: 11px;
  }
  #service .newService .newServiceList li a:hover, #service .newService .newServiceList li a:focus-visible {
    transform: scale(1);
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.3);
  }
  #service .newService .newServiceList li .title {
    width: 225px;
    flex: none;
  }
  #service .newService .newServiceList li .title h3 {
    font-size: 20px;
  }
  #service .newService .newServiceList li .title p {
    font-size: 13px;
    margin-top: 15px;
  }
  #service .newService .newServiceList li .text {
    width: calc(100% - 225px);
    padding-left: 60px;
  }
  #blog {
    background: url(../images/home/bg_blog_pc.webp) no-repeat center/cover;
    padding: 100px 0 130px;
  }
  #blog h2 {
    font-size: 70px;
  }
  #blog .blogList {
    margin-top: 50px;
  }
  #news {
    padding: 100px 0 130px;
  }
  #news h2 {
    font-size: 70px;
  }
  #news .snsList {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    gap: 25px;
  }
  #news .snsList > p {
    font-size: 12px;
  }
  #news .snsList ul {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  #news .snsList ul li {
    width: 30px;
  }
  #news .snsList ul li a {
    transition: 0.6s cubic-bezier(0.3, 0.2, 0, 1);
  }
  #news .snsList ul li a:hover, #news .snsList ul li a:focus-visible {
    transform: scale(1.2);
  }
  .contactTextbox {
    padding-top: 0;
    padding-bottom: 130px;
  }
  /* fadeIn */
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  /* fadeIn */
}
@media screen and (max-width: 1200px) {
  /* fadeIn */
}
@media print, screen and (min-width: 1201px) {
  /* fadeIn */
}
/*# sourceMappingURL=map/home.css.map */
