@charset "UTF-8";
/*--------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
--------------------------------------------------*/
/*============================
//_mixin.cscc
============================ */
/*============================
//_button.scss
//PC
============================ */
.button {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 60px;
  transition: .3s;
  border-radius: 100vh;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.button::before, .button::after {
  content: "";
  position: absolute;
  transition: .3s;
}
.button span {
  position: relative;
  z-index: 1;
}
.button:hover {
  transition: .3s;
}

.button--base {
  margin: 75px 0 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #cc4827), to(#e8784c));
  background-image: -webkit-linear-gradient(left, #cc4827 10%, #e8784c 100%);
  background-image: linear-gradient(90deg, #cc4827 10%, #e8784c 100%);
}
.button--base::before {
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 15px solid #cc4827;
  border-radius: 100vh;
  opacity: .1;
  pointer-events: none;
}
.button--base::after {
  display: inline-block;
  bottom: 0;
  left: calc(50% - 150px);
  width: 300px;
  height: 60px;
  transform-style: preserve-3d;
  border-radius: 100vh;
  opacity: 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #cc4827), to(#e8784c));
  background-image: -webkit-linear-gradient(left, #cc4827 10%, #e8784c 100%);
  background-image: linear-gradient(90deg, #cc4827 10%, #e8784c 100%);
  filter: blur(15px);
}
@media all and (-ms-high-contrast: none) {
  .button--base::after {
    display: none;
  }
}
.button--base:hover {
  transform: scale(1.05);
}
.button--base:hover::before {
  opacity: 0;
  transform: scale(-1.05);
}
.button--base:hover::after {
  bottom: -15px;
  opacity: .5;
}
@media all and (-ms-high-contrast: none) {
  .button--base:hover {
    box-shadow: 0 10px 30px rgba(204, 72, 39, 0.3);
  }
}
.button--min {
  width: 200px;
  height: 40px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #cc4827), to(#e8784c));
  background-image: -webkit-linear-gradient(left, #cc4827 10%, #e8784c 100%);
  background-image: linear-gradient(90deg, #cc4827 10%, #e8784c 100%);
  font-size: 14px;
}
.button--min span {
  top: 1.5px;
}
.button--min::before {
  z-index: 1;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 10px solid #cc4827;
  border-radius: 100vh;
  opacity: .1;
  pointer-events: none;
}
.button--min::after {
  display: inline-block;
  bottom: 0;
  left: calc(50% - 60px);
  width: 120px;
  height: 40px;
  transform-style: preserve-3d;
  border-radius: 100vh;
  opacity: 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #cc4827), to(#e8784c));
  background-image: -webkit-linear-gradient(left, #cc4827 10%, #e8784c 100%);
  background-image: linear-gradient(90deg, #cc4827 10%, #e8784c 100%);
  filter: blur(15px);
}
.button--min:hover {
  transform: scale(1.05);
}
.button--min:hover::before {
  opacity: 0;
  transform: scale(-1.05);
}
.button--min:hover::after {
  bottom: -10px;
  opacity: .5;
}
.button--sub {
  width: 300px;
  height: 50px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #2cb1a0;
  background: #fff;
  color: #2cb1a0;
}
.button--sub::after {
  top: calc(50% - 4.5px);
  right: 25px;
  width: 12px;
  height: 9px;
  transform: scale(-1, 1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3E%3Cpath d='M22 8c0 .6-.4 1-1 1H3.4l5.3 5.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-7-7c-.1-.1-.2-.2-.2-.3-.1-.3-.1-.5 0-.8.1-.1.1-.2.2-.3l7-7c.4-.4 1-.4 1.4 0s.4 1 0 1.4L3.4 7H21c.6 0 1 .4 1 1z' fill='%232cb1a0'/%3E%3C/svg%3E%0A");
}
.button--sub:hover {
  box-shadow: 0 0 20px rgba(36, 163, 144, 0.3);
}
.button--sub:hover::after {
  right: 20px;
}

.case {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  padding: 120px 0 20px;
  overflow: hidden;
}
.case__contents {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 80px 0 120px;
}
.case__contents:first-of-type {
  padding-top: 80px;
}
.case__contents:last-of-type {
  padding-bottom: 140px;
}
.case__contents:nth-of-type(even) {
  flex-direction: row-reverse;
}
.case__info {
  width: 550px;
  background: #fff;
}
.case__head {
  display: flex;
  align-items: center;
}
.case__appico {
  width: 65px;
  height: 65px;
  margin: 0 20px 0 0;
  overflow: hidden;
  border-radius: 12px;
}
.case__appico img {
  width: 100%;
  height: 100%;
}
.case__heading {
  font-size: 24px;
}
.case__heading span {
  display: block;
  color: #3e4c59;
  font-size: 16px;
}
.case__lead {
  width: 550px;
  margin: 40px 0;
  color: #3e4c59;
  font-size: 16px;
}
.case__title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: bold;
}
.case__panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0 0;
  border: 3px solid #f5f7fa;
  border-radius: 8px;
}
.case__panel--single {
  width: 120px;
}
.case__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 45px) / 4);
  margin: 0 0 15px;
}
.case__ico {
  width: 40px;
  height: 40px;
}
.case__ico img {
  max-width: 40px;
  max-height: 40px;
}
.case__desc {
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
.case__box {
  flex: 1;
  width: 100vw;
}
@media all and (-ms-high-contrast: none) {
  .case__box {
    position: relative;
  }
}
.case__slider {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.case__slider::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -25px;
  width: 342px;
  height: 675px;
  background: url("../../images/material_body.png") no-repeat center center/100% 100%;
}
.case__contents:nth-of-type(odd) .case__slider {
  left: 110px;
}
.case__contents:nth-of-type(odd) .case__slider::before {
  left: -26px;
}
.case__contents:nth-of-type(even) .case__slider {
  right: 110px;
}
.case__contents:nth-of-type(even) .case__slider::before {
  right: -26px;
}
@media all and (-ms-high-contrast: none) {
  .case__slider {
    position: absolute !important;
  }
}
.case__capture {
  width: 290px;
  height: 628px;
  outline: none;
}
.case__capture img {
  width: 100%;
  height: 100%;
  transform: scale(0.9, 0.9);
  transition: .3s;
  opacity: .5;
}
.case__contents:nth-of-type(odd) .case__capture {
  margin: 0 0 0 60px;
}
.case__contents:nth-of-type(even) .case__capture {
  margin: 0 60px 0 0;
}
.case__capture:hover {
  cursor: pointer;
}
.case__capture:hover img {
  transform: scale(1, 1);
}
.case .slick-dots {
  bottom: -50px;
  width: 290px;
}
.case .slick-dots li {
  width: 10px;
  margin: 0 4px;
}
.case .slick-dots li button {
  width: 6px;
}
.case .slick-dots li button::before {
  content: "";
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 100vh;
  background: #1f2933;
}
.case .slick-prev,
.case .slick-next {
  z-index: 1;
  width: 30px;
  height: 30px;
}
.case .slick-prev::before,
.case .slick-next::before {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3E%3Cpath d='M22 8c0 .6-.4 1-1 1H3.4l5.3 5.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-7-7c-.1-.1-.2-.2-.2-.3-.1-.3-.1-.5 0-.8.1-.1.1-.2.2-.3l7-7c.4-.4 1-.4 1.4 0s.4 1 0 1.4L3.4 7H21c.6 0 1 .4 1 1z' fill='%233e4c59'/%3E%3C/svg%3E%0A");
  font-size: 30px;
}
.case .slick-prev {
  top: 680px;
  left: 24px;
}
.case .slick-next {
  top: 665px;
  left: 236px;
  transform: scale(-1, 1);
}
.case [dir='rtl'] .slick-prev {
  top: 665px;
  right: 24px;
  transform: scale(-1, 1);
}
.case [dir='rtl'] .slick-next {
  top: 665px;
  right: 236px;
  transform: none;
}
.case .slick-active img {
  transform: scale(1, 1);
  opacity: 1;
}

/*============================
//_common.scss
//PC
============================ */
.is-onlySP {
  display: none;
}

.is-onlyPC {
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

a,
a:hover {
  text-decoration: none;
}

p, h1, h2, h3,
dl, dt, dd {
  margin: 0;
  padding: 0;
}

.header {
  background: #fff;
}

.uly-contact {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  padding: 80px 0 0;
  background: #fff;
}
.uly-contact__box {
  justify-content: center;
  width: auto;
}
.uly-contact__caption {
  margin: 50px 0 40px;
  font-size: 16px;
  text-align: center;
}
.uly-contact__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 380px;
  height: 60px;
  margin: 0 30px 0 0;
  border-radius: 100vh;
}
.uly-contact__button:last-child {
  margin: 0;
}
.uly-contact__button--form::after {
  top: calc(50% - 5px);
  right: 25px;
  width: 14px;
  height: 10px;
  transform: scale(-1, 1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3E%3Cpath d='M22 8c0 .6-.4 1-1 1H3.4l5.3 5.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-7-7c-.1-.1-.2-.2-.2-.3-.1-.3-.1-.5 0-.8.1-.1.1-.2.2-.3l7-7c.4-.4 1-.4 1.4 0s.4 1 0 1.4L3.4 7H21c.6 0 1 .4 1 1z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
.uly-contact__button--form:hover::after {
  right: 20px;
}
.uly-contact__left {
  width: 40px;
  height: 40px;
  margin: 0 0 0 10px;
  border-radius: 100vh;
  background: rgba(255, 255, 255, 0.2);
}
.uly-contact__left img {
  max-width: 24px;
  max-height: 24px;
  margin: 0;
}
.uly-contact__right {
  width: calc(100% - 140px);
  margin: 0 60px 0 0;
}
.uly-contact__right--tel {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}
.uly-contact__right--form {
  font-size: 20px;
}

.uly-heading {
  position: relative;
  margin: 0 0 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  text-align: center;
}
.uly-heading::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 35px);
  width: 70px;
  height: 6px;
  background: url("../../images/ico_dot.svg") no-repeat 100% 100%;
}

.faq {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  padding: 120px 0;
  background: #f5f7fa;
  box-shadow: 0 -40px 60px rgba(31, 41, 51, 0.1);
}
.faq__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
}
.faq__box {
  margin: 0 0 30px;
  overflow: hidden;
  transition: .3s linear;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq__box:not(.is-open):hover {
  transform: scale(1.025, 1.025);
}
.faq__box:last-child {
  margin: 0;
}
.faq__title {
  display: flex;
  transition: .3s linear;
  font-size: 16px;
}
.faq__title:hover {
  color: #44c4b0;
  cursor: pointer;
}
.faq__title:hover .faq__question {
  background: #2cb1a0;
}
.faq__title:hover .faq__ico::before, .faq__title:hover .faq__ico::after {
  background: #2cb1a0;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 25px 0 0;
  transition: .3s linear;
  background: #1f2933;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: bold;
}
.is-open .faq__question {
  background: #2cb1a0;
}
.faq__text {
  display: flex;
  align-items: center;
  width: calc(100% - 90px);
}
.faq__ico {
  position: relative;
  margin: 0 40px 0 auto;
}
.faq__ico::before, .faq__ico::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 20px;
  height: 2px;
  margin: 0;
  transition: .3s linear;
  background: #1f2933;
}
.faq__ico::before {
  transform: rotate(90deg);
}
.is-open .faq__ico::after {
  background: #2cb1a0;
}
.is-open .faq__ico::before {
  transform: rotate(0);
  opacity: 0;
}
.faq__answer {
  display: none;
  position: relative;
  margin: 20px 40px 40px 20px;
  padding: 10px 0 0 65px;
}
.faq__answer::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 15px;
  color: #2cb1a0;
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: bold;
}
.faq__link {
  margin-top: 30px;
  text-align: right;
}
.faq__link a {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  color: #2cb1a0;
  line-height: 20px;
}
.faq__link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  transition: .2s;
  background: url("../../images/arrow_ico.svg") no-repeat right center/20px;
}
.faq__link a:hover::after {
  right: -5px;
}
.faq__lead {
  margin-top: 80px;
  text-align: center;
}

.flow {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  padding: 120px 0;
}
.flow::before, .flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 480px;
  height: 900px;
  background: url("../../images/img_flow_bg.png") no-repeat center center/100% 100%;
}
.flow::before {
  left: 0;
}
.flow::after {
  right: 0;
  transform: scale(-1, 1);
}
.flow__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
}
.flow__lead {
  margin: 60px 0 0;
  font-size: 16px;
  text-align: center;
}
.flow__step {
  margin: 60px 0 0;
}
.flow__box {
  display: flex;
  align-items: center;
  width: 560px;
  margin: 0 auto 35px;
}
.flow__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin: 0 25px 0 0;
  border-radius: 100vh;
  background: #c6ede7;
}
.flow__ico img {
  max-width: 30px;
  max-height: 30px;
}
.flow__heading {
  font-size: 20px;
}
.flow__desc {
  margin: 10px 0 0;
  opacity: .7;
  color: #1f2933;
  font-size: 14px;
}

.headline {
  font-size: 42px;
}
.headline span {
  display: block;
  color: #f35627;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
}

.heading {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 60px;
  font-size: 30px;
  text-align: center;
}
.heading::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 35px);
  width: 70px;
  height: 6px;
  background: url("../../images/ico_dot.svg") no-repeat center center/100% 100%;
}
.heading--white {
  color: #fff;
}
.heading02 {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  font-size: 30px;
  text-align: center;
}

.hero {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 92px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../../images/img_hero_nav.png") no-repeat center center/100% 100%;
}
.hero__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 274px 0 120px;
}
.hero__inner::after {
  content: "";
  position: absolute;
  top: 200px;
  right: -140px;
  width: 800px;
  height: 465px;
  background: url("../../images/img_hero.png") no-repeat center center/100% 100%;
}
.hero__lead {
  margin: 40px 0 0;
  font-size: 20px;
}

.loader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
}
.loader__inner {
  position: relative;
}
.loader__object {
  position: absolute;
  top: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  animation: bound 1s infinite;
  background: url("../../images/ico_logo.png") no-repeat center center/100% 100%;
}
.loader__text {
  margin: 60px 0 0;
  color: #9aa5b1;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@keyframes bound {
  0%,100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -20%;
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.3, 0.9);
  }
}
.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

@media all and (-ms-high-contrast: none) {
  .is-fixed {
    position: relative;
  }
}
.pickup {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.pickup-case {
  position: relative;
  margin: -15px 0 0;
  padding: 15px 0 70px;
  overflow: hidden;
  opacity: 0;
}
.pickup-case::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(50% - 550px);
  background: linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.pickup-case::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(50% - 550px);
  background: linear-gradient(to left, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.pickup-case.slick-initialized {
  opacity: 1;
}
.pickup-case__item {
  display: block;
  position: relative;
  bottom: 0;
  width: 320px;
  margin: 0 10px;
  overflow: hidden;
  transition: .3s;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px rgba(31, 41, 51, 0.1);
}
.pickup-case__item:hover {
  bottom: 10px;
}
.pickup-case__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 170px;
  padding-top: 10px;
}
.pickup-case__image img {
  width: auto;
  max-width: 200px;
  max-height: 90px;
}
.pickup-case__tag {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 28px;
  border-radius: 10px 0 0;
  background: #2cb1a0;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}
.pickup-case__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 30px;
}
.pickup-case__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 55px;
  margin: 0 auto 20px;
  padding-top: 25px;
  border-top: 1px solid #cbd2d9;
  color: #1f2933;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.pickup-case__corp {
  height: 42px;
  color: #3e4c59;
  font-size: 14px;
  text-align: center;
}
.pickup-case .slick-list {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  overflow: visible;
}
.pickup-case .slick-dots {
  bottom: 0;
  left: 50%;
  width: 290px;
  margin-left: -145px;
}
.pickup-case .slick-dots li {
  width: 6px;
  margin: 0 6px;
}
.pickup-case .slick-dots li button {
  width: 6px;
}
.pickup-case .slick-dots li button::before {
  content: "";
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  width: 6px;
  height: 6px;
  border-radius: 100vh;
  background: #1f2933;
}
.pickup-case .slick-prev,
.pickup-case .slick-next {
  z-index: 1;
  top: auto;
  right: 0;
  bottom: -10px;
  left: 50%;
  width: 30px;
  height: 34px;
}
.pickup-case .slick-prev::before,
.pickup-case .slick-next::before {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3E%3Cpath d='M22 8c0 .6-.4 1-1 1H3.4l5.3 5.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-7-7c-.1-.1-.2-.2-.2-.3-.1-.3-.1-.5 0-.8.1-.1.1-.2.2-.3l7-7c.4-.4 1-.4 1.4 0s.4 1 0 1.4L3.4 7H21c.6 0 1 .4 1 1z' fill='%233e4c59'/%3E%3C/svg%3E%0A");
  background-position: center center;
  font-size: 30px;
}
.pickup-case .slick-prev {
  margin-left: -145px;
  transform: translate(0);
}
.pickup-case .slick-next {
  margin-left: 115px;
  transform: scale(-1, 1);
}

.reason {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
}
.reason__summary {
  padding: 120px 0;
  background: #3e4c59;
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.15);
}
.reason__anchor {
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  width: 1100px;
  margin: 60px auto 0;
  padding: 0 30px 0 300px;
}
.reason__anchor::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -200px;
  width: 700px;
  height: 360px;
  background: linear-gradient(to right, #3e4c59, rgba(62, 76, 89, 0)) no-repeat left top/140px 100%, url("../../images/img_reason_bg.png") no-repeat center center/auto 100%;
}
.reason__list {
  position: relative;
  z-index: 1;
  width: 650px;
  height: 60px;
  margin: 0 0 25px;
  transition: .3s;
  border-radius: 100vh;
  background-color: rgba(245, 247, 250, 0.9);
}
.reason__list:nth-child(2) {
  left: 40px;
}
.reason__list:nth-child(3) {
  left: 80px;
}
.reason__list:last-child {
  left: 120px;
  margin: 0;
}
.reason__list a {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #3e4c59;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}
.reason__list a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 15px 0 10px;
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 3px 6px rgba(31, 41, 51, 0.1);
  color: #2cb1a0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}
.reason__list:hover {
  transform: scale(1.05);
  background: #fff;
}
.reason__contents--01, .reason__contents--03 {
  padding: 100px 0;
  background-color: rgba(203, 210, 217, 0.1);
}
.reason__contents--02, .reason__contents--04 {
  padding: 100px 0;
  background: #f5f7fa;
}
.reason__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
}
.reason__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reason__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  font-size: 24px;
  text-align: center;
}
.reason__heading span {
  color: #2cb1a0;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
}
.reason__lead {
  margin: 60px 0 0;
  font-size: 16px;
  text-align: center;
}
.reason__desc {
  order: 3;
  width: 535px;
  margin-left: 40px;
  font-size: 16px;
  text-align: left;
}
.reason__desc--reverse {
  order: 1;
  margin: 0 40px 0 0;
}
.reason__image {
  order: 2;
  width: 500px;
}
.reason__image img {
  max-width: 100%;
}
.reason .button--base {
  margin: 75px auto 0;
}
.reason__panel {
  display: flex;
  position: relative;
  justify-content: center;
  margin: 45px 0 0;
}
.reason__panel::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 245px);
  width: 490px;
  height: 490px;
  border: 5px solid #f5f7fa;
  border-radius: 100vh;
}
.reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  margin: 0 35px;
  padding: 40px 0;
  border-radius: 8px;
  background: #f5f7fa;
}
.reason__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  border-radius: 100vh;
  background: #fff;
}
.reason__ico img {
  max-width: 45px;
  max-height: 45px;
}
.reason__title {
  margin: 25px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.reason__process {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 0;
}
.reason__process li:first-child {
  width: 500px;
  height: 500px;
}
.reason__process li:nth-child(2) {
  width: 70px;
  height: 70px;
  margin: 0 10px 0 20px;
}
.reason__process li:last-child {
  width: 250px;
  height: 250px;
}
.reason__process li img {
  width: 100%;
  height: 100%;
}

.reason01-image {
  position: relative;
  height: 327px;
}
.reason01-image__circle-left {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 327px;
}
.scrollin .reason01-image__circle-left {
  animation: fadeInLeft .5s both;
}
.reason01-image__circle-right {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 327px;
  margin: 0 0 0 auto;
}
.scrollin .reason01-image__circle-right {
  animation: fadeInRight .5s both;
}
.reason01-image__online {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 126px;
  height: 112px;
  margin-top: -56px;
}
.scrollin .reason01-image__online {
  animation: fadeInLeft .5s both;
}
.reason01-image__offline {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 133px;
  height: 116px;
  margin-top: -58px;
}
.scrollin .reason01-image__offline {
  animation: fadeInRight .5s both;
}
.reason01-image__ec {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101px;
  height: 196px;
  margin: -98px 0 0 -50.5px;
}
.scrollin .reason01-image__ec {
  animation: fadeIn .5s .5s both;
}

.reason03-image {
  position: relative;
  width: 418px;
  margin-left: 78px;
  padding: 20px 0;
}
.reason03-image__base {
  display: block;
  width: 250px;
  margin: 0 0 0 auto;
}
.reason03-image__tech {
  position: absolute;
  top: 50%;
  left: 0;
  width: 221px;
  height: 235px;
  margin-top: -117.5px;
  transform: translate(-45px, 0);
}
.scrollin .reason03-image__tech {
  animation: fadeInLeft .5s .5s both;
}
.reason03-image__ux {
  position: absolute;
  top: 0;
  right: 74px;
  width: 100px;
  transform: translate(0, 45px);
}
.scrollin .reason03-image__ux {
  animation: fadeInTop .5s .5s both;
}
.reason03-image__cost {
  position: absolute;
  right: 74px;
  bottom: 0;
  width: 100px;
}
.scrollin .reason03-image__cost {
  animation: fadeInBottom .5s 1s both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translate(45px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translate(-45px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    transform: translate(0, 45px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  0% {
    transform: translate(0, -45px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.reason04-image {
  position: relative;
  padding-top: 68px;
}
.reason04-image__base {
  display: block;
  width: 350px;
  margin: 0 auto;
}
.reason04-image__frontend {
  position: absolute;
  top: 0;
  left: 50%;
  width: 98px;
  height: 135px;
  margin-left: -49px;
}
.reason04-image__uiux {
  position: absolute;
  bottom: 23px;
  left: 27px;
  width: 123px;
  height: 134px;
}
.reason04-image__backend {
  position: absolute;
  right: 27px;
  bottom: 23px;
  width: 123px;
  height: 134px;
}

.summary {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  background: #3e4c59;
}
.summary__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}
.summary__heading {
  margin-bottom: 60px;
  color: #fff;
  font-size: 30px;
  text-align: center;
}
.summary__box {
  display: flex;
  justify-content: center;
}
.summary__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  margin: 0 20px;
}
.summary__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 100vh;
  background-color: rgba(255, 255, 255, 0.1);
}
.summary__ico img {
  max-width: 30px;
  max-height: 30px;
}
.summary__desc {
  margin: 20px 0 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
