@charset "UTF-8";
:root {
  --header-height: 0px;
  --top-inner-height: 0px;
  --black-color: #000;
  --black-color: #282728;
  --light-blue-color: #0082E2;
  --blue-color: #004AA1;
  --yellow-color: #FAD62B;
  --error-color: #f21717;
}

html,
body {
  font-family: "游ゴシック", YuGothic, sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
}
html.is-active,
body.is-active {
  overflow: hidden;
}

a {
  transition: all 0.3s ease;
}

@media screen and (min-width: 900px) {
  a:hover {
    opacity: 0.7;
  }
}
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

.pc-only-flex {
  display: flex !important;
}

.sp-only-flex {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .pc-only-flex {
    display: none !important;
  }
  .sp-only-flex {
    display: flex !important;
  }
}
body {
  color: var(--black-color);
  background-color: #fff;
}
body.active {
  overflow: hidden;
}

.background-texture {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.background-texture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 60px;
  background-color: #fff;
}
header .header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header .header-left {
  width: 300px;
  height: auto;
}
header .header-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
header .header-right {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 25px;
}
header .header-right a {
  font-size: 18px;
  font-weight: 500;
}
header .header-right .buy-link {
  padding: 10px 15px;
  color: #A99452;
  border: 1px solid #A99452;
  /*span {
      font-weight: 700;
  }*/
}
header .header-right .contact-link {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px 9px 25px;
  color: #fff;
  background-color: var(--light-blue-color);
  border-radius: 5rem;
}
header .sp-menu-area {
  display: none;
}

@media screen and (max-width: 900px) {
  header {
    padding: 15px;
    align-items: center;
  }
  header .header-left {
    width: 210px;
  }
  header .header-right {
    display: none;
    gap: 15px;
  }
  header .header-right a {
    font-size: 14px;
  }
  header .header-right .buy-link {
    padding: 4px 8px;
  }
  header .header-right .contact-link {
    width: 160px;
    padding: 4px 10px 5px 10px;
  }
  header .sp-menu-area {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .sp-menu-area #headerMenuBtn {
    z-index: 9999;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  header .sp-menu-area #headerMenuBtn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2F2F2F;
    border-radius: 5rem;
    transition: all 0.3s ease;
  }
  header .sp-menu-area #headerMenuBtn span:nth-of-type(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  header .sp-menu-area #headerMenuBtn span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .sp-menu-area #headerMenuBtn span:nth-of-type(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  header .sp-menu-area #headerMenuBtn.active {
    position: relative;
    transform: translate(-30px, 30px);
  }
  header .sp-menu-area #headerMenuBtn.active::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: fit-content;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 5rem;
    background-color: #fff;
  }
  header .sp-menu-area #headerMenuBtn.active span {
    z-index: 2;
  }
  header .sp-menu-area #headerMenuBtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  header .sp-menu-area #headerMenuBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .sp-menu-area #headerMenuBtn.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  header .sp-menu-area .sp-menu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("./img/mv-back.webp") no-repeat center/cover;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
  }
  header .sp-menu-area .sp-menu.active {
    opacity: 1;
    pointer-events: all;
  }
  header .sp-menu-area .sp-menu nav {
    max-width: 420px;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9490196078);
    border-radius: 20px;
    padding: 15px;
    align-items: center;
  }
  header .sp-menu-area .sp-menu nav .header-sp-menu {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  header .sp-menu-area .sp-menu nav .header-sp-menu li {
    width: 100%;
    height: auto;
    text-align: center;
  }
  header .sp-menu-area .sp-menu nav .header-sp-menu li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
  }
  header .sp-menu-area .sp-menu nav .header-sp-menu .buy-link {
    display: block;
    margin-top: 30px;
    padding: 10px 10px;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #A99452;
  }
  header .sp-menu-area .sp-menu nav .header-sp-menu .buy-link span {
    font-weight: 700;
  }
  header .sp-menu-area .sp-menu nav .header-sp-menu .contact-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 20px 9px 20px;
    color: #fff;
    background-color: var(--light-blue-color);
  }
}
/* cta */
.cta {
  display: none;
  visibility: hidden;
  z-index: 9999;
  width: 47px;
  height: auto;
  position: fixed;
  bottom: 10%;
  left: 0;
}
.cta .cta-area {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.cta .cta-area a {
  display: flex;
  width: auto;
  height: 150px;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-radius: 0 12px 12px 0;
  padding: 10px 0;
}
.cta .cta-area a.research {
  background-color: var(--blue-color);
}
.cta .cta-area a.look {
  background-color: var(--light-blue-color);
}

@media screen and (max-width: 900px) {
  .cta {
    display: block;
    visibility: visible;
    width: 100%;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(0);
  }
  .cta .cta-area {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: row;
  }
  .cta .cta-area a {
    width: 50%;
    height: auto;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 0;
    padding: 20px 0;
  }
}
/* mv */
.mv {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* height: 63vh; */
  padding: 8% 40px 10% 40px;
  margin-top: var(--header-height);
  /* padding: 0 40px; */
  /* background: url("./img/mv-back.webp") no-repeat center / cover; */
  background-color: var(--light-blue-color);
  /* マスクの適用 */
  mask-image: url("./img/mask.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: bottom;
  /* Safari対応 */
  -webkit-mask-image: url("./img/mask.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
}
.mv .mv-container {
  z-index: 3;
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: auto;
}
.mv .mv-container .mv-content {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  transform: translateX(60px);
}
.mv .mv-container .mv-content h1 {
  width: fit-content;
  font-size: clamp(1.25rem, 0.417rem + 1.48vw, 1.38rem);
  color: #fff;
  padding: 4px 30px 3px 100px;
  background-color: var(--blue-color);
  transform: translateX(20px);
}
.mv .mv-container .mv-content img {
  width: 80%;
  height: auto;
  object-fit: contain;
  margin: auto;
}
.mv .mv-container .mv-human {
  z-index: 3;
  position: absolute;
  left: 5%;
  bottom: -50%;
  width: 33%;
  height: auto;
}
.mv .back-texture {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv .back-texture .mv-texture-left {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 27%;
  height: auto;
  transform: scale(-1, -1);
}
.mv .back-texture .mv-texture-right {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 27%;
  height: auto;
}
.mv .layer2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .layer2 .cls-1 {
  fill: none;
}
.mv .layer2 .cls-2 {
  fill: #004aa1;
}
.mv .layer2 .cls-3 {
  clip-path: url(#clippath);
}
.mv .mv-texture {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  width: 100%;
  height: calc(100% - 15px);
  background: url("./img/mv-back.webp") no-repeat center/cover;
  /* マスクの適用 */
  mask-image: url("./img/mask.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: bottom;
  /* Safari対応 */
  -webkit-mask-image: url("./img/mask.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
}

@media screen and (max-width: 900px) {
  .mv {
    padding: 8% 20px 20% 20px;
  }
  .mv .mv-container {
    max-width: 420px;
  }
  .mv .mv-container .mv-content {
    transform: translateX(0);
    align-items: end;
  }
  .mv .mv-container .mv-content h1 {
    font-size: clamp(1rem, 0.8rem + 0.8vw, 1.25rem);
    padding: 4px 20px 3px 20px;
    transform: translateX(-20px);
  }
  .mv .mv-container .mv-content img {
    width: 100%;
  }
  .mv .mv-container .mv-human {
    left: -4%;
    bottom: -76%;
    width: 50%;
  }
  .mv .back-texture .mv-texture-left {
    left: -70px;
    bottom: -70px;
    width: 200px;
  }
  .mv .back-texture .mv-texture-right {
    right: -40px;
    top: -40px;
    width: 200px;
  }
  .mv .mv-texture {
    height: calc(100% - 10px);
  }
}
/* t-pointer */
.t-point {
  padding: 120px 40px;
}
.t-point .tp-container {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: auto;
}
.t-point .tp-container h2 {
  position: relative;
  color: var(--blue-color);
  font-size: 27px;
  font-weight: 700;
  width: fit-content;
  height: auto;
}
.t-point .tp-container h2 span {
  font-size: 60px;
}
.t-point .tp-container h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--yellow-color);
}
.t-point .tp-container .tp-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.t-point .tp-container .tp-list .tp-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: end;
}
.t-point .tp-container .tp-list .tp-item:nth-of-type(2n) {
  flex-direction: row;
}
.t-point .tp-container .tp-list .tp-item .poin-img {
  width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 130px 130px 0 0;
  position: relative;
  box-shadow: 5px 5px 0 rgba(0, 132, 226, 0.1725490196);
}
.t-point .tp-container .tp-list .tp-item .textarea {
  width: 46%;
  height: auto;
}
.t-point .tp-container .tp-list .tp-item .textarea .heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.t-point .tp-container .tp-list .tp-item .textarea .heading .sub-heading {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.t-point .tp-container .tp-list .tp-item .textarea .heading .sub-heading img {
  width: 25px;
  height: auto;
  object-fit: contain;
}
.t-point .tp-container .tp-list .tp-item .textarea .heading .sub-heading p {
  font-size: 21px;
  font-weight: 600;
  color: var(--blue-color);
}
.t-point .tp-container .tp-list .tp-item .textarea .heading h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
.t-point .tp-container .tp-list .tp-item .textarea .description {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 900px) {
  .t-point {
    padding: 60px 20px;
  }
  .t-point .tp-container {
    max-width: 420px;
  }
  .t-point .tp-container h2 {
    margin: auto;
    font-size: 21px;
  }
  .t-point .tp-container h2 span {
    font-size: 40px;
  }
  .t-point .tp-container h2::before {
    width: 100%;
    height: 5px;
  }
  .t-point .tp-container .tp-list {
    margin-top: 30px;
    gap: 40px;
  }
  .t-point .tp-container .tp-list .tp-item {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .t-point .tp-container .tp-list .tp-item:nth-of-type(2n) {
    flex-direction: column;
  }
  .t-point .tp-container .tp-list .tp-item .poin-img {
    width: 100%;
    border-radius: 90px 90px 0 0;
    box-shadow: 5px 5px 0 rgba(0, 132, 226, 0.1725490196);
  }
  .t-point .tp-container .tp-list .tp-item .textarea {
    width: 100%;
  }
  .t-point .tp-container .tp-list .tp-item .textarea .heading {
    gap: 15px;
  }
  .t-point .tp-container .tp-list .tp-item .textarea .heading .sub-heading {
    gap: 8px;
  }
  .t-point .tp-container .tp-list .tp-item .textarea .heading .sub-heading p {
    font-size: 18px;
  }
  .t-point .tp-container .tp-list .tp-item .textarea .heading h3 {
    font-size: 28px;
  }
  .t-point .tp-container .tp-list .tp-item .textarea .description {
    margin-top: 10px;
    font-size: 16px;
  }
}
/* t-movie */
.t-movie {
  position: relative;
  background-color: var(--blue-color);
  padding: 90px 40px;
}
.t-movie::before, .t-movie::after {
  z-index: 1;
  content: "";
  position: absolute;
  width: 100%;
  height: 25px;
  background-color: var(--light-blue-color);
}
.t-movie::before {
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.t-movie::after {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.t-movie .tm-container {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: auto;
}
.t-movie .tm-container .heading {
  z-index: 5;
  position: relative;
  margin-top: -130px;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.t-movie .tm-container .heading .heading-icon {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.t-movie .tm-container .heading .heading-icon img {
  width: 60px;
  height: auto;
  object-fit: contain;
}
.t-movie .tm-container .heading h2 {
  position: relative;
  font-size: 37px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.t-movie .tm-container .heading h2::before, .t-movie .tm-container .heading h2::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  background-color: #fff;
}
.t-movie .tm-container .heading h2::before {
  bottom: 0;
  left: -50px;
  transform: rotate(-25deg);
}
.t-movie .tm-container .heading h2::after {
  bottom: 0;
  right: -50px;
  transform: rotate(25deg);
}
.t-movie .tm-container .tm-content {
  margin-top: 80px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.t-movie .tm-container .tm-content .tm-item {
  width: 32%;
  height: auto;
}
.t-movie .tm-container .tm-content .tm-item .tm-link .youtube-img {
  width: 100%;
  height: auto;
  border-radius: 21px;
  overflow: hidden;
}
.t-movie .tm-container .tm-content .tm-item .tm-link .youtube-img iframe {
  border-radius: 21px;
  border: 5px solid #fff;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.t-movie .tm-container .tm-content .tm-item .tm-link h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin-top: 18px;
}
.t-movie .tm-container .tm-morebtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 510px;
  width: 100%;
  height: auto;
  background-color: #F9004E;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin: 40px auto 0 auto;
  padding: 18px 10px 16px 10px;
  border-radius: 5rem;
}
.t-movie .tm-container .tm-morebtn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
}

@media screen and (max-width: 900px) {
  .t-movie {
    padding: 90px 20px 60px 20px;
  }
  .t-movie::before, .t-movie::after {
    width: 100%;
    height: 15px;
  }
  .t-movie .tm-container {
    max-width: 420px;
  }
  .t-movie .tm-container .heading {
    margin-top: -120px;
    gap: 30px;
  }
  .t-movie .tm-container .heading .heading-icon {
    gap: 10px;
  }
  .t-movie .tm-container .heading .heading-icon img {
    width: 40px;
  }
  .t-movie .tm-container .heading h2 {
    font-size: 24px;
  }
  .t-movie .tm-container .heading h2::before, .t-movie .tm-container .heading h2::after {
    width: 2px;
    height: 30px;
  }
  .t-movie .tm-container .heading h2::before {
    left: -20px;
  }
  .t-movie .tm-container .heading h2::after {
    right: -20px;
  }
  .t-movie .tm-container .tm-content {
    margin-top: 40px;
    flex-direction: column;
    gap: 30px;
  }
  .t-movie .tm-container .tm-content .tm-item {
    width: 100%;
  }
  .t-movie .tm-container .tm-content .tm-item .tm-link .youtube-img {
    border-radius: 16px;
    object-fit: cover;
    overflow: hidden;
  }
  .t-movie .tm-container .tm-content .tm-item .tm-link .youtube-img iframe {
    border-radius: 16px;
  }
  .t-movie .tm-container .tm-content .tm-item .tm-link h3 {
    font-size: 18px;
    margin-top: 10px;
  }
  .t-movie .tm-container .tm-morebtn {
    gap: 4px;
    width: 100%;
    font-size: 18px;
    margin: 30px auto 0 auto;
    padding: 14px 10px 12px 10px;
  }
  .t-movie .tm-container .tm-morebtn::before {
    border-left: 12px solid #fff;
  }
}
/* t-recommend */
.t-recommend {
  z-index: 2;
  position: relative;
  padding: 120px 40px 150px 40px;
}
.t-recommend .tr-container {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: auto;
}
.t-recommend .tr-container h2 {
  position: relative;
  color: var(--blue-color);
  font-size: 27px;
  font-weight: 700;
  width: fit-content;
  height: auto;
  margin: auto;
}
.t-recommend .tr-container h2 span {
  font-size: 60px;
}
.t-recommend .tr-container h2::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--yellow-color);
}
.t-recommend .tr-container .recommend-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin: 90px auto 0 auto;
}
.t-recommend .tr-container .recommend-list .recommend-item {
  width: 48%;
  height: auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1882352941);
  background-color: #fff;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link {
  position: relative;
  padding: 60px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .label {
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 10px 20px;
  background-color: var(--blue-color);
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link h3 {
  font-size: 26px;
  font-weight: 700;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content img {
  width: 48%;
  height: fit-content;
  aspect-ratio: 2.6/1.7;
  object-fit: cover;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea {
  width: 48%;
  height: auto;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--blue-color);
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea dl {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea dl div {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 3px;
  font-size: 16px;
  line-height: 1.6;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea dl div.area-box {
  flex-direction: column;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea dl div dt {
  font-weight: 700;
}
.t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea dl div dd {
  font-weight: 400;
}
.t-recommend .tr-container .tr-morebtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 510px;
  width: 100%;
  height: auto;
  background-color: var(--blue-color);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin: 80px auto 0 auto;
  padding: 18px 10px 16px 10px;
  border-radius: 5rem;
}
.t-recommend .tr-container .tr-morebtn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
}
.t-recommend .recommend-back {
  z-index: -1;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .t-recommend {
    padding: 60px 20px 40px 20px;
  }
  .t-recommend .tr-container {
    max-width: 420px;
  }
  .t-recommend .tr-container h2 {
    font-size: 21px;
  }
  .t-recommend .tr-container h2 span {
    font-size: 40px;
  }
  .t-recommend .tr-container h2::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--yellow-color);
  }
  .t-recommend .tr-container .recommend-list {
    gap: 30px 0;
    margin: 60px auto 0 auto;
  }
  .t-recommend .tr-container .recommend-list .recommend-item {
    width: 100%;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link {
    padding: 40px 20px 20px 20px;
    gap: 20px;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link .label {
    left: 20px;
    font-size: 14px;
    padding: 6px 10px;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link h3 {
    font-size: 18px;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content {
    flex-direction: column;
    gap: 10px;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content img {
    width: 100%;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea {
    width: 100%;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea p {
    font-size: 15px;
  }
  .t-recommend .tr-container .recommend-list .recommend-item .recommend-link .recommend-content .textarea dl div {
    font-size: 15px;
  }
  .t-recommend .tr-container .tr-morebtn {
    gap: 4px;
    width: 100%;
    font-size: 18px;
    margin: 30px auto 0 auto;
    padding: 14px 10px 12px 10px;
  }
  .t-recommend .tr-container .tr-morebtn::before {
    border-left: 12px solid #fff;
  }
  .t-recommend .recommend-back {
    z-index: -1;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
  }
}
.breadcrumb {
  z-index: 9;
  position: relative;
  padding-right: 16px;
  margin-bottom: 40px;
  padding: 0 40px;
}
.breadcrumb .breadcrumbs {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.breadcrumb .breadcrumbs span {
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-color);
  white-space: nowrap;
}
.breadcrumb .breadcrumbs span > span {
  color: var(--black-color);
}

footer {
  z-index: 1;
  position: relative;
  padding: 150px 40px 0 40px;
  background-color: #fff;
}
footer .footer-conteiner {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-conteiner .footer-left {
  width: 48%;
  height: auto;
}
footer .footer-conteiner .footer-left .footer-logo {
  width: 90%;
  height: auto;
  object-fit: contain;
}
footer .footer-conteiner .footer-left .contact-area {
  margin-top: 30px;
}
footer .footer-conteiner .footer-left .contact-area h2 {
  font-size: 25px;
  font-weight: 700;
  font-weight: 500%;
  padding-left: 20px;
  position: relative;
}
footer .footer-conteiner .footer-left .contact-area h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--blue-color);
}
footer .footer-conteiner .footer-left .contact-area .tel-area {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: start;
}
footer .footer-conteiner .footer-left .contact-area .tel-area img {
  width: 38px;
  height: auto;
  object-fit: contain;
}
footer .footer-conteiner .footer-left .contact-area .tel-area .tel-link {
  font-size: 36px;
  font-weight: 700;
}
footer .footer-conteiner .footer-left .contact-area .tel-area .tel-link span {
  font-size: 16px;
  font-weight: 500;
}
footer .footer-conteiner .footer-left .contact-area .line-area {
  margin-top: 10px;
  position: relative;
  width: 100%;
  height: auto;
  border: 5px solid #06C755;
  display: flex;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
footer .footer-conteiner .footer-left .contact-area .line-area p {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 30px 7px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #06C755;
}
footer .footer-conteiner .footer-left .contact-area .line-area .line-link {
  position: absolute;
  bottom: 30%;
  left: 5%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 29px;
  font-weight: 700;
}
footer .footer-conteiner .footer-left .contact-area .line-area .line-link img {
  width: 30px;
  height: auto;
  object-fit: contain;
}
footer .footer-conteiner .footer-left .contact-area .line-area .line-qr {
  width: 25%;
  height: auto;
}
footer .footer-conteiner .footer-left .company-info {
  margin-top: 25px;
}
footer .footer-conteiner .footer-left .company-info h2 {
  font-size: 25px;
  font-weight: 700;
  font-weight: 500%;
  padding-left: 20px;
  position: relative;
}
footer .footer-conteiner .footer-left .company-info h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--blue-color);
}
footer .footer-conteiner .footer-left .company-info h3 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  color: #545454;
}
footer .footer-conteiner .footer-left .company-info .company-info {
  margin-top: 15px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer-conteiner .footer-left .company-info .company-info .company-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: start;
  font-size: 16px;
  line-height: 1.6;
}
footer .footer-conteiner .footer-left .company-info .company-info .company-item dt {
  width: 18%;
  height: auto;
}
footer .footer-conteiner .footer-left .company-info .company-info .company-item dd {
  width: 82%;
  height: auto;
}
footer .footer-conteiner .footer-right {
  width: 48%;
}
footer .footer-conteiner .footer-right h2 {
  margin-top: 30px;
  font-size: 25px;
  font-weight: 700;
  font-weight: 500%;
  padding-left: 20px;
  position: relative;
}
footer .footer-conteiner .footer-right h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--blue-color);
}
footer .footer-conteiner .footer-right .contact-form {
  margin-top: 20px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .footer-conteiner .footer-right .contact-form .input-field {
  width: 100%;
  height: auto;
  padding: 10px;
  border: 2px solid #666666;
  font-size: 18px;
  font-weight: 400;
}
footer .footer-conteiner .footer-right .contact-form .input-field::placeholder {
  color: #666666;
  font-weight: 300 !important;
}
footer .footer-conteiner .footer-right .contact-form .input-field.message {
  height: 450px;
}
footer .footer-conteiner .footer-right .contact-form .submit-button {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 2px solid #666666;
  color: var(--black-color) !important;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  background-color: #fff;
}
footer .footer-conteiner .footer-right .contact-form .submit-button svg {
  width: 22px;
  height: auto;
  object-fit: contain;
}
footer .footer-conteiner .footer-bottom {
  width: 100vw;
  margin: 40px calc(50% - 50vw) 0 calc(50% - 50vw);
  height: auto;
  padding: 15px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--blue-color);
}

@media screen and (max-width: 900px) {
  .breadcrumb {
    padding-right: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .breadcrumb .breadcrumbs {
    max-width: 420px;
    gap: 10px;
  }
  .breadcrumb .breadcrumbs span {
    font-size: 14px;
  }
  footer {
    padding: 120px 20px 60px 20px;
  }
  footer .footer-conteiner {
    max-width: 420px;
    flex-direction: column;
  }
  footer .footer-conteiner .footer-left {
    width: 100%;
  }
  footer .footer-conteiner .footer-left .footer-logo {
    width: 50%;
  }
  footer .footer-conteiner .footer-left .contact-area {
    margin-top: 20px;
  }
  footer .footer-conteiner .footer-left .contact-area h2 {
    font-size: 18px;
  }
  footer .footer-conteiner .footer-left .contact-area .tel-area {
    margin-top: 20px;
    gap: 10px;
  }
  footer .footer-conteiner .footer-left .contact-area .tel-area img {
    width: 25px;
  }
  footer .footer-conteiner .footer-left .contact-area .tel-area .tel-link {
    font-size: 28px;
  }
  footer .footer-conteiner .footer-left .contact-area .tel-area .tel-link span {
    font-size: 13px;
  }
  footer .footer-conteiner .footer-left .contact-area .line-area {
    margin-top: 20px;
  }
  footer .footer-conteiner .footer-left .contact-area .line-area p {
    padding: 4px 20px 5px 20px;
    font-size: 18px;
  }
  footer .footer-conteiner .footer-left .contact-area .line-area .line-link {
    bottom: 25%;
    gap: 6px;
    font-size: 21px;
  }
  footer .footer-conteiner .footer-left .contact-area .line-area .line-link img {
    width: 20px;
  }
  footer .footer-conteiner .footer-left .contact-area .line-area .line-qr {
    width: 30%;
  }
  footer .footer-conteiner .footer-left .company-info {
    margin-top: 30px;
  }
  footer .footer-conteiner .footer-left .company-info h2 {
    font-size: 18px;
  }
  footer .footer-conteiner .footer-left .company-info .company-info .company-item {
    font-size: 15px;
  }
  footer .footer-conteiner .footer-right {
    width: 100%;
  }
  footer .footer-conteiner .footer-right h2 {
    font-size: 18px;
  }
  footer .footer-conteiner .footer-right .contact-form {
    margin-top: 25px;
    gap: 14px;
  }
  footer .footer-conteiner .footer-right .contact-form .input-field {
    padding: 7px;
    font-size: 15px;
  }
  footer .footer-conteiner .footer-right .contact-form .input-field.message {
    height: 300px;
  }
  footer .footer-conteiner .footer-bottom {
    padding: 25px 15px;
    flex-direction: column;
    gap: 15px;
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */