@charset "UTF-8";

html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6,
p, img, small, strong, b,
dl, dt, dd, ol, ul, li,
form, label, legend,
table, tbody, tfoot, thead, tr, th, td,
footer, header, menu, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: bottom;
  background: transparent;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
}

img {
  width: 100%;
}

ul li {
  list-style: none;
}

table {
  border-spacing: 0;
}

body * {
  color: #1A1A1A;
  line-height: 1;
}

a {
  margin: 0;
  padding: 0;
  color: #1A1A1A;
  text-decoration: none;
  vertical-align: baseline;
}

a:hover {
  opacity: 0.8;
}

section, footer {
  margin: 0 auto;
  max-width: 2000px;
}

/* ===================================================================================
  resetここまで
=================================================================================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

body * {
  font-size: 16px;
}

.inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.common_tit {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  padding-top: 70px;
  margin-bottom: 60px;
}

.common_tit::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #1074C4;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -20px;
}

.btn a {
  display: block;
}

.btn_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 920px;
  margin: 0 auto;
}

.btn_wrap .dl_btn a {
  width: 450px;
  height: 90px;
  background-color: #fff;
  border: 2px solid #1074C4;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: #1074C4;
  font-weight: bold;
  padding-right: 3px;
  padding-top: 14px;
  position: relative;
}

.btn_wrap .dl_btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background: url("../img/dl_btn_arrow.png") no-repeat center/100%;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(0%, -50%);
}

.btn_wrap .dl_btn a span {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #1074C4;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.btn_wrap .dl_btn a span::after {
  content: "";
  display: block;
  width: 14px;
  height: 19px;
  background: url("../img/dl_btn_icon.png") no-repeat center/100%;
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translate(0%, -50%);
}

.btn_wrap .trial_btn a {
  width: 450px;
  height: 90px;
  background: -moz-linear-gradient(top, #31A1E6, #1074C4);
  background: -webkit-linear-gradient(top, #31A1E6, #1074C4);
  background: linear-gradient(to bottom, #31A1E6, #1074C4);
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: bold;
  padding-top: 18px;
  padding-right: 4px;
  position: relative;
}

.btn_wrap .trial_btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background: url("../img/trial_btn_arrow.png") no-repeat center/100%;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(0%, -50%);
}

.btn_wrap .trial_btn a::before {
  content: "無料";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #FD1155;
  position: absolute;
  right: 45px;
  top: -19px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.btn_wrap .trial_btn a span {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  display: inline-block;
}

.wrapper {
  position: relative;
}

/* ========================================
  header
======================================== */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 2000px;
  background: #fff;
  max-width: 2000px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
  -moz-filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
  z-index: 100;
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

header .header_logo {
  width: 151px;
  margin-right: 32px;
}

header .header_nav {
  width: 630px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_nav .header_list {
  display: flex;
}

header .header_nav .header_list li {
  white-space: nowrap;
}

header .header_nav .header_list li a {
  font-size: 14px;
}

header .header_nav .header_list li+li {
  margin-left: 20px;
}

header .header_nav .header_nav_dl {
  margin-left: 20px;
}

header .header_nav .header_nav_dl a {
  width: 190px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #1074C4;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
}

header .header_nav .header_nav_dl a span {
  font-weight: bold;
  line-height: 40px;
  font-size: 16px;
  color: #1074C4;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}

header .header_nav .header_nav_dl a span::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/dl_btn_bl.png") no-repeat center/100%;
  /* background: url("../img/dl_btn_icon.png") no-repeat center/100%; */
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translate(0%, -50%);
}

header .header_nav_tel {
  background-color: #1074C4;
  padding: 32px;
  white-space: nowrap;
  margin-left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 32px;
}

header .header_nav_tel a span {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}

header .header_nav_tel a span::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/tel-icon.png") no-repeat center/100%;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translate(0%, -50%);
}

.header_nav_tel .time {
  color: #fff;
  font-weight: bold;
  display: block;
  font-size: 15px;
}

/*header*/
/* ========================================
  fv
======================================== */
.fv {
  background-size: 2000px 796px;
  height: 796px;
  width: 100%;
  max-width: 2000px;
}

.fv .fv_contents {
  background: url("../img/fv_bg.png") no-repeat center 0;
  background-size: 2000px 796px;
  height: 796px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 2000px;
}

.fv .fv_contents .inner {
  padding-left: 40px;
}

.fv .fv_contents .fv_no1 {
  width: 609px;
  padding-top: 123px;
  margin-bottom: 20px;
}

.fv .fv_contents .fv_unnecessary {
  width: 469px;
  margin-bottom: 17px;
}

.fv .fv_contents h1 {
  font-size: 50px;
  line-height: 65px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  color: #1074C4;
}

.fv .fv_contents h1 span {
  font-size: 50px;
  line-height: 65px;
  letter-spacing: 0.04em;
  color: #FD1155;
}

.fv .fv_contents .fv_txt {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.fv .fv_contents .fv_btn_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 597px;
  margin-bottom: 30px;
}

.fv .fv_contents .fv_btn_wrap .fv_dl_btn a {
  width: 290px;
  height: 100px;
  background-color: #fff;
  border: 2px solid #1074C4;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  line-height: 29px;
  color: #1074C4;
  font-weight: bold;
  padding-right: 12px;
  padding-top: 24px;
  position: relative;
}

.fv .fv_contents .fv_btn_wrap .fv_dl_btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background: url("../img/dl_btn_arrow.png") no-repeat center/100%;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0%, -50%);
}

.fv .fv_contents .fv_btn_wrap .fv_dl_btn a span {
  font-weight: bold;
  font-size: 22px;
  line-height: 29px;
  color: #1074C4;
  display: inline-block;
  position: relative;
  padding-left: 27px;
}

.fv .fv_contents .fv_btn_wrap .fv_dl_btn a span::after {
  content: "";
  display: block;
  width: 16px;
  height: 21px;
  background: url("../img/dl_btn_icon.png") no-repeat center/100%;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translate(0%, -50%);
}

.fv .fv_contents .fv_btn_wrap .fv_trial_btn a {
  width: 290px;
  height: 100px;
  background: -moz-linear-gradient(top, #31A1E6, #1074C4);
  background: -webkit-linear-gradient(top, #31A1E6, #1074C4);
  background: linear-gradient(to bottom, #31A1E6, #1074C4);
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  line-height: 29px;
  color: #fff;
  font-weight: bold;
  padding-top: 24px;
  padding-right: 15px;
  position: relative;
}

.fv .fv_contents .fv_btn_wrap .fv_trial_btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background: url("../img/trial_btn_arrow.png") no-repeat center/100%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0%, -50%);
}

.fv .fv_contents .fv_btn_wrap .fv_trial_btn a::before {
  content: "無料";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 58px;
  background: #FD1155;
  position: absolute;
  right: 15px;
  top: -29px;
  font-size: 21px;
  font-weight: bold;
  white-space: nowrap;
}

.fv .fv_contents .fv_btn_wrap .fv_trial_btn a span {
  font-weight: bold;
  font-size: 21px;
  line-height: 29px;
  color: #fff;
  display: inline-block;
}

.fv .fv_contents .fv_annotation {
  font-size: 14px;
}

/*./fv*/
/* ========================================
  price_list
======================================== */
.price_list {
  background: url("../img/price_list_bg.png") no-repeat center 0;
  background-size: 2000px 839px;
  height: 839px;
  margin-top: -108px;
}

.price_list h2 {
  padding-top: 239px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 18px;
  margin-left: 500px;
}

.price_list .price_list_txt {
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 35px;
  margin-left: 500px;
  width: 460px;
}

.price_list .price_list_btn {
  width: 460px;
  margin-left: 500px;
}

.price_list .price_list_btn a {
  width: 460px;
  height: 60px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  padding-right: 4px;
  position: relative;
}

.price_list .price_list_btn a::after {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  background: url("../img/dl_btn_arrow.png") no-repeat center/100%;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(0%, -50%);
}

.price_list .price_list_btn a span {
  font-weight: bold;
  font-size: 20px;
  line-height: 66px;
  color: #1074C4;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.price_list .price_list_btn a span::after {
  content: "";
  display: block;
  width: 13px;
  height: 16px;
  background: url("../img/dl_btn_icon.png") no-repeat center/100%;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(0%, -50%);
}

/*./price_list*/
/* ========================================
  problem
======================================== */
.problem {
  background: url("../img/problem_bg.png") no-repeat center bottom;
  background-size: 2000px 1014px;
  height: 1014px;
  padding-top: 158px;
  margin-top: -108px;
}

.problem .problem_txt {
  display: block;
  font-size: 18px;
  font-weight: 600;
  width: 288px;
  margin: 0 auto 16px;
  padding-top: 2px;
  position: relative;
}

.problem .problem_txt::after, .problem .problem_txt::before {
  content: "";
  display: block;
  width: 10px;
  height: 19px;
  background: url("../img/problem_slash_l.png") no-repeat center/100%;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(0%, -50%);
}

.problem .problem_txt::before {
  background: url("../img/problem_slash_r.png") no-repeat center/100%;
  left: auto;
  right: -20px;
}

.problem h2 {
  font-size: 38px;
  line-height: 54px;
  margin-bottom: 40px;
  text-align: center;
}

.problem h2 span {
  color: #1074C4;
  font-size: 38px;
  line-height: 54px;
}

.problem .problem_list {
  position: relative;
  width: 1000px;
  height: 542px;
}

.problem .problem_list::after {
  content: "";
  display: block;
  width: 375px;
  height: 303px;
  background: url("../img/problem_img.png") no-repeat center/100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 0;
}

.problem .problem_list li {
  width: 340px;
  height: 210px;
  background-color: #fff;
  border-radius: 12px;
  padding: 50px 40px 0;
  position: absolute;
  left: 115px;
  top: 0;
}

.problem .problem_list li::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/problem_check.png") no-repeat center/100%;
  position: absolute;
  left: -8px;
  top: -8px;
}

.problem .problem_list li .problem_list_tit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
  color: #1074C4;
  white-space: nowrap;
}

.problem .problem_list li .problem_list_txt {
  font-size: 18px;
  line-height: 30px;
}

.problem .problem_list li:nth-of-type(2) {
  left: 500px;
  top: 0;
}

.problem .problem_list li:nth-of-type(3) {
  left: 0;
  top: 250px;
}

.problem .problem_list li:nth-of-type(4) {
  left: 660px;
  top: 250px;
}

/*./problem*/
/* ========================================
  theme
======================================== */
.theme .theme_hukidashi {
  background-color: #1074C4;
  width: 210px;
  line-height: 60px;
  font-size: 34px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 60px;
  margin: 40px auto 10px;
  padding-top: 4px;
  position: relative;
}

.theme .theme_hukidashi::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/theme_triangle.png") no-repeat center/100%;
  width: 21px;
  height: 17px;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -15px;
}

.theme h2 {
  width: 890px;
  margin: 0 auto 25px;
}

.theme .theme_txt {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 106px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.theme .theme_txt span {
  font-size: 18px;
  line-height: 30px;
  color: #FD1155;
}

.theme .theme_txt::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/theme_arrow.png") no-repeat center/100%;
  width: 80px;
  height: 62px;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -95px;
}

.theme .theme_price {
  background: url("../img/theme_price_bg.jpg") no-repeat center 0;
  background-size: 2000px 514px;
  height: 514px;
}

.theme .theme_price .theme_price_tit {
  margin-left: 545px;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 40px;
  font-weight: bold;
  color: #fff;
  padding-top: 85px;
}

.theme .theme_price .theme_price_tit span {
  font-size: 28px;
  line-height: 40px;
  font-weight: bold;
  color: #FFFF00;
}

.theme .theme_price .theme_price_img {
  margin-left: 545px;
  margin-bottom: 76px;
  width: 360px;
}

/*./theme*/
/* ========================================
  feature
======================================== */
.feature {
  background: url("../img/feature_bg.jpg") no-repeat center 0;
  background-size: 2000px 2758px;
  height: 2758px;
}

.feature h2 {
  padding-top: 104px;
  margin-bottom: 77px;
}

.feature .feature_point_list {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto 158px;
}

.feature .feature_point_list li {
  width: 232px;
  height: 232px;
  background-color: #fff;
  border-radius: 12px;
  padding: 81px 0 0;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  -moz-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  -ms-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
  position: relative;
}

.feature .feature_point_list li::after {
  content: "";
  display: block;
  width: 140px;
  height: 47px;
  background: url("../img/feature_point01.png") no-repeat center/100%;
  position: absolute;
  left: -8px;
  top: 20px;
}

.feature .feature_point_list li .featurelist_tit {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 13px;
  color: #FD1155;
  white-space: nowrap;
  text-align: center;
}

.feature .feature_point_list li .feature_list_txt {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  white-space: nowrap;
}

.feature .feature_point_list li:nth-of-type(2)::after {
  background: url("../img/feature_point02.png") no-repeat center/100%;
}

.feature .feature_point_list li:nth-of-type(3)::after {
  background: url("../img/feature_point03.png") no-repeat center/100%;
}

.feature .feature_point_list li:nth-of-type(4)::after {
  background: url("../img/feature_point04.png") no-repeat center/100%;
}

.feature .feature_list li {
  height: 362px;
  margin-bottom: 140px;
}

.feature .feature_list li .featurelist_tit {
  font-size: 40px;
  line-height: 56px;
  font-weight: bold;
  color: #fff;
  padding-top: 46px;
  margin-bottom: 19px;
}

.feature .feature_list li .feature_list_txt {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  width: 360px;
}

.feature .feature_list li:nth-of-type(1) {
  margin-left: 600px;
}

.feature .feature_list li:nth-of-type(2) {
  height: 400px;
  margin-left: 40px;
}

.feature .feature_list li:nth-of-type(2) .featurelist_tit {
  padding-top: 52px;
}

.feature .feature_list li:nth-of-type(3) {
  margin-left: 600px;
}

.feature .feature_list li:nth-of-type(3) .featurelist_tit {
  padding-top: 93px;
}

.feature .feature_list li:nth-of-type(4) {
  margin-bottom: 81px;
  margin-left: 40px;
}

.feature .feature_list li:nth-of-type(4) .featurelist_tit {
  padding-top: 65px;
}

/*./feature*/
/* ========================================
  function
======================================== */
.function {
/* background: url("../img/function_bg.jpg") no-repeat center 0;*/
 background: url("../img/function_bg_01.jpg") no-repeat center 0;
 background-size: 2000px 834px;
 height: 834px;
}

.function h2 {
  padding-top: 186px;
  margin-bottom: 45px;
  color: #fff;
}

.function h2::after {
  background: #fff;
}

.function .function_list {
  display: flex;
  justify-content: space-between;
  width: 920px;
  margin: 0 auto 32px;
}

.function .function_list li {
  width: 180px;
  height: 320px;
  background-color: #fff;
  border-radius: 12px;
  padding: 140px 0 0;
  position: relative;
}

.function .function_list li::after {
  content: "";
  display: block;
  width: 75px;
  height: 110px;
  background: url("../img/function_icon01.png") no-repeat center/100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  top: 25px;
}

.function .function_list li .function_list_tit {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #FD1155;
  min-height: 3em;
  white-space: nowrap;
  text-align: center;
}

.function .function_list li .function_list_txt {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  padding-left: 20px;
  padding-right: 20px;
}

.function .function_list li:nth-of-type(2)::after {
  background: url("../img/function_icon02.png") no-repeat center/100%;
}

.function .function_list li:nth-of-type(3)::after {
  background: url("../img/function_icon03.png") no-repeat center/100%;
}

.function .function_list li:nth-of-type(4)::after {
  background: url("../img/function_icon04.png") no-repeat center/100%;
}

.function .function_list li:nth-of-type(5)::after {
  background: url("../img/function_icon05.png") no-repeat center/100%;
}

.function .function_txt {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.function .function_txt span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

/*./function*/
/* ========================================
  price
======================================== */
.price {
  background: #FFF;
  margin-bottom: 60px;
}

.price h2 {
  padding-top: 24px;
  margin-bottom: 74px;
}

.price .price_hukidashi {
  background-color: #FD1155;
  width: 920px;
  height: 86px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 12px;
  margin: 0 auto 32px;
  padding-top: 10px;
  position: relative;
}

.price .price_hukidashi::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/price_triangle.png") no-repeat center/100%;
  width: 45px;
  height: 27px;
  left: 303px;
  bottom: -21px;
}

.price .price_hukidashi span {
  font-size: 18px;
  line-height: 28px;
  color: #FFFF00;
  font-weight: bold;
}

.price .price_hukidashi sup {
  font-size: 12px;
  line-height: 28px;
  color: #FFFF00;
  font-weight: bold;
}

.price .price_table {
  background: url("../img/price_table_bg.png") no-repeat center 0;
  background-size: 920px 281px;
  width: 920px;
  height: 281px;
  margin: 0 auto 10px;
}

.price .price_table table tr th {
  height: 95px;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.price .price_table table tr th img {
  width: 256px;
}

.price .price_table table tr td {
  text-align: center;
  height: 81px;
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
}

.price .price_table table tr td sup {
  font-weight: bold;
  font-size: 12px;
}

.price .price_table table tr td:nth-of-type(1) {
  width: 166px;
  color: #fff;
}

.price .price_table table tr td:nth-of-type(2) {
  width: 320px;
  color: #fff;
  font-size: 28px;
}

.price .price_table table tr td:nth-of-type(3) {
  width: 217px;
}

.price .price_table table tr td:nth-of-type(4) {
  width: 217px;
}

.price .price_table table tr:nth-of-type(3) td {
  height: 88px;
}

.price .price_txt {
  font-size: 14px;
  line-height: 22px;
  width: 340px;
  margin-right: 30px;
  margin-left: auto;
  margin-bottom: 40px;
}

/*./price*/
/* ========================================
  case
======================================== */
.case {
  background: url("../img/case_bg.jpg") no-repeat center 0;
  background-size: 2000px 892px;
  height: 892px;
}

.case h2 {
  padding-top: 157px;
  margin-bottom: 69px;
  color: #fff;
}

.case h2::after {
  background: #fff;
}

.case .case_list {
  display: flex;
  justify-content: space-evenly;
  width: 920px;
  margin: 0 auto;
}

.case .case_list li {
  width: 280px;
  height: 430px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 20px 0;
}

.case .case_list li .case_img {
  width: 240px;
  margin: 0 auto 16px;
}

.case .case_list li .case_list_tit {
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 3.7em;
  padding-left: 10px;
}

.case .case_list li .case_list_business {
  line-height: 22px;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  background-color: #1074C4;
  border-radius: 22px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.case .case_list li .case_list_txt {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding-left: 10px;
}

.case .hide-area {
  display: none;
}

.modaal-container {
  position: relative;
  display: inline-block;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  height: auto;
  max-height: 98vh;
  border-radius: 12px;
  background: #fff;
  cursor: auto;
}

.modaal-inner-wrapper {
  padding-top: 1vh;
  padding-bottom: 1vh;
}

.case_modal_contents {
  overflow-y: scroll;
  height: 90vh;
}

.case_modal_contents.case_2 .case_modal_contents_top {
  height: 370px;
}

.case_modal_contents.case_3 .case_modal_contents_top {
  height: 340px;
}

.case_modal_contents_top {
  border-radius: 12px 12px 0 0;
  height: 330px;
  background-color: #1074C4;
}

.case_modal_contents_top .case_modal_contents_top_wrap {
  width: 920px;
  padding-top: 40px;
  margin: 0 auto;
}

.case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_img {
  width: 410px;
  float: left;
  padding-right: 30px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box_tit {
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  line-height: 42px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
  width: 510px;
  margin-left: 410px;
}

.case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box_txt {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box {
  width: 510px;
}

.case_modal_contents_bottom {
  float: none;
  padding: 60px 40px 0px;
  box-sizing: border-box;
}

.case_modal_contents_bottom .case_modal_contents_bottom_wrap {
  max-height: 40vh;
  overflow-y: scroll;
}

.case_modal_contents_bottom .case_modal_contents_bottom_wrap .case_modal_contents_bottom_tit {
  color: #1074C4;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.case_modal_contents_bottom .case_modal_contents_bottom_wrap .case_modal_contents_bottom_txt {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.modaal-content-container {
  padding: 0px;
}

.modaal-wrapper .modaal-close {
  background: #fff;
}

.modaal-close {
  position: absolute;
  right: -15px;
  top: -23px;
  color: #1074C4;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 50px;
  color: #1074C4;
  background: #1074C4;
}

/*./case*/
/* ========================================
  flow
======================================== */
.flow {
  background: url("../img/flow_bg.jpg") no-repeat center 0;
  background-size: 2000px 1103px;
  height: 1103px;
}

.flow h2 {
  padding-top: 78px;
  margin-bottom: 85px;
}

.flow .flow_list {
  display: flex;
  justify-content: space-between;
  width: 920px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.flow .flow_list li {
  width: 280px;
  height: 342px;
  background-color: #fff;
  border-radius: 12px;
  padding: 144px 28px 0;
  border: 2px solid #1074C4;
  margin-bottom: 38px;
  box-sizing: border-box;
  position: relative;
}

.flow .flow_list li::after {
  content: "";
  display: block;
  width: 102px;
  height: 118px;
  background: url("../img/flow_icon01.png") no-repeat center/100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  top: 18px;
}

.flow .flow_list li::before {
  content: "1";
  display: block;
  width: 50px;
  height: 50px;
  background: #1074C4;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: -12px;
  top: -12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.flow .flow_list li .flow_list_tit {
  color: #1074C4;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.flow .flow_list li .flow_list_txt {
  font-size: 18px;
  line-height: 30px;
}

.flow .flow_list li:nth-of-type(2)::after {
  background: url("../img/flow_icon02.png") no-repeat center/100%;
}

.flow .flow_list li:nth-of-type(2)::before {
  content: "2";
}

.flow .flow_list li:nth-of-type(3)::after {
  background: url("../img/flow_icon03.png") no-repeat center/100%;
}

.flow .flow_list li:nth-of-type(3)::before {
  content: "3";
}

.flow .flow_list li:nth-of-type(4)::after {
  background: url("../img/flow_icon04.png") no-repeat center/100%;
}

.flow .flow_list li:nth-of-type(4)::before {
  content: "4";
}

.flow .flow_list li:nth-of-type(5)::after {
  background: url("../img/flow_icon05.png") no-repeat center/100%;
}

.flow .flow_list li:nth-of-type(5)::before {
  content: "5";
}

.flow .flow_list li:last-of-type {
  margin-right: 0;
}

.flow .flow_list li:last-of-type::after {
  background: url("../img/flow_icon06.png") no-repeat center/100%;
}

.flow .flow_list li:last-of-type::before {
  content: "6";
}

.flow .flow_txt_box {
  background-color: #E4F7FC;
  width: 920px;
  border-radius: 60px;
  margin: 0 auto;
  padding-top: 4px;
  padding-left: 81px;
}

.flow .flow_txt_box .flow_txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 60px;
}

.flow .flow_txt_box .flow_txt::after {
  content: "";
  display: block;
  width: 62px;
  height: 62px;
  background: url("../img/function_support_icon.png") no-repeat center/100%;
  position: absolute;
  left: 52px;
  top: -17px;
}

.flow .flow_txt_box .flow_txt span {
  line-height: 60px;
  font-size: 20px;
  font-weight: bold;
  color: #FD1155;
}

/*./flow*/
/* ========================================
  alignment
======================================== */
.alignment {
  background: url("../img/alignment_bg.jpg") no-repeat center center;
  background-size: 2000px 1092px;
  height: 1091px;
}

.alignment .inner {
  padding: 181px 40px 0;
  box-sizing: border-box;
}

.alignment .alignment_hukidashi {
  background-color: #FD1155;
  width: 550px;
  line-height: 40px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 40px;
  margin: 0 auto 30px;
  position: relative;
}

.alignment .alignment_hukidashi::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/alignment_triangle.png") no-repeat center/100%;
  width: 21px;
  height: 17px;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -15px;
}

.alignment .alignment_hukidashi sup {
  line-height: 44px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.alignment h2 {
  font-size: 42px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.alignment h2 span:first-of-type {
  font-size: 34px;
  color: #fff;
  font-weight: bold;
}

.alignment h2 span:last-of-type {
  font-size: 42px;
  color: #FFFF00;
  font-weight: bold;
}

.alignment h2 img {
  width: 330px;
}

.alignment .alignment_list {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.alignment .alignment_list li {
  width: 175px;
  height: 330px;
  background-color: #fff;
  margin-right: 10px;
  border-radius: 12px;
  padding: 135px 20px 0;
  position: relative;
}

.alignment .alignment_list li::after {
  content: "";
  display: block;
  width: 75px;
  height: 80px;
  background: url("../img/alignment_list_icon01.png") no-repeat center/100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  top: 34px;
}

.alignment .alignment_list li .alignment_list_tit {
  color: #FD1155;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  min-height: 3em;
}

.alignment .alignment_list li .alignment_list_txt {
  color: #000;
  font-size: 16px;
  line-height: 28px;
}

.alignment .alignment_list li:nth-of-type(2)::after {
  background: url("../img/alignment_list_icon02.png") no-repeat center/100%;
}

.alignment .alignment_list li:nth-of-type(3)::after {
  background: url("../img/alignment_list_icon03.png") no-repeat center/100%;
}

.alignment .alignment_list li:nth-of-type(4)::after {
  background: url("../img/alignment_list_icon04.png") no-repeat center/100%;
}

.alignment .alignment_list li:last-of-type {
  margin-right: 0;
}

.alignment .alignment_list li:last-of-type::after {
  background: url("../img/alignment_list_icon05.png") no-repeat center/100%;
}

.alignment .alignment_txt {
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 30px;
}

.alignment .alignment_txt span {
  font-size: 18px;
  line-height: 36px;
  color: #FFFF00;
  font-weight: bold;
}

.alignment .alignment_annotation {
  font-size: 14px;
  color: #fff;
}

/*./alignment*/
/* ========================================
  inquiry
======================================== */
.inquiry {
  background: #1074C4;
  padding-bottom: 57px;
}

.inquiry h2 {
  padding-top: 75px;
  margin-bottom: 66px;
  color: #fff;
}

.inquiry h2::after {
  background: #fff;
}

.inquiry_list li {
  margin-bottom: 30px;
}

.inquiry_list li dl dt {
  font-size: 18px;
  line-height: 60px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  background-color: #49CDE9;
  padding-left: 80px;
  position: relative;
}

.inquiry_list li dl dt.close {
  border-radius: 10px 10px 0 0;
}

.inquiry_list li dl dt.close::before {
  background: url("../img/faq_icon_minus.png") no-repeat center/100%;
}

.inquiry_list li dl dt::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/faq_icon_q.png") no-repeat center/100%;
  width: 21px;
  height: 23px;
  left: 40px;
  top: 50%;
  transform: translate(0%, -50%);
}

.inquiry_list li dl dt::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/faq_icon_plus.png") no-repeat center/100%;
  width: 20px;
  height: 20px;
  right: 40px;
  top: 50%;
  transform: translate(0%, -50%);
  font-size: 30px;
}

.inquiry_list li dl dd {
  font-size: 18px;
  line-height: 36px;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  padding-left: 80px;
  padding-right: 68px;
  padding-top: 20px;
  padding-bottom: 30px;
  position: relative;
  display: none;
}

.inquiry_list li dl dd::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/faq_icon_a.png") no-repeat center/100%;
  width: 21px;
  height: 23px;
  left: 40px;
  top: 24px;
}

/*./inquiry*/
/* ========================================
  form
======================================== */
.form h2 {
  padding-top: 128px;
  margin-bottom: 60px;
}

/*./form*/
/* ========================================
  company
======================================== */
.company {
  margin-top: 50px;
  background: url("../img/company_bg.jpg") no-repeat center bottom;
  background-size: 2000px 363px;
  border-top: 4px solid #1074C4;
}

.company h2 {
  padding-top: 50px;
  width: 200px;
  margin-bottom: 15px;
}

.company .company_tit {
  color: #000;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: bold;
}

.company .company_list {
  display: flex;
  flex-wrap: wrap;
  width: 720px;
  padding-bottom: 22px;
}

.company .company_list li {
  width: 360px;
  margin-bottom: 25px;
}

.company .company_list li .company_list_tit {
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  color: #1074C4;
}

.company .company_list li .company_list_txt {
  font-size: 14px;
  line-height: 22px;
}

/*./company*/
/* ========================================
  フッター
======================================== */
.footer {
  background: #1074C4;
}

.footer .footer_copylight {
  font-size: 12px;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

/*./footer*/
/* =============================================

1000以下

============================================= */
@media screen and (max-width: 1000px) {
  body * {
    font-size: 1.6vw;
  }

  .inner {
    width: 100%;
  }

  .common_tit {
    font-size: 3.8vw;
    padding-top: 7vw;
    margin-bottom: 6vw;
  }

  .common_tit::after {
    width: 5vw;
    height: 0.2vw;
    bottom: -2vw;
  }

  .btn_wrap {
    width: 92vw;
  }

  .btn_wrap .dl_btn a {
    width: 45vw;
    height: 9vw;
    border: 0.2vw solid #1074C4;
    border-radius: 0.8vw;
    font-size: 1.6vw;
    line-height: 2.8vw;
    padding-right: 0.3vw;
    padding-top: 1.4vw;
  }

  .btn_wrap .dl_btn a::after {
    width: 0.8vw;
    height: 1.3vw;
    right: 1.4vw;
  }

  .btn_wrap .dl_btn a span {
    font-size: 2vw;
    line-height: 2.8vw;
    padding-left: 2vw;
  }

  .btn_wrap .dl_btn a span::after {
    width: 1.4vw;
    height: 1.9vw;
    left: 0.1vw;
  }

  .btn_wrap .trial_btn a {
    width: 45vw;
    height: 9vw;
    border-radius: 0.8vw;
    font-size: 1.6vw;
    line-height: 2.8vw;
    padding-top: 1.8vw;
    padding-right: 0.4vw;
  }

  .btn_wrap .trial_btn a::after {
    width: 0.8vw;
    height: 1.3vw;
    right: 1.4vw;
  }

  .btn_wrap .trial_btn a::before {
    width: 5vw;
    height: 5vw;
    border-radius: 5vw;
    right: 4.5vw;
    top: -1.9vw;
    font-size: 1.8vw;
  }

  .btn_wrap .trial_btn a span {
    font-size: 2vw;
    line-height: 2.8vw;
  }

  /* ========================================
    header
  ======================================== */
  header {
    -webkit-filter: drop-shadow(0px 0.4vw 0.6vw rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(0px 0.4vw 0.6vw rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(0px 0.4vw 0.6vw rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0px 0.4vw 0.6vw rgba(0, 0, 0, 0.2));
  }

  header .inner {
    height: 8vw;
    width: 96%;
  }

  header .header_logo {
    width: 15.1vw;
  }

  header .header_nav {
    width: 75.4vw;
  }

  header .header_nav .header_list li a {
    font-size: 1.6vw;
  }

  header .header_nav .header_list li+li {
    margin-left: 3vw;
  }

  header .header_nav .header_nav_dl {
    margin-left: 3vw;
  }

  header .header_nav .header_nav_dl a {
    width: 19vw;
    height: 4vw;
    border: 0.2vw solid #1074C4;
    border-radius: 2vw;
  }

  header .header_nav .header_nav_dl a span {
    line-height: 4vw;
    font-size: 1.4vw;
    padding-left: 1.8vw;
  }

  header .header_nav .header_nav_dl a span::after {
    width: 1.3vw;
    height: 1.6vw;
    left: -0.2vw;
  }

  header .header_nav_tel {
    height: 8vw;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 12px;
  }

  header .header_nav_tel a span {
    font-size: 1.2vw;
    padding: 0;
    margin-left: 0;
    position: relative;
    bottom: -8px;
  }

  header .header_nav_tel a span::after {
    /* display: none; */
    height: 20px;
    width: 20px;
    left: 30px;
    top: -16px;
  }

  .header_nav_tel .time{
    font-size: 1.2vw;
  }

  /*header*/
  /* ========================================
    fv
  ======================================== */
  .fv {
    background-size: 200vw 79.6vw;
    height: 79.6vw;
  }

  .fv .fv_contents {
    background-size: 200vw 79.6vw;
    height: 79.6vw;
  }

  .fv .fv_contents .inner {
    padding-left: 4vw;
  }

  .fv .fv_contents .fv_no1 {
    width: 60.9vw;
    padding-top: 12.3vw;
    margin-bottom: 2vw;
  }

  .fv .fv_contents .fv_unnecessary {
    width: 46.9vw;
    margin-bottom: 1.7vw;
  }

  .fv .fv_contents h1 {
    font-size: 5vw;
    line-height: 6.5vw;
    margin-bottom: 1vw;
  }

  .fv .fv_contents h1 span {
    font-size: 5vw;
    line-height: 6.5vw;
  }

  .fv .fv_contents .fv_txt {
    font-size: 1.6vw;
    line-height: 2.6vw;
    margin-bottom: 3.3vw;
  }

  .fv .fv_contents .fv_btn_wrap {
    width: 59.7vw;
    margin-bottom: 3vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a {
    width: 29vw;
    height: 10vw;
    border: 0.2vw solid #1074C4;
    box-sizing: border-box;
    border-radius: 0.8vw;
    font-size: 1.8vw;
    line-height: 2.9vw;
    padding-right: 1.2vw;
    padding-top: 2.4vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a::after {
    width: 0.8vw;
    height: 1.3vw;
    right: 1.2vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a span {
    font-size: 2.2vw;
    line-height: 2.9vw;
    padding-left: 2.7vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a span::after {
    width: 1.6vw;
    height: 2.1vw;
    left: 0.4vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a {
    width: 29vw;
    height: 10vw;
    border-radius: 0.8vw;
    font-size: 1.8vw;
    line-height: 2.9vw;
    padding-top: 2.4vw;
    padding-right: 1.5vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a::after {
    width: 0.8vw;
    height: 1.3vw;
    right: 1.5vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a::before {
    width: 5.8vw;
    height: 5.8vw;
    border-radius: 5.8vw;
    right: 1.5vw;
    top: -2.91vw;
    font-size: 2.1vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a span {
    font-size: 2.1vw;
    line-height: 2.9vw;
  }

  .fv .fv_contents .fv_annotation {
    font-size: 1.4vw;
  }

  /*./fv*/
  /* ========================================
    price_list
  ======================================== */
  .price_list {
    background-size: 200vw 83.9vw;
    height: 83.9vw;
    margin-top: -10.8vw;
  }

  .price_list h2 {
    padding-top: 23.9vw;
    font-size: 3.6vw;
    margin-bottom: 1.8vw;
    margin-left: 50vw;
  }

  .price_list .price_list_txt {
    font-size: 1.8vw;
    line-height: 3.6vw;
    margin-bottom: 3.5vw;
    margin-left: 50vw;
    width: 46vw;
  }

  .price_list .price_list_btn {
    width: 46vw;
    margin-left: 50vw;
  }

  .price_list .price_list_btn a {
    width: 46vw;
    height: 6vw;
    border-radius: 0.8vw;
    padding-right: 0.4vw;
  }

  .price_list .price_list_btn a::after {
    width: 0.7vw;
    height: 1.3vw;
    right: 1.4vw;
  }

  .price_list .price_list_btn a span {
    font-size: 2vw;
    line-height: 6.6vw;
    padding-left: 2vw;
  }

  .price_list .price_list_btn a span::after {
    width: 1.3vw;
    height: 1.6vw;
    left: 0.2vw;
  }

  /*./price_list*/
  /* ========================================
    problem
  ======================================== */
  .problem {
    background-size: 200vw 101.4vw;
    height: 101.4vw;
    padding-top: 15.8vw;
    margin-top: -10.8vw;
  }

  .problem .problem_txt {
    font-size: 1.8vw;
    width: 28.8vw;
    margin: 0 auto 1.6vw;
    padding-top: 0.2vw;
  }

  .problem .problem_txt::after, .problem .problem_txt::before {
    width: 1vw;
    height: 1.9vw;
  }

  .problem .problem_txt::before {
    right: -2vw;
  }

  .problem h2 {
    font-size: 3.8vw;
    line-height: 5.4vw;
    margin-bottom: 4vw;
  }

  .problem h2 span {
    font-size: 3.8vw;
    line-height: 5.4vw;
  }

  .problem .problem_list {
    width: 100vw;
    height: 54.2vw;
  }

  .problem .problem_list::after {
    width: 37.5vw;
    height: 30.3vw;
  }

  .problem .problem_list li {
    width: 34vw;
    height: 21vw;
    border-radius: 1.2vw;
    padding: 5vw 4vw 0;
    left: 11.5vw;
  }

  .problem .problem_list li::after {
    width: 4vw;
    height: 4vw;
    left: -0.8vw;
    top: -0.8vw;
  }

  .problem .problem_list li .problem_list_tit {
    font-size: 1.8vw;
    margin-bottom: 1.8vw;
  }

  .problem .problem_list li .problem_list_txt {
    font-size: 1.8vw;
    line-height: 3vw;
  }

  .problem .problem_list li:nth-of-type(2) {
    left: 50vw;
    top: 0;
  }

  .problem .problem_list li:nth-of-type(3) {
    left: 2vw;
    top: 25vw;
  }

  .problem .problem_list li:nth-of-type(4) {
    left: 65vw;
    top: 25vw;
  }

  /*./problem*/
  /* ========================================
    theme
  ======================================== */
  .theme .theme_hukidashi {
    width: 21vw;
    line-height: 6vw;
    font-size: 3.4vw;
    border-radius: 6vw;
    margin: 4vw auto 1vw;
    padding-top: 0.4vw;
  }

  .theme .theme_hukidashi::after {
    width: 2.1vw;
    height: 1.7vw;
    bottom: -1.5vw;
  }

  .theme h2 {
    width: 89vw;
    margin: 0 auto 2.5vw;
  }

  .theme .theme_txt {
    font-size: 1.8vw;
    line-height: 3vw;
    margin-bottom: 10.6vw;
  }

  .theme .theme_txt span {
    font-size: 1.8vw;
    line-height: 3vw;
  }

  .theme .theme_txt::after {
    width: 8vw;
    height: 6.2vw;
    bottom: -9.5vw;
  }

  .theme .theme_price {
    background-size: 200vw 51.4vw;
    height: 51.4vw;
  }

  .theme .theme_price .theme_price_tit {
    margin-left: 54.5vw;
    margin-bottom: 2vw;
    font-size: 2.8vw;
    line-height: 4vw;
    padding-top: 8.5vw;
  }

  .theme .theme_price .theme_price_tit span {
    font-size: 2.8vw;
    line-height: 4vw;
  }

  .theme .theme_price .theme_price_img {
    margin-left: 54.5vw;
    margin-bottom: 7.6vw;
    width: 36vw;
  }

  /*./theme*/
  /* ========================================
    feature
  ======================================== */
  .feature {
    background-size: 200vw 275.8vw;
    height: 275.8vw;
  }

  .feature h2 {
    padding-top: 10.4vw;
    margin-bottom: 7.7vw;
  }

  .feature .feature_point_list {
    width: 94vw;
    margin: 0 auto 15.8vw;
  }

  .feature .feature_point_list li {
    width: 22.2vw;
    height: 23.2vw;
    border-radius: 1.2vw;
    padding: 8.1vw 0 0;
    -webkit-filter: drop-shadow(0px 0px 0.6vw rgba(0, 0, 0, 0.15));
    -moz-filter: drop-shadow(0px 0px 0.6vw rgba(0, 0, 0, 0.15));
    -ms-filter: drop-shadow(0px 0px 0.6vw rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 0px 0.6vw rgba(0, 0, 0, 0.15));
  }

  .feature .feature_point_list li::after {
    width: 14vw;
    height: 4.7vw;
    left: -0.8vw;
    top: 2vw;
  }

  .feature .feature_point_list li .featurelist_tit {
    font-size: 2.6vw;
    margin-bottom: 1.3vw;
  }

  .feature .feature_point_list li .feature_list_txt {
    font-size: 1.8vw;
    line-height: 3vw;
  }

  .feature .feature_list li {
    height: 36.2vw;
    margin-bottom: 14vw;
  }

  .feature .feature_list li .featurelist_tit {
    font-size: 4vw;
    line-height: 5.6vw;
    padding-top: 4.6vw;
    margin-bottom: 1.9vw;
  }

  .feature .feature_list li .feature_list_txt {
    font-size: 1.8vw;
    line-height: 3vw;
    width: 36vw;
  }

  .feature .feature_list li:nth-of-type(1) {
    margin-left: 60vw;
  }

  .feature .feature_list li:nth-of-type(2) {
    height: 40vw;
    margin-left: 4vw;
  }

  .feature .feature_list li:nth-of-type(2) .featurelist_tit {
    padding-top: 5.2vw;
  }

  .feature .feature_list li:nth-of-type(3) {
    margin-left: 60vw;
  }

  .feature .feature_list li:nth-of-type(3) .featurelist_tit {
    padding-top: 9.3vw;
  }

  .feature .feature_list li:nth-of-type(4) {
    margin-bottom: 8.1vw;
    margin-left: 4vw;
  }

  .feature .feature_list li:nth-of-type(4) .featurelist_tit {
    padding-top: 6.5vw;
  }

  /*./feature*/
  /* ========================================
    function
  ======================================== */
  .function {
    background-size: 200vw 83.4vw;
    height: 83.4vw;
  }

  .function h2 {
    padding-top: 18.6vw;
    margin-bottom: 4.5vw;
  }

  .function .function_list {
    width: 92vw;
    margin: 0 auto 3.2vw;
  }

  .function .function_list li {
    width: 16.8vw;
    height: 34vw;
    border-radius: 1.2vw;
    padding: 16.1vw 0 0;
  }

  .function .function_list li::after {
    width: 9vw;
    height: 11.5vw;
    top: 2.8vw;
  }

  .function .function_list li .function_list_tit {
    font-size: 2vw;
    line-height: 3vw;
    margin-bottom: 0.8vw;
  }

  .function .function_list li .function_list_txt {
    font-size: 1.6vw;
    line-height: 2.8vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .function .function_txt {
    font-size: 1.8vw;
  }

  .function .function_txt span {
    font-size: 1.8vw;
  }

  /*./function*/
  /* ========================================
    price
  ======================================== */
  .price {
    margin-bottom: 6vw;
  }

  .price h2 {
    padding-top: 2.4vw;
    margin-bottom: 7.4vw;
  }

  .price .price_hukidashi {
    width: 92vw;
    height: 8.6vw;
    font-size: 1.8vw;
    line-height: 2.8vw;
    border-radius: 1.2vw;
    margin: 0 auto 3.2vw;
    padding-top: 1vw;
  }

  .price .price_hukidashi::after {
    width: 4.5vw;
    height: 2.7vw;
    left: 30.3vw;
    bottom: -2.1vw;
  }

  .price .price_hukidashi span {
    font-size: 1.8vw;
    line-height: 2.8vw;
  }

  .price .price_hukidashi sup {
    font-size: 1.2vw;
    line-height: 2.8vw;
  }

  .price .price_table {
    background-size: 92vw 28.1vw;
    width: 92vw;
    height: 28.1vw;
    margin: 0 auto 1vw;
  }

  .price .price_table table tr th {
    height: 9.5vw;
    padding-bottom: 1.6vw;
    font-size: 1.8vw;
  }

  .price .price_table table tr th img {
    width: 25.6vw;
  }

  .price .price_table table tr td {
    height: 8.1vw;
    font-size: 1.8vw;
  }

  .price .price_table table tr td sup {
    font-size: 1.2vw;
  }

  .price .price_table table tr td:nth-of-type(1) {
    width: 16.6vw;
  }

  .price .price_table table tr td:nth-of-type(2) {
    width: 32vw;
    font-size: 2.8vw;
  }

  .price .price_table table tr td:nth-of-type(3) {
    width: 21.7vw;
  }

  .price .price_table table tr td:nth-of-type(4) {
    width: 21.7vw;
  }

  .price .price_table table tr:nth-of-type(3) td {
    height: 8.8vw;
  }

  .price .price_txt {
    font-size: 1.4vw;
    line-height: 2.2vw;
    width: 34vw;
    margin-right: 3vw;
    margin-bottom: 4vw;
  }

  /*./price*/
  /* ========================================
    case
  ======================================== */
  .case {
    background-size: 200vw 89.2vw;
    height: 89.2vw;
  }

  .case h2 {
    padding-top: 15.7vw;
    margin-bottom: 6.9vw;
  }

  .case .case_list {
    width: 92vw;
  }

  .case .case_list li {
    width: 28vw;
    height: 43vw;
    border-radius: 1.2vw;
    padding: 2vw 2vw 0;
  }

  .case .case_list li .case_img {
    width: 24vw;
    margin: 0 auto 1.6vw;
  }

  .case .case_list li .case_list_tit {
    font-size: 2vw;
    line-height: 3.2vw;
    margin-bottom: 1vw;
    padding-left: 1vw;
  }

  .case .case_list li .case_list_business {
    width: 13vw;
    line-height: 2.2vw;
    font-size: 1.4vw;
    border-radius: 2.2vw;
    margin-bottom: 1vw;
    margin-left: 1vw;
  }

  .case .case_list li .case_list_txt {
    font-size: 1.4vw;
    line-height: 2vw;
    font-weight: 500;
    padding-left: 1vw;
  }

  .modaal-container {
    max-width: 94vw;
    max-height: 98vh;
    border-radius: 1.2vw;
  }

  .case_modal_contents.case_2 .case_modal_contents_top {
    height: 47vw;
  }

  .case_modal_contents.case_3 .case_modal_contents_top {
    height: 54vw;
  }

  .case_modal_contents_top {
    border-radius: 1.2vw 1.2vw 0 0;
    height: 33vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap {
    width: 86vw;
    padding-top: 4vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_img {
    width: 38vw;
    padding-right: 2vw;
    padding-bottom: 1vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box_tit {
    font-size: 2.8vw;
    line-height: 4.2vw;
    border-bottom: 0.1vw solid #fff;
    padding-bottom: 1vw;
    margin-bottom: 1.5vw;
    letter-spacing: 0.02em;
    width: 47vw;
    margin-left: 38vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box_txt {
    font-size: 1.8vw;
    line-height: 3vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box {
    width: 51vw;
  }

  .case_modal_contents_bottom {
    padding: 4vw;
  }

  .case_modal_contents_bottom .case_modal_contents_bottom_wrap .case_modal_contents_bottom_tit {
    font-size: 2.8vw;
    margin-bottom: 3vw;
  }

  .case_modal_contents_bottom .case_modal_contents_bottom_wrap .case_modal_contents_bottom_txt {
    font-size: 1.8vw;
    line-height: 3vw;
    margin-bottom: 3vw;
  }

  .modaal-close {
    right: -1.5vw;
    top: -2.3vw;
    width: 5vw;
    height: 5vw;
  }

  .modaal-close:before, .modaal-close:after {
    top: 1.4vw;
    left: 2.3vw;
    width: 0.4vw;
    height: 2.2vw;
    border-radius: 5vw;
  }

  /*./case*/
  /* ========================================
    flow
  ======================================== */
  .flow {
    background-size: 200vw 110.3vw;
    height: 110.3vw;
  }

  .flow h2 {
    padding-top: 7.8vw;
    margin-bottom: 8.5vw;
  }

  .flow .flow_list {
    width: 92vw;
  }

  .flow .flow_list li {
    width: 28vw;
    height: 34.2vw;
    border-radius: 1.2vw;
    padding: 14.4vw 2.8vw 0;
    border: 0.2vw solid #1074C4;
    margin-bottom: 3.8vw;
  }

  .flow .flow_list li::after {
    width: 10.2vw;
    height: 11.8vw;
    top: 1.8vw;
  }

  .flow .flow_list li::before {
    width: 5vw;
    height: 5vw;
    font-size: 3.4vw;
    left: -1.2vw;
    top: -1.2vw;
    border-radius: 5vw;
  }

  .flow .flow_list li .flow_list_tit {
    font-size: 2.6vw;
    margin-bottom: 1.6vw;
  }

  .flow .flow_list li .flow_list_txt {
    font-size: 1.8vw;
    line-height: 3vw;
  }

  .flow .flow_txt_box {
    width: 92vw;
    border-radius: 6vw;
    padding-top: 0.4vw;
    padding-left: 8.1vw;
  }

  .flow .flow_txt_box .flow_txt {
    font-size: 2vw;
    line-height: 6vw;
  }

  .flow .flow_txt_box .flow_txt::after {
    width: 6.2vw;
    height: 6.2vw;
    left: 5.2vw;
    top: -1.71vw;
  }

  .flow .flow_txt_box .flow_txt span {
    line-height: 6vw;
    font-size: 2vw;
  }

  /*./flow*/
  /* ========================================
    alignment
  ======================================== */
  .alignment {
    background-size: 200vw 109.2vw;
    height: 109.2vw;
  }

  .alignment .inner {
    padding: 18.1vw 4vw 0;
  }

  .alignment .alignment_hukidashi {
    width: 55vw;
    line-height: 4vw;
    font-size: 2.6vw;
    border-radius: 4vw;
    margin: 0 auto 3vw;
  }

  .alignment .alignment_hukidashi::after {
    width: 2.1vw;
    height: 1.7vw;
    bottom: -1.5vw;
  }

  .alignment .alignment_hukidashi sup {
    line-height: 4.4vw;
    font-size: 1.4vw;
  }

  .alignment h2 {
    font-size: 4.2vw;
    margin-bottom: 5vw;
  }

  .alignment h2 span:first-of-type {
    font-size: 3.4vw;
  }

  .alignment h2 span:last-of-type {
    font-size: 4.2vw;
  }

  .alignment h2 img {
    width: 33vw;
  }

  .alignment .alignment_list {
    margin-bottom: 3.5vw;
  }

  .alignment .alignment_list li {
    width: 16.8vw;
    height: 37vw;
    margin-right: 2vw;
    border-radius: 1.2vw;
    padding: 15.9vw 2vw 0;
  }

  .alignment .alignment_list li::after {
    width: 9.2vw;
    height: 10vw;
    top: 3.4vw;
  }

  .alignment .alignment_list li .alignment_list_tit {
    font-size: 2vw;
    line-height: 3vw;
    margin-bottom: 1vw;
  }

  .alignment .alignment_list li .alignment_list_txt {
    font-size: 1.6vw;
    line-height: 2.8vw;
  }

  .alignment .alignment_txt {
    font-size: 1.8vw;
    line-height: 3.6vw;
    margin-bottom: 3vw;
  }

  .alignment .alignment_txt span {
    font-size: 1.8vw;
    line-height: 3.6vw;
  }

  .alignment .alignment_annotation {
    font-size: 1.4vw;
  }

  /*./alignment*/
  /* ========================================
    inquiry
  ======================================== */
  .inquiry {
    padding-bottom: 5.7vw;
  }

  .inquiry h2 {
    padding-top: 7.5vw;
    margin-bottom: 6.6vw;
  }

  .inquiry_list {
    width: 94vw;
    margin: 0 auto;
  }

  .inquiry_list li {
    margin-bottom: 3vw;
  }

  .inquiry_list li dl dt {
    font-size: 1.8vw;
    line-height: 6vw;
    height: 6vw;
    border-radius: 1vw;
    padding-left: 8vw;
  }

  .inquiry_list li dl dt.close {
    border-radius: 1vw 1vw 0 0;
  }

  .inquiry_list li dl dt::after {
    width: 2.1vw;
    height: 2.3vw;
    left: 4vw;
  }

  .inquiry_list li dl dt::before {
    width: 2vw;
    height: 2vw;
    right: 4vw;
    font-size: 3vw;
  }

  .inquiry_list li dl dd {
    font-size: 1.8vw;
    line-height: 3.6vw;
    border-radius: 0 0 1vw 1vw;
    padding-left: 8vw;
    padding-right: 6.8vw;
    padding-top: 2vw;
    padding-bottom: 3vw;
  }

  .inquiry_list li dl dd::after {
    width: 2.1vw;
    height: 2.3vw;
    left: 4vw;
    top: 2.4vw;
  }

  /*./inquiry*/
  /* ========================================
    form
  ======================================== */

  .form{
    padding-bottom: 50px;
  }
  .form h2 {
    padding-top: 12.8vw;
    margin-bottom: 6vw;
  }

  /*./form*/
  /* ========================================
    company
  ======================================== */
  .company {
    background-size: 200vw 36.3vw;
    border-top: 0.4vw solid #1074C4;
    padding-left: 2vw;
  }

  .company h2 {
    padding-top: 5vw;
    width: 20vw;
    margin-bottom: 1.5vw;
  }

  .company .company_tit {
    font-size: 1.8vw;
    margin-bottom: 4vw;
  }

  .company .company_list {
    width: 73vw;
    padding-bottom: 2.2vw;
  }

  .company .company_list li {
    width: 36vw;
    margin-bottom: 2.5vw;
  }

  .company .company_list li .company_list_tit {
    font-size: 1.4vw;
    line-height: 2.2vw;
  }

  .company .company_list li .company_list_txt {
    font-size: 1.4vw;
    line-height: 2.2vw;
  }

  /*./company*/
  /* ========================================
    フッター
  ======================================== */
  .footer .footer_copylight {
    font-size: 1.2vw;
    line-height: 4vw;
  }

  /*./footer*/
}

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

スマホ767px以下

============================================= */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  body * {
    font-size: 2.13vw;
  }

  .inner {
    width: 100vw;
    overflow: hidden;
  }

  .common_tit {
    font-size: 6.4vw;
    letter-spacing: 0.12em;
    position: relative;
    padding-top: 9.33vw;
    margin-bottom: 8vw;
  }

  .common_tit::after {
    width: 6.67vw;
    height: 0.27vw;
    bottom: -4vw;
  }

  .btn_wrap {
    display: block;
    width: 72vw;
    margin: 0 auto;
  }

  .btn_wrap .dl_btn {
    margin-bottom: 6.67vw;
  }

  .btn_wrap .dl_btn a {
    width: 72vw;
    height: 21.33vw;
    border: 0.27vw solid #1074C4;
    border-radius: 1.07vw;
    font-size: 3.47vw;
    line-height: 5.87vw;
    padding-right: 0.4vw;
    padding-top: 4.8vw;
  }

  .btn_wrap .dl_btn a::after {
    width: 2.13vw;
    height: 3.73vw;
    right: 2.4vw;
  }

  .btn_wrap .dl_btn a span {
    font-size: 4.53vw;
    line-height: 5.87vw;
    padding-left: 2.67vw;
  }

  .btn_wrap .dl_btn a span::after {
    width: 3.2vw;
    height: 3.87vw;
    left: -1.34vw;
  }

  .btn_wrap .trial_btn a {
    width: 72vw;
    height: 21.33vw;
    border-radius: 1.07vw;
    font-size: 3.47vw;
    line-height: 5.87vw;
    padding-top: 5.33vw;
    padding-right: 0.53vw;
  }

  .btn_wrap .trial_btn a::after {
    width: 2.13vw;
    height: 3.73vw;
    right: 2.4vw;
  }

  .btn_wrap .trial_btn a::before {
    width: 10.13vw;
    height: 10.13vw;
    border-radius: 10.13vw;
    right: 2vw;
    top: -4.67vw;
    font-size: 3.47vw;
  }

  .btn_wrap .trial_btn a span {
    font-size: 4.53vw;
    line-height: 5.87vw;
  }

  /* ========================================
    header
  ======================================== */
  header {
    z-index: 100;
  }

  header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10.67vw;
    overflow: hidden;
  }

  header .header_logo {
    width: 33.47vw;
  }

  header .header_nav {
    width: 100.53vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .header_nav.pc {
    display: none;
  }

  header .header_nav .header_list {
    display: flex;
  }

  header .header_nav .header_list li a {
    font-size: 2.13vw;
  }

  header .header_nav .header_list li+li {
    margin-left: 4vw;
  }

  header .header_nav .header_nav_dl {
    width: 25.33vw;
  }

  header .header_nav_dl a {
    width: 56vw;
    height: 12.8vw;
    background-color: #fff;
    border: 0.27vw solid #1074C4;
    box-sizing: border-box;
    border-radius: 6.4vw;
    text-align: center;
  }

  header .header_nav_dl a span {
    font-weight: bold;
    line-height: 12.8vw;
    font-size: 4vw;
    color: #1074C4;
    display: inline-block;
    position: relative;
    padding-left: 3.47vw;
  }

  header .header_nav_dl a span::after {
    content: "";
    display: block;
    width: 4.13vw;
    height: 5.33vw;
    background: url("../img/dl_btn_icon.png") no-repeat center/100%;
    position: absolute;
    left: -2.27vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  header .header_nav_tel {
    display: none;
  }

  /*header*/
  /*============================================*/
  /*           ハンバーガーメニュー                 */
  /*============================================*/
  /*チェックボックス非表示に*/
  .nav-unshown {
    display: none;
  }

  /*ハンバーガーアイコンの場所*/
  #nav-open {
    display: inline-block;
    width: 7.07vw;
    height: 5.73vw;
    vertical-align: middle;
  }

  /*黒い背景*/
  #nav-close {
    /*最初は非表示*/
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0vw;
    right: 0vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .3s ease-in-out;
  }

  #nav-close_icon {
    overflow: auto;
    position: fixed;
    background: url(../img/menu_close.png);
    background-size: cover;
    width: 6vw;
    height: 6vw;
    z-index: 9999;
    top: 2.67vw;
    right: 3.33vw;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(26.67vw);
    transform: translateX(26.67vw);
    z-index: 2000;
  }

  /*ハンバーガーメニュー*/
  #nav-content {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0vw;
    z-index: 1500;
    width: 72.67vw;
    height: 100vh;
    background: #FFF;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }

  #nav-input:checked~#nav-close {
    display: block;
    opacity: .5;
  }

  #nav-input:checked~#nav-close_icon {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  #nav-input:checked~#nav-content {
    -webkit-transform: translateX(1%);
    transform: translateX(1%);
  }

  .header_list {
    padding-top: 20vw;
    margin-bottom: 7.47vw;
  }

  .header_list li a {
    font-size: 3.73vw;
    display: block;
    width: 56vw;
    height: 10.67vw;
    line-height: 10.67vw;
    margin-left: auto;
    margin-right: 8vw;
    border-bottom: 0.13vw dotted #CCCCCC;
    position: relative;
  }

  .header_list li a::after {
    content: "";
    display: block;
    width: 1.6vw;
    height: 2.53vw;
    background: url("../img/menu_arrow.png") no-repeat center/100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .header_nav_dl {
    width: 56vw;
    margin: 0 auto;
  }

  /* ========================================
    fv
  ======================================== */
  .fv {
    height: 172.4vw;
  }

  .fv .fv_contents {
    background: url("../img/fv_bg_sp.png") no-repeat center 0;
    background-size: 100vw 172.4vw;
    height: 172.4vw;
  }

  .fv .fv_contents .inner {
    padding-left: 4vw;
  }

  .fv .fv_contents .fv_no1 {
    width: 92vw;
    padding-top: 18.93vw;
    margin-bottom: 1.87vw;
  }

  .fv .fv_contents .fv_unnecessary {
    width: 78.13vw;
    margin-bottom: 2.67vw;
  }

  .fv .fv_contents h1 {
    font-size: 7.47vw;
    line-height: 9.6vw;
    margin-bottom: 4vw;
  }

  .fv .fv_contents h1 span {
    font-size: 7.47vw;
    line-height: 9.6vw;
  }

  .fv .fv_contents .fv_txt {
    font-size: 3.47vw;
    line-height: 6.13vw;
    margin-bottom: 33.33vw;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-shadow: 0.67vw 0.67vw 0.67vw #fff, -0.67vw -0.67vw 0.67vw #fff, -0.67vw 0.67vw 0.67vw #fff, 0.67vw -0.67vw 0.67vw #fff, 0.67vw 0px 0.67vw #fff, -0.67vw 0px 0.67vw #fff, 0px 0.67vw 0.67vw #fff, 0px -1.34vw 0.67vw #fff;
  }

  .fv .fv_contents .fv_btn_wrap {
    width: 92vw;
    margin-bottom: 4vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a {
    width: 44vw;
    height: 16vw;
    border: 0.27vw solid #1074C4;
    border-radius: 1.07vw;
    font-size: 2.67vw;
    line-height: 5.33vw;
    padding-right: 1.6vw;
    padding-top: 2.67vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a::after {
    width: 1.2vw;
    height: 2.13vw;
    right: 1.6vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a span {
    font-size: 3.47vw;
    line-height: 5.33vw;
    padding-left: 3.6vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_dl_btn a span::after {
    width: 2.53vw;
    height: 3.2vw;
    left: 0.53vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a {
    width: 44vw;
    height: 16vw;
    border-radius: 1.07vw;
    font-size: 2.67vw;
    line-height: 5.33vw;
    padding-top: 3.2vw;
    padding-right: 2vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a::after {
    width: 1.2vw;
    height: 2.13vw;
    right: 2vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a::before {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 9.6vw;
    right: 1.07vw;
    top: -4.54vw;
    font-size: 3.2vw;
  }

  .fv .fv_contents .fv_btn_wrap .fv_trial_btn a span {
    font-size: 3.2vw;
    line-height: 5.33vw;
  }

  .fv .fv_contents .fv_annotation {
    font-size: 2.93vw;
    line-height: 4.53vw;
    padding-left: 1em;
    text-indent: -1em;
  }

  /*./fv*/
  /* ========================================
    price_list
  ======================================== */
  .price_list {
    background: url("../img/price_list_bg_sp.png") no-repeat center 0;
    background-size: 100vw 225.33vw;
    height: 225.33vw;
    margin-top: -14.4vw;
  }

  .price_list h2 {
    padding-top: 126.13vw;
    font-size: 6.4vw;
    margin-bottom: 5.33vw;
    margin-left: 4vw;
  }

  .price_list .price_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    margin: 0 auto 6vw;
    width: 92vw;
  }

  .price_list .price_list_btn {
    width: 72vw;
    margin: 0 auto;
  }

  .price_list .price_list_btn a {
    margin: 0 auto;
    width: 72vw;
    height: 21.33vw;
    border-radius: 1.07vw;
    padding-right: 0.53vw;
  }

  .price_list .price_list_btn a::after {
    width: 2vw;
    height: 3.87vw;
    right: 2.67vw;
  }

  .price_list .price_list_btn a span {
    font-size: 4.53vw;
    line-height: 21.33vw;
    padding-left: 2.67vw;
  }

  .price_list .price_list_btn a span::after {
    width: 3.2vw;
    height: 3.87vw;
    left: -1.34vw;
  }
  /*./price_list*/
  /* ========================================
    problem
  ======================================== */
  .problem {
    background: url("../img/problem_bg_sp.png") no-repeat center bottom;
    background-size: 100vw 270.93vw;
    height: 270.93vw;
    padding-top: 18vw;
    margin-top: -7.07vw;
  }

  .problem .problem_txt {
    font-size: 3.73vw;
    width: 61.07vw;
    margin: 0 auto 4vw;
    padding-top: 0.67vw;
    white-space: nowrap;
  }

  .problem .problem_txt::after, .problem .problem_txt::before {
    width: 2.4vw;
    height: 4.13vw;
    left: -4.54vw;
  }

  .problem .problem_txt::before {
    left: auto;
    right: -4.54vw;
  }

  .problem h2 {
    font-size: 6.4vw;
    line-height: 9.07vw;
    margin-bottom: 10.67vw;
  }

  .problem h2 span {
    font-size: 6.4vw;
    line-height: 9.07vw;
  }

  .problem .problem_list {
    width: 90.8vw;
    margin: 0 auto 50vw;
    height: 134.67vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .problem .problem_list::after {
    width: 76vw;
    height: 61.47vw;
    bottom: -49.34vw;
  }

  .problem .problem_list li {
    position: static;
    width: 42.67vw;
    height: 61.33vw;
    border-radius: 1.6vw;
    padding: 8vw 4vw 0;
    left: auto;
    top: auto;
    position: relative;
  }

  .problem .problem_list li::after {
    width: 8vw;
    height: 8.13vw;
    left: -1.74vw;
    top: -1.74vw;
  }

  .problem .problem_list li .problem_list_tit {
    font-size: 4.8vw;
    line-height: 6.67vw;
    margin-bottom: 2.13vw;
  }

  .problem .problem_list li .problem_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  .problem .problem_list li:nth-of-type(2) {
    left: auto;
    top: auto;
  }

  .problem .problem_list li:nth-of-type(3) {
    left: auto;
    top: auto;
  }

  .problem .problem_list li:nth-of-type(4) {
    left: auto;
    top: auto;
  }

  /*./problem*/
  /* ========================================
    theme
  ======================================== */
  .theme .theme_hukidashi {
    width: 28vw;
    line-height: 8vw;
    font-size: 4.53vw;
    border-radius: 8vw;
    margin: 12vw auto 0vw;
    padding-top: 0vw;
  }

  .theme .theme_hukidashi::after {
    width: 2.8vw;
    height: 2.27vw;
    bottom: -2vw;
  }

  .theme h2 {
    width: 90vw;
    margin: 0 auto 4vw;
  }

  .theme .theme_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    margin-bottom: 22.67vw;
  }

  .theme .theme_txt span {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  .theme .theme_txt::after {
    width: 10.67vw;
    height: 8.27vw;
    bottom: -14.01vw;
  }

  .theme .theme_price {
    background: url("../img/theme_price_bg_sp.jpg") no-repeat center 0;
    background-size: 100vw 168vw;
    height: 168vw;
  }

  .theme .theme_price .theme_price_tit {
    margin: 0 auto 4vw;
    font-size: 5.33vw;
    line-height: 7.47vw;
    padding-top: 59.47vw;
    text-align: center;
  }

  .theme .theme_price .theme_price_tit span {
    font-size: 5.33vw;
    line-height: 7.47vw;
  }

  .theme .theme_price .theme_price_img {
    margin: 0 auto 10.67vw;
    width: 67.2vw;
  }

  /*./theme*/
  /* ========================================
    feature
  ======================================== */
  .feature {
    background: url("../img/feature_bg_sp.jpg") no-repeat center 0;
    background-size: 100vw 891.87vw;
    height: 891.87vw;
  }

  .feature h2 {
    padding-top: 14.4vw;
    margin-bottom: 14vw;
  }

  .feature .feature_point_list {
    display: block;
    width: 90.67vw;
    margin: 0 auto 21.87vw;
  }

  .feature .feature_point_list li {
    width: 90.67vw;
    height: 30.67vw;
    border-radius: 1.6vw;
    padding: 5.33vw 0 0;
    margin-bottom: 4.8vw;
    -webkit-filter: drop-shadow(0px 0px 0.8vw rgba(0, 0, 0, 0.15));
    -moz-filter: drop-shadow(0px 0px 0.8vw rgba(0, 0, 0, 0.15));
    -ms-filter: drop-shadow(0px 0px 0.8vw rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 0px 0.8vw rgba(0, 0, 0, 0.15));
  }

  .feature .feature_point_list li::after {
    width: 26vw;
    height: 8.67vw;
    left: -1.07vw;
    top: 3.73vw;
  }

  .feature .feature_point_list li .featurelist_tit {
    font-size: 4.8vw;
    margin-bottom: 2.67vw;
  }

  .feature .feature_point_list li .feature_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  .feature .feature_list li {
    height: 125.33vw;
    margin-bottom: 15.2vw;
  }

  .feature .feature_list li .featurelist_tit {
    font-size: 6.4vw;
    line-height: 10.13vw;
    padding-top: 51.6vw;
    margin-bottom: 3.47vw;
  }

  .feature .feature_list li .feature_list_txt {
    font-size: 3.33vw;
    line-height: 6.67vw;
    width: 54.67vw;
  }

  .feature .feature_list li:nth-of-type(1) {
    margin-left: 23.33vw;
  }

  .feature .feature_list li:nth-of-type(2) {
    height: 160vw;
    margin-left: 17.73vw;
  }

  .feature .feature_list li:nth-of-type(2) .featurelist_tit {
    padding-top: 61.73vw;
  }

  .feature .feature_list li:nth-of-type(3) {
    height: 128.13vw;
    margin-left: 23.33vw;
  }

  .feature .feature_list li:nth-of-type(3) .featurelist_tit {
    padding-top: 61.73vw;
  }

  .feature .feature_list li:nth-of-type(4) {
    height: 161.73vw;
    margin-bottom: 16vw;
    margin-left: 17.73vw;
  }

  .feature .feature_list li:nth-of-type(4) .featurelist_tit {
    padding-top: 61.6vw;
  }

  /*./feature*/
  /* ========================================
    function
  ======================================== */
  .function {
/*    background: url("../img/function_bg_sp.jpg") no-repeat center 0; */
    background: url("../img/function_bg_sp_01.jpg") no-repeat center 0;
    background-size: 100vw 293.73vw;
    height: 293.73vw;
  }

  .function h2 {
    padding-top: 32vw;
    margin-bottom: 12.67vw;
  }

  .function .function_list {
    display: block;
    width: 92vw;
    margin: 0 auto 6vw;
  }

  .function .function_list li {
    width: 92vw;
    height: 36vw;
    border-radius: 1.6vw;
    padding: 7.2vw 0 0 29.6vw;
    margin-bottom: 5.33vw;
  }

  .function .function_list li::after {
    width: 16.8vw;
    height: 18.67vw;
    left: 6.67vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .function .function_list li .function_list_tit {
    font-size: 6.13vw;
    line-height: 1;
    margin-bottom: 3.47vw;
    min-height: 0;
    white-space: nowrap;
    text-align: left;
  }

  .function .function_list li .function_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    padding-left: 0vw;
    padding-right: 6.67vw;
  }

  .function .function_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    text-align: left;
    padding-left: 14.67vw;
  }

  .function .function_txt span {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  /*./function*/
  /* ========================================
    price
  ======================================== */
  .price {
    margin-bottom: 16vw;
  }

  .price h2 {
    padding-top: 16vw;
    margin-bottom: 13.33vw;
  }

  .price .price_hukidashi {
    width: 92vw;
    height: 25.33vw;
    font-size: 3.73vw;
    line-height: 6.13vw;
    border-radius: 1.6vw;
    margin: 0 auto 5.07vw;
    padding-top: 3.73vw;
  }

  .price .price_hukidashi::after {
    width: 6vw;
    height: 3.6vw;
    left: 36.8vw;
    bottom: -2.8vw;
  }

  .price .price_hukidashi span {
    font-size: 3.73vw;
    line-height: 6.13vw;
  }

  .price .price_hukidashi sup {
    font-size: 2.93vw;
    line-height: 6.13vw;
    vertical-align: 0vw;
  }

  .price .price_table {
    background: url("../img/price_table_bg_sp.png") no-repeat center 0;
    background-size: 92vw 41.33vw;
    width: 92vw;
    height: 41.33vw;
    margin: 0 auto 6.67vw;
  }

  .price .price_table table tr th {
    height: 12.67vw;
    padding-bottom: 2.13vw;
    font-size: 3.47vw;
  }

  .price .price_table table tr th img {
    width: 22.13vw;
  }

  .price .price_table table tr td {
    height: 13.33vw;
    font-size: 3.47vw;
  }

  .price .price_table table tr td sup {
    vertical-align: -2px;
    font-size: 2.93vw;
  }

  .price .price_table table tr td:nth-of-type(1) {
    width: 18.13vw;
  }

  .price .price_table table tr td:nth-of-type(2) {
    width: 26.67vw;
    font-size: 4.27vw;
  }

  .price .price_table table tr td:nth-of-type(3) {
    width: 23.73vw;
  }

  .price .price_table table tr td:nth-of-type(4) {
    width: 23.73vw;
  }

  .price .price_table table tr:nth-of-type(3) td {
    height: 13.33vw;
  }

  .price .price_txt {
    font-size: 2.93vw;
    line-height: 4.53vw;
    width: 69.33vw;
    margin: 0 auto 12vw;
  }

  /*./price*/
  /* ========================================
    case
  ======================================== */
  .case {
    background: url("../img/case_bg_sp.jpg") no-repeat center 0;
    background-size: 100vw 454.13vw;
    height: 335vw;
  }

  .case h2 {
    padding-top: 23.47vw;
    margin-bottom: 12vw;
  }

  .case .case_list {
    display: block;
    width: 92vw;
  }

  .case .case_list li {
    width: 92vw;
    height: 133.33vw;
    border-radius: 2.67vw;
    padding: 6.67vw;
    box-sizing: border-box;
    margin-bottom: 8vw;
  }

  .case .case_list li .case_img {
    width: 78.67vw;
    margin: 0 auto 5.33vw;
  }

  .case .case_list li .case_list_tit {
    font-size: 6.4vw;
    line-height: 9.87vw;
    margin-bottom: 6.67vw;
    min-height: 0;
    padding-left: 2.67vw;
  }

  .case .case_list li .case_list_business {
    width: 37.33vw;
    line-height: 7.2vw;
    font-size: 3.73vw;
    border-radius: 7.2vw;
    margin-bottom: 3.73vw;
    margin-left: 2.67vw;
  }

  .case .case_list li .case_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    font-weight: 500;
    padding-left: 2.67vw;
  }

  .case .case_list li:nth-of-type(1) {
    height: 141.33vw;
  }

  .modaal-inner-wrapper {
    width: 92vw;
    height: 100%;
    padding: 0;
  }

  .modaal-container {
    max-width: 92vw;
    max-height: 94vh;
    border-radius: 2.67vw;
    margin: 0 auto;
  }

  .modaal-inner-wrapper {
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .case_modal_contents {
    overflow-y: scroll;
    height: 90vh;
  }

  .case_modal_contents.case_2 .case_modal_contents_top {
    height: 97.33vw;
  }

  .case_modal_contents.case_3 .case_modal_contents_top {
    height: 92vw;
  }

  .case_modal_contents_top {
    border-radius: 1.6vw 1.6vw 0 0;
    height: 117.33vw;
    overflow-y: scroll;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap {
    width: 92vw;
    padding-top: 5.33vw;
    margin: 0 auto;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_img {
    width: 74.67vw;
    float: none;
    padding-right: 0vw;
    padding-bottom: 0vw;
    margin: 0 auto 5.33vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box_tit {
    font-size: 4.27vw;
    line-height: 6.93vw;
    border-bottom: 0.13vw solid #fff;
    padding-bottom: 2.67vw;
    width: 74.67vw;
    margin: 0 auto 4vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box_txt {
    font-size: 3.33vw;
    line-height: 6.67vw;
    width: 74.67vw;
    margin: 0 auto 6.67vw;
  }

  .case_modal_contents_top .case_modal_contents_top_wrap .case_modal_contents_top_txt_box {
    width: 74.67vw;
  }

  .case_modal_contents_bottom {
    float: none;
    padding: 5.33vw;
    box-sizing: border-box;
  }

  .case_modal_contents_bottom .case_modal_contents_bottom_wrap {
    max-height: 50vh;
    overflow-y: scroll;
  }

  .case_modal_contents_bottom .case_modal_contents_bottom_wrap .case_modal_contents_bottom_tit {
    font-size: 4.27vw;
    line-height: 6.4vw;
    margin-bottom: 3.2vw;
  }

  .case_modal_contents_bottom .case_modal_contents_bottom_wrap .case_modal_contents_bottom_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    margin-bottom: 4vw;
  }

  .modaal-close {
    right: 0vw;
    top: -9.34vw;
    width: 8vw;
    height: 8vw;
  }

  .modaal-close:before, .modaal-close:after {
    top: 2.13vw;
    left: 3.47vw;
    width: 0.8vw;
    height: 4.4vw;
    border-radius: 8vw;
  }

  /*./case*/
  /* ========================================
    flow
  ======================================== */
  .flow {
    background: url("../img/flow_bg_sp.jpg") no-repeat center 0;
    background-size: 100vw 380vw;
    height: 380vw;
  }

  .flow h2 {
    padding-top: 16.27vw;
    margin-bottom: 9.33vw;
  }

  .flow .flow_list {
    display: block;
    width: 92vw;
    margin: 0 auto 13.33vw;
  }

  .flow .flow_list li {
    width: 92vw;
    height: 50.67vw;
    border-radius: 1.6vw;
    padding: 8vw 0 0 29.87vw;
    border: 0.27vw solid #1074C4;
    margin-bottom: 6.67vw;
    box-sizing: border-box;
  }

  .flow .flow_list li::after {
    width: 21.33vw;
    height: 19.2vw;
    left: 4.53vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .flow .flow_list li::before {
    width: 8vw;
    height: 8vw;
    font-size: 5.47vw;
    left: -1.6vw;
    top: -1.6vw;
    border-radius: 8vw;
  }

  .flow .flow_list li .flow_list_tit {
    font-size: 6.13vw;
    margin-bottom: 2.67vw;
    text-align: left;
  }

  .flow .flow_list li .flow_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    padding-right: 6.4vw;
  }

  .flow .flow_list li:nth-of-type(2) {
    height: 36vw;
  }

  .flow .flow_list li:nth-of-type(3) {
    height: 44vw;
  }

  .flow .flow_list li:nth-of-type(4) {
    height: 36vw;
  }

  .flow .flow_list li:nth-of-type(5) {
    height: 44vw;
  }

  .flow .flow_txt_box {
    width: 92vw;
    height: 24vw;
    border-radius: 12vw;
    padding-top: 2.67vw;
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .flow .flow_txt_box .flow_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  .flow .flow_txt_box .flow_txt::after {
    width: 13.33vw;
    height: 13.33vw;
    left: 50%;
    transform: translate(-50%, 0%);
    top: -14.67vw;
  }

  .flow .flow_txt_box .flow_txt span {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  /*./flow*/
  /* ========================================
    alignment
  ======================================== */
  .alignment {
    background: url("../img/alignment_bg_sp.jpg") no-repeat center center;
    background-size: 100vw 394.13vw;
    height: 394.13vw;
  }

  .alignment .inner {
    padding: 26.27vw 4vw 0;
    box-sizing: border-box;
  }

  .alignment .alignment_hukidashi {
    width: 92vw;
    line-height: 8vw;
    font-size: 4vw;
    border-radius: 8vw;
    margin: 0 auto 4.53vw;
  }

  .alignment .alignment_hukidashi::after {
    width: 5.87vw;
    height: 2.93vw;
    bottom: -2vw;
  }

  .alignment .alignment_hukidashi sup {
    line-height: 4vw;
    font-size: 2.93vw;
  }

  .alignment h2 {
    font-size: 6.4vw;
    line-height: 10.67vw;
    margin-bottom: 8vw;
  }

  .alignment h2 span:first-of-type {
    font-size: 5.33vw;
    line-height: 10.67vw;
  }

  .alignment h2 span:last-of-type {
    font-size: 6.4vw;
    line-height: 10.67vw;
  }

  .alignment h2 img {
    width: 53.33vw;
    padding-bottom: 1.87vw;
  }

  .alignment .alignment_list {
    display: block;
    margin-bottom: 14vw;
  }

  .alignment .alignment_list li {
    width: 92vw;
    height: 36vw;
    margin-right: 0;
    margin-bottom: 5.33vw;
    border-radius: 1.6vw;
    padding: 8vw 0 0 29.07vw;
  }

  .alignment .alignment_list li::after {
    width: 18.67vw;
    height: 19.2vw;
    left: 5.6vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .alignment .alignment_list li .alignment_list_tit {
    font-size: 6vw;
    line-height: 1;
    margin-bottom: 3.47vw;
    min-height: auto;
    text-align: left;
  }

  .alignment .alignment_list li .alignment_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
    padding-right: 6.4vw;
  }

  .alignment .alignment_txt {
    font-size: 3.73vw;
    line-height: 7.73vw;
    margin-bottom: 5.87vw;
  }

  .alignment .alignment_txt span {
    font-size: 3.73vw;
    line-height: 7.73vw;
  }

  .alignment .alignment_annotation {
    font-size: 2.93vw;
  }

  /*./alignment*/
  /* ========================================
    inquiry
  ======================================== */
  .inquiry {
    padding-bottom: 14.67vw;
  }

  .inquiry h2 {
    padding-top: 16vw;
    margin-bottom: 12vw;
  }

  .inquiry_list {
    width: 92vw;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .inquiry_list li {
    margin-bottom: 5.33vw;
  }

  .inquiry_list li dl dt {
    font-size: 3.33vw;
    line-height: 6.67vw;
    height: auto;
    border-radius: 2.67vw;
    padding-top: 2.13vw;
    padding-bottom: 2.13vw;
    padding-left: 11.2vw;
    padding-right: 16vw;
  }

  .inquiry_list li dl dt.close {
    border-radius: 2.67vw 2.67vw 0 0;
  }

  .inquiry_list li dl dt::after {
    width: 4vw;
    height: 4.4vw;
    left: 4vw;
  }

  .inquiry_list li dl dt::before {
    width: 5.33vw;
    height: 5.33vw;
    right: 5.33vw;
    font-size: 4vw;
  }

  .inquiry_list li dl dd {
    font-size: 3.73vw;
    line-height: 6.67vw;
    border-radius: 0 0 2.67vw 2.67vw;
    padding-left: 11.2vw;
    padding-right: 4vw;
    padding-top: 5.33vw;
    padding-bottom: 5.33vw;
  }

  .inquiry_list li dl dd::after {
    width: 4vw;
    height: 4.4vw;
    left: 4vw;
    top: 5.87vw;
  }

  /*./inquiry*/
  /* ========================================
    form
  ======================================== */
  .form h2 {
    padding-top: 17.07vw;
    margin-bottom: 8vw;
  }

  .form_wrap {
    padding: 0 10px;
  }

  /*./form*/
  /* ========================================
    company
  ======================================== */
  .company {
    background: url("../img/company_bg_sp.jpg") no-repeat center bottom;
    background-size: 100vw 56vw;
    border-top: 0.8vw solid #1074C4;
    overflow: hidden;
  }

  .company .inner {
    padding: 0 4vw 56vw;
  }

  .company h2 {
    padding-top: 9.87vw;
    width: 40.27vw;
    margin-bottom: 2.67vw;
  }

  .company .company_tit {
    font-size: 3.73vw;
    margin-bottom: 8vw;
  }

  .company .company_list {
    display: block;
    width: 100%;
    padding-bottom: 0vw;
  }

  .company .company_list li {
    width: 100%;
    margin-bottom: 6.67vw;
  }

  .company .company_list li .company_list_tit {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  .company .company_list li .company_list_txt {
    font-size: 3.73vw;
    line-height: 6.67vw;
  }

  /*./company*/
  /* ========================================
    フッター
  ======================================== */
  .footer {
    margin-bottom: 20.8vw;
  }

  .footer .footer_copylight {
    font-size: 2.93vw;
    line-height: 10.67vw;
  }

  /*./footer*/
  /* =================================
    fixed
  ================================== */
  .fixed {
    position: fixed;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42vw;
    /* height: 16.8vw; */
    background: #fff;
    -webkit-filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
    -moz-filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
    -ms-filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
  }

  .fixed-flex {
    display: flex;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 16.8vw; */
    background: #fff;
    /* -webkit-filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
    -moz-filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
    -ms-filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0px -0.54vw 0.8vw rgba(0, 0, 0, 0.3)); */
  }

  .fixed-tel-btn {
    margin: 16px 40px 16px 40px;
  }

  .fixed .fixed_btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 93.33vw;
    margin: 0 auto;
  }

  .fixed .fixed_btn_wrap .fixed_dl_btn a {
    width: 45.33vw;
    height: 12vw;
    background-color: #fff;
    border: 0.27vw solid #1074C4;
    box-sizing: border-box;
    border-radius: 1.07vw;
    text-align: center;
    font-size: 3.2vw;
    line-height: 12vw;
    color: #1074C4;
    font-weight: bold;
    padding-right: 0.4vw;
    position: relative;
  }

  .fixed .fixed_btn_wrap .fixed_dl_btn a::after {
    content: "";
    display: block;
    width: 1.87vw;
    height: 2.93vw;
    background: url("../img/dl_btn_arrow.png") no-repeat center/100%;
    position: absolute;
    right: 1.87vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .fixed .fixed_btn_wrap .fixed_dl_btn a span {
    font-weight: bold;
    font-size: 3.2vw;
    line-height: 12vw;
    color: #1074C4;
    display: inline-block;
    position: relative;
    padding-left: 2.67vw;
  }

  .fixed .fixed_btn_wrap .fixed_dl_btn a span::after {
    content: "";
    display: block;
    width: 2.67vw;
    height: 3.33vw;
    background: url("../img/dl_btn_icon.png") no-repeat center/100%;
    position: absolute;
    left: -1.34vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .fixed .fixed_btn_wrap .fixed_trial_btn a {
    width: 45.33vw;
    height: 12vw;
    background: -moz-linear-gradient(top, #31A1E6, #1074C4);
    background: -webkit-linear-gradient(top, #31A1E6, #1074C4);
    background: linear-gradient(to bottom, #31A1E6, #1074C4);
    box-sizing: border-box;
    border-radius: 1.07vw;
    text-align: center;
    font-size: 2.13vw;
    line-height: 3.73vw;
    color: #fff;
    font-weight: bold;
    padding-top: 1.6vw;
    padding-right: 1.07vw;
    position: relative;
  }

  .fixed .fixed_btn_wrap .fixed_trial_btn a::after {
    content: "";
    display: block;
    width: 1.87vw;
    height: 2.93vw;
    background: url("../img/trial_btn_arrow.png") no-repeat center/100%;
    position: absolute;
    right: 1.87vw;
    top: 50%;
    transform: translate(0%, -50%);
  }

  .fixed .fixed_btn_wrap .fixed_trial_btn a::before {
    content: "無料";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13.33vw;
    height: 5.07vw;
    border-radius: 5.07vw;
    background: #FD1155;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    top: -1.07vw;
    font-size: 3.47vw;
    font-weight: bold;
    white-space: nowrap;
  }

  .fixed .fixed_btn_wrap .fixed_trial_btn a span {
    font-weight: bold;
    font-size: 3.2vw;
    line-height: 12vw;
    color: #fff;
    display: inline-block;
  }
  /*./fixed*/
}

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




/**
 * seagreen-202112 CSS
 * ==========================================================================
 */


/**
 * fv
 */

header .header_logo {
    width: 56px;
    margin-right: 12px;
}

@media screen and (max-width: 1000px) {
    header .header_logo {
        width: 56px;
        margin-right: 32px;
    }
}

@media screen and (max-width: 767px) {
    header .header_logo {
        width: 7.9vw;
    }
}


/**
 * fv
 */

#fv-202112 .fv_contents .fv_no1 {
    width: 567px;
    margin-bottom: 30px;
}

#fv-202112 .fv_image {
    width: 600px;
    position: absolute;
    top: 100px;
    left: 620px;
    pointer-events: none;
}

#fv-202112 .fv_text {
    max-width: 470px;
    margin-bottom: 20px;
    padding: 5px 20px 4px;
    text-align: center;
    line-height: 1.3;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #1074C4;
    border-radius: 50px;
}

#fv-202112 .fv_contents h1 {
    margin-bottom: 50px;
    line-height: 55px;
    font-size: 44px;
}

#fv-202112 .fv_contents h1 span {
    vertical-align: baseline;
    line-height: 68px;
    font-size: 56px;
}

#fv-202112 .fv_contents h1 small {
    vertical-align: baseline;
    font-size: 70%;
    color: #FD1155;
}

#fv-202112 .fv_contents .fv_btn_wrap {
    margin-bottom: 20px;
}

#fv-202112 .fv_contents .fv_annotation {
    width: 597px;
    text-align: right;
}

#fv-202112 .fv_contents .fv_btn_wrap .fv_trial_btn a::before {
    right: -10px;
}

#fv-202112 + .price_list {
    position: relative;
    z-index: 2;
}

.fixed {
    z-index: 10;
}

.fv .fv_contents .fv_annotation {
    display: none;
}

@media screen and (max-width: 1000px) {
    #fv-202112 .fv_contents .fv_no1 {
        width: 56vw;
        margin-bottom: 20px;
    }

    #fv-202112 .fv_image {
        width: 50vw;
        position: absolute;
        top: 16.3vw;
        left: 58vw;
    }
    
    #fv-202112 .fv_text {
        width: 46.9vw;
        font-size: 2vw;
    }
    
    #fv-202112 .fv_contents h1 {
        line-height: 5.5vw;
        font-size: 4vw;
    }
    
    #fv-202112 .fv_contents h1 span {
        line-height: 6vw;
        font-size: 5.5vw;
    }
    
    #fv-202112 .fv_contents .fv_btn_wrap {
        margin-bottom: 5vw;
    }
    
    #fv-202112 .fv_contents .fv_annotation {
        width: 59.7vw;
    }
}

@media screen and (max-width: 767px) {
    #fv-202112 {
        height: 180vw;
    }
    
    #fv-202112 .fv_contents {
        height: 180vw;
    }
    
    #fv-202112 .fv_contents .inner {
        padding-right: 4vw;
    }
    
    #fv-202112 .fv_contents .fv_no1 {
        width: auto;
        margin-bottom: 3vw;
        padding-top: 15vw;
    }
    
    #fv-202112 .fv_contents .fv_unnecessary {
        width: 88%;
        margin-left: auto;
        margin-right: auto;
    }
    
    #fv-202112 .fv_text {
        width: 88%;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        font-size: 3.8vw;
    }
    
    #fv-202112 .fv_contents h1 {
        margin-bottom: 15px;
        text-align: left;
        line-height: 8.5vw;
        font-size: 7vw;
		word-break: keep-all;
    }
    
    #fv-202112 .fv_contents h1 span {
        line-height: 10vw;
        font-size: 8.5vw;
    }
    
    #fv-202112 .fv_image {
        width: 88%;
        height: 56vw;
        margin: 0 auto;
        position: relative;
        top: auto;
        left: auto;
    }
    
    #fv-202112 .fv_contents .fv_annotation {
        width: auto;
        text-align: left;
    }
}


/**
 * price_list
 */

.price_list {
    background-image: url("../img/price_list_bg-new.png");
}

@media screen and (max-width: 767px) {
    .price_list {
        background-image: url("../img/price_list_bg_sp-new.png");
    }
}


/**
 * alignment
 */

.alignment h2 img {
    vertical-align: middle;
}

.alignment h2 span:first-of-type,
.alignment h2 span:last-of-type {
    display: inline-block;
    vertical-align: middle;
}

.alignment h2 span:last-of-type {
    position: relative;
    top: -5px;
}

.alignment .alignment_annotation {
    display: none;
}

@media screen and (max-width: 1000px) {
    .alignment h2 span:last-of-type {
        top: -0.12em;
    }
}

@media screen and (max-width: 767px) {
    .alignment h2 img {
        padding-bottom: 0.87vw;
    }
    
    .alignment h2 span:last-of-type {
        top: -0.10em;
    }
}


/**
 * company
 */

.company {
    padding-bottom: 30px;
}

.company h2 {
    width: 80px;
    max-width: 85px;
}

.company .company_list li:nth-child(2),
.company .company_list li:nth-child(3),
.company .company_list li:nth-child(4) {
    display: none;
}

@media screen and (max-width: 1000px) {
    .company h2 {
        width: 10vw;
    }
}

@media screen and (max-width: 767px) {
    .company h2 {
        width: 28vw;
    }
}


/**
 * seagreen-202206 CSS
 * ==========================================================================
 */

 @media screen and (max-width: 1024px){
  .lp_1_tel_box_uketsuke {
    display: block;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 5px;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}


/* 20220611 add section */

#lp_new_section {
    max-width: 960px;
    margin: 0 auto;
    padding: 100px 20px;
}

#lp_new_section h5 {
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.6;
    font-size: 20px;
}

#lp_new_section ul {
    padding: 40px;
    display: flex;
    justify-content: space-around;
    background: #FFF8E5;
    border-radius: 28px;
}

#lp_new_section li {
    padding: 0 10px;
    text-align: center;
}

#lp_new_section li img {
    max-width: 100%;
    margin-bottom: 5px;
}

#lp_new_section li p {
    line-height: 1.2;
    font-size: 18px;
    font-weight: bold;
}

#hyoka_image {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 1024px) {
    #lp_new_section {
        display: none;
    }
}



