*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6em;
  margin: 0;
  background: #fff;
  color: #4B5049;
  overflow-x: hidden;
}

.is-sp {
  display: none;
}
@media (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .inner {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 100px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .section-title {
    margin-bottom: 85px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 60px;
  }
}
.section-title::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background-color: #609484;
  border-radius: 10px;
}
.section-title::before {
  position: absolute;
  content: "benefit";
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .section-title::before {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.header {
  background-color: #fff;
  height: 70px;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  position: fixed;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  font-size: 1.6rem;
}

.header-logo {
  width: 170px;
}
.header-logo img {
  display: block;
}
@media (max-width: 768px) {
  .header-logo {
    width: 120px;
    margin-top: 5px;
    margin-left: -10px;
  }
}

.header-nav {
  margin-left: auto;
}

.header-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .header-lists {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-lists {
    display: none;
  }
}

.header-list:not(:first-child) {
  margin-left: 40px;
}
.header-list a {
  display: block;
  position: relative;
}
.header-list a::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-list a:hover:after, .header-list a.is-active:after {
  background-color: #609484;
}

.header-link {
  margin-left: 40px;
}
.header-link a {
  display: block;
  padding: 10px 40px;
  background-color: #609484;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-link a:hover {
  opacity: 0.8;
}

.hum-btn {
  display: block;
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 110;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.hum-btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #609484;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hum-btn span:nth-child(1) {
  top: 4px;
}
.hum-btn span:nth-child(2) {
  top: 14px;
}
.hum-btn span:nth-child(3) {
  bottom: 4px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .hum-btn {
    top: 19px;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hum-btn {
    top: 18px;
    opacity: 1;
  }
}

.show .hum-btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.show .hum-btn span:nth-child(2) {
  left: 200%;
  opacity: 0;
  height: 0;
}

.show .hum-btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.hum-lists {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  width: 40vw;
  height: 100%;
  padding: 50px 20px;
  background-image: url(../img/fvbg.jpg);
  opacity: 0;
  z-index: 105;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (max-width: 768px) {
  .hum-lists {
    width: 60vw;
  }
}

.show .hum-lists {
  opacity: 1;
  -webkit-transform: translate(-40vw, 0);
          transform: translate(-40vw, 0);
}
@media (max-width: 768px) {
  .show .hum-lists {
    -webkit-transform: translate(-60vw, 0);
            transform: translate(-60vw, 0);
  }
}

.hum-list {
  font-size: 1.4rem;
}
.hum-list a {
  display: block;
  padding: 20px 0px;
  width: 100%;
  font-weight: 700;
}

.hum-link {
  font-size: 1.4rem;
  color: #FFF;
  margin-top: 30px;
  text-align: center;
}
.hum-link a {
  display: block;
  background-color: #609484;
  padding: 10px 30px;
  border-radius: 50px;
}

#hum-bg {
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #E5E5E5;
  position: fixed;
  top: 0;
  left: 100vw;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

.show #hum-bg {
  -webkit-transform: translate(-100vw, 0);
          transform: translate(-100vw, 0);
  opacity: 0.5;
  z-index: 101;
  cursor: pointer;
}

.top {
  margin-top: 70px;
  width: 100%;
  background-image: url(../img/fvbg.jpg);
}
@media (max-width: 768px) {
  .top {
    margin-top: 60px;
  }
}

.top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 20px 180px;
}
@media (max-width: 768px) {
  .top-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 40px 20px 165px;
  }
}

.top-left {
  width: 500px;
  margin-top: 40px;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-left {
    width: 470px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .top-left {
    width: 100%;
    margin-top: 0;
  }
}

.top-title {
  font-size: 3.5rem;
  font-weight: 500;
  display: inline-block;
  line-height: 1.6em;
  letter-spacing: 0.06em;
  margin: 0 auto;
  padding-left: 40px;
  -moz-text-align-last: end;
       text-align-last: end;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-title {
    font-size: 3rem;
    padding-left: 0px;
  }
}
@media (max-width: 768px) {
  .top-title {
    font-size: 140%;
    padding-left: 0;
    margin: 20px auto 0;
    display: block;
    -moz-text-align-last: center;
         text-align-last: center;
    text-align: right;
  }
}
.top-title span {
  font-size: 4rem;
  font-weight: 500;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #609484));
  background-image: linear-gradient(transparent 70%, #609484 70%);
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-title span {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .top-title span {
    font-size: 160%;
  }
}

.top-lead {
  margin-top: 20px;
  padding-left: auto;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-lead {
    display: inline-block;
    font-size: 1.6rem;
    margin: 20px 40px 0;
  }
}
@media (max-width: 768px) {
  .top-lead {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    margin: 30px auto 0;
  }
}

.top-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  padding-left: 20px;
  width: 500px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-icons {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .top-icons {
    margin: 10px auto;
    padding-left: 0;
    width: 70%;
  }
}

.top-icon {
  width: 120px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-icon {
    width: 90px;
  }
}
@media (max-width: 768px) {
  .top-icon {
    width: 25%;
  }
}

.swiper-container {
  width: 50%;
}
@media (max-width: 768px) {
  .swiper-container {
    width: 100%;
    margin-top: 10px;
  }
}

.swiper-pagination,
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.cta-1 {
  margin-top: -120px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .cta-1 {
    margin-top: -150px;
  }
}

.cta-1-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 800px;
  padding: 30px 50px;
  margin: 0 auto;
  background: #fff;
  border: 3px dashed #948260;
  border-radius: 5px;
}
@media (max-width: 830px) {
  .cta-1-contents {
    width: 730px;
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .cta-1-contents {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.cta-1-left {
  margin-right: 40px;
  width: 180px;
}
@media (max-width: 768px) {
  .cta-1-left {
    margin-right: 20px;
    width: 40%;
  }
}
.cta-1-left img {
  display: block;
}

.cta-1-center {
  margin-right: 40px;
  width: 180px;
}
@media (max-width: 768px) {
  .cta-1-center {
    margin-right: 0;
    width: 50%;
  }
}
.cta-1-center p {
  font-size: 3rem;
  color: #948260;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cta-1-center p {
    font-size: 150%;
    margin-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 460px) {
  .cta-1-center p {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .cta-1-right {
    margin: 0 auto;
  }
}
.cta-1-right p {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta-1-right p {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.cta-1-right .recommended {
  font-size: 1.6rem;
  text-align: center;
}
.cta-1-right .recommended span {
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
.cta-1-right .recommended span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 2px;
  height: 22px;
  background-color: #4B5049;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(-25deg);
          transform: translateY(-50%) rotate(-25deg);
}
.cta-1-right .recommended span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 2px;
  height: 22px;
  background-color: #4B5049;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}

.cta-btn {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta-btn {
    margin-bottom: 0;
  }
}
.cta-btn a {
  display: block;
  background-color: #609484;
  color: #fff;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.cta-btn a:hover {
  opacity: 0.8;
}

.benefit-wrapper {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 130px 20px 180px;
}
@media (max-width: 768px) {
  .benefit-wrapper {
    padding: 70px 20px 70px;
  }
}

.benefit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .benefit-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.benefit-item {
  width: 182px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .benefit-item {
    width: 134px;
  }
}
@media (max-width: 768px) {
  .benefit-item {
    width: calc(33.3% - 13.3333333333px);
  }
  .benefit-item:nth-child(n+4) {
    margin-top: 30px;
  }
}

.benefit-item-title {
  font-size: 2rem;
  color: #609484;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .benefit-item-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .benefit-item-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .benefit-item-title {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

.benefit-item img {
  display: block;
  width: 40%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .benefit-item img {
    width: 40%;
  }
}

.benefit-item p {
  letter-spacing: 0.06em;
  width: 100%;
  margin: 10px auto 0;
}
@media (max-width: 768px) {
  .benefit-item p {
    font-size: 1.1rem;
    letter-spacing: 0.01;
    line-height: 1.4;
  }
}

.task {
  background-color: #F2F3F1;
  padding: 130px 20px 60px;
  position: relative;
}
@media (max-width: 768px) {
  .task {
    padding: 70px 20px 80px;
  }
}
.task::after {
  position: absolute;
  content: "";
  bottom: -100px;
  left: 2%;
  overflow: hidden;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 48vw 0 48vw;
  margin: 0 auto;
  border-color: #F2F3F1 transparent transparent transparent;
}
@media (max-width: 768px) {
  .task::after {
    bottom: -50px;
    border-width: 50px 48vw 0 48vw;
  }
}

.task-wrapper {
  background: #fff;
  width: 1100px;
  max-width: 100%;
  padding: 50px;
  position: relative;
}
@media (max-width: 768px) {
  .task-wrapper {
    padding: 10px 20px 30px;
  }
}
.task-wrapper::before {
  position: absolute;
  content: "";
  background: url("../img/illust1.png") no-repeat center center/cover;
  top: 10%;
  left: -180px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7%;
  height: 32%;
}
@media (max-width: 1460px) {
  .task-wrapper::before {
    display: none;
  }
}
.task-wrapper::after {
  position: absolute;
  content: "";
  background: url("../img/illust3.png") no-repeat center center/cover;
  top: 10%;
  right: -180px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6%;
  height: 33%;
}
@media (max-width: 1460px) {
  .task-wrapper::after {
    display: none;
  }
}

.task-title {
  padding: 20px 10px 20px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
  background-image: repeating-linear-gradient(45deg, #609484 0px, #609484 1px, transparent 0%, transparent 50%), repeating-linear-gradient(-45deg, #609484 0px, #609484 1px, transparent 0%, transparent 50%);
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: center bottom;
  width: 430px;
  text-align: center;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .task-title {
    width: 90%;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.task-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .task-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.task-contents::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -270px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18%;
  height: 34%;
  background: url("../img/illust2.png") no-repeat center center/cover;
}
@media (max-width: 1410px) {
  .task-contents::before {
    display: none;
  }
}
.task-contents::after {
  position: absolute;
  content: "";
  bottom: -20%;
  right: -200px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9%;
  height: 49%;
  background: url("../img/illust4.png") no-repeat center center/cover;
}
@media (max-width: 1410px) {
  .task-contents::after {
    display: none;
  }
}

.task-img {
  width: 13%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .task-img {
    width: 20%;
    margin-top: 20px;
  }
}
.task-img img {
  display: block;
}

.task-items {
  width: 65%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .task-items {
    width: 100%;
  }
}

.task-item p {
  font-size: 2rem;
  letter-spacing: 0.06em;
  padding: 10px 0 10px 40px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .task-item p {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .task-item p {
    font-size: 1.6rem;
    padding: 5px 0 5px 40px;
  }
}
.task-item p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #4B5049;
  border-radius: 50px;
}
.task-item p::after {
  position: absolute;
  content: "";
  top: 42%;
  left: 3px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 17px;
  height: 10px;
  border-bottom: 3px #609484 solid;
  border-left: 3px solid #609484;
}

.feature {
  padding: 200px 20px 140px;
}
@media (max-width: 768px) {
  .feature {
    padding: 120px 20px 60px;
  }
}
.feature .section-title::before {
  content: "Feature";
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .feature-item {
    display: block;
  }
}
@media (max-width: 768px) {
  .feature-item {
    width: 95%;
    margin: 0 auto 40px;
  }
}

.feature-text {
  margin-left: auto;
  padding-right: 40px;
  width: 100%;
  border-bottom: 3px solid #609484;
  padding-bottom: 20px;
}
@media (max-width: 1000px) {
  .feature-text {
    border-bottom: 0px solid transparent;
  }
}
@media (max-width: 900px) {
  .feature-text {
    padding-right: 0;
    margin-bottom: 0px;
  }
}

.feature-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.feature-title-wrap::before {
  position: absolute;
  content: "";
  left: 30%;
  top: 33px;
  width: 80%;
  height: 0;
  border-bottom: 3px solid #609484;
  z-index: -1;
  display: none;
}
@media (max-width: 1000px) {
  .feature-title-wrap::before {
    display: block;
  }
}
@media (max-width: 900px) {
  .feature-title-wrap::before {
    left: 20%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .feature-title-wrap::before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .feature-title-wrap {
    display: block;
  }
}

.feature-number {
  width: 110px;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px 20px 0px;
  font-size: 2.5rem;
  color: #609484;
  font-weight: 700;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .feature-number {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .feature-number {
    width: 90px;
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
}
.feature-number span {
  position: relative;
  padding: 5px 1px;
  border-radius: 20px;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 768px) {
  .feature-number span {
    padding: 0;
  }
}
.feature-number .number {
  font-size: 2.5rem;
  padding: 0 0 0 5px;
}
@media (max-width: 768px) {
  .feature-number .number {
    font-size: 1.8rem;
  }
}
.feature-number::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border: 2px solid #609484;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .feature-number::before {
    width: 50px;
    height: 50px;
  }
}

.feature-title {
  width: 380px;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  margin-left: 10px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .feature-title {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5px;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .feature-title {
    width: 300px;
    margin-left: 10px;
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.feature-title span {
  font-weight: 700;
  color: #609484;
}

.feature-text p {
  width: 620px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .feature-text p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-text p {
    width: 100%;
    font-size: 1.4rem;
  }
}

.feature-img {
  width: 100%;
}
.feature-img img {
  border-radius: 10px;
}

.review {
  background: url(../img/reviewbg.jpg) no-repeat center center/cover;
  padding: 120px 0 120px;
  position: relative;
}
@media (max-width: 768px) {
  .review {
    padding: 50px 0 50px;
  }
}
.review::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-shadow: inset 0px 0px 15px 15px #fff;
          box-shadow: inset 0px 0px 15px 15px #fff;
}
.review .section-title::before {
  content: "Review";
}

.review-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-items {
    display: block;
  }
}
@media (max-width: 768px) {
  .review-items {
    display: block;
  }
}

.review-item {
  width: calc(33.3% - 40px);
  margin: 0 auto;
  padding: 50px 40px;
  background: #F2F3F1;
  border-radius: 10px;
  border: 2px solid #fff;
  -webkit-box-shadow: 10px 10px #608494;
          box-shadow: 10px 10px #608494;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-item {
    width: 80%;
    padding: 30px 30px;
    margin: 0 auto 30px;
  }
}
@media (max-width: 768px) {
  .review-item {
    width: 90%;
    margin: 0 auto 30px;
    padding: 20px;
  }
}

.review-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-head {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .review-head {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
}

.review-img {
  width: 90%;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-img {
    width: 170px;
  }
}
@media (max-width: 768px) {
  .review-img {
    width: 140px;
  }
}
.review-img img {
  display: block;
  width: 80%;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-img img {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .review-img img {
    width: 90px;
  }
}

.review-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-title {
    width: 100%;
    font-size: 2rem;
    margin: 0 auto 5px;
  }
}
@media (max-width: 768px) {
  .review-title {
    margin-left: 10px;
  }
}

.review-right p {
  text-align: right;
  font-size: 1.6rem;
}

.review-lead {
  padding-top: 30px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding-top: 30px;
  border-top: 3px dashed #608494;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .review-lead {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .review-lead {
    padding-top: 10px;
  }
}

.cta-2 {
  background: url(../img/ctabg.jpg);
  padding: 60px 20px;
  margin-top: 150px;
}
@media (max-width: 768px) {
  .cta-2 {
    margin-top: 60px;
    padding: 50px 20px 40px;
  }
}

.cta-2-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
}
@media (max-width: 768px) {
  .cta-2-title {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.cta-2-title span {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #609484;
}

.cta-2-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .cta-2-contents {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta-2-left {
  width: 20%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .cta-2-left {
    display: none;
  }
}
.cta-2-left img {
  display: block;
}

.cta-2-center {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-2-center {
    width: 250px;
    margin-top: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cta-2-center p {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .cta-2-center p {
    font-size: 2rem;
  }
}

.cta-2-right {
  width: 25%;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-2-right {
    display: none;
  }
}
.cta-2-right img {
  display: block;
}

.coord {
  padding: 150px 0 120px;
}
@media (max-width: 768px) {
  .coord {
    padding: 70px 0 70px;
  }
}
.coord .section-title::before {
  content: "coordination";
}

.coord-contents {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-contents {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .coord-contents {
    margin-top: 70px;
  }
}

.coord-content-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #E0E5DB;
  border-radius: 10px;
  padding: 50px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-content-green {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    margin: 0 auto;
    padding: 60px 30px;
  }
}
@media (max-width: 768px) {
  .coord-content-green {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px 40px;
  }
}

.coord-content-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #DAE2E7;
  border-radius: 10px;
  padding: 50px;
  margin-top: 70px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-content-blue {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    margin: 70px auto 0;
    padding: 60px 30px;
  }
}
@media (max-width: 768px) {
  .coord-content-blue {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 50px auto 0;
    padding: 50px 20px 40px;
  }
}
.coord-content-blue .coord-title-sp {
  display: none;
}
@media (max-width: 768px) {
  .coord-content-blue .coord-title-sp {
    display: block;
    margin-bottom: 25px;
  }
}
.coord-content-blue .coord-title-sp::before {
  color: #608494;
}
.coord-content-blue .coord-title-sp span {
  font-weight: 500;
  letter-spacing: 0.06em;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #668899));
  background-image: linear-gradient(transparent 75%, #668899 75%);
}
@media (max-width: 768px) {
  .coord-content-blue .coord-title-sp span {
    font-size: 2rem;
  }
}
.coord-content-blue .coord-title::before {
  color: #668899;
}
.coord-content-blue .coord-title span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #668899));
  background-image: linear-gradient(transparent 70%, #668899 70%);
}
.coord-content-blue .coord-article {
  margin: 40px 40px 40px 0px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-content-blue .coord-article {
    margin: 40px 0 0;
  }
}
@media (max-width: 768px) {
  .coord-content-blue .coord-article {
    margin: 0 auto 20px;
  }
}

.coord-content-brown {
  background-color: #EAE5DA;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  padding: 50px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-content-brown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    margin: 70px auto 0;
    padding: 60px 30px;
  }
}
@media (max-width: 768px) {
  .coord-content-brown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 50px auto 0;
    padding: 50px 20px 40px;
  }
}
.coord-content-brown .coord-title-sp {
  display: none;
}
@media (max-width: 768px) {
  .coord-content-brown .coord-title-sp {
    display: block;
    margin-bottom: 25px;
  }
}
.coord-content-brown .coord-title-sp::before {
  color: #9a8108;
}
.coord-content-brown .coord-title-sp span {
  font-weight: 500;
  letter-spacing: 0.06em;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #998866));
  background-image: linear-gradient(transparent 75%, #998866 75%);
}
@media (max-width: 768px) {
  .coord-content-brown .coord-title-sp span {
    font-size: 2rem;
  }
}
.coord-content-brown .coord-title::before {
  color: #9a8108;
}
.coord-content-brown .coord-title span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #998866));
  background-image: linear-gradient(transparent 70%, #998866 70%);
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-content-brown .coord-mainImg img {
    height: 280px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-content-brown .coord-article {
    margin: 40px 0 0;
  }
}

.coord-mainImg {
  width: 50%;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-mainImg {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .coord-mainImg {
    width: 100%;
  }
}
.coord-mainImg img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-mainImg img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0px -120px;
       object-position: 0px -120px;
  }
}
@media (max-width: 768px) {
  .coord-mainImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.coord-article {
  width: 50%;
  margin: 40px 0 40px 40px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-article {
    width: 100%;
    margin: 40px 0 0;
  }
}
@media (max-width: 768px) {
  .coord-article {
    width: 100%;
    margin: 0 auto;
  }
}

.coord-title-sp {
  display: none;
  position: relative;
}
@media (max-width: 768px) {
  .coord-title-sp {
    display: block;
    margin-bottom: 25px;
  }
}
.coord-title-sp::before {
  position: absolute;
  content: attr(data-en);
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  top: -100%;
  left: 10%;
  color: #609484;
  font-size: 3rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .coord-title-sp::before {
    font-size: 1.6rem;
    left: -20%;
  }
}
.coord-title-sp span {
  font-weight: 500;
  letter-spacing: 0.06em;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #609484));
  background-image: linear-gradient(transparent 75%, #609484 75%);
}
@media (max-width: 768px) {
  .coord-title-sp span {
    font-size: 2rem;
  }
}

.coord-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 10px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .coord-title {
    display: none;
  }
}
.coord-title::before {
  position: absolute;
  content: attr(data-en);
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  top: -100%;
  left: 10%;
  color: #609484;
  font-size: 3rem;
  font-weight: 400;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-title::before {
    top: -50%;
    left: 20%;
    font-size: 2rem;
  }
}
.coord-title span {
  font-weight: 500;
  letter-spacing: 0.06em;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #609484));
  background-image: linear-gradient(transparent 75%, #609484 75%);
  position: relative;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-title span {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .coord-title span {
    font-size: 160%;
  }
}

.coord-lead {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-lead {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .coord-lead {
    width: 95%;
    margin: 20px auto 10px;
    letter-spacing: 0.03em;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.coord-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .coord-items {
    width: 90%;
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  .coord-items {
    width: 100%;
    margin: 20px auto 0;
    gap: 15px;
  }
}

.coord-item {
  width: calc((100% - 60px) / 3);
  margin: 0 auto;
  border-radius: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .coord-item {
    width: calc(50% - 10px);
    padding: 10px;
  }
}
.coord-item a {
  padding: 20px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.coord-item a:hover {
  opacity: 0.8;
}

.coord-item-img img {
  display: block;
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
}

.coord-name {
  padding-top: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 768px) {
  .coord-name {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.coord-cost {
  text-align: end;
}
@media (max-width: 768px) {
  .coord-cost {
    font-size: 1rem;
  }
}

.howTo {
  padding: 80px 0;
  background-color: #F2F3F1;
}
@media (max-width: 768px) {
  .howTo {
    padding: 70px 0 60px;
  }
}
@media (max-width: 768px) {
  .howTo .section-title {
    margin-bottom: 40px;
  }
}
.howTo .section-title::before {
  content: "How to use";
}

.howTo-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .howTo-items {
    display: block;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.howTo-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 400px;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .howTo-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
    width: 100%;
    margin: 0 auto;
  }
}

.howTo-img {
  position: relative;
  z-index: 1;
}
.howTo-img::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  left: -30%;
  width: 70%;
  height: 3px;
  background-color: #609484;
}
@media (max-width: 768px) {
  .howTo-img::before {
    left: 50%;
    top: -30%;
    width: 3px;
    height: 60px;
  }
}
.howTo-img::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  right: -30%;
  width: 70%;
  height: 3px;
  background-color: #609484;
}
@media (max-width: 768px) {
  .howTo-img::after {
    left: 50%;
    top: 60%;
    width: 3px;
    height: 60px;
  }
}
.howTo-img img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .howTo-img img {
    width: 100px;
    margin-left: 0;
  }
}

.howTo-img-first {
  position: relative;
  z-index: 1;
}
.howTo-img-first::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  right: -30%;
  width: 70%;
  height: 3px;
  background-color: #609484;
}
@media (max-width: 768px) {
  .howTo-img-first::after {
    left: 50%;
    top: 60%;
    width: 3px;
    height: 60px;
  }
}
.howTo-img-first img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .howTo-img-first img {
    width: 100px;
    margin-left: 0;
  }
}

.howTo-img-end {
  position: relative;
  z-index: 1;
}
.howTo-img-end::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  left: -30%;
  width: 70%;
  height: 3px;
  background-color: #609484;
}
@media (max-width: 768px) {
  .howTo-img-end::before {
    left: 50%;
    top: -30%;
    width: 3px;
    height: 60px;
  }
}
.howTo-img-end img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .howTo-img-end img {
    width: 100px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .howTo-texts {
    width: 80%;
    margin-left: 20px;
  }
}

.howTo-text {
  margin-top: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .howTo-text {
    font-size: 1.8rem;
    text-align: left;
  }
}

.howTo-item p {
  padding: 10px 10px 0;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .howTo-item p {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}

.faq {
  padding: 100px 20px 0;
}
.faq .section-title::before {
  content: "Faq";
}

.faq-wrapper {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .faq-items {
    display: block;
  }
}

.faq-items-left {
  width: 50%;
}
@media (max-width: 768px) {
  .faq-items-left {
    width: 100%;
  }
}

.faq-items-right {
  width: 50%;
}
@media (max-width: 768px) {
  .faq-items-right {
    width: 100%;
  }
}

.faq-item {
  padding: 20px;
}
@media (max-width: 768px) {
  .faq-item {
    padding: 0px;
  }
}
.faq-item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .faq-item:nth-child(n+2) {
    margin-top: 10px;
  }
}

.faq-box {
  border-bottom: 1.5px solid #608494;
  opacity: 0.9;
  letter-spacing: 0.06em;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .faq-box {
    font-size: 1.4rem;
  }
}

.faq-box_q {
  color: #4B5049;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
}
.faq-box_q::before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-box_icon {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-box_icon.is-open .faq-icon_bar1 {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display: none;
}
.faq-box_icon.is-open .faq-icon_bar2 {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-icon_bar1 {
  position: absolute;
  width: 17px;
  height: 2px;
  background: #608494;
  border-radius: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.faq-icon_bar2 {
  position: absolute;
  width: 2px;
  height: 17px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #608494;
  border-radius: 20px;
  -webkit-transform: all 0.5s ease 0s;
          transform: all 0.5s ease 0s;
}

.faq-box_a {
  color: #608494;
  padding: 10px 30px 20px 0px;
  line-height: 1.6;
  display: none;
}
@media (max-width: 768px) {
  .faq-box_a {
    padding-top: 0;
    padding-right: 10px;
  }
}

.faq-box_content {
  padding-left: 30px;
  position: relative;
}
.faq-box_content::before {
  position: absolute;
  content: "A";
  top: 0;
  left: 0;
  font-size: 2rem;
}

.footer {
  padding: 10px 0 5px;
  background-color: #609484;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-img {
  width: 200px;
}
@media (max-width: 768px) {
  .footer-img {
    width: 150px;
  }
}
.footer-img img {
  display: block;
}

.footer-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.footer-sns {
  padding-left: 40px;
  font-size: 4rem;
}
@media (max-width: 768px) {
  .footer-sns {
    padding-left: 20px;
    font-size: 3rem;
  }
}

.copy {
  text-align: center;
  font-size: 1.2rem;
  margin-top: -10px;
}
@media (max-width: 768px) {
  .copy {
    font-size: 1rem;
  }
}