@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    line-height: 1;
    list-style: none;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: lighter;
    font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
a:hover {
  opacity: 0.7;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	zoom:1;	/* hasLayout in IE */
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font:inherit;
	font-size:100%;
	font-weight:normal;
	font-style:normal;
	vertical-align:baseline;
	background:transparent;
	-webkit-text-size-adjust: 100%;
	word-break:break-all;
}
img{
	font-size:0;
	line-height:0;
	vertical-align:bottom;
	height:auto;
	max-width:100%;
}
a{
  transition: 0.3s ease;
  opacity: 1;
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: #333;
}
a img{
	border:none;
	vertical-align:middle;
}
.inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
body {
  background: #fcfcfc;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 430px) {
  :root {
    --scale-rate: calc(100vw / 430);
  }
  .wrap {
    transform: scale(var(--scale-rate));
    transform-origin: top left;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* header */
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .box01{
  display: flex;
  gap: 40px;
  align-items: center;
}
header .box01 .img01{
  width: 190px;
  padding-left: 10px;
}
h1{
  width: calc(100% - 20px);
  position: relative;
  font-size: 12px;
  color: #999;
  top: 90px;
  left: 10px;
  height: 0;
  z-index: 100;
}
header #nav .box02{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
header .dropdown {
  position: relative;
}
header .button01 {
  display: block;
  width: 250px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #8e2e2e;
  color: #fff;
  cursor: pointer;
}
header .button01:hover + .box03 {
  transform: translateY(0);
}
header .box03 {
  position: absolute;
  width: 250px;
  height: 110px;
  background: #8e2e2e;
  z-index: -10;
  transform: translateY(-110px);
  transition: transform 0.3s ease;
}
header .box03 li{
  margin: 20px 0 20px 45px;
}
header .box03 li a{
  color: #fff;
}
header .box03:hover {
  transform: translateY(0);
}
.instagram {
  width: 24px;
  position: fixed;
  right: 40px;
  bottom: 90px;
  z-index: 100;
}
.shop {
  width: 24px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
}
@media screen and (max-width: 1200px) {
header #nav .box02 {
    position: relative;
    display: block;
    background: #fcfcfc;
    width: 320px;
    height: 100vh;
    top: -70px;
    padding: 100px;
    box-sizing: border-box;
}
header .button01 {
  display: none;
}
header .box03 {
  width: fit-content;
  position: static;
  background: transparent;
  transform: translateY(0);
}
header .box03 li{
  margin: 0;
}
header .box03 li a{
  color: #333;
}
header li{
  width: fit-content!important;
  margin: 0!important;
  line-height: 50px!important;
  text-align: right!important;
}
#nav-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  background: #8e2e2e;
  z-index: 1000;
}
#nav-btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: .5s;
}
#nav-btn span:nth-child(1) { top: calc(50% - 7px); }
#nav-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
#nav-btn span:nth-child(3) { top: calc(50% + 7px); }
#nav-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
}
#nav-btn.active span:nth-child(2) {
  opacity: 0;
}
#nav-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}
header #nav {
  position: fixed;
  top: 70px;
  right: -150px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 100;
}
header #nav-btn.active + #nav {
  pointer-events: auto;
  opacity: 1;
  right: 0;
}
}
@media screen and (max-width: 700px) {
  header .box01{
  display: block;
}
header .box01 .img01 {
    width: 140px;
}
h1{
  font-size: 10px;
  top: 70px;
}
.instagram {
  right: 20px;
  bottom: 70px;
}
.shop {
  right: 20px;
  bottom: 20px;
}
}
/* home */
/* cont01 */
.home .key {
  width: 100%;
  height: 100vh;
  position: relative;
}
.home .key .box01 {
  position: absolute;
  display: flex;
  flex-flow: row-reverse;
  top: 150px;
  left: 200px;
  gap: 20px;
}
.home .key .box01 .text01 { 
  position: relative;
  width: 34px;
  padding: 20px 5px; 
  background: transparent; 
  overflow: hidden; z-index: 50; 
}
.home .key .box01 .text01::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: #fff; 
  transform: scaleY(0); 
  transform-origin: top; 
  transition: transform 0.6s ease; 
  z-index: -1; 
  animation: bg-fill 2s ease forwards; 
}
.home .key .box01 .text02 { 
  position: relative; 
  width: 34px; 
  height: fit-content; 
  padding: 20px 5px; 
  background: transparent; 
  overflow: hidden; z-index: 50; 
}
.home .key .box01 .text02::before { 
  content: ""; position: absolute; 
  inset: 0; 
  background: #fff; 
  transform: scaleY(0); 
  transform-origin: top; 
  transition: transform 0.6s ease; 
  z-index: -1; 
  animation: bg-fill 2s ease forwards; 
  animation-delay: 0.4s;
} 
@keyframes bg-fill { 
  from { transform: scaleY(0); }
    to { transform: scaleY(1); } 
}
.home .key .img01 video{
  width: calc(100% - 110px);
  height: calc(100vh - 80px);
  margin-top: 80px;
  object-fit: cover;
  border-radius: 0 2px 2px 0 ;
}
@media screen and (max-width: 500px) {
  .home .key .img01 video{
    width: 100%;
    height: calc(100vh - 60px);
    margin-top: 60px;
   }
   .home .key .box01 {
    width: 100px;
    top: 120px;
    left: 0;
    right: 0;
    margin: auto;
}
}
/* cont01 */
.home .cont01 {
  padding: 150px 30px 330px;
  position: relative;
}
.home .cont01 .img01 {
  max-width: 1400px;
  margin: auto;
  object-fit: cover;
  border-radius: 2px;
  overflow: hidden;
}
.home .cont01 .text01 {
  position: absolute;
  width: 1000px;
  padding: 100px 300px 100px 100px;
  box-sizing: border-box;
  background: #fcfcfc;
  bottom: 120px;
  right: 0;
  letter-spacing: 0.1em;
  line-height: 32px;
  border-radius: 2px 0 0 2px;
}
.home .cont01 .text01::before {
  position: absolute;
  content: "";
  background: url(img/home_img03.png) center / contain no-repeat;
  bottom: 90px;
  right: 230px;
  width: 94px;
  height: 94px;
}
@media screen and (max-width: 900px) {
.home .cont01 {
  padding: 120px 30px;
}
.home .cont01 .text01 {
  position: static;
  padding: 40px 0 0;
  width: fit-content;
  margin: auto;
  bottom: 0;
  line-height: 1.5;
}
.home .cont01 .text01::before {
  right: 0;
  bottom: -30px;
}
.home .cont01 .img01 img {
  height: 300px;
  object-fit: cover;
  object-position: left;
}
}
@media screen and (max-width: 500px) {
.home .cont01 {
  padding: 100px 30px;
}
.home .cont01 .text01 {
  padding: 30px 0 0;
  font-size: 14px;
}
.home .cont01 .img01 img {
  height: 250px;
  object-position: -100px;
}
}
/* cont02 */
.home .cont02 {
  padding: 150px 0;
  background: #f0f0f0;
}
.home .cont02 h2 {
  position: absolute;
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  font-size: 12px;
  top: -200px;
  right: 100px;
}
.home .cont02 h2 span{
  display: block;
  font-size: 36px;
  background: #fcfcfc;
  margin-right: 10px;
  padding-bottom: 30px;
}
.home .cont02 .img01 {
  position: relative;
  top: 0;
  left: -300px;
  border-radius: 0 2px 2px 0;
  overflow: hidden;
  height: 580px;
}
.home .cont02 .img01  img {
  object-fit: cover;
  height: 100%;
}
.home .cont02 .text01 {
  position: absolute;
  width: 100px;
  height: 300px;
  background: #fcfcfc;
  writing-mode: vertical-rl;
  top: -50px;
  left: 360px;
  padding: 40px 24px 0 0;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.home .cont02 .text02 {
  position: absolute;
  width: 100px;
  height: 300px;
  background: #fcfcfc;
  writing-mode: vertical-rl;
  top: 50px;
  left: 150px;
  padding: 60px 24px;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.home .cont02 .box01 {
  width: 1100px;
  height: 330px;
  background: #fcfcfc;
  border-radius: 2px;
  padding: 80px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -190px;
  margin: auto;
  z-index: 50;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.home .cont02 .box01 .text03 {
  position: relative;
  font-size: 30px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  text-align: center;
  color: #8e2e2e;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-weight: bold;
}
.home .cont02 .box01 .text03::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.home .cont02 .box01 .text04 {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 32px;
}
@media screen and (max-width: 1100px) {
.home .cont02 .box01 {
  width: calc(100% - 40px);
  height: fit-content;
  padding: 50px 30px;
  bottom: -190px;
}
.home .cont02 .box01 .text03 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
}
@media screen and (max-width: 800px) {
  .home .cont02 .text01 {
  left: 180px;
}
.home .cont02 .text02 {
  left: 30px;
}
.home .cont02 .box01 .text04 {
  text-align: left;
}
.home .cont02 h2 {
  right: 30px;
}
.home .cont02 .img01 {
  left: -160px;
}
}
@media screen and (max-width: 450px) {
  .home .cont02 {
  padding: 80px 0 170px;
}
.home .cont02 .text01 {
  font-size: 14px;
  width: 90px;
  height: 250px;
  padding: 30px 24px;
  left: 140px;
}
.home .cont02 .text02 {
  font-size: 14px;
  width: 90px;
  height: 200px;
  padding: 30px 24px;
}
.home .cont02 .box01 .text04 {
  font-size: 14px;
  line-height: 1.5;
}
.home .cont02 h2 {
  top: -100px;
}
.home .cont02 h2 span {
  font-size: 24px;
}
.home .cont02 .img01 {
  height: 450px;
  left: -130px;
}
.home .cont02 .box01 .text03 {
  font-size: 18px;
}
}
/* cont03 */
.home .cont03 {
  position: relative;
  height: 600px;
  padding: 150px 0;
  background: url(img/home_img08.png) center / cover no-repeat;
}
.home .cont03 .inner{
  display: flex;
  justify-content: space-between;
}
.home .cont03 h2 {
  padding-left: 30px;
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  font-size: 12px;
  color: #fff;
}
.home .cont03 h2 span{
  display: block;
  font-size: 36px;
  margin-right: 10px;
  margin-top: -10px;
  padding-bottom: 30px;
  color: #fff;
}
.home .cont03 .box01.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
}
.home .cont03 .box01 {
  width: 950px;
  height: 600px;
  box-sizing: border-box;
  padding: 70px 50px;
  position: absolute;
  right: 0;
  background: #fcfcfc;
  filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition:1s ease;
}
.home .cont03 .box01::before {
  position: absolute;
  content: "";
  width: 1250px;
  height: 600px;
  top: 0;
  left: 0;
  background: #fcfcfc;
  border-radius: 2px 0 0 2px;
}
.home .cont03 .box01 h3 {
  position: relative;
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  font-size: 48px;
  padding-top: 60px;
}
.home .cont03 .box01 h3::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 52px;
  background: url(img/home_text03.png) left / 45px no-repeat;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home .cont03 .box01:nth-of-type(2) h3::before {
  background: url(img/home_text04.png) center / contain no-repeat;
}
.home .cont03 .box01:nth-of-type(3) h3::before {
  background: url(img/home_text05.png) center / contain no-repeat;
}
.home .cont03 .box02 {
  width: 700px;
  position: absolute;
  top: 120px;
  right: 70px;
}
.home .cont03 .box02 {
  width: 700px;
  position: absolute;
  top: 70px;
  right: 70px;
}
.home .cont03 .box02 .text01{
  letter-spacing: 0.05em;
  padding-top: 10px;
}
@media screen and (max-width: 1100px) {
  .home .cont03 {
  height: 600px;
  padding: 120px 0;
}
.home .cont03 .box01 {
  width: calc(100% - 160px);
  height: 530px;
  padding: 50px 30px;
}
.home .cont03 .box01::before {
  height: fit-content;
}
.home .cont03 .box02 {
  width: calc(100% - 140px);
  top: 50px;
  right: 30px;
}
.home .cont03 .box01 h3 {
  font-size: 34px;
}
}
@media screen and (max-width: 500px) {
.home .cont03 {
  height: 400px;
  padding: 80px 0;
}
.home .cont03 h2 {
  writing-mode: horizontal-tb;
  padding-left: 10px;
  font-size: 10px;
}
.home .cont03 h2 span{
  font-size: 24px;
  margin:0;
  padding-bottom: 30px;
}
.home .cont03 .box01 {
  width: 100%;
  height: 340px;
  padding: 30px;
  top: 70px;
}
.home .cont03 .box02 {
  width: calc(100% - 120px);
  top: 30px;
}
.home .cont03 .box02 .text01{
  font-size: 14px;
}
.home .cont03 .box01 h3 {
  font-size: 24px;
  padding-top: 40px;
}
.home .cont03 .box01 h3::before {
  width: 30px;
  height: 30px;
  background: url(img/home_text03.png) left / 30px no-repeat;
}
}
/* cont04 */
.home .cont04 {
  padding: 150px 0;
  background: #e5e5e5;
}
.home .cont04 .inner{
  display: flex;
  flex-flow: row-reverse;
  gap: 60px;
}
.home .cont04 .box01{
  display: flex;
  flex-flow: row-reverse;
  gap: 60px;
}
.home .cont04 h2 {
  font-size: 12px;
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  color: #8e2e2e;
  padding-top: 80px;
  padding-right: 30px;
  background: url(img/home_img03.png) top / contain no-repeat;
  letter-spacing: 0.1em;
}
.home .cont04 h2 span{
  color: #8e2e2e;
  display: block;
  font-size: 36px;
}
.home .cont04 .text01{
  writing-mode: vertical-rl;
  line-height: 32px;
  letter-spacing: 0.1em;
}
.home .cont04 .button01 a {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  width: 60px;
  height: 250px;
  padding-top: 30px;
  box-sizing: border-box;
  writing-mode: vertical-rl;
  line-height: 60px;
  background: #fcfcfc url(img/home_icon03.png) bottom 30px left 28px / 5px no-repeat;
  border-radius: 2px;
  position: absolute;
  bottom: -60px;
  right: 410px;
  position: absolute;
  overflow: hidden;
}
.home .cont04 .button01 a::before,
.home .cont04 .button01 a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home .cont04 .button01 a::before {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.home .cont04 .button01 a::after {
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease 0.4s;
}
.home .cont04 .button01 a:hover::before {
  transform: scaleX(1);
}
.home .cont04 .button01 a:hover::after {
  transform: scaleY(1);
}
.home .cont04 .button01 a:hover {
  background: #fcfcfc url(img/home_icon03.png) bottom 20px left 28px / 5px no-repeat;
  opacity: 1;
}
.home .cont04 .img01 {
  border-radius: 2px;
  overflow: hidden;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 1100px) {
.home .cont04 .inner{
  display: block;
}
.home .cont04 .box01{
  justify-content: center;
  padding-bottom: 30px;
}
.home .cont04 .img01 {
  position: static;
  width: fit-content;
  margin: auto;
}
.home .cont04 .button01 a {
  position: static;
  bottom: auto;
  right: auto;
  margin-top: 180px;
}
}
@media screen and (max-width: 600px) {
.home .cont04 {
  padding: 80px 0;
}
.home .cont04 h2 {
  padding-top: 30px;
}
.home .cont04 h2 span{
  font-size: 24px;
}
.home .cont04 .text01{
  font-size: 14px;
  line-height: 1.5;
}
.home .cont04 .box01{
  gap: 20px;
}
.home .cont04 .button01 a {
  border: #666 1px solid;
}
}
/* cont05 */
.home .cont05 {
  padding: 150px 0;
}
.home .cont05 h2 {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  color: #666;
  margin-bottom: 50px;
  padding-bottom: 30px;
  letter-spacing: 0.1em;
}
.home .cont05 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.home .cont05 h2 span{
  display: block;
  font-size: 36px;
}
.home .cont05 .box01 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}
.home .cont05 .box02 {
  position: relative;
  width: 330px;
  height: 400px;
}
.home .cont05 .box02 {
  position: relative;
  width: 330px;
  height: 400px;
}
.home .cont05 .box02:hover img {
  filter: blur(2px);
}
.home .cont05 .box02 h3 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  padding-top: 340px;
}
.home .cont05 .box02 .price {
  color: #999;
}
.home .cont05 .box02 .img01 {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  overflow: hidden;
}
.home .cont05 .button01 a {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  width: 330px;
  height: 60px;
  line-height: 60px;
  background: #fff url(img/home_icon04.png) bottom 30px right 30px / 40px no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin: 100px auto 150px;
  left: 0;
  right: 0;
}
.home .cont05 .button01 a::before,
.home .cont05 .button01 a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home .cont05 .button01 a::before {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.home .cont05 .button01 a::after {
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease 0.4s;
}
.home .cont05 .button01 a:hover::before {
  transform: scaleX(1);
}
.home .cont05 .button01 a:hover::after {
  transform: scaleY(1);
}
.home .cont05 .button01 a:hover {
  background: #fcfcfc url(img/home_icon04.png) bottom 30px right 20px / 40px no-repeat;
  opacity: 1;
}
.home .cont05 .img02 {
  width: 450px;
  margin: 0 2px;
  border-radius: 2px;
  overflow: hidden;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
@media screen and (max-width: 600px) {
.home .cont05 {
  padding: 80px 0;
}
.home .cont05 h2 {
  font-size: 10px;
  color: #666;
  margin-bottom: 28px;
  padding-bottom: 20px;
}
.home .cont05 h2 span{
  font-size: 24px;
}
.home .cont05 .box01 {
  gap: 30px;
}
.home .cont05 .box02 h3 {
  font-size: 14px;
}
.home .cont05 .box02 .price {
  font-size: 14px;
}
.home .cont05 .button01 a {
  margin: 40px auto 80px;
  border: #666 1px solid;
}
.home .cont05 .img02 {
  width: 300px;
}
}
/* cont06 */
.home .cont06 {
  padding: 100px 0 0;
}
.home .cont06 h2 {
  position: relative;
  font-size: 12px;
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  color: #666;
  padding-top: 80px;
  margin-left: 50px;
  background: url(img/home_img03.png) top / contain no-repeat;
  letter-spacing: 0.1em;
}
.home .cont06 h2::before {
  position: absolute;
  content: "";
  width: 1250px;
  height: 800px;
  background: url(img/home_img15.png) center / contain no-repeat;
  top: -190px;
  left: 150px;
  border-radius: 2px;
  overflow: hidden;
}
.home .cont06 h2::after {
  position: absolute;
  content: "";
  width: 550px;
  height: 420px;
  background: url(img/home_img16.png) center / contain no-repeat;
  bottom: -570px;
  left: -50px;
  border-radius: 2px;
  overflow: hidden;
}
.home .cont06 h2 span{
  display: block;
  font-size: 36px;
}
.home .cont06 .text01 {
    margin: 261px 0 0 auto;
    padding: 60px 0 60px 60px;
    width: 550px;
    background: #fcfcfc;
}
.home .cont06 .box01 {
  padding: 120px 30px;
  background: #e5e5e5;
}
.home .cont06 .box01 .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.home .cont06 .box01 .inner th {
  text-align: left;
  color: #666;
  padding-right: 40px;
  padding-bottom: 10px;
}
.home .cont06 .box01 .inner td {
  padding-bottom: 10px;
}
@media screen and (max-width: 1100px) {
.home .cont06 h2::before {
  width: 900px;
}
.home .cont06 h2::after {
    width: 400px;
    height: 390px;
    bottom: -500px;
}
.home .cont06 .text01 {
    margin: 151px 0 0 auto;
}
}
@media screen and (max-width: 800px) {
.home .cont06 .box01 .inner {
  display: block;
  width: fit-content;
  margin: auto;
}
.home .cont06 .box01 .inner iframe{
  width: 100%;
  padding-top: 20px;
}
}
@media screen and (max-width: 600px) {
.home .cont06 {
  padding: 0;
}
.home .cont06 h2 {
  writing-mode: horizontal-tb;
  padding-top: 0;
  padding-left: 30px;
  margin-left: 20px;
  background: url(img/home_img03.png) left bottom / 70px no-repeat;
}
.home .cont06 h2 span {
  font-size: 24px;
}
.home .cont06 h2::before {
  width: 100%;
  height: 250px;
  left: auto;
  right: 0;
  top: 90px;
  background: url(img/home_img15.png) center / cover no-repeat;
}
.home .cont06 h2::after {
  display: none;
}
.home .cont06 .text01 {
  margin: 260px 0 0;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  font-size: 14px;
}
.home .cont06 .box01 .inner th {
    font-size: 14px;
    width: 60px;
    padding-right: 10px;
}
.home .cont06 .box01 .inner td {
  font-size: 14px;
}
.home .cont06 .box01 {
  padding: 50px 30px;
}
}
/* contact */
.contact .cont01 {
  padding: 140px 0;
}
.contact .cont01 h2 {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  color: #666;
  margin-bottom: 50px;
  padding-bottom: 30px;
  letter-spacing: 0.1em;
}
.contact .cont01 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.contact .cont01 h2 span{
  display: block;
  font-size: 36px;
}
.contact .cont01 .title01 {
  width: 360px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.contact .cont01 .title01 .cls-1 {
  fill:  transparent;
  stroke: #8e2e2e;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.contact .cont01 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #8e2e2e;
}
.contact .cont01 .title01 .cls-2 {
  fill: transparent;
  stroke: #333;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.contact .cont01 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.contact .cont01 .text01 {
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1;
  text-align: center;
}
.contact .cont01 table {
  width: fit-content;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}
.contact .cont01 th {
  text-align: left;
  padding: 15px 0;
  width: 150px;
  position: relative;
  font-weight: bold;
  vertical-align: middle;
  height: 50px;
}
.contact .cont01 th span {
  background: #8e2e2e;
  color: #FFF;
  position: absolute;
  right: 10px;
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.contact .cont01 td {
  height: 50px;
  padding: 15px 0;
}
.contact .cont01 table input {
  border: none;
  height: 50px;
  width: 100%;
  max-width: 750px;
  padding: 0 0 0 30px;
  box-sizing: border-box;
  border-radius: 5px;
}
.contact .cont01 table input:focus {
  outline: none;
  border: 2px solid #8e2e2e;
}
.contact .cont01 table input::placeholder {
  color: #bbbbbb;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.contact .cont01 table textarea {
  width: 100%!important;
  max-width: 750px!important;
  height: 160px!important;
  border: none;
  border-radius: 5px;
  padding: 20px 30px 20px 30px;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.contact .cont01 table textarea:focus {
  outline: none;
  border: 2px solid #8e2e2e;
}
.contact .cont01 .button input[type="submit"] {
  display: block;
  position: relative;
  margin: 60px auto 0;
  padding-right: 10px;
  box-sizing: border-box;
  width: 300px;
  height: 60px;
  color: #333;
  background: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  border-radius: 2px;
  transition: 0.3s ease;
  border: #666 1px solid;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;

}
.contact .cont01 .button input[type="submit"]:hover {
  color: #fff;
  background: #333;
  border: #333 1px solid;
}
@media screen and (max-width: 900px) {
  .contact .cont01 {
    padding: 150px 20px 80px;
  }
}
@media screen and (max-width: 440px) {
.contact .cont01 h2 span{
  font-size: 24px;
}
  .contact .cont01 .title01 {
    width: 240px;
    height: 60px;
  }
  .contact .cont01 .text01 {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .contact .cont01 th {
    display: block;
    width: 100%;
    padding: 30px 0 10px;
    height: 30px;
  }
  .contact .cont01 td {
    display: block;
    padding: 0;
  }
  .contact .cont01 .button input[type="submit"] {
    margin: 160px auto 0;
  }
}
/* company */
.company .key {
  margin-top: 80px;
  position: relative;
}
.company .key .img01{
  width: 100%;
  height: 300px;
}
.company .key .img01 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company .key .text01{
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
}
.company .cont01{
  padding: 150px 30px;
}
.company .cont01 .box01{
  width: 600px;
  margin: auto 0 auto auto;
  position: relative;
}
.company .cont01 h2{
  font-size: 36px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
  background: url(img/home_img03.png) top left 130px / 60px no-repeat;
}
.company .cont01 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  margin: auto;
  bottom: 0;
}
.company .cont01 h3{
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  font-weight: bold;
}
.company .cont01 .img01{
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 700px;
  width: 800px;
  height: fit-content;
  border-radius: 0 2px 2px 0;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .company .key {
    margin-top: 60px;
  }
  .company .key .img01{
    height: 150px;
  }
  .company .key .text01{
    font-size: 18px;
  }
  .company .cont01 h2{
    font-size: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: url(img/home_img03.png) top left 120px / 45px no-repeat;
  }
  .company .cont01 .box01{
    margin: 0 auto;
    width: fit-content;
    max-width: 600px;
  }
  .company .cont01 .img01{
    position: static;
    width: 100%;
    height: 400px;
  }
  .company .cont01 .img01 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .company .cont01 .text01{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .company .cont01 {
    padding: 80px 20px;
  }
  .company .cont01 h2{
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    background: url(img/home_img03.png) top left 90px / 35px no-repeat;
  }
  .company .cont01 h3{
    font-size: 18px;
    margin-bottom: 30px;
  }
  .company .cont01 .img01{
    position: static;
    width: 100%;
    height: 300px;
  }
  .company .cont01 .text01{
    font-size: 14px;
  }
}
.company .cont02 {
  padding: 150px 30px;
  background: #e5e5e5;
}
.company .cont02 h2 {
  font-size: 36px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
  text-align: center;
}
.company .cont02 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #ccc;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
}
.company .cont02 table{
  width: fit-content;
  margin: 0 auto;
  border-left: #8e2e2e 1px solid;
}
.company .cont02 th{
  width: 70px;
  color: #8e2e2e;
  text-align: left;
  font-weight: bold;
  padding: 0 80px 40px 80px;
  line-height: 1;
}
.company .cont02 td{
  padding-bottom: 40px;
}
.company .cont02 .span01{
  color: #666;
}
.company .cont02 .span02{
 font-size: 22px;
 font-weight: bold;
}
@media screen and (max-width: 800px) {
.company .cont02 th{
  padding: 0 30px 30px 30px;
}
}
@media screen and (max-width: 500px) {
.company .cont02 {
  padding: 80px 20px;
}
.company .cont02 h2{
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.company .cont02 th{
  font-size: 14px;
  display: block;
  padding: 0 0 10px 20px;
}
.company .cont02 td {
    font-size: 14px;
    display: block;
    padding: 0 0 40px 20px;
}
.company .cont02 .span02{
 font-size: 16px;
}
}
/* work */
.work .key {
  margin-top: 80px;
  position: relative;
}
.work .key .img01{
  width: 100%;
  height: 300px;
}
.work .key .img01 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work .key .text01{
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
}
.work .cont01 {
  padding: 150px 30px;
  background: #e5e5e5;
}
.work .cont01 .inner {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
.work .cont01 .box01 {
  width: 100%;
  height: fit-content;
  background: #fcfcfc;
  padding: 80px 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  border-radius: 2px;
  transition: box-shadow 0.3s ease;
}
.work .cont01 .box01:hover {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.work .cont01 .box01 .box02 {
  width: calc(100% - 530px);
}
.work .cont01 .box01 h2{
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  padding-left: 100px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  background: url(img/work_text01.png) top 6px left / 60px no-repeat;
  position: relative;
}
.work .cont01 .box01:nth-of-type(2) h2{
  background: url(img/work_text02.png) top 6px left / 80px no-repeat;
}
.work .cont01 .box01:nth-of-type(3) h2{
  background: url(img/work_text03.png) top 6px left / 80px no-repeat;
}
.work .cont01 .box01 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  margin: auto;
  bottom: 0;
}
.work .cont01 .box01 .img01 {
  width: 530px;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .work .key {
    margin-top: 60px;
  }
  .work .key .img01{
    height: 150px;
  }
  .work .key .text01{
    font-size: 18px;
  }
  .work .cont01 .box01 {
    padding: 80px 60px;
    display: block;
  }
  .work .cont01 .box01 .box02 {
    width: 100%;
    margin: 0 auto;
  }
  .work .cont01 .box01 .img01 {
    width: 100%;
    height: 300px;
    margin: 30px auto 0;
  }
  .work .cont01 .box01 .img01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .work .cont01 {
    padding: 80px 20px;
  }
  .work .cont01 .inner {
    gap: 20px;
  }
  .work .cont01 .box01 {
    width: 100%;
    padding: 30px;
  }
  .work .cont01 .box01 h2{
    font-size: 18px;
    padding-left: 0;
    padding-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    background: url(img/work_text01.png) top left / 50px no-repeat;
  }
  .work .cont01 .box01:nth-of-type(2) h2{
    background: url(img/work_text02.png) top left / 60px no-repeat;
  }
  .work .cont01 .box01:nth-of-type(3) h2{
    background: url(img/work_text03.png) top left / 60px no-repeat;
  }
  .work .cont01 .box01 .text01 {
    font-size: 14px;
  }
  .work .cont01 .box01 .img01 {
    height: 200px;
  }
}
/* concept */
.concept .key {
  margin-top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
}
.concept .key .box01 {
  position: absolute;
  display: flex;
  flex-flow: row-reverse;
  top: 120px;
  right: 300px;
  gap: 20px;
}
.concept .key .box01 .text01 { 
  position: relative;
  font-size: 32px;
  width: 40px;
  padding: 20px 0;
  box-sizing: border-box;
  background: transparent;
  overflow: hidden;
  z-index: 50;
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  line-height: 40px;
}
.concept .key .box01 .text01::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: #fff; 
  transform: scaleY(0); 
  transform-origin: top; 
  transition: transform 0.6s ease; 
  z-index: -1; 
  animation: bg-fill 2s ease forwards; 
}
.concept .key .box01 .text02 { 
  position: relative; 
  width: 34px; 
  height: fit-content; 
  padding: 20px 5px; 
  writing-mode: vertical-rl;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  color: #fff;
  line-height: 32px;
}
@keyframes bg-fill { 
  from { transform: scaleY(0); }
    to { transform: scaleY(1); } 
}
.concept .key .img01 {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}
.concept .key img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
.concept .key {
  margin-top: 60px;
  height: calc(100vh - 60px);
}
.concept .key .img01 {
  height: calc(100vh - 60px);
}
.concept .key .box01 {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 230px;
  height: fit-content;
}
}
@media screen and (max-width: 600px) {
.concept .key .box01 .text01 { 
  font-size: 24px;
  width: 40px;
  padding: 20px 0;
  line-height: 40px;
}
.concept .key .box01 .text02 { 
  font-size: 14px;
}
}
.concept .cont01 {
  padding: 150px 30px;
}
.concept .cont01 .box01{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.concept .cont01 .box01:nth-of-type(1){
  padding-bottom: 20px;
}
.concept .cont01 .box01 h2{
  font-size: 36px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}
.concept .cont01 .box01 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  margin: auto;
  bottom: 0;
}
.concept .cont01 .box01 .img01{
  width: 550px;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
.concept .cont01 .box01{
  display: block;
  width: fit-content;
  margin: auto;
}
.concept .cont01 .box01:nth-of-type(1){
  padding-bottom: 60px;
}
.concept .cont01 .box01 h2{
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.concept .cont01 .box01 .text01{
  padding-bottom: 30px;
}
.concept .cont01 .box01 h2{
  margin-bottom: 30px;
  padding-bottom: 30px;
}
}
@media screen and (max-width: 600px) {
.concept .cont01 {
  padding: 80px 20px;
}
.concept .cont01 .box01{
  width: 100%;
}
.concept .cont01 .box01 .img01{
  width: 100%;
}
.concept .cont01 .box01 h2{
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.concept .cont01 .box01 h2::before{
  width: 40px;
}
.concept .cont01 .box01 .text01{
  font-size: 14px;
  padding-bottom: 20px;
}
}
.concept .cont02{
  padding: 150px 0;
  background: #e5e5e5;
}
.concept .cont02 .box01{
padding-bottom: 120px;
}
.concept .cont02 .box01 h2{
  font-size: 36px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
  text-align: center;
}
.concept .cont02 .box01 h2::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #ccc;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
}
.concept .cont02 .box01 .text01 {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;  
  font-family: "游明朝", "Yu Mincho", "YuMincho","ヒラギノ明朝 ProN", "Hiragino Mincho ProN","MS P明朝", "MS Mincho", serif;
}
.concept .cont02 .box01 .text01::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.6em;
  background: rgb(142, 46, 46, 0.4);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.concept .cont02 .box01 .text01.animate::after {
  animation: markerDraw 1s ease-out forwards;
}
.concept .cont02 .box01 .text02 {
  text-align: center;
}
.concept .cont02 .box02 {
  width: fit-content;
  height: fit-content;
  padding: 100px;
  box-sizing: border-box;
  background: #fcfcfc;
  margin: 0 auto 120px;
  border-radius: 2px;
}
.concept .cont02 .box02 h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 40px;
  padding-bottom: 40px;
  position: relative;
  text-align: center;
}
.concept .cont02 .box02 h3::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.concept .cont02 .box02 .text01{
  text-align: center;
  padding-bottom: 40px;
}
.concept .cont02 .box02 ul {
  padding-bottom: 30px;
}
.concept .cont02 .box02 li {
  line-height: 60px;
  height: 60px;
  background: #8e2e2e;
  color: #fff;
  margin-bottom: 10px;
  padding: 0 60px;
  box-sizing: border-box;
  border-radius: 2px;
  border: #8e2e2e 1px solid;
}
.concept .cont02 .box02 li:hover {
  background: #fcfcfc;
  color: #8e2e2e;
  transition: 0.3s ease;
}
.concept .cont02 .box02 li span {
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  padding-right: 10px;
}
.concept .cont02 .box02 li:hover span {
  color: #8e2e2e;
  transition: 0.6s ease;
}
.concept .cont02 .box02 .text02{
  text-align: center;
}
@keyframes markerDraw {
  to {
    transform: scaleX(1);
  }
}
.concept .cont02 .box03 {
  padding: 120px 0;
  margin-bottom: 120px;
  background: url(img/concept_img04.png) center / cover no-repeat;
}
.concept .cont02 .box03 .block01 {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 50%;
}
.concept .cont02 .box03 h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
  color: #fff;
}
.concept .cont02 .box03 h3::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #e5e5e5;
  left: 0;
  margin: auto;
  bottom: 0;
}
.concept .cont02 .box03 .text01{
  color: #fff;
}
.concept .cont02 .box04 h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
  text-align: center;
}
.concept .cont02 .box04 h3::before{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #999;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.concept .cont02 .box04 .text01{
  text-align: center;
  margin-bottom: 40px;
}
.concept .cont02 .box04 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.concept .cont02 .box04 ul li {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #8e2e2e;
  color: #fff;
  line-height: 220px;
  border: #8e2e2e 1px solid;
  box-sizing: border-box;
  text-align: center;
  transition: 0.6s ease;
  font-size: 18px;
  font-weight: bold;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS Mincho", serif;
}
.concept .cont02 .box04 li:hover {
  background: #fcfcfc;
  color: #8e2e2e;
}
.concept .cont02 .box04 .text02{
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
.concept .cont02{
  padding: 120px 0;
}
.concept .cont02 .box01{
padding-bottom: 80px;
}
.concept .cont02 .box01 h2{
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.concept .cont02 .box02 {
  padding: 60px;
  margin: 0 auto 80px;
}
.concept .cont02 .box02 h3 {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.concept .cont02 .box02 li {
    line-height: 1.5;
    height: fit-content;
    margin-bottom: 10px;
    padding: 20px 30px 20px 70px;
}
.concept .cont02 .box02 li span {
  line-height: 1;
  margin-left: -43px;
}
.concept .cont02 .box03 {
  margin-bottom: 80px;
  background: url(img/concept_img04.png) left / cover no-repeat;
}
.concept .cont02 .box03 .block01 {
  width: fit-content;
  padding-left: 0;
}
.concept .cont02 .box03 h3 {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.concept .cont02 .box04 h3 {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.concept .cont02 .box04 ul {
  width: 460px;
  margin: 0 auto;
}
}
@media screen and (max-width: 600px) {
.concept .cont02{
  padding: 80px 0;
}
.concept .cont02 .box01{
padding-bottom: 60px;
}
.concept .cont02 .box01 h2{
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.concept .cont02 .box01 .text01 {
  margin: 0 auto 30px;
  font-size: 18px;
}
.concept .cont02 .box01 .text02 {
  font-size: 14px;
  padding: 0 20px;
}
.concept .cont02 .box02 {
  padding: 50px 30px;
  margin-bottom: 0;
}
.concept .cont02 .box02 h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.concept .cont02 .box02 .text01 {
  font-size: 14px;
}
.concept .cont02 .box02 li {
    font-size: 14px;
}
.concept .cont02 .box02 .text02 {
  font-size: 14px;
}
.concept .cont02 .box03 {
  padding: 60px 20px;
  background: url(img/concept_img04.png) left -120px top / cover no-repeat;
}
.concept .cont02 .box03 h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.concept .cont02 .box03 .text01 {
  font-size: 14px;
}
.concept .cont02 .box04 h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.concept .cont02 .box04 .text01 {
  font-size: 14px;
  padding: 0 20px;
}
.concept .cont02 .box04 .text02 {
  font-size: 14px;
  padding: 0 20px;
}
.concept .cont02 .box04 ul {
  width: 100%;
}
.concept .cont02 .box04 ul li {
  width: 160px;
  height: 160px;
  line-height: 160px;
  font-size: 14px;
}
}
.concept .cont03{
  padding: 150px 30px;
}
.concept .cont03 .inner{
  display: flex;
  gap: 90px;
  align-items: center;
}
.concept .cont03 .img01{
  width: 500px;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
.concept .cont03 .inner{
  display: block;
  width: fit-content;
  margin: auto;
}
.concept .cont03 .img01{
  width: 100%;
  padding-bottom: 40px;
}
}
@media screen and (max-width: 600px) {
.concept .cont03 {
  padding: 80px 20px;
}
.concept .cont03 .img01{
  padding-bottom: 30px;
}
.concept .cont03 .text01{
  font-size: 14px;
}
}
footer {
  padding: 150px 30px;
  background: url(img/header_img01.png) center / cover no-repeat;
}
footer .inner{
  display: flex;
  align-items: end;
  gap: 100px;
}
footer p {
  color: #fff;
}
footer .box01 .img01 a {
  display: block;
  width: 180px;
  margin-bottom: 40px;
}
footer .box01 .address {
  margin-bottom: 40px;
}
footer .box02 {
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .box02 p a {
  display: block;
  width: 25px;
}
footer .text01 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
footer .box03 ul li a {
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 500px) {
  footer .box01 .img01 a {
  width: 150px;
}
  footer {
  padding: 80px 30px;
}
  footer .inner{
  display: block;
  }
  footer .box01 {
  margin-bottom: 40px;
}
}

/* アニメーション */
.mv01 {
  opacity: 0;
  transform: translateY(50px);
}

.mv01.animate {
  animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
/* Swiper */
@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
