@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;
}
@media screen and (max-width: 440px) {
  * {
    font-size: 14px;
}
}
a {
  transition: 0.3s ease;
  opacity: 1;
}
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{
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: #333;
}
a img{
	border:none;
	vertical-align:middle;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}
body {
  background: #f0f0f0;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 430px) {
  :root {
    --scale-rate: calc(100vw / 430);
  }
  .wrap {
    transform: scale(var(--scale-rate));
    transform-origin: top left;
  }
}
/* header */
header {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 100;
}
header h1 {
  position: relative;
  height: 0;
  top: 170px;
  left: 10px;
  font-size: 12px;
  color: #666;
  z-index: 50;
}
header .box01 {
  display: flex;
  justify-content: space-between;
}
header .box01 .title01 {
  display: block;
  margin: 10px 0 0 10px;
  width: 600px;
}
header .box01 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.5s linear,
              fill 1s ease 1.5s;
}
header .box01 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
header .box01 .title01 .cls-2 {
  fill:  transparent;
  stroke: #333;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.5s linear,
              fill 1s ease 1.5s;
}
header .box01 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
header.active01{
  position: fixed;
  top: -700px;
  transition: all 0.3s;
}
header.active01 .box01 .title01{
  width: 200px;
}
header.active02{
  top: 0;
}
header.active01 h1 {
  display: none;
}
#nav-btn {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
#nav-btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
  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;
}
header #nav ul li {
    text-align: right;
    margin: 30px;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  header h1 {
    top: 100px;
  }
  header .box01 .title01{
    width: 350px;
  }
  header.active01 .title01{
    width: 200px;
  }
  header #nav-btn {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 430px) {
  header h1 {
    top: 60px;
    font-size: 10px;
  }
  header .box01 .title01{
    width: 200px;
  }
}
/* home */
/* point */
.home .point_box {
  opacity: 0;
  position: absolute;
  padding-top: 50px;
  box-sizing: border-box;
  width: 200px;
  height: 200px;
  background: #fff;
  color: #ff812d;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  z-index: 200;
  pointer-events: none;
  transition: 0.3s ease;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home .point_box.active {
  opacity: 1;
  pointer-events: auto;
}
.home .point_box span {
  display: block;
  padding-top: 10px;
  font-size: 14px;
  line-height: 2;
  color: #ff812d;
}
.home .point_box:hover {
  background: #ff812d;
  color: #fff;
}
.home .point_box:hover span {
  color: #fff;
}
/* key */
.home .key {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #d1d4c9 50%, #d1d4c9 100%);
}
.home .key .inner {
  position: relative;
}
.home .key .inner::before {
  position: absolute;
  content: "";
  background: url(img/home_img01.svg) no-repeat top / contain;
  width: 21px;
  height: 150px;
  bottom: -800px;
  left: 20px;
}
.home .key .img01 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top:0;
  right: 0;
    transition: 1s ease;
}
.home .key .img01.active {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  overflow: hidden;
  top: 80px;
  right: 0;
}
.home .key .img01 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .key .text01 {
  position: absolute;
  width: 110px;
  height: 110px;
  padding-top: 110px;
  box-sizing: border-box;
  overflow: hidden;
  top: 345px;
  left: 190px;
  background: url(img/home_text05.svg) no-repeat top / contain;
}
.home .key .button01 {
  position: fixed;
  bottom: -5px;
  right: -5px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-flow: column;
  width: 250px;
  height: 250px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  cursor:pointer;
  z-index: 100;
  border-radius: 50%;
}
.home .key .button01::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: #ff812d;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  z-index: -10;
  transition: 0.2s ease;
}
.home .key .button01 span {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.home .key .button01:hover::before,.home .key .button01.active::before {
  background: #fff;
  width: 250px;
  height: 250px;
}
.home .key .button01:hover,.home .key .button01.active {
  color: #ff812d;
}
.home .key .button01:hover span,.home .key .button01.active span {
  color: #ff812d;
}
.home #point_overlay {
  transition: 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.home #point_overlay.active {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255, 0.5);
  z-index: 80;
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .home .key {
    height: 100vh;
    min-height: 700px;
  }
  .home .key .img01.active {
    width: 600px;
    height: 600px;
    right: -200px;
  }
  .home .key .text01 {
    top: 540px;
    left: 100px;
  }
  .home .key .inner::before {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .home .key {
    height: 100vh;
    min-height: 680px;
  }
  .home .key .img01.active {
    width: 450px;
    height: 450px;
    top: 90px;
    right: -100px;
  }
  .home .key .text01 {
    width: 90px;
    top: 540px;
    left: 30px;
  }
  .home .key .button01 {
    bottom: 5px;
    right: 5px;
    width: 120px;
    height: 120px;
    font-size: 14px;
  }
  .home .key .button01::before {
    width: 120px;
    height: 120px;
  }
  .home .key .button01 span {
    display: none;
  }
  .home .key .button01:hover::before {
    width: 120px;
    height: 120px;
  }
  .home .key .button01.active::before {
    width: 120px;
    height: 120px;
  }
}
/* cont01 */
.home .cont01 {
  position: relative;
  padding: 100px 0 140px;
  background: url(img/home_bk01.svg)bottom / 100px;
}
.home .cont01::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  height: 100%;
  border-radius: 0 0 400px 0;
  background: #d1d4c9;
}
.home .cont01 .title01 {
  width: 300px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.home .cont01 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.home .cont01 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.home .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;
}
.home .cont01 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.home .cont01 h2 {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.home .cont01 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.home .cont01 .box01 {
  display: flex  ;
  flex-flow: row-reverse;
  justify-content: left;
  align-items: center;
  gap: 60px;
}
.home .cont01 .box01 {
  display: flex  ;
  flex-flow: row-reverse;
  justify-content: left;
  align-items: center;
  gap: 60px;
}
.home .cont01 .box02 {
  width: calc(100% - 500px);
}
.home .cont01 .box01 h3 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: #999 1px solid;
}
.home .cont01 .box01 h3::before {
  position: absolute;
  content: "Ryota Horie";
  color: #999;
  font-size: 14px;
  font-weight: normal;
  bottom: 30px;
  left: 100px;
  letter-spacing: 0.1rem;
}
.home .cont01 .box01 .text01 {
  line-height: 2;
  margin-bottom: 60px;
}
.home .cont01 .box01 .button01 {
  position: relative;
  width: fit-content;
}
.home .cont01 .box01 .button01 a {
  display: block;
  position: relative;
  padding-right: 10px;
  box-sizing: border-box;
  width: 300px;
  height: 50px;
  color: #fff;
  background: #ff812d;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  border-radius: 25px;
}
.home .cont01 .box01 .button01 a::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  border-radius: 3px;
}
.home .cont01 .box01 .button01 a:hover {
  color: #ff812d;
  background: #fff;
}
.home .cont01 .box01 .button01 a:hover::before {
  background: #ff812d;
}
.home .cont01 .box01 .swiper {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
}
.home .cont01 .box01 .img01 {
  position: relative;
}
.home .cont01 .box01 .swiper-pagination-bullet-active {
  background: #ff812d;
}
@media screen and (max-width: 900px) {
  .home .cont01 {
    padding: 80px 0;
  }
  .home .cont01 .box01 {
    flex-flow: column-reverse;
  }
  .home .cont01 .box02 {
    max-width: 500px;
    width: auto;
  }
  .home .cont01 .inner {
    padding: 0 20px;
  }
  .home .cont01 .box01 .swiper {
    width: 100%;
    max-width: 500px;
  }
  .home .cont01 .box01 .button01 {
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 440px) {
  .home .cont01::before {
    border-radius: 0 0 100px 0;
  }
  .home .cont01 h2 {
    padding-left:30px;
  }
  .home .cont01 .title01 {
    width: 240px;
    height: 60px;
  }
  .home .cont01 .box01 h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .home .cont01 .box01 h3::before {
    font-size: 12px;
    bottom: 13px;
    left: 90px;
  }
  .home .cont01 .box01 .text01 {
    font-size: 14px;
  }
}
/* cont02 */
.home .cont02 {
  position: relative;
  padding: 140px 0;
  background: url(img/home_bk01.svg)top / 100px;
  z-index: 0;
}
.home .cont02 .inner {
  position: relative;
}
.home .cont02 h2 {
  position: relative;
  margin-bottom: 40px;
  padding-left:30px;
  font-size: 14px;
  line-height: 1;
}
.home .cont02 .title01 {
  width: 283px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.home .cont02 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.home .cont02 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.home .cont02 .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;
}
.home .cont02 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.home .cont02 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.home .cont02 .text01 {
  position: absolute;
  text-align: right;
  top: 95px;
  right: 20px;
  letter-spacing: 0.1rem;
}
.home .cont02 .filter-nav {
  display: flex  ;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
}
.home .cont02 .filter-nav li button {
	width: 220px;
	height: 50px;
	border: none;
	border-radius: 25px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	background: #ff812d;
  cursor: pointer;
	transition: all .2s;
  letter-spacing: 0.1rem;
}
.home .cont02 .filter-nav li button:hover,.home .cont02 .filter-nav li .active {
	color: #ff812d;
	background: #fff;
}
.home .cont02 .service_box {
	display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.home .cont02 .service a {
  display: block;
  position: relative;
  padding: 25px;
  box-sizing: border-box;
  width: 380px;
  height: 380px;
  background: #fff;
  border-radius: 10px;
}
.home .cont02 .service a:hover {
  opacity: 1;
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.1);
}
.home .cont02 .service a h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  margin: 240px 0 15px;
}
.home .cont02 .service a .text02 {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
}
.home .cont02 .service a .category {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: #999;
  margin-right: 15px;
}
.home .cont02 .service a .img01 {
  position: absolute;
  width: 330px;
  height: 220px;
  background: #999;
  border-radius: 5px;
  overflow: hidden;
  top: 25px;
}
@media screen and (max-width: 900px) {
  .home .cont02 {
    padding: 80px 20px;
  }
  .home .cont02 h2 {
    margin-bottom: 10px;
  }
  .home .cont02 .text01 {
    position: static;
    margin-bottom: 40px;
    text-align: left;
    font-size: 12px;
  }
}
@media screen and (max-width: 440px) {
  .home .cont02 .title01 {
    width: 220px;
    height: 60px;
  }
  .home .cont02 .filter-nav {
    gap: 10px;
  }
  .home .cont02 .filter-nav li button {
    width: 160px;
  }
  .home .cont02 .service a {
    padding: 15px;
    width: 360px;
    height: 360px;
  }
  .home .cont02 .service a .img01 {
    top: 15px;
  }
}
/* cont03 */
.home .cont03 {
  position: relative;
  padding: 140px 0;
  z-index: 0;
}
.home .cont03::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  height: 100%;
  border-radius: 0 0 400px 0;
  background: #d1d4c9;
  z-index: -10;
}
.home .cont03 .inner {
  position: relative;
}
.home .cont03 .inner .point_box {
  top: -50px;
  left: 60px;
  right: auto;
}
.home .cont03 h2 {
  position: relative;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.home .cont03 .title01 {
  width: 360px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.home .cont03 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.home .cont03 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.home .cont03 .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;
}
.home .cont03 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.home .cont03 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.home .cont03 .swiper-slide {
  width: 360px;
  margin: 0 20px;
  border-radius: 10px;
  overflow: hidden;
}
.home .cont03 .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media screen and (max-width: 900px) {
  .home .cont03 {
    padding: 80px 0;
  }
}
@media screen and (max-width: 440px) {
  .home .cont03 .inner {
    padding: 0 20px;
  }
  .home .cont03 h2 {
    padding-left: 30px;
  }
  .home .cont03 .title01 {
    width: 240px;
    height: 60px;
  }
  .home .cont03::before {
    border-radius: 0 0 100px 0;
  }
  .home .cont03 .swiper-slide {
    width: 200px;
    margin: 0 10px;
  }
}
/* cont04 */
.home .cont04 {
  padding: 140px 0;
}
.home .cont04 h2 {
  position: relative;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.home .cont04 .title01 {
  width: 360px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.home .cont04 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.home .cont04 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.home .cont04 .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;
}
.home .cont04 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.home .cont04 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.home .cont04 .text01 {
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1;
}
.home .cont04 table {
  width: fit-content;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}
.home .cont04 th {
  text-align: left;
  padding: 15px 0;
  width: 150px;
  position: relative;
  font-weight: bold;
  vertical-align: middle;
  height: 50px;
}
.home .cont04 th span {
  background: #ff812d;
  color: #FFF;
  position: absolute;
  right: 10px;
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.home .cont04 td {
  height: 50px;
  padding: 15px 0;
}
.home .cont04 table input {
  border: none;
  height: 50px;
  width: 100%;
  max-width: 750px;
  padding: 0 0 0 30px;
  box-sizing: border-box;
  border-radius: 5px;
}
.home .cont04 table input:focus {
  outline: none;
  border: 2px solid #ff812d;
}
.home .cont04 table input::placeholder {
  color: #bbbbbb;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.home .cont04 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;
}
.home .cont04 table textarea:focus {
  outline: none;
  border: 2px solid #ff812d;
}
.home .cont04 .button input[type="submit"] {
  display: block;
  position: relative;
  margin: 60px auto 0;
  padding-right: 10px;
  box-sizing: border-box;
  width: 300px;
  height: 50px;
  color: #fff;
  background: #ff812d;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  border-radius: 25px;
  transition: 0.3s ease;
  border: none;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;

}
.home .cont04 .button input[type="submit"]:hover {
  color: #ff812d;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .home .cont04 {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 440px) {
  .home .cont04 .title01 {
    width: 240px;
    height: 60px;
  }
  .home .cont04 .text01 {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .home .cont04 th {
    display: block;
    width: 100%;
    padding: 30px 0 10px;
    height: 30px;
  }
  .home .cont04 td {
    display: block;
    padding: 0;
  }
  .home .cont04 .button input[type="submit"] {
    margin: 160px auto 0;
  }
}
/* 下層ページ */
/* header */
.about header h1,.work header h1 {
  position: relative;
  top: 105px;
}
.about header .box01,.work header .box01{
  width: 100%;
  max-width: 1200px;
  position: fixed;
  top: 0;
}
.about header .box01 .title01,.work header .box01 .title01{
  width: 200px;
}
/* about */
/* cont01 */
.about .cont01 {
  margin-top: 80px;
  padding: 140px 0;
  background: url(img/home_bk01.svg)bottom / 100px;
}
.about .cont01 .inner{
  position: relative;
}
.about .cont01 .inner::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  background: #ff812d;
  border-radius: 50%;
  bottom: -60px;
  left: -80px;
}
.about .cont01 h2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.about .cont01 .title01 {
  width: 283px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.about .cont01 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.about .cont01 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.about .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;
}
.about .cont01 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.about .cont01 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.about .cont01 .box01 {
  display: flex;
  position: relative;
  flex-flow: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 120px);
  margin: 0 0 0 auto;
  padding: 60px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px 10px 10px 50px;
  transition: 0.2s ease;
}
.about .cont01 .box01:hover {
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.1);
}
.about .cont01 .box01 .box02{
  width: calc(100% - 360px);
}
.about .cont01 .box01 h3 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: #999 1px solid;
}
.about .cont01 .box01 .text01 {
  line-height: 1.8;
}
.about .cont01 .box01 h3::before {
  position: absolute;
  content: "Ryota Horie";
  color: #999;
  font-size: 14px;
  font-weight: normal;
  bottom: 30px;
  left: 100px;
  letter-spacing: 0.1rem;
}
.about .cont01 .box01 .img01 {
  width: 300px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .about .cont01 {
    padding: 80px 20px;
  }
  .about .cont01 .box01 {
    flex-flow: column-reverse;
    width: 100%;
    padding: 60px;
    border-radius: 10px 10px 10px 50px;
  }
  .about .cont01 .box01 .box02{
    width: 100%;
  }
  .about .cont01 .box01 .img01 {
    width: 100%;
    height: 600px;
    margin-bottom: 30px;
  }
  .about .cont01 .box01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}
@media screen and (max-width: 440px) {
  .about .cont01 h2 {
    padding-left: 30;
  }
  .about .cont01 .title01 {
    width: 240px;
    height: 60px;
  }
    .about .cont01 .box01 {
    padding: 30px;
  }
  .about .cont01 .box01 .img01 {
    height: 300px;
  }
  .about .cont01 .box01 h3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .about .cont01 .box01 .text01 {
    font-size: 14px;
  }
}
/* cont02 */
.about .cont02 {
  padding: 140px 0;
  background: url(img/home_bk01.svg)top / 100px;
}
.about .cont02 h2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.about .cont02 .title01 {
  width: 283px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.about .cont02 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.about .cont02 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.about .cont02 .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;
}
.about .cont02 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.about .cont02 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.about .cont02 .box01 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  padding: 50px 110px 50px 110px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px 10px 10px 50px;
}
.about .cont02 .box02 {
  width: calc(100% - 210px);
}
.about .cont02 .img01 {
  width: 90px;
  height: auto;
  cursor: pointer;
}
.about .cont02 .img01 .cls-1 {
  fill: #f0f0f0;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.about .cont02 .box01.active .img01 .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.about .cont02 .box01.active {
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.1);
}
.about .cont02 .box01 h3 {
  position: relative;
  font-size: 24px;
  color: #ff812d;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
.about .cont02 .box01 h3::before {
  position: absolute;
  content: "";
  width: calc(100% - 340px);
  height: 1px;
  background: #999;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.about .cont02 .box01:nth-of-type(2) h3::before {
  width: calc(100% - 320px);
}
.about .cont02 .box01:nth-of-type(3) h3::before {
  width: calc(100% - 390px);
}
.about .cont02 .box01 .text01 {
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .about .cont02 {
    padding: 80px 20px;
  }
  .about .cont02 .box01 {
    padding: 50px;
  }
  .about .cont02 .box02 {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 440px) {
  .about .cont02 .title01 {
    width: 330px;
    height: 80px;
  }
  .about .cont02 .box01 {
    display: block;
    padding: 50px 30px;
  }
  .about .cont02 .box02 {
    width: 100%;
  }
  .about .cont02 .img01 {
    display: block;
    width: 90px;
    margin: 0 auto 50px;
  }
  .about .cont02 .box01 h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .about .cont02 .box01 .text01 {
    font-size: 14px;
  }
}
/* cont03 */
.about .cont03 {
  position: relative;
  padding: 140px 0;
  z-index: 0;
}
.about .cont03::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  height: 100%;
  border-radius: 0 0 400px 0;
  background: #d1d4c9;
  z-index: -10;
}
.about .cont03 h2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.about .cont03 .title01 {
  width: 283px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.about .cont03 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.about .cont03 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.about .cont03 .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;
}
.about .cont03 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.about .cont03 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.about .cont03 .swiper {
  position: relative;
  height: fit-content;
}
.about .cont03 .swiper-slide {
  width: 930px;
  height: 410px;
  margin: 0 100px;
  padding: 50px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
}
.about .cont03 .swiper-slide h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #999 1px solid;
  line-height: 1;
}
.about .cont03 .swiper-slide .box01 {
  display: flex;
  justify-content: space-between;
}
.about .cont03 .swiper-slide .box01 .text01 {
  font-size: 14px;
  line-height: 2;
}
.about .cont03 .swiper-slide .box01 .img01 {
  border-radius: 5px;
  overflow: hidden;
}
.about .cont03 .box02 {
  display: flex;
  position: absolute;
  top: 50%;
  justify-content: space-between;
  width: calc(100% - 20px);
  max-width: 1200px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.about .cont03 .swiper .swiper-button-prev {
  position: static;
  left: 50px;
  width: 50px;
  height: 50px;
  z-index: 100;
}
.about .cont03 .swiper .swiper-button-prev:after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  background: url(img/home_img02.svg) no-repeat;
  transition: 0.2s ease;

}
.about .cont03 .swiper .swiper-button-prev:hover::after {
  background: url(img/home_img02_hover.svg) no-repeat;
}
.about .cont03 .swiper .swiper-button-next {
  position: static;
  right: 50px;
  width: 50px;
  height: 50px;
  z-index: 100;
}
.about .cont03 .swiper .swiper-button-next:after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  background: url(img/home_img03.svg) no-repeat;
    transition: 0.2s ease;
}
.about .cont03 .swiper .swiper-button-next:hover:after {
  background: url(img/home_img03_hover.svg) no-repeat;
}
@media screen and (max-width: 1000px) {
  .about .cont03 {
    padding: 80px 0;
  }
  .about .cont03 h2 {
    margin-left: 20px;
  }
  .about .cont03 .swiper-slide {
    width: calc(100% - 160px);
    height: fit-content;
    margin: auto 100px;
  }
  .about .cont03 .swiper-slide .box01 {
    flex-flow: column;
    width: fit-content;
    margin: 0 auto;
  }
  .about .cont03 .swiper-slide .box01 .text01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 440px) {
  .about .cont03::before {
    border-radius: 0 0 100px 0;
  }
  .about .cont03 .title01 {
    width: 330px;
    height: 60px;
  }
    .about .cont03 .swiper-slide {
    width: calc(100% - 40px);
    padding: 30px;
  }
  .about .cont03 .box02 {
    width: 100%;
  }
  .about .cont03 .swiper-slide h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 18px;
  }
  .about .cont03 .swiper-slide .box01 .text01 {
    font-size: 12px;
    line-height: 2;
  }
  .about .cont03 .swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .about .cont03 .swiper .swiper-button-prev:after {
    width: 40px;
    height: 40px;
  }
  .about .cont03 .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .about .cont03 .swiper .swiper-button-next:after {
    width: 40px;
    height: 40px;
  }
}
/* cont04 */
.about .cont04 {
  padding: 140px 0;
}
.about .cont04 h2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.about .cont04 .title01 {
  width: 165px;
  height: 60px;
  margin-bottom: 10px;
  cursor: pointer;
}
.about .cont04 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.about .cont04 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.about .cont04 .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;
}
.about .cont04 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.about .cont04 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.about .cont04 .box01 {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about .cont04 .box02 {
  width: 250px;
  height: 110px;
}
.about .cont04 .box02 h3 {
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 10px;
  padding-left: 70px;
  background: url(img/about_icon01.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(2) h3 {
  background: url(img/about_icon02.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(3) h3 {
  background: url(img/about_icon03.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(4) h3 {
  background: url(img/about_icon04.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(5) h3 {
  background: url(img/about_icon05.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(6) h3 {
  background: url(img/about_icon06.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(7) h3 {
  background: url(img/about_icon07.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(8) h3 {
  background: url(img/about_icon08.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(9) h3 {
  background: url(img/about_icon09.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(10) h3 {
  background: url(img/about_icon10.svg)no-repeat left / 60px;
}
.about .cont04 .box02:nth-of-type(11) h3 {
  background: url(img/about_icon11.svg)no-repeat left / 60px;
}
.about .cont04 .box02 li {
  font-size: 14px;
  color: #c0c0c0;
  transition: 0.2s ease;
}
.about .cont04 .box02:hover li {
  color: #333;
}
@media screen and (max-width: 1000px) {
  .about .cont04 {
    padding: 80px 20px;
  }
  .about .cont04 .box02 li {
    color: #666;
  }
}
@media screen and (max-width: 440px) {
  .about .cont04 .title01 {
    width: 170px;
    height: 60px;
  }
  .about .cont04 .box01 {
    gap: 30px;
  }
  .about .cont04 .box02 {
    width: 100%;
    height: fit-content;
  }
  .about .cont04 .box02 ul {
    display: flex;
    gap: 10px;
  }
  .about .cont04 .box02 li {
    font-size: 12px;
  }
}
/* work */
/* cont01 */
.work .cont01 {
  margin-top: 80px;
  padding: 140px 0 40px;
  background: url(img/home_bk01.svg)bottom / 100px;
}
.work .cont01 h2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
}
.work .cont01 .title01 {
  width: 283px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}
.work .cont01 .title01 .cls-1 {
  fill:  transparent;
  stroke: #ff812d;
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s linear,
              fill 0.4s ease 1s;
}
.work .cont01 .title01.active .cls-1 {
  stroke-dashoffset: 0;
  fill: #ff812d;
}
.work .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;
}
.work .cont01 .title01.active .cls-2 {
  stroke-dashoffset: 0;
  fill: #333;
}
.work .cont01 h2::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 7px;
  left: 0;
  background: #999;
}
.work .cont01 .box01 .box02 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
.work .cont01 .box01 .box02 h3 {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
}
.work .cont01 .box01 .box02 ul {
  display: flex;
  gap: 10px;
}
.work .cont01 .box01 .box02 li {
  color: #999;
}
.work .cont01 .box01 .text01 {
  line-height: 2;
  margin-bottom: 35px;
}
.work .cont01 .box01 .img01 {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.work .cont01 .box01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #999;
}
@media screen and (max-width: 900px) {
  .work .cont01 {
    padding: 80px 20px;
  }
  .work .cont01 .box01 .box02 {
    display: block;
  }
  .work .cont01 .box01 .box02 h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 440px) {
  .work .cont01 .title01 {
    width: 170px;
    height: 60px;
  }
  .work .cont01 .box01 .box02 h3 {
    font-size: 24px;
  }
  .work .cont01 .box01 .box02 li {
    font-size: 14px;
  }
  .work .cont01 .box01 .text01 {
    font-size: 14px;
  }
}
/* cont02 */
.work .cont02 {
  padding: 140px 0;
  background: #d1d4c9;
}
.work .cont02 .box01 {
  display: flex;
  justify-content: space-between;
}
.work .cont02 .box02 {
  width: calc(100% - 500px);
}
.work .cont02 .box02 h4 {
  position: relative;
  font-weight: bold;
  margin-bottom: 10px;
}
.work .cont02 .box02 h4::before {
  position: absolute;
  content: "";
  width: calc(100% - 50px);
  height: 1px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #999;
}
.work .cont02 .box02 h4:nth-of-type(2):before {
  width: calc(100% - 130px);
}
.work .cont02 .box02 .text01 {
  line-height: 2;
}
.work .cont02 .box02 .text01:nth-of-type(1) {
  margin-bottom: 60px;
}
.work .cont02 .box01 table {
  height: fit-content;
}
.work .cont02 .box01 tr {
  display: flex;
  border-top: #999 1px solid;
  padding: 25px 0;
}
.work .cont02 .box01 tr:last-child {
  border-bottom: #999 1px solid;
}
.work .cont02 .box01 th {
  width: 90px;
  text-align: left;
  padding-left: 20px;
}
.work .cont02 .box01 td {
  flex-flow: column;
  padding-right: 20px;
}
.work .cont02 .button01 {
  width: fit-content;
  margin: 80px auto 0;
}
.work .cont02 .button01 a {
  display: block;
  position: relative;
  padding-right: 10px;
  box-sizing: border-box;
  width: 300px;
  height: 50px;
  color: #fff;
  background: #ff812d;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  border-radius: 25px;
}
.work .cont02 .button01 a::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  border-radius: 3px;
}
.work .cont02 .button01 a:hover {
  color: #ff812d;
  background: #fff;
}
.work .cont02 .button01 a:hover::before {
  background: #ff812d;
}
@media screen and (max-width: 900px) {
  .work .cont02 {
    padding: 80px 20px;
  }
  .work .cont02 .box01 {
    display: block;
  }
  .work .cont02 .box02 {
    width: 100%;
  }
  .work .cont02 .box02 .text01:nth-of-type(2) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 440px) {
  .work .cont02 .box02 h4 {
    font-size: 14px;
  }
  .work .cont02 .box02 .text01 {
    font-size: 14px;
  }
  .work .cont02 .box01 tr {
    padding: 20px 0 ;
  }
  .work .cont02 .box01 th {
    font-size: 14px;
  }
  .work .cont02 .box01 td {
    font-size: 14px;
  }
}
/* footer */
footer {
  padding: 140px 0;
  background: url(img/footer_img02.png)no-repeat top / cover;
}
footer .img01{
  width: 150px;
  margin-bottom: 40px;
}
footer ul {
  display: flex;
  margin-bottom: 40px;
  gap: 60px;
}
footer ul li a {
  padding-bottom: 5px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: transparent 1px solid;
  transition: 0.3s ease;
}
footer ul li a:hover {
  opacity: 1;
  border-bottom: #666 1px solid;
}
footer .copy {
  color: #666;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  footer {
    padding: 100px 30px;
  }
  footer ul {
     gap: 30px;
  }
}

/* アニメーション */
.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}
