@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

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

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table, tbody, tfoot, thead, tr, th, td {
  vertical-align: top;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*------------------------------------------------------------------------
 default
-------------------------------------------------------------------------*/
html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  font-size: 1.6em;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

a, img, button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

button {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

input, select, textarea {
  border: none;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  background-color: #F5F5F5;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input::placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}

textarea {
  resize: vertical;
}

textarea::placeholder {
  color: #999;
}

textarea:-ms-input-placeholder {
  color: #999;
}

select::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

/*------------------------------------------------------------------------
 Clearfix
 -------------------------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide from Mac IE \*/
.clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

/* Hide from Mac IE */
/*------------------------------------------------------------------------
 PC/SP 切り替え
 -------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  .sp_mini_android_only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_mini_android_only {
    display: none !important;
  }
}

@media screen and (max-width: 360px) {
  .sp_mini_android_only {
    display: block !important;
  }
}

/*------------------------------------------------------------------------
 共通パーツ
-------------------------------------------------------------------------*/
/*----------------------------
 section / inner
----------------------------*/
.section {
  padding: 140px 0;
}

.inner_area {
  margin: auto;
  max-width: 1280px;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .inner_area {
    padding: 0 20px;
  }
}

/*----------------------------
 背景色
----------------------------*/
.bg_blue {
  background-color: #F4F9FF;
}

/*----------------------------
 ボタン
----------------------------*/
.btn {
  border-radius: 60px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
  line-height: 60px;
  position: relative;
  height: 60px;
  width: 340px;
  z-index: 0;
}

.btn:before, .btn:after {
  border-radius: 60px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn:before {
  background: linear-gradient(#ff814a 0%, #ff6d4a 100%);
  z-index: -1;
}

.btn:after {
  background: linear-gradient(#FF4D22 0%, #FF4D22 100%);
  z-index: -2;
}

.btn:hover:before {
  opacity: 0;
}

.btn.blue:before {
  background: linear-gradient(#00bcd4 0%, #03a9f4 100%);
}

.btn.blue:after {
  background: linear-gradient(#03a9f4 0%, #03a9f4 100%);
}

.btn.blue:hover:before {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .btn {
    border-radius: 50px;
    font-size: 1.6rem;
    line-height: 50px;
    height: 50px;
    width: 70%;
  }
  .btn:before, .btn:after {
    border-radius: 50px;
    height: 50px;
  }
}

/*----------------------------
 タイトル
----------------------------*/
.section_title {
  color: #0F4C81;
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 70px;
}

.section_title .big {
  font-size: 4.2rem;
  font-family: "Open Sans", sans-serif;
}

.item_title {
  color: #0F4C81;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
  .section_title {
    margin-bottom: 40px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .section_title .big {
    font-size: 3.6rem;
  }
  .item_title {
    font-size: 1.6rem;
  }
}

/*----------------------------
 テキスト
----------------------------*/
.text {
  letter-spacing: 0.01em;
  line-height: 2;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .text {
    margin-top: 10px;
  }
}

/*------------------------------------------------------------------------
 header
-------------------------------------------------------------------------*/
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(204, 204, 204, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header .logo_box img[src$=".svg"] {
  display: block;
  width: 144px;
  height: 26px;
}

.header .header_contents {
  display: flex;
  align-items: center;
}

.header .nav_list {
  display: flex;
}

.header .nav_list li {
  font-weight: 500;
  margin-right: 25px;
}

.header .nav_list a:hover {
  opacity: 0.8;
}

.header .btn {
  font-size: 1.4rem;
  margin: 0;
  line-height: 40px;
  height: 40px;
  width: 130px;
}

.header .btn:before, .header .btn:after {
  height: 40px;
  width: 100%;
}

.header .btn.blue {
  margin-left: 15px;
}

@media screen and (max-width: 1110px) {
  .header {
    padding: 0 20px;
    height: 50px;
  }
  .header .logo_box img[src$=".svg"] {
    width: 100px;
    height: 18px;
  }
  .header nav {
    display: none;
  }
  .header .btn {
    font-size: 1.2rem;
    line-height: 30px;
    height: 30px;
    width: 116px;
  }
  .header .btn:before, .header .btn:after {
    height: 30px;
    width: 116px;
  }
  .header .btn.blue {
    display: none;
  }
}

/*------------------------------------------------------------------------
 footer
-------------------------------------------------------------------------*/
.footer {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 10px 40px;
  width: 100%;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

.footer .link_area li {
  display: inline-block;
}

.footer .link_area li:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .footer {
    display: block;
    padding: 10px 20px;
  }
  .footer a {
    line-height: 2.1;
  }
  .link_area {
    margin-bottom: 10px;
  }
}

/*------------------------------------------------------------------------
 TOP
-------------------------------------------------------------------------*/
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
}

.loading .design .round {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border: 2px solid #0F4C81;
  border-radius: 100%;
  -webkit-animation: animaton 0.8s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: animaton 0.8s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

@media screen and (max-width: 768px) {
  .loading .design {
    font-size: 1.6rem;
  }
  .loading .design .round {
    width: 30px;
    height: 30px;
  }
}

@-webkit-keyframes animaton {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: .7;
  }
  100% {
    opacity: 0;
  }
}

@keyframes animaton {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: .7;
  }
  100% {
    opacity: 0;
  }
}

/*----------------------------
 ファーストビュー
----------------------------*/
.fv_area {
  background-image: url(../img/mv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  color: #fff;
  text-align: center;
  margin-top: 80px;
  padding: 70px 0;
}

.fv_area .inner_area {
  position: relative;
}

.fv_area .title {
  font-size: 2rem;
  font-weight: bold;
}

.fv_area .logo {
  display: block;
  margin: 20px auto 0;
  width: 250px;
}

.fv_area .fv_text {
  margin-top: 20px;
  line-height: 1.75;
}

.fv_area .btn {
  margin-top: 30px;
}

.fv_area .subsidy_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../img/subsidy_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  color: #0F4C81;
  font-weight: bold;
  opacity: 1;
  letter-spacing: 0.01em;
  position: absolute;
  top: 0;
  right: 70px;
  width: 300px;
  height: 218px;
}

.fv_area .subsidy_text .emphasis {
  color: #C70000;
  font-size: 2.6rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
}

.fv_area img {
  margin: 50px auto 0;
  max-width: 800px;
  width: 100%;
}

.bounce {
  animation: bounce 0.5s;
  opacity: 1 !important;
}

@keyframes bounce {
  0% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.swing {
  animation: swing 3s ease infinite;
}

@keyframes swing {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 1110px) {
  .fv_area {
    margin-top: 50px;
    padding: 40px 0;
  }
  .fv_area .title {
    font-size: 1.6rem;
  }
  .fv_area .logo {
    margin: 15px auto 0;
    width: 200px;
  }
  .fv_area .fv_text {
    margin-top: 15px;
  }
  .fv_area .subsidy_text {
    background-position: center;
    margin: 30px auto 0;
    position: static;
    top: auto;
    right: auto;
  }
  .fv_area .subsidy_text .emphasis {
    font-size: 2.2rem;
  }
  .fv_area img {
    margin: 30px auto 0;
  }
}

/*----------------------------
 動画エリア
----------------------------*/
.movie_area .section_title {
  margin: 0;
}

.movie_area .lead_text {
  letter-spacing: 0;
  margin-top: 20px;
}

.movie_area .movie_box {
  margin: 70px auto 0;
  max-width: 950px;
  width: 100%;
}

.movie_area .movie_box video {
  width: 100%;
}

.movie_area .movie_box img {
  display: none;
}

@media screen and (max-width: 768px) {
  .movie_area {
    padding: 0 20px;
  }
  .movie_area .movie_box {
    margin: 40px auto 0;
  }
  .movie_area .movie_box video {
    /* display: none; */
  }
  .movie_area .movie_box img {
    display: block;
    margin: 0 0 40px;
    width: 100%;
  }
}

/*----------------------------
 波
----------------------------*/
.svg {
  display: block;
  position: relative;
  left: 0px;
  width: 100%;
  height: 130px;
}

.svg.bottom {
  transform: rotate(180deg);
}

.waves {
  position: relative;
  width: 100%;
  height: 130px;
}

.parallax > use {
  animation: 8s cubic-bezier(0.55, 0.5, 0.45, 0.5) 0s infinite normal none running moveForever;
}

.parallax > use:nth-child(1) {
  animation-delay: -5s;
  animation-duration: 8s;
}

.parallax > use:nth-child(2) {
  animation-delay: -5s;
  animation-duration: 8s;
}

@keyframes moveForever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media all and (-ms-high-contrast: none\0) {
  .svg {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .svg {
    height: 60px;
  }
  .waves {
    height: 60px;
  }
}

/*----------------------------
 機能・利用シーン
----------------------------*/
.item_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 40px;
  margin-bottom: -70px;
}

.item_list li {
  margin: 0 30px 70px 0;
  width: calc((100% - 60px) / 3);
}

.item_list li:nth-child(3n) {
  margin-right: 0;
}

.item_list li img {
  display: block;
  width: 100%;
}

.item_list li .item_title {
  margin-top: 20px;
}

.function_list img {
  border: 1px solid #707070;
}

.scene_list li{
  background: #ffffff;
}
.scene_list li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.scene_list p {
  padding: 0 30px 30px;
}
.scene_copy {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #function.section {
    padding: 70px 0;
  }
  .item_list {
    display: block;
    padding: 0;
    margin-bottom: -40px;
  }
  .item_list li {
    margin-bottom: 40px;
    margin-right: 0;
    width: 100%;
  }
  .scene_copy {
    font-size: 2rem;
  }
}

/*----------------------------
 選ばれる理由
----------------------------*/
.reason_list {
  padding: 0 40px;
}

.reason_list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
}

.reason_list li .text_box {
  padding-left: 30px;
  width: 35%;
}

.reason_list li .item_title {
  text-align: left;
  position: relative;
}

.reason_list li .item_title:before {
  display: block;
  font-size: 3.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

.reason_list li .item_title.one:before {
  content: "1";
}

.reason_list li .item_title.two:before {
  content: "2";
}

.reason_list li .item_title.three:before {
  content: "3";
}

.reason_list li .item_title:after {
  content: "";
  background-color: #0F4C81;
  display: block;
  height: 1px;
  width: calc(100% - 40px);
  position: absolute;
  top: 24px;
  right: 0;
}

.reason_list li .img_box {
  width: calc(65% - 70px);
}

.reason_list li img {
  display: block;
  width: 100%;
}

.reason_list li:nth-child(even) {
  flex-direction: row-reverse;
}

.reason_list li:nth-child(even) .text_box {
  padding: 0 30px 0 0;
}

.reason_list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .reason_list {
    padding: 0;
  }
  .reason_list li {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .reason_list li .text_box {
    padding-left: 0;
    width: 100%;
  }
  .reason_list li .item_title:before {
    font-size: 3rem;
  }
  .reason_list li .img_box {
    width: 100%;
  }
  .reason_list li:nth-child(even) {
    flex-direction: column-reverse;
  }
  .reason_list li:nth-child(even) .text_box {
    padding: 0;
  }
}

/*----------------------------
 補助金活用
----------------------------*/
.guidance_area {
  background-image: url(../img/bg_wt.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 170px 0 100px;
}

.guidance_area .guidance_box {
  background-color: #fff;
  text-align: center;
  padding: 70px 0;
  margin: auto;
  max-width: 950px;
  position: relative;
}

.guidance_area .guidance_box .section_title {
  margin-bottom: 40px;
}

.guidance_area .subsidy_text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  display: inline-block;
  position: relative;
}

.guidance_area .subsidy_text .emphasis {
  padding: 0 10px;
  color: #C70000;
  font-size: 2.4rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.guidance_area .subsidy_text:before, .guidance_area .subsidy_text:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 80px;
  width: 50px;
  position: absolute;
  bottom: 0;
  transition: 1.1s;
  transform: translateY(10%);
  opacity: 0;
}

.guidance_area .subsidy_text:before {
  background-image: url(../img/decoration_left.png);
  left: -100px;
}

.guidance_area .subsidy_text:after {
  background-image: url(../img/decoration_right.png);
  right: -100px;
}

.guidance_area .subsidy_text.fadein:before, .guidance_area .subsidy_text.fadein:after {
  transform: translateY(0);
  opacity: 1;
}

.guidance_area .text {
  margin-top: 40px;
}

.guidance_area .btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .guidance_area {
    padding: 100px 20px 40px;
  }
  .guidance_area .guidance_box {
    padding: 40px 0px;
  }
  .guidance_area .guidance_box:before {
    top: -50px;
    height: 100px;
    width: 120px;
  }
  .guidance_area .guidance_box .section_title {
    margin-bottom: 20px;
  }
  .guidance_area .subsidy_text {
    padding: 0 50px;
    font-size: 1.4rem;
  }
  .guidance_area .subsidy_text .emphasis {
    font-size: 2rem;
  }
  .guidance_area .subsidy_text:before, .guidance_area .subsidy_text:after {
    height: 40px;
    width: 20px;
  }
  .guidance_area .subsidy_text:before {
    background-size: 20px;
    left: 20px;
  }
  .guidance_area .subsidy_text:after {
    background-size: 20px;
    right: 20px;
  }
  .guidance_area .text {
    margin-top: 20px;
    padding: 0 20px;
  }
  .guidance_area .btn {
    margin-top: 20px;
  }
}

/*----------------------------
 プラン内容
----------------------------*/
.plan_flex_list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  /* max-width: 1280px; */
  width: 95%;
}

.plan_flex_list .title,
.plan_flex_list .plan {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.plan_flex_list .title {
  background-color: #0F4C81;
  color: #fff;
  width: 200px;
}

.plan_flex_list .title strong {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.plan_flex_list .title strong:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.plan_flex_list .plan {
  width: calc(50% - 100px);
  color: #0F4C81;
  border-top: 1px solid #0F4C81;
  border-right: 1px solid #0F4C81;
}

.plan_flex_list .plan .small_title {
  display: none;
}

.plan_flex_list .plan .grow_item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #0F4C81;
}

.plan_flex_list .red {
  color: #C70000;
  font-size: 1.6rem;
  font-weight: bold;
}

.plan_flex_list small {
  display: inline-block;
  font-size: 1.4rem;
}

.plan_flex_list .list_box {
  display: inline-block;
  padding-left: 20px;
}

.plan_flex_list .list_box li {
  font-size: 1.6rem;
  padding: 0 0 0 20px;
  position: relative;
  text-align: left;
}

.plan_flex_list .list_box li:not(:last-child) {
  margin: 0 0 15px;
}

.plan_flex_list .list_box li:before {
  background-color: #0F4C81;
  border-radius: 50%;
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 11px;
  left: 0;
}

.plan_text {
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin: 30px auto 0;
  max-width: 770px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .plan_flex_list {
    display: block;
    max-width: inherit;
  }
  .plan_flex_list .title,
  .plan_flex_list .plan {
    font-size: 1.6rem;
  }
  .plan_flex_list .title {
    display: none;
  }
  .plan_flex_list .plan {
    width: 100%;
    text-align: left;
    border-left: 1px solid #0F4C81;
  }
  .plan_flex_list .plan:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .plan_flex_list .plan .small_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    padding: 20px;
    color: #fff;
    background-color: #0F4C81;
  }
  .plan_flex_list .plan .contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 110px);
    padding: 20px;
  }
  .plan_flex_list .plan .grow_item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding: 0;
  }
  .plan_flex_list .plan .grow_item:not(:last-child) .small_title {
    border-bottom: 1px solid #fff;
  }
  .plan_flex_list .red {
    font-size: 1.4rem;
  }
  .plan_flex_list small {
    font-size: 1.2rem;
  }
  .plan_flex_list .list_box {
    padding-left: 0px;
  }
  .plan_flex_list .list_box li {
    font-size: 1.4rem;
    padding: 0 0 0 10px;
  }
  .plan_flex_list .list_box li:not(:last-child) {
    margin: 0 0 10px;
  }
  .plan_flex_list .list_box li:before {
    width: 3px;
    height: 3px;
    top: 8px;
    left: 0;
  }
  .plan_text {
    margin: 20px auto 0;
  }
}

/*----------------------------
 よくある質問
----------------------------*/
.qa_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.qa_wrapper .qa_box {
  width: 48%;
}
.qa_wrapper .qa_box:last-child {
  margin-left: 1%;
}
.qa_box {
  background-color: #fff;
  border: 1px solid #0F4C81;
  padding: 0 30px;
  margin: 0 auto 30px;
  max-width: 770px;
  width: 100%;
}

.qa_box dt, .qa_box dd {
  padding: 30px 0 30px 50px;
}

.qa_box .item_title {
  border-bottom: 1px solid #DDD;
  text-align: left;
}

.qa_box .text {
  margin: 0;
}

.qa_box .qa_icon {
  position: relative;
}

.qa_box .qa_icon:before {
  border-radius: 50%;
  display: block;
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  position: absolute;
  top: 30px;
  left: 0;
}

.qa_box .q_text:before {
  content: "Q";
  background-color: #DEEDFF;
}

.qa_box .a_text:before {
  content: "A";
  background-color: #0F4C81;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .qa_wrapper .qa_box {
    width: 100%;
  }
  .qa_box {
    margin: 0 auto 40px;
    padding: 0 20px;
    width: 100%;
  }
  .qa_box:last-child {
    margin-bottom: 0;
    margin-left: 0;
  }
  .qa_box dt, .qa_box dd {
    padding: 20px 0 20px 46px;
  }
  .qa_box .qa_icon:before {
    font-size: 1.6rem;
    line-height: 28px;
    height: 28px;
    width: 28px;
    top: 20px;
  }
}

/*----------------------------
 お問い合わせ
----------------------------*/
.form_box {
  margin: auto;
  max-width: 770px;
  width: 100%;
}

.form_box .cautions {
  text-align: right;
}

.form_box .required {
  color: #C70000;
  font-weight: bold;
}

.form_box .form_item {
  margin-bottom: 30px;
}

.form_box dt {
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.75;
  margin-bottom: 10px;
}

.form_box input, .form_box textarea {
  font-size: 1.6rem;
  padding: 14px 20px;
}

.form_box textarea {
  height: 210px;
}

.form_box .error_text {
  color: #C70000;
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-top: 10px;
}

.form_box .error input, .form_box .error textarea {
  border: 1px solid #C70000;
}

.form_box .btn {
  padding: 0;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .form_box .form_item {
    margin-bottom: 20px;
  }
  .form_box textarea {
    height: 160px;
  }
  .form_box .btn {
    margin-top: 40px;
  }
}

/*----------------------------
運営会社
----------------------------*/
.company_wrap {
  display: flex;
  width: 100%;
  margin: 0 0 60px;
}

.company_wrap .section_title {
  margin-bottom: 40px;
}

.company_wrap .img_box,
.company_wrap .contents_box {
  width: 50%;
}

.company_wrap .img_box {
  background: url(../img/company_img.jpg) no-repeat center;
  background-size: cover;
}

.company_wrap .contents_box {
  background-color: #F4F9FF;
  padding: 50px;
  position: relative;
  top: 60px;
}

.company_wrap .contents_box p {
  margin-bottom: 30px;
  font-size: 1.8rem;
  line-height: 2;
}

.company_wrap .company_info_wrap {
  padding: 30px 0 0;
  border-top: 1px solid #ccc;
}

.company_wrap .company_info_wrap .info_title {
  margin-bottom: 10px;
  color: #333;
  letter-spacing: 0.4px;
}

.company_wrap .company_info_wrap li:not(:last-child) dl {
  margin-bottom: 10px;
}

.company_wrap .company_info_wrap dl {
  display: flex;
  width: 100%;
}

.company_wrap .company_info_wrap dt {
  color: #aaa;
  width: 110px;
}

.company_wrap .company_info_wrap dd {
  color: #333;
  width: calc(100% - 110px);
}

@media screen and (max-width: 768px) {
  .company_wrap {
    display: block;
    margin: 0;
  }
  .company_wrap .section_title {
    margin-bottom: 20px;
  }
  .company_wrap .img_box,
  .company_wrap .contents_box {
    width: 100%;
  }
  .company_wrap .img_box {
    height: 200px;
  }
  .company_wrap .contents_box {
    padding: 30px;
    top: 0;
  }
  .company_wrap .contents_box p {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
  .company_wrap .company_info_wrap .info_title {
    margin-bottom: 10px;
  }
  .company_wrap .company_info_wrap li:not(:last-child) dl {
    margin-bottom: 10px;
  }
  .company_wrap .company_info_wrap dl {
    display: block;
  }
  .company_wrap .company_info_wrap dt {
    margin-bottom: 2px;
    width: 100%;
  }
  .company_wrap .company_info_wrap dd {
    margin-bottom: 10px;
    width: 100%;
  }
}

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


/*----------------------------
 利用規約
----------------------------*/
.terms_area {
  width: 760px;
  margin: 80px auto;
}
.terms_area p {
  line-height: 1.6;
  padding-bottom: .5em;
}
.terms_area h3 {
  font-size: 1.2em;
  margin-top: 2em;
}
.terms-tit {
  font-size: 2em;
  text-align: center;
  padding: 30px 0;
}
.terms-subtit {
  font-size: 1.4em;
}
.terms-lead {
  padding: 1em 0;
}
.enactment {
  font-weight: 700;
}

/*----------------------------
 特定商取引法に基づく表記
----------------------------*/
.tradelaw-area {
  width: 760px;
  margin: 80px auto;
}
.tradelaw-tit {
  font-size: 2em;
  text-align: center;
  padding: 30px 0;
}

.tradelaw-table {
width: 100%;
}

.tradelaw-table th,
.tradelaw-table td {
border: 1px solid #ccc;
padding: 20px;
}

.tradelaw-table th {
font-weight: bold;
background-color: #dedede;
}

@media screen and (max-width: 767px) {
.tradelaw-table,
.tradelaw-table tr,
.tradelaw-table td,
.tradelaw-table th {display:block;}
.tradelaw-table th {width:auto;}
}

@media screen and (max-width: 768px) {
.terms_area, .tradelaw-area {
  width: 90%;
  }
}
/*----------------------------
 価格表
----------------------------*/
@media screen and (max-width: 768px) {
  .scroll{
  overflow: auto;
  white-space: nowrap;
  width: 95%;
    margin: 0 auto;
  }
  .scroll::-webkit-scrollbar{
   height: 5px;
  }
  .scroll::-webkit-scrollbar-track{
   background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
   background: #BCBCBC;
  }
}

.price_table {
  margin: 0 auto;
  width: 95%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.price_table th {
  padding: 20px;
  background: #0F4C81;
  color: #fff;
  border-bottom: 1px solid #fff;
  width: 180px;
}

.price_table td {
  padding: 20px;
  text-align: center;
  color: #0F4C81;
  border: 1px solid #0F4C81;
}

.price_table .th_first {
  border-top: 1px solid #0F4C81;
}

.price_table .th_last {
  border-bottom: 1px solid #0F4C81;
}
.price_table td ul li {
  /* list-style: initial; */
}

.price_table tr {

}

.plan_sub_txt {
  width: 95%;
  margin: 0 auto;
  font-size: 14px;
  color: #0F4C81;
}

/*----------------------------
 料金シミュレーション
----------------------------*/
#simulation .section_title {
  margin-bottom: 30px;
}
.section_subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  color: #0F4C81;
  font-size: 18px;
}
.simulation_wrapper {
  width: 95%;
  margin: 60px auto;
  /* display: flex;
  justify-content: space-around; */
}
.simulation_box {
  width: 100%;
  background: #fff;
  border: 1px solid #0F4C81;
  padding: 20px;
  color: #0F4C81;
  margin-bottom: 30px;
}
.simulation_box h3 {
  /* text-align: left; */
  font-size: 24px;
  margin: 24px auto 8px auto;
  width: 95%;
}
.time {
  margin: 0 auto 16px auto;
  width: 95%;
}
.otoku {
  border: 5px solid orange;
  position: relative;
  background: #fdd793;
}
.otoku th:before {
  content: 'オススメ！';
  position: absolute;
  left: -3px;
  top: -7px;
  font-size: 10px;
  background: #ffa502;
  padding: 3px;
}

@media screen and (max-width: 768px) {
  .simulation_wrapper {
    width: 100%;
  }
  .simulation_box {
    border: none;
  }
  .simulation_box .price_table {
    width: 100%;
    margin-bottom: 16px;
  }
  .simulation_box .price_table th {
    width: 90px;
    padding: 20px 0;
  }
  .simulation_box .price_table td {
    padding: 20px 0;
    width: 95px;
  }
  .simulation_box .price_table tr {
    font-size: 10px;
  }
  .simulation_box h3 {
    font-size: 18px;
  }
}

/*----------------------------
 特長エリア
----------------------------*/
.section.movie_area {
  padding-bottom: 0px;
}
.section.feature_area {
  padding-top: 140px;
}

.feature_area .section_title {
  margin: 0;
}

.feature_area .lead_text {
  letter-spacing: 0;
  margin-top: 20px;
}

.detail_text {
  color: #0F4C81;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 20px;
  line-height: 1.8;
}

.feature_img_box {
  margin: 30px 0;
}
.feature_img_box.cap {
  margin-bottom: 10px;
}
.feature_img_box img {
  display: block;
  margin: 0 auto;
  border: 1px solid #d9d9d9;
}
.feature_img_cap {
  text-align: center;
  font-size: 1.2rem;
  color: #959595;
}
.feature_cap {
  width: 960px;
  margin: 30px auto 0 auto;
  line-height: 1.8;
  font-size: 1.4rem;
  color: #888;
}

.price_table.feature {
  width: 960px;
  margin-bottom: 10px;
  margin-top: 60px;
}
.price_table.feature th {
  width: 210px;
}
.price_table.feature .th_first {
  background: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #0F4C81;
}

td.focus_top {
  border-top: 5px solid #ff9d00;
  border-left: 5px solid #ff9d00;
  border-right: 5px solid #ff9d00;
  position: relative;
  background: #fdd793;
  font-weight: 700;
}
td.focus_middle {
  border-left: 5px solid #ff9d00;
  border-right: 5px solid #ff9d00;
  background: #fdd793;
  font-weight: 700;
}
td.focus_bottom {
  border-bottom: 5px solid #ff9d00;
  border-left: 5px solid #ff9d00;
  border-right: 5px solid #ff9d00;
  background: #fdd793;
  font-weight: 700;
}

td.focus_top:before {
  position: absolute;
  top: -35px;
  left: 46px;
  content: "＼ 業界最安水準 ／";
  font-weight: 700;
}

#plan td.focus_top:before {
  left: 45px;
  content: "＼ 一番人気 ／";
}

@media screen and (max-width: 768px) {
  .feature_img_box img {
    width: 90%;
  }
  .detail_text {
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
  }
  .price_table.feature {
    width: 95%;
    margin: 60px auto 0 auto;
  }
  .feature_img_cap {
    width: 95%;
    margin: 0 auto;
    text-align: left;
  }
  .feature_cap {
    width: 95%;
  }
  td.focus_top:before {
    left: 5px;
  }
  #plan td.focus_top:before {
    left: 105px;
    content: "＼ 一番人気 ／";
  }
  #plan .price_table {
    margin-top: 40px;
  }
  #plan .detail_text {
    margin-left: 0;
  }
}

/*------------------------------------------------------------------------
 footer_contents
-------------------------------------------------------------------------*/
.news {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 999;
  background: #ff714a;
  width: 100%;
}

.news a {
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .news {
    top: 50px;
  }
  .news a {
    padding: 6px 20px;
  }
}

/*----------------------------
 プラン内容 NEW
----------------------------*/
.plan_wrapper {
  display: flex;
  justify-content: space-between;
}

.plan_card {
  width: 19%;
  background: #fff;
  border: 2px solid #0F4C81;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
}

.plan_title_area {
  background-color: #0F4C81;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.plan_price_area {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
  font-size: 40px;
}

.price_symbol {
  font-size: 18px;
  padding-right: 3px;
}

.usage_limit_txt {
  font-size: 14px;
  /* background: #eaeaea; */
  padding: 10px 0;
  width: 90%;
  margin: 10px auto;
}

.limit_txt {
  color: #104c81;
  /* text-decoration: underline; */
  font-size: 16px;
  padding-right: 3px;
}

.mv_btn {
  font-size: 1.4rem;
  margin: 0;
  line-height: 40px;
  width: 100%;
  color: #fff;
  background-color: #ff814a;
  padding: 5px 20px;
  border-radius: 30px;
  display: block;
  width: 90%;
  margin: 30px auto 0 auto;
}

.mv_btn:hover {
  opacity: 0.7;
}

.function_plan_list {
  font-size: 14px;
  text-align: left;
  width: 90%;
  margin: 0 auto;
  background: #ececec;
  padding: 30px;
}

.function_plan_list > li {
  list-style-type: circle;
  padding-bottom: 8px;
}


@media screen and (max-width: 768px) {
  .plan_card {
    margin-right: 10px;
    min-width: 300px;
  }
}