@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=Reem+Kufi+Fun:wght@400..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shippori+Antique+B1&family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Old+Mincho&display=swap");
.ff-shippori {
  font-family: "Shippori Antique B1", sans-serif;
}

/* reset */
html {
  overflow-y: scroll;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  box-sizing: border-box;
}
a:not([class]) {
  transition: all 0.3s;
}
a:not([class]):hover {
  opacity: 0.6;
}

dt,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

section,
figure,
aside,
header,
footer,
main,
nav {
  display: block;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

object,
embed {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

hr {
  clear: both;
}

/* --------------------------------------------------------
	01share style
	-------------------------------------------------------- */
.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

/*CSS Rollover*/
a.cssRoll img {
  opacity: 1;
}

a:hover.cssRoll img {
  opacity: 0.6;
}

body {
  font-weight: normal;
  line-height: 1.7;
  color: #373737;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

figure {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}

em {
  font-weight: bold;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}
body.home main {
  padding-top: 220px;
}
@media (max-width: 768px) {
  body.home main {
    padding-top: 85px;
  }
}

.hover-img {
  overflow: hidden;
}
.hover-img img {
  transition: 0.3s;
}
.hover-img img:hover {
  transform: scale(1.1);
}

/*ANIMATION*/
.anim {
  opacity: 0;
}

.anim.blur {
  opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
.anim.fade {
  opacity: 0;
}

.anim.fade.is-animated {
  opacity: 1;
  animation-name: fade;
  animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
  opacity: 1;
  animation-name: slideinBottom;
  animation-duration: 0.5s;
}

@keyframes slideinBottom {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
.anim.faderight.is-animated {
  opacity: 1;
  animation-name: faderight;
  animation-duration: 2s;
}

.anim.fade.is-animated {
  opacity: 1;
  animation-name: fade;
  animation-duration: 2s;
}

.anim.fadeleft.is-animated {
  opacity: 1;
  animation-name: fadeleft;
  animation-duration: 2s;
}

.anim.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.anim.fadeup-2.is-animated {
  opacity: 1;
  animation-name: fadeup-2;
  animation-duration: 0.5s;
}

.home .anim.fadedown.is-animated {
  opacity: 1;
  animation-name: fadedown;
  animation-duration: 0.5s;
}

.anim.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadedown {
  from {
    opacity: 0;
    transform: translateY(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeup-2 {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.anim.effectfade {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

.anim-duration-3s {
  animation-duration: 3s !important;
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

.bgextend.anim-duration-3s {
  animation-duration: 3s;
}
@keyframes kenburns {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #515BA7; /*伸びる背景色の設定*/
}

.bgLRextend.anim-duration-3s::before {
  animation-duration: 3.5s;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.footer {
  overflow: hidden;
}
.footer a {
  color: #fff;
}
.footer__container {
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
.footer__contact {
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(81, 91, 167) 0%, rgb(41, 166, 221) 100%);
  color: #fff;
  padding: 50px 60px 85px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 55px;
  position: relative;
}
.footer__contact:hover .footer__contact-logo img {
  transform: scale(1.1);
}
.footer__contact::after {
  content: "";
  background-color: #0A174C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translatex(-50%);
  width: 100vw;
  height: 200%;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__contact {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .footer__contact {
    border-radius: 5px;
    flex-direction: column;
    padding: 30px 27px 25px 22px;
    align-items: flex-end;
    gap: 40px;
  }
}
.footer__contact-logo {
  position: absolute;
  left: 114px;
  top: 50%;
  transform: translateY(-50%);
  width: 262px;
  height: 258px;
}
.footer__contact-logo img {
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .footer__contact-logo {
    left: 20px;
    top: 10px;
    transform: none;
    width: 131px;
  }
}
.footer__contact-title {
  font-size: 7.2rem;
  font-family: "Reem Kufi Fun", sans-serif;
  letter-spacing: 0.3em;
  line-height: 1.36;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__contact-title {
    font-size: 5.2rem;
  }
}
@media (max-width: 768px) {
  .footer__contact-title {
    font-size: 3.6rem;
  }
}
.footer__contact-subtitle {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.6em;
  line-height: 1.75;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__contact-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__contact-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__contact-left {
    padding-right: 20px;
  }
}
.footer__contact-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__contact-right {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__contact-right {
    gap: 33px;
  }
}
.footer__contact-content {
  width: 244px;
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 1.68;
}
@media (max-width: 768px) {
  .footer__contact-content {
    width: 206px;
  }
}
.footer__box {
  background-color: #0A174C;
  padding-top: 48px;
  padding-bottom: 60px;
  position: relative;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__box {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
.footer__box-wrap {
  display: flex;
  padding: 0 30px 0 60px;
}
@media (max-width: 768px) {
  .footer__box-wrap {
    padding: 0;
  }
}
.footer__box-left {
  padding-top: 30px;
  padding-right: 70px;
  width: 31.49%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer__box-left {
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .footer__box-left {
    padding-top: 0;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
}
.footer__box-right {
  padding-top: 40px;
  padding-bottom: 55px;
  padding-left: 90px;
  border-left: 1px solid #4D7AA0;
  flex: 1;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer__box-right {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .footer__box-right {
    display: none;
  }
}
.footer__box-links {
  display: flex;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer__box-links {
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__box-link:nth-child(1) {
    margin-right: 80px;
  }
  .footer__box-link:nth-child(2) {
    margin-right: 125px;
  }
}
.footer__box-title {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.footer__box-title + .footer__menu {
  padding-left: 15px;
}
.footer__box-link2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 47px;
  margin-top: 55px;
}
.footer__logo {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 245px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
.footer__infor {
  padding-left: 65px;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.78;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__infor {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .footer__infor {
    padding-left: 0;
  }
}
.footer__menu li {
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 15px;
}
.footer__menu li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
}
.footer__menu li + li {
  margin-top: 25px;
}
.footer__menu li a {
  position: relative;
  display: inline-block;
}
.footer__menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.footer__menu li a:hover {
  opacity: 1;
}
.footer__menu li a:hover::after {
  transform: scale(1, 1);
}
.footer__copyright {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .footer__copyright {
    padding-top: 55px;
    font-size: 1rem;
    line-height: 1.85;
  }
}

.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 20px 0;
  z-index: 99;
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
}
.header__main {
  max-width: 1420px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header__main {
    padding: 0 18px;
    justify-content: space-between;
  }
}
.header__logo {
  width: 322px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header__logo {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 207px;
  }
}
.header__nav {
  flex: 1;
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 74px;
    right: -150vw;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 999;
    display: flex;
    overflow: auto;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 40px;
    transition: right 0.5s;
  }
  .header__nav.is-open {
    right: 0;
  }
}
.header__menu {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__menu-item.mega-menu:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  top: 100%;
}
.header__menu-item.mega-menu .header__menu-link {
  position: relative;
}
.header__menu-item.mega-menu .header__menu-link::before {
  content: "";
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid #515BA7;
  display: none;
  transition: all 0.3s;
}
.header__menu-item.mega-menu .header__menu-link:hover::before {
  display: block;
}
.header__menu-item.mega-menu .header__menu-link.active::before {
  display: block;
}
.header__menu-item.mega-menu .header__menu-link.active::after {
  transform: scale(1, 1);
}
.header__menu-link {
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
  margin: 0 25px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__menu-link {
    font-size: 1rem;
    margin: 0 10px;
  }
}
@media (min-width: 850px) and (max-width: 1023px) {
  .header__menu-link {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .header__menu-link {
    font-size: 1.3rem;
    margin: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .header__menu-link {
    margin: 0 20px;
  }
}
.header__menu-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #515BA7;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.header__menu-link:hover::after {
  transform: scale(1, 1);
}
.header__menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-bottom: 5px;
}
.header__menu-text {
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__menu-mail {
  padding-left: 25px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__menu-mail {
    padding-left: 5px;
  }
  .header__menu-mail .c-btn-mail {
    font-size: 1.6rem;
    min-height: 55px;
    min-width: 200px;
  }
}
.header__menu-mobile {
  overflow: auto;
}
@media (min-width: 768px) {
  .header__menu-mobile {
    display: none;
  }
}
.header__menu-mobile-item {
  margin: 0 30px;
  position: relative;
}
.header__menu-mobile-item.menu-parent > .header__menu-mobile-arrow {
  background-image: url(../images/icons/ic-plus.svg);
  background-color: transparent;
  background-size: cover;
  cursor: pointer;
}
.header__menu-mobile-item.menu-parent > .header__menu-mobile-arrow.active {
  background-image: url(../images/icons/ic-minus.svg);
  background-size: 18px 2px;
}
.header__menu-mobile-link {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.36;
  min-height: 62px;
  display: flex;
  align-items: center;
  position: relative;
}
.header__menu-mobile-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background-color: #F2F5F7;
}
.header__menu-mobile-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #515BA7;
  background-image: url(../images/icons/ic-arrow-right-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 7px 4px;
  display: inline-block;
  position: absolute;
  right: 6px;
  top: 22px;
  z-index: -1;
}
.header__menu-mobile-sub {
  display: none;
}
.header__menu-mobile-sub .header__menu-mobile-item {
  margin: 0;
}
.header__menu-mobile .home-about__images {
  margin-top: 42px;
}
.header__menu-mobile .footer__contact {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 26px;
}
.header__menu-mobile .footer__contact::after {
  height: 391px;
}
.header__submenu {
  position: absolute;
  top: calc(100% - 30px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  padding-top: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.header__submenu-wrap {
  display: flex;
  gap: 47px;
  padding: 25px 100px 55px 65px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(50, 151, 183, 0.25);
}
.header__submenu-wrap::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 30px;
  width: 242px;
  height: 368px;
  background-image: url(../images/index/img-bg-submenu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
.header__submenu-box {
  flex: 1;
}
.header__submenu-box:nth-child(1) {
  width: 298px;
  flex: unset;
  padding-top: 105px;
}
.header__submenu-box-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 12px;
  padding-bottom: 18px;
}
.header__submenu-box-title::before, .header__submenu-box-title::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #515BA7;
  transition: 0.3s ease-in-out;
}
.header__submenu-box-title::after {
  height: 2px;
  width: 0;
}
.header__submenu-box-title:hover::after {
  width: 100%;
}
.header__submenu-box-title:hover .c-btn-view-more {
  background-color: #fff;
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
  border-color: #515BA7;
}
.header__submenu-box-title-text {
  color: #515BA7;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.header__submenu-box-title .c-btn-view-more {
  width: 45px;
  height: 45px;
  background-size: 13px 7px;
  margin-left: auto;
  border: 1px solid transparent;
}
.header__submenu-item {
  padding-top: 22px;
}
.header__submenu-link {
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 15px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.header__submenu-link::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #515BA7;
}
.header__submenu-link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #515BA7;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.header__submenu-link:hover::after {
  width: 100%;
}
.header__submenu-link + .header__submenu-link {
  margin-top: 20px;
}
.header__submenu .c-title.--sm {
  font-size: 3.6rem;
}
.header__submenu .c-title.--sm .c-title__text::before {
  top: 5px;
  left: -13px;
}
.header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    width: 29px;
    height: 19px;
    z-index: 100;
    margin-bottom: 20px;
  }
  .header__hamburger::after {
    content: "menu";
    position: absolute;
    top: calc(100% + 1rem);
    left: calc(50% + 1px);
    transform: translateX(calc(-50% - 0px));
    color: #515BA7;
    font-size: 1rem;
    font-family: "Reem Kufi Fun", sans-serif;
    line-height: 1.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .header__hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #515BA7;
    transition: all 0.5s ease;
  }
  .header__hamburger.is-open {
    width: 27px;
  }
  .header__hamburger.is-open::after {
    content: "close";
  }
  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header__hamburger.is-open span:nth-child(2) {
    display: none;
  }
  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
.header__menubar {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  top: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.c-btn {
  width: 66px;
  height: 66px;
  background-color: #fff;
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 12px;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 768px) {
  .c-btn {
    width: 33px;
    height: 33px;
    background-size: 11px 6px;
  }
}
.c-btn.--sm {
  width: 39px;
  height: 39px;
}
@media (max-width: 768px) {
  .c-btn.--sm {
    width: 26px;
    height: 26px;
    background-size: 13px 13px;
  }
}
.c-btn.--blank {
  background-image: url(../images/icons/ic-square-blue.svg);
  background-size: 19px 19px;
}
.c-btn.--blank2 {
  background-image: url(../images/icons/ic-square-blue-2.svg);
  background-size: 19px 19px;
}
@media (max-width: 768px) {
  .c-btn.--blank2 {
    background-size: 13px 13px;
  }
}
.c-btn.--blank-lg {
  background-size: 22px 22px;
}
@media (max-width: 768px) {
  .c-btn.--blank-lg {
    background-size: 11px 11px;
  }
}

.c-btn-view-more {
  width: 34px;
  height: 34px;
  background-color: #515BA7;
  background-image: url(../images/icons/ic-arrow-right-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 8px;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 768px) {
  .c-btn-view-more {
    width: 17px;
    height: 17px;
    background-size: 7px 4px;
  }
}
.c-btn-view-more.--red {
  background-color: #E81C24;
}
.c-btn-view-more.--white {
  background-color: #fff;
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
}
.c-btn-view-more.--lg {
  width: 47px;
  height: 47px;
  background-size: 20px 11px;
}
@media (max-width: 768px) {
  .c-btn-view-more.--lg {
    width: 23px;
    height: 23px;
    background-size: 10px 6px;
  }
}

.c-btn-read-more {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: 22px;
  position: relative;
  min-width: 137px;
  min-height: 44px;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 14px 30px 14px 20px;
  box-shadow: 0 0 10px 0 rgba(50, 151, 183, 0.25);
  overflow: hidden;
  background-image: url(../images/icons/ic-arrow-right-white-small.svg);
  background-position: center right 16px;
  background-repeat: no-repeat;
  background-size: 10px 6px;
}
.c-btn-read-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #515BA7;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
}
.c-btn-read-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-btn-read-more:hover {
  color: #515BA7;
  background-image: url(../images/icons/ic-arrow-right-blue-small.svg);
  opacity: 1;
}
.c-btn-read-more:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: -1;
}
.c-btn-read-more__text {
  position: relative;
  z-index: 3;
}
.c-btn-read-more.--lg {
  font-size: 2rem;
  border-radius: 35px;
  min-width: 340px;
  min-height: 84px;
  justify-content: center;
  padding: 10px 55px 10px;
  background-image: url(../images/icons/ic-arrow-right-white.svg);
  background-position: center right 30px;
  background-size: 19px 11px;
}
@media (max-width: 768px) {
  .c-btn-read-more.--lg {
    background-position: center right 17px;
    background-size: 11px 6px;
    font-size: 1.4rem;
    border-radius: 20px;
    padding: 10px 35px;
    min-width: 200px;
    min-height: 49px;
  }
}
.c-btn-read-more.--lg:hover {
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
}

.c-btn-go-top {
  width: 56px;
  height: 56px;
  background-color: #fff;
  background-image: url(../images/icons/ic-arrow-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 12px;
  border-radius: 50%;
  display: none;
  position: fixed;
  right: 5px;
  bottom: 40px;
}
.c-btn-go-top.show {
  display: block;
}
@media (max-width: 768px) {
  .c-btn-go-top {
    width: 28px;
    height: 28px;
    background-size: 11px 6px;
    right: 15px;
    bottom: 25px;
  }
}

.c-btn-mail {
  background-color: #F98D21;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.77;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75px;
  min-width: 226px;
  border-radius: 38px;
  box-shadow: 0 0 5px 0 rgba(247, 132, 17, 0.75);
  position: relative;
  overflow: hidden;
  transition: ease 0.2s;
}
.c-btn-mail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-btn-mail:hover {
  color: #F98D21;
}
.c-btn-mail:hover .c-btn-mail__text::before {
  background-image: url(../images/icons/ic-mail-orange.svg);
}
.c-btn-mail:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.c-btn-mail__text {
  position: relative;
  z-index: 3;
  padding-left: 45px;
  display: inline-block;
}
.c-btn-mail__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/icons/ic-mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 17px;
  display: inline-block;
}

.c-slider-nav {
  width: 66px;
  height: 66px;
  background-color: #fff;
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 12px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-slider-nav {
    width: 38px;
    height: 38px;
    background-size: 11px 6px;
  }
}
.c-slider-nav.--prev {
  transform: rotate(180deg);
}

.c-link-blank {
  font-size: 14px;
  letter-spacing: 0.1em;
  max-width: 247px;
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 10px;
  padding-left: 15px;
  border-bottom: 1px solid #949494;
}
.c-link-blank::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 15px;
  background-image: url(/assets/images/icons/ic-square-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
}
.c-link-blank::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  background: #fff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.c-link-blank:hover {
  opacity: 1;
}
.c-link-blank:hover::after {
  width: 100%;
}

.c-title {
  color: #515BA7;
  font-family: "Reem Kufi Fun", sans-serif;
  font-size: 7.7rem;
  letter-spacing: 0.3em;
  line-height: 1.3;
  display: inline-block;
}
@media (max-width: 768px) {
  .c-title {
    font-size: 3.9rem;
  }
}
.c-title__text {
  position: relative;
}
.c-title__text::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 7px;
  background-image: url(../images/index/img-circles-2-small.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 98px;
  height: 96px;
}
@media (max-width: 768px) {
  .c-title__text::after {
    width: 49px;
    height: 48px;
    left: -15px;
    top: 5px;
  }
}
.c-title.--sm {
  font-size: 3.8rem;
}
@media (max-width: 768px) {
  .c-title.--sm {
    font-size: 3.2rem;
  }
}
.c-title.--sm .c-title__text::after {
  top: 10px;
  left: -4px;
  background-image: url(../images/index/img-two-circles-small.png);
  width: 48px;
  height: 46px;
}
@media (max-width: 768px) {
  .c-title.--sm .c-title__text::after {
    width: 39px;
    height: 36px;
  }
}
.c-title.--white {
  color: #fff;
}
.c-title.--white .c-title__text::after {
  filter: brightness(0) invert(1);
}
.c-title.--center {
  text-align: center;
}
.c-title + .c-subtitle {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .c-title + .c-subtitle {
    margin-top: 10px;
  }
}

.c-subtitle {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.6em;
}
@media (max-width: 768px) {
  .c-subtitle {
    font-size: 2rem;
  }
}
.c-subtitle.--white {
  color: #fff;
}

.c-heading__main {
  color: #515BA7;
  font-size: 2.9rem;
  font-family: "Reem Kufi Fun", sans-serif;
  letter-spacing: 0.3em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-heading__main {
    font-size: 1.9rem;
    line-height: 1;
  }
}
.c-heading__sub {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.6em;
  color: #333333;
}
@media (max-width: 768px) {
  .c-heading__sub {
    font-size: 1.5rem;
    margin-top: 5px;
  }
}

.c-heading-2 {
  color: #515BA7;
  font-size: 2.2rem;
  letter-spacing: 0.6em;
  border-bottom: 1px solid #515BA7;
  padding-bottom: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-heading-2 {
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
}

.c-news {
  display: flex;
  align-items: center;
  min-height: 74px;
  font-weight: 500;
  padding: 20px 90px 20px 50px;
  position: relative;
}
.c-news::before, .c-news::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #C7C7C7;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.c-news::after {
  background: #515BA7;
  width: 0;
}
.c-news:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .c-news {
    min-height: 87px;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 15px 25px 20px 0;
  }
}
.c-news__date {
  color: #808080;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .c-news__date {
    font-size: 0.8rem;
  }
}
.c-news__cat {
  color: #515BA7;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  min-width: 134px;
  min-height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 12px;
  margin-right: 25px;
}
@media (max-width: 768px) {
  .c-news__cat {
    min-width: 83px;
    min-height: 17px;
    margin-right: 0;
    font-size: 0.8rem;
  }
}
.c-news__cat.cat-2 {
  color: #00A498;
  border-color: #00A498;
}
.c-news__cat.cat-3 {
  color: #29A6DD;
  border-color: #29A6DD;
}
.c-news__title {
  color: #515BA7;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.73;
}
@media (max-width: 768px) {
  .c-news__title {
    font-size: 1.1rem;
  }
}
.c-news .c-btn-view-more {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .c-news .c-btn-view-more {
    right: 6px;
    bottom: 22px;
    top: auto;
    transform: none;
  }
}

.c-page-banner {
  margin-top: 215px;
  position: relative;
}
.c-page-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 65px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/about/img-pattern-1.png);
  width: 622px;
  height: 368px;
}
@media (max-width: 768px) {
  .c-page-banner::before {
    background-image: url(../images/about/img-pattern-1-sp.png);
    width: 316px;
    height: 187px;
    left: auto;
    bottom: auto;
    right: -41px;
    top: -50px;
  }
}
.c-page-banner::after {
  content: "";
  position: absolute;
  right: -154px;
  bottom: -276px;
  width: calc(50vw + 58px);
  height: calc(50vw + 58px);
  background-image: url(../images/index/img-circles.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .c-page-banner::after {
    width: 399px;
    height: 399px;
    right: -145px;
    bottom: auto;
    top: -50px;
  }
}
@media (max-width: 768px) {
  .c-page-banner {
    margin-top: 125px;
  }
}
.c-page-banner__box {
  position: relative;
  padding-left: 150px;
}
@media (max-width: 768px) {
  .c-page-banner__box {
    padding-left: 0;
  }
}
.c-page-banner__title {
  font-size: 9.4rem;
  line-height: 0.9;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-page-banner__title {
    font-size: 4rem;
    line-height: 1.1;
  }
}
.c-page-banner__title .c-title__text::after {
  left: -12px;
  top: 32px;
}
@media (max-width: 768px) {
  .c-page-banner__title .c-title__text::after {
    left: -6px;
    top: 8px;
  }
}
.c-page-banner__subtitle {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .c-page-banner__subtitle {
    font-size: 1.8rem;
  }
}
.c-page-banner__image {
  position: absolute;
  top: -10px;
  right: 210px;
}
@media (max-width: 768px) {
  .c-page-banner__image {
    position: static;
    margin-top: 25px;
    text-align: center;
  }
  .c-page-banner__image img {
    width: 112px;
  }
}
.c-page-banner__breadcrumb {
  padding-top: 115px;
}
@media (max-width: 768px) {
  .c-page-banner__breadcrumb {
    display: none;
  }
}
.c-page-banner__anchor {
  margin-top: 15px;
  max-width: 910px;
  width: 100%;
  margin-left: auto;
  position: relative;
  right: -25px;
  border-radius: 10px 0 0 10px;
}
.c-page-banner__anchor::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .c-page-banner__anchor::before {
    content: none;
  }
}
@media (max-width: 768px) {
  .c-page-banner__anchor {
    margin-top: 20px;
    right: 0;
  }
}

.c-breadcrumb__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-breadcrumb__item {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  position: relative;
}
.c-breadcrumb__item:not(:first-child) {
  margin-left: 18px;
  padding-left: 18px;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "/";
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
}
.c-breadcrumb__link {
  color: #666666;
}
.c-breadcrumb__text {
  color: #666666;
}

.c-anchor {
  background-color: #fff;
  padding: 25px;
}
@media (max-width: 768px) {
  .c-anchor {
    padding: 8px 12px;
    width: calc(100% + 25px);
    margin-left: -12.5px;
    margin-right: -12.5px;
    border-radius: 5px;
  }
}
.c-anchor__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  gap: 8px 16px;
}
@media (max-width: 768px) {
  .c-anchor__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 11px;
  }
}
.c-anchor__item {
  border-bottom: 1px solid #C7C7C7;
}
.c-anchor__link {
  color: #515BA7;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  padding: 15px 35px 10px 5px;
  position: relative;
}
.c-anchor__link::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 10px;
  background-image: url(../images/icons/ic-arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 25px;
  height: 25px;
}
@media (max-width: 768px) {
  .c-anchor__link::after {
    width: 18px;
    height: 18px;
    bottom: 7px;
  }
}
@media (max-width: 768px) {
  .c-anchor__link {
    font-size: 1.3rem;
    line-height: 1.3;
    padding: 8px 25px 8px 5px;
  }
}

.home-banner {
  position: relative;
}
.home-banner::before, .home-banner::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
.home-banner::before {
  right: -276px;
  bottom: calc(100% - 350px);
  width: calc(50vw + 58px);
  height: calc(50vw + 58px);
  background-image: url(../images/index/img-circles.png);
}
@media (max-width: 768px) {
  .home-banner::before {
    width: calc(100vw + 39px);
    height: calc(100vw + 39px);
    bottom: auto;
    top: -60px;
  }
}
.home-banner::after {
  left: 8px;
  top: -180px;
  width: calc(50vw - 139px);
  height: 395px;
  background-image: url(../images/index/img-pattern-6.png);
}
@media (max-width: 768px) {
  .home-banner::after {
    width: 300px;
    height: 197px;
    top: -60px;
    left: -41px;
  }
}
.home-banner__container {
  max-width: 1420px;
}
@media (max-width: 768px) {
  .home-banner__container {
    padding: 0 25px;
  }
}
.home-banner__wrap {
  position: relative;
}
@media (max-width: 768px) {
  .home-banner__wrap {
    padding-bottom: 116px;
  }
}
.home-banner__title {
  font-size: 4.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.65;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-banner__title {
    font-size: 3.8rem;
  }
}
@media (max-width: 768px) {
  .home-banner__title {
    font-size: 2.5rem;
    line-height: 1.58;
  }
}
.home-banner__content {
  margin-top: 15px;
  max-width: 367px;
  color: #333333;
}
@media (max-width: 768px) {
  .home-banner__content {
    max-width: 100%;
    line-height: 1.64;
  }
}
.home-banner__box {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.home-banner__box::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(calc(-50% + 35px));
  width: 618px;
  height: 406px;
  background-image: url(../images/index/img-pattern-5.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  .home-banner__box::before {
    width: 309px;
    height: 203px;
    bottom: -132px;
    left: auto;
    transform: none;
    right: -36px;
  }
}
@media (max-width: 768px) {
  .home-banner__box {
    flex-direction: column;
  }
}
.home-banner__text {
  position: absolute;
  left: 125px;
  top: -40px;
  z-index: 1;
}
@media (max-width: 768px) {
  .home-banner__text {
    position: static;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .home-banner__image {
    width: calc(100vw - 3px);
    position: relative;
    left: -7px;
  }
}
.home-banner__product {
  position: absolute;
  left: 65px;
  bottom: 50px;
}
@media (max-width: 768px) {
  .home-banner__product {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 259px;
  }
}
.home-banner__product img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .home-banner__product img {
    border-radius: 5px;
    aspect-ratio: 259/134;
  }
}
.home-banner__product .c-btn {
  position: absolute;
  bottom: 15px;
  right: 10px;
}
@media (max-width: 768px) {
  .home-banner__product .c-btn {
    bottom: 7px;
    right: 5px;
  }
}
.home-banner__product::before {
  content: "";
  position: absolute;
  top: 55px;
  right: calc(100% - 142px);
  width: 50vw;
  height: 344px;
  background-color: #515BA7;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  .home-banner__product::before {
    height: 137px;
    top: 10px;
    right: calc(100% - 60px);
  }
}
.home-banner__product::after {
  content: "";
  position: absolute;
  top: -188px;
  left: 50%;
  transform: translateX(calc(-50% - 30px));
  width: 718px;
  height: 718px;
  background-image: url(../images/index/img-circles-small.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -2;
}
@media (max-width: 768px) {
  .home-banner__product::after {
    width: 359px;
    height: 359px;
    top: -164px;
    right: 38px;
    left: auto;
    transform: none;
  }
}
.home-banner__scrolldown {
  position: absolute;
  left: 30px;
  top: 110px;
  height: 146px;
}
.home-banner__scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 146px;
  background: #515BA7;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media (max-width: 768px) {
  .home-banner__scrolldown {
    display: none;
  }
}
.home-banner__line {
  height: 4px;
  width: calc(100vw + 70px);
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% + 130px)) translateY(237px) rotate(-30deg);
  z-index: -1;
}
@media (max-width: 768px) {
  .home-banner__line {
    height: 2px;
    transform: translateX(calc(-50% + 0px)) translateY(-185px) rotate(-30deg);
  }
}
.home-banner__line.active::before {
  animation: pathmove-line 2s;
}
.home-banner__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(81, 91, 167) 0%, rgb(41, 166, 221) 100%);
}
.home-banner__news {
  max-width: 948px;
  margin-top: 20px;
  margin-left: auto;
  background-color: #fff;
  border-radius: 4px;
}
@media only screen and (min-width: 1400px) {
  .home-banner__news {
    margin-right: 145px;
  }
}
@media (max-width: 768px) {
  .home-banner__news {
    margin-right: 0;
    margin-top: 55px;
  }
}
.home-banner__news-link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px 50px 12px 25px;
  min-height: 62px;
}
.home-banner__news-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #F2F5F7;
  border-radius: 4px;
  width: 100%;
  height: 8px;
}
@media (max-width: 768px) {
  .home-banner__news-link::before {
    border-radius: 2px;
    height: 4px;
  }
}
@media (max-width: 768px) {
  .home-banner__news-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 25px 20px 0px;
  }
}
.home-banner__news-link .c-btn-view-more {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .home-banner__news-link .c-btn-view-more {
    right: 6px;
    bottom: 22px;
    top: auto;
    transform: none;
  }
}
.home-banner__news-noti {
  color: #E81C24;
  letter-spacing: 0.1em;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.73;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .home-banner__news-noti {
    font-size: 1.5rem;
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 14px;
  }
}
.home-banner__news-date {
  color: #4D4D4D;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .home-banner__news-date {
    font-size: 0.8rem;
  }
}
.home-banner__news-title {
  color: #000;
  letter-spacing: 0.3em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .home-banner__news-title {
    margin-top: 5px;
    font-size: 1.1rem;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 146px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 146px;
    opacity: 0;
  }
}
@keyframes pathmove-line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.home-news {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .home-news {
    padding-top: 22px;
  }
  .home-news__btn-sp {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.home-news__read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-news__btn {
  position: absolute;
  right: 50px;
  bottom: -5px;
}
@media (max-width: 768px) {
  .home-news__btn {
    display: none;
  }
}
.home-news__list {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .home-news__list {
    margin-top: 0;
  }
}

.home-business {
  padding-top: 175px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 768px) {
  .home-business {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
.home-business::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 5px;
  width: 618px;
  height: 406px;
  background-image: url(../images/index/img-pattern-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -2;
}
@media (max-width: 768px) {
  .home-business::before {
    width: 309px;
    height: 203px;
    top: -33px;
    left: -56px;
  }
}
.home-business::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -68px;
  width: 649px;
  height: 425px;
  background-image: url(../images/index/img-pattern-4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  .home-business::after {
    bottom: -29px;
    right: -79px;
    width: 324px;
    height: 212px;
  }
}
.home-business__box {
  position: relative;
}
@media (min-width: 768px) {
  .home-business__box {
    padding-left: 50px;
  }
}
.home-business__content {
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .home-business__content {
    margin-top: 15px;
    max-width: 204px;
  }
}
.home-business__image {
  position: absolute;
  top: -70px;
  left: calc(100% - 405px);
  width: calc(50vw - 60px);
  height: 506px;
  z-index: -1;
}
@media (max-width: 768px) {
  .home-business__image {
    width: calc(50vw - 53px);
    height: 95px;
    left: auto;
    right: -60px;
    top: auto;
    bottom: -5px;
  }
}
.home-business__image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .home-business__image img {
    border-radius: 5px;
  }
}
.home-business__news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .home-business__news {
    margin-top: 35px;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-business__post {
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(120, 155, 163, 0.35);
  padding: 40px 25px 25px;
  position: relative;
}
@media (max-width: 768px) {
  .home-business__post {
    border-radius: 5px;
    padding: 20px 14px 15px;
  }
}
.home-business__post:hover img {
  transform: scale(1.1);
}
.home-business__post:hover .home-business__post-btn {
  background-color: #fff;
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
  border: 1px solid #515BA7;
}
.home-business__post-thumb {
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .home-business__post-thumb {
    position: absolute;
    margin-bottom: 0;
    height: 100px;
    margin-left: 10px;
  }
}
.home-business__post-thumb img {
  transition: 0.3s;
}
@media (max-width: 768px) {
  .home-business__post-thumb img {
    height: 100px;
  }
}
.home-business__post-content {
  position: relative;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .home-business__post-content {
    padding-left: 125px;
    padding-right: 10px;
  }
}
.home-business__post-title {
  color: #515BA7;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
  font-weight: 500;
}
@media (max-width: 768px) {
  .home-business__post-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }
}
.home-business__post-subtitle {
  color: #C7C7C7;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .home-business__post-subtitle {
    font-size: 0.9rem;
    line-height: 1.1;
    word-break: break-word;
  }
}
.home-business__post-desc {
  border-top: 1px solid #0071B7;
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1.7;
  margin-top: 25px;
  padding: 15px 10px 0px;
  text-align: justify;
}
@media (max-width: 768px) {
  .home-business__post-desc {
    font-size: 1.2rem;
    line-height: 1.45;
    padding: 10px 9px 0px 3px;
    margin-top: 15px;
  }
}
.home-business__post-btn {
  width: 76px;
  height: 76px;
  background-color: #515BA7;
  background-image: url(../images/icons/ic-arrow-right-white.svg);
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .home-business__post-btn {
    width: 40px;
    height: 40px;
    right: 10px;
    top: 55px;
  }
}
.home-business__post:nth-child(2) {
  padding-bottom: 25px;
}
.home-business__post:nth-child(2) .home-business__post-title {
  color: #0071b7;
}
.home-business__post:nth-child(2) .home-business__post-btn {
  background-color: #0071B7;
}
.home-business__post:nth-child(2):hover .home-business__post-btn {
  background-color: #fff;
  border-color: #0071B7;
}
.home-business__post:nth-child(2) .home-business__post-desc {
  border-color: #0071B7;
}
@media (min-width: 768px) {
  .home-business__post:nth-child(2) .home-business__post-desc {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .home-business__post:nth-child(2) .home-business__post-desc {
    padding-top: 15px;
    margin-top: 31px;
  }
}
@media (max-width: 768px) {
  .home-business__post:nth-child(2) .home-business__post-subtitle {
    margin-top: 20px;
  }
}

.home-reason {
  color: #fff;
  padding-top: 80px;
  background-image: url(../images/index/img-bg-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .home-reason {
    padding-top: 40px;
    background-image: url(../images/index/img-bg-1-sp.png);
  }
}
.home-reason__wrapper {
  position: relative;
}
.home-reason__slider {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .home-reason__slider {
    margin-top: 30px;
  }
}
.home-reason__slider .c-slider-nav {
  position: absolute;
  top: 95px;
}
.home-reason__slider .c-slider-nav.--prev {
  right: calc(100% - 13px);
}
.home-reason__slider .c-slider-nav.--next {
  left: calc(100% - 13px);
}
.home-reason__item {
  display: flex;
  gap: 170px;
  margin-bottom: 147px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-reason__item {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .home-reason__item {
    flex-direction: column;
    gap: 45px;
    margin-bottom: 40px;
  }
}
.home-reason__item-image {
  width: 527px;
  height: 454px;
  position: relative;
}
.home-reason__item-image::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -52px;
  width: 531px;
  height: 520px;
  background-image: url(../images/index/img-circles-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-reason__item-image::before {
    width: 431px;
    height: 420px;
    right: -30px;
  }
}
@media (max-width: 768px) {
  .home-reason__item-image::before {
    top: 5px;
    right: -18px;
    width: 265px;
    height: 260px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-reason__item-image {
    width: 427px;
    height: 354px;
  }
}
.home-reason__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .home-reason__item-image {
    width: calc(100% - 36px);
    height: 227px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home-reason__item-text {
  flex: 1;
  padding-top: 65px;
}
@media (max-width: 768px) {
  .home-reason__item-text {
    padding-top: 0;
  }
}
.home-reason__item-title {
  position: relative;
  padding-left: 110px;
}
@media (max-width: 768px) {
  .home-reason__item-title {
    padding-left: 50px;
  }
}
.home-reason__item-title-number {
  font-size: 7.7rem;
  font-family: "Reem Kufi Fun", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.3em;
  position: absolute;
  left: 0;
  top: -18px;
}
@media (max-width: 768px) {
  .home-reason__item-title-number {
    font-size: 3.9rem;
  }
}
.home-reason__item-title-text {
  font-size: 3.1rem;
  font-weight: bold;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .home-reason__item-title-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.home-reason__item-content {
  letter-spacing: 0.1em;
  line-height: 2.06;
  font-weight: 500;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .home-reason__item-content {
    margin-top: 20px;
    line-height: 1.9;
  }
}
.home-reason .c-title__text::before {
  left: -20px;
  top: 15px;
}
@media (max-width: 768px) {
  .home-reason .c-title__text::before {
    left: -17px;
    top: 10px;
  }
}
.home-reason .slider-nav {
  display: flex;
  gap: 23px;
  position: absolute;
  right: 0;
  bottom: 157px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-reason .slider-nav {
    bottom: 60px;
  }
}
@media (max-width: 768px) {
  .home-reason .slider-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .home-reason .slider-dots {
    position: absolute;
    right: 24px;
    bottom: calc(100% + 50px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-reason .slider-dots {
    bottom: calc(100% + 10px);
  }
}
@media (max-width: 768px) {
  .home-reason .slider-dots {
    margin-top: 20px;
  }
}
.home-reason .slider-dots .slick-dots {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .home-reason .slider-dots .slick-dots {
    gap: 16px;
  }
}
.home-reason .slider-dots .slick-dots li {
  min-width: 79px;
  text-align: center;
  position: relative;
}
.home-reason .slider-dots .slick-dots li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.home-reason .slider-dots .slick-dots li.slick-active::before {
  bottom: -1px;
  height: 3px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-reason .slider-dots .slick-dots li {
    min-width: 60px;
  }
}
@media (max-width: 768px) {
  .home-reason .slider-dots .slick-dots li {
    min-width: 63px;
  }
}
.home-reason .slider-dots .slick-dots button {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  font-family: "Reem Kufi Fun", sans-serif;
  line-height: 1.7;
  color: #fff;
}
@media (max-width: 768px) {
  .home-reason .slider-dots .slick-dots button {
    font-size: 1.9rem;
  }
}

.home-works {
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.home-works::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  width: 618px;
  height: 406px;
  background-image: url(../images/index/img-pattern-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  .home-works::before {
    right: -29px;
    width: 308px;
    height: 202px;
  }
}
@media (max-width: 768px) {
  .home-works {
    padding-top: 56px;
  }
}
.home-works__content {
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .home-works__content {
    margin-top: 10px;
    line-height: 1.75;
  }
}
.home-works__box {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 65px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__box {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .home-works__box {
    margin-top: 20px;
  }
}
.home-works__menu {
  width: 380px;
  position: relative;
  padding: 10px 50px 62px 0;
}
.home-works__menu::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #F2F5F7;
  width: 50vw;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}
.home-works__menu::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 270px;
  background-image: url(../images/index/img-circles.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 620px;
  height: 620px;
  z-index: -2;
}
.home-works__menu-link {
  display: flex;
  align-items: flex-end;
  min-height: 84px;
  position: relative;
  border-bottom: 1px solid #515BA7;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #515BA7;
  padding: 10px 30px 10px 2px;
}
.home-works__menu-link::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 15px;
  background-image: url(../images/icons/ic-arrow-right-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__menu-link {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__menu {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .home-works__menu {
    display: none;
  }
}
.home-works__news {
  flex: 1;
  padding-right: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 105px 63px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__news {
    padding-right: 25px;
    gap: 105px 40px;
  }
}
@media (max-width: 768px) {
  .home-works__news {
    padding-left: 13px;
    padding-right: 27px;
    grid-template-columns: repeat(1, 1fr);
    gap: 55px 0;
  }
}
.home-works__post {
  color: #fff;
  position: relative;
}
.home-works__post:hover {
  opacity: 1;
}
.home-works__post:hover img {
  transform: scale(1.1);
}
.home-works__post-thumb {
  aspect-ratio: 408/273;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-works__post-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.home-works__post-title {
  position: absolute;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  bottom: 0;
  left: 0;
  padding: 20px 15px 20px 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__post-title {
    font-size: 1.4rem;
    padding: 12px 10px 12px 12px;
  }
}
@media (max-width: 768px) {
  .home-works__post-title {
    font-size: 1.4rem;
    padding: 12px 10px 12px 12px;
  }
}
.home-works__post-text {
  position: absolute;
  left: 12px;
  top: 20px;
  width: calc(100% + 11px);
  height: calc(100% + 37px);
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 15px 30px;
  overflow: hidden;
}
.home-works__post-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(81, 91, 167) 0%, rgb(41, 166, 221) 100%);
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__post-text {
    padding: 15px 20px;
  }
}
@media (max-width: 768px) {
  .home-works__post-text {
    left: 7px;
    top: 13px;
    width: calc(100% + 14px);
    height: calc(100% + 23px);
    border-radius: 7px;
    padding: 8px 18px;
  }
}
.home-works__post-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__post-content {
    gap: 0px 15px;
    flex-wrap: wrap;
  }
}
.home-works__post-date {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.78;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__post-date {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .home-works__post-date {
    font-size: 0.9rem;
  }
}
.home-works__post-cat {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.73;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-works__post-cat {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .home-works__post-cat {
    font-size: 1rem;
  }
}
.home-works__post .c-btn-view-more {
  position: absolute;
  right: 22px;
  bottom: 12px;
}
@media (max-width: 768px) {
  .home-works__post .c-btn-view-more {
    bottom: 8px;
  }
}
.home-works__btn {
  margin-top: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .home-works__btn {
    margin-top: 65px;
  }
}
.home-works .c-title__text::before {
  left: 0;
}
@media (max-width: 768px) {
  .home-works .c-title__text::before {
    left: -5px;
    top: 6px;
  }
}

.home-about {
  padding-top: 140px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .home-about {
    padding-top: 120px;
    padding-bottom: 28px;
  }
}
.home-about__wrapper {
  max-width: 723px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.home-about__wrapper::before {
  content: "";
  position: absolute;
  bottom: -132px;
  left: 50%;
  transform: translateX(-50%);
  width: 965px;
  height: 633px;
  background-image: url(../images/index/img-pattern-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  .home-about__wrapper::before {
    bottom: -76px;
    width: 400px;
    height: 263px;
  }
}
.home-about__wrapper::after {
  content: "";
  position: absolute;
  bottom: -82px;
  right: -232px;
  width: 484px;
  height: 484px;
  background-image: url(../images/index/img-circles.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -1;
}
.home-about__box {
  box-shadow: 0 0 10px 0 rgba(120, 155, 163, 0.35);
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
}
.home-about__box:hover {
  opacity: 0.6;
}
.home-about__box::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: 2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(90deg, rgb(81, 91, 167) 0%, rgb(41, 166, 221) 100%);
  z-index: -1;
  border-radius: 10px;
}
.home-about__box::after {
  content: "";
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/icons/ic-favicon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 80px;
  height: 78px;
  z-index: 1;
}
@media (max-width: 768px) {
  .home-about__box::after {
    left: 16px;
    width: 40px;
    height: 39px;
  }
}
@media (max-width: 768px) {
  .home-about__box {
    border-radius: 4px;
  }
}
.home-about__box-inner {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-left: 215px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: inherit;
  display: block;
}
.home-about__box-inner:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .home-about__box-inner {
    padding-left: 83px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 8px;
  }
}
.home-about__box-title {
  letter-spacing: 0.3em;
  font-size: 4.3rem;
  font-family: "Reem Kufi Fun", sans-serif;
  line-height: 1.3;
  color: #515BA7;
}
@media (max-width: 768px) {
  .home-about__box-title {
    font-size: 2.2rem;
  }
}
.home-about__box-subtitle {
  letter-spacing: 0.2em;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.73;
}
@media (max-width: 768px) {
  .home-about__box-subtitle {
    font-size: 1.2rem;
  }
}
.home-about__img-user {
  position: absolute;
  top: -68px;
  right: calc(100% + 15px);
}
@media only screen and (max-width: 1200px) {
  .home-about__img-user {
    right: auto;
    left: 3px;
    z-index: -2;
    top: -140px;
  }
}
@media (max-width: 768px) {
  .home-about__img-user {
    top: -68px;
    width: 97px;
    height: 94px;
  }
}
.home-about__img-product-1 {
  position: absolute;
  bottom: calc(100% + 3px);
  left: calc(100% + 8px);
}
@media only screen and (max-width: 1200px) {
  .home-about__img-product-1 {
    left: auto;
    bottom: calc(100% + 25px);
    right: 160px;
  }
}
@media (max-width: 768px) {
  .home-about__img-product-1 {
    right: 78px;
    width: 41px;
    height: 51px;
  }
}
.home-about__img-product-2 {
  position: absolute;
  bottom: 8px;
  left: calc(100% + 75px);
}
@media only screen and (max-width: 1200px) {
  .home-about__img-product-2 {
    left: auto;
    bottom: 100%;
    left: auto;
    right: 0;
    z-index: -2;
  }
}
@media (max-width: 768px) {
  .home-about__img-product-2 {
    width: 64px;
    height: 74px;
  }
}
.home-about__images {
  margin-top: 130px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
@media (max-width: 768px) {
  .home-about__images {
    margin-top: 90px;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
.home-about__images-link {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.home-about__images-link .c-btn {
  position: absolute;
  right: 28px;
  bottom: 120px;
}
@media (max-width: 768px) {
  .home-about__images-link .c-btn {
    right: 14px;
    bottom: 60px;
  }
}
.home-about__images-link:nth-child(2) .home-about__images-logo,
.home-about__images-link:nth-child(2) .home-about__images-text {
  left: 40px;
}
@media (max-width: 768px) {
  .home-about__images-link:nth-child(2) .home-about__images-logo,
  .home-about__images-link:nth-child(2) .home-about__images-text {
    left: 20px;
  }
}
.home-about__images-link:nth-child(2) .home-about__images-logo {
  width: 78px;
}
.home-about__images-link:nth-child(2) .c-btn {
  right: 38px;
}
@media (max-width: 768px) {
  .home-about__images-link:nth-child(2) .c-btn {
    right: 19px;
  }
}
.home-about__images-link img {
  transition: 0.3s;
}
.home-about__images-link:hover img {
  transform: scale(1.1);
}
.home-about__images-img {
  height: 341px;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .home-about__images-img {
    height: 170px;
  }
}
.home-about__images-logo {
  top: 40px;
  left: 55px;
  position: absolute;
}
@media (max-width: 768px) {
  .home-about__images-logo {
    left: 23px;
    top: 20px;
    width: 112px;
  }
}
.home-about__images-text {
  position: absolute;
  left: 55px;
  bottom: 130px;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1.57;
}
@media (max-width: 768px) {
  .home-about__images-text {
    font-size: 1.4rem;
    line-height: 1.46;
    bottom: 65px;
    left: 23px;
  }
}
.home-about .c-btn-view-more {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
@media (max-width: 768px) {
  .home-about .c-btn-view-more {
    right: 20px;
  }
}

.about-greeting {
  padding-top: 55px;
  position: relative;
}
.about-greeting::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  width: 622px;
  height: 368px;
  background-image: url(../images/about/img-pattern-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -2;
}
@media (max-width: 768px) {
  .about-greeting::before {
    width: 266px;
    height: 158px;
  }
}
.about-greeting::after {
  content: "";
  position: absolute;
  bottom: -115px;
  left: 0;
  width: 548px;
  height: 324px;
  background-image: url(../images/about/img-pattern-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  z-index: -2;
}
@media (max-width: 768px) {
  .about-greeting::after {
    width: 275px;
    height: 162px;
    bottom: -60px;
  }
}
.about-greeting__text {
  margin-top: 80px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.6em;
}
@media (max-width: 768px) {
  .about-greeting__text {
    margin-top: 25px;
    font-size: 1.5rem;
    line-height: 1.75;
  }
}
.about-greeting__box {
  margin-top: 75px;
  display: flex;
  gap: 70px;
}
@media (max-width: 768px) {
  .about-greeting__box {
    margin-top: 12px;
    flex-direction: column;
    gap: 30px;
  }
}
.about-greeting__content {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  color: #4D4D4D;
  width: 567px;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-greeting__content {
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.73;
  }
}
.about-greeting__image {
  flex: 1;
}
.about-greeting__image-inner {
  width: calc(100% + 100px);
}
@media (max-width: 768px) {
  .about-greeting__image-inner {
    width: 100%;
    max-width: 232px;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-greeting__img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about-greeting__img {
    border-radius: 5px;
  }
}
.about-greeting__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-greeting__img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  letter-spacing: 0.6em;
  line-height: 1.75;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .about-greeting__img-text {
    font-size: 1.5rem;
  }
}
.about-greeting__img-caption {
  margin-top: 25px;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-align: right;
}
@media (max-width: 768px) {
  .about-greeting__img-caption {
    margin-top: 15px;
    font-size: 1.2rem;
  }
}
.about-greeting__img-caption span {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .about-greeting__img-caption span {
    font-size: 1.5rem;
  }
}

.about-policy {
  padding-top: 130px;
}
@media (max-width: 768px) {
  .about-policy {
    padding-top: 100px;
  }
}
.about-policy__list {
  margin-top: 50px;
  position: relative;
}
.about-policy__list::before {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -290px;
  background-image: url(../images/icons/ic-favicon-xl.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 516px;
  height: 506px;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  .about-policy__list::before {
    width: 198px;
    height: 194px;
    bottom: 0;
    right: -30px;
    top: 130px;
  }
}
@media (max-width: 768px) {
  .about-policy__list {
    margin-top: 25px;
  }
}
.about-policy__item {
  text-align: center;
  font-weight: 500;
}
.about-policy__item + .about-policy__item {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .about-policy__item + .about-policy__item {
    margin-top: 30px;
  }
}
.about-policy__item-title {
  color: #515BA7;
  font-size: 2.2rem;
  letter-spacing: 0.6em;
  border-bottom: 1px solid #515BA7;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .about-policy__item-title {
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
}
.about-policy__item-content {
  font-size: 1.7rem;
  letter-spacing: 0.3em;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .about-policy__item-content {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}

.about-company {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .about-company {
    margin-top: 90px;
  }
}
.about-company__table {
  margin-top: 77px;
}
@media (max-width: 768px) {
  .about-company__table {
    margin-top: 10px;
  }
}
.about-company__item {
  display: flex;
  gap: 34px;
}
@media (max-width: 768px) {
  .about-company__item {
    flex-direction: column;
    gap: 0;
  }
}
.about-company__item-left, .about-company__item-right {
  min-height: 88px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #C7C7C7;
  padding-top: 22px;
  padding-bottom: 22px;
  line-height: 1.75;
}
.about-company__item-left.align-baseline, .about-company__item-right.align-baseline {
  align-items: baseline;
}
@media (max-width: 768px) {
  .about-company__item-left, .about-company__item-right {
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.about-company__item-left {
  width: 175px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.6em;
  color: #515BA7;
}
@media (max-width: 768px) {
  .about-company__item-left {
    width: 100%;
    font-size: 1.3rem;
  }
  .about-company__item-left:empty {
    display: none;
  }
}
.about-company__item-right {
  flex: 1;
  padding-left: 25px;
  padding-right: 25px;
  letter-spacing: 0.05em;
  color: #333333;
}
@media (max-width: 768px) {
  .about-company__item-right {
    width: 100%;
    flex: unset;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.73;
  }
}
.about-company__item-flex {
  display: flex;
}
@media (max-width: 768px) {
  .about-company__item-flex {
    flex-direction: column;
  }
}
.about-company__item-flex p:nth-child(1) {
  min-width: 165px;
}
@media (max-width: 768px) {
  .about-company__item-flex p:nth-child(1) {
    min-width: 100%;
  }
}
.about-company__map {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .about-company__map {
    margin-top: 20px;
  }
}
.about-company__map-box > * {
  border-radius: 10px;
  width: 100%;
  height: 447px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .about-company__map-box > * {
    border-radius: 5px;
    height: 134px;
  }
}
.about-company__map-caption {
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .about-company__map-caption {
    margin-top: 5px;
  }
}

.about-maker {
  padding-top: 140px;
  padding-bottom: 105px;
}
@media (max-width: 768px) {
  .about-maker {
    padding-top: 95px;
    padding-bottom: 45px;
  }
}
.about-maker__gallery {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 62px 16px;
}
@media (max-width: 768px) {
  .about-maker__gallery {
    margin-top: 45px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
.about-maker__content {
  margin-top: 75px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-maker__content {
    margin-top: 45px;
  }
}

.about-history {
  padding-top: 75px;
  padding-bottom: 100px;
  background-image: url(/assets/images/about/img-bg-history.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .about-history {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .about-history__row {
    justify-content: center;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    gap: 19px;
  }
  .about-history__row > div {
    padding: 0 !important;
    flex: 0 0 calc(50% - 10px);
  }
}
.about-history__list {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about-history__list {
    margin-top: 30px;
  }
}
.about-history__box {
  display: flex;
}
@media (max-width: 768px) {
  .about-history__box {
    flex-direction: column;
  }
}
.about-history__box-left {
  flex: 1;
}
.about-history__box-right {
  width: 253px;
  padding-top: 123px;
}
@media (max-width: 768px) {
  .about-history__box-right {
    width: 100%;
    padding-top: 25px;
  }
}
.about-history__item {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (max-width: 768px) {
  .about-history__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.about-history__item + .about-history__item {
  margin-top: 10px;
}
.about-history__item-left {
  color: #515BA7;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  letter-spacing: 0.1em;
  min-width: 180px;
}
.about-history__item-year {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .about-history__item-year {
    font-size: 2.5rem;
  }
}
.about-history__item-year span {
  font-size: 2.1rem;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .about-history__item-year span {
    font-size: 1.7rem;
    margin-left: 5px;
  }
}
.about-history__item-number {
  font-size: 1.8rem;
  position: relative;
  top: 3px;
}
@media (max-width: 768px) {
  .about-history__item-number {
    font-size: 1.5rem;
  }
}
.about-history__item-right {
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.about-history__image img {
  aspect-ratio: 253/188;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .about-history__image img {
    aspect-ratio: 170/127;
  }
}
.about-history__image-caption {
  letter-spacing: 0.05em;
  margin-top: 5px;
  text-align: center;
}

.about-activity {
  padding-top: 140px;
  padding-bottom: 108px;
  position: relative;
}
.about-activity::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 840px;
  height: 497px;
  background-image: url(../images/about/img-pattern-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .about-activity::before {
    background-image: url(../images/about/img-pattern-2-sp.png);
    width: 227px;
    height: 149px;
    right: -2px;
    top: 17px;
  }
}
@media (max-width: 768px) {
  .about-activity {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
.about-activity__wrapper {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .about-activity__wrapper {
    margin-top: 40px;
  }
}
.about-activity__logo {
  margin-top: 105px;
  text-align: center;
}
@media (max-width: 768px) {
  .about-activity__logo {
    margin-top: 38px;
  }
}
.about-activity__box {
  margin-top: 155px;
}
@media (max-width: 768px) {
  .about-activity__box {
    margin-top: 45px;
  }
}
.about-activity__item {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .about-activity__item {
    gap: 20px;
    flex-direction: column;
  }
}
.about-activity__item-image {
  width: 449px;
}
@media (max-width: 768px) {
  .about-activity__item-image {
    max-width: 225px;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-activity__item-image img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .about-activity__item-image img {
    border-radius: 5px;
  }
}
.about-activity__item-text {
  flex: 1;
}
@media (max-width: 768px) {
  .about-activity__item-text {
    flex: unset;
    width: 100%;
  }
}
.about-activity__item-title {
  letter-spacing: 0.3em;
  font-size: 2.5rem;
  font-weight: 500;
  color: #333;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .about-activity__item-title {
    font-size: 1.5rem;
  }
}
.about-activity__item-des {
  margin-top: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #4D4D4D;
}
@media (max-width: 768px) {
  .about-activity__item-des {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .about-activity__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.about-activity__item + .about-activity__item {
  margin-top: 88px;
}
@media (max-width: 768px) {
  .about-activity__item + .about-activity__item {
    margin-top: 45px;
  }
}

.about-partner {
  padding-top: 90px;
  padding-bottom: 150px;
  position: relative;
}
.about-partner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-color: #F4F4F4;
}
@media (max-width: 768px) {
  .about-partner {
    padding-top: 45px;
    padding-bottom: 65px;
  }
}
.about-partner__box {
  margin-top: 75px;
}
@media (max-width: 768px) {
  .about-partner__box {
    margin-top: 30px;
  }
}
.about-partner__title {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .about-partner__title {
    font-size: 1.5rem;
  }
}
.about-partner__des {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .about-partner__des {
    margin-top: 15px;
  }
}
.about-partner__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  z-index: 1;
}
.about-partner__btn .c-btn-read-more {
  min-height: 63px;
  min-width: 255px;
  border-radius: 31px;
  background-position: center right 22px;
  background-size: 14px 8px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .about-partner__btn .c-btn-read-more {
    min-height: 50px;
    min-width: 202px;
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=style.css.map */