@charset "UTF-8";
/*メディアクエリ*/
/*
//Tablet表示のVW変換関数
$tbBreakPoint: 1000;
@function pxTbToVw($pxValue) {
	@return (($pxValue / $tbBreakPoint) * 100) + vw;
}
*/
* {
  word-break: break-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

html, body, input, textarea, select {
  font-size: 26px;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  html, body, input, textarea, select {
    font-size: 3.4666666667vw;
  }
}

body {
  margin: 0;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  margin: 0;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #4d4d4d;
}
a:hover img {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

sup {
  font-size: 0.5em;
  vertical-align: top;
}

/********************************
	flexbox 基本class
	wrapやjustify-contentの指定は個別のcss classで追記する
********************************/
*.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .wrapper .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .wrapper {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    overflow: hidden;
  }
  .wrapper .pc_only {
    display: none !important;
  }
}

/**-----------------------------
  header
-----------------------------**/
header {
  padding: 0 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  width: 750px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}
@media screen and (max-width: 750px) {
  header {
    padding: 0 5.3333333333vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 10.6666666667vw;
    width: 100%;
  }
}

header .header_image2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 80px;
  z-index: -1;
}

header .head_logo {
  width: 217px;
}
@media screen and (max-width: 750px) {
  header .head_logo {
    width: 28.9333333333vw;
  }
}
header .menu_trigger {
  position: absolute;
  display: inline-block;
  top: 22px;
  right: 40px;
  width: 40px;
  height: 34px;
  z-index: 110;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  header .menu_trigger {
    top: 2.9333333333vw;
    right: 5.3333333333vw;
    width: 5.3333333333vw;
    height: 4.5333333333vw;
  }
}
header .menu_trigger span {
  position: absolute;
  display: inline-block;
  height: 4px;
  left: 0;
  background-color: #000000;
}
@media screen and (max-width: 750px) {
  header .menu_trigger span {
    height: 0.5333333333vw;
  }
}
header .menu_trigger span:nth-of-type(1) {
  top: 0;
  width: 40px;
}
@media screen and (max-width: 750px) {
  header .menu_trigger span:nth-of-type(1) {
    width: 5.3333333333vw;
  }
}
header .menu_trigger span:nth-of-type(2) {
  top: 15px;
  width: 32px;
}
@media screen and (max-width: 750px) {
  header .menu_trigger span:nth-of-type(2) {
    top: 2vw;
    width: 4.2666666667vw;
  }
}
header .menu_trigger span:nth-of-type(3) {
  top: 30px;
  width: 25px;
}
@media screen and (max-width: 750px) {
  header .menu_trigger span:nth-of-type(3) {
    top: 4vw;
    width: 3.3333333333vw;
  }
}
header .menu_trigger.open span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-45deg);
          transform: translateY(15px) rotate(-45deg);
}
@media screen and (max-width: 750px) {
  header .menu_trigger.open span:nth-of-type(1) {
    -webkit-transform: translateY(2vw) rotate(-45deg);
            transform: translateY(2vw) rotate(-45deg);
  }
}
header .menu_trigger.open span:nth-of-type(2) {
  opacity: 0;
}
header .menu_trigger.open span:nth-of-type(3) {
  width: 40px;
  -webkit-transform: translateY(-15px) rotate(45deg);
          transform: translateY(-15px) rotate(45deg);
}
@media screen and (max-width: 750px) {
  header .menu_trigger.open span:nth-of-type(3) {
    width: 5.3333333333vw;
    -webkit-transform: translateY(-2vw) rotate(45deg);
            transform: translateY(-2vw) rotate(45deg);
  }
}
header #drawer_menu_wrap {
  width: 100%;
  height: auto;
  position: fixed;
  top: -1000px;
  left: 0;
  max-height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  header #drawer_menu_wrap {
    top: -133.3333333333vw;
  }
}
header #drawer_menu_wrap.open {
  -webkit-transform: translateY(1080px);
          transform: translateY(1080px);
}
@media screen and (max-width: 750px) {
  header #drawer_menu_wrap.open {
    -webkit-transform: translateY(144vw);
            transform: translateY(144vw);
  }
}
header #drawer_menu_wrap .drawer_menu_list {
  width: 690px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 750px) {
  header #drawer_menu_wrap .drawer_menu_list {
    width: 92vw;
    margin: 0 auto 8vw;
  }
}
header #drawer_menu_wrap .drawer_menu_list li {
  width: 100%;
  height: 130px;
  border-bottom: 1px #c1c1c1 solid;
}
@media screen and (max-width: 750px) {
  header #drawer_menu_wrap .drawer_menu_list li {
    width: 100%;
    height: 17.3333333333vw;
  }
}
header #drawer_menu_wrap .drawer_menu_list li > a {
  display: block;
  position: relative;
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
  line-height: 130px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  header #drawer_menu_wrap .drawer_menu_list li > a {
    font-size: 4vw;
    line-height: 17.3333333333vw;
  }
}
header #drawer_menu_wrap .drawer_menu_list li > a::after {
  position: absolute;
  display: inline-block;
  content: "";
  background: url(../images/drawer_arrow.png) center top no-repeat;
  background-size: contain;
  width: 43px;
  height: 25px;
  right: 20px;
  top: calc(50% - 12px);
}
@media screen and (max-width: 750px) {
  header #drawer_menu_wrap .drawer_menu_list li > a::after {
    width: 5.7333333333vw;
    height: 3.3333333333vw;
    right: 2.6666666667vw;
    top: calc(50% - 1.6vw);
  }
}

#container {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  position: fixed;
  background-image: url(../images/fv_fix_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 750px) {
  #container {
    display: none;
    background: unset;
  }
}

/* 左側固定BOX */
.left_fix_box {
  position: absolute;
  width: 437px;
  height: 345px;
  right: calc(50% + 375px + 20px);
  top: 280px;
}
@media screen and (max-width: 1240px) {
  .left_fix_box {
    display: none;
  }
}
.left_fix_box .text1 {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 150px;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.left_fix_box .icons_wrap {
  position: absolute;
  width: 150px;
  top: 218px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.left_fix_box .icons_wrap .left_fix_icon {
  display: block;
  width: 61px;
}

/* 右側固定アイコン*/
.right_fix_box {
  position: absolute;
  width: 350px;
  height: 218px;
  left: calc(50% + 375px + 88px);
  top: 340px;
}
@media screen and (max-width: 1240px) {
  .right_fix_box {
    display: none;
  }
}
.right_fix_box .text2 {
  width: 156px;
  height: 36px;
  text-align: center;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: url(../images/right_fix_text1_bg.png) center top no-repeat;
  background-size: contain;
}
.right_fix_box .text3 {
  margin-top: 12px;
  font-size: 41px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}
.right_fix_box .right_fix_btn {
  display: block;
  width: 350px;
  margin: 30px auto 0;
  -webkit-filter: drop-shadow(10px 15px 8px rgba(89, 89, 89, 0.4));
          filter: drop-shadow(10px 15px 8px rgba(89, 89, 89, 0.4));
}

.main_contents {
  position: relative;
  width: 750px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 0 30px rgba(112, 112, 112, 0.6));
          filter: drop-shadow(0 0 30px rgba(112, 112, 112, 0.6));
}
@media screen and (max-width: 750px) {
  .main_contents {
    width: 100%;
  }
}

/**-----------------------------
  FV
-----------------------------**/
#fv {
  position: relative;
  height: 1035px;
  background: url(../images/fv_bg03.png) center top no-repeat;
  background-size: 750px 1120px;
  padding-top: 100px;
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  #fv {
    height: 148.666667vw;
    background-size: 100vw;
    padding-top: 11.3333333333vw;
    margin-top: 40px;
  }
}
#fv .img1 {
  width: 317px;
    /* -10px に変更*/
  margin-left: 20px;
  margin-top: -56px;
}
@media screen and (max-width: 750px) {
  #fv .img1 {
    width: 43.4vw;
    margin-left: 1.333333vw;
    margin-top: -1.666667vw;
  }
}
#fv .img2 {
  width: 600px;
  margin-top: -85px;
  margin-left: 90px;
}
@media screen and (max-width: 750px) {
  #fv .img2 {
    width: 82.6vw;
    margin-top: -8.666667vw;
    margin-left: 9.333333vw;
  }
}
#fv .img3 {
  width: 300px;
  margin-top: 20px;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  #fv .img3 {
    width: 55.6vw;
    margin-top: 3.333333vw;
    margin-left: 2.333333vw;
  }
}
#fv .img4 {
  width: 676px;
  margin: 25px auto 0;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
          filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
}
@media screen and (max-width: 750px) {
  #fv .img4 {
    width: 101.133333vw;
    margin: 4.8vw auto 0;
  }
}

#fv .img5 {
width: 676px;
    -webkit-filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
    filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
}
@media screen and (max-width: 750px) {
  #fv .img5 {
    width: 80.133333vw;
    margin: 6.8vw auto 0;
  }
}


#fv .img6 {
  width: 676px;
  margin: 42px auto 0;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
          filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
}
@media screen and (max-width: 750px) {
  #fv .img6 {
    width: 90.1333333333vw;
    margin: 4.8vw auto 0;
  }
}

#fv .img7 {
  width: 676px;
  margin: 6px auto 0;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
          filter: drop-shadow(10px 10px 10px rgba(49, 66, 73, 0.3));
}
@media screen and (max-width: 750px) {
  #fv .img7 {
    width: 90.1333333333vw;
    margin: 1.8vw auto 0;
  }
}

#fv .img8 {
  width: 672px;
  margin: 21px auto 0;
}
@media screen and (max-width: 750px) {
  #fv .img8 {
    width: 97.133333vw;
    margin: 1.8vw auto 0;
  }
}

#fv .img9 {
  width: 672px;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #fv .img9 {
    width: 90.1333333333vw;
    margin: 4.8vw auto 0;
  }
}

#fv .img10 {
  position: absolute;
  top: -25%;
  transform: translate(-50%, -50%);
  left: 15%;
}
@media screen and (max-width: 750px) {
  #fv .img10 {
    width: 57.133333vw;
    margin-left: 0.333333vw;
    margin-top: -0.666667vw;
  }
}

#fv .img10 {
  animation: floating-y 0.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}

#fv .cvbtn-container {
  position: relative;
  width: fit-content;
  margin: 70px auto 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #fv .cvbtn-container {
    margin-top: 0.333333vw;
  }
}


.at_text{
  text-align: center;
  font-size: 21px;
  margin-top: 15px;
}

@media screen and (max-width: 750px) {
  .at_text {
    text-align: center;
    font-size: 10px;
    margin-top: 5px;
  }
}

/**------------------------------------------
  sec01:LINEで簡単！24時間相談可能
------------------------------------------**/
#sec01 {
  position: relative;
  background: url(../images/sec01_bg02.png) center top no-repeat;
  height: 1420px;
  padding-top: 95px;
}
@media screen and (max-width: 750px) {
  #sec01 {
    height: 189.3333333333vw;
    background-size: 100vw 189.3333333333vw;
    padding-top: 12.6666666667vw;
  }
}
#sec01 .img1 {
  width: 625px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #sec01 .img1 {
    width: 83.3333333333vw;
  }
}
#sec01 .img2 {
  width: 750px;
  margin: 198px auto 0;
}
@media screen and (max-width: 750px) {
  #sec01 .img2 {
    width: 100%;
    margin: 26.4vw auto 0;
  }
}

/**------------------------------------------
  sec02:退職でこんな風に悩んでいませんか？
------------------------------------------**/
#sec02 {
  position: relative;
  background: url(../images/sec02_bg_top.png) center top no-repeat;
  height: 1047x;
  padding-top: 400px;
}
@media screen and (max-width: 750px) {
  #sec02 {
    height: 139.333333vw;
    background-size: 100vw;
    padding-top: 49.7vw;
  }
}
#sec02 ul.sec02_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          /* justify-content: center; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  font-weight: 700;
  /* color: #ffffff; */
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li {
    font-size: 4.2666666667vw;
  }
}
#sec02 ul.sec02_list li:nth-of-type(1) {
  width: 825px;
  height: 5px;
  margin-left: 120px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(1) {
    width: 90.933333vw;
    height: 7.333333vw;
    margin-left: 15.666667vw;
  }
}
#sec02 ul.sec02_list li:nth-of-type(2) {
  width: 825px;
  height: 190px;
  margin-left: 145px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(2) {
  width: 90.933333vw;
  height: 20.333333vw;
  margin-left: 19.4vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(2) span.li2 {
  position: relative;
  left: 40px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(2) span.li2 {
    position: relative;
    left: 5.333vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(3) {
  width: 825px;
  height: 12px;
  margin-left: 125px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(3) {
    width: 90.933333vw;
    height: 6.333333vw;
    margin-left: 15.666667vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(4) {
  width: 825px;
  height: 193px;
  margin-left: 153px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(4) {
    width: 90.933333vw;
    height: 20.33333vw;
    margin-left: 20.4vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(4) span.li4 {
  position: relative;
  left: 40px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(4) span.li4 {
    position: relative;
    left: 5.333vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(5) {
  width: 825px;
  height: 15px;
  margin-left: 125px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(5) {
    width: 90.933333vw;
    height: 6.333333vw;
    margin-left: 15.666667vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(6) {
  width: 825px;
  height: 190px;
  margin-left: 137px;
  margin-bottom: -75px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(6) {
    width: 90.933333vw;
    height: 21.3333333333vw;
    margin-left: 18.4vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(6) span.li6 {
  position: relative;
  left: 40px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(6) span.li6 {
    position: relative;
    left: 5.333vw;
  }
}

#sec02 .text1 {
  margin-top: 114px;
  font-size: 44px;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec02 .text1 {
    margin-top: 15.2vw;
    font-size: 5.8666666667vw;
  }
}

#sec02 ul.sec02_list li:nth-of-type(7) {
  width: 825px;
  height: 120px;
  margin-left: 125px;
  margin-bottom: -3px;
}
@media screen and (max-width: 750px) {
  #sec02 ul.sec02_list li:nth-of-type(7) {
    width: 90.933333vw;
    height: 34.333333vw;
    margin-left: 15.666667vw;
  }
}

/**--------------------------------------------------
  sec03:LINEで相談するだけ!退職代行辞スルにお任せください
--------------------------------------------------**/
#sec03 {
  position: relative;
  /* background: url(../images/sec03_bg.jpg) center top no-repeat; */
  height: 1224px;
  /* padding-top: 626px; */
}
@media screen and (max-width: 750px) {
  #sec03 {
    height: 161.666667vw;
    /* background-size: 100vw 206.6666666667vw;
    padding-top: 83.4666666667vw; */
  }
}
#sec03 ul.sec03_list {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #sec03 ul.sec03_list {
    width: 80vw;
  }
}
#sec03 ul.sec03_list li {
  position: relative;
  padding: 34px 0 26px 90px;
  border-bottom: 1px #989898 solid;
}
@media screen and (max-width: 750px) {
  #sec03 ul.sec03_list li {
    padding: 4.5333333333vw 0 3.4666666667vw 12vw;
  }
}
#sec03 ul.sec03_list li:last-of-type {
  border-bottom: 0;
}
#sec03 ul.sec03_list li p.list_test {
  font-size: 32px;
  color: #2e2d2c;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  #sec03 ul.sec03_list li p.list_test {
    font-size: 4.2666666667vw;
  }
}
#sec03 ul.sec03_list li p.list_test span {
  font-size: 38px;
  font-weight: 900;
  color: #000000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, transparent), color-stop(15%, #fff876), color-stop(90%, #fff876), color-stop(90%, transparent));
  background: linear-gradient(transparent 15%, #fff876 15%, #fff876 90%, transparent 90%);
}
@media screen and (max-width: 750px) {
  #sec03 ul.sec03_list li p.list_test span {
    font-size: 5.0666666667vw;
  }
}
#sec03 ul.sec03_list li::before {
  content: "";
  background: url(../images/sec03_check_icon.png) center top no-repeat;
  background-size: 50px 50px;
  position: absolute;
  top: 40px;
  left: 22px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 750px) {
  #sec03 ul.sec03_list li::before {
    content: "";
    background-size: 6.6666666667vw 6.6666666667vw;
    top: 5.3333333333vw;
    left: 2.9333333333vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}

/**--------------------------------------------------
  cv01:まずはご相談ください!今すぐLINEで相談
--------------------------------------------------**/
#cv01 {
  position: relative;
  height: 400px;
  padding-top: 88px;
  background-color: #ffffff;
}
@media screen and (max-width: 750px) {
  #cv01 {
    height: 53.3333333333vw;
    padding-top: 11.7333333333vw;
  }
}
#cv01 .text1 {
  width: 504px;
  height: 38px;
  margin: 0 auto;
  background: url(../images/cv_text1_bg.png) left top no-repeat;
  background-size: contain;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 46px;
}
@media screen and (max-width: 750px) {
  #cv01 .text1 {
    width: 67.2vw;
    height: 5.0666666667vw;
    font-size: 5.0666666667vw;
    margin-bottom: 6.1333333333vw;
  }
}
#cv01 .cv_btn {
  display: block;
  width: 560px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 750px) {
  #cv01 .cv_btn {
    width: 74.6666666667vw;
  }
}

#cv01 .cv_btn {
  animation: floating-y 0.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}


/**------------------------------------------
  sec04:退職代行辞スルが選ばれる3つの理由
------------------------------------------**/
#sec04 {
  position: relative;
  background: url(../images/sec04_bg.jpg) center top no-repeat;
  height: 3525px;
  padding-top: 200px;
}
@media screen and (max-width: 750px) {
  #sec04 {
    height: 470vw;
    background-size: 100vw 470vw;
    padding-top: 26.6666666667vw;
  }
}
#sec04 .sec04_title {
  width: 535px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 750px) {
  #sec04 .sec04_title {
    width: 71.3333333333vw;
    margin: 0 auto 6.4vw;
  }
}
#sec04 .img2 {
  width: 100%;
}
#sec04 .text_wrap1 {
  margin-bottom: 118px;
}
#sec04 .text_wrap1 .text1 {
  font-size: 70px;
  font-weight: 900;
  color: #000000;
  line-height: 1.37;
  letter-spacing: 0.04em;
  text-align: center;
}
#sec04 .text_wrap1 .text1 span.s1 {
  font-weight: 300;
}
#sec04 .text_wrap1 .text1 span.s2 {
  font-size: 56px;
}
@media screen and (max-width: 750px) {
  #sec04 .text_wrap1 .text1 {
    font-size: 9.3333333333vw;
  }
  #sec04 .text_wrap1 .text1 span.s2 {
    font-size: 7.4666666667vw;
  }
}
#sec04 .text_wrap1 .text2 {
  font-size: 58px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.37;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec04 .text_wrap1 .text2 {
    font-size: 7.7333333333vw;
  }
}
#sec04 .img3 {
  width: 100%;
}
#sec04 .text3 {
  font-size: 70px;
  font-weight: 900;
  color: #000000;
  line-height: 1.37;
  letter-spacing: 0.04em;
  text-align: center;
}
#sec04 .text3 span.s2 {
  font-size: 56px;
}
@media screen and (max-width: 750px) {
  #sec04 .text3 {
    font-size: 9.3333333333vw;
  }
  #sec04 .text3 span.s2 {
    font-size: 7.4666666667vw;
  }
}
#sec04 .sec04_wrap1 {
  margin: 13px auto 120px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  #sec04 .sec04_wrap1 {
    margin: 1.7333333333vw auto 16vw;
  }
}
#sec04 .sec04_wrap1 .sec04_wrap1_box {
  margin: 0 10px;
  width: 320px;
  height: 156px;
  padding-top: 76px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec04 .sec04_wrap1 .sec04_wrap1_box {
    margin: 0 1.3333333333vw;
    width: 42.6666666667vw;
    height: 20.8vw;
    padding-top: 10.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
#sec04 .sec04_wrap1 .sec04_wrap1_box span.s3 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fff876), to(#fff876));
  background: linear-gradient(transparent 70%, #fff876 70%, #fff876 100%);
}
#sec04 .sec04_wrap1 .sec04_wrap1_box span.s4 {
  font-size: 38px;
}
@media screen and (max-width: 750px) {
  #sec04 .sec04_wrap1 .sec04_wrap1_box span.s4 {
    font-size: 5.0666666667vw;
  }
}
#sec04 .sec04_wrap1 .sec04_wrap1_box.img4_box {
  background: url(../images/sec04_img4.png) center top no-repeat;
  background-size: contain;
}
#sec04 .sec04_wrap1 .sec04_wrap1_box.img5_box {
  background: url(../images/sec04_img5.png) center top no-repeat;
  background-size: contain;
}
#sec04 .img4 {
  width: 100%;
}
#sec04 .text4 {
  margin: 20px 0 32px;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec04 .text4 {
    margin: 2.6666666667vw 0 4.2666666667vw;
    font-size: 6.1333333333vw;
  }
}
#sec04 .img7 {
  margin: 0 auto;
  width: 575px;
}
@media screen and (max-width: 750px) {
  #sec04 .img7 {
    width: 76.6666666667vw;
  }
}

/**------------------------------------------
  sec05:Features　辞スルの特徴
------------------------------------------**/
#sec05 {
  position: relative;
  background: url(../images/sec05_bg.jpg) center top no-repeat;
  height: 1462px;
  padding-top: 96px;
}
@media screen and (max-width: 750px) {
  #sec05 {
    background-size: 100vw 194.9333333333vw;
    height: 194.9333333333vw;
    padding-top: 12.8vw;
  }
}
#sec05 .sec05_title {
  width: 634px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #sec05 .sec05_title {
    width: 84.5333333333vw;
  }
}
#sec05 ul.sec05_list {
  margin: 56px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  #sec05 ul.sec05_list {
    margin: 7.4666666667vw auto 0;
  }
}
#sec05 ul.sec05_list li {
  margin: 0 12px 45px;
  padding-top: 127px;
  width: 326px;
  height: 316px;
}
@media screen and (max-width: 750px) {
  #sec05 ul.sec05_list li {
    margin: 0 1.6vw 6vw;
    padding-top: 16.9333333333vw;
    width: 43.4666666667vw;
    height: 42.1333333333vw;
  }
}
#sec05 ul.sec05_list li .list_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 326px;
  height: 190px;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec05 ul.sec05_list li .list_text {
    width: 43.4666666667vw;
    height: 25.3333333333vw;
    font-size: 3.8666666667vw;
  }
}
#sec05 ul.sec05_list li:nth-of-type(1) {
  background: url(../images/sec05_list1.png) center top no-repeat;
  background-size: contain;
}
#sec05 ul.sec05_list li:nth-of-type(2) {
  background: url(../images/sec05_list2.png) center top no-repeat;
  background-size: contain;
}
#sec05 ul.sec05_list li:nth-of-type(3) {
  background: url(../images/sec05_list3.png) center top no-repeat;
  background-size: contain;
}
#sec05 ul.sec05_list li:nth-of-type(4) {
  background: url(../images/sec05_list4.png) center top no-repeat;
  background-size: contain;
}
#sec05 ul.sec05_list li:nth-of-type(5) {
  background: url(../images/sec05_list5.png) center top no-repeat;
  background-size: contain;
}
#sec05 ul.sec05_list li:nth-of-type(6) {
  background: url(../images/sec05_list6.png) center top no-repeat;
  background-size: contain;
}

/**------------------------------------------
  sec06:料金プラン
------------------------------------------**/
#sec06 {
  position: relative;
  background: url(../images/sec06_bg.jpg) center top no-repeat;
  height: 1690px;
  padding-top: 118px;
}
@media screen and (max-width: 750px) {
  #sec06 {
    background-size: 100vw 225.3333333333vw;
    height: 225.3333333333vw;
    padding-top: 15.7333333333vw;
  }
}
#sec06.changed {
  position: relative;
  background: url(../images/sec06_bg.jpg) center top no-repeat;
  height: 1740px;
  padding-top: 118px;
}
@media screen and (max-width: 750px) {
  #sec06.changed {
    background-size: 100vw 232vw;
    height: 232vw;
    padding-top: 15.7333333333vw;
  }
}
#sec06 .sec06_title {
  font-size: 64px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec06 .sec06_title {
    font-size: 8.5333333333vw;
  }
}
#sec06 .sec06_wrap1 {
  margin-top: 58px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  #sec06 .sec06_wrap1 {
    margin-top: 7.7333333333vw;
  }
}
#sec06 .sec06_wrap1 .planbox {
  position: relative;
  width: 325px;
  height: 220px;
  padding: 0 10px;
}
@media screen and (max-width: 750px) {
  #sec06 .sec06_wrap1 .planbox {
    width: 43.3333333333vw;
    height: 29.3333333333vw;
    padding: 0 1.3333333333vw;
  }
}
#sec06 .sec06_wrap1 .planbox .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 325px;
  height: 80px;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 80px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec06 .sec06_wrap1 .planbox .caption {
    width: 43.3333333333vw;
    height: 10.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 10.6666666667vw;
  }
}
#sec06 .payment_box {
  margin: 66px auto 0;
  width: 750px;
  height: 1043px;
  /* background: url(../images/sec06_img3a.png) center top no-repeat; */
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec06 .payment_box {
    margin: 8.8vw auto 0;
    width: 100.3333333333vw;
    height: 139.0666666667vw;
  }
}
#sec06 .payment_box.changed {
  margin: 66px auto 0;
  width: 670px;
  height: 1094px;
  /* background: url(../images/sec06_img3b.png) center top no-repeat; */
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec06 .payment_box.changed {
    margin: 8.8vw auto 0;
    width: 89.3333333333vw;
    height: 145.8666666667vw;
  }
}
#sec06 .payment_box .text1 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 70px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec06 .payment_box .text1 {
    font-size: 4.5333333333vw;
    line-height: 9.3333333333vw;
  }
}
#sec06 .payment_box .text2 {
  margin-top: 50px;
  font-size: 26px;
  font-weight: 400;
  color: #2e2d2c;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec06 .payment_box .text2 {
    margin-top: 6.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
#sec06 .payment_box .payment_methods {
  margin: 110px 0 0 50px;
  padding-bottom: 20px;
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  border-bottom: 1px #b2b2b2 solid;
}
#sec06 .payment_box .payment_methods.pay1 {
  margin-bottom: 134px;
}
#sec06 .payment_box .payment_methods.pay2 {
  margin-bottom: 158px;
}
#sec06 .payment_box .payment_methods.pay3 {
  margin-bottom: 132px;
}
@media screen and (max-width: 750px) {
  #sec06 .payment_box .payment_methods {
    margin: 14.6666666667vw 0 0 6.6666666667vw;
    padding-bottom: 2.6666666667vw;
    font-size: 4.5333333333vw;
    font-weight: 700;
  }
  #sec06 .payment_box .payment_methods.pay1 {
    margin-bottom: 17.8666666667vw;
  }
  #sec06 .payment_box .payment_methods.pay2 {
    margin-bottom: 21.0666666667vw;
  }
  #sec06 .payment_box .payment_methods.pay3 {
    margin-bottom: 17.6vw;
  }
}

/**------------------------------------------
  sec07:退職までの流れ簡単3ステップ
------------------------------------------**/
#sec07 {
  position: relative;
  background: url(../images/sec07_bg.jpg) center top no-repeat;
  background-size: 750px 150px;
  background-color: #ffebf5;
  height: 1250px;
  padding-top: 126px;
}
@media screen and (max-width: 750px) {
  #sec07 {
    background-size: 100vw 20vw;
    height: 166.6666666667vw;
    padding-top: 16.8vw;
  }
}
#sec07 .sec07_title {
  position: relative;
  width: 100%;
  padding-left: 24px;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_title {
    padding-left: 3.2vw;
  }
}
#sec07 .sec07_title .text1 {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: -50px;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_title .text1 {
    font-size: 5.3333333333vw;
    margin-bottom: -6.6666666667vw;
  }
}
#sec07 .sec07_title .img1 {
  width: 540px;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_title .img1 {
    width: 72vw;
  }
}
#sec07 .sec07_box {
  width: 675px;
  height: 734px;
  margin: 46px auto 0;
  background: url(../images/sec07_img2.png) center top no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_box {
    width: 90vw;
    height: 97.8666666667vw;
    margin: 6.1333333333vw auto 0;
  }
}
#sec07 .sec07_box .text_wrap {
  padding-top: 260px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_box .text_wrap {
    padding-top: 34.6666666667vw;
  }
}
#sec07 .sec07_box .text_wrap .text2 {
  width: 340px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
#sec07 .sec07_box .text_wrap .text2 span {
  font-size: 44px;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_box .text_wrap .text2 {
    width: 45.3333333333vw;
    font-size: 4.5333333333vw;
  }
  #sec07 .sec07_box .text_wrap .text2 span {
    font-size: 5.8666666667vw;
  }
}
#sec07 .sec07_box .text3 {
  margin-top: 340px;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
#sec07 .sec07_box .text3 span {
  font-size: 52px;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  #sec07 .sec07_box .text3 {
    margin-top: 45.3333333333vw;
    font-size: 5.3333333333vw;
  }
  #sec07 .sec07_box .text3 span {
    font-size: 6.9333333333vw;
  }
}

/**------------------------------------------
  sec08:辞めてる人、どのくらいいるか知っていますか？
------------------------------------------**/
#sec08 {
  position: relative;
  background: url(../images/sec08_bg.jpg) center top no-repeat;
  background-size: contain;
  height: 3092px;
  padding-top: 155px;
}
@media screen and (max-width: 750px) {
  #sec08 {
    background-size: 100vw 412.2666666667vw;
    height: 412.2666666667vw;
    padding-top: 20.6666666667vw;
  }
}
#sec08 .sec08_title .text1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec08 .sec08_title .text1 {
    font-size: 5.3333333333vw;
  }
}
#sec08 .sec08_title .text2 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.63;
  text-align: center;
}
#sec08 .sec08_title .text2 span {
  border-bottom: 4px #1a1a1a solid;
}
@media screen and (max-width: 750px) {
  #sec08 .sec08_title .text2 {
    font-size: 8vw;
  }
}
#sec08 .img1 {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  #sec08 .img1 {
    margin-top: 5.3333333333vw;
  }
}
#sec08 .img2 {
  margin: 78px auto 0;
  width: 668px;
}
@media screen and (max-width: 750px) {
  #sec08 .img2 {
    margin: 10.4vw auto 0;
    width: 89.0666666667vw;
  }
}
#sec08 .text1 {
  margin-top: 10px;
  font-size: 16px;
  color: #4d4d4d;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec08 .text1 {
    margin-top: 1.3333333333vw;
    font-size: 2.1333333333vw;
  }
}
#sec08 .img3_wrap {
  position: relative;
  margin: 40px auto 0;
  width: 690px;
}
#sec08 .img3_wrap .text2 {
  position: absolute;
  left: 10px;
  bottom: 0;
  font-size: 16px;
  color: #4d4d4d;
  line-height: 1.3;
}
@media screen and (max-width: 750px) {
  #sec08 .img3_wrap {
    margin: 5.3333333333vw auto 0;
    width: 92vw;
  }
  #sec08 .img3_wrap .text2 {
    left: 1.3333333333vw;
    bottom: 0;
    font-size: 2.1333333333vw;
  }
}
#sec08 .img4_wrap {
  position: relative;
  margin: 10px auto 0;
  width: 750px;
}
@media screen and (max-width: 750px) {
  #sec08 .img4_wrap {
    margin: 1.3333333333vw auto 0;
    width: 100vw;
  }
}
#sec08 .img4_wrap .text3 {
  position: absolute;
  width: 100%;
  top: 346px;
  text-align: center;
  font-size: 16px;
  color: #808080;
  line-height: 1.625;
}
@media screen and (max-width: 750px) {
  #sec08 .img4_wrap .text3 {
    width: 100%;
    top: 46.1333333333vw;
    font-size: 2.1333333333vw;
  }
}

/**------------------------------------------
  sec09:あなただけではありません!ご安心ください!
------------------------------------------**/
#sec09 {
  position: relative;
  background: url(../images/sec09_bg.jpg) center top no-repeat;
  background-size: 750px 990px;
  background-color: #c7e8f2;
  height: 2758px;
  padding-top: 62px;
  border-bottom: 6px #000000 solid;
}
@media screen and (max-width: 750px) {
  #sec09 {
    background-size: 100vw 132vw;
    height: 367.7333333333vw;
    padding-top: 8.2666666667vw;
  }
}
#sec09 .text1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec09 .text1 {
    font-size: 6.4vw;
  }
}
#sec09 .text1 span {
  padding-top: 0.2em;
  background-position: top left -1px;
  background-repeat: repeat-x;
  background-size: 1.04em 0.5em;
  background-image: radial-gradient(0.08em 0.08em at center center, #fff876, #fff876 100%, transparent, transparent);
}
#sec09 .text2 {
  margin-top: 20px;
  font-size: 70px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec09 .text2 {
    margin-top: 2.6666666667vw;
    font-size: 9.3333333333vw;
  }
}
#sec09 .img1 {
  margin: 704px auto 0;
  width: 641px;
}
@media screen and (max-width: 750px) {
  #sec09 .img1 {
    margin: 93.8666666667vw auto 0;
    width: 85.4666666667vw;
  }
}
#sec09 .text3 {
  text-align: center;
}
#sec09 .text3 span {
  font-size: 30px;
  padding-bottom: 8px;
  color: #2e2d2c;
  letter-spacing: 0.04em;
  line-height: 2.6;
  border-bottom: 3px #ffffff dotted;
}
@media screen and (max-width: 750px) {
  #sec09 .text3 span {
    font-size: 4vw;
  }
}
#sec09 .img2 {
  margin: 72px auto 0;
  width: 690px;
}
@media screen and (max-width: 750px) {
  #sec09 .img2 {
    margin: 9.6vw auto 0;
    width: 92vw;
  }
}

/**------------------------------------------
  sec10:利用者の声
------------------------------------------**/
#sec10 {
  position: relative;
  background: url(../images/sec10_bg.jpg) center top no-repeat;
  height: 4108px;
  padding-top: 108px;
}
@media screen and (max-width: 750px) {
  #sec10 {
    background-size: 100vw 547.7333333333vw;
    height: 547.7333333333vw;
    padding-top: 14.4vw;
  }
}
#sec10 .sec10_title {
  font-size: 64px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec10 .sec10_title {
    font-size: 8.5333333333vw;
  }
}
#sec10 ul.sec10_list {
  margin-top: 216px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list {
    margin-top: 28.8vw;
  }
}
#sec10 ul.sec10_list li .age {
  font-size: 32px;
  font-weight: 700;
  color: #2e2d2c;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li .age {
    font-size: 4.2666666667vw;
  }
}
#sec10 ul.sec10_list li .tltle {
  margin-top: 85px;
  font-size: 33px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li .tltle {
    margin-top: 11.3333333333vw;
    font-size: 4.4vw;
  }
}
#sec10 ul.sec10_list li .text {
  width: 500px;
  margin-top: 90px;
  font-size: 28px;
  font-weight: 400;
  color: #2e2d2c;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li .text {
    width: 66.6666666667vw;
    margin-top: 12vw;
    font-size: 3.7333333333vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(1) {
  margin-left: 100px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(1) {
    margin-left: 13.3333333333vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(2) {
  margin-top: 130px;
  margin-left: 150px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(2) {
    margin-top: 17.3333333333vw;
    margin-left: 20vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(3) {
  margin-top: 136px;
  margin-left: 100px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(3) {
    margin-top: 18.1333333333vw;
    margin-left: 13.3333333333vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(4) .tltle, #sec10 ul.sec10_list li:nth-of-type(5) .tltle, #sec10 ul.sec10_list li:nth-of-type(6) .tltle {
  margin-top: 50px;
  line-height: 1.69;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(4) .tltle, #sec10 ul.sec10_list li:nth-of-type(5) .tltle, #sec10 ul.sec10_list li:nth-of-type(6) .tltle {
    margin-top: 6.6666666667vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(4) .text, #sec10 ul.sec10_list li:nth-of-type(5) .text, #sec10 ul.sec10_list li:nth-of-type(6) .text {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(4) .text, #sec10 ul.sec10_list li:nth-of-type(5) .text, #sec10 ul.sec10_list li:nth-of-type(6) .text {
    margin-top: 5.3333333333vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(4) {
  margin-top: 148px;
  margin-left: 150px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(4) {
    margin-top: 19.7333333333vw;
    margin-left: 20vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(5) {
  margin-top: 145px;
  margin-left: 100px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(5) {
    margin-top: 19.3333333333vw;
    margin-left: 13.3333333333vw;
  }
}
#sec10 ul.sec10_list li:nth-of-type(6) {
  margin-top: 140px;
  margin-left: 150px;
}
@media screen and (max-width: 750px) {
  #sec10 ul.sec10_list li:nth-of-type(6) {
    margin-top: 18.6666666667vw;
    margin-left: 20vw;
  }
}

/**--------------------------------------------------
  sec11:まずはお気軽にLINEでご相談ください!
--------------------------------------------------**/
#sec11 {
  position: relative;
  background: url(../images/sec11_bg2.jpg) center top no-repeat;
  height: 802px;
}
@media screen and (max-width: 750px) {
  #sec11 {
    background-size: 100vw 106.9333333333vw;
    height: 106.9333333333vw;
  }
}
#sec11 .cv02_area {
  padding-top: 556px;
  width: 750px;
  height: 802px;
  background: url(../images/sec11_bg.png) center top no-repeat;
  background-size: 750px 802px;
}
@media screen and (max-width: 750px) {
  #sec11 .cv02_area {
    padding-top: 74.1333333333vw;
    width: 100vw;
    height: 106.9333333333vw;
    background-size: 100vw 106.9333333333vw;
  }
}
#sec11 .cv02_area .cv_btn {
  display: block;
  width: 560px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(10px 15px 8px rgba(104, 95, 29, 0.4));
          filter: drop-shadow(10px 15px 8px rgba(104, 95, 29, 0.4));
}
@media screen and (max-width: 750px) {
  #sec11 .cv02_area .cv_btn {
    width: 74.6666666667vw;
  }
}
#sec11 .cv02_area .cv_btn:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
#sec11 .cv02_area .cv_btn:hover img {
  opacity: 1;
}

/**--------------------------------------------------
  sec12:よくある質問!
--------------------------------------------------**/
#sec12 {
  position: relative;
  background: url(../images/sec12_bg.jpg) center top;
  background-size: 750px 1716px;
  height: auto;
  padding-top: 118px;
  padding-bottom: 92px;
}
@media screen and (max-width: 750px) {
  #sec12 {
    background-size: 100vw 228.8vw;
    height: auto;
    padding-top: 15.7333333333vw;
    padding-bottom: 12.2666666667vw;
  }
}
#sec12 .sec12_title {
  font-size: 61px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_title {
    font-size: 8.1333333333vw;
  }
}
#sec12 .sec12_list {
  margin: 55px auto 0;
  width: 670px;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list {
    margin: 7.3333333333vw auto 0;
    width: 89.3333333333vw;
  }
}
#sec12 .sec12_list li {
  width: 670px;
  border-radius: 30px;
  border: #4d4d4d 3px solid;
  background-color: #ffffff;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li {
    width: 89.3333333333vw;
    border-radius: 4vw;
    margin-bottom: 4vw;
  }
}
#sec12 .sec12_list li .q_box {
  padding: 24px 30px 18px 100px;
  position: relative;
  min-height: 140px;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li .q_box {
    padding: 3.2vw 4vw 2.4vw 13.3333333333vw;
    min-height: 18.6666666667vw;
  }
}
#sec12 .sec12_list li .q_box .q_text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  width: 470px;
  padding-left: 26px;
  min-height: 98px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li .q_box .q_text {
    font-size: 4vw;
    width: 62.6666666667vw;
    padding-left: 3.4666666667vw;
    min-height: 13.0666666667vw;
  }
}
#sec12 .sec12_list li .q_box::before {
  position: absolute;
  content: "";
  background: url(../images/sec12_q_icon.png) center top no-repeat;
  background-size: contain;
  width: 100px;
  height: 70px;
  left: 0;
  top: 35px;
  border-right: 2px #4d4d4d dotted;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li .q_box::before {
    width: 13.3333333333vw;
    height: 9.3333333333vw;
    left: 0;
    top: 4.6666666667vw;
  }
}
#sec12 .sec12_list li .q_box::after {
  position: absolute;
  content: "";
  background: url(../images/sec12_arrow.png) center top no-repeat;
  background-size: contain;
  width: 24px;
  height: 13px;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li .q_box::after {
    width: 3.2vw;
    height: 1.7333333333vw;
    right: 4vw;
  }
}
#sec12 .sec12_list li .q_box.active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
#sec12 .sec12_list li .a_box {
  width: 600px;
  margin: 0 auto;
  border-top: 1px #4d4d4d solid;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li .a_box {
    width: 80vw;
  }
}
#sec12 .sec12_list li .a_box .a_text {
  width: 540px;
  margin: 20px auto 30px;
  font-size: 26px;
  color: #4d4d4d;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_list li .a_box .a_text {
    width: 72vw;
    margin: 2.6666666667vw auto 4vw;
    font-size: 3.4666666667vw;
  }
}

/**--------------------------------------------------
  footer
--------------------------------------------------**/
footer {
  position: relative;
  background: url(../images/footer_top_bg.jpg) center top no-repeat;
  background-size: 750px 6px;
  background-color: #1a1a1a;
  height: auto;
  padding: 70px 40px;
}
@media screen and (max-width: 750px) {
  footer {
    background-size: 100vw 0.8vw;
    height: auto;
    padding: 9.3333333333vw 5.3333333333vw;
  }
}
footer .footer_wrap {
  width: 670px;
  padding-bottom: 42px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap {
    width: 89.3333333333vw;
    padding-bottom: 5.6vw;
  }
}
footer .footer_wrap .left_box {
  width: 330px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .left_box {
    width: 44vw;
  }
}
footer .footer_wrap .left_box .footer_logo {
  width: 299px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .left_box .footer_logo {
    width: 39.8666666667vw;
  }
}
footer .footer_wrap .left_box .icon_wrap {
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .left_box .icon_wrap {
    margin-top: 3.2vw;
  }
}
footer .footer_wrap .left_box .icon_wrap .insta {
  display: block;
  width: 47px;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .left_box .icon_wrap .insta {
    width: 6.2666666667vw;
    margin-right: 2.6666666667vw;
  }
}
footer .footer_wrap .left_box .icon_wrap .x {
  display: block;
  width: 47px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .left_box .icon_wrap .x {
    width: 6.2666666667vw;
  }
}
footer .footer_wrap .right_box {
  width: 340px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .right_box {
    width: 45.3333333333vw;
  }
}
footer .footer_wrap .right_box .img1 {
  margin: 0 auto;
  width: 118px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .right_box .img1 {
    width: 15.7333333333vw;
  }
}
footer .footer_wrap .right_box .text1 {
  margin-top: 10px;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .right_box .text1 {
    margin-top: 1.3333333333vw;
    font-size: 4.4vw;
  }
}
footer .footer_wrap .right_box .footer_line_btn {
  margin: 16px auto 0;
  display: block;
  width: 341px;
}
@media screen and (max-width: 750px) {
  footer .footer_wrap .right_box .footer_line_btn {
    margin: 2.1333333333vw auto 0;
    width: 45.4666666667vw;
  }
}
footer .footer_wrap .right_box .footer_line_btn:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
footer .footer_wrap .right_box .footer_line_btn:hover img {
  opacity: 1;
}
footer .footer_link_wrap {
  width: 670px;
  border-top: 1px #666666 solid;
  padding-top: 30px;
}
@media screen and (max-width: 750px) {
  footer .footer_link_wrap {
    width: 89.3333333333vw;
    padding-top: 4vw;
  }
}
footer .footer_link_wrap li {
  border-right: 1px #ffffff solid;
  font-size: 22px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  footer .footer_link_wrap li {
    font-size: 2.9333333333vw;
  }
}
footer .footer_link_wrap li > a {
  display: block;
  color: #ffffff;
}
footer .footer_link_wrap li:first-of-type {
  padding-right: 28px;
}
@media screen and (max-width: 750px) {
  footer .footer_link_wrap li:first-of-type {
    padding-right: 2.4vw;
  }
}
footer .footer_link_wrap li:last-of-type {
  border-right: none;
  padding-left: 28px;
}
@media screen and (max-width: 750px) {
  footer .footer_link_wrap li:last-of-type {
    padding-right: 2.4vw;
  }
}
footer .footer_link_wrap li:nth-of-type(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 28px;
}
@media screen and (max-width: 750px) {
  footer .footer_link_wrap li:nth-of-type(2) {
    padding: 0 2.4vw;
  }
}/*# sourceMappingURL=style.css.map */


/**--------------------------------------------------
  SNS限定クーポン画像1000円OFF
--------------------------------------------------**/
.header_banner {
  width: 100%;
  background-color: #f4f4f4; /* バナーの背景色 */
  text-align: center;
  padding: 10px 0; /* バナーの上下パディング */
}

.header_banner img {
  max-width: 100%; /* 画像がバナー領域を超えないようにする */
  height: auto;
}

/* レスポンシブデザイン対応 */
@media screen and (max-width: 750px) {
  .header_banner {
      padding: 5px 0; /* モバイルでのパディング調整 */
  }
}

/**--------------------------------------------------
  sec20 口コミスライダー
--------------------------------------------------**/

.background-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.bg-image {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 750px;
  height: auto;
  z-index: 1;
}

.slider-container {
  width: 750px;
  height: 650px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 370px;
}

.slider-track {
  display: flex;
  flex-direction: column;
}

.slide-box {
  width: 100%;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 20px;
  box-sizing: border-box;
}

.slider-text {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    /* background-color: rgba(255, 255, 255, 0.8); */
    padding: 10px;
    border-radius: 8px;
    max-height: 240px;
    overflow-y: auto;
    width: 70%;
    margin-left: 85px;
    margin-top: 50px;
}

@media screen and (max-width: 750px) {
  .slider-container {
    width: 100%;
    height: 330px;
    margin-top: 200px;
  }

  .slide-box {
    height: 190px;
    padding: 15px;
    background-size: cover;
  }

  .slider-text {
    font-size: 11.6px;
    /* max-height: 200px; */
    width: 100%;
    margin-left: 16%;
  }
}

