@charset "UTF-8";
/*clear fix*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
html {
  font-size: 62.5%; }

html.is-noScroll,
body.is-noScroll {
  overflow-y: hidden; }

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  background: #FFF;
  color: #262626;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt"; }
  body.is-noScroll {
    overflow-y: hidden; }
  @media screen and (min-width: 769px) {
    body {
      font-size: 1.8rem; } }

button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1rem; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  ul li {
    color: #fff; }

a {
  text-decoration: none;
  color: #262626;
  transition: 0.3s all ease; }
  a:hover {
    color: black;
    text-decoration: underline;
    opacity: .6; }
  a img {
    transition: .2s all ease; }
    a img:hover {
      opacity: .9; }
  a:focus {
    outline: none; }
  a:hover {
    text-decoration: none; }

h1,
h2,
h3,
h4,
h5 {
  color: #262626;
  font-weight: 700;
  line-height: inherit;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  max-width: 100%;
  color: #262626;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

span {
  word-break: break-word; }

th,
td {
  word-break: break-all; }

input,
textarea {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.text-center {
  text-align: center; }

.familyJP {
  font-family: "Noto Sans JP", sans-serif; }

.familyEN {
  font-family: "Caveat"; }

img {
  flex-shrink: 0;
  min-height: 0%; }

/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0; }

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  opacity: 0;
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes fadeInDown {
  0% {
    opacity: 0; }
  100% {
    opacity: 1;
    transform: translate(0) rotate(0.1deg); } }
/*2.上下の動きを指定*/
.downup {
  transform: translateY(50px); }

/*2.ズームインの動きを指定*/
.zoomin {
  transform: scale(1.02, 1.02); }

/* リストのアニメーション動作の時間差設定 */
.animeTimelag li {
  overflow: hidden;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform; }
  .animeTimelag li:nth-of-type(2) {
    animation-delay: .1s; }
  .animeTimelag li:nth-of-type(3) {
    animation-delay: .2s; }
  .animeTimelag li:nth-of-type(4) {
    animation-delay: .3s; }
  .animeTimelag li:nth-of-type(5) {
    animation-delay: .4s; }
  .animeTimelag li:nth-of-type(6) {
    animation-delay: .5s; }
  .animeTimelag li:nth-of-type(7) {
    animation-delay: .6s; }
  .animeTimelag li:nth-of-type(8) {
    animation-delay: .7s; }
  .animeTimelag li:nth-of-type(9) {
    animation-delay: .8s; }
  .animeTimelag li:nth-of-type(10) {
    animation-delay: .9s; }
  .animeTimelag li:nth-of-type(11) {
    animation-delay: 1.0s; }
  .animeTimelag li:nth-of-type(12) {
    animation-delay: 1.1s; }

/* コンテンツのhover時のズーム機能 */
.hover-zoom img:hover {
  opacity: 1;
  transition: all 1s ease;
  transform: scale(1.1, 1.1); }
.hover-zoom a:hover {
  opacity: 1; }

/* コンテンツのhover時の上移動機能 */
.hover-downup {
  padding-top: 2rem; }
  @media screen and (min-width: 769px) {
    .hover-downup {
      padding-top: 4rem; } }
  .hover-downup a:hover {
    opacity: 1;
    transform: translate(0, -1.2rem); }
  .hover-downup img:hover {
    opacity: 1; }

.sp-m {
  padding: 0 1.5rem; }
  @media screen and (min-width: 1120px) {
    .sp-m {
      padding: 0; } }

.sp-br {
  display: block; }
  @media screen and (min-width: 769px) {
    .sp-br {
      display: none; } }

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
  background: #fff; }

.l-header-main {
  position: relative;
  z-index: 15;
  width: 100%;
  height: 7rem;
  background: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media screen and (min-width: 769px) {
    .l-header-main {
      height: 10rem; } }

.l-header__logo {
  width: 10rem;
  margin-left: 2rem; }
  @media screen and (min-width: 577px) {
    .l-header__logo {
      width: 14.5rem;
      margin-left: 3rem; } }
  .l-header__logo img {
    width: 100%; }

.l-headwe-nav ul {
  display: flex;
  height: 100%; }
.l-headwe-nav li:nth-child(1) {
  margin-right: 1rem; }
.l-headwe-nav li:nth-child(2) {
  margin-right: 1.5rem; }
  @media screen and (min-width: 577px) {
    .l-headwe-nav li:nth-child(2) {
      margin-right: 3rem; } }

.l-header__nav-download {
  background-color: #FFF;
  border-radius: 40px;
  border: 2px solid #078060;
  font-size: 1.4rem;
  padding: 0.7rem 2.5rem;
  cursor: pointer;
  cursor: hand; }
  .l-header__nav-download:hover {
    opacity: 0.6;
    transition: 0.2s all ease; }
  .l-header__nav-download a {
    color: #078060; }

.l-header__nav-contact {
  background-color: #FF9A33;
  border-radius: 40px;
  border: 2px solid #FF9A33;
  cursor: pointer;
  cursor: hand;
  font-size: 1.4rem;
  padding: 0.7rem 3.3rem; }
  .l-header__nav-contact:hover {
    opacity: 0.6;
    transition: 0.2s all ease; }
  .l-header__nav-contact a {
    color: #fff; }

.sp-hidden {
  display: none; }
  @media screen and (min-width: 769px) {
    .sp-hidden {
      display: block; } }

                        /*====================================================================

  mv　メインヴィジュアル

====================================================================*/
.mv {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../../../../img/shopify/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top 150px right 20%;
  padding-top: 7rem; }
  @media screen and (min-width: 769px) {
    .mv {
      padding-top: 10rem;
      background-position: top 130px right 20%; } }
  .mv .mv__inner {
    height: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 1rem 1.5rem 0 1.5rem; }
    @media screen and (min-width: 769px) {
      .mv .mv__inner {
        padding: 3rem 1.5rem 0 1.5rem; } }
    @media screen and (min-width: 1080px) {
      .mv .mv__inner {
        padding: 3rem 0 0 0; } }
  .mv .mv__content {
    display: flex;
    flex-wrap: wrap; }
  .mv .mv__text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.16rem; }
    @media screen and (min-width: 376px) {
      .mv .mv__text h3 {
        font-size: 1.5rem; } }
    @media screen and (min-width: 769px) {
      .mv .mv__text h3 {
        font-size: 2.6rem;
        letter-spacing: 0.17rem; } }
  .mv .mv__text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    margin: 0;
    letter-spacing: 0.2rem; }
    @media screen and (min-width: 376px) {
      .mv .mv__text h2 {
        font-size: 3.3rem; } }
    @media screen and (min-width: 769px) {
      .mv .mv__text h2 {
        font-size: 5.7rem;
        line-height: 6.8rem; } }
    .mv .mv__text h2 span {
      font-size: 2.8rem;
      font-weight: 700; }
      @media screen and (min-width: 769px) {
        .mv .mv__text h2 span {
          font-size: 4.5rem; } }
    .mv .mv__text h2 .mv__text01 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 4rem;
      margin: 0;
      letter-spacing: 0.63rem; }
      @media screen and (min-width: 376px) {
        .mv .mv__text h2 .mv__text01 {
          font-size: 3.3rem; } }
      @media screen and (min-width: 769px) {
        .mv .mv__text h2 .mv__text01 {
          font-size: 5.7rem;
          line-height: 6.8rem;
          letter-spacing: 0.8rem; } }
  .mv .mv__text2 {
    display: flex;
    align-items: center;
    padding-top: 1rem; }
    @media screen and (min-width: 769px) {
      .mv .mv__text2 {
        padding-top: 2rem; } }
    .mv .mv__text2 img {
      display: block;
      margin-right: 1rem;
      width: 73px; }
      .mv .mv__text2 img:nth-child(1) {
        width: 25px; }
        @media screen and (min-width: 768px) {
          .mv .mv__text2 img:nth-child(1) {
            width: 50px; } }
      @media screen and (min-width: 769px) {
        .mv .mv__text2 img {
          width: 141px; } }
    .mv .mv__text2 h3 {
      font-size: 1.3rem;
      letter-spacing: 0; }
      @media screen and (min-width: 769px) {
        .mv .mv__text2 h3 {
          font-size: 3.2rem;
          letter-spacing: 0.4rem; } }
  .mv .mv__text3 {
    display: none; }
    @media screen and (min-width: 769px) {
      .mv .mv__text3 {
        display: flex;
        margin-top: 2.4rem; } }
    .mv .mv__text3 .mv__text3-black {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      position: relative; }
    .mv .mv__text3 .mv__text3-green {
      font-size: 0.9rem;
      font-weight: 400;
      color: #078060;
      position: absolute;
      display: block; }
    .mv .mv__text3 img {
      margin: 0.8rem 0.6rem 0 0; }
  .mv .mv-medal {
    width: 100%;
    margin-top: 1.5rem; }
    @media screen and (min-width: 769px) {
      .mv .mv-medal {
        width: inherit; } }
    .mv .mv-medal img {
      max-width: 140px; }
      @media screen and (min-width: 769px) {
        .mv .mv-medal img {
          max-width: 170px; } }

.mv-contact-btn__wrap {
  text-align: center;
  margin: 7rem auto 2.5rem auto;
  max-width: 768px; }
  @media screen and (min-width: 769px) {
    .mv-contact-btn__wrap {
      margin: 7rem auto 5rem auto; } }
  .mv-contact-btn__wrap .mv-contact-btn {
    background-color: #FF9A33;
    border-radius: 100px;
    border: none;
    color: #fff;
    padding: 1.8rem 0;
    cursor: pointer;
    cursor: hand;
    display: block;
    width: 90%;
    font-size: 1.6rem;
    margin: 0 auto; }
    @media screen and (min-width: 415px) {
      .mv-contact-btn__wrap .mv-contact-btn {
        width: 50%;
        padding: 1.8rem 2rem; } }
    @media screen and (min-width: 769px) {
      .mv-contact-btn__wrap .mv-contact-btn {
        width: 400px;
        font-size: 2.4rem;
        padding: 1.8rem 0; } }

.c-contact-wrap-sp {
  position: relative;
  margin: 5rem auto 0 auto;
  max-width: 768px; }
  .c-contact-wrap-sp .c-contact-btn {
    background-color: #FF9A33;
    position: absolute;
    border-radius: 100px;
    border: none;
    color: #fff;
    padding: 1.8rem 0;
    cursor: pointer;
    cursor: hand;
    display: block;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin-top: 2rem;
    font-size: 1.6rem; }
    @media screen and (min-width: 376px) {
      .c-contact-wrap-sp .c-contact-btn {
        font-size: 1.6rem; } }
    @media screen and (min-width: 577px) {
      .c-contact-wrap-sp .c-contact-btn {
        width: 57%; } }

                        /*====================================================================

  mv　旧メインヴィジュアル

====================================================================*/
                        /*
                        .mv {
                            padding-top: 15rem;
                            overflow: hidden;
                            position: relative;
                            height: 32vh;
                            position: relative;
                            @include mq(xs3, min, true) {
                                padding-top: 15rem;
                                height: 33vh;
                            }
                            @include mq(xs2, min, true) {
                                padding-top: 15rem;
                                height: 35vh;
                            }
                            @include mq(xs, min) {
                                padding-top: 15rem;
                                height: 38vh;
                            }
                            @include mq(sm, min, true) {
                                padding-top: 15rem;
                                height: 44vh;
                            }
                            @include mq(md, min) {
                                padding-top: 20rem;
                                height: 52vh;
                            }
                            @include mq(lg, min, true) {
                                padding-top: 25rem;
                                height: 45vh;
                            }
                        }

                        .mv__wrap {
                            position: absolute;
                            width: 100%;
                            background-position: center bottom;
                            background-size: cover;
                        }

                        .mv-inner {
                            padding-top: 149%;
                            background-image: url(../../../../img/shopify/mv.jpg);
                            background-size: cover;
                            background-position: right 20% bottom;
                            @include mq(xs2, min, true) {
                                padding-top: 115%;
                                background-image: url(../../../../img/shopify/mv.jpg);
                                background-size: cover;
                                background-position: right 20% bottom;
                            }
                            @include mq(sm, min, true) {
                                padding-top: 95%;
                                background-image: url(../../../../img/shopify/mv.jpg);
                                background-size: cover;
                                background-position: right 20% bottom;
                            }
                            @include mq(md, min, true) {
                                padding-top: 103%;
                                background-image: url(../../../../img/shopify/mv.jpg);
                                background-size: cover;
                                background-position: right 20% bottom;
                            }
                            @include mq(lg, min, true) {
                                padding-top: 53%;
                                background-image: url(../../../../img/shopify/mv.jpg);
                                background-size: cover;
                                background-position: center bottom;
                            }
                            @include mq(xl, min, true) {
                                padding-top: 44%;
                                background-image: url(../../../../img/shopify/mv.jpg);
                                background-size: cover;
                                background-position: center bottom;
                            }
                            @include mq(xl2, min, true) {
                                padding-top: 41%;
                                background-image: url(../../../../img/shopify/mv.jpg);
                                background-size: cover;
                                background-position: center bottom;
                                max-height: 40vh;
                            }
                        }

                        .mv__content {
                            width: 100%;
                            margin: 0 auto;
                            position: absolute;
                            top: -50px;
                            z-index: 20;
                            display: block;
                            .mv__text {
                                max-width: $page_width;
                                margin: 0 auto;
                                padding: 0 2rem;
                                h3 {
                                    font-size: 1.3rem;
                                    font-weight: 700;
                                    margin: 0;
                                    @media screen and (min-width: 331px) {
                                        font-size: 1.5rem;
                                    }
                                    @include mq(sm, min, true) {
                                        font-size: 2.6rem;
                                    }
                                }
                                h2 {
                                    font-size: 3rem;
                                    font-weight: 700;
                                    line-height: 4rem;
                                    margin: 0;
                                    @media screen and (min-width: 339px) {
                                        font-size: 3.3rem;
                                    }
                                    @include mq(sm, min, true) {
                                        font-size: 5.7rem;
                                        line-height: 6.8rem;
                                    }
                                    span {
                                        font-size: 2.8rem;
                                        font-weight: 700;
                                        @include mq(sm, min, true) {
                                            font-size: 4.5rem;
                                        }
                                    }
                                }
                            }
                            .mv__text2 {
                                display: flex;
                                align-items: center;
                                padding-top: 1rem;
                                @include mq(md, min, true) {
                                    padding-top: 2rem;
                                }
                                img {
                                    display: block;
                                    margin-right: 0.8rem;
                                    width: 73px;
                                    &:nth-child(1) {
                                        width: 25px;
                                        @include mq(md, min) {
                                            width: 48px;
                                        }
                                    }
                                    @include mq(md, min, true) {
                                        width: 141px;
                                    }
                                }
                                h3 {
                                    font-size: 1.3rem;
                                    @include mq(md, min, true) {
                                        font-size: 3.2rem;
                                    }
                                }
                            }
                            .mv__text3 {
                                display: none;
                                @include mq(md, min, true) {
                                    display: flex;
                                    margin-top: 2.4rem;
                                }
                                .mv__text3-black {
                                    font-size: 1.5rem;
                                    font-weight: 700;
                                    margin: 0;
                                    position: relative;
                                }
                                .mv__text3-green {
                                    font-size: 0.9rem;
                                    font-weight: 400;
                                    color: $textColorSub_4;
                                    position: absolute;
                                    display: block;
                                }
                                img {
                                    margin: 0.8rem 0.9rem 0 0.4rem;
                                }
                            }
                            .mv__icon {
                                position: none;
                                margin-top: 1rem;
                                width: 140px;
                                @include mq(md, min, true) {
                                    position: relative;
                                    bottom: 35rem;
                                    left: 50rem;
                                    width: 176px;
                                }
                            }
                            .mv__contact-wrap {
                                max-width: $page_width;
                                display: block;
                                .mv__contact {
                                    background-color: $baseColor_9;
                                    border-radius: 40px;
                                    border: none;
                                    color: $textColorSub;
                                    padding: 1.3rem 2rem;
                                    cursor: pointer;
                                    cursor: hand;
                                    display: block;
                                    position: absolute;
                                    top: 117%;
                                    left: 50%;
                                    width: 80%;
                                    transform: translate(-50%, -50%);
                                    -webkit-transform: translate(-50%, -50%);
                                    -ms-transform: translate(-50%, -50%);
                                    font-size: 1.6rem;
                                    @include mq(xs3, min, true) {
                                        top: 125%;
                                        left: 50%;
                                        padding: 1.3rem 2rem;
                                        transform: translate(-50%, -50%);
                                        -webkit-transform: translate(-50%, -50%);
                                        -ms-transform: translate(-50%, -50%);
                                        font-size: 1.6rem;
                                    }
                                    @include mq(xs2, min, true) {
                                        top: 130%;
                                        left: 50%;
                                        transform: translate(-50%, -50%);
                                        -webkit-transform: translate(-50%, -50%);
                                        -ms-transform: translate(-50%, -50%);
                                        font-size: 1.6rem;
                                    }
                                    @include mq(xs, min, true) {
                                        top: 135%;
                                        left: 50%;
                                        width: initial;
                                        transform: translate(-50%, -50%);
                                        -webkit-transform: translate(-50%, -50%);
                                        -ms-transform: translate(-50%, -50%);
                                        font-size: 1.6rem;
                                    }
                                    @include mq(sm, min, true) {
                                        top: 120%;
                                        left: 50%;
                                        transform: translate(-50%, -50%);
                                        -webkit-transform: translate(-50%, -50%);
                                        -ms-transform: translate(-50%, -50%);
                                        font-size: 1.6rem;
                                    }
                                    @include mq(md, min, true) {
                                        position: absolute;
                                        top: 100%;
                                        left: 50%;
                                        padding: 1.3rem 7rem;
                                        transform: translate(-50%, -50%);
                                        -webkit-transform: translate(-50%, -50%);
                                        -ms-transform: translate(-50%, -50%);
                                        font-size: 1.6rem;
                                    }
                                    @include mq(lg, min, true) {
                                        position: absolute;
                                        top: 85%;
                                        left: 50%;
                                        padding: 1.3rem 7rem;
                                        transform: translate(-50%, -50%);
                                        -webkit-transform: translate(-50%, -50%);
                                        -ms-transform: translate(-50%, -50%);
                                        font-size: 1.6rem;
                                    }
                                }
                            }
                        }
                        */
                        /*====================================================================

  problem　こんなお悩みありませんか？

====================================================================*/
.problem {
  width: 100%;
  background-color: #EBF5F2;
  bottom: 20px; }

.problem__inner {
  max-width: 1080px;
  margin: auto;
  padding-top: 5rem;
  padding-bottom: 10rem; }
  @media screen and (min-width: 769px) {
    .problem__inner {
      padding-top: 10rem; } }
  .problem__inner h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #024D3F;
    margin: 0; }
    @media screen and (min-width: 376px) {
      .problem__inner h2 {
        font-size: 2.6rem;
        color: #024D3F; } }
    @media screen and (min-width: 577px) {
      .problem__inner h2 {
        font-size: 4rem;
        color: #024D3F; } }
  .problem__inner h4 {
    font-size: 1rem;
    margin: 0;
    text-align: center;
    color: #024D3F;
    margin-top: -7px; }
    @media screen and (min-width: 769px) {
      .problem__inner h4 {
        font-size: 1.6rem; } }
  .problem__inner .problem__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding-top: 4rem;
    line-height: 3rem; }
    @media screen and (min-width: 769px) {
      .problem__inner .problem__list {
        padding-top: 7.2rem; } }
    @media screen and (min-width: 1080px) {
      .problem__inner .problem__list {
        margin: 0; } }
    .problem__inner .problem__list li {
      width: 48%;
      background-color: #FFF;
      border-radius: 5px;
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1.4; }
      .problem__inner .problem__list li:nth-child(3) {
        margin-top: 5rem; }
        @media screen and (min-width: 577px) {
          .problem__inner .problem__list li:nth-child(3) {
            margin-top: inherit; } }
      .problem__inner .problem__list li:nth-child(4) {
        margin-top: 5rem; }
        @media screen and (min-width: 769px) {
          .problem__inner .problem__list li:nth-child(4) {
            margin-top: 7.8rem; } }
      .problem__inner .problem__list li:nth-child(5) {
        margin-top: 5rem; }
        @media screen and (min-width: 769px) {
          .problem__inner .problem__list li:nth-child(5) {
            margin-top: 7.8rem; } }
      .problem__inner .problem__list li:nth-child(6) {
        margin-top: 5rem; }
        @media screen and (min-width: 769px) {
          .problem__inner .problem__list li:nth-child(6) {
            margin-top: 7.8rem; } }
      @media screen and (min-width: 577px) {
        .problem__inner .problem__list li {
          width: 30%; } }
      @media screen and (min-width: 769px) {
        .problem__inner .problem__list li {
          font-size: 1.8rem;
          font-weight: 700;
          line-height: 1.8; } }
      .problem__inner .problem__list li p {
        padding: 0rem 1.4rem 0.5rem 1.4rem; }
        @media screen and (min-width: 577px) {
          .problem__inner .problem__list li p {
            padding: 0rem 3rem 1.8rem 3rem; } }
        .problem__inner .problem__list li p span {
          font-size: 1.3rem;
          font-weight: 700;
          line-height: 1.5;
          color: #568366; }
          @media screen and (min-width: 769px) {
            .problem__inner .problem__list li p span {
              font-size: 1.8rem;
              font-weight: 700;
              line-height: 1.8;
              color: #568366; } }
      .problem__inner .problem__list li img {
        margin: -30px auto 0 auto;
        text-align: center;
        display: block;
        width: 45px; }
        @media screen and (min-width: 577px) {
          .problem__inner .problem__list li img {
            width: initial; } }

.p-border {
  width: 136px;
  border-bottom: solid 2px #95BF47;
  position: relative; }
  .p-border::after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 2px #078060;
    bottom: -2px;
    width: 50%; }

.p-container {
  position: relative; }
  .p-container .p-container-pcbox {
    max-width: 1080px;
    margin: auto; }
  .p-container .p-concept__inner-pc {
    display: none;
    position: relative; }
    @media screen and (min-width: 950px) {
      .p-container .p-concept__inner-pc {
        display: block; } }
  .p-container .p-concept__col_wrap {
    position: relative; }
    .p-container .p-concept__col_wrap::after {
      content: "";
      display: block;
      clear: both; }
  .p-container .p-concept__col_image {
    right: 0;
    position: absolute;
    top: 70px;
    width: 55%;
    z-index: 9;
    display: none; }
    @media screen and (min-width: 950px) {
      .p-container .p-concept__col_image {
        display: block; } }
    .p-container .p-concept__col_image img {
      max-width: 475px;
      width: 100%; }
      @media screen and (min-width: 950px) {
        .p-container .p-concept__col_image img {
          max-width: 700px;
          width: 100%; } }
  .p-container .p-concept__col_text {
    float: left;
    width: 72%;
    padding-left: 2rem; }
    @media screen and (min-width: 1110px) {
      .p-container .p-concept__col_text {
        padding-left: 0; } }
  .p-container .p-concept__text_block {
    padding: 100px 0 90px 0;
    position: relative; }
    .p-container .p-concept__text_block h3 {
      font-size: 1.8rem;
      position: relative;
      line-height: 3.2rem; }
      .p-container .p-concept__text_block h3 small {
        font-size: 2rem;
        line-height: 2.4rem; }
      .p-container .p-concept__text_block h3 b {
        font-size: 4rem;
        line-height: 5.4rem;
        font-weight: bold; }
    .p-container .p-concept__text_block p {
      font-size: 1.8rem;
      position: relative;
      line-height: 3.2rem;
      max-width: 400px; }
      .p-container .p-concept__text_block p span {
        color: #078060;
        font-size: 1.8rem; }
    .p-container .p-concept__text_block::before {
      right: 0;
      height: 100%;
      content: "";
      position: absolute;
      top: 0;
      width: 300%;
      background-color: #FFF;
      border-radius: 0 5px 0 0; }
  .p-container .p-concept__inner-sp {
    display: block;
    max-width: 100%; }
    @media screen and (min-width: 950px) {
      .p-container .p-concept__inner-sp {
        display: none; } }
  .p-container .p-concept__col_wrap-sp {
    margin: auto; }
  .p-container .p-concept__text_block-sp {
    background-color: #FFF;
    padding: 5rem 1.5rem 15rem 1.5rem; }
    .p-container .p-concept__text_block-sp p {
      line-height: 3.2rem; }
      .p-container .p-concept__text_block-sp p span {
        color: #078060; }
    .p-container .p-concept__text_block-sp h3 {
      font-size: 1.6rem;
      line-height: 2.5rem; }
      .p-container .p-concept__text_block-sp h3 small {
        font-size: 1.5rem;
        line-height: 2.2rem;
        font-weight: bold; }
      .p-container .p-concept__text_block-sp h3 b {
        font-size: 2.9rem;
        line-height: 3.8rem; }
        .p-container .p-concept__text_block-sp h3 b br:nth-of-type(1) {
          display: none; }
          @media screen and (min-width: 376px) {
            .p-container .p-concept__text_block-sp h3 b br:nth-of-type(1) {
              display: block; } }
  .p-container .p-concept__col_image-sp {
    max-width: 100%;
    padding-top: 3rem;
    position: relative;
    margin-bottom: -150px; }
    .p-container .p-concept__col_image-sp::before {
      content: "";
      display: block;
      padding-top: 66%; }
    .p-container .p-concept__col_image-sp .inner {
      position: absolute;
      bottom: 150px;
      right: 0;
      width: 100%;
      height: 100%;
      text-align: right; }
    .p-container .p-concept__col_image-sp img {
      max-width: 100%;
      z-index: 99;
      width: 95%;
      height: auto;
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box; }

                        /*====================================================================

  merit　メリット

====================================================================*/
.merit {
  background-color: #95BF47;
  justify-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  height: auto; }
  @media screen and (min-width: 938px) {
    .merit {
      background: linear-gradient(90deg, #95BF47 0%, #95BF47 50%, #078060 50%, #078060 100%);
      width: 100%; } }

.merit__col-wrap {
  width: 100%; }
  @media screen and (min-width: 938px) {
    .merit__col-wrap {
      max-width: 1080px;
      margin: auto;
      display: flex;
      -ms-flex-direction: row;
      flex-wrap: wrap;
      width: 95%;
      padding: 0 1.5rem; } }
  @media screen and (min-width: 1080px) {
    .merit__col-wrap {
      max-width: 1080px; } }
  .merit__col-wrap h3 {
    font-size: 2.5rem;
    color: #fff;
    line-height: 3rem;
    padding: 1rem 0 0 0; }
    @media screen and (min-width: 390px) {
      .merit__col-wrap h3 {
        padding-top: 3rem;
        font-size: 3rem;
        line-height: 3.8rem; } }
    @media screen and (min-width: 938px) {
      .merit__col-wrap h3 {
        margin-top: 6rem;
        font-size: 3.2rem; } }
  .merit__col-wrap small {
    margin: 0;
    font-size: 1.3rem;
    font-weight: normal;
    text-align: right;
    margin: 2.5rem 0;
    color: #fff; }
    @media screen and (min-width: 390px) {
      .merit__col-wrap small {
        font-size: 1.6rem;
        margin: 3.2rem 0;
        text-align: initial; } }
  .merit__col-wrap .merit__col-text {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    font-size: 1.8rem;
    font-weight: bold; }
    .merit__col-wrap .merit__col-text img {
      margin-right: 2rem;
      flex-shrink: 0; }
    .merit__col-wrap .merit__col-text p {
      color: #fff;
      line-height: 2.8rem; }
    .merit__col-wrap .merit__col-text span {
      color: #FFE200; }
  .merit__col-wrap .merit__col-text-1st {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    font-weight: bold; }
    @media screen and (min-width: 938px) {
      .merit__col-wrap .merit__col-text-1st {
        padding: initial; } }
    .merit__col-wrap .merit__col-text-1st img {
      margin-right: 2rem;
      flex-shrink: 0; }
    .merit__col-wrap .merit__col-text-1st p {
      color: #fff;
      line-height: 2.8rem; }
    .merit__col-wrap .merit__col-text-1st span {
      color: #FFE200; }
  .merit__col-wrap .merit__col-left {
    width: 100%;
    margin: 0 auto; }
    @media screen and (min-width: 938px) {
      .merit__col-wrap .merit__col-left {
        width: 44%;
        padding-bottom: 8rem;
        padding-left: 0;
        padding-right: 0; } }
    .merit__col-wrap .merit__col-left .merit__col-left-ttl {
      display: flex;
      justify-content: space-between;
      align-items: flex-end; }
      @media screen and (min-width: 390px) {
        .merit__col-wrap .merit__col-left .merit__col-left-ttl {
          display: flex;
          justify-content: space-between;
          align-items: flex-end; } }
  .merit__col-wrap .merit__col-left-inner {
    padding: 0 1.5rem 6rem 1.5rem; }
    @media screen and (min-width: 938px) {
      .merit__col-wrap .merit__col-left-inner {
        padding: 0; } }
  .merit__col-wrap .merit__col-center {
    width: 100%;
    text-align: center;
    position: relative;
    top: 0; }
    @media screen and (min-width: 938px) {
      .merit__col-wrap .merit__col-center {
        width: 12%; } }
  .merit__col-wrap .merit__col-right {
    width: 100%;
    background-color: #078060; }
    @media screen and (min-width: 938px) {
      .merit__col-wrap .merit__col-right {
        width: 44%;
        padding-bottom: 8rem;
        background-color: initial; } }
    .merit__col-wrap .merit__col-right .right__inner {
      max-width: 100%;
      padding: 0 1.5rem 6rem 1.5rem;
      margin: 0 auto; }
      @media screen and (min-width: 938px) {
        .merit__col-wrap .merit__col-right .right__inner {
          max-width: 100%; } }
    .merit__col-wrap .merit__col-right .merit__col-right-ttl {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap; }
      @media screen and (min-width: 390px) {
        .merit__col-wrap .merit__col-right .merit__col-right-ttl {
          display: flex;
          justify-content: space-between;
          align-items: flex-end; } }

.batsu {
  display: block;
  width: 100%;
  max-height: 113px;
  max-width: 113px; }

.batsu::before,
.batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 2px;
  /* 棒の幅（太さ） */
  height: 60px;
  /* 棒の高さ */
  background: #FFF; }
  @media screen and (min-width: 1126px) {
    .batsu::before,
    .batsu::after {
      height: 113px;
      /* 棒の高さ */ } }

.batsu::before {
  transform: translate(-50%, -50%) rotate(45deg); }

.batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg); }

                        /*====================================================================

  possible　様々な業界のネットショップ制作が可能です

====================================================================*/
.possible {
  width: 100%; }

.possible-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 50px 0; }
  @media screen and (min-width: 769px) {
    .possible-container {
      padding: 50px 0 140px 0; } }
  .possible-container .possible-container__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .possible-container .possible-concept__text_block {
    position: relative;
    width: 100%; }
    @media screen and (min-width: 769px) {
      .possible-container .possible-concept__text_block {
        width: 49%; } }
    .possible-container .possible-concept__text_block h3 {
      font-size: 1.8rem;
      position: relative;
      line-height: 3.2rem; }
      .possible-container .possible-concept__text_block h3 br:nth-child(2) {
        display: none; }
        @media screen and (min-width: 410px) {
          .possible-container .possible-concept__text_block h3 br:nth-child(2) {
            display: block; } }
      .possible-container .possible-concept__text_block h3 b {
        font-size: 2.9rem;
        line-height: 3.8rem;
        font-weight: bold; }
        @media screen and (min-width: 769px) {
          .possible-container .possible-concept__text_block h3 b {
            font-size: 4rem;
            line-height: 5.4rem; } }
    .possible-container .possible-concept__text_block p {
      position: relative;
      line-height: 3.2rem;
      max-width: 400px; }
      .possible-container .possible-concept__text_block p br:nth-child(1) {
        display: none; }
        @media screen and (min-width: 1080px) {
          .possible-container .possible-concept__text_block p br:nth-child(1) {
            display: block; } }
  .possible-container .possible-concept__img_block {
    width: 100%; }
    @media screen and (min-width: 769px) {
      .possible-container .possible-concept__img_block {
        width: 50%;
        text-align: right; } }
    .possible-container .possible-concept__img_block img {
      width: 100%;
      padding-top: 1rem; }
      @media screen and (min-width: 769px) {
        .possible-container .possible-concept__img_block img {
          padding-top: 6rem; } }

                        /*====================================================================

 contact-01　お問い合わせはこちら

====================================================================*/
.contact-01 {
  width: 100%;
  background-color: #FFF;
  bottom: 20px; }
  .contact-01 .c-container {
    margin: auto;
    position: relative; }
    .contact-01 .c-container .c-concept__col_image {
      right: 0;
      position: absolute;
      top: 70px;
      width: 55%;
      z-index: 9;
      display: none; }
      @media screen and (min-width: 769px) {
        .contact-01 .c-container .c-concept__col_image {
          display: block;
          width: 50vw; } }
      .contact-01 .c-container .c-concept__col_image img {
        max-width: 475px;
        width: 100%; }
        @media screen and (min-width: 769px) {
          .contact-01 .c-container .c-concept__col_image img {
            max-width: 700px;
            width: 100%; } }
    .contact-01 .c-container .c-container-pcbox {
      max-width: 1080px;
      margin: auto; }
    .contact-01 .c-container .c-concept__inner-pc {
      display: none;
      position: relative; }
      @media screen and (min-width: 769px) {
        .contact-01 .c-container .c-concept__inner-pc {
          display: block; } }
    .contact-01 .c-container .c-concept__col_wrap {
      position: relative; }
      .contact-01 .c-container .c-concept__col_wrap::after {
        content: "";
        display: block;
        clear: both; }
    .contact-01 .c-container .c-concept__col_text {
      float: left;
      width: 72%;
      padding-left: 2rem; }
      @media screen and (min-width: 769px) {
        .contact-01 .c-container .c-concept__col_text {
          padding-left: 0; } }
    .contact-01 .c-container .c-concept__text_block {
      padding: 100px 0 90px 0;
      position: relative; }
      @media screen and (min-width: 769px) and (max-width: 1130px) {
        .contact-01 .c-container .c-concept__text_block {
          padding: 100px 0 90px 2rem; } }
      .contact-01 .c-container .c-concept__text_block h3 {
        font-size: 1.8rem;
        position: relative;
        line-height: 3.2rem;
        color: #fff; }
        .contact-01 .c-container .c-concept__text_block h3 small {
          font-size: 2rem;
          line-height: 2.4rem; }
        .contact-01 .c-container .c-concept__text_block h3 b {
          font-size: 3.6rem;
          line-height: 5.4rem;
          font-weight: bold; }
          .contact-01 .c-container .c-concept__text_block h3 b br:nth-child(3) {
            display: none; }
            @media screen and (min-width: 769px) and (max-width: 970px) {
              .contact-01 .c-container .c-concept__text_block h3 b br:nth-child(3) {
                display: block; } }
      .contact-01 .c-container .c-concept__text_block .c-border {
        position: relative;
        padding-left: 63px; }
        .contact-01 .c-container .c-concept__text_block .c-border::before {
          content: "";
          display: inline-block;
          width: 53px;
          height: 1px;
          background-color: #FFF;
          position: absolute;
          top: 50%;
          left: 0; }
      .contact-01 .c-container .c-concept__text_block p {
        font-size: 1.8rem;
        line-height: 3.2rem;
        color: #fff; }
        .contact-01 .c-container .c-concept__text_block p span {
          color: #FFF;
          font-size: 1.8rem; }
      .contact-01 .c-container .c-concept__text_block::before {
        right: 0;
        height: 116%;
        content: "";
        position: absolute;
        top: 0;
        width: 300%;
        background-color: #024D3F;
        border-radius: 0 5px 5px 0; }
    .contact-01 .c-container .c-concept__inner-sp {
      display: block;
      max-width: 100%; }
      @media screen and (min-width: 769px) {
        .contact-01 .c-container .c-concept__inner-sp {
          display: none; } }
    .contact-01 .c-container .c-concept__col_wrap-sp {
      margin: auto; }
    .contact-01 .c-container .c-concept__text_block-sp {
      background-color: #024D3F;
      padding: 5rem 1.5rem 20rem 1.5rem; }
      .contact-01 .c-container .c-concept__text_block-sp p {
        font-size: 1.8rem;
        line-height: 3.2rem; }
        .contact-01 .c-container .c-concept__text_block-sp p span {
          color: #078060;
          font-size: 1.8rem; }
      .contact-01 .c-container .c-concept__text_block-sp h3 {
        font-size: 1.6rem;
        line-height: 2.5rem;
        color: #fff; }
        .contact-01 .c-container .c-concept__text_block-sp h3 small {
          font-size: 1.5rem;
          line-height: 2.2rem;
          font-weight: bold; }
        .contact-01 .c-container .c-concept__text_block-sp h3 b {
          font-size: 2.9rem;
          line-height: 3.8rem; }
      .contact-01 .c-container .c-concept__text_block-sp .contact-sp01 br:nth-of-type(3) {
        display: block; }
        @media screen and (min-width: 577px) {
          .contact-01 .c-container .c-concept__text_block-sp .contact-sp01 br:nth-of-type(3) {
            display: none; } }
      .contact-01 .c-container .c-concept__text_block-sp .c-border {
        position: relative;
        padding-left: 37px;
        font-size: 1.3rem; }
        @media screen and (min-width: 415px) {
          .contact-01 .c-container .c-concept__text_block-sp .c-border {
            padding-left: 63px;
            font-size: 1.8rem; } }
        .contact-01 .c-container .c-concept__text_block-sp .c-border::before {
          content: "";
          display: inline-block;
          width: 28px;
          height: 1px;
          background-color: #FFF;
          position: absolute;
          top: 50%;
          left: 0; }
          @media screen and (min-width: 415px) {
            .contact-01 .c-container .c-concept__text_block-sp .c-border::before {
              width: 53px; } }
      .contact-01 .c-container .c-concept__text_block-sp p {
        font-size: 1.8rem;
        line-height: 3.2rem;
        color: #fff; }
        .contact-01 .c-container .c-concept__text_block-sp p span {
          color: #FFF;
          font-size: 1.8rem; }
    .contact-01 .c-container .c-contact__wrap {
      position: relative;
      margin-top: 5rem; }
      .contact-01 .c-container .c-contact__wrap .c-contact-btn {
        background-color: #FF9A33;
        position: absolute;
        border-radius: 100px;
        border: none;
        color: #fff;
        padding: 1.8rem 0;
        cursor: pointer;
        cursor: hand;
        display: block;
        width: 400px;
        font-size: 2.4rem;
        text-align: center; }
    .contact-01 .c-container .c-contact-wrap-sp {
      position: relative;
      margin: 5rem auto 0 auto;
      max-width: 768px; }
      .contact-01 .c-container .c-contact-wrap-sp .c-contact-btn {
        background-color: #FF9A33;
        position: absolute;
        border-radius: 100px;
        border: none;
        color: #fff;
        padding: 1.8rem 0;
        cursor: pointer;
        cursor: hand;
        display: block;
        width: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        margin-top: 2rem;
        font-size: 1.6rem;
        text-align: center; }
        @media screen and (min-width: 376px) {
          .contact-01 .c-container .c-contact-wrap-sp .c-contact-btn {
            font-size: 1.6rem; } }
        @media screen and (min-width: 577px) {
          .contact-01 .c-container .c-contact-wrap-sp .c-contact-btn {
            width: 57%; } }
    .contact-01 .c-container .c-concept__col_image-sp {
      max-width: 100%;
      padding-top: 3rem;
      position: relative;
      margin-bottom: -150px; }
      .contact-01 .c-container .c-concept__col_image-sp::before {
        content: "";
        display: block;
        padding-top: 66%; }
      .contact-01 .c-container .c-concept__col_image-sp .inner {
        position: absolute;
        bottom: 128px;
        right: 0;
        width: 100%;
        height: 100%;
        text-align: center; }
      .contact-01 .c-container .c-concept__col_image-sp img {
        max-width: 100%;
        z-index: 99;
        width: 95%;
        height: auto;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box; }

                        /*====================================================================

  whatShopify　Shopifyとは

====================================================================*/
.whatShopify {
  width: 100%; }

.whatShopify-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 0 0;
  background-image: url(../../../../img/shopify/sp-whatshopify01.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right bottom; }
  @media screen and (min-width: 769px) {
    .whatShopify-container {
      background-image: none;
      padding: 50px 0 0 0; } }
  @media screen and (min-width: 769px) {
    .whatShopify-container {
      padding: 200px 0 0 0; } }
  .whatShopify-container .whatShopify-container__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end; }
  .whatShopify-container .whatShopify-concept__text_block {
    position: relative;
    width: 100%;
    margin-bottom: 3rem; }
    @media screen and (min-width: 769px) {
      .whatShopify-container .whatShopify-concept__text_block {
        width: 49%;
        margin-top: 2rem;
        margin-bottom: 4rem; } }
    .whatShopify-container .whatShopify-concept__text_block h3 {
      font-size: 1.8rem;
      position: relative;
      line-height: 3.2rem; }
      .whatShopify-container .whatShopify-concept__text_block h3 small {
        font-size: 1.5rem;
        font-weight: bold;
        display: block; }
        @media screen and (min-width: 769px) {
          .whatShopify-container .whatShopify-concept__text_block h3 small {
            font-size: 2rem;
            font-weight: bold; } }
      .whatShopify-container .whatShopify-concept__text_block h3 b {
        font-size: 2.9rem;
        line-height: 3.8rem;
        font-weight: bold; }
        @media screen and (min-width: 769px) {
          .whatShopify-container .whatShopify-concept__text_block h3 b {
            font-size: 4rem;
            line-height: 5.4rem; } }
        .whatShopify-container .whatShopify-concept__text_block h3 b br:nth-child(2) {
          display: block; }
          @media screen and (min-width: 385px) {
            .whatShopify-container .whatShopify-concept__text_block h3 b br:nth-child(2) {
              display: none; } }
          @media screen and (min-width: 769px) and (max-width: 960px) {
            .whatShopify-container .whatShopify-concept__text_block h3 b br:nth-child(2) {
              display: block; } }
    .whatShopify-container .whatShopify-concept__text_block .p-border {
      width: 136px;
      border-bottom: solid 2px #95BF47;
      position: relative; }
      .whatShopify-container .whatShopify-concept__text_block .p-border::after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 2px #078060;
        bottom: -2px;
        width: 50%; }
    .whatShopify-container .whatShopify-concept__text_block p {
      position: relative;
      line-height: 3.2rem;
      max-width: 400px; }
      .whatShopify-container .whatShopify-concept__text_block p span {
        color: #95BF47; }
  .whatShopify-container .whatShopify-concept__img_block {
    width: 100%;
    display: none; }
    @media screen and (min-width: 769px) {
      .whatShopify-container .whatShopify-concept__img_block {
        width: 48%;
        text-align: right;
        display: block; } }
    .whatShopify-container .whatShopify-concept__img_block img {
      width: 100%; }

                        /*====================================================================

  distinctive　Shopifyの特長的な機能

====================================================================*/
.distinctive {
  max-width: 100%;
  padding: 0 1.5rem; }

.distinctive-container {
  max-width: 100%;
  box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
  margin: 0 auto;
  border-radius: 5px; }
  @media screen and (min-width: 1080px) {
    .distinctive-container {
      max-width: 1080px; } }
  .distinctive-container h3 {
    margin-top: 0;
    background-color: #95BF47;
    border-radius: 5px 5px 0px 0px;
    color: #fff;
    text-align: center;
    font-size: 2.3rem;
    padding: 2rem 1.5rem; }
    @media screen and (min-width: 337px) {
      .distinctive-container h3 {
        font-size: 2.6rem;
        padding: 2rem 1.5rem; } }
    @media screen and (min-width: 769px) {
      .distinctive-container h3 {
        font-size: 4rem;
        padding: 4rem 0; } }
    .distinctive-container h3 small {
      display: block;
      font-size: 1.6rem;
      margin-top: -15px; }
  .distinctive-container .distinctive-col {
    max-width: 1080px;
    margin: 2.5rem 2rem 0 2rem; }
    @media screen and (min-width: 769px) {
      .distinctive-container .distinctive-col {
        margin: 3rem 6rem 0 6rem; } }
    .distinctive-container .distinctive-col .distinctive-col-text01 {
      text-align: center;
      font-weight: normal;
      margin-bottom: 0; }
      .distinctive-container .distinctive-col .distinctive-col-text01 span {
        color: #95BF47; }
    .distinctive-container .distinctive-col .distinctive-list__wrap {
      display: flex;
      display: -webkit-flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 3rem; }
      @media screen and (min-width: 769px) {
        .distinctive-container .distinctive-col .distinctive-list__wrap {
          margin-top: 6.5rem; } }
      .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list {
        width: 48%; }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(3) {
          margin-top: 2.5rem; }
          @media screen and (min-width: 768px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(3) {
              margin-top: 0; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(4) {
          margin-top: 2.5rem; }
          @media screen and (min-width: 768px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(4) {
              margin-top: 6rem; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(5) {
          margin-top: 2.5rem; }
          @media screen and (min-width: 768px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(5) {
              margin-top: 6rem; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(6) {
          margin-top: 2.5rem; }
          @media screen and (min-width: 768px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list:nth-child(6) {
              margin-top: 6rem; } }
        @media screen and (min-width: 769px) {
          .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list {
            width: 30%; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br01 {
          display: block; }
          @media screen and (min-width: 320px) and (max-width: 357px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br01 {
              display: none; } }
          @media screen and (min-width: 769px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br01 {
              display: block; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br02 {
          display: block; }
          @media screen and (min-width: 320px) and (max-width: 335px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br02 {
              display: none; } }
          @media screen and (min-width: 769px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br02 {
              display: block; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br06 {
          display: block; }
          @media screen and (min-width: 320px) and (max-width: 326px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br06 {
              display: none; } }
          @media screen and (min-width: 986px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list .distinctive-list-br06 {
              display: none; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list figure {
          text-align: center;
          margin: 0 auto;
          max-width: 160px; }
          .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list figure img {
            width: 80px; }
            @media screen and (min-width: 577px) {
              .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list figure img {
                width: 100%; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list h4 {
          text-align: center;
          line-height: 2rem;
          font-size: 1.1rem;
          min-height: 2rem;
          margin: 0 auto 0.5rem; }
          @media screen and (min-width: 577px) and (max-width: 874px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list h4 {
              font-size: 1.5rem;
              line-height: 2rem;
              margin: 0 auto 1.3rem; } }
          @media screen and (min-width: 875px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list h4 {
              font-size: 1.8rem;
              line-height: 2.6rem;
              margin: 0 auto 1.3rem; } }
        .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list p {
          text-align: inherit;
          line-height: 2rem;
          font-size: 1.1rem;
          margin: auto; }
          @media screen and (min-width: 577px) and (max-width: 874px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list p {
              font-size: 1.3rem;
              line-height: 1.8rem; } }
          @media screen and (min-width: 875px) {
            .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list p {
              font-size: 1.6rem;
              line-height: 2.6rem; } }
          .distinctive-container .distinctive-col .distinctive-list__wrap .distinctive-list p span {
            color: #95BF47; }
    .distinctive-container .distinctive-col .list-last {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin: 3rem 0 3rem 0; }
      @media screen and (min-width: 769px) {
        .distinctive-container .distinctive-col .list-last {
          margin: 6rem 0 6rem 0; } }
      .distinctive-container .distinctive-col .list-last .distinctive-list {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
        @media screen and (min-width: 769px) {
          .distinctive-container .distinctive-col .list-last .distinctive-list {
            display: block;
            width: 30%; } }
        .distinctive-container .distinctive-col .list-last .distinctive-list figure {
          text-align: left;
          width: 80px;
          margin: 0 0 0 0; }
          @media screen and (min-width: 577px) and (max-width: 768px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list figure {
              width: 160px; } }
          @media screen and (min-width: 769px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list figure {
              text-align: center;
              width: 160px;
              margin: 0 auto 1rem auto; } }
          .distinctive-container .distinctive-col .list-last .distinctive-list figure img {
            width: 100%; }
        .distinctive-container .distinctive-col .list-last .distinctive-list h4 {
          text-align: center;
          line-height: 2.6rem;
          margin: 0 0 0 2rem;
          font-size: 1.1rem;
          min-height: 2rem; }
          @media screen and (min-width: 577px) and (max-width: 874px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list h4 {
              font-size: 1.5rem;
              line-height: 2rem; } }
          @media screen and (min-width: 875px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list h4 {
              font-size: 1.6rem;
              line-height: 2.6rem; } }
          @media screen and (min-width: 769px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list h4 {
              margin: 0 auto; } }
          .distinctive-container .distinctive-col .list-last .distinctive-list h4 br:nth-child(1) {
            display: none; }
            @media screen and (min-width: 769px) and (max-width: 868px) {
              .distinctive-container .distinctive-col .list-last .distinctive-list h4 br:nth-child(1) {
                display: block; } }
      .distinctive-container .distinctive-col .list-last .distinctive-list-last {
        width: 100%; }
        @media screen and (min-width: 769px) {
          .distinctive-container .distinctive-col .list-last .distinctive-list-last {
            width: 65%; } }
        .distinctive-container .distinctive-col .list-last .distinctive-list-last figure {
          text-align: center; }
        .distinctive-container .distinctive-col .list-last .distinctive-list-last p {
          text-align: inherit;
          line-height: 2rem;
          font-size: 1.1rem;
          width: 100%; }
          .distinctive-container .distinctive-col .list-last .distinctive-list-last p span {
            color: #95BF47; }
          @media screen and (min-width: 577px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list-last p {
              font-size: 1.6rem;
              line-height: 2.8rem; } }
          @media screen and (min-width: 769px) {
            .distinctive-container .distinctive-col .list-last .distinctive-list-last p {
              width: 100%;
              font-size: 1.6rem;
              line-height: 2.8rem; } }
  .distinctive-container .distinctive-border {
    margin: 6rem auto 3rem auto;
    border-bottom: 1px #e3e3e3 solid;
    max-width: 1080px;
    text-align: center;
    margin: 2.5rem 2rem 0 2rem; }
    @media screen and (min-width: 769px) {
      .distinctive-container .distinctive-border {
        margin: 3rem 6rem 0 6rem; } }
  .distinctive-container .distinctive-col-text02 {
    text-align: center;
    position: relative;
    background: #FFF;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 2.5rem 2rem 0 2rem; }
    @media screen and (min-width: 577px) {
      .distinctive-container .distinctive-col-text02 {
        font-size: 2.2rem;
        line-height: 3.6rem; } }
    @media screen and (min-width: 769px) {
      .distinctive-container .distinctive-col-text02 {
        margin: 3rem 6rem 0 6rem; } }
    .distinctive-container .distinctive-col-text02::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -28px;
      left: 0;
      width: 0px;
      height: 0px;
      margin: auto;
      border-style: solid;
      border-color: #FFF transparent transparent transparent;
      border-width: 10px 30px 0 30px; }
      @media screen and (min-width: 577px) {
        .distinctive-container .distinctive-col-text02::after {
          bottom: -50px;
          border-width: 20px 65px 0 65px; } }
    .distinctive-container .distinctive-col-text02 span {
      color: #568366; }
  .distinctive-container .distinctive-container__bottom {
    background-color: #EAF2DA; }
    .distinctive-container .distinctive-container__bottom p {
      text-align: center;
      font-size: 1.8rem;
      line-height: 2.2rem;
      font-weight: bold;
      padding: 1.5rem 0; }
      @media screen and (min-width: 577px) {
        .distinctive-container .distinctive-container__bottom p {
          font-size: 3rem;
          line-height: 4.4rem;
          padding: 3rem 0; } }
      .distinctive-container .distinctive-container__bottom p span {
        color: #95BF47; }

                        /*====================================================================

  customize　Shopifyは、テーマのデザイン性も高く感覚的〜

====================================================================*/
.customize {
  background-image: none;
  padding-top: 4rem; }
  @media screen and (min-width: 968px) {
    .customize {
      background-image: url(../../../../img/shopify/customize-bg.svg);
      background-size: auto;
      background-repeat: no-repeat;
      background-position: right;
      padding: 10rem 0 15rem 0; } }
  .customize .customize-wrap {
    max-width: 1080px;
    margin: 0 auto; }
    .customize .customize-wrap .customize-txt {
      width: 85%; }
      @media screen and (min-width: 968px) {
        .customize .customize-wrap .customize-txt {
          width: 37%; } }
  .customize .customize-img-sp {
    width: 100%;
    height: auto;
    text-align: right; }
    @media screen and (min-width: 968px) {
      .customize .customize-img-sp {
        display: none; } }

                        /*====================================================================

  proposing　クライマーではShopifyをクライアント様の条件に合わせてご提案

====================================================================*/
.proposing {
  background-image: url(../../../../img/shopify/proposing_bg2.png);
  background-repeat: no-repeat;
  background-size: contain; }

.proposing-ttl__wrap {
  width: 100%; }
  .proposing-ttl__wrap .proposing-ttl {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    padding-top: 0; }
    .proposing-ttl__wrap .proposing-ttl h2 {
      margin-top: 0;
      color: #078060;
      font-size: 2.5rem;
      line-height: 3rem; }
      @media screen and (min-width: 769px) {
        .proposing-ttl__wrap .proposing-ttl h2 {
          font-size: 4rem;
          line-height: 5rem; } }
      .proposing-ttl__wrap .proposing-ttl h2 span {
        font-size: 1.5rem; }
        @media screen and (min-width: 769px) {
          .proposing-ttl__wrap .proposing-ttl h2 span {
            font-size: 3rem; } }
      .proposing-ttl__wrap .proposing-ttl h2 .proposing-ttl-br {
        display: block; }
        @media screen and (min-width: 769px) {
          .proposing-ttl__wrap .proposing-ttl h2 .proposing-ttl-br {
            display: none; } }
    .proposing-ttl__wrap .proposing-ttl h3 {
      position: relative;
      display: inline-block;
      padding: 0 45px;
      font-size: 1.5rem;
      margin-bottom: 0; }
      @media screen and (min-width: 769px) {
        .proposing-ttl__wrap .proposing-ttl h3 {
          font-size: 2rem; } }
      .proposing-ttl__wrap .proposing-ttl h3::before {
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 22px;
        height: 2px;
        background-color: black;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        left: 0; }
      .proposing-ttl__wrap .proposing-ttl h3::after {
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 22px;
        height: 2px;
        background-color: black;
        -webkit-transform: rotate(-60deg);
        transform: rotate(-60deg);
        right: 0; }
    .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #078060;
      padding-bottom: 3rem; }
      @media screen and (min-width: 769px) {
        .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure {
          padding-bottom: 6rem; } }
      .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p {
        background-color: #FFF;
        box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
        color: #078060;
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 3rem;
        border-radius: 5px; }
        @media screen and (min-width: 769px) {
          .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p {
            font-size: 2.4rem; } }
        .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(1) {
          line-height: 1.2rem;
          padding: 1rem 1rem;
          width: 14%; }
          @media screen and (min-width: 410px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(1) {
              padding: 1rem 3rem; } }
          @media screen and (min-width: 769px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(1) {
              padding: 2rem 2rem;
              line-height: 2rem; } }
          @media screen and (min-width: 970px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(1) {
              line-height: 3rem;
              width: 230px; } }
        .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(3) {
          padding: 1rem 1rem;
          line-height: 1.6rem;
          width: 40%; }
          @media screen and (min-width: 769px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(3) {
              padding: 2rem;
              line-height: 3rem;
              width: 335px; } }
        .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(5) {
          padding: 1rem 1rem;
          line-height: 1.6rem;
          width: 21%; }
          @media screen and (min-width: 410px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(5) {
              padding: 1rem 2rem; } }
          @media screen and (min-width: 769px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p:nth-child(5) {
              padding: 2rem 2rem;
              line-height: 3rem;
              width: 240px; } }
        .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p .proposing-br {
          display: block; }
          @media screen and (min-width: 970px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p .proposing-br {
              display: none; } }
        .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p .proposing-br2 {
          display: block; }
          @media screen and (min-width: 320px) and (max-width: 338px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p .proposing-br2 {
              display: none; } }
          @media screen and (min-width: 339px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p .proposing-br2 {
              display: block; } }
          @media screen and (min-width: 970px) {
            .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure p .proposing-br2 {
              display: none; } }
      .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure span {
        font-size: 1.55rem;
        padding: 0 0.3rem; }
        @media screen and (min-width: 769px) {
          .proposing-ttl__wrap .proposing-ttl .proposing-ttl-figure span {
            font-size: 3.1rem;
            padding: 0 1rem; } }

.proposing__container {
  padding: 0 1.5rem; }
  @media screen and (min-width: 769px) {
    .proposing__container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0; } }
  .proposing__container .proposing__content-01 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    clear: both;
    margin-bottom: 4rem; }
    @media screen and (min-width: 769px) {
      .proposing__container .proposing__content-01 {
        margin-bottom: 8rem; } }
    .proposing__container .proposing__content-01 .proposing__content-photo {
      position: relative;
      z-index: 2;
      margin-bottom: -25vw; }
      @media screen and (min-width: 769px) {
        .proposing__container .proposing__content-01 .proposing__content-photo {
          position: absolute;
          top: 80px; } }
      .proposing__container .proposing__content-01 .proposing__content-photo img {
        width: 100%; }
        @media screen and (min-width: 769px) {
          .proposing__container .proposing__content-01 .proposing__content-photo img {
            width: initial;
            max-width: 500px;
            width: 50vw; } }
    .proposing__container .proposing__content-01 .proposing__content-yellowBG {
      background-color: #FBF7EC;
      width: 100%;
      margin-left: auto;
      padding-top: 25vw;
      padding-bottom: 3rem;
      border-radius: 5px; }
      @media screen and (min-width: 769px) {
        .proposing__container .proposing__content-01 .proposing__content-yellowBG {
          padding-top: 0;
          width: 80%; } }
      .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt {
        width: 90%;
        padding: 0 2rem 0 2rem;
        margin: auto; }
        @media screen and (min-width: 769px) {
          .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt {
            padding: 12rem 7rem 12rem 0;
            width: 47%;
            float: right; } }
        .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt small {
          font-size: 1rem;
          font-weight: bold; }
          @media screen and (min-width: 769px) {
            .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt small {
              font-size: 1.4rem; } }
        .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt h3 {
          font-size: 2rem;
          color: #078060;
          line-height: 2.5rem;
          margin: 0; }
          @media screen and (min-width: 769px) {
            .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt h3 {
              font-size: 2.6rem;
              margin: 1rem 0;
              line-height: 3.8rem; } }
          .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt h3 br {
            display: none; }
            @media screen and (min-width: 1005px) {
              .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt h3 br {
                display: block; } }
        .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt p {
          font-size: 1.6rem; }
          @media screen and (min-width: 769px) {
            .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt p {
              font-size: 1.8rem;
              line-height: 3.2rem; } }
          .proposing__container .proposing__content-01 .proposing__content-yellowBG .proposing__content-txt p span {
            color: #078060; }
  .proposing__container .proposing__content-02 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 4rem;
    clear: both; }
    @media screen and (min-width: 769px) {
      .proposing__container .proposing__content-02 {
        margin-bottom: 8rem; } }
    .proposing__container .proposing__content-02 .proposing__content-photo {
      position: relative;
      z-index: 2;
      margin-bottom: -25vw; }
      @media screen and (min-width: 769px) {
        .proposing__container .proposing__content-02 .proposing__content-photo {
          position: absolute;
          top: 80px;
          right: 0; } }
      .proposing__container .proposing__content-02 .proposing__content-photo img {
        width: 100%; }
        @media screen and (min-width: 769px) {
          .proposing__container .proposing__content-02 .proposing__content-photo img {
            width: initial;
            max-width: 500px;
            width: 50vw; } }
    .proposing__container .proposing__content-02 .proposing__content-yellowBG {
      background-color: #FBF7EC;
      border-radius: 5px;
      width: 100%;
      margin-right: auto;
      padding-top: 25vw;
      padding-bottom: 3rem; }
      @media screen and (min-width: 769px) {
        .proposing__container .proposing__content-02 .proposing__content-yellowBG {
          padding-top: 0;
          width: 80%; } }
      .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt {
        width: 90%;
        padding: 0 2rem 0 2rem;
        margin: auto; }
        @media screen and (min-width: 769px) {
          .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt {
            padding: 12rem 7rem 12rem 0;
            width: 47%;
            margin: 0 0 0 8rem; } }
        .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt small {
          font-size: 1rem;
          font-weight: bold; }
          @media screen and (min-width: 769px) {
            .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt small {
              font-size: 1.4rem; } }
        .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt h3 {
          font-size: 2rem;
          color: #078060;
          line-height: 2.5rem;
          margin: 0; }
          @media screen and (min-width: 769px) {
            .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt h3 {
              font-size: 2.6rem;
              margin: 1rem 0;
              line-height: 3.8rem; } }
          .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt h3 br {
            display: none; }
            @media screen and (min-width: 1005px) {
              .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt h3 br {
                display: block; } }
        .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt p {
          font-size: 1.6rem; }
          @media screen and (min-width: 769px) {
            .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt p {
              font-size: 1.8rem;
              line-height: 3.2rem; } }
          .proposing__container .proposing__content-02 .proposing__content-yellowBG .proposing__content-txt p span {
            color: #078060; }

                        /*====================================================================

 contact-02　お問い合わせはこちら

====================================================================*/
.contact-02 {
  width: 100%;
  background-color: #FFF;
  bottom: 20px;
  clear: both; }
  .contact-02 .c__container {
    margin: auto;
    position: relative; }
    .contact-02 .c__container .c-concept__col_image {
      right: 0;
      position: absolute;
      top: 70px;
      width: 55%;
      z-index: 9;
      display: none; }
      @media screen and (min-width: 769px) {
        .contact-02 .c__container .c-concept__col_image {
          display: block;
          width: 50vw; } }
      .contact-02 .c__container .c-concept__col_image img {
        max-width: 475px;
        width: 100%; }
        @media screen and (min-width: 769px) {
          .contact-02 .c__container .c-concept__col_image img {
            max-width: 700px;
            width: 100%; } }
    .contact-02 .c__container .c-container-pcbox {
      max-width: 1080px;
      margin: auto; }
    .contact-02 .c__container .c-concept__inner-pc {
      display: none;
      position: relative; }
      @media screen and (min-width: 769px) {
        .contact-02 .c__container .c-concept__inner-pc {
          display: block; } }
    .contact-02 .c__container .c-concept__col_wrap {
      position: relative; }
      .contact-02 .c__container .c-concept__col_wrap::after {
        content: "";
        display: block;
        clear: both; }
    .contact-02 .c__container .c-concept__col-text {
      float: left;
      width: 72%;
      padding-left: 2rem; }
      @media screen and (min-width: 769px) {
        .contact-02 .c__container .c-concept__col-text {
          padding-left: 0; } }
    .contact-02 .c__container .c-concept__text-block {
      padding: 100px 0 90px 0;
      position: relative; }
      @media screen and (min-width: 769px) and (max-width: 1130px) {
        .contact-02 .c__container .c-concept__text-block {
          padding: 100px 0 90px 2rem; } }
      .contact-02 .c__container .c-concept__text-block h3 {
        font-size: 1.8rem;
        position: relative;
        line-height: 3.2rem;
        color: #fff; }
        .contact-02 .c__container .c-concept__text-block h3 small {
          font-size: 2rem;
          line-height: 2.4rem; }
        .contact-02 .c__container .c-concept__text-block h3 b {
          font-size: 3.6rem;
          line-height: 5.4rem;
          font-weight: bold; }
      .contact-02 .c__container .c-concept__text-block .c-border {
        position: relative;
        padding-left: 63px; }
        .contact-02 .c__container .c-concept__text-block .c-border::before {
          content: "";
          display: inline-block;
          width: 53px;
          height: 1px;
          background-color: #FFF;
          position: absolute;
          top: 50%;
          left: 0; }
      .contact-02 .c__container .c-concept__text-block p {
        font-size: 1.8rem;
        line-height: 3.2rem;
        color: #fff; }
        .contact-02 .c__container .c-concept__text-block p span {
          color: #FFF;
          font-size: 1.8rem; }
      .contact-02 .c__container .c-concept__text-block::before {
        right: 0;
        height: 127%;
        content: "";
        position: absolute;
        top: 0;
        width: 300%;
        background-color: #024D3F;
        border-radius: 0 5px 5px 0; }
    .contact-02 .c__container .c-concept__inner-sp {
      display: block;
      max-width: 100%; }
      @media screen and (min-width: 769px) {
        .contact-02 .c__container .c-concept__inner-sp {
          display: none; } }
    .contact-02 .c__container .c-concept__col_wrap-sp {
      margin: auto; }
    .contact-02 .c__container .c-concept__text_block-sp {
      background-color: #024D3F;
      padding: 5rem 1.5rem 20rem 1.5rem; }
      .contact-02 .c__container .c-concept__text_block-sp p {
        font-size: 1.8rem;
        line-height: 3.2rem; }
        .contact-02 .c__container .c-concept__text_block-sp p span {
          color: #078060;
          font-size: 1.8rem; }
      .contact-02 .c__container .c-concept__text_block-sp h3 {
        font-size: 1.6rem;
        line-height: 2.5rem;
        color: #fff; }
        .contact-02 .c__container .c-concept__text_block-sp h3 small {
          font-size: 1.5rem;
          line-height: 2.2rem;
          font-weight: bold; }
        .contact-02 .c__container .c-concept__text_block-sp h3 b {
          font-size: 2.9rem;
          line-height: 3.8rem; }
      .contact-02 .c__container .c-concept__text_block-sp .contact-sp01 br:nth-of-type(3) {
        display: block; }
        @media screen and (min-width: 577px) {
          .contact-02 .c__container .c-concept__text_block-sp .contact-sp01 br:nth-of-type(3) {
            display: none; } }
      .contact-02 .c__container .c-concept__text_block-sp .c-border {
        position: relative;
        padding-left: 37px;
        font-size: 1.3rem; }
        @media screen and (min-width: 415px) {
          .contact-02 .c__container .c-concept__text_block-sp .c-border {
            padding-left: 63px;
            font-size: 1.8rem; } }
        .contact-02 .c__container .c-concept__text_block-sp .c-border::before {
          content: "";
          display: inline-block;
          width: 28px;
          height: 1px;
          background-color: #FFF;
          position: absolute;
          top: 50%;
          left: 0; }
          @media screen and (min-width: 415px) {
            .contact-02 .c__container .c-concept__text_block-sp .c-border::before {
              width: 53px; } }
      .contact-02 .c__container .c-concept__text_block-sp p {
        font-size: 1.8rem;
        line-height: 3.2rem;
        color: #fff; }
        .contact-02 .c__container .c-concept__text_block-sp p span {
          color: #FFF;
          font-size: 1.8rem; }
    .contact-02 .c__container .c-contact__wrap {
      position: relative;
      margin-top: 5rem; }
      .contact-02 .c__container .c-contact__wrap .c-contact-btn {
        background-color: #FF9A33;
        position: absolute;
        border-radius: 100px;
        border: none;
        color: #fff;
        padding: 1.8rem 0;
        cursor: pointer;
        cursor: hand;
        display: block;
        width: 400px;
        font-size: 2.4rem;
        text-align: center; }
    .contact-02 .c__container .c-contact__wrap-sp {
      position: relative;
      margin: 5rem auto 0 auto;
      max-width: 768px; }
      .contact-02 .c__container .c-contact__wrap-sp .c-contact-btn {
        background-color: #FF9A33;
        position: absolute;
        border-radius: 100px;
        border: none;
        color: #fff;
        padding: 1.8rem 0;
        cursor: pointer;
        cursor: hand;
        display: block;
        width: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        margin-top: 2rem;
        font-size: 1.6rem;
        text-align: center; }
        @media screen and (min-width: 376px) {
          .contact-02 .c__container .c-contact__wrap-sp .c-contact-btn {
            font-size: 1.6rem; } }
        @media screen and (min-width: 577px) {
          .contact-02 .c__container .c-contact__wrap-sp .c-contact-btn {
            width: 57%; } }
    .contact-02 .c__container .c-concept__col_image-sp {
      max-width: 100%;
      padding-top: 3rem;
      position: relative;
      margin-bottom: -150px; }
      .contact-02 .c__container .c-concept__col_image-sp::before {
        content: "";
        display: block;
        padding-top: 66%; }
      .contact-02 .c__container .c-concept__col_image-sp .inner {
        position: absolute;
        bottom: 104px;
        right: 0;
        width: 100%;
        height: 100%;
        text-align: center; }
      .contact-02 .c__container .c-concept__col_image-sp img {
        max-width: 100%;
        z-index: 99;
        width: 95%;
        height: auto;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box; }

                        /*====================================================================

 plan　クライマーのShopify構築料金プラン

====================================================================*/
.plan {
  padding-top: 6rem; }
  @media screen and (min-width: 769px) {
    .plan {
      padding-top: 16rem; } }
  .plan .plan__wrap {
    max-width: 1080px;
    margin: 0 auto; }
  .plan h2 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 3.6rem;
    text-align: center; }
    @media screen and (min-width: 415px) {
      .plan h2 {
        font-size: 2.9rem;
        line-height: 4rem; } }
    @media screen and (min-width: 769px) {
      .plan h2 {
        font-size: 4rem;
        line-height: 5.4rem; } }
  .plan .p-border {
    margin: auto;
    width: 136px;
    border-bottom: solid 2px #95BF47;
    position: relative; }
    .plan .p-border::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #078060;
      bottom: -2px;
      width: 50%; }
  .plan .plan-ttl-txt {
    text-align: center;
    padding-bottom: 2rem; }
    @media screen and (min-width: 768px) {
      .plan .plan-ttl-txt {
        padding-bottom: 4rem; } }
    .plan .plan-ttl-txt span {
      color: #078060; }
      .plan .plan-ttl-txt span br:nth-of-type(1) {
        display: block; }
        @media screen and (min-width: 310px) and (max-width: 375px) {
          .plan .plan-ttl-txt span br:nth-of-type(1) {
            display: none; } }
        @media screen and (min-width: 768px) {
          .plan .plan-ttl-txt span br:nth-of-type(1) {
            display: none; } }
    .plan .plan-ttl-txt br:nth-of-type(1) {
      display: block; }
      @media screen and (min-width: 768px) {
        .plan .plan-ttl-txt br:nth-of-type(1) {
          display: none; } }
    .plan .plan-ttl-txt br:nth-of-type(2) {
      display: block; }
      @media screen and (min-width: 768px) {
        .plan .plan-ttl-txt br:nth-of-type(2) {
          display: block; } }
  .plan .plan-basic__wrap {
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    margin-bottom: 4rem;
    border-radius: 5px; }
    @media screen and (min-width: 768px) {
      .plan .plan-basic__wrap {
        margin-bottom: 8rem; } }
    .plan .plan-basic__wrap h3 {
      text-align: center;
      background-color: #078060;
      color: #fff;
      border-radius: 5px 5px 0 0;
      font-size: 2.2rem;
      font-weight: bold;
      padding: 1.5rem 0; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__wrap h3 {
          font-size: 3.8rem;
          padding: 3rem 0; } }
      .plan .plan-basic__wrap h3 small {
        font-size: 1.1rem;
        font-weight: 500;
        padding-top: 0;
        display: block;
        margin-top: -1rem; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__wrap h3 small {
            font-size: 1.6rem; } }
    .plan .plan-basic__wrap .plan-basic__wrap-ttl {
      font-size: 6rem;
      color: #078060;
      margin: -2rem auto;
      text-align: center;
      font-weight: 900; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__wrap .plan-basic__wrap-ttl {
          font-size: 10rem;
          margin: -6rem auto -4rem auto; } }
      .plan .plan-basic__wrap .plan-basic__wrap-ttl small {
        font-size: 2.2rem; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__wrap .plan-basic__wrap-ttl small {
            font-size: 3.2rem; } }
    .plan .plan-basic__wrap .plan-basic__wrap-txt {
      text-align: center;
      padding: 0 1.5rem;
      line-height: 2.5rem; }
      @media screen and (min-width: 375px) {
        .plan .plan-basic__wrap .plan-basic__wrap-txt {
          padding: 0 1.5rem; } }
  .plan .plan-basic__col {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem 2.5rem;
    justify-content: space-between; }
    @media screen and (min-width: 768px) and (max-width: 924px) {
      .plan .plan-basic__col {
        padding: 2rem 2rem 4rem 2rem; } }
    @media screen and (min-width: 924px) {
      .plan .plan-basic__col {
        padding: 3rem 5rem 6rem 5rem; } }
    .plan .plan-basic__col p {
      color: #078060;
      font-size: 1.35rem;
      margin-left: 1.5rem;
      line-height: 1.9rem;
      font-weight: bold; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col p {
          font-size: 2.2rem;
          margin-left: 3rem;
          line-height: 2.4rem; } }
      .plan .plan-basic__col p small {
        font-size: 0.85rem; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col p small {
            font-size: 1.4rem; } }
      .plan .plan-basic__col p .eng {
        font-size: 0.85rem;
        font-weight: 500; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col p .eng {
            font-size: 1.4rem; } }
  .plan .plan-basic__col-left {
    width: 100%; }
    @media screen and (min-width: 831px) {
      .plan .plan-basic__col-left {
        width: 47%;
        max-width: 460px; } }
    @media screen and (min-width: 831px) and (max-width: 924px) {
      .plan .plan-basic__col-left {
        width: 49%; } }
    .plan .plan-basic__col-left .plan-basic__col-lef-list-1st {
      display: flex;
      border-top: 1px solid #078060;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-left .plan-basic__col-lef-list-1st {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-left .plan-basic__col-lef-list-1st img {
        max-width: 17px;
        flex-shrink: 0; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-left .plan-basic__col-lef-list-1st img {
            max-width: 27px; } }
    .plan .plan-basic__col-left .plan-basic__col-lef-list {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-left .plan-basic__col-lef-list {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-left .plan-basic__col-lef-list img {
        max-width: 17px;
        flex-shrink: 0; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-left .plan-basic__col-lef-list img {
            max-width: 27px; } }
  .plan .plan-basic__col-right {
    width: 100%; }
    @media screen and (min-width: 831px) {
      .plan .plan-basic__col-right {
        width: 47%;
        max-width: 460px; } }
    @media screen and (min-width: 831px) and (max-width: 924px) {
      .plan .plan-basic__col-right {
        width: 49%; } }
    .plan .plan-basic__col-right .plan-basic__col-lef-list-1st {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-right .plan-basic__col-lef-list-1st {
          height: auto;
          align-items: center;
          border-top: 1px solid #078060;
          border-bottom: 1px solid #078060; } }
      @media screen and (min-width: 768px) and (max-width: 924px) {
        .plan .plan-basic__col-right .plan-basic__col-lef-list-1st {
          border-top: none;
          border-bottom: 1px solid #078060; } }
      @media screen and (min-width: 831px) {
        .plan .plan-basic__col-right .plan-basic__col-lef-list-1st {
          height: 100px;
          border-top: 1px solid #078060;
          border-bottom: 1px solid #078060; } }
      .plan .plan-basic__col-right .plan-basic__col-lef-list-1st img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-right .plan-basic__col-lef-list-1st img {
            max-width: 27px; } }
    .plan .plan-basic__col-right .plan-basic__col-lef-list {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-right .plan-basic__col-lef-list {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-right .plan-basic__col-lef-list img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-right .plan-basic__col-lef-list img {
            max-width: 27px; } }
  .plan .plan-basic__col2 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem 2.5rem;
    justify-content: space-between; }
    @media screen and (min-width: 768px) and (max-width: 924px) {
      .plan .plan-basic__col2 {
        padding: 2rem 2rem 4rem 2rem; } }
    @media screen and (min-width: 924px) {
      .plan .plan-basic__col2 {
        padding: 3rem 5rem 6rem 5rem; } }
    .plan .plan-basic__col2 p {
      color: #078060;
      font-size: 1.35rem;
      margin-left: 1.5rem;
      line-height: 1.9rem;
      font-weight: bold; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col2 p {
          font-size: 2.2rem;
          margin-left: 3rem;
          line-height: 2.4rem; } }
      .plan .plan-basic__col2 p small {
        font-size: 0.85rem; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col2 p small {
            font-size: 1.4rem; } }
      .plan .plan-basic__col2 p .eng {
        font-size: 0.85rem;
        font-weight: 500; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col2 p .eng {
            font-size: 1.4rem; } }
  .plan .plan-basic__col-left2 {
    width: 100%; }
    @media screen and (min-width: 831px) {
      .plan .plan-basic__col-left2 {
        width: 47%;
        max-width: 460px; } }
    @media screen and (min-width: 831px) and (max-width: 924px) {
      .plan .plan-basic__col-left2 {
        width: 49%; } }
    .plan .plan-basic__col-left2 .plan-basic__col-lef-list-1st {
      display: flex;
      border-top: 1px solid #078060;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-left2 .plan-basic__col-lef-list-1st {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-left2 .plan-basic__col-lef-list-1st img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-left2 .plan-basic__col-lef-list-1st img {
            max-width: 27px; } }
    .plan .plan-basic__col-left2 .plan-basic__col-lef-list {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-left2 .plan-basic__col-lef-list {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-left2 .plan-basic__col-lef-list img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-left2 .plan-basic__col-lef-list img {
            max-width: 27px; } }
  .plan .plan-basic__col-right2 {
    width: 100%; }
    @media screen and (min-width: 831px) {
      .plan .plan-basic__col-right2 {
        width: 47%;
        max-width: 460px; } }
    @media screen and (min-width: 831px) and (max-width: 924px) {
      .plan .plan-basic__col-right2 {
        width: 49%; } }
    .plan .plan-basic__col-right2 .plan-basic__col-lef-list-1st {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-right2 .plan-basic__col-lef-list-1st {
          height: auto;
          align-items: center;
          border-top: 1px solid #078060;
          border-bottom: 1px solid #078060; } }
      @media screen and (min-width: 768px) and (max-width: 924px) {
        .plan .plan-basic__col-right2 .plan-basic__col-lef-list-1st {
          border-top: none;
          border-bottom: 1px solid #078060; } }
      @media screen and (min-width: 831px) {
        .plan .plan-basic__col-right2 .plan-basic__col-lef-list-1st {
          height: auto;
          align-items: center;
          border-top: 1px solid #078060;
          border-bottom: 1px solid #078060; } }
      .plan .plan-basic__col-right2 .plan-basic__col-lef-list-1st img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-right2 .plan-basic__col-lef-list-1st img {
            max-width: 27px; } }
    .plan .plan-basic__col-right2 .plan-basic__col-lef-list {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-right2 .plan-basic__col-lef-list {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-right2 .plan-basic__col-lef-list img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-right2 .plan-basic__col-lef-list img {
            max-width: 27px; } }
    .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last {
      display: flex;
      border-bottom: 1px solid #078060;
      height: auto;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last {
          height: auto;
          align-items: center; } }
      .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last img {
        max-width: 17px; }
        @media screen and (min-width: 768px) {
          .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last img {
            max-width: 27px; } }
      .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last .plan-basic__col-lef-list-last-br {
        display: block; }
        @media screen and (min-width: 768px) and (max-width: 1025px) {
          .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last .plan-basic__col-lef-list-last-br {
            display: block; } }
        @media screen and (min-width: 1025px) {
          .plan .plan-basic__col-right2 .plan-basic__col-lef-list-last .plan-basic__col-lef-list-last-br {
            display: none; } }

                        /*====================================================================

 subscription　Shopifyの月額利用料

====================================================================*/
.subscription {
  padding-top: 2rem; }
  @media screen and (min-width: 769px) {
    .subscription {
      padding-top: 4rem; } }
  .subscription .subscription__wrap {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center; }
  .subscription h2 {
    font-size: 2.9rem;
    font-weight: bold;
    line-height: 4rem;
    text-align: center; }
    @media screen and (min-width: 769px) {
      .subscription h2 {
        font-size: 4rem;
        line-height: 5.4rem; } }
  .subscription .p-border {
    margin: auto;
    width: 136px;
    border-bottom: solid 2px #078060;
    position: relative; }
    .subscription .p-border::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #95BF47;
      bottom: -2px;
      width: 50%; }
  .subscription .subscription-ttl-txt {
    text-align: center;
    padding-bottom: 0; }
    @media screen and (min-width: 768px) {
      .subscription .subscription-ttl-txt {
        padding-bottom: 2rem; } }
    .subscription .subscription-ttl-txt span {
      color: #95BF47; }
      .subscription .subscription-ttl-txt span br:nth-of-type(1) {
        display: block; }
        @media screen and (min-width: 768px) {
          .subscription .subscription-ttl-txt span br:nth-of-type(1) {
            display: none; } }
    .subscription .subscription-ttl-txt br:nth-of-type(1) {
      display: block; }
      @media screen and (min-width: 768px) {
        .subscription .subscription-ttl-txt br:nth-of-type(1) {
          display: none; } }
    .subscription .subscription-ttl-txt br:nth-of-type(2) {
      display: block; }
      @media screen and (min-width: 768px) {
        .subscription .subscription-ttl-txt br:nth-of-type(2) {
          display: block; } }
  .subscription .subscription-annotation {
    text-align: center;
    font-size: 1.2rem;
    color: #95BF47; }
    @media screen and (min-width: 768px) {
      .subscription .subscription-annotation {
        font-size: 1.4rem;
        text-align: right; } }
  .subscription .subscription-list__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  .subscription .subscription-list__col {
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    width: 48%;
    border-radius: 5px;
    margin-top: 1.8rem; }
    @media screen and (min-width: 768px) {
      .subscription .subscription-list__col {
        width: 24%;
        margin-top: 0; } }
    .subscription .subscription-list__col h3 {
      text-align: center;
      background-color: #95BF47;
      color: #fff;
      font-size: 1.7rem;
      font-weight: bold;
      padding: 1.5rem 0;
      border-radius: 5px 5px 0 0;
      margin-top: 0; }
      @media screen and (min-width: 769px) and (max-width: 887px) {
        .subscription .subscription-list__col h3 {
          font-size: 2.4rem; } }
      @media screen and (min-width: 887px) {
        .subscription .subscription-list__col h3 {
          font-size: 2.8rem;
          padding: 1rem 0 1.8rem 0; } }
      .subscription .subscription-list__col h3 small {
        font-size: 0.85rem;
        font-weight: 500;
        padding-top: 0;
        display: block;
        margin-top: -0.5rem; }
        @media screen and (min-width: 768px) {
          .subscription .subscription-list__col h3 small {
            font-size: 1.4rem; } }
    .subscription .subscription-list__col .subscription-list__wrap-ttl {
      font-size: 6rem;
      color: #078060;
      margin: 0 auto;
      text-align: center;
      font-weight: 900; }
      @media screen and (min-width: 768px) {
        .subscription .subscription-list__col .subscription-list__wrap-ttl {
          font-size: 10rem;
          margin: -6rem auto -4rem auto; } }
      .subscription .subscription-list__col .subscription-list__wrap-ttl small {
        font-size: 2.2rem; }
        @media screen and (min-width: 768px) {
          .subscription .subscription-list__col .subscription-list__wrap-ttl small {
            font-size: 3.2rem; } }
    .subscription .subscription-list__col .subscription-list__wrap-txt {
      text-align: center;
      padding: 0 1.5rem;
      font-size: 1rem;
      line-height: 1.4rem;
      margin-bottom: 0; }
      @media screen and (min-width: 769px) and (max-width: 887px) {
        .subscription .subscription-list__col .subscription-list__wrap-txt {
          font-size: 1.4rem;
          line-height: 2rem; } }
      @media screen and (min-width: 887px) {
        .subscription .subscription-list__col .subscription-list__wrap-txt {
          font-size: 1.6rem;
          line-height: 2.2rem; } }
    .subscription .subscription-list__col .subscription-amount {
      display: flex;
      justify-content: center;
      align-items: center; }
      .subscription .subscription-list__col .subscription-amount p {
        font-size: 3rem;
        font-weight: bold;
        margin: 0; }
        @media screen and (min-width: 768px) and (max-width: 887px) {
          .subscription .subscription-list__col .subscription-amount p {
            font-size: 3rem; } }
        @media screen and (min-width: 887px) {
          .subscription .subscription-list__col .subscription-amount p {
            font-size: 4.6rem; } }
      .subscription .subscription-list__col .subscription-amount small {
        font-size: 0.75rem;
        margin-left: 0.3rem;
        text-align: center;
        line-height: 1.15rem; }
        @media screen and (min-width: 768px) {
          .subscription .subscription-list__col .subscription-amount small {
            font-size: 1.2rem;
            margin-left: 0.5rem;
            line-height: 1.8rem; } }
    .subscription .subscription-list__col .subscription-list__btm {
      background-color: #EAF2DA;
      color: #95BF47;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0 0 5px 5px; }
      .subscription .subscription-list__col .subscription-list__btm p {
        color: #95BF47;
        font-size: 2.1rem;
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 0; }
        @media screen and (min-width: 769px) and (max-width: 887px) {
          .subscription .subscription-list__col .subscription-list__btm p {
            font-size: 2.4rem; } }
        @media screen and (min-width: 887px) {
          .subscription .subscription-list__col .subscription-list__btm p {
            font-size: 3.3rem; } }
        .subscription .subscription-list__col .subscription-list__btm p span:nth-child(1) {
          font-size: 1.35rem; }
          @media screen and (min-width: 768px) {
            .subscription .subscription-list__col .subscription-list__btm p span:nth-child(1) {
              font-size: 2.1rem; } }
        .subscription .subscription-list__col .subscription-list__btm p span:nth-child(2) {
          font-size: 1.5rem; }
          @media screen and (min-width: 768px) {
            .subscription .subscription-list__col .subscription-list__btm p span:nth-child(2) {
              font-size: 2.4rem; } }
      .subscription .subscription-list__col .subscription-list__btm small {
        text-align: center;
        line-height: 1rem;
        font-size: 0.75rem;
        margin-left: 0.3rem; }
        @media screen and (min-width: 769px) and (max-width: 887px) {
          .subscription .subscription-list__col .subscription-list__btm small {
            font-size: 1rem; } }
        @media screen and (min-width: 887px) {
          .subscription .subscription-list__col .subscription-list__btm small {
            font-size: 1.2rem;
            line-height: 1.5rem;
            margin-left: 0.5rem; } }
  .subscription .subscription__btm-txt {
    font-size: 1.3rem;
    padding: 0 4rem;
    margin-top: 4rem; }
    @media screen and (min-width: 768px) {
      .subscription .subscription__btm-txt {
        font-size: 1.4rem; } }

                        /*====================================================================

 set　基本セットのご案内

====================================================================*/
.set {
  margin-top: 5.5rem; }
  @media screen and (min-width: 769px) {
    .set {
      margin-top: 14rem; } }

.set__wrap {
  max-width: 1080px;
  margin: 0 auto; }
  .set__wrap .set-ttl-h3 {
    position: relative;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0 40px;
    font-size: 1.4rem;
    margin-bottom: 0; }
    @media screen and (min-width: 769px) {
      .set__wrap .set-ttl-h3 {
        font-size: 2rem;
        margin-bottom: -4rem; } }
    .set__wrap .set-ttl-h3::before {
      content: '';
      position: absolute;
      top: 50%;
      display: inline-block;
      width: 22px;
      height: 2px;
      background-color: black;
      -webkit-transform: rotate(60deg);
      transform: rotate(60deg);
      left: 0; }
    .set__wrap .set-ttl-h3::after {
      content: '';
      position: absolute;
      top: 50%;
      display: inline-block;
      width: 22px;
      height: 2px;
      background-color: black;
      -webkit-transform: rotate(-60deg);
      transform: rotate(-60deg);
      right: 0; }
  .set__wrap h2 {
    text-align: center;
    margin: 0 auto 2rem auto;
    color: #078060;
    font-size: 2.5rem;
    line-height: 3.4rem; }
    @media screen and (min-width: 769px) {
      .set__wrap h2 {
        font-size: 4rem;
        line-height: 5rem;
        margin-top: -1rem; } }
  .set__wrap .p-border {
    margin: auto;
    width: 136px;
    border-bottom: solid 2px #95BF47;
    position: relative; }
    .set__wrap .p-border::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #078060;
      bottom: -2px;
      width: 50%; }
  .set__wrap h4 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500; }
    @media screen and (min-width: 769px) {
      .set__wrap h4 {
        font-size: 1.8rem; } }

.set-table__wrap {
  box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
  margin-bottom: 4rem;
  border-radius: 5px; }
  @media screen and (min-width: 768px) {
    .set-table__wrap {
      margin-bottom: 8rem; } }
  .set-table__wrap h3 {
    text-align: center;
    background-color: #078060;
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 2.3rem 1rem 0 1rem;
    line-height: 3rem; }
    @media screen and (min-width: 768px) {
      .set-table__wrap h3 {
        font-size: 3.8rem;
        padding: 3rem 0;
        line-height: inherit; } }
    .set-table__wrap h3 small {
      font-size: 1.1rem;
      font-weight: 500;
      padding-top: 0;
      display: block;
      line-height: 6rem;
      margin-top: -1rem; }
      @media screen and (min-width: 768px) {
        .set-table__wrap h3 small {
          font-size: 1.6rem;
          line-height: inherit; } }
    .set-table__wrap h3 br:nth-child(1) {
      display: block; }
      @media screen and (min-width: 576px) {
        .set-table__wrap h3 br:nth-child(1) {
          display: none; } }
  .set-table__wrap .set-table__wrap-ttl {
    font-size: 6rem;
    color: #078060;
    margin: -2rem auto;
    text-align: center;
    font-weight: 900; }
    @media screen and (min-width: 768px) {
      .set-table__wrap .set-table__wrap-ttl {
        font-size: 10rem;
        margin: -6rem auto -4rem auto; } }
    .set-table__wrap .set-table__wrap-ttl small {
      font-size: 2.2rem; }
      @media screen and (min-width: 768px) {
        .set-table__wrap .set-table__wrap-ttl small {
          font-size: 3.2rem; } }
  .set-table__wrap .set-table__wrap-txt {
    text-align: center;
    padding: 0 1.5rem;
    line-height: 2.5rem; }
    @media screen and (min-width: 375px) {
      .set-table__wrap .set-table__wrap-txt {
        padding: 0 1.5rem; } }

.set-table__col {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 2rem 2.5rem 4rem 2.5rem;
  justify-content: space-between; }
  @media screen and (min-width: 768px) and (max-width: 1030px) {
    .set-table__col {
      padding: 2rem 2rem 4rem 2rem; } }
  @media screen and (min-width: 1031px) {
    .set-table__col {
      padding: 3rem 5rem 5rem 5rem; } }
  .set-table__col p {
    color: #078060;
    font-size: 1.35rem;
    margin-left: 1.5rem;
    line-height: 1.9rem;
    font-weight: bold; }
    @media screen and (min-width: 768px) {
      .set-table__col p {
        font-size: 2.2rem;
        margin-left: 3rem;
        line-height: 2.4rem; } }
    .set-table__col p small {
      font-size: 0.85rem; }
      @media screen and (min-width: 768px) {
        .set-table__col p small {
          font-size: 1.4rem; } }
    .set-table__col p .eng {
      font-size: 0.85rem;
      font-weight: 500; }
      @media screen and (min-width: 768px) {
        .set-table__col p .eng {
          font-size: 1.4rem; } }

.set-table__col-left {
  width: 100%; }
  @media screen and (min-width: 768px) and (max-width: 1063px) {
    .set-table__col-left {
      width: 49%; } }
  @media screen and (min-width: 1064px) {
    .set-table__col-left {
      width: 47%;
      max-width: 460px; } }
  .set-table__col-left .set-table__col-lef-list-1st {
    display: flex;
    border-top: 1px solid #078060;
    border-bottom: 1px solid #078060;
    height: auto;
    align-items: center; }
    @media screen and (min-width: 768px) {
      .set-table__col-left .set-table__col-lef-list-1st {
        height: auto;
        align-items: center; } }
    .set-table__col-left .set-table__col-lef-list-1st img {
      max-width: 17px; }
      @media screen and (min-width: 768px) {
        .set-table__col-left .set-table__col-lef-list-1st img {
          max-width: 27px; } }
  .set-table__col-left .set-table__col-lef-list {
    display: flex;
    border-bottom: 1px solid #078060;
    height: auto;
    align-items: center; }
    @media screen and (min-width: 768px) {
      .set-table__col-left .set-table__col-lef-list {
        height: auto;
        align-items: center; } }
    .set-table__col-left .set-table__col-lef-list img {
      max-width: 17px; }
      @media screen and (min-width: 768px) {
        .set-table__col-left .set-table__col-lef-list img {
          max-width: 27px; } }

.set-table__col-right {
  width: 100%; }
  @media screen and (min-width: 768px) and (max-width: 1063px) {
    .set-table__col-right {
      width: 49%; } }
  @media screen and (min-width: 1064px) {
    .set-table__col-right {
      width: 47%;
      max-width: 460px; } }
  .set-table__col-right .set-table__col-lef-list-1st {
    display: flex;
    border-bottom: 1px solid #078060;
    height: auto;
    align-items: center; }
    @media screen and (min-width: 768px) {
      .set-table__col-right .set-table__col-lef-list-1st {
        height: auto;
        align-items: center;
        border-top: 1px solid #078060;
        border-bottom: 1px solid #078060; } }
    @media screen and (min-width: 768px) and (max-width: 965px) {
      .set-table__col-right .set-table__col-lef-list-1st {
        height: auto;
        align-items: center; } }
    @media screen and (min-width: 966px) {
      .set-table__col-right .set-table__col-lef-list-1st {
        height: auto;
        align-items: center;
        border-top: 1px solid #078060;
        border-bottom: 1px solid #078060; } }
    .set-table__col-right .set-table__col-lef-list-1st img {
      max-width: 17px; }
      @media screen and (min-width: 768px) {
        .set-table__col-right .set-table__col-lef-list-1st img {
          max-width: 27px; } }
  .set-table__col-right .set-table__col-lef-list {
    display: flex;
    border-bottom: 1px solid #078060;
    height: auto;
    align-items: center; }
    @media screen and (min-width: 768px) {
      .set-table__col-right .set-table__col-lef-list {
        height: auto;
        align-items: center; } }
    @media screen and (min-width: 768px) and (max-width: 965px) {
      .set-table__col-right .set-table__col-lef-list {
        height: auto;
        align-items: center; } }
    @media screen and (min-width: 966px) {
      .set-table__col-right .set-table__col-lef-list {
        height: auto;
        align-items: center; } }
    .set-table__col-right .set-table__col-lef-list img {
      max-width: 17px; }
      @media screen and (min-width: 768px) {
        .set-table__col-right .set-table__col-lef-list img {
          max-width: 27px; } }
  .set-table__col-right .set-table__col-lef-list-br {
    display: none; }
    @media screen and (min-width: 768px) and (max-width: 965px) {
      .set-table__col-right .set-table__col-lef-list-br {
        display: block; } }
    @media screen and (min-width: 966px) {
      .set-table__col-right .set-table__col-lef-list-br {
        display: none; } }
  .set-table__col-right .set-table__col-right-annotation {
    text-align: right;
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 0; }
    @media screen and (min-width: 768px) {
      .set-table__col-right .set-table__col-right-annotation {
        font-size: 1.4rem; } }

                        /*====================================================================

 plan2　Shopify構築・運用料金プラン

====================================================================*/
.plan2 {
  padding-top: 1rem; }
  @media screen and (min-width: 769px) {
    .plan2 {
      padding-top: 4rem; } }
  .plan2 .plan2__wrap {
    max-width: 1080px;
    margin: 0 auto; }
  .plan2 h2 {
    font-size: 2.9rem;
    font-weight: bold;
    line-height: 4rem;
    text-align: center; }
    @media screen and (min-width: 769px) {
      .plan2 h2 {
        font-size: 4rem;
        line-height: 5.4rem; } }
  .plan2 .p-border {
    margin: auto;
    width: 136px;
    border-bottom: solid 2px #95BF47;
    position: relative; }
    .plan2 .p-border::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #078060;
      bottom: -2px;
      width: 50%; }
  .plan2 .plan2-ttl-txt {
    text-align: center;
    padding-bottom: 2rem; }
    @media screen and (min-width: 768px) {
      .plan2 .plan2-ttl-txt {
        padding-bottom: 4rem; } }
    .plan2 .plan2-ttl-txt span {
      color: #078060; }
    .plan2 .plan2-ttl-txt br:nth-of-type(1) {
      display: none; }
      @media screen and (min-width: 768px) {
        .plan2 .plan2-ttl-txt br:nth-of-type(1) {
          display: block; } }
    .plan2 .plan2-ttl-txt br:nth-of-type(2) {
      display: none; }
      @media screen and (min-width: 768px) {
        .plan2 .plan2-ttl-txt br:nth-of-type(2) {
          display: block; } }
  .plan2 .plan2-build__wrap {
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: auto;
    flex-wrap: wrap;
    align-items: stretch; }
    .plan2 .plan2-build__wrap .plan2-list-br {
      display: none; }
      @media screen and (min-width: 768px) and (max-width: 1080px) {
        .plan2 .plan2-build__wrap .plan2-list-br {
          display: block; } }
    .plan2 .plan2-build__wrap .plan2-build__col-left {
      width: 100%;
      padding: 2.3rem 2rem; }
      @media screen and (min-width: 768px) {
        .plan2 .plan2-build__wrap .plan2-build__col-left {
          width: 28%;
          padding: 5rem 0 5rem 4rem; } }
      .plan2 .plan2-build__wrap .plan2-build__col-left h4 {
        margin: 0;
        line-height: 5rem;
        color: #078060;
        border-bottom: 1px solid #078060;
        font-size: 2.25rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-left h4 {
            font-size: 2.6rem;
            margin: 0; } }
        .plan2 .plan2-build__wrap .plan2-build__col-left h4 span {
          font-size: 1.4rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-build__wrap .plan2-build__col-left h4 span {
              font-size: 1.6rem; } }
      .plan2 .plan2-build__wrap .plan2-build__col-left ul {
        margin-top: 1.5rem;
        font-size: 0; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-left ul {
            margin-top: 3rem; } }
        .plan2 .plan2-build__wrap .plan2-build__col-left ul li {
          color: #262626;
          font-weight: 500;
          font-size: 1.6rem;
          line-height: 3.5rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-build__wrap .plan2-build__col-left ul li {
              font-size: 1.6rem;
              line-height: 3.9rem; } }
          .plan2 .plan2-build__wrap .plan2-build__col-left ul li span {
            font-size: 1.2rem;
            line-height: 1.6rem; }
    .plan2 .plan2-build__wrap .plan2-build__col-center {
      width: 100%;
      padding: 2.3rem 2rem; }
      @media screen and (min-width: 768px) {
        .plan2 .plan2-build__wrap .plan2-build__col-center {
          width: 27%;
          padding: 5rem 0 5rem 4rem; } }
      .plan2 .plan2-build__wrap .plan2-build__col-center h4 {
        margin: 0;
        color: #078060;
        line-height: 5rem;
        border-bottom: 1px solid #078060;
        font-size: 2.25rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-center h4 {
            font-size: 2.6rem;
            margin: 0; } }
        .plan2 .plan2-build__wrap .plan2-build__col-center h4 span {
          font-size: 1.4rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-build__wrap .plan2-build__col-center h4 span {
              font-size: 1.6rem; } }
      .plan2 .plan2-build__wrap .plan2-build__col-center ul {
        margin-top: 1.5rem;
        font-size: 0; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-center ul {
            margin-top: 3rem; } }
        .plan2 .plan2-build__wrap .plan2-build__col-center ul li {
          color: #262626;
          font-weight: 500;
          font-size: 1.6rem;
          line-height: 3.5rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-build__wrap .plan2-build__col-center ul li {
              font-size: 1.6rem;
              line-height: 3.9rem; } }
          .plan2 .plan2-build__wrap .plan2-build__col-center ul li span {
            font-size: 1.2rem;
            line-height: 1.6rem; }
    .plan2 .plan2-build__wrap .plan2_plus {
      width: 62px;
      height: 62px;
      box-shadow: 0px 0px 15px rgba(82, 82, 82, 0.1);
      background-color: #FFF;
      border-radius: 50%;
      color: #fff;
      line-height: 68px;
      text-align: center;
      margin: 0 auto; }
      @media screen and (min-width: 768px) and (max-width: 959px) {
        .plan2 .plan2-build__wrap .plan2_plus {
          width: 40px;
          height: 40px;
          line-height: 45px;
          position: absolute;
          top: 50%;
          left: 37%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
      @media screen and (min-width: 959px) {
        .plan2 .plan2-build__wrap .plan2_plus {
          width: 62px;
          height: 62px;
          line-height: 68px;
          position: absolute;
          top: 50%;
          left: 37%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
    .plan2 .plan2-build__wrap .plan2_Equal {
      width: 62px;
      height: 62px;
      background-color: #FFF;
      border-radius: 50%;
      color: #fff;
      line-height: 62px;
      text-align: center;
      box-shadow: 0px 0px 15px rgba(82, 82, 82, 0.1);
      margin: 0 auto; }
      @media screen and (min-width: 768px) and (max-width: 959px) {
        .plan2 .plan2-build__wrap .plan2_Equal {
          width: 40px;
          height: 40px;
          line-height: 40px;
          position: absolute;
          top: 50%;
          right: 15.5%;
          -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%); } }
      @media screen and (min-width: 959px) {
        .plan2 .plan2-build__wrap .plan2_Equal {
          width: 62px;
          height: 62px;
          line-height: 62px;
          position: absolute;
          top: 50%;
          right: 15.5%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
    .plan2 .plan2-build__wrap .plan2-build__col-right {
      background-color: #078060;
      border-radius: 0 0 5px 5px;
      height: auto;
      display: flex;
      width: 100%;
      margin-top: 2rem; }
      @media screen and (min-width: 768px) {
        .plan2 .plan2-build__wrap .plan2-build__col-right {
          width: 21%;
          margin: 0;
          border-radius: 0 5px 5px 0; } }
      .plan2 .plan2-build__wrap .plan2-build__col-right p {
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        font-weight: bold;
        margin: auto;
        color: #fff;
        padding-left: 1rem;
        font-size: 2.6rem;
        padding-bottom: 1rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-right p {
            font-size: 3.3rem;
            line-height: 4.6rem; } }
        @media screen and (min-width: 768px) and (max-width: 1080px) {
          .plan2 .plan2-build__wrap .plan2-build__col-right p {
            font-size: 3rem;
            line-height: 4rem; } }
        .plan2 .plan2-build__wrap .plan2-build__col-right p br:nth-child(1) {
          display: none; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-build__wrap .plan2-build__col-right p br:nth-child(1) {
              display: block; } }
      .plan2 .plan2-build__wrap .plan2-build__col-right span {
        font-size: 4.8rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-right span {
            font-size: 6.1rem; } }
        @media screen and (min-width: 768px) and (max-width: 1080px) {
          .plan2 .plan2-build__wrap .plan2-build__col-right span {
            font-size: 4rem; } }
      .plan2 .plan2-build__wrap .plan2-build__col-right small {
        font-size: 2.2rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-build__wrap .plan2-build__col-right small {
            font-size: 2.8rem; } }
        @media screen and (min-width: 768px) and (max-width: 1080px) {
          .plan2 .plan2-build__wrap .plan2-build__col-right small {
            font-size: 2rem; } }
        .plan2 .plan2-build__wrap .plan2-build__col-right small br:nth-child(1) {
          display: none; }
          @media screen and (min-width: 768px) and (max-width: 1080px) {
            .plan2 .plan2-build__wrap .plan2-build__col-right small br:nth-child(1) {
              display: block; } }
  .plan2 .plan2-runningcost__wrap {
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: auto;
    flex-wrap: wrap;
    margin: 4rem auto 5rem auto;
    align-items: stretch; }
    @media screen and (min-width: 1000px) {
      .plan2 .plan2-runningcost__wrap {
        margin: 7rem auto 14rem auto; } }
    .plan2 .plan2-runningcost__wrap .plan2-list-br {
      display: none; }
      @media screen and (min-width: 768px) and (max-width: 1080px) {
        .plan2 .plan2-runningcost__wrap .plan2-list-br {
          display: block; } }
    .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left {
      width: 100%;
      padding: 2.3rem 2rem; }
      @media screen and (min-width: 1000px) {
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left {
          width: 30%;
          padding: 5rem 0 5rem 4rem; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 {
        margin: 0;
        line-height: 2rem;
        color: #078060;
        border-bottom: 1px solid #078060;
        font-size: 2.25rem; }
        @media screen and (min-width: 373px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 {
            line-height: 5rem; } }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 {
            font-size: 2.6rem;
            margin: 0; } }
        @media screen and (min-width: 768px) and (max-width: 1096px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 {
            line-height: 2rem; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 span {
          font-size: 1.4rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 span {
              font-size: 1.4rem; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 br {
          display: block; }
          @media screen and (min-width: 373px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 br {
              display: none; } }
          @media screen and (min-width: 768px) and (max-width: 1096px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left h4 br {
              display: block; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left .plan2-runningcost__col-left-inner {
        margin-top: 1.5rem;
        font-size: 1.2rem;
        font-weight: 500;
        color: #262626;
        display: flex;
        justify-content: space-between; }
        @media screen and (min-width: 397px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left .plan2-runningcost__col-left-inner {
            font-size: 1.6rem; } }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left .plan2-runningcost__col-left-inner {
            margin-top: 3rem;
            font-size: 1.6rem; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left .plan2-runningcost__col-left-inner .left-col-02 {
          text-align: right; }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left .plan2-runningcost__col-left-inner .left-col-03 {
          text-align: right; }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-left .plan2-runningcost__col-left-inner p {
          margin: 0 0 0.5rem 0; }
    .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center {
      width: 100%;
      padding: 2.3rem 2rem; }
      @media screen and (min-width: 1000px) {
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center {
          width: 29%;
          padding: 5rem 0 5rem 4rem; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center h4 {
        margin: 0;
        color: #078060;
        line-height: 5rem;
        border-bottom: 1px solid #078060;
        font-size: 2.25rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center h4 {
            font-size: 2.6rem;
            margin: 0; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center h4 span {
          font-size: 1.4rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center h4 span {
              font-size: 1.6rem; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center ul {
        margin-top: 1.5rem;
        font-size: 0; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center ul {
            margin-top: 3rem; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center ul li {
          color: #262626;
          font-weight: 500;
          font-size: 1.6rem;
          line-height: 3.5rem; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center ul li {
              font-size: 1.6rem;
              line-height: 3.9rem; } }
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-center ul li span {
            font-size: 1.2rem;
            line-height: 1.6rem; }
    .plan2 .plan2-runningcost__wrap .plan2_plus {
      width: 62px;
      height: 62px;
      box-shadow: 0px 0px 15px rgba(82, 82, 82, 0.1);
      background-color: #FFF;
      border-radius: 50%;
      color: #fff;
      line-height: 68px;
      text-align: center;
      margin: 0 auto; }
      @media screen and (min-width: 1000px) {
        .plan2 .plan2-runningcost__wrap .plan2_plus {
          width: 62px;
          height: 62px;
          line-height: 68px;
          position: absolute;
          top: 50%;
          left: 39%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
    .plan2 .plan2-runningcost__wrap .plan2_Equal {
      width: 62px;
      height: 62px;
      background-color: #FFF;
      border-radius: 50%;
      color: #fff;
      line-height: 62px;
      text-align: center;
      box-shadow: 0px 0px 15px rgba(82, 82, 82, 0.1);
      margin: 0 auto; }
      @media screen and (min-width: 1000px) {
        .plan2 .plan2-runningcost__wrap .plan2_Equal {
          width: 62px;
          height: 62px;
          line-height: 62px;
          position: absolute;
          top: 50%;
          right: 15.5%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }
    .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right {
      background-color: #078060;
      border-radius: 0 0 5px 5px;
      height: auto;
      display: flex;
      width: 100%;
      margin-top: 2rem; }
      @media screen and (min-width: 1000px) {
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right {
          width: 21%;
          margin: 0;
          border-radius: 0 5px 5px 0; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right p {
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        font-weight: bold;
        color: #fff;
        padding-left: 1rem;
        font-size: 2.6rem;
        padding-bottom: 1rem;
        margin: auto; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right p {
            font-size: 3.3rem;
            line-height: 4.6rem; } }
        @media screen and (min-width: 768px) and (max-width: 1080px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right p {
            font-size: 3rem;
            line-height: 4rem; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right p br:nth-child(1) {
          display: none; }
          @media screen and (min-width: 768px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right p br:nth-child(1) {
              display: block; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right span {
        font-size: 4.8rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right span {
            font-size: 6.1rem; } }
        @media screen and (min-width: 768px) and (max-width: 1080px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right span {
            font-size: 4rem; } }
      .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right small {
        font-size: 2.2rem; }
        @media screen and (min-width: 768px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right small {
            font-size: 2.8rem; } }
        @media screen and (min-width: 768px) and (max-width: 1080px) {
          .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right small {
            font-size: 2rem; } }
        .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right small br:nth-child(1) {
          display: none; }
          @media screen and (min-width: 768px) and (max-width: 1080px) {
            .plan2 .plan2-runningcost__wrap .plan2-runningcost__col-right small br:nth-child(1) {
              display: block; } }

                        /*====================================================================

                            schedule　クライマーのShopify構築スケジュール

                        ====================================================================*/
.schedule {
  padding-top: 1rem;
  background-image: url(../../../../img/shopify/schedule-bg.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain; }
  @media screen and (min-width: 769px) {
    .schedule {
      padding-top: 14rem; } }
  .schedule .schedule__wrap {
    max-width: 1080px;
    margin: 0 auto; }
  .schedule h2 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 3.6rem;
    text-align: center; }
    @media screen and (min-width: 415px) {
      .schedule h2 {
        font-size: 3rem;
        line-height: 4rem; } }
    @media screen and (min-width: 769px) {
      .schedule h2 {
        font-size: 4rem;
        line-height: 5.4rem; } }
    .schedule h2 br:nth-of-type(2) {
      display: block; }
      @media screen and (min-width: 397px) {
        .schedule h2 br:nth-of-type(2) {
          display: none; } }
  .schedule .p-border {
    margin: auto;
    width: 136px;
    border-bottom: solid 2px #95BF47;
    position: relative; }
    .schedule .p-border::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #078060;
      bottom: -2px;
      width: 50%; }
  .schedule .schedule-ttl-txt {
    text-align: center;
    padding-bottom: 2rem; }
    @media screen and (min-width: 768px) {
      .schedule .schedule-ttl-txt {
        padding-bottom: 4rem; } }
    .schedule .schedule-ttl-txt span {
      color: #078060; }
    .schedule .schedule-ttl-txt br:nth-of-type(1) {
      display: none; }
      @media screen and (min-width: 768px) {
        .schedule .schedule-ttl-txt br:nth-of-type(1) {
          display: block; } }
    .schedule .schedule-ttl-txt br:nth-of-type(2) {
      display: none; }
      @media screen and (min-width: 768px) {
        .schedule .schedule-ttl-txt br:nth-of-type(2) {
          display: block; } }
  .schedule .schedule-figure__wrap {
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 5rem;
    background-color: #FFF; }
    @media screen and (min-width: 768px) {
      .schedule .schedule-figure__wrap {
        margin-bottom: 8rem; } }
  .schedule .pc-schedule-figure {
    max-width: 952px;
    width: 90%;
    padding: 6rem 5rem;
    display: none; }
    @media screen and (min-width: 768px) {
      .schedule .pc-schedule-figure {
        display: block; } }
  .schedule .sp-schedule-figure {
    max-width: 90%;
    padding: 3rem 1.5rem;
    display: block; }
    @media screen and (min-width: 768px) {
      .schedule .sp-schedule-figure {
        display: none; } }
  .schedule .schedule-txt {
    padding-bottom: 11rem; }
    @media screen and (min-width: 768px) {
      .schedule .schedule-txt {
        padding-bottom: 9rem; } }

                        /*====================================================================

 aftersupport　アフターサポート

====================================================================*/
.aftersupport {
  width: 100%;
  background-color: #FFF;
  bottom: 20px;
  clear: both; }
  .aftersupport .c-container {
    margin: auto;
    position: relative; }
    .aftersupport .c-container .c-concept__col_image {
      right: 0;
      position: absolute;
      top: 70px;
      width: 55%;
      z-index: 9;
      display: none; }
      @media screen and (min-width: 769px) {
        .aftersupport .c-container .c-concept__col_image {
          display: block;
          width: 50vw; } }
      .aftersupport .c-container .c-concept__col_image img {
        max-width: 475px;
        width: 100%; }
        @media screen and (min-width: 769px) {
          .aftersupport .c-container .c-concept__col_image img {
            max-width: 700px;
            width: 100%; } }
    .aftersupport .c-container .c-container-pcbox {
      max-width: 1080px;
      margin: auto; }
    .aftersupport .c-container .c-concept__inner-pc {
      display: none;
      position: relative; }
      @media screen and (min-width: 769px) {
        .aftersupport .c-container .c-concept__inner-pc {
          display: block; } }
    .aftersupport .c-container .c-concept__col_wrap {
      position: relative; }
      .aftersupport .c-container .c-concept__col_wrap::after {
        content: "";
        display: block;
        clear: both; }
    .aftersupport .c-container .c-concept__col_text {
      float: left;
      width: 72%;
      padding-left: 2rem; }
      @media screen and (min-width: 769px) {
        .aftersupport .c-container .c-concept__col_text {
          padding-left: 0; } }
    .aftersupport .c-container .c-concept__text_block {
      padding: 100px 0 90px 0;
      position: relative; }
      @media screen and (min-width: 769px) and (max-width: 1130px) {
        .aftersupport .c-container .c-concept__text_block {
          padding: 100px 0 90px 2rem; } }
      .aftersupport .c-container .c-concept__text_block h3 {
        font-size: 1.5rem;
        position: relative;
        line-height: 3.2rem; }
        @media screen and (min-width: 769px) {
          .aftersupport .c-container .c-concept__text_block h3 {
            font-size: 2rem; } }
        .aftersupport .c-container .c-concept__text_block h3 small {
          font-size: 2rem;
          line-height: 2.4rem; }
        .aftersupport .c-container .c-concept__text_block h3 b {
          font-size: 3.6rem;
          line-height: 5.4rem;
          font-weight: bold; }
      .aftersupport .c-container .c-concept__text_block p {
        line-height: 3.2rem;
        max-width: 380px; }
        .aftersupport .c-container .c-concept__text_block p span {
          color: #FFF;
          font-size: 1.8rem; }
      .aftersupport .c-container .c-concept__text_block::before {
        right: 0;
        height: 116%;
        content: "";
        position: absolute;
        top: 0;
        width: 300%; }
    .aftersupport .c-container .c-concept__inner-sp {
      display: block;
      max-width: 100%; }
      @media screen and (min-width: 769px) {
        .aftersupport .c-container .c-concept__inner-sp {
          display: none; } }
    .aftersupport .c-container .c-concept__col_wrap-sp {
      margin: auto; }
    .aftersupport .c-container .c-concept__text_block-sp {
      padding: 5rem 1.5rem 0 1.5rem; }
      .aftersupport .c-container .c-concept__text_block-sp p {
        font-size: 1.8rem;
        line-height: 3.2rem; }
        .aftersupport .c-container .c-concept__text_block-sp p span {
          color: #078060;
          font-size: 1.8rem; }
      .aftersupport .c-container .c-concept__text_block-sp h3 {
        font-size: 1.5rem;
        line-height: 2.5rem; }
        .aftersupport .c-container .c-concept__text_block-sp h3 small {
          font-size: 1.5rem;
          line-height: 2.2rem;
          font-weight: bold; }
        .aftersupport .c-container .c-concept__text_block-sp h3 b {
          font-size: 2.9rem;
          line-height: 3.8rem; }
      .aftersupport .c-container .c-concept__text_block-sp .aftersupport-sp01 br:nth-of-type(3) {
        display: block; }
        @media screen and (min-width: 577px) {
          .aftersupport .c-container .c-concept__text_block-sp .aftersupport-sp01 br:nth-of-type(3) {
            display: none; } }
      .aftersupport .c-container .c-concept__text_block-sp p {
        line-height: 2.8rem; }
        .aftersupport .c-container .c-concept__text_block-sp p span {
          color: #FFF;
          font-size: 1.8rem; }
    .aftersupport .c-container .c-concept__col_image-sp {
      max-width: 100%;
      padding-top: 3rem;
      position: relative; }
      .aftersupport .c-container .c-concept__col_image-sp::before {
        content: "";
        display: block;
        padding-top: 66%; }
      .aftersupport .c-container .c-concept__col_image-sp .inner {
        position: absolute;
        bottom: 10px;
        right: 0;
        width: 100%;
        height: 100%;
        text-align: center; }
      .aftersupport .c-container .c-concept__col_image-sp img {
        max-width: 100%;
        z-index: 99;
        width: 95%;
        height: auto;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box; }

                        /*====================================================================

contact-btn　コンタクトボタン

====================================================================*/
.contact-btn__wrap {
  position: relative;
  padding-top: 5rem; }
  @media screen and (min-width: 769px) {
    .contact-btn__wrap {
      padding-top: 8rem; } }
  .contact-btn__wrap .contact-btn {
    background-color: #FF9A33;
    position: absolute;
    border-radius: 100px;
    border: none;
    color: #fff;
    padding: 1.8rem 1rem;
    cursor: pointer;
    cursor: hand;
    display: block;
    font-size: 1.6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 65%;
    text-align: center; }
    @media screen and (min-width: 769px) {
      .contact-btn__wrap .contact-btn {
        max-width: 600px;
        font-size: 2.8rem;
        padding: 1.8rem 1rem; } }

                        /*====================================================================

                        contact-form　お問い合わせフォーム

                        ====================================================================*/
/*タブ切り替え全体のスタイル*/
.contact-form {
  padding-top: 4rem;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/ }
  @media screen and (min-width: 769px) {
    .contact-form {
      padding-top: 14rem; } }
  .contact-form .contact-form__wrap {
    max-width: 1080px;
    margin: 0 auto; }
    .contact-form .contact-form__wrap h2 {
      font-size: 2.9rem;
      font-weight: bold;
      line-height: 4rem;
      text-align: center; }
      @media screen and (min-width: 769px) {
        .contact-form .contact-form__wrap h2 {
          font-size: 4rem;
          line-height: 5.4rem; } }
      .contact-form .contact-form__wrap h2 br:nth-of-type(2) {
        display: block; }
        @media screen and (min-width: 397px) {
          .contact-form .contact-form__wrap h2 br:nth-of-type(2) {
            display: none; } }
    .contact-form .contact-form__wrap .p-border {
      margin: auto;
      width: 136px;
      border-bottom: solid 2px #95BF47;
      position: relative; }
      .contact-form .contact-form__wrap .p-border::after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 2px #078060;
        bottom: -2px;
        width: 50%; }
  .contact-form .tab_item {
    width: auto;
    background-color: #EFEFEF;
    line-height: 50px;
    font-size: 1.4rem;
    float: left;
    text-align: center;
    color: #A8A8A8;
    display: block;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
    cursor: hand;
    margin-bottom: 1rem;
    margin-right: 1rem;
    border-radius: 5px;
    padding: 0.5rem 1.3rem; }
    @media screen and (min-width: 500px) {
      .contact-form .tab_item {
        margin-bottom: 3rem;
        width: 220px;
        font-size: 1.8rem;
        padding: 0.5rem 0; } }
  .contact-form .tab_item:hover {
    opacity: 0.75; }
  .contact-form input[name="tab_item"] {
    display: none; }
  .contact-form .tab__content-contact {
    clear: both;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    border-radius: 5px;
    margin: 0 auto 2.5rem auto;
    width: 100%;
    text-align: center;
    padding: 3rem 0 6rem 0;
    background-color: #FFF; }
    @media screen and (min-width: 768px) {
      .contact-form .tab__content-contact {
        margin: 6rem auto 7rem auto;
        padding: 2rem 0 7rem 0; } }
  .contact-form .tab__content-download {
    display: none;
    clear: both;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(82, 82, 82, 0.2);
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 3rem 0 6rem 0;
    background-color: #FFF; }
    @media screen and (min-width: 768px) {
      .contact-form .tab__content-download {
        margin: 6rem auto 7rem auto;
        padding: 2rem 0 7rem 0; } }
  .contact-form #contact:checked ~ #contact__content,
  .contact-form #download:checked ~ #download__content {
    display: block; }
  .contact-form .contact-form__wrap input:checked + .tab_item {
    background-color: #078060;
    color: #fff; }
  .contact-form .tab__content_description {
    max-width: 660px;
    margin: auto;
    padding: 0 1.5rem; }
  .contact-form .tab__content-step {
    display: flex;
    margin: 5rem auto; }
    .contact-form .tab__content-step .step-on {
      width: 33.3%; }
      .contact-form .tab__content-step .step-on p {
        margin: 0;
        font-weight: bold;
        color: #078060;
        font-size: 1.3rem; }
        @media screen and (min-width: 768px) {
          .contact-form .tab__content-step .step-on p {
            font-size: 1.8rem; } }
      .contact-form .tab__content-step .step-on small {
        color: #078060;
        font-size: 0.6rem; }
        @media screen and (min-width: 768px) {
          .contact-form .tab__content-step .step-on small {
            font-size: 1.2rem; } }
    .contact-form .tab__content-step .step-off {
      width: 33.3%; }
      .contact-form .tab__content-step .step-off p {
        margin: 0;
        font-weight: bold;
        color: #A8A8A8;
        font-size: 1.3rem; }
        @media screen and (min-width: 768px) {
          .contact-form .tab__content-step .step-off p {
            font-size: 1.8rem; } }
      .contact-form .tab__content-step .step-off small {
        color: #A8A8A8;
        font-size: 0.6rem; }
        @media screen and (min-width: 768px) {
          .contact-form .tab__content-step .step-off small {
            font-size: 1.2rem; } }
  .contact-form .step-border01 {
    margin: -4rem auto 4rem auto;
    width: 100%;
    border-bottom: solid 2px #EFEFEF;
    position: relative; }
    .contact-form .step-border01::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #078060;
      bottom: -2px;
      width: 33.3%; }
  .contact-form .step-border02 {
    margin: -4rem auto 4rem auto;
    width: 100%;
    border-bottom: solid 2px #EFEFEF;
    position: relative; }
    .contact-form .step-border02::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #078060;
      bottom: -2px;
      width: 33.3%;
      left: 0;
      right: 0;
      margin: auto; }
  .contact-form .step-border03 {
    margin: -4rem auto 4rem auto;
    width: 100%;
    border-bottom: solid 2px #078060;
    position: relative; }
    .contact-form .step-border03::after {
      position: absolute;
      content: " ";
      display: block;
      border-bottom: solid 2px #EFEFEF;
      bottom: -2px;
      width: 66.6%; }
  .contact-form .form-item {
    text-align: left;
    margin: 0 auto 3rem auto; }
    @media screen and (min-width: 768px) {
      .contact-form .form-item {
        margin: 0 auto 4rem 6rem; } }
    .contact-form .form-item label {
      display: block;
      color: #078060; }
      .contact-form .form-item label small {
        font-size: 1rem; }
        @media screen and (min-width: 768px) {
          .contact-form .form-item label small {
            font-size: 1.2rem; } }
    .contact-form .form-item .inputs {
      background-color: #F2F9F7;
      border: none;
      padding: 2rem;
      width: 85%;
      font-size: 1.3rem;
      border-radius: 5px;
      margin-top: 0.5rem; }
      @media screen and (min-width: 768px) {
        .contact-form .form-item .inputs {
          font-size: 1.8rem;
          width: 430px; } }
    .contact-form .form-item textarea {
      resize: both; }
    .contact-form .form-item #comment {
      width: 95%;
      height: 200px;
      border-radius: 5px;
      background-color: #F2F9F7;
      border: none;
      margin-top: 0.5rem;
      padding: 1rem;
      font-size: 1.4rem; }
      @media screen and (min-width: 768px) {
        .contact-form .form-item #comment {
          width: 600px;
          height: 260px;
          font-size: 1.8rem; } }
  .contact-form .form-item2 {
    text-align: left;
    margin: 0 auto 3rem auto; }
    @media screen and (min-width: 768px) {
      .contact-form .form-item2 {
        margin: 0 auto 4rem 6rem; } }
    .contact-form .form-item2 p {
      color: #078060;
      font-weight: bold; }
    .contact-form .form-item2 .label {
      color: #262626;
      font-weight: 500;
      line-height: 6rem;
      color: #078060;
      font-weight: bold; }
      .contact-form .form-item2 .label small {
        font-size: 1rem; }
        @media screen and (min-width: 768px) {
          .contact-form .form-item2 .label small {
            font-size: 1.2rem; } }
    .contact-form .form-item2 .inputs {
      border: none;
      width: 90%;
      font-size: 1.3rem;
      border-radius: 5px;
      margin-top: 0.5rem; }
      @media screen and (min-width: 768px) {
        .contact-form .form-item2 .inputs {
          font-size: 1.8rem;
          width: 430px; } }
    .contact-form .form-item2 input[type=radio] {
      display: none; }
    .contact-form .form-item2 .radio-box {
      box-sizing: border-box;
      cursor: pointer;
      display: inline-block;
      padding-left: 6rem;
      position: relative;
      width: auto;
      line-height: 7rem; }
      .contact-form .form-item2 .radio-box::before {
        background: #fff;
        background-color: #F2F9F7;
        border-radius: 50%;
        content: '';
        display: block;
        height: 30px;
        left: 0;
        margin-top: -8px;
        position: absolute;
        top: 41%;
        width: 30px; }
      .contact-form .form-item2 .radio-box:after {
        background: #078060;
        border-radius: 50%;
        content: '';
        display: block;
        height: 10px;
        left: 10px;
        margin-top: -4px;
        opacity: 0;
        position: absolute;
        top: 50%;
        width: 10px; }
    .contact-form .form-item2 input[type=radio]:checked + .radio-box::before {
      border-color: #666; }
    .contact-form .form-item2 input[type=radio]:checked + .radio-box::after {
      opacity: 1; }
    .contact-form .form-item2 span {
      font-size: 1.3rem; }
      @media screen and (min-width: 768px) {
        .contact-form .form-item2 span {
          font-size: 1.8rem; } }
  .contact-form .btn-area {
    text-align: center; }
    .contact-form .btn-area.confirm {
      display: flex;
      justify-content: space-between; }
      .contact-form .btn-area.confirm form {
        width: 100%; }
        .contact-form .btn-area.confirm form button {
          width: 90%; }
  .contact-form button,
  .contact-form input[type="submit"] {
    background: #078060;
    border: none;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 2rem 2rem;
    margin: 0 5px;
    border-radius: 100vh;
    width: 80%;
    -webkit-appearance: none; }
    @media screen and (min-width: 768px) {
      .contact-form button,
      .contact-form input[type="submit"] {
        font-size: 2.4rem;
        width: 60%; } }
    .contact-form button:hover,
    .contact-form input[type="submit"]:hover {
      cursor: pointer;
      opacity: 0.8; }
    .contact-form button.back,
    .contact-form input[type="submit"].back {
      background: #b8b8b8; }

                        /*====================================================================

                            footer　フッター

                        ====================================================================*/
footer {
  text-align: center; }

.copyright {
  font-size: 0.9rem; }
  @media screen and (min-width: 768px) {
    .copyright {
      font-size: 1.8rem; } }

/*# sourceMappingURL=style.css.map */
