@charset "UTF-8";
:root {
  --header-h: 60px;
  --header-h-scrolled: 40px;
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: auto;
}
body {
  margin: 0;
  padding-top: var(--header-h);
  overflow-x: hidden;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.sp{
  display: none;
}
.container {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1120px;
  margin: 0 auto;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  transition: box-shadow .25s ease;
}
.button::after {
  width: 9px;
  height: 9px;
  margin-left: 13px;
  border-top: 2px solid;
  border-right: 2px solid;
  content: "";
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.link-txt {
  color: #05589e;
  text-decoration: underline;
}
.button-download {
  color: #de0039;
  background: #fff;
}
.button-contact {
  color: #fff;
  background: #de0039;
}
.button:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}
.button:hover::after {
  transform: translateX(3px) rotate(45deg);
}
.note{
  font-size: 12px;
  color: #666;
}
@media (max-width:1023px) {
  .container {
    width: calc(100% - 40px);
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}
/* ----------------------------------------
  header
---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  background: #fff;
  transition: height .25s ease;
}
.header-container {
  display: flex;
  align-items: center;
  width: calc(100% - 50px);
  max-width: 1390px;
  height: 100%;
}
.header-logo {
  flex: 0 0 auto;
  width: 267px;
  transition: width .25s ease;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 42px;
  font-weight: 700;
  line-height: 1;
}
.header-tel-number {
  display: flex;
  align-items: center;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .02em;
}
.header-tel-number img {
  width: 14px;
  height: auto;
  margin-right: 5px;
}
.header-tel-hours {
  margin-top: 4px;
  font-size: 9px;
}
.header-actions {
  display: flex;
  gap: 9px;
  margin-left: 14px;
}
.header-actions .button {
  width: 160px;
  height: 40px;
  font-size: 16px;
}
.header-actions .button, .header-contact {
  transition: box-shadow .25s ease, width .25s ease, height .25s ease, font-size .25s ease, padding .25s ease;
}
.header-nav, .header-tel-number, .header-tel-hours {
  transition: font-size .25s ease, gap .25s ease, margin .25s ease;
}
.header-actions .button::after {
  display: none;
}
.header-menu {
  display: contents;
}
.header-contact,
.header-toggle {
  display: none;
}
@media (min-width:1024px) {
  .header.is-scrolled {
    height: var(--header-h-scrolled);
  }
  .header.is-scrolled .header-logo {
    width: 218px;
  }
  .header.is-scrolled .header-nav {
    gap: 24px;
    font-size: 13px;
  }
  .header.is-scrolled .header-tel {
    margin-left: 32px;
  }
  .header.is-scrolled .header-tel-number {
    font-size: 19px;
  }
  .header.is-scrolled .header-tel-number img {
    width: 12px;
  }
  .header.is-scrolled .header-tel-hours {
    margin-top: 2px;
    font-size: 8px;
  }
  .header.is-scrolled .header-actions .button {
    width: 136px;
    height: 30px;
    font-size: 13px;
  }
}
@media (min-width:1024px) and (max-width:1199px) {
  .header-nav {
    display: none;
  }
  .header-tel {
    margin-left: auto;
  }
}
@media (max-width:1023px) {
  :root {
    --header-h: 62px;
  }
  .header-container {
    position: static;
    width: calc(100% - 30px);
  }
  .header-logo {
    width: 180px;
    max-width: 48vw;
  }
  .header-contact {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    height: 36px;
    margin-left: auto;
    padding: 0 14px;
    font-size: 12px;
  }
  .header-contact::after {
    display: none;
  }
  .header-toggle {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 26px;
    height: 20px;
    margin-left: 14px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }
  .header-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #05589e;
    transition: transform .25s ease, opacity .25s ease;
  }
  .header-toggle span:nth-child(1) {
    top: 0;
  }
  .header-toggle span:nth-child(2) {
    top: 9px;
  }
  .header-toggle span:nth-child(3) {
    top: 18px;
  }
  .header-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .header.is-menu-open .header-logo,
  .header.is-menu-open .header-contact {
    display: none;
  }
  .header.is-menu-open .header-toggle {
    margin-left: auto;
  }
  .header.is-menu-open .header-menu {
    padding-top: 0;
  }
  .header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 22px 20px 26px;
    background: #fff;
  }
  .header-menu.is-open {
    display: block;
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    font-size: 15px;
    text-align: center;
  }
  .header-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .header-tel {
    margin: 20px 0 0;
  }
  .header-actions {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
  }
  .header-actions .button {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}
/* ----------------------------------------
  hero
---------------------------------------- */
.hero {
  position: relative;
  height: 560px;
  background-color: #fff;
  background-image: url("../img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero::before {
  position: absolute;
  top: 0;
  right: 47%;
  left: -1500px;
  height: 610px;
  opacity: .5;
  background: linear-gradient(90deg, #00317b 0%, #0052a2 57%, #0094d7 100%);
  content: "";
  transform: skewX(-28deg);
}
.hero-container {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1280px;
}
.hero-content {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
}
.hero-title {
  margin: 0;
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .015em;
}
.hero-title span {
  display: table;
  padding: 0 11px 4px;
  background: #00327c;
  transform: scaleX(1.015);
  transform-origin: left top;
}
.hero-title span+span {
  margin-top: 8px;
  transform: scaleX(.973);
}
.hero-text {
  margin: 30px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.hero-actions .button {
  width: 230px;
  height: 60px;
  font-size: 20px;
}
.hero-badge {
  position: absolute;
  top: 94px;
  right: max(calc(50% - max(603px, 23.333vw)), 20px);
  width: 126px;
  z-index: 1;
}
@media (min-width:1024px) and (max-width:1199px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-title span {
    transform: none;
  }
  .hero-title span+span {
    font-size: 44px;
    transform: none;
  }
}
@media (max-width:1023px) {
  .hero {
    height: auto;
    padding: 52px 0 40px;
    background-position: 15% center;
  }
  .hero::before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
  }
  .hero-container {
    width: calc(100% - 40px);
    height: auto;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.35;
  }
  .hero-title span {
    padding: 2px 7px;
    transform: none;
  }
  .hero-title span+span {
    margin-top: 5px;
    font-size: 24px;
  }
  .hero-text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }
  .hero-actions .button {
    width: calc(50% - 4px);
    height: 52px;
    font-size: 14px;
  }
  .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    width: 120px;
    margin: 22px 20px 0 auto;
  }
}
/* ----------------------------------------
  section
---------------------------------------- */
section {
  padding: 40px 0 60px 0;
}
section[id] {
  scroll-margin-top: var(--header-h);
}
@media (max-width:1023px) {
  section {
    padding: 30px 0;
  }
}
/* ----------------------------------------
  section-heading
---------------------------------------- */
.section-heading {
  position: relative;
  margin: 20px 0 0;
  padding-bottom: 60px;
}
.section-heading::before {
  position: absolute;
  top: -31px;
  left: -50px;
  width: 2px;
  height: 151px;
  background: linear-gradient(#56c7ef, #0c4f9a);
  content: "";
  transform: skewX(-28deg);
}
.section-heading h2 {
  margin: 0;
}
.section-heading .section-en {
  display: block;
  color: #05589e;
  font-family: "Lato", sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .03em;
}
.section-heading .section-ja {
  display: block;
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.section-copy {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width:1023px) {
  .section-heading {
    padding-left: 25px;
  }
  .section-heading::before {
    top: -12px;
    left: 0;
    height: 94px;
  }
  .section-heading .section-en {
    font-size: 40px;
  }
  .section-heading .section-ja {
    font-size: 14px;
  }
}
/* ----------------------------------------
  about
---------------------------------------- */
.about {
  position: relative;
  overflow: hidden;
  padding-bottom: 150px;
}
.about-lead {
  text-align: center;
}
.about-lead p {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}
.about-lead h3 {
  margin: 5px 0 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.45;
}
.about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 43px;
}
.about-item {
  text-align: center;
}
.about-problem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 122px;
  padding-bottom: 16px;
  color: #fff;
  background: #0095d8;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
  line-height: 1.45;
}
.about-problem span {
  font-size: 17px;
  font-weight: 700;
}
.about-problem strong {
  font-size: 25px;
  font-weight: 700;
}
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 176px;
  margin-top: 19px;
}
.about-image img {
  width: auto;
  max-width: 183px;
  max-height: 150px;
}
.about-item h4 {
  margin: 7px 0 0;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.55;
}
.about-solution {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66%;
  height: 130px;
  line-height: 1.45;
  padding-left: 65px;
  color: #fff;
  background: linear-gradient(90deg, #00317b 0%, #0052a2 57%, #0094d7 100%);
  clip-path: polygon(69px 0, 100% 0, 100% 100%, 0 100%);
  font-size: 37px;
  font-weight: 700;
  letter-spacing: .01em;
}
@media (max-width:1023px) {
  .about {
    padding-bottom: 100px;
  }
  .about-lead p {
    font-size: 18px;
  }
  .about-lead h3 {
    font-size: 28px;
  }
  .about-list {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 35px;
  }
  .about-problem {
    height: 105px;
  }
  .about-problem span {
    font-size: 14px;
  }
  .about-problem strong {
    font-size: 21px;
  }
  .about-image {
    height: 145px;
  }
  .about-image img {
    max-height: 125px;
  }
  .about-item h4 {
    font-size: 20px;
  }
  .about-solution {
    width: 93%;
    height: 75px;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
    padding: 0 12px 0 25px;
    font-size: 20px;
    text-align: center;
  }
}
/* ----------------------------------------
  merit
---------------------------------------- */
.merit {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.merit::before {
  position: absolute;
  top: 0;
  right: 28%;
  bottom: 0;
  left: -1500px;
  background: #ededed;
  content: "";
  transform: skewX(-28deg);
}
.merit-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
}
.merit-number {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  color: #fff;
  background: #05589e;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}
.merit-number strong {
  margin-left: 5px;
  font-size: 29px;
  font-weight: 900;
}
.merit-copy h3, .merit-second-heading h3 {
  margin: 25px 0 20px;
  color: #05589e;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
}
.merit-copy p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 2.05;
}
.merit-card-first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 356px;
  padding: 38px 95px 32px 50px;
}
.merit-card-first .merit-copy {
  width: 560px;
}
.merit-card-first .merit-copy h3, .merit-card-first .merit-copy p {
  transform: translateY(-10px);
}
.merit-card-first .merit-pouch {
  width: 264px;
}
.merit-card-second {
  min-height: 477px;
  margin-top: 40px;
  padding: 40px 50px 28px;
}
.merit-second-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.merit-second-heading h3 {
  margin-top: 18px;
  margin-bottom: 0;
}
.merit-second-heading>p {
  width: 500px;
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
}
.reduction-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.reduction-item {
  position: relative;
  height: 220px;
  padding: 26px 38px;
  background: #eff8fc;
  border-radius: 14px;
  overflow: hidden;
}
.reduction-copy {
  position: absolute;
  top: 25px;
  left: 39px;
  z-index: 1;
}
.reduction-copy h4 {
  width: 210px;
  margin: 0 0 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #05589e;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.reduction-assumption {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 12px;
  line-height: 1.45;
}
.reduction-assumption span {
  flex: 0 0 auto;
}
.reduction-copy p {
  margin: 0;
  font-weight: 400;
  text-align: left;
}
.reduction-visual {
  position: absolute;
  top: 30px;
  right: 35px;
  width: 150px;
  height: 81px;
  object-fit: contain;
}
.reduction-chart {
  position: absolute;
  right: 39px;
  bottom: 19px;
  width: 421px;
  height: 78px;
  object-fit: contain;
}
.reduction-note {
  margin: 18px 0 0;
  color: #555;
  font-size: 12px;
}
.merit-card-third {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 410px;
  margin-top: 40px;
  padding: 40px 50px;
}
.merit-card-third .merit-copy {
  width: 490px;
}
.merit-card-third .merit-copy h3 {
  margin-top: 24px;
}
.merit-factory {
  width: 500px;
  margin: 0;
}
.merit-factory img {
  width: 500px;
  height: 300px;
  object-fit: cover;
}
.merit-factory figcaption {
  margin-top: 4px;
  color: #555;
  font-size: 12px;
  text-align: right;
}
@media (min-width:1024px) and (max-width:1199px) {
  .merit-card-first {
    padding-right: 45px;
    padding-left: 45px;
  }
  .merit-card-first .merit-copy {
    width: 62%;
  }
  .merit-card-first .merit-pouch {
    width: 25%;
  }
  .merit-copy h3, .merit-second-heading h3 {
    font-size: 28px;
  }
  .merit-copy p, .merit-second-heading>p {
    font-size: 15px;
  }
  .merit-card-second {
    padding-right: 45px;
    padding-left: 45px;
  }
  .merit-second-heading>div, .merit-second-heading>p {
    width: 48%;
  }
  .reduction-list {
    gap: 15px;
  }
  .reduction-copy {
    left: 25px;
  }
  .reduction-copy h4 {
    width: 175px;
    font-size: 19px;
  }
  .reduction-assumption {
    font-size: 11px;
  }
  .reduction-visual {
    right: 25px;
    width: 105px;
  }
  .reduction-chart {
    right: 25px;
    width: calc(100% - 50px);
  }
  .merit-card-third {
    padding-right: 40px;
    padding-left: 40px;
  }
  .merit-card-third .merit-copy {
    width: 45%;
  }
  .merit-factory {
    width: 50%;
  }
  .merit-factory img {
    width: 100%;
  }
}
@media (max-width:1023px) {
  .merit-card {
    width: 100%;
    min-height: 0;
    padding: 30px 24px;
  }
  .merit-card-first, .merit-card-third {
    flex-direction: column;
  }
  .merit-card-first .merit-copy, .merit-card-third .merit-copy {
    width: 100%;
  }
  .merit-copy h3, .merit-second-heading h3 {
    font-size: 24px;
  }
  .merit-copy p {
    font-size: 14px;
  }
  .merit-card-first .merit-copy h3, .merit-card-first .merit-copy p {
    transform: none;
  }
  .merit-card-first .merit-pouch {
    width: 210px;
    margin-top: 25px;
  }
  .merit-second-heading {
    display: block;
  }
  .merit-second-heading>p {
    width: 100%;
    font-size: 14px;
  }
  .reduction-list {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .reduction-item {
    height: 235px;
    padding: 20px;
  }
  .reduction-copy {
    top: 18px;
    right: 20px;
    left: 20px;
  }
  .reduction-copy h4 {
    width: 100%;
    font-size: 18px;
  }
  .reduction-assumption {
    width: calc(100% - 105px);
    font-size: 11px;
    text-align: left;
  }
  .reduction-visual {
    top: 68px;
    right: 20px;
    width: 90px;
    height: 62px;
  }
  .reduction-chart {
    right: 20px;
    bottom: 18px;
    width: calc(100% - 40px);
  }
  .merit-factory {
    width: 100%;
    margin-top: 24px;
  }
  .merit-factory img {
    width: 100%;
    height: auto;
  }
}
/* ----------------------------------------
  contact
---------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #00317b 0%, #0052a2 57%, #0094d7 100%);
}
.contact::before {
  position: absolute;
  top: 0;
  right: -400px;
  bottom: 0;
  left: 73%;
  mix-blend-mode: multiply;
  background: #4ca5dc;
  opacity: .7;
  content: "";
  transform: skewX(-28deg);
}
.contact h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.contact-card {
  width: 900px;
  max-width: 100%;
  margin: 31px auto 0;
  padding: 42px 90px 32px;
  border-radius: 5px;
  color: #000;
  background: #fff;
}
.contact-first .contact-card {
  min-height: 230px;
}
.contact-second .contact-card {
  min-height: 321px;
  margin-top: 29px;
  padding-top: 42px;
}
.contact-actions {
  display: flex;
  gap: 26px;
}
.contact-actions .button {
  width: 347px;
  height: 84px;
  font-size: 25px;
}
.contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 23px;
}
.contact-tel p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.contact-tel p span {
  display: block;
  font-size: 11px;
}
.contact-tel a {
  display: flex;
  align-items: center;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}
.contact-tel a img {
  width: 19px;
  margin-right: 7px;
}
.contact-logo {
  width: 400px;
  margin: 0 auto 34px;
}
.contact-second .contact-actions {
  margin-top: 0;
}
.contact-second .contact-tel {
  margin-top: 24px;
}
@media (min-width:1024px) and (max-width:1199px) {
  .contact-card {
    padding-right: 45px;
    padding-left: 45px;
  }
  .contact-actions {
    gap: 20px;
  }
  .contact-actions .button {
    width: calc(50% - 10px);
    font-size: 22px;
  }
}
@media (max-width:1023px) {
  .contact h2 {
    font-size: 20px;
    line-height: 1.65;
  }
  .contact-card, .contact-first .contact-card, .contact-second .contact-card {
    width: 100%;
    min-height: 0;
    margin-top: 25px;
    padding: 28px 20px;
  }
  .contact-logo {
    width: 280px;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .contact-actions {
    display: grid;
    gap: 12px;
  }
  .contact-actions .button {
    width: 100%;
    height: 62px;
    font-size: 19px;
  }
  .contact-tel {
    flex-direction: column;
    gap: 10px;
  }
  .contact-tel a {
    font-size: 28px;
  }
}
/* ----------------------------------------
  cases
---------------------------------------- */
.cases {
  overflow: hidden;
  background: #fff;
}
.cases-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cases-slider {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.cases-track {
  display: flex;
  height: 100%;
  margin-left: calc(50% - 720px);
  transform: translateX(-105px);
  transition: transform .3s ease;
}
.case-item {
  flex: 0 0 550px;
  text-align: left;
}
.case-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 377px;
}
.case-image img {
  width: auto;
  max-width: 245px;
  max-height: 321px;
  transform: translateY(-9px);
}
.case-item h3 {
  margin: 0 35px;
  padding: 0 0 18px;
  border-bottom: 1px solid #bbb;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.case-item p {
  margin: 18px 35px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}
.cases-arrow {
  position: absolute;
  top: 154px;
  z-index: 2;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 1px solid #222;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.cases-arrow-prev {
  left: calc(50% - 321px);
}
.cases-arrow-next {
  right: calc(50% - 321px);
}
@media (max-width:1023px) {
  .cases-intro {
    display: block;
  }
  .cases-intro>p {
    font-size: 20px;
    line-height: 1.65;
  }
  .cases-slider {
    width: 100%;
  }
  .cases-track {
    margin-left: 0;
    transform: translateX(0);
  }
  .case-item {
    flex-basis: 100%;
    padding: 0 20px;
  }
  .case-image {
    height: 350px;
  }
  .case-image img {
    transform: none;
  }
  .case-item h3 {
    margin: 0;
    padding: 0 0 14px;
    font-size: 23px;
    text-align: center;
  }
  .case-item p {
    margin: 15px 0 0;
    padding: 0;
    font-size: 14px;
  }
  .cases-arrow {
    top: 142px;
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
  .cases-arrow-prev {
    left: 15px;
  }
  .cases-arrow-next {
    right: 15px;
  }
}
/* ----------------------------------------
  faq
---------------------------------------- */
.faq {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.faq::before {
  position: absolute;
  top: 0;
  right: 31%;
  bottom: 0;
  left: -1500px;
  background: #ededed;
  content: "";
  transform: skewX(-28deg);
}
.faq-list {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  background: #fff;
}
.faq-question {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 35px 0 57px;
  border: 0;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-letter {
  color: #4bb5e6;
  font-family: "Lato", sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.faq-question .faq-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #4bb5e6;
  border-radius: 50%;
}
.faq-question .faq-icon::before, .faq-question .faq-icon::after {
  position: absolute;
  top: 19px;
  left: 12px;
  width: 16px;
  height: 1px;
  background: #4bb5e6;
  content: "";
}
.faq-question .faq-icon::after {
  transform: rotate(90deg);
}
.faq-item.is-open .faq-question .faq-icon::after {
  display: none;
}
.faq-answer {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  max-height: 0;
  padding: 0 35px 0 57px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  font-size: 16px;
  transition: max-height .3s ease, padding .3s ease, opacity .2s ease, visibility .3s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 100px;
  padding-top: 27px;
  padding-bottom: 27px;
  border-top: 1px solid #eee;
  visibility: visible;
  opacity: 1;
}
.faq-answer p {
  margin: 0;
}
@media (max-width:1023px) {
  .faq-list {
    width: 100%;
  }
  .faq-item {
    margin-bottom: 12px;
  }
  .faq-question {
    grid-template-columns: 42px 1fr 34px;
    height: auto;
    min-height: 74px;
    padding: 15px;
    font-size: 14px;
  }
  .faq-letter {
    font-size: 25px;
  }
  .faq-question .faq-icon {
    width: 30px;
    height: 30px;
  }
  .faq-question .faq-icon::before, .faq-question .faq-icon::after {
    top: 14px;
    left: 9px;
    width: 12px;
  }
  .faq-answer {
    grid-template-columns: 42px 1fr;
    max-height: 0;
    padding: 0 15px;
    font-size: 13px;
  }
  .faq-item.is-open .faq-answer {
    max-height: 160px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
/* ----------------------------------------
  footer
---------------------------------------- */
.footer {
  background: #fff;
}
.footer-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 127px;
  margin: 0 auto;
}
.footer-logo {
  position: absolute;
  bottom: 32px;
  left: 20px;
  width: 320px;
}
.footer-privacy {
  position: absolute;
  right: 20px;
  bottom: 16px;
  width: auto;
  height: 56px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 15px;
  background: #333;
  font-size: 12px;
}
.footer-bottom a {
  color: #fff;
}
.footer-bottom small {
  color: #999;
  font-size: 12px;
}
@media (max-width:767px) {
  .footer-container {
    width: 92%;
    max-width: 500px;
    height: auto;
    padding: 30px 0;
    text-align: center;
  }
  .footer-logo {
    position: static;
    width: auto;
    margin: 0 auto 30px;
  }
  .footer-privacy {
    position: static;
    margin: 0 auto;
  }
  .footer-bottom {
    display: block;
    height: auto;
    padding: 0;
    text-align: center;
  }
  .footer-bottom a {
    display: inline-block;
    margin-top: 12px;
    line-height: 1.9;
  }
  .footer-bottom small {
    display: block;
    padding: 12px 0;
    line-height: 1.9;
  }
}
@media (prefers-reduced-motion:reduce) {
  .button, .button::after, .cases-track,
  .header, .header-logo, .header-nav, .header-tel-number, .header-tel-hours, .header-contact {
    transition: none;
  }
}
