@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

/*header*/
/*SP*/
.header_nav {
  width: 100%;
  position: fixed;
  top: 0;
  height: 100px;
  z-index: 10;
  display: block;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .header_nav {
    height: 70px;
  }
}
.header_nav.header_scroll {
  background: var(--clr-white);
}
.header_nav > .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 0 120px 0 3.5%;
}
.header_nav > .inner .contact_btn {
  position: relative;
  z-index: 5;
  transition: 0.5s;
  color: var(--clr-white);
}
@media screen and (max-width: 768px) {
  .header_nav > .inner .contact_btn {
    display: none;
  }
}
.header_nav > .inner .contact_btn.is-open {
  color: var(--clr-white) !important;
}
.header_nav > .inner .contact_btn.scroll_second {
  color: var(--clr-black);
}
.header_nav > .inner .logo {
  width: 100px;
  position: absolute;
  right: 0;
  left: 50%;
  top: 15%;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .header_nav > .inner .logo {
    width: 70px;
  }
}
.header_nav > .inner .icon-animation {
  width: 40px;
  height: 30px;
  display: block;
  position: absolute;
  top: 34px;
  right: 40px;
  z-index: 2;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header_nav > .inner .icon-animation {
    top: 20px;
    right: 20px;
  }
}
@media (hover) {
  .header_nav > .inner .icon-animation:hover {
    transform: scale(1.3);
  }
}
.header_nav > .inner .icon-animation .top {
  background: var(--clr-white);
}
.header_nav > .inner .icon-animation.scroll_second .top {
  background: var(--clr-black);
}
.header_nav > .inner .icon-animation.scroll_second .middle:before {
  background: var(--clr-black);
}
.header_nav > .inner .icon-animation.scroll_second .middle:after {
  background: var(--clr-black);
}
.header_nav > .inner .icon-animation.is-open .top {
  transform: translateY(0px) scale(0);
}
.header_nav > .inner .icon-animation.is-open .bottom {
  transform: translateY(0px) scale(0);
}
.header_nav > .inner .icon-animation.is-open .middle:before {
  transform: rotate(30deg);
  top: -4px;
  background: #fff;
}
.header_nav > .inner .icon-animation.is-open .middle:after {
  transform: rotate(-30deg);
  top: -4px;
  background: #fff;
}
.header_nav > .inner .icon-animation.is-open:after {
  content: "";
  font-size: 10px;
  color: #fff;
  position: absolute;
  left: 1px;
  bottom: -15px;
}
.header_nav > .inner .icon-animation span {
  transition: all 0.3s;
  width: 40px;
  height: 1px;
  display: block;
  background: var(--clr-white);
  position: absolute;
  left: 40%;
  top: 65%;
  margin-left: -15px;
}
.header_nav > .inner .icon-animation .top {
  transform: translateY(-10px) scale(1);
}
.header_nav > .inner .icon-animation .bottom {
  transform: translateY(10px) scale(1);
}
.header_nav > .inner .icon-animation .middle {
  background: none;
  position: relative;
}
.header_nav > .inner .icon-animation .middle:before {
  transition: all 0.3s;
  content: "";
  width: 40px;
  height: 1px;
  background: var(--clr-white);
  display: block;
  transform: rotate(0deg);
  position: absolute;
}
.header_nav > .inner .icon-animation .middle:after {
  transition: all 0.3s;
  content: "";
  width: 40px;
  height: 1px;
  background: var(--clr-white);
  display: block;
  transform: rotate(0deg);
  position: absolute;
}
.header_nav > .inner .icon-animation:after {
  content: "";
  font-size: 10px;
  color: #000;
  position: absolute;
  left: 1px;
  bottom: -15px;
}
.header_nav nav.gnav {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: clip;
  background: var(--clr-blue);
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.header_nav nav.gnav .logo_btn_sp {
  margin: 15px 0 0 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav .logo_btn_sp {
    margin: 10px 0 0 0;
  }
}
.header_nav nav.gnav .logo_btn_sp .header_logo_btn {
  transition: 0.6s;
}
@media (hover) {
  .header_nav nav.gnav .logo_btn_sp .header_logo_btn:hover {
    opacity: 0.5;
  }
}
.header_nav nav.gnav .logo_btn_sp .header_logo_btn .header_logo_img {
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav .logo_btn_sp .header_logo_btn .header_logo_img {
    max-width: 70px;
  }
}
.header_nav nav.gnav ul {
  padding: 60px 5% 100px 15%;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul {
    padding: 4% 6%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
  }
}
.header_nav nav.gnav ul.not_grid {
  grid-template-columns: repeat(1, 1fr);
  padding-bottom: 40px;
}
@media screen and (max-width: 400px) {
  .header_nav nav.gnav ul.not_grid li {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul.not_grid li a.end {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul.brand_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul.brand_list .line_list {
    margin-top: 25px;
  }
}
.header_nav nav.gnav ul li {
  text-decoration: none;
  padding: 25px 0;
}
@media screen and (max-width: 400px) {
  .header_nav nav.gnav ul li {
    padding: 15px 0;
  }
}
.header_nav nav.gnav ul li a {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  width: 80%;
  height: 100%;
  display: grid;
  letter-spacing: 0.2rem;
  position: relative;
  transition: 0.5s;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a {
    height: auto;
  }
}
.header_nav nav.gnav ul li a .main_txt {
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .main_txt {
    font-size: 24px;
  }
}
.header_nav nav.gnav ul li a .main_txt.end {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .main_txt.end {
    font-size: 24px;
  }
}
.header_nav nav.gnav ul li a .sub_txt {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .sub_txt {
    font-size: 12px;
  }
}
.header_nav nav.gnav ul li a .arrow_radius {
  position: absolute;
  display: flex;
  align-items: center;
  top: 56px;
  bottom: 0;
  left: 70px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .arrow_radius {
    top: 40px;
    left: 60px;
  }
}
.header_nav nav.gnav ul li a .arrow_radius.window {
  transform: rotate(-45deg);
}
.header_nav nav.gnav ul li a .arrow_radius .arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 1px;
  margin: 3.5px 0;
  border-radius: 9999px;
  background-color: var(--clr-white);
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .arrow_radius .arrow {
    width: 8px;
  }
}
.header_nav nav.gnav ul li a .arrow_radius .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--clr-white);
  transform-origin: calc(100% - 1px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .arrow_radius .arrow:before {
    width: 5px;
  }
}
.header_nav nav.gnav ul li a .arrow_radius .arrow:after {
  content: "";
  position: absolute;
  top: calc(400% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--clr-white);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li a .arrow_radius .arrow:after {
    width: 5px;
    top: calc(300% - 1px);
  }
}
@media (hover) {
  .header_nav nav.gnav ul li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .header_nav nav.gnav ul li.sp_list {
    padding: 0;
  }
}
.header_nav nav.gnav ul li.line_list {
  border-left: 1px solid var(--clr-white);
  padding: 0 0 0 30px;
}
.header_nav nav.gnav ul li.line_list .lower {
  font-size: 14px;
  margin-bottom: 20px;
}
.header_nav nav.gnav ul li.line_list .lower:last-child {
  margin-bottom: 0px;
}
.header_nav nav .list_flex {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .header_nav nav .list_flex {
    grid-template-columns: repeat(1, 1fr);
  }
}

main {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 120px;
  }
}
main section.top_kv {
  position: relative;
  z-index: 1;
}
main section.top_kv h1 {
  position: absolute;
  z-index: 10;
  color: var(--clr-white);
  left: 50px;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  main section.top_kv h1 {
    left: 5%;
    bottom: 15%;
  }
}
main section.top_kv h1 .main_ttl {
  font-size: 110px;
  line-height: 10rem;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  main section.top_kv h1 .main_ttl {
    font-size: 16vw;
    line-height: 15vw;
  }
}
main section.top_kv h1 .sub_ttl {
  font-size: 28px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  main section.top_kv h1 .sub_ttl {
    font-size: 18px;
  }
}
main section.top_kv .slider {
  height: 100vh;
  margin-inline: auto;
  overflow: hidden;
  width: 100%;
  transition: opacity 0.8s;
}
main section.top_kv .slider.loaded {
  opacity: 1 !important;
}
main section.top_kv .slider .slick-img img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
main section.top_kv .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
main section.read {
  margin-top: -100px;
  position: relative;
  padding-bottom: 250px;
}
@media screen and (max-width: 1200px) {
  main section.read {
    margin-top: -6%;
  }
}
@media screen and (max-width: 768px) {
  main section.read {
    margin-top: -100px;
    padding-bottom: 100px;
  }
}
main section.read .flex_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10%;
  padding-left: 10%;
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner {
    overflow: hidden;
    position: relative;
    height: 1050px;
  }
}
main section.read .flex_inner .read_txt {
  max-width: 340px;
  width: 100%;
  color: var(--clr-gray);
  font-size: 16px;
  line-height: 3.5rem;
  padding-top: 40px;
}
@media screen and (max-width: 1200px) {
  main section.read .flex_inner .read_txt {
    font-size: 1.5vw;
    line-height: 3vw;
  }
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner .read_txt {
    position: absolute;
    font-size: 14px;
    line-height: 3rem;
    width: 80%;
    bottom: 0;
    left: 7%;
  }
}
main section.read .flex_inner .circle_area {
  position: relative;
  max-width: 700px;
  width: 120%;
  background: var(--clr-gray);
  aspect-ratio: 1/1;
  border-radius: 1000px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner .circle_area {
    position: absolute;
    right: 0;
    left: 20px;
    margin: 0 auto;
    width: 200%;
    justify-content: flex-start;
    padding: 40px 0 40px 80px;
    top: 0%;
  }
}
@media screen and (max-width: 400px) {
  main section.read .flex_inner .circle_area {
    position: absolute;
    right: -90%;
    width: 200%;
    justify-content: flex-start;
    padding: 40px 23%;
    top: 0%;
  }
}
main section.read .flex_inner .circle_area .circle_txt_box {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner .circle_area .circle_txt_box {
    font-size: 3.5vw;
    line-height: 8vw;
    width: 80%;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  main section.read .flex_inner .circle_area .circle_txt_box {
    width: 70%;
    align-items: flex-start;
  }
}
main section.read .flex_inner .circle_area .circle_txt_box .circle_txt {
  font-size: 21px;
  color: var(--clr-white);
  line-height: 5rem;
}
@media screen and (max-width: 1200px) {
  main section.read .flex_inner .circle_area .circle_txt_box .circle_txt {
    font-size: 1.5vw;
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner .circle_area .circle_txt_box .circle_txt {
    font-size: 16px;
    line-height: 3.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  main section.read .flex_inner .circle_area .circle_txt_box .circle_txt {
    width: 65%;
  }
}
main section.read .flex_inner .circle_area .circle_txt_box .sub_txt {
  font-size: 20px;
  color: var(--clr-li-gray);
  line-height: 3rem;
  margin-top: 30px;
  padding-right: 4rem;
}
@media screen and (max-width: 1200px) {
  main section.read .flex_inner .circle_area .circle_txt_box .sub_txt {
    margin-top: 20px;
    font-size: 1.4vw;
    line-height: 2vw;
  }
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner .circle_area .circle_txt_box .sub_txt {
    font-size: 14px;
    line-height: 5vw;
    width: 65%;
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
  }
}
main section.read .flex_inner .circle_area .read_logo {
  position: absolute;
  max-width: 570px;
  width: 100%;
  bottom: -20%;
  left: -50%;
}
@media screen and (max-width: 1200px) {
  main section.read .flex_inner .circle_area .read_logo {
    width: 80%;
    bottom: -30%;
  }
}
@media screen and (max-width: 768px) {
  main section.read .flex_inner .circle_area .read_logo {
    max-width: 300px;
    width: 100%;
    bottom: -12%;
    left: 2%;
  }
}
main section.news {
  padding: 60px 4%;
  border-top: 1px solid var(--clr-li-gray);
  border-bottom: 1px solid var(--clr-li-gray);
}
main section.news .news_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  main section.news .news_inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  main section.news .news_inner .sp_btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
main section.news .news_inner .txt_area {
  max-width: 280px;
  width: 100%;
}
main section.news .news_inner .txt_area h2 {
  display: flex;
  gap: 0 20px;
}
main section.news .news_inner .txt_area h2 .sub_ttl {
  padding-top: 20px;
}
main section.news .news_inner .txt_area .btn_link {
  margin-top: 0px;
}
main section.news .news_inner .article_Box {
  display: flex;
  flex-direction: column;
  max-width: 750px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  main section.news .news_inner .article_Box {
    max-width: 800px;
    width: 100%;
  }
}
main section.news .news_inner .article_Box article {
  border-bottom: 1px solid var(--clr-black);
}
main section.news .news_inner .article_Box article a {
  display: flex;
  align-items: center;
  padding: 25px 0;
  font-size: 16px;
  text-decoration: none;
  transition: 0.5s;
  color: var(--clr-black);
}
@media screen and (max-width: 768px) {
  main section.news .news_inner .article_Box article a {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    padding: 18px 0;
  }
}
@media (hover) {
  main section.news .news_inner .article_Box article a:hover {
    opacity: 0.5;
  }
}
main section.news .news_inner .article_Box article a .data_box {
  max-width: 170px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  main section.news .news_inner .article_Box article a .data_box {
    max-width: 140px;
    margin-bottom: 5px;
  }
}
main section.news .news_inner .article_Box article a .data_box .data {
  letter-spacing: 0.1rem;
}
main section.news .news_inner .article_Box article a .data_box .tag {
  background: var(--clr-gray);
  color: var(--clr-white);
  max-width: 60px;
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  main section.news .news_inner .article_Box article a .data_box .tag {
    max-width: 50px;
    height: 20px;
    font-size: 14px;
  }
}
main section.message {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  main section.message {
    padding-top: 80px;
  }
}
main section.message .me_img_area {
  position: relative;
  width: fit-content;
  margin: 0 0 -180px auto;
  width: 55%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  main section.message .me_img_area {
    width: 80%;
    margin: 0 0 -100px auto;
  }
}
main section.message .me_img_area .me_img_box {
  position: relative;
}
main section.message .me_img_area .me_img_box .shape_01 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 160px;
  background: var(--clr-gray);
  left: -100px;
  bottom: 29%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  main section.message .me_img_area .me_img_box .shape_01 {
    width: 60px;
    height: 60px;
    border-radius: 160px;
    background: var(--clr-gray);
    left: -50px;
    bottom: 80px;
  }
}
main section.message .me_img_area .me_img_box .me_img {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}
main section.message .me_img_area .shape_02 {
  position: absolute;
  width: 80px;
  height: 240px;
  background: var(--clr-blue);
  right: 5%;
  bottom: -35%;
}
@media screen and (max-width: 768px) {
  main section.message .me_img_area .shape_02 {
    width: 50px;
    height: 150px;
    right: 5%;
    bottom: -110px;
  }
}
main section.message .message_box {
  background: var(--bc-beige);
  padding: 120px 4% 0;
}
@media screen and (max-width: 768px) {
  main section.message .message_box {
    padding: 140px 4% 0;
  }
}
main section.message .message_box h2 {
  position: relative;
  max-width: 1400px;
  margin-bottom: 80px !important;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  main section.message .message_box h2 {
    margin-bottom: 30px !important;
  }
}
main section.message .message_box h2 .sub_ttl {
  margin-top: 25px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  main section.message .message_box h2 .sub_ttl {
    margin-top: 0;
    font-size: 16px;
  }
}
main section.message .message_box h2 .shape_03 {
  position: absolute;
  background: var(--clr-sky-blue);
  width: 250px;
  height: 40px;
  left: -9%;
  top: -40px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  main section.message .message_box h2 .shape_03 {
    width: 100px;
    height: 20px;
    left: -30px;
    top: -2px;
  }
}
main section.message .message_box h2 .main_ttl {
  font-size: 150px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1300px) {
  main section.message .message_box h2 .main_ttl {
    font-size: 11vw;
  }
}
@media screen and (max-width: 768px) {
  main section.message .message_box h2 .main_ttl {
    font-size: 55px;
  }
}
main section.message .flex_box {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section.message .flex_box {
    flex-direction: column;
  }
}
main section.message .flex_box .txt_box .main_txt {
  font-size: 40px;
  font-weight: 500;
  line-height: 6rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1200px) {
  main section.message .flex_box .txt_box .main_txt {
    font-size: 3.2vw;
    line-height: 4.7vw;
  }
}
@media screen and (max-width: 768px) {
  main section.message .flex_box .txt_box .main_txt {
    font-size: 20px;
    line-height: 3rem;
  }
}
main section.message .flex_box .txt_box .sub_txt {
  font-size: 15px;
  color: var(--clr-gray);
  max-width: 290px;
  width: 100%;
  letter-spacing: 0.08rem;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  main section.message .flex_box .txt_box .sub_txt {
    font-size: 12px;
    margin-top: 20px;
  }
}
main section.message .flex_box .line {
  background: var(--clr-li-gray);
  height: auto;
  width: 1px;
  margin: 0 5%;
}
@media screen and (max-width: 768px) {
  main section.message .flex_box .line {
    display: none;
  }
}
main section.message .flex_box .link_box {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  main section.message .flex_box .link_box {
    padding-bottom: 80px;
  }
}
main section.message .flex_box .link_box .link_txt {
  font-size: 20px;
  line-height: 5rem;
}
@media screen and (max-width: 1200px) {
  main section.message .flex_box .link_box .link_txt {
    font-size: 1.7vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  main section.message .flex_box .link_box .link_txt {
    font-size: 14px;
    line-height: 2.8rem;
    margin-top: 40px;
  }
}
main section.scroll-x {
  background: var(--clr-blue);
  overflow: hidden;
}
main section.scroll-x .inner-box {
  width: 291.6666666667vh;
  aspect-ratio: 26/9;
  position: relative;
  scroll-snap-type: x mandatory;
}
main section.scroll-x .inner-box > div {
  scroll-snap-align: start;
}
main section.scroll-x .inner-box img {
  width: 100%;
}
main section.scroll-x .inner-box .txt-chain {
  width: 64.4444444444vh;
  position: absolute;
  top: 36.6666666667vh;
  left: 88.8888888889vh;
  z-index: 1;
}
main section.scroll-x .inner-box .txt-of {
  width: 17.7777777778vh;
  position: absolute;
  top: 55.5555555556vh;
  left: 164.4444444444vh;
  z-index: 1;
}
main section.scroll-x .inner-box .txt-life {
  width: 51.1111111111vh;
  position: absolute;
  top: 30vh;
  left: 193.3333333333vh;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}
main section.scroll-x .inner-box .chain-img01 {
  width: 95.5555555556vh;
  position: absolute;
  top: 0;
  left: 0;
}
main section.scroll-x .inner-box .chain-img02 {
  width: 33.3333333333vh;
  position: absolute;
  top: 68.8888888889vh;
  left: 104.4444444444vh;
}
main section.scroll-x .inner-box .chain-img03 {
  width: 20vh;
  position: absolute;
  top: 4.4444444444vh;
  left: 121.1111111111vh;
  z-index: 1;
}
main section.scroll-x .inner-box .chain-img04 {
  width: 48.8888888889vh;
  position: absolute;
  top: 16.6666666667vh;
  left: 138.8888888889vh;
}
main section.scroll-x .inner-box .chain-img05 {
  width: 20vh;
  position: absolute;
  top: 68.8888888889vh;
  left: 174.4444444444vh;
}
main section.scroll-x .inner-box .chain-img06 {
  width: 26.6666666667vh;
  position: absolute;
  top: 60vh;
  left: 210vh;
  z-index: 1;
}
main section.scroll-x .inner-box .chain-img07 {
  width: 28.8888888889vh;
  position: absolute;
  top: 0;
  left: 228.8888888889vh;
  z-index: 1;
}
main section.scroll-x .inner-box .chain-img08 {
  width: 40vh;
  position: absolute;
  top: 73.3333333333vh;
  left: 231.1111111111vh;
}
main section.scroll-x .inner-box .chain-img09 {
  width: 26.6666666667vh;
  position: absolute;
  top: 7.7777777778vh;
  left: 253.3333333333vh;
}
main section.commitment {
  padding-top: 150px;
  background: var(--bc-beige);
  margin-top: -10px;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  main section.commitment {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  main section.commitment > h2 {
    padding-left: 5%;
  }
}
main section.commitment h2 {
  position: relative;
  text-align: center;
}
main section.commitment h2 .main_ttl {
  font-size: 150px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  main section.commitment h2 .main_ttl {
    font-size: 130px;
  }
}
@media screen and (max-width: 768px) {
  main section.commitment h2 .main_ttl {
    font-size: 55px;
    text-align: left;
  }
}
main section.commitment h2 .sub_ttl {
  position: absolute;
  font-size: 20px;
  top: -40px;
  left: 0%;
  right: 450px;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  main section.commitment h2 .sub_ttl {
    right: 360px;
  }
}
@media screen and (max-width: 768px) {
  main section.commitment h2 .sub_ttl {
    left: 5%;
    right: auto;
    font-size: 16px;
  }
}
main section.commitment h2 .shape_04 {
  position: absolute;
  background: url(/index/img/shape04.png) no-repeat;
  background-size: cover;
  width: 220px;
  height: 170px;
  bottom: -85%;
  left: 2%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  main section.commitment h2 .shape_04 {
    background: url(/index/img/shape04_sp.png) no-repeat;
    background-size: cover;
    width: 120px;
    height: 150px;
    left: auto;
    right: 0;
    bottom: -150%;
  }
}
main section.commitment .box_text {
  width: 90%;
  margin: 0 auto 20px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  main section.commitment .box_text {
    padding-top: 0;
  }
}
main section.commitment .box_text .main_txt {
  font-size: 24px;
  font-weight: 500;
  line-height: 4rem;
}
@media screen and (max-width: 768px) {
  main section.commitment .box_text .main_txt {
    font-size: 20px;
  }
}
main section.commitment .box_text .sub_txt {
  color: var(--clr-gray);
  font-size: 12px;
  line-height: 2rem;
  margin-top: 20px;
}
main section.commitment section.img_fixed {
  transition: background 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
main section.commitment section.img_fixed > .inner {
  padding: 0 2%;
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner {
    padding: 0 5%;
  }
}
main section.commitment section.img_fixed > .inner .txt_ttl_area {
  width: 47%;
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner .txt_ttl_area {
    width: 0;
  }
}
main section.commitment section.img_fixed > .inner .txt_ttl_area .box_text {
  position: sticky;
  top: 10%;
  bottom: 0;
}
main section.commitment section.img_fixed > .inner .txt_ttl_area .box_text .main_txt {
  color: var(--clr-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 5rem;
}
main section.commitment section.img_fixed > .inner .txt_ttl_area .box_text .sub_txt {
  color: var(--clr-gray);
  max-width: 280px;
  font-size: 15px;
  line-height: 2.5rem;
  margin-top: 30px;
}
main section.commitment section.img_fixed > .inner .img_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.commitment section.img_fixed > .inner .img_area .anime {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.commitment section.img_fixed > .inner .img_area .anime#anime2 {
  opacity: 0;
}
main section.commitment section.img_fixed > .inner .img_area .anime span.bgw {
  background: #fff;
}
main section.commitment section.img_fixed > .inner .img_area .anime img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
main section.commitment section.img_fixed > .inner .img_area .anime.act {
  opacity: 1;
}
main section.commitment section.img_fixed > .inner .img_area .anime svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main section.commitment section.img_fixed > .inner .txt_area {
  position: relative;
  width: 100%;
  margin-left: auto;
  display: flex;
  margin: 0 auto;
  justify-content: flex-start;
}
main section.commitment section.img_fixed > .inner .txt_area .line {
  height: auto;
  width: 1px;
  background: var(--clr-white);
  margin: 0 50px;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box {
  width: 100%;
  height: 100svh;
  display: flex;
  padding-top: 30svh;
  transition: all 0.5s;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box:last-child {
  height: 130svh;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box.act, main section.commitment section.img_fixed > .inner .txt_area .txt_box.show {
  left: 0;
  opacity: 1;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box .txt_wrap {
  width: 100%;
  max-width: 520px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner .txt_area .txt_box .txt_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    padding: 0;
  }
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box h2 {
  text-align: left;
  color: var(--clr-white);
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box h2 .main_ttl {
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner .txt_area .txt_box h2 .main_ttl {
    font-size: 55px;
  }
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box h2 .sub_ttl {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box .txt {
  color: var(--clr-white);
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner .txt_area .txt_box picture {
    margin: 10px 0;
  }
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box .txt_img {
  display: flex;
  justify-content: space-between;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box .txt_img p.txt {
  width: 60%;
  padding-top: 20px;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box .txt_img img {
  width: 36%;
  height: auto;
  object-fit: contain;
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box p.txt {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner .txt_area .txt_box p.txt {
    font-size: 14px;
  }
}
main section.commitment section.img_fixed > .inner .txt_area .txt_box p.txt span {
  display: inline-block;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  main section.commitment section.img_fixed > .inner .txt_area .txt_box p.txt span {
    font-size: 10px;
  }
}
main section.commitment section.img_fixed .fixed_sc_area {
  margin-top: -100vh;
}
main section.commitment section.img_fixed .fixed_sc_area .fixed_sc {
  width: 100%;
  height: 100vh;
}
main section.commitment section.img_fixed .fixed_sc_area .fixed_sc:last-child {
  height: 100vh;
}
main section.brand {
  padding: 140px 0;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 820px) {
  main section.brand {
    background-size: 180px;
    padding: 80px 0;
  }
}
main section.brand .obj-group {
  overflow-y: hidden;
}
main section.brand .obj-group .obj01 {
  display: block;
  pointer-events: none;
  width: 250px;
  height: 40px;
  position: absolute;
  right: calc(50% - 340px);
  top: 150px;
  background-color: #4cbad9;
  translate: 50% 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main section.brand .obj-group .obj01 {
    width: 170px;
    height: 30px;
    right: 110px;
    top: 120px;
  }
}
main section.brand .obj-group .obj02 {
  display: block;
  pointer-events: none;
  width: 320px;
  height: 320px;
  position: absolute;
  right: calc(50% - 500px);
  top: -80px;
  background-color: #808080;
  border-radius: 100%;
  translate: 50% 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  main section.brand .obj-group .obj02 {
    width: 280px;
    height: 280px;
    right: 0;
  }
}
main section.brand .txt_area {
  padding: 0 5%;
}
main section.brand .txt_area h2 {
  max-width: 1300px;
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  main section.brand .txt_area h2 {
    flex-direction: column;
  }
}
main section.brand .txt_area h2 .main_ttl {
  font-size: 150px;
}
@media screen and (max-width: 768px) {
  main section.brand .txt_area h2 .main_ttl {
    font-size: 55px;
  }
}
main section.brand .txt_area h2 .sub_ttl {
  font-size: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  main section.brand .txt_area h2 .sub_ttl {
    font-size: 11px;
    padding-top: 0px;
  }
}
main section.brand .txt_area .main_txt {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 40px;
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  main section.brand .txt_area .main_txt {
    font-size: 20px;
    margin: 0px auto 80px;
  }
}
main section.brand .brand_slide {
  position: relative;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide {
    width: 100%;
    max-width: 500px !important;
    margin: 0 auto;
    padding: 0;
  }
}
main section.brand .brand_slide .slide_area {
  max-width: 1100px;
  margin: 0 auto;
}
main section.brand .brand_slide .slide_area .works_slide {
  margin-right: calc(45% - 50vw);
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .works_slide {
    margin: 0;
  }
}
main section.brand .brand_slide .slide_area .slide_btn {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 60px;
  aspect-ratio: 1/1;
  z-index: 1;
  cursor: pointer;
  border: 1px solid var(--clr-black);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_btn {
    top: -67px;
    width: 45px;
  }
}
main section.brand .brand_slide .slide_area .slide_btn .btn_arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px;
  border-top: 1px solid var(--clr-black);
  border-right: 1px solid var(--clr-black);
  transform: rotate(225deg);
  transition: 0.5s;
}
main section.brand .brand_slide .slide_area .slide_btn .btn_arrow.reverse {
  transform: rotate(45deg);
}
@media (hover) {
  main section.brand .brand_slide .slide_area .slide_btn:hover {
    background: var(--clr-black);
  }
  main section.brand .brand_slide .slide_area .slide_btn:hover .btn_arrow {
    border-top: 1px solid var(--clr-white);
    border-right: 1px solid var(--clr-white);
  }
}
main section.brand .brand_slide .slide_area .slide_btn.slick-disabled {
  opacity: 0.4;
  cursor: auto;
}
main section.brand .brand_slide .slide_area .slide_btn.works-prev {
  left: 480px;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_btn.works-prev {
    left: 5vw;
    z-index: 2;
  }
}
main section.brand .brand_slide .slide_area .slide_btn.works-next {
  left: 565px;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_btn.works-next {
    left: calc(5vw + 60px);
    z-index: 2;
  }
}
main section.brand .brand_slide .slide_area .slide_btn img {
  width: 100%;
}
main section.brand .brand_slide .slide_area .slide_wrap {
  max-width: 1100px;
  width: 90%;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_wrap {
    width: 100%;
    margin: 0 auto;
  }
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .slick-slide:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_wrap .works_slide .slick-slide:not(:last-child) {
    margin-right: 0;
  }
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items {
    max-width: 100%;
    padding: 0 5vw;
  }
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}
@media (hover) {
  main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a:hover {
    opacity: 0.7;
  }
  main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a:hover img {
    transform: scale(1.05);
  }
  main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a:hover .tmb::after {
    border-width: 8px;
  }
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .tmb {
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr-li-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .tmb::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: border-width 0.3s;
  border: 0 solid #1d84bf;
  box-sizing: border-box;
  z-index: 0;
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .tmb img {
  transition: transform 0.2s ease;
  width: 65%;
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .tmb img.vertical {
  width: 35%;
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .tmb .tag {
  position: absolute;
  font-size: 18px;
  background: var(--clr-black);
  color: var(--clr-white);
  padding: 10px 20px;
  padding: 4px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1;
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .details {
  width: 100%;
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .details {
    padding: 15px 0;
  }
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .details:before {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #616161 0, #616161 50%, var(--color_yw1) 50%);
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .details p.ttl {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
main section.brand .brand_slide .slide_area .slide_wrap .works_slide .items a .details p.age {
  margin-top: 15px;
  color: #fff;
  font-size: var(--fz_xs);
  display: inline-block;
  border: 1px solid #656565;
  padding: 5px 20px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .dots-box {
    width: 90%;
    margin: 0 auto;
  }
}
main section.brand .brand_slide .slide_area .dots-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: start;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  main section.brand .brand_slide .slide_area .dots-wrap {
    margin-top: 30px;
  }
}
main section.brand .brand_slide .slide_area .dots-wrap li {
  width: 100%;
  height: 1px;
  background: var(--clr-li-gray);
  border-radius: 50%;
  cursor: pointer;
}
main section.brand .brand_slide .slide_area .dots-wrap li.slick-active {
  background: var(--clr-black);
}
main section.brand .brand_slide .slide_area .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
main section.shop {
  background: var(--bc-beige);
  padding: 100px 0 150px;
}
@media screen and (max-width: 768px) {
  main section.shop {
    padding: 60px 4%;
  }
}
main section.shop .shop_inner {
  width: 100%;
  margin: 0 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner {
    gap: 60px;
  }
}
main section.shop .shop_inner .left_box {
  width: 43%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 3%;
  will-change: transform;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .left_box {
    width: 100%;
    padding: 0;
  }
}
main section.shop .shop_inner .left_box h2 {
  display: flex;
  gap: 0 20px;
  max-width: 100%;
  margin-bottom: 40px !important;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .left_box h2 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 1200px) {
  main section.shop .shop_inner .left_box h2 .main_ttl {
    font-size: 7vw;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .left_box h2 .main_ttl {
    font-size: 55px;
  }
}
main section.shop .shop_inner .left_box h2 .sub_ttl {
  padding-top: 20px;
}
main section.shop .shop_inner .left_box .shop_box {
  margin-bottom: 110px;
  max-width: 740px;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .left_box .shop_box {
    margin: 0 auto 60px;
    max-width: 100%;
    width: 90%;
  }
}
main section.shop .shop_inner .left_box .shop_box .txt {
  max-width: 100%;
}
main section.shop .shop_inner .left_box .company_box {
  max-width: 740px;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .left_box .company_box {
    max-width: 100%;
    width: 90%;
    margin: 0;
  }
}
main section.shop .shop_inner .left_box .company_box .txt {
  max-width: 100%;
}
main section.shop .shop_inner .right_box {
  will-change: transform;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
  width: 50%;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .right_box {
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .right_box {
    flex-direction: column-reverse;
    margin: 0;
    min-width: 100%;
  }
}
main section.shop .shop_inner .right_box .recruit_img {
  will-change: transform;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  main section.shop .shop_inner .right_box .recruit_img {
    width: 70%;
  }
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .right_box .recruit_img {
    width: 50%;
  }
}
@media screen and (max-width: 400px) {
  main section.shop .shop_inner .right_box .recruit_img {
    width: 80%;
  }
}
main section.shop .shop_inner .right_box .text_box {
  background: var(--bc-beige);
  position: relative;
  padding: 120px 40px 0 0;
  bottom: 0;
  margin-right: -90px;
  position: relative;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .right_box .text_box {
    width: 60%;
    padding: 120px 5% 0 0;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .right_box .text_box {
    width: 100%;
    margin-right: 0px;
    padding: 20px 4%;
  }
}
main section.shop .shop_inner .right_box .text_box .obj01 {
  position: absolute;
  width: 200px;
  height: 50px;
  background: var(--clr-sky-blue);
  top: -40px;
  right: 35px;
  z-index: -1;
  z-index: -1;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .right_box .text_box .obj01 {
    right: 245px;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .right_box .text_box .obj01 {
    width: 200px;
    height: 80px;
    right: 0;
    left: -15%;
  }
}
main section.shop .shop_inner .right_box .text_box h2 {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0 20px;
  top: -8%;
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .right_box .text_box h2 {
    position: relative;
  }
}
@media screen and (max-width: 1200px) {
  main section.shop .shop_inner .right_box .text_box h2 .main_ttl {
    font-size: 7vw;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .right_box .text_box h2 .main_ttl {
    font-size: 55px;
  }
}
main section.shop .shop_inner .right_box .text_box h2 .sub_ttl {
  padding-top: 0px;
}
main section.shop .shop_inner .right_box .text_box .main_txt {
  font-size: 24px;
  font-weight: 500;
  margin: -20px 0 40px;
  line-height: 4rem;
}
@media screen and (max-width: 1210px) {
  main section.shop .shop_inner .right_box .text_box .main_txt {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .right_box .text_box .main_txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  main section.shop .shop_inner .right_box .text_box .main_txt {
    font-size: 20px;
    margin: -20px 0 20px;
    line-height: 3.5rem;
  }
}
main section.shop .shop_inner .right_box .text_box .txt {
  max-width: 330px;
}
@media screen and (max-width: 940px) {
  main section.shop .shop_inner .right_box .text_box .txt {
    max-width: 100%;
  }
}
main .scroll_down {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100dvh;
}
main .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.8) 100%);
}
main .scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: 2;
  width: 190px;
  color: #000;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: 0.2s;
}
main .scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40%;
  bottom: 5px;
  width: 100px;
  height: 1px;
  background: var(--bc-beige);
}
main .scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 40%;
  width: 100px;
  height: 1px;
  background: #000;
}
@media (hover) {
  main .scroll_down a:hover {
    opacity: 0.5;
  }
}
main #type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}

.slick-slider div {
  transition: none;
}

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