@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  scroll-behavior: smooth;
}
@media (max-width: 1200px) {
  html {
    font-size: 0.8vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 1.5vw;
  }
}

@font-face {
  font-family: "hanari-mincho";
  src: url("../font/HannariMincho-Regular.otf") format("opentype"), url("../font/HannariMincho-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0;
  overflow: hidden;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

.font-tsuku {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-tsuku-bold {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.font-hannari {
  font-family: "hanari-mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.font-matiss {
  font-family: "fot-matisse-pron", serif;
  font-weight: 500;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.wrapper {
  width: 100%;
  padding-right: 30rem;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-right: 0;
  }
}

.l-header {
  background: url(../img/fv_bg.png) no-repeat right top;
  background-size: 80%;
  padding: 30px 0 0;
}
.l-header__inr {
  position: relative;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 0 7%;
}
@media screen and (max-width: 1640px) {
  .l-header__inr {
    padding: 0 20px 7%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inr {
    flex-wrap: wrap;
    padding: 5% 5% 0;
  }
}
.l-header__inr > figure {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .l-header__inr > figure {
    width: 70%;
    margin: 0 auto;
  }
  .l-header__inr > figure img {
    width: 100%;
  }
}
.l-header__block {
  width: 49.3%;
}
@media screen and (max-width: 767px) {
  .l-header__block {
    width: 100%;
  }
}
.l-header__block .txt1 {
  width: 60vw;
}
.l-header__block .txt2 {
  width: 90%;
  color: #302D2C;
  font-size: 51px;
  margin: 4% auto;
}
@media screen and (max-width: 1800px) {
  .l-header__block .txt2 {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__block .txt2 {
    font-size: 7.1vw;
    text-align: center;
    font-weight: bold;
  }
}
.l-header__block figure {
  width: 90%;
  margin: 0 auto;
}
.l-header .smartphone {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header {
    background-position: center top;
    background-size: auto 80vw;
    padding: 0 0 0;
  }
  .l-header .fv {
    display: none;
  }
  .l-header__text {
    position: static;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3vw;
    height: auto;
  }
  .l-header__text .txt1 {
    width: 92%;
    filter: drop-shadow(2vw 2vw 2vw rgba(0, 0, 0, 0.5));
    margin-bottom: 4vw;
  }
  .l-header__text .txt2 {
    width: 100%;
    font-size: 7vw;
  }
  .l-header .smartphone {
    display: block;
    width: 100%;
    margin-top: 4vw;
    text-align: center;
  }
  .l-header .smartphone img {
    width: 66%;
  }
}

.sec_mail {
  position: fixed;
  top: 0;
  right: 0;
  width: 30rem;
  height: 100%;
  background: #009E96;
  z-index: 100;
  padding: 4rem 2rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .sec_mail {
    position: relative;
    inset: 0 0 0 0;
    width: 100%;
    height: auto;
    padding: 10rem 5rem 10rem;
  }
  .sec_mail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #009E96;
    clip-path: polygon(0 0, 100% 16vw, 100% 100%, 0% 100%);
  }
  .sec_mail * {
    position: relative;
    z-index: 3;
  }
}
.sec_mail h2 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_mail h2 {
    font-size: 6rem;
    margin-bottom: 3rem;
  }
}
.sec_mail .form dt {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.sec_mail .form dt .req {
  background-color: #972F2F;
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0 0.3rem 0.2rem;
  margin-left: 0.6rem;
}
@media screen and (max-width: 767px) {
  .sec_mail .form dt {
    font-size: 2.8rem;
  }
}
.sec_mail .form dd {
  margin-bottom: 1.4rem;
}
.sec_mail .form dd.clm1 input, .sec_mail .form dd.clm1 textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  background-color: #fff;
  color: #046292;
}
.sec_mail .form dd.clm2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.sec_mail .form dd.clm2 input {
  width: calc(50% - 0.1rem);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  background-color: #fff;
  color: #046292;
}
.sec_mail .form dd textarea {
  height: 10rem;
}
.sec_mail .form dd.chk label span {
  color: #fff;
  font-size: 1.4rem;
  display: inline-block;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec_mail .form dd.clm1 input, .sec_mail .form dd.clm1 textarea, .sec_mail .form dd.clm2 input, .sec_mail .form dd.clm2 textarea {
    padding: 1.4rem;
    font-size: 2.8rem;
  }
  .sec_mail .form dd.chk {
    margin-top: 4rem;
    margin-bottom: 5rem;
  }
  .sec_mail .form dd.chk label span {
    font-size: 2.6rem;
  }
}
.sec_mail .btn_wrap {
  text-align: center;
  margin-top: 2rem;
}
.sec_mail .btn_wrap button {
  background-color: #FFF35F;
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  width: 100%;
  height: 5rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sec_mail .btn_wrap button {
    font-size: 3rem;
    padding: 1rem 2rem;
    height: 8rem;
  }
}

.fixed_btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.fixed_btn a {
  background: #FFF35F;
  width: 100%;
  text-align: center;
  display: block;
  padding: 1.8rem 0;
  text-align: center;
  font-size: 3rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.sec1 {
  padding: 0 0 6.3rem 0;
}
.sec1 .txt1 {
  position: relative;
  text-align: center;
}
.sec1 .txt1 figure {
  width: 63vw;
  margin: 0 auto;
}
.sec1 .txt1 p {
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.8vw;
}
.sec1 .works {
  width: 52vw;
  margin: 4.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec1 {
    padding: 4vw 0 6.3rem;
  }
  .sec1 .txt1 figure {
    width: 90vw;
  }
  .sec1 .txt1 p {
    font-size: 3vw;
  }
  .sec1 .works {
    width: 90vw;
  }
}

.marker {
  background: rgb(255, 242, 0);
  background: linear-gradient(0deg, rgb(255, 242, 0) 50%, rgb(255, 255, 255) 50%);
}

.sec2 {
  position: relative;
  background-color: #E4EDF7;
  padding: 4vw 0 10vw;
}
.sec2 .sukima {
  width: 24vw;
  margin: -1vw auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec2 h2 {
  font-size: 3.8vw;
  text-align: center;
  position: relative;
  padding-bottom: 1.4vw;
  margin-bottom: 6rem;
}
.sec2 h2 span {
  font-size: 4.5vw;
  color: #009E96;
}
.sec2 h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  height: 5px;
  background-color: #fff;
}
.sec2 .trouble_list {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  counter-reset: num;
  margin: 0 auto;
  width: 68vw;
}
.sec2 .trouble_list .trouble {
  display: flex;
  gap: 2vw;
  counter-increment: num;
  background-color: #fff;
  padding: 1vw;
  position: relative;
}
.sec2 .trouble_list .trouble .num {
  background-color: #009E96;
  color: #fff;
  width: 9vw;
  text-align: center;
  font-size: 1.5vw;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sec2 .trouble_list .trouble .num span::before {
  content: counter(num);
  font-size: 2.8vw;
  font-weight: bold;
  display: block;
}
.sec2 .trouble_list .trouble .txt {
  font-size: 1.54vw;
  line-height: 2;
  font-weight: bold;
  padding: 1.2vw 0;
}
.sec2 .trouble_list .trouble .icon {
  position: absolute;
  right: 0.6vw;
  top: 0.6vw;
  height: 86%;
  width: auto;
}
.sec2 .trouble_list .trouble .icon img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec2 {
    padding-bottom: 22vw;
  }
  .sec2 h2 {
    font-size: 7.2vw;
    margin-bottom: 4vw;
  }
  .sec2 h2 span {
    font-size: 7.8vw;
  }
  .sec2 h2::before {
    width: 94vw;
  }
  .sec2 .trouble_list {
    width: 94%;
  }
  .sec2 .trouble_list .trouble {
    flex-direction: column;
    padding: 3vw;
  }
  .sec2 .trouble_list .trouble .num {
    width: 100%;
    flex-direction: row;
    font-size: 6vw;
    line-height: 1;
    gap: 0.5vw;
  }
  .sec2 .trouble_list .trouble .num span::before {
    font-size: 8vw;
    line-height: 1.2;
  }
  .sec2 .trouble_list .trouble .txt {
    font-size: 5vw;
    padding: 2vw 0;
  }
  .sec2 .trouble_list .trouble .icon {
    position: static;
    margin: 2vw auto 4vw;
    width: 60%;
  }
  .sec2 .trouble_list .trouble .icon img {
    width: 100%;
    height: auto;
  }
}

.sec3 {
  background: url(../img/sec3_bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 7vw 0;
}
.sec3 .fukidashi {
  color: #fff;
  background-color: #3AA29A;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2vw 2vw;
  font-size: 2.4vw;
  text-align: center;
  width: 48vw;
  border-radius: 20vw;
  font-weight: 600;
}
.sec3 .fukidashi::before {
  content: "";
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../img/fukidashi1.png) center bottom no-repeat;
  background-size: cover;
  aspect-ratio: 381/79;
  width: 22%;
}
.sec3 .txt1 {
  text-align: center;
  background: url(../img/line.png) center bottom no-repeat;
  background-size: auto 70%;
  font-size: 3vw;
  font-weight: 600;
  line-height: 1;
}
.sec3 .txt2 {
  text-align: center;
  font-size: 2.6vw;
  font-weight: 600;
  margin: 2vw 0;
}
.sec3 .txt3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sec3 .txt3 figure {
  width: 42vw;
}
.sec3 .txt3 span {
  font-size: 3.8vw;
  font-weight: 600;
  line-height: 2;
}
.sec3 .txt4 {
  display: flex;
  justify-content: center;
  margin-top: 1vw;
}
.sec3 .txt4 figure {
  width: 26vw;
}
@media screen and (max-width: 767px) {
  .sec3 {
    padding: 22vw 0;
  }
  .sec3 .fukidashi {
    font-size: 5.5vw;
    width: 88%;
    padding: 4vw 2vw;
  }
  .sec3 .fukidashi::before {
    width: 30%;
  }
  .sec3 .txt1 {
    font-size: 7vw;
  }
  .sec3 .txt2 {
    font-size: 4.6vw;
  }
  .sec3 .txt3 figure {
    width: 70%;
  }
  .sec3 .txt3 span {
    font-size: 6vw;
  }
  .sec3 .txt4 figure {
    width: 60%;
  }
}

.sec4 {
  background: url(../img/sec4_bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 7vw 0;
}
.sec4::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #1e1c1d;
  width: 20vw;
  height: 5vw;
  z-index: 3;
}
.sec4 .fukidashi {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2vw 2vw;
  font-size: 2.2vw;
  text-align: center;
  width: 52vw;
  border-radius: 20vw;
  font-weight: 600;
}
.sec4 .fukidashi::before {
  content: "";
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../img/sukima.png) center bottom no-repeat;
  background-size: cover;
  aspect-ratio: 381/79;
  width: 20%;
}
.sec4 .midashi {
  background-color: #3AA29A;
  color: #fff;
  margin: 0 auto;
  width: 60vw;
  text-align: center;
  padding: 2vw 1vw;
  font-size: 3.6vw;
  position: relative;
  z-index: 3;
}
.sec4 .midashi .kakko1 {
  margin-left: -1em;
}
.sec4 .midashi .kakko2 {
  margin-right: -0.2em;
}
.sec4 .midashi .color {
  color: #F9F1A7;
}
.sec4 .midashi .dot {
  position: relative;
}
.sec4 .midashi .dot::before {
  content: "・・・・";
  position: absolute;
  bottom: 62%;
  left: 0;
}
.sec4 .point_list {
  background-color: #fff;
  margin: -4vw auto 0;
  padding: 7vw 1vw 4vw;
  position: relative;
  z-index: 2;
  width: 65vw;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.sec4 .point_list .point {
  display: flex;
  gap: 3%;
  position: relative;
}
.sec4 .point_list .point::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10vw;
  height: 10vw;
  background-color: #c3dbd8;
  z-index: -1;
}
.sec4 .point_list .point .num {
  font-size: 12vw;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  color: #fff;
  -webkit-text-stroke-width: 8px;
  -webkit-text-stroke-color: #009E96;
}
.sec4 .point_list .point .num span {
  color: #fff;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: initial;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.sec4 .point_list .point .img {
  width: 30%;
}
.sec4 .point_list .point .content {
  width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec4 .point_list .point .content .txt1 {
  border-radius: 10vw;
  border: 1px solid #000;
  padding: 0 0.1vw 0 0.4vw;
  margin-bottom: 0.4vw;
  font-size: 1vw;
}
.sec4 .point_list .point .content .title {
  font-size: 1.7vw;
  font-weight: 600;
  margin-bottom: 0.5vw;
}
.sec4 .point_list .point .content .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5vw;
  margin-bottom: 1vw;
  width: 80%;
}
.sec4 .point_list .point .content .tags li {
  color: #fff;
  background: url(../img/tags_bg.jpg) left center no-repeat;
  background-size: 100% 100%;
  padding: 0.1vw 0.9vw 0.2vw;
  font-size: 1.7vw;
  font-weight: 600;
}
.sec4 .point_list .point .content .txt2 {
  font-size: 1.3vw;
  line-height: 2;
  padding: 1vw 1.2vw;
}
@media screen and (min-width: 768px) {
  .sec4 .point_list .point:nth-of-type(odd)::before {
    right: 0;
  }
  .sec4 .point_list .point:nth-of-type(odd) .num {
    right: 8%;
  }
  .sec4 .point_list .point:nth-of-type(odd) .txt1, .sec4 .point_list .point:nth-of-type(odd) .title, .sec4 .point_list .point:nth-of-type(odd) .tags {
    margin-right: 26%;
  }
  .sec4 .point_list .point:nth-of-type(odd) .txt2 {
    background: url(../img/waku1.png) left top no-repeat, url(../img/waku2.png) right bottom no-repeat;
    background-size: 8% auto;
  }
}
@media screen and (min-width: 768px) {
  .sec4 .point_list .point:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .sec4 .point_list .point:nth-of-type(even)::before {
    left: 0;
  }
  .sec4 .point_list .point:nth-of-type(even) .num {
    left: 8%;
  }
  .sec4 .point_list .point:nth-of-type(even) .txt1, .sec4 .point_list .point:nth-of-type(even) .title, .sec4 .point_list .point:nth-of-type(even) .tags {
    margin-left: 26%;
  }
  .sec4 .point_list .point:nth-of-type(even) .txt2 {
    background: url(../img/waku3.png) right top no-repeat, url(../img/waku4.png) left bottom no-repeat;
    background-size: 8% auto;
  }
}
@media screen and (min-width: 768px) {
  .sec4 .point_list .point:nth-of-type(4) .img {
    width: 35%;
    margin-left: -5%;
  }
}
@media screen and (max-width: 767px) {
  .sec4 {
    padding: 22vw 0;
  }
  .sec4 .fukidashi {
    font-size: 5.5vw;
    width: 88%;
    padding: 4vw 2vw;
  }
  .sec4 .fukidashi::before {
    width: 30%;
  }
  .sec4 .midashi {
    width: 92%;
    font-size: 5.8vw;
  }
  .sec4 .point_list {
    width: 94%;
    padding: 8vw 3vw 4vw;
  }
  .sec4 .point_list .point::before {
    width: 20vw;
    height: 20vw;
  }
  .sec4 .point_list .point .num {
    font-size: 20vw;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: #009E96;
  }
  .sec4 .point_list .point .num span {
    font-size: 20vw;
  }
  .sec4 .point_list .point .img {
    width: 40%;
  }
  .sec4 .point_list .point .content {
    width: 100%;
  }
  .sec4 .point_list .point .content .txt1 {
    padding: 0 2vw 0 2vw;
    font-size: 4vw;
    margin-left: 16vw;
    margin-bottom: 2vw;
  }
  .sec4 .point_list .point .content .title {
    font-size: 4.5vw;
    margin-bottom: 1vw;
    margin-left: 16vw;
  }
  .sec4 .point_list .point .content .tags_wrap {
    position: relative;
    width: 100%;
  }
  .sec4 .point_list .point .content .tags_wrap .img {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .sec4 .point_list .point .content .tags_wrap .img picture {
    width: auto;
  }
  .sec4 .point_list .point .content .tags_wrap .img picture img {
    width: auto;
    height: 72vw;
  }
  .sec4 .point_list .point .content .tags {
    gap: 1vw;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 4vw;
    left: 0;
  }
  .sec4 .point_list .point .content .tags li {
    padding: 0.2vw 1.8vw 0.4vw;
    font-size: 5vw;
  }
  .sec4 .point_list .point .content .txt2 {
    margin-top: 3vw;
    font-size: 4.4vw;
    padding: 4vw;
    background: url(../img/waku1.png) left top no-repeat, url(../img/waku2.png) right bottom no-repeat;
    background-size: 15% auto;
  }
  .sec4 .point_list:nth-of-type(odd) .point::before {
    left: 0;
    top: auto;
    bottom: 0;
  }
  .sec4 .point_list:nth-of-type(even) .point::before {
    right: 0;
    top: auto;
    bottom: 0;
  }
}

.sec5 {
  background: url(../img/sec3_bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 7vw 0;
}
.sec5__check {
  display: flex;
  justify-content: center;
  gap: 2vw;
  width: 55vw;
  margin: 0 auto;
}
.sec5__check li {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4vw;
  box-shadow: 0.6vw 0.6vw 0.6vw rgba(0, 0, 0, 0.2);
  font-size: 3vw;
  padding: 0.3vw 1vw;
}
.sec5__check li i {
  width: 2.8vw;
}
.sec5__text {
  display: flex;
  justify-content: center;
  margin-top: 1vw;
}
.sec5__text figure {
  width: 72vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec5 {
    padding: 10vw 0;
  }
  .sec5__check {
    width: 82%;
  }
  .sec5__check li {
    font-size: 5vw;
    padding: 0.6vw 2vw;
  }
  .sec5__check li i {
    width: 5vw;
  }
  .sec5__text figure {
    width: 90%;
  }
}

.sec6 .fukidashi {
  background-color: #000;
  border-radius: 100vw;
  color: #fff;
  text-align: center;
  position: relative;
  width: 50vw;
  margin: -4.2vw auto 2vw;
  font-size: 2.8vw;
  padding: 0.6vw 1.5vw;
}
.sec6 .fukidashi::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translate(-50%, 0);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #000;
  width: 8%;
  height: 1.6vw;
}
.sec6 .fukidashi span {
  color: #FFF100;
}
.sec6 .price {
  width: 46vw;
  margin: 0 auto 2vw;
}
.sec6__text1 {
  text-align: center;
  font-size: 1.4vw;
  font-weight: 600;
  margin-bottom: 1vw;
  line-height: 1.7;
}
.sec6__text1 span {
  color: #3AA29A;
}
.sec6__text2 {
  text-align: center;
  font-size: 1.4vw;
  font-weight: 600;
  margin-bottom: 3vw;
  line-height: 1.7;
}
.sec6 .arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 3vw;
}
.sec6 .arrow figure {
  width: 11vw;
}
.sec6 h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4vw;
}
.sec6 h3 span {
  font-size: 2.8vw;
}
.sec6 h3 img {
  width: 4vw;
}
.sec6 .smartphone {
  width: 60vw;
  margin: 0 auto;
}
.sec6 .plan_block {
  background: url(../img/sec6_bg.jpg) center center no-repeat;
  background-size: cover;
  padding-bottom: 5vw;
}
.sec6 .plan_block .plan_list {
  display: flex;
  justify-content: center;
  gap: 0.4vw;
  transform: translateY(-3vw);
}
.sec6 .plan_block .plan_list li {
  width: 16vw;
  background-color: #fff;
  border-radius: 1vw;
  overflow: hidden;
}
.sec6 .plan_block .plan_list li .plan_title {
  font-size: 2.2vw;
  text-align: center;
  color: #fff;
  padding: 0.6vw 0;
  font-weight: 500;
  line-height: 1.2;
}
.sec6 .plan_block .plan_list li .plan_title span {
  color: #FFF100;
}
.sec6 .plan_block .plan_list li .plan_price {
  font-size: 1.4vw;
  text-align: center;
}
.sec6 .plan_block .plan_list li .plan_price span {
  font-size: 2.6vw;
  margin: 0 0.2vw;
}
.sec6 .plan_block .plan_list li .shop_count {
  background-color: #CCCCCC;
  text-align: center;
  font-size: 1.2vw;
  width: 94%;
  margin: 0 auto;
  padding: 0.2vw 0;
  border-radius: 0.3vw;
}
.sec6 .plan_block .plan_list .entry .plan_title {
  background-color: #A6A6A6;
}
.sec6 .plan_block .plan_list .economy .plan_title {
  background-color: #CE5940;
}
.sec6 .plan_block .plan_list .standard .plan_title {
  background-color: #5EAB47;
}
.sec6 .plan_block .plan_list .custom .plan_title {
  background-color: #3883B4;
}
.sec6 .plan_block .plan_list .first_price,
.sec6 .plan_block .plan_list .server_price,
.sec6 .plan_block .plan_list .period {
  font-size: 1.2vw;
  text-align: center;
  line-height: 1.2;
  padding: 0.6vw 0;
  width: 94%;
  margin: 0 auto;
}
.sec6 .plan_block .plan_list .first_price span,
.sec6 .plan_block .plan_list .server_price span,
.sec6 .plan_block .plan_list .period span {
  font-size: 2vw;
}
.sec6 .plan_block .plan_list .first_price,
.sec6 .plan_block .plan_list .server_price {
  border-bottom: 1px dotted #000;
}
.sec6 .plan_block .plan_list .period {
  padding-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  .sec6 .fukidashi {
    font-size: 4.9vw;
    width: 88%;
    padding: 1vw 2vw;
    margin-bottom: 6vw;
  }
  .sec6 .fukidashi::before {
    width: 10%;
    height: 3.6vw;
  }
  .sec6 .price {
    width: 74%;
  }
  .sec6__text1 {
    font-size: 4.2vw;
    margin-bottom: 2vw;
  }
  .sec6__text2 {
    font-size: 4.2vw;
    margin-bottom: 6vw;
  }
  .sec6 .arrow figure {
    width: 30vw;
  }
  .sec6 h3 {
    font-size: 7vw;
  }
  .sec6 h3 span {
    font-size: 6vw;
  }
  .sec6 h3 img {
    width: 10vw;
  }
  .sec6 .smartphone {
    width: 90%;
  }
  .sec6 .plan_block {
    padding: 5vw 4vw 22vw;
  }
  .sec6 .plan_block .plan_list {
    flex-wrap: wrap;
    gap: 3vw;
    transform: translateY(0);
  }
  .sec6 .plan_block .plan_list li {
    width: calc((100% - 3vw) / 2);
  }
  .sec6 .plan_block .plan_list li .plan_title {
    font-size: 6vw;
    padding: 2vw 0;
  }
  .sec6 .plan_block .plan_list li .plan_price {
    font-size: 4vw;
  }
  .sec6 .plan_block .plan_list li .plan_price span {
    font-size: 8.6vw;
    margin: 0 0.4vw;
  }
  .sec6 .plan_block .plan_list li .shop_count {
    font-size: 3.5vw;
    padding: 1vw 0;
    border-radius: 1vw;
  }
  .sec6 .plan_block .plan_list li .first_price,
  .sec6 .plan_block .plan_list li .server_price,
  .sec6 .plan_block .plan_list li .period {
    font-size: 3.5vw;
    padding: 2vw 0;
  }
  .sec6 .plan_block .plan_list li .first_price span,
  .sec6 .plan_block .plan_list li .server_price span,
  .sec6 .plan_block .plan_list li .period span {
    font-size: 6vw;
  }
}

.sec7 {
  background-color: #F9F9FA;
  padding: 0 0 12rem;
}
.sec7 .fukidashi {
  margin: 0 auto;
  width: fit-content;
  background-color: #D7D7D8;
  border-radius: 10rem;
  padding: 3rem 3rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
  position: relative;
  filter: drop-shadow(0.6rem 0.6rem 0.6rem rgba(0, 0, 0, 0.5));
}
.sec7 .fukidashi::before {
  content: "";
  width: 3rem;
  height: 2rem;
  position: absolute;
  top: 99%;
  left: 50%;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  transform: translate(-50%, 0);
  background-color: #D7D7D8;
}
@media screen and (max-width: 767px) {
  .sec7 .fukidashi {
    width: 90%;
    text-align: center;
    font-size: 4rem;
    line-height: 1.2;
  }
}
.sec7 h2 {
  text-align: center;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .sec7 h2 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }
}
.sec7 .txt1 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sec7 .txt1 {
    font-size: 2.8rem;
    text-align: left;
    width: 80%;
    margin: 0 auto 4rem;
  }
}
.sec7 .qa {
  width: min(90%, 100rem);
  margin: 0 auto;
}
.sec7 .qa li dl dt {
  background: rgb(149, 179, 138);
  background: linear-gradient(90deg, rgb(149, 179, 138) 0%, rgb(0, 138, 186) 100%);
  color: #fff;
  position: relative;
  padding: 2.4rem 3rem 2.4rem 8rem;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10rem;
}
.sec7 .qa li dl dt::before {
  content: "Q";
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 0.6rem;
  left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sec7 .qa li dl dt {
    padding: 2.4rem 1rem 2.4rem 9rem;
    font-size: 3rem;
  }
  .sec7 .qa li dl dt::before {
    font-size: 7rem;
    top: 50%;
    left: 2rem;
    margin-top: -1rem;
    transform: translateY(-50%);
  }
}
.sec7 .qa li dl dd {
  padding: 2rem 3rem 4rem 8rem;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
}
.sec7 .qa li dl dd::before {
  content: "A";
  color: #CAD4D3;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 1.6rem;
  left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sec7 .qa li dl dd {
    padding: 2rem 1rem 4rem 9rem;
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.7;
  }
  .sec7 .qa li dl dd::before {
    font-size: 7rem;
    left: 2rem;
  }
}

/***************************
	footer
***************************/
footer {
  background: #4C4C4C;
  position: relative;
  z-index: 200;
}

footer .footer_top {
  padding: 30px 0;
}

footer .footer_top > div > ul {
  margin-right: 20px;
}

footer .footer_top > div > ul > li {
  margin-bottom: 10px;
}

footer .footer_top > div > ul > li > a {
  display: block;
  background: #fff;
  font-size: 14px;
  font-weight: bold;
  width: 167px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 13px;
}

footer .footer_top > div > ul > li > a.bgblack {
  color: #fff;
  background: #000;
}

footer .footer_top > div > ul > li > a.bgred {
  color: #fff;
  background: #d60000;
}

footer .footer_top > div > ul > li > a.bgblue {
  color: #fff;
  background: #398abf;
}

footer .footer_top > div > ul > li ul {
  padding: 5px 0 5px 10px;
}

footer .footer_top > div > ul > li ul li a {
  display: block;
  font-size: 12px;
  background: url(../images/footer/icon01.png) left center no-repeat;
  padding-left: 10px;
}

footer .footer_bottom {
  width: 100%;
  background: #272828;
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
  color: #fff;
}

footer .footer_bottom_link a {
  color: #fff;
  display: inline-block;
  background: url(../images/footer/icon01.png) left center no-repeat;
  padding-left: 10px;
  margin: 0 5px;
}

footer .footer_bottom img {
  display: block;
  margin: 20px auto 5px auto;
}

.footer_logo {
  text-align: center;
}

.l-footer__inr {
  width: min(1000px, 90%);
  margin: 0 auto;
  padding: 40px 0;
}

.l-footer__logo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.l-footer__logo .logo img {
  width: 140px;
}

.l-footer__logo .btn_wrap {
  display: flex;
  gap: 20px;
}

.l-footer__logo .btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 38px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .l-footer__logo .btn_wrap a:hover {
    background-color: #fff;
    color: #000;
  }
}
.l-footer__navi {
  border-top: 1px solid #585959;
  border-bottom: 1px solid #585959;
  padding: 20px 0;
  margin-bottom: 20px;
}

.l-footer__navi ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.l-footer__navi ul li a {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.l-footer__navi ul li:last-child {
  position: relative;
}

.l-footer__navi ul li:last-child::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  left: -15px;
  top: 0;
}

.l-footer__navi ul li:last-child a {
  color: #FFF791;
}

.l-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.l-footer__bottom .access {
  color: #fff;
  font-size: 16px;
}

.l-footer__bottom .links .sns {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.l-footer__bottom .links .sns li a img {
  width: 40px;
}

.l-footer__bottom .links .link li a {
  display: block;
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.l-footer .copyright {
  background: #fff;
  padding: 10px 0 20px 0;
}

.l-footer .copyright small {
  display: block;
  width: min(1000px, 90%);
  margin: 0 auto;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .l-footer__logo {
    justify-content: center;
  }
  .l-footer__navi ul {
    justify-content: center;
  }
  .l-footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .l-footer .copyright {
    background: #fff;
    padding: 10px 0 110px 0;
  }
}/*# sourceMappingURL=style.css.map */