@charset "UTF-8";
/**  テキストの高さ */
/** 背景色 */
/** border色 */
/** ボタン色 */
/** アイコン色 */
/** 影 */
/* Break point ブレイクポイント
====================================== */
/* media query
====================================== */
/* =================
//		Mixin
================== */
/* Only output numerical values
/* 数値のみ出力する
====================================== */
/* font $size
====================================== */
/* font-size フォントサイズのrem表示用
====================================== */
/*--- cmn ---*/
::-moz-selection {
  background: #92d0e1;
  color: #fff;
}
::selection {
  background: #92d0e1;
  color: #fff;
}

a {
  color: #666666;
  text-decoration: none;
}

.sm {
  padding: 100px 0;
}

img {
  width: auto;
}

@media screen and (max-width: 891px) {
  img {
    width: 100%;
  }
}
.ctn_area {
  max-width: 1000px;
  width: 100%;
  padding: 0 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.link_text {
  color: #25bedd;
}
.link_text:hover {
  opacity: 0.8;
}

.cmn_title {
  font-size: 46px;
  color: #2c2c2c;
  font-weight: bold;
  text-align: center;
  line-height: 170%;
  padding-bottom: 20px;
}

.cmn_text {
  font-size: 18px;
  text-align: center;
  color: #2c2c2c;
}

/* #アイコン
--------------------------*/
.fa-check {
  color: #dc6679;
}

/* 共通ボタン
================================================*/
.cmn_button_link {
  display: inline-block;
  font-weight: bold;
  background-color: #fff100;
  border: 2px solid #fff100;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  padding: 10px 50px;
  transition: all 0.5s ease;
}
.cmn_button_link:hover {
  border: 2px solid #fff100;
  background-color: #fff;
}
.cmn_button_link_text {
  color: #3DADD6;
  transition: all 0.5s ease;
}

/* #トライアルボタン　動き追加
================================================*/
.trial_hover_button_link {
  margin: 0 auto;
  position: relative;
  letter-spacing: 0.05em;
  font-size: 12px;
  transition: initial;
  overflow: hidden;
  text-decoration: none;
}

.trial_hover_button_link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100%;
  margin: auto;
  width: 100px;
  height: 60px;
  background: #f4ec7e;
  transform: scale(0);
  transition: 1s ease all;
}

.trial_hover_button_link:hover:before {
  transform: scale(4.2);
}

h1, h2, h3, h4, p, div, a {
  font-family: "Noto Sans JP", sans-serif;
}

h1, h2, h3, h4, p, tr, td {
  color: #2c2c2c;
}

/*================================================
# header
================================================*/
.pc_header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding-bottom: 20px;
  z-index: 9999;
}
@media (max-width: 999px) {
  .pc_header {
    display: none;
  }
}

.sp_header {
  display: none;
}
@media (max-width: 999px) {
  .sp_header {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
  }
}

/* SPアコーディオンメニュー
================================================*/
.btn_menu {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 15px 20px;
  border-left: 1px solid #efefef;
}
.btn_menu .btn_icon_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  display: none;
}
.btn_menu .btn_icon_box.active {
  display: block;
}
.btn_menu .type_open .bar {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 30px;
  height: 2px;
  background: #25bedd;
}
.btn_menu .type_open .bar:after, .btn_menu .type_open .bar:before {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #25bedd;
  content: "";
}
.btn_menu .type_open .bar:after {
  top: -10px;
  width: 30px;
  height: 2px;
}
.btn_menu .type_open .bar:before {
  bottom: -10px;
  width: 30px;
  height: 2px;
}
.btn_menu .type_close {
  position: relative;
  padding: 0;
}
.btn_menu .type_close:after, .btn_menu .type_close:before {
  position: absolute;
  left: -4px;
  display: block;
  width: 100%;
  height: 3px;
  background: #25bedd;
  content: "";
}
.btn_menu .type_close:after {
  top: 6px;
  width: 30px;
  height: 2px;
  transform: rotate(45deg);
}
.btn_menu .type_close:before {
  bottom: 7px;
  width: 30px;
  height: 2px;
  transform: rotate(-45deg);
}

.area_menu {
  display: none;
}
.area_menu .menu_navigation .menu_list .menu {
  position: relative;
  border-bottom: 1px solid #efefef;
}
.area_menu .menu_navigation .menu_list .menu a {
  display: block;
  width: 100%;
  padding: 15px 20px;
}
.area_menu .menu_navigation .menu_list .menu.bd_t {
  border-top: 1px solid #efefef;
}
.area_menu .menu_navigation .menu_list .menu.menu_login {
  padding-left: 25px;
}
.area_menu .menu_navigation .menu_list .menu.menu_login:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2f6";
  font-weight: bold;
  color: #25bedd;
  position: absolute;
  top: 33%;
}

.header_wrap {
  display: flex;
}
@media (max-width: 999px) {
  .header_wrap {
    height: 56px;
    align-items: center;
    justify-content: space-between;
  }
}

/* header-left
================================================*/
@media (min-width: 1000px) {
  .header_left {
    width: 30%;
    margin: auto 0;
  }
}
@media (max-width: 999px) {
  .header_left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 0 1 100%;
  }
}

.header_left_img {
  width: 50%;
}
.header_left_img:hover {
  opacity: 0.8;
}
@media (max-width: 999px) {
  .header_left_img {
    margin: 0 30px 0 20px;
    width: 38.6%;
    max-width: 150px;
  }
}
@media (max-width: 639px) {
  .header_left_img {
    width: 32%;
    min-width: 120px;
  }
}

/* header-button
================================================*/
.header_button {
  width: 38.6%;
  margin-left: 30px;
}
.header_button .trial_button_link {
  padding: 13px 0;
  width: 100%;
  border-radius: 40px;
  border: none;
}
.header_button .trial_button_link_text {
  font-size: 24px;
  font-size: 1.6rem;
  font-size: 1.2rem;
}
@media (max-width: 639px) {
  .header_button {
    display: none;
  }
}

.header_account {
  display: flex;
  justify-content: flex-end;
  padding: 15px 0;
  color: #666666;
}

/* header-right
================================================*/
@media (min-width: 1000px) {
  .header_right {
    width: 70%;
  }
}
@media (max-width: 999px) {
  .header_right {
    flex: 0 0 64px;
  }
}

.global {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #666666;
}
.global .global_item {
  padding-right: 30px;
  margin: auto 0;
}
.global .global_item a {
  color: #2c2c2c;
}
.global .global_item a:hover {
  color: #25bedd;
}
.global .cmn_button {
  width: 220px;
}
.global .cmn_button a {
  pointer-events: auto;
}

.header_download {
  margin: auto 0;
  font-size: 13px;
}
.header_download a {
  display: flex;
  border-right: 1px solid #bcbcbc;
  padding-right: 15px;
}
.header_download a i {
  color: #b6c6a5;
  margin-right: 5px;
}
.header_download a:hover {
  opacity: 0.8;
}

.header_login {
  margin: auto 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 13px;
}
.header_login:hover {
  opacity: 0.8;
}

.breadcrumbs {
  background-color: #fafafa;
  font-size: 12px;
  padding: 10px 0;
}
.breadcrumbs .ctn_area {
  color: #9fa0a0;
}
.breadcrumbs .ctn_area span {
  margin-right: 5px;
  margin-left: 5px;
  color: #9fa0a0;
}
.breadcrumbs .ctn_area span:hover {
  opacity: 0.8;
}
.breadcrumbs .ctn_area .home_link {
  color: #25bedd;
}
@media (max-width: 999px) {
  .breadcrumbs {
    padding: 10px 20px;
  }
}

/*==================================================================
# footer
===================================================================*/
footer {
  background-color: #eeeeee;
}

.sp_footer_wrap {
  display: none;
}
@media (max-width: 999px) {
  .sp_footer_wrap {
    display: block;
  }
}

.pc_footer_wrap {
  display: flex;
  justify-content: center;
  padding-top: 120px;
}
@media (max-width: 999px) {
  .pc_footer_wrap {
    display: none;
  }
}

.footer_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 75%;
}

@media (max-width: 999px) {
  .footer_nav {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    padding-top: 110px;
    text-align: center;
  }
}

.footer_nav_item {
  width: 216px;
  font-size: 18px;
  padding-bottom: 25px;
}
@media (min-width: 1000px) {
  .footer_nav_item {
    margin-right: 90px;
  }
  .footer_nav_item:nth-child(2) {
    width: 126px;
  }
  .footer_nav_item:nth-child(5) {
    width: 126px;
  }
  .footer_nav_item:nth-child(8) {
    width: 126px;
  }
  .footer_nav_item:nth-child(11) {
    width: 126px;
  }
  .footer_nav_item:nth-child(3) {
    width: 210px;
    margin-right: 0;
  }
  .footer_nav_item:nth-child(6) {
    width: 210px;
    margin-right: 0;
  }
  .footer_nav_item:nth-child(9) {
    width: 210px;
    margin-right: 0;
  }
  .footer_nav_item:nth-child(12) {
    width: 210px;
    margin-right: 0;
  }
}
@media (max-width: 999px) {
  .footer_nav_item {
    font-size: 11px;
    width: auto;
    padding-bottom: 10px;
  }
  .footer_nav_item + .footer_nav_item {
    margin-left: 20px;
  }
}

.footer_nav_item_link {
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
  font-size: 15px;
}
.footer_nav_item_link:hover {
  border-bottom: 2px solid #92d0e1;
}

.footer_right {
  width: 161px;
  margin-left: 15px;
}

/* #mail-magazine
--------------------------*/
.mail_magazine {
  margin-bottom: 50px;
}

.mail_magazine_link {
  font-size: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
}
.mail_magazine_link:hover {
  border-bottom: 2px solid #92d0e1;
}

.footer_svg {
  fill: #fff;
  transition: all 0.5s ease;
}
.footer_svg:hover {
  fill: #000000;
}

.footer_privacy {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 70px;
}

.footer_privacy_img {
  width: 50%;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 15px;
  text-align: center;
  cursor: pointer;
}
.footer_privacy_img img {
  width: auto;
}

.footer_privacy_p {
  font-size: 12px;
  line-height: 20px;
  color: #666666;
}

.footer_sns {
  margin-top: 50px;
  text-align: center;
}

.footer_sns_icon {
  display: inline-block;
  text-align: center;
}

.footer_sns_link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff;
  font-size: 20px;
  border-radius: 20px;
  line-height: 40px;
  margin: 0 5px;
}
.footer_sns_link:hover {
  color: #fff;
}
.footer_sns_link:hover.facebook_icon {
  background: #3C5A99;
}
.footer_sns_link:hover.twitter_icon {
  background: #1DA1F2;
}

.footer_logo {
  text-align: center;
  margin: 30px auto;
  width: 100%;
}
.footer_logo:hover {
  opacity: 0.8;
}

.footer_logo_img {
  margin: 30px auto;
}
.footer_logo_img img {
  width: auto;
}

.copyright {
  text-align: center;
  padding-bottom: 40px;
}

/* ======================
//		パーツ共通
====================== */
/** 無料トライアル */
.trial {
  background-color: #92d0e1;
  padding-top: 100px;
  padding-bottom: 70px;
}
.trial h2 {
  font-size: 46px;
  color: #fff;
  padding-bottom: 0;
}
@media (max-width: 999px) {
  .trial h2 {
    font-size: 27px;
  }
}
.trial .cmn_text {
  color: #fff;
  padding-top: 30px;
  padding-bottom: 20px;
  line-height: 180%;
  font-size: 18px;
}
@media (max-width: 999px) {
  .trial .cmn_text {
    font-size: 16px;
    text-align: left;
  }
}
.trial .cmn_button {
  margin-top: 30px;
  text-align: center;
}
.trial .cmn_button .cmn_button_link {
  border: 4px solid #fff100;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 20px;
}
.trial .cmn_button .cmn_button_link:hover {
  background-color: #fff100;
  border: 4px solid #fff100;
}
.trial .cmn_button .cmn_button_link:hover .cmn_button_link_text {
  color: #fff;
}
.trial .cmn_button .cmn_button_link:hover .cmn_button_link_text::after {
  padding-left: 20px;
  color: #fff;
}
@media (max-width: 999px) {
  .trial .cmn_button .cmn_button_link {
    width: 100%;
  }
}
.trial .cmn_button .cmn_button_link_text {
  position: relative;
}
.trial .cmn_button .cmn_button_link_text::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: all 0.5s ease;
  padding-left: 10px;
}

@media screen and (max-width: 891px) {
  .trial {
    background-color: #92d0e1;
  }
  .trial .trial_box {
    padding: 0 20px;
  }
  .top_buck {
    display: none;
  }
}
.top_buck {
  position: fixed;
  bottom: 35px;
  right: 175px;
  font-size: 77%;
  z-index: 2;
}
.top_buck i {
  display: inline-block;
  font-size: 24px;
  line-height: 60px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  text-decoration: none;
  z-index: 1;
  color: #25bedd;
  background-color: #25bedd;
  box-sizing: border-box;
}
.top_buck i:before {
  font-size: 24px;
  line-height: 56px;
  display: block;
}
.top_buck i:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
}
.top_buck i.effect-2 {
  color: #25bedd;
  border: 5px solid #25bedd;
  transition: color 0.3s;
}
.top_buck i.effect-2:after {
  top: 50%;
  left: 50%;
  padding: 2px;
  z-index: -1;
  background: #fff;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s, opacity 0.2s;
}
.top_buck i.sub-b:hover {
  color: #fff;
}
.top_buck i.sub-b:hover:after {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.4s, opacity 0.2s;
}
@media (max-width: 999px) {
  .top_buck i {
    display: none;
  }
}

/*==================================================================
# 下層コンテンツ
===================================================================*/
.under_page_list {
  background-color: #eeeeee;
  padding-top: 40px;
}

/* #メインビジュアル
================================================*/
.under_mv_area {
  background-color: #92d0e1;
}

.ctn_area {
  max-width: 1000px;
  width: 100%;
  padding: 0 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.mv_area {
  padding: 70px 0 40px 0;
  text-align: center;
}

.mv_txt {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 15px;
  margin: 0 20px;
}
@media (max-width: 999px) {
  .mv_txt {
    font-size: 47px;
  }
}
@media (max-width: 639px) {
  .mv_txt {
    font-size: 40px;
  }
}

.mv_el_txt {
  text-align: center;
  font-size: 20px;
  color: #71c3d9;
  font-weight: bold;
}

/* #リスト
================================================*/
.list_area {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  padding-bottom: 20px;
}
@media (max-width: 999px) {
  .list_area {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
    box-shadow: 0 0 8px #eeeeee;
    background-color: #fff;
    margin: 0 20px;
    padding: 0 20px 20px;
    border-radius: 5px;
  }
}

.list_item {
  box-shadow: 0 0 8px #eeeeee;
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 20px;
  transition: all 0.5s ease;
}
@media (max-width: 999px) {
  .list_item {
    border-radius: 30px;
  }
}

.list_item_link {
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px 10px 50px;
  color: #25bedd;
  position: relative;
  transition: all 0.5s ease;
  position: relative;
}
.list_item_link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: bold;
  position: absolute;
  transition: all 0.5s ease;
  color: #92deee;
  left: 20px;
}
.list_item_link:hover {
  background-color: #25bedd;
  color: #fff;
}
.list_item_link:hover::before {
  color: #fff;
}
@media (max-width: 639px) {
  .list_item_link {
    padding: 10px 20px 10px 40px;
    font-size: 12px;
  }
}

/* #共通テキスト
================================================*/
.under_page_title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
}
.under_page_title.blue {
  color: #25bedd;
}
.under_page_title.text-blue {
  color: #25bedd;
}
@media (max-width: 999px) {
  .under_page_title {
    margin: 0 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .under_page_title {
    font-size: 32px;
  }
}

.under_page_text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 20px;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .under_page_text {
    margin: 0 20px;
    margin-bottom: 50px;
  }
}

/* #page-main-content
================================================*/
@media (min-width: 1000px) {
  .page_content_area {
    padding: 100px 0;
  }
}
@media (max-width: 999px) {
  .page_content_area + .page_content_area {
    padding-top: 100px;
  }
}
.page_content_area.bgc-gray {
  background-color: #eeeeee;
}
.page_content_area.bgc-gray .function_container {
  box-shadow: 0 0 8px #e7e7e7;
}
.page_content_area.bgc-white-gray {
  background-color: #fafafa;
}
.page_content_area.bgc-white-gray .function_container {
  box-shadow: 0 0 8px #eeeeee;
}

/*================================================
#ホーム
================================================*/
/* #共通
================================================*/
#top-menu {
  display: none;
}

.top_title {
  font-size: 36px;
  color: #2c2c2c;
  font-weight: bold;
  text-align: center;
  line-height: 140%;
  padding-bottom: 10px;
}

.top_title_sub_text {
  line-height: 180%;
  font-size: 18px;
  text-align: center;
}

/* #MV
================================================*/
.sp_mv {
  display: none;
}
@media (max-width: 999px) {
  .sp_mv {
    width: 100%;
    display: block;
    height: 0;
    padding-top: 150%;
    /* cssの階層に合わせる */
    background: url(../img/top/sp_mv.png) center center/cover no-repeat;
    position: relative;
  }
}

.sp_mv_area {
  position: absolute;
  top: 80px;
  left: 80px;
  right: 80px;
  margin: auto;
  text-align: center;
}

.pc_mv {
  background: linear-gradient(90deg, #3dadd6 0%, #3dadd6 50%, #b1deea 50%, #b1deea 100%);
}
@media (max-width: 999px) {
  .pc_mv {
    display: none;
  }
}

.pc_buck_img {
  background-image: url(../img/top/pc_mv.png);
  background-repeat: no-repeat;
  /* 画像のリピートなし */
  background-position: center;
  /* 画像の表示位置を指定 */
  width: 100%;
  /* 横幅のサイズを指定  */
  height: 485px;
}

.mv_top_area {
  padding: 60px 0;
  text-align: left;
}
@media (max-width: 999px) {
  .mv_top_area {
    text-align: center;
  }
}

.mv_text_h1 {
  font-size: 44px;
  color: #fff;
  line-height: 60px;
}
@media (max-width: 999px) {
  .mv_text_h1 {
    font-size: 50px;
    color: #fff;
    line-height: 140%;
    text-align: center;
  }
}
@media (max-width: 639px) {
  .mv_text_h1 {
    font-size: 30px;
  }
}

.mv_p_text {
  padding-top: 30px;
  font-size: 18px;
  color: #fff;
  line-height: 160%;
}
@media (max-width: 999px) {
  .mv_p_text {
    padding-top: 20px;
    font-size: 24px;
    color: #fff;
    line-height: 160%;
    text-align: center;
  }
}
@media (max-width: 639px) {
  .mv_p_text {
    font-size: 15px;
  }
}

/* #trial-button
--------------------------*/
.trial_button {
  margin-top: 30px;
}
@media (max-width: 999px) {
  .trial_button {
    text-align: center;
  }
}

.trial_button_link {
  border: 4px solid #f4ec7e;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 20px;
}
@media (max-width: 999px) {
  .trial_button_link {
    padding: 0.8em 3.5em;
    width: 404px;
  }
}
@media (max-width: 639px) {
  .trial_button_link {
    width: initial;
  }
}
.trial_button_link::before {
  width: 100px;
  height: 60px;
  background: #f4ec7e;
  transform: scale(0);
  transition: 1s ease all;
}
.trial_button_link:hover {
  background-color: #fff100;
  border: 4px solid #f4ec7e;
}
.trial_button_link:hover .trial_button_link_text {
  color: #fff;
}
.trial_button_link:hover .trial_button_link_text::after {
  padding-left: 20px;
  color: #fff;
}

.trial_button_link_text {
  position: relative;
}
.trial_button_link_text::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: all 0.5s ease;
  padding-left: 10px;
}
@media (max-width: 639px) {
  .trial_button_link_text {
    font-size: 15px;
  }
}

/* #about
================================================*/
.about {
  padding: 100px 0;
  background-color: #eeeeee;
}
@media (max-width: 999px) {
  .about {
    padding-bottom: 110px;
  }
}

.about_img {
  text-align: center;
  margin-top: 55px;
}
@media (max-width: 999px) {
  .about_img {
    margin-top: 20px;
    width: 100%;
  }
}
.about_img img {
  width: 100%;
}

@media (max-width: 999px) {
  .about_wrap {
    padding: 0 20px;
  }
}

.pc_title {
  display: block;
  text-align: left;
}
@media (max-width: 999px) {
  .pc_title {
    display: none;
  }
}

.pc_title_h2 {
  font-size: 36px;
}

.sp_title {
  display: none;
}
@media (max-width: 999px) {
  .sp_title {
    display: block;
  }
}

.sp_title_h2 {
  font-size: 40px;
}
@media (max-width: 639px) {
  .sp_title_h2 {
    font-size: 20px;
  }
}

.sp_title_p {
  line-height: 180%;
}
@media (max-width: 999px) {
  .sp_title_p {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .sp_title_p {
    font-size: 15px;
  }
}

/* #video
--------------------------*/
.video_size {
  width: 100%;
}

/* #responsive
================================================*/
.responsive {
  padding-top: 100px;
  background-color: #fafafa;
}
@media (max-width: 999px) {
  .responsive {
    padding-top: 110px;
    padding-bottom: 70px;
  }
}

@media (max-width: 999px) {
  .responsive_title {
    font-size: 40px;
  }
}
@media (max-width: 639px) {
  .responsive_title {
    font-size: 30px;
  }
}

.responsive_text {
  padding: 20px;
}
@media (max-width: 999px) {
  .responsive_text {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 24px;
    line-height: 180%;
  }
}
@media (max-width: 639px) {
  .responsive_text {
    font-size: 20px;
  }
}

.responsive_img {
  text-align: center;
  padding-top: 30px;
}
.responsive_img img {
  width: 100%;
}

/* #measurement
================================================*/
.measurement {
  padding: 130px 0;
  padding-top: 130px;
  padding-bottom: 120px;
  background-color: #eeeeee;
}
@media (max-width: 999px) {
  .measurement {
    padding: 110px 0 120px;
  }
}

@media (min-width: 1000px) {
  .measurement_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 999px) {
  .measurement_wrap {
    padding: 0 40px;
  }
}

.measurement_message {
  width: 45%;
  display: inline-block;
  margin-right: 60px;
}
@media (max-width: 999px) {
  .measurement_message {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0 auto;
  }
}

.measurement_title {
  text-align: left;
}
@media (max-width: 999px) {
  .measurement_title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 999px) {
  .measurement_title {
    font-size: 30px;
    text-align: center;
  }
}

.measurement_text {
  text-align: left;
  padding: 20px 0;
  line-height: 180%;
}
@media (max-width: 999px) {
  .measurement_text {
    text-align: center;
    padding-top: 25px;
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .measurement_text {
    font-size: 20px;
  }
}

.measurement_img {
  width: 55%;
  display: inline-block;
}
@media (max-width: 999px) {
  .measurement_img {
    width: 100%;
    display: block;
    padding-top: 30px;
  }
}
.measurement_img img {
  width: 100%;
}

/* #satisfaction
================================================*/
.satisfaction {
  padding: 115px 0 60px;
}
@media (max-width: 999px) {
  .satisfaction {
    padding: 110px 0 50px;
  }
}

/* satisfaction-message
--------------------------*/
@media (max-width: 999px) {
  .satisfaction_message {
    padding: 0 20px;
  }
}

@media (max-width: 999px) {
  .satisfaction_message_title {
    font-size: 40px;
  }
}
@media (max-width: 639px) {
  .satisfaction_message_title {
    font-size: 30px;
  }
}

.satisfaction_message_text {
  padding-top: 15px;
  text-align: left;
  line-height: 180%;
  text-align: center;
  font-size: 17px;
}
@media (max-width: 999px) {
  .satisfaction_message_text {
    font-size: 24px;
    padding-top: 20px;
  }
}
@media (max-width: 639px) {
  .satisfaction_message_text {
    font-size: 20px;
  }
}

/* #satisfaction-wrap
--------------------------*/
.satisfaction_wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}
@media (max-width: 999px) {
  .satisfaction_wrap {
    padding: 30px 20px 20px;
  }
}
@media (max-width: 639px) {
  .satisfaction_wrap {
    display: block;
  }
}

.satisfaction_container {
  text-align: center;
  width: 33%;
  padding-right: 30px;
}
.satisfaction_container:nth-child(3n) {
  padding-right: 0;
}
@media (max-width: 999px) {
  .satisfaction_container {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
    justify-content: space-between;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 50px;
    padding-right: 0;
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
  }
  .satisfaction_container:last-child {
    border: none;
  }
}

.satisfaction_img {
  margin: 20px auto;
  height: 45%;
}
@media (max-width: 999px) {
  .satisfaction_img {
    width: 30%;
    margin: 0;
    margin-right: 30px;
  }
}

.pc_img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .pc_img {
    display: none;
  }
}

.sp_img {
  display: none;
}
@media (max-width: 999px) {
  .sp_img {
    display: block;
  }
}

@media (max-width: 999px) {
  .satisfaction_text {
    width: 60%;
    text-align: left;
  }
}

.satisfaction_text_h3 {
  font-size: 16px;
  color: #2c2c2c;
  line-height: 160%;
}
@media (max-width: 999px) {
  .satisfaction_text_h3 {
    font-size: 28px;
    color: #2c2c2c;
  }
  .satisfaction_text_h3::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
  }
  .satisfaction_text_h3::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
  }
}
@media (max-width: 999px) {
  .satisfaction_text_h3 {
    font-size: 20px;
  }
}

.satisfaction_text_p {
  font-size: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
  text-align: left;
  line-height: 180%;
}
@media (max-width: 999px) {
  .satisfaction_text_p {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .satisfaction_text_p {
    font-size: 15px;
  }
}

/* #relief
================================================*/
.relief {
  background-color: #eeeeee;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 999px) {
  .relief {
    background-color: #eeeeee;
    padding-top: 110px;
    padding-bottom: 40px;
  }
}

.relief_message {
  padding: 0 20px;
}

@media (max-width: 999px) {
  .relief_message_title {
    font-size: 40px;
    padding: 0 10px;
  }
}
@media (max-width: 639px) {
  .relief_message_title {
    font-size: 30px;
  }
}

.relief_message_p {
  padding-top: 15px;
  text-align: center;
  line-height: 180%;
}
@media (max-width: 999px) {
  .relief_message_p {
    font-size: 24px;
    padding-top: 20px;
  }
}
@media (max-width: 639px) {
  .relief_message_p {
    font-size: 15px;
  }
}

/* #relief-wrap
--------------------------*/
.relief_wrap {
  padding: 20px 0;
}
@media (min-width: 1000px) {
  .relief_wrap {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 999px) {
  .relief_wrap {
    padding: 25px 20px 20px;
  }
}

.relief_container {
  width: 33%;
  text-align: center;
  padding: 30px 0;
  padding-right: 30px;
}
@media (max-width: 999px) {
  .relief_container {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #d6d6d6;
    padding-top: 60px;
    padding-right: 0;
    padding-bottom: 40px;
  }
  .relief_container:last-child {
    border: none;
  }
}
.relief_container:nth-child(3n) {
  padding-right: 0;
}

.relief_img {
  padding-bottom: 30px;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .relief_img {
    width: 30%;
    margin: 0;
    margin-right: 30px;
  }
}

@media (max-width: 999px) {
  .relief_text {
    width: 60%;
  }
}

.relief_text_h3 {
  font-size: 16px;
  color: #2c2c2c;
  line-height: 160%;
}
@media (max-width: 999px) {
  .relief_text_h3 {
    font-size: 28px;
    text-align: left;
    color: #2c2c2c;
  }
  .relief_text_h3::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
  }
  .relief_text_h3::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
  }
}
@media (max-width: 639px) {
  .relief_text_h3 {
    font-size: 20px;
  }
}

.relief_text_p {
  font-size: 15px;
  padding-top: 15px;
  text-align: left;
  line-height: 180%;
}
@media (max-width: 999px) {
  .relief_text_p {
    font-size: 24px;
    padding: 20px 0;
  }
}
@media (max-width: 639px) {
  .relief_text_p {
    font-size: 15px;
  }
}

/* #guide
================================================*/
.guide {
  padding-top: 110px;
  padding-bottom: 120px;
}

/* #guide-wrap
--------------------------*/
.guide_wrap {
  padding-top: 20px;
}
@media (min-width: 1000px) {
  .guide_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
  }
}
@media (max-width: 999px) {
  .guide_wrap {
    padding-top: 40px;
  }
}

.guide_container {
  width: 31.2%;
  padding: 30px 0;
  margin-right: 32px;
}
.guide_container:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 999px) {
  .guide_container {
    width: 100%;
    padding: 30px;
    padding-left: 40px;
    border-top: 1px solid #d6d6d6;
  }
  .guide_container:last-child {
    border-bottom: 1px solid #d6d6d6;
  }
}

@media (max-width: 999px) {
  .guide_link {
    width: 100%;
  }
}

.guide_img {
  max-width: 300px;
  height: 185px;
  overflow: hidden;
}
@media (max-width: 999px) {
  .guide_img {
    padding-bottom: 20px;
    width: 100%;
    max-width: unset;
    order: 0;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
  }
}
.guide_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 999px) {
  .guide_text {
    width: 100%;
    order: 1;
    display: block;
  }
}

.guide_text_h3 {
  font-size: 16px;
  padding-bottom: 8px;
  color: #2c2c2c;
  line-height: 160%;
}
@media (max-width: 999px) {
  .guide_text_h3 {
    font-size: 24px;
    padding: 5px 0;
  }
}
@media (max-width: 639px) {
  .guide_text_h3 {
    font-size: 20px;
  }
}

.guide_text_date {
  font-size: 12px;
  line-height: 100%;
}
@media (min-width: 1000px) {
  .guide_text_date {
    padding-top: 17px;
    padding-bottom: 10px;
  }
}
@media (max-width: 999px) {
  .guide_text_date {
    font-size: 20px;
    line-height: 140%;
  }
  .guide_text_date::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
  }
  .guide_text_date::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
  }
}

.guide_text_p {
  font-size: 15px;
  text-align: left;
  line-height: 170%;
}
@media (max-width: 999px) {
  .guide_text_p {
    display: none;
  }
}

/* #もっとみるボタン
--------------------------*/
.guide_more_button {
  text-align: center;
}
@media (max-width: 999px) {
  .guide_more_button {
    margin-top: 50px;
  }
}

.guide_more_button_link {
  border: 2px solid #25bedd;
  background-color: #fff;
  display: inline-block;
  padding: 10px 78px;
  border-radius: 30px;
  margin-top: 5px;
  transition: all 0.5s ease;
  font-size: 20px;
}
.guide_more_button_link:hover {
  background-color: #25bedd;
  border: 2px solid #fff;
}
.guide_more_button_link:hover .guide_more_button_link_text {
  color: #fff;
}

.guide_more_button_link_text {
  color: #25bedd;
  transition: all 0.5s ease;
}

@media screen and (max-width: 891px) {
  .sp_mv_area {
    left: 20px;
    right: 20px;
    text-align: left;
  }
}
/*==================================================================
# faq
===================================================================*/
.faq_contents {
  padding: 60px 0;
}
.faq_contents.gray {
  background-color: #eeeeee;
}
.faq_contents.white {
  background-color: #fafafa;
}

.faq_h2_title {
  text-align: center;
  padding: 40px;
}
@media (max-width: 999px) {
  .faq_h2_title {
    padding: 50px 0;
  }
}

/* #faq
================================================*/
.faq_list {
  padding-bottom: 50px;
  padding-top: 20px;
}

.faq {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 8px #eeeeee;
}
.faq + .faq {
  margin-top: 20px;
}
@media (max-width: 999px) {
  .faq {
    margin: 20px;
  }
}

.faq_area {
  padding: 15px 20px;
}

.faq_text {
  position: relative;
  line-height: 180%;
  font-size: 14px;
  color: #2c2c2c;
}
.faq_text:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
}

/* #質問文
--------------------------*/
.q_area {
  cursor: pointer;
}
.q_area.slide_open .q_title:before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: bold;
  color: #666666;
}

.q_title {
  font-weight: bold;
  font-size: 16px;
  color: #2c2c2c;
}
.q_title:before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: bold;
  color: #666666;
}
@media (max-width: 999px) {
  .q_title {
    padding-right: 20px;
  }
}

/* #回答文
--------------------------*/
.a_area {
  display: none;
  border-top: 1px solid #eeeeee;
  margin: 0 20px;
  padding-left: 0px;
  padding-right: 0px;
}

/* #回答文
--------------------------*/
.faq_link_text {
  padding-bottom: 5px;
}
.faq_link_text:hover {
  opacity: 1;
}

/*==================================================================
# 会社概要・特定取引法
===================================================================*/
.company_content {
  background-color: #fafafa;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 999px) {
  .company_content {
    padding: 80px 0;
  }
}

.company_list {
  border-collapse: collapse;
  width: 88%;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .company_list {
    width: 100%;
  }
}

.company_tr {
  font-size: 16px;
  padding: 30px 0;
  vertical-align: baseline;
}
@media (max-width: 999px) {
  .company_tr {
    display: block;
    padding-top: 30px;
  }
}

.small_text {
  font-size: 14px;
}

.company_th, .transaction_th {
  width: 15%;
  border-top: 2px solid #25bedd;
  border-bottom: 2px solid #25bedd;
  text-align: left;
  padding-left: 20px;
  /** 事業内容 */
}
.company_th.business_th, .transaction_th.business_th {
  border: none;
}
@media (max-width: 999px) {
  .company_th.business_th, .transaction_th.business_th {
    border-bottom: 2px solid #25bedd;
  }
}
@media (max-width: 999px) {
  .company_th, .transaction_th {
    width: 90%;
    display: block;
    margin: 0 auto;
    border-top: none;
  }
}

.transaction_th {
  width: 30%;
}
@media (max-width: 999px) {
  .transaction_th {
    width: 90%;
    display: block;
    margin: 0 auto;
    border-top: none;
  }
}

.company_td {
  width: 100%;
  line-height: 160%;
  border-top: 2px solid #efefef;
  border-bottom: 2px solid #efefef;
  color: #666666;
  text-align: left;
  padding-left: 40px;
  /** 所在地 */
  /** 事業内容 */
}
.company_td.location {
  display: block;
}
.company_td.location_name {
  border: none;
  padding: 30px 40px 15px 40px;
}
.company_td.business {
  display: block;
  border: none;
  padding: 5px 30px;
}
.company_td.business:first-of-type {
  padding-top: 30px;
}
.company_td.mg-t {
  margin-top: 10px;
}
@media (max-width: 999px) {
  .company_td {
    display: block;
    width: 90%;
    margin: 0 auto;
    border-top: none;
    border-bottom: none;
    text-align: none;
    padding-left: 20px;
  }
}

.ctn_area .list-logo {
  text-align: center;
  padding: 2em 0;
}
.ctn_area .list-logo li {
  display: inline-block;
}

.location_map {
  margin-left: 10px;
}

.under_privacy .page_main_content .privacy_content {
  padding: 70px 0;
  padding-top: 80px;
}
.under_privacy .page_main_content .privacy_content .privacy_box {
  padding-bottom: 30px;
}
.under_privacy .page_main_content .privacy_content .privacy_box.mgt {
  padding-top: 40px;
}
.under_privacy .page_main_content .privacy_content .privacy_box .under_page_title {
  border-bottom: 4px solid #efefef;
  position: relative;
  padding-bottom: 20px;
  text-align: left;
  font-size: 28px;
}
.under_privacy .page_main_content .privacy_content .privacy_box .under_page_title:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  border-bottom: 4px solid #25bedd;
}
.under_privacy .page_main_content .privacy_content .privacy_box .privacy_h2 {
  font-size: 28px;
  text-align: center;
  padding-bottom: 30px;
}
.under_privacy .page_main_content .privacy_content .privacy_box .sign {
  text-align: right;
  margin-bottom: 2em;
  line-height: 1.4;
}
.under_privacy .page_main_content .privacy_content .privacy_box .privacy_list {
  margin: 25px 0 25px 20px;
}
.under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .box_list {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 2em;
  border: 1px solid #2c2c2c;
}
.under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .box_list h3 {
  margin-bottom: 0.5em;
}
.under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .box_list p {
  text-indent: 0;
  line-height: 1.4;
}
.under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .box_list .privacy_link {
  color: #3DADD6;
  text-decoration: underline;
}

.privacy_list_item {
  line-height: 160%;
}
.privacy_list_item + .privacy_list_item {
  margin-top: 20px;
}
.privacy_list_item .privacy_text {
  position: relative;
  padding-bottom: 5px;
}
.privacy_list_item .privacy_text .bold {
  position: absolute;
  content: "";
  left: -2%;
  font-weight: bold;
}
.privacy_list_item .privacy_text .child_second {
  padding-left: 40px;
}
.privacy_list_item .child_list {
  margin-top: 20px;
}

@media screen and (max-width: 891px) {
  .under_privacy .page_main_content .privacy_content .privacy_box {
    margin-top: 70px;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .sign {
    width: 90%;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .privacy_list {
    margin: 20px 0;
    width: 90%;
    margin-left: 25px;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .privacy_list_item {
    line-height: 25px;
    width: 100%;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .privacy_list_item .privacy_text {
    position: relative;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .privacy_list_item .privacy_text .bold {
    position: absolute;
    content: "";
    left: -2%;
    font-weight: bold;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .privacy_list_item .child_list {
    margin-top: 20px;
  }
  .under_privacy .page_main_content .privacy_content .privacy_box .privacy_list .box_list {
    width: 90%;
  }
}
/*==================================================================
# ダウンロードリスト
===================================================================*/
/* #ボックス
================================================*/
.download_content {
  background-color: #eeeeee;
}

/* #MV下テキスト
================================================*/
.download_text_content {
  padding: 70px 0;
  background-color: #fafafa;
}
@media (max-width: 999px) {
  .download_text_content {
    padding: 70px 20px;
  }
}

.download_text_content_p {
  line-height: 180%;
  font-size: 18px;
  text-align: center;
}

/* #コンテンツ内容
================================================*/
.download_list {
  padding: 80px 0 120px;
}
@media (max-width: 999px) {
  .download_list {
    margin: 0 20px;
  }
}

.download_list_item {
  padding: 50px 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 8px #e7e7e7;
}
.download_list_item + .download_list_item {
  margin-top: 60px;
}
@media (min-width: 1000px) {
  .download_list_item {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
  }
}
@media (max-width: 999px) {
  .download_list_item {
    padding: 50px 40px;
  }
}

.download_list_item_left {
  width: 40%;
  padding: 0 40px;
}
@media (max-width: 999px) {
  .download_list_item_left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.download_list_item_left img {
  width: auto;
}

.download_list_item_right {
  width: 60%;
  padding-right: 40px;
}
@media (max-width: 999px) {
  .download_list_item_right {
    width: 100%;
    padding-right: 0;
    padding-top: 40px;
  }
}

.download_list_item_text {
  padding-bottom: 20px;
}

.download_list_item_text_h2 {
  font-size: 24px;
  padding-bottom: 20px;
}
@media (max-width: 999px) {
  .download_list_item_text_h2 {
    text-align: center;
  }
}

.download_list_item_text_p {
  text-align: left;
  line-height: 170%;
}

@media (max-width: 999px) {
  .download_list_item_button {
    text-align: center;
  }
}

.download_list_item_button_link {
  padding: 20px 50px;
  background-color: #25bedd;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 6px 0 0 #1e96ae;
}

.download_list_item_button_link_text {
  color: #fff;
  font-size: 20px;
}
.download_list_item_button_link_text:before {
  font-family: "Font Awesome 5 Free";
  content: "\f019";
  font-weight: bold;
  padding-right: 5px;
}

/*==================================================================
# ダウンロードお申込みフォーム
===================================================================*/
/* #資料ダウンロードテキスト
================================================*/
.download_contact_content {
  background-color: #fff;
}

.download_contact_list {
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .download_contact_list {
    margin: 0 20px;
  }
}

.download_contact_list_item {
  width: 63%;
  margin-right: 50px;
}
@media (max-width: 999px) {
  .download_contact_list_item {
    margin-right: 0;
    margin-bottom: 80px;
    width: 100%;
  }
}

.download_contact_list_item_text {
  padding-bottom: 55px;
}

.download_contact_list_item_text_h2 {
  font-size: 36px;
  padding-bottom: 25px;
}
@media (max-width: 999px) {
  .download_contact_list_item_text_h2 {
    text-align: center;
  }
}

.download_contact_list_item_text_p {
  font-size: 18px;
  line-height: 180%;
}
@media (max-width: 999px) {
  .download_contact_list_item_text_p {
    text-align: center;
  }
}

.download_contact_list_item_img {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

/* #お申込みフォーム
================================================*/
.download_form {
  width: 32%;
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 120px;
}
@media (max-width: 999px) {
  .download_form {
    width: 100%;
  }
}

.download_form_text {
  line-height: 180%;
}

.download_form_list {
  padding-top: 25px;
}

.download_form_list_item {
  border-bottom: 2px solid #efefef;
  font-size: 16px;
  padding-top: 0;
  padding-bottom: 20px;
  width: 100%;
}

/* #label
--------------------------*/
.download_form_list_item_label {
  text-align: left;
  padding-bottom: 15px;
  width: 100%;
  margin-left: 0;
}

.download_form_list_item_label_p {
  font-weight: bold;
  position: relative;
  padding-left: 55px;
}

.download_form_list_item_label_span {
  position: absolute;
  left: 0;
  top: -20%;
  color: #d0324b;
  background-color: #fcdddb;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 10px;
}

/* #input
--------------------------*/
.download_form_list_item_input {
  text-align: left;
  width: 100%;
}
.download_form_list_item_input input {
  width: 100%;
  border: none;
  background-color: #f7f7f7;
  height: 30px;
  border-radius: 5px;
  padding-left: 10px;
}
.download_form_list_item_input input::-moz-placeholder {
  color: #d0d0d0;
}
.download_form_list_item_input input::placeholder {
  color: #d0d0d0;
}
.download_form_list_item_input input::-ms-input-placeholder {
  color: #d0d0d0;
}
.download_form_list_item_input input::-ms-input-placeholder {
  color: #d0d0d0;
}

/* #エラーテキスト
--------------------------*/
.download_error_text {
  margin-top: 10px;
  color: #d0324b;
  font-size: 14px;
  text-align: left;
}

/* #submit-button
--------------------------*/
.download_submit_button {
  text-align: center;
}

.download_submit_link {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #25bedd;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  width: 260px;
  padding: 15px 0;
  text-align: center;
  transition: all 0.5s ease;
}
.download_submit_link:hover {
  border: 2px solid #fff;
  background-color: #25bedd;
  color: #fff;
}
.download_submit_link:hover .download_submit_link_text {
  color: #fff;
}
.download_submit_link:hover .download_submit_link_text::before {
  color: #fff;
}

.download_submit_link_text {
  color: #25bedd;
  transition: all 0.5s ease;
  font-size: 18px;
  font-weight: bold;
}
.download_submit_link_text::before {
  font-family: "Font Awesome 5 Free";
  content: "\f019";
  font-weight: bold;
  font-size: 18px;
  transition: all 0.5s ease;
  color: #25bedd;
  padding-right: 10px;
}

.download_checkbox {
  text-align: center;
  padding-top: 35px;
}
@media (max-width: 999px) {
  .download_checkbox {
    text-align: center;
  }
}

.download_checkbox_p {
  font-size: 16px;
  line-height: 160%;
}
.download_checkbox_p .blue-text {
  color: #25bedd;
  font-size: 14px;
}

.form-preview-dl.preview-company input[type=text] {
  width: 62%;
}

/*==================================================================
# 問い合わせページ
===================================================================*/
.trial_content {
  padding: 120px 0 200px;
  background-color: #fafafa;
}
@media (max-width: 999px) {
  .trial_content {
    padding: 100px 0;
  }
}

.trial_wrap {
  padding-top: 70px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 8px #eeeeee;
  border-top: 5px solid #25bedd;
  margin: 20px 0;
}
@media (max-width: 999px) {
  .trial_wrap {
    margin: 0 20px;
  }
}

.trial_title {
  font-size: 36px;
  padding: 70px 0;
}
@media (max-width: 999px) {
  .trial_title .under_page_title {
    margin: 0 40px;
    padding-bottom: 40px;
  }
}

/* #STEP表記
================================================*/
.sp_step {
  display: none;
}
@media (max-width: 999px) {
  .sp_step {
    display: block;
    padding: 30px 20px;
    border-top: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
  }
}

.pc_step {
  margin-top: 34px;
  display: block;
  padding: 30px 0;
  border-top: 2px solid #efefef;
  border-bottom: 2px solid #efefef;
}
@media (max-width: 999px) {
  .pc_step {
    display: none;
  }
}

.step_selection {
  list-style-type: none;
  display: table;
  width: 75%;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}
.step_selection.step_4_list {
  width: 80%;
}
@media (max-width: 999px) {
  .step_selection {
    width: 100%;
    margin: 0 auto;
  }
}

.step_item {
  background-color: #eeeeee;
  padding: 15px 55px;
  display: table-cell;
  position: relative;
  background: #eeeeee;
}
.step_item.step_4_item {
  padding: 15px;
}
@media (max-width: 999px) {
  .step_item {
    padding: 15px 27px;
    vertical-align: middle;
  }
}
.step_item::before {
  top: -17px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step_item::after {
  top: -17px;
  right: -0.8em;
  border-style: solid;
  border-color: transparent transparent transparent #eeeeee;
  border-width: 40px 0 40px 1em;
  z-index: 10;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step_item.blue {
  background: #25bedd;
  font-weight: bold;
}
.step_item.blue .step_item_p {
  color: #fff;
}
.step_item.blue .step_item_p span {
  color: #fff;
}
.step_item.blue::after {
  border-color: transparent transparent transparent #25bedd;
}

.step_item_p {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 999px) {
  .step_item_p {
    text-align: center;
  }
}
.step_item_p span {
  color: #25bedd;
}

/* #申し込みフォーム内容
================================================*/
.trial_list {
  padding-bottom: 60px;
}
@media (max-width: 999px) {
  .trial_list {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.trial_list_item {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  border-bottom: 2px solid #efefef;
  width: 74%;
  margin: 0 auto;
  font-size: 16px;
  padding: 20px 0;
}
@media (max-width: 999px) {
  .trial_list_item {
    width: 100%;
  }
}

/* #label
--------------------------*/
.label {
  width: 30%;
  text-align: left;
  margin: auto 0;
  margin-left: 30px;
}
@media (max-width: 999px) {
  .label {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}
.label.textarea {
  margin-top: 7px;
}

.trial_label_p {
  font-weight: bold;
  position: relative;
  padding-left: 55px;
}

.trial_label_span {
  position: absolute;
  left: 0;
  top: -20%;
  color: #d0324b;
  background-color: #fcdddb;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 10px;
}
.trial_label_span.any_label {
  color: #666666;
  background-color: #f7f7f7;
}

.radio_label {
  background: #f7f7f7;
  border-radius: 5px;
  padding: 10px 3px;
}

/* #input
--------------------------*/
.trial_list_item .input {
  width: 60%;
  text-align: left;
}
.trial_list_item .input.input_confirm {
  height: 30px;
  line-height: 29px;
}
.trial_list_item .input.price_confirm {
  line-height: 1.5;
}
@media (max-width: 999px) {
  .trial_list_item .input {
    width: 100%;
    margin: 0 auto;
  }
}
.trial_list_item .input input[type=text], .trial_list_item .input input[type=tell], .trial_list_item .input input[type=email] {
  width: 103%;
  border: none;
  background-color: #f7f7f7;
  height: 30px;
  border-radius: 5px;
  padding-left: 10px;
}
.trial_list_item .input input[type=text]::-moz-placeholder, .trial_list_item .input input[type=tell]::-moz-placeholder, .trial_list_item .input input[type=email]::-moz-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input input[type=text]::placeholder, .trial_list_item .input input[type=tell]::placeholder, .trial_list_item .input input[type=email]::placeholder {
  color: #d0d0d0;
}
.trial_list_item .input input[type=text]::-ms-input-placeholder, .trial_list_item .input input[type=tell]::-ms-input-placeholder, .trial_list_item .input input[type=email]::-ms-input-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input input[type=text]::-ms-input-placeholder, .trial_list_item .input input[type=tell]::-ms-input-placeholder, .trial_list_item .input input[type=email]::-ms-input-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input textarea {
  background-color: #f7f7f7;
  width: 100%;
  border-radius: 5px;
  height: 100px;
  border: none;
}
.trial_list_item .input textarea::-moz-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input textarea::placeholder {
  color: #d0d0d0;
}
.trial_list_item .input textarea::-ms-input-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input textarea::-ms-input-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input select {
  background-color: #f7f7f7;
  width: 100%;
  border-radius: 5px;
  height: 30px;
  border: none;
}
.trial_list_item .input select::-moz-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input select::placeholder {
  color: #d0d0d0;
}
.trial_list_item .input select::-ms-input-placeholder {
  color: #d0d0d0;
}
.trial_list_item .input select::-ms-input-placeholder {
  color: #d0d0d0;
}

/* #チェックボックス
--------------------------*/
.trial_checkbox {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-top: 35px;
  width: 74%;
  margin: 0 auto;
}
.trial_checkbox.agree {
  display: block;
  text-align: center;
}
.trial_checkbox .download_error_text {
  text-align: center;
}
@media (max-width: 999px) {
  .trial_checkbox {
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }
}
.trial_checkbox input {
  display: inline-block;
  flex: 0 0 40px;
}
@media (max-width: 999px) {
  .trial_checkbox input {
    width: 20px;
  }
}

.trial_checkbox_p {
  display: inline-block;
  font-size: 14px;
  margin-left: 15px;
  line-height: 140%;
}
@media (max-width: 999px) {
  .trial_checkbox_p {
    width: 100%;
    font-size: 14px;
  }
}
.trial_checkbox_p .blue-text {
  color: #25bedd;
}

/* #エラーテキスト
--------------------------*/
.error_text {
  margin: 10px 0 0 30px;
  color: #d0324b;
  margin-left: 35%;
  font-size: 14px;
}
@media (max-width: 999px) {
  .error_text {
    margin: 10px 0 0;
  }
}

/* #代表者名と同一ボタン
--------------------------*/
.contact_inversion {
  width: 60%;
}
@media (max-width: 999px) {
  .contact_inversion {
    width: 100%;
  }
}
.contact_inversion .trial_checkbox_input {
  text-align: left;
  margin-bottom: 10px;
}
.contact_inversion .input + .input {
  margin-top: 20px;
}

/* #お申し込み種別
--------------------------*/
.trial_list_radio {
  display: block;
}
.trial_list_radio .radio {
  margin-left: 30px;
  margin-top: 30px;
}
.trial_list_radio .radio_label {
  display: block;
  text-align: left;
}

/* #お支払い方法
--------------------------*/
@media (max-width: 639px) {
  .paid {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .paid_label {
    display: block;
    text-align: left;
  }
}

/* #送信ボタン
--------------------------*/
.radio_paid {
  display: none;
}

.checked_radio {
  display: flex;
}

/* #送信ボタン
--------------------------*/
.submit_button {
  margin-top: 15px;
}
@media (max-width: 999px) {
  .submit_button {
    margin-top: 60px;
  }
}
.submit_button:hover input {
  background-color: #b2d11e;
  color: #fff;
}

.submit_link {
  outline: none;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #b2d11e;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  width: 260px;
  padding: 15px 0;
  text-align: center;
  transition: all 0.5s ease;
}
.submit_link:hover {
  border: 2px solid #fff;
  background-color: #b2d11e;
  color: #fff;
}
.submit_link:hover .submit_link_text {
  color: #fff;
}
.submit_link:hover .submit_link_text::after {
  color: #fff;
}

.submit_link_text {
  color: #b2d11e;
  transition: all 0.5s ease;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  text-align: center;
  position: relative;
}
.submit_link_text::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  font-size: 18px;
  transition: all 0.5s ease;
  color: #b2d11e;
}

/* #送信ボタンエリア
--------------------------*/
.button_area {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  width: 74%;
  margin: 0 auto;
  justify-content: center;
  padding-bottom: 60px;
}
.button_area .submit_button {
  margin-top: 30px;
}
.button_area .submit_button:hover input {
  background-color: #b2d11e;
  color: #fff;
}
.button_area .submit_button .submit_link {
  outline: none;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #b2d11e;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  padding: 15px 0;
  width: 260px;
  text-align: center;
  margin: 0 10px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.5s ease;
  color: #b2d11e;
}
.button_area .submit_button .submit_link:hover {
  border: 2px solid #fff;
  background-color: #b2d11e;
  color: #fff;
}
.button_area .submit_button .submit_link:hover .submit_link_text {
  color: #fff;
}
.button_area .submit_button .submit_link:hover .submit_link_text::after {
  color: #fff;
}
.button_area .submit_button .submit_link.buck {
  border: 2px solid #9fa0a0;
  padding: 20px 0;
}
.button_area .submit_button .submit_link.buck .submit_link_text {
  color: #9fa0a0;
  position: relative;
}
.button_area .submit_button .submit_link.buck .submit_link_text::before {
  font-family: "Font Awesome 5 Free";
  content: "\f104";
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  color: #9fa0a0;
  font-size: 18px;
}
.button_area .submit_button .submit_link.buck .submit_link_text::after {
  display: none;
}
.button_area .submit_button .submit_link.buck:hover {
  background: #9fa0a0;
}
.button_area .submit_button .submit_link.buck:hover .submit_link_text {
  color: #fff;
}
.button_area .submit_button .submit_link.buck:hover .submit_link_text::before {
  color: #fff;
}
.button_area .submit_button .submit_link .submit_link_text {
  color: #b2d11e;
  transition: all 0.5s ease;
  font-size: 18px;
  font-weight: bold;
}
.button_area .submit_button .submit_link .submit_link_text::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  font-size: 18px;
  transition: all 0.5s ease;
  color: #b2d11e;
}
.button_area .submit_button input[type=button] {
  padding: 16px 0;
}

/* #サンクスページボタン
--------------------------*/
.thanks_button {
  border-top: 2px solid #efefef;
  padding-top: 40px;
  padding-bottom: 60px;
}
.thanks_button .cmn_button_link {
  width: 260px;
  padding: 15px 0;
  border: 2px solid #25bedd;
  background-color: #fff;
}
.thanks_button .cmn_button_link .cmn_button_link_text {
  font-size: 20px;
  color: #25bedd;
}
.thanks_button .cmn_button_link:hover {
  background-color: #25bedd;
  border: 2px solid #fff;
}
.thanks_button .cmn_button_link:hover .cmn_button_link_text {
  color: #fff;
}
@media (max-width: 999px) {
  .thanks_button {
    text-align: center;
  }
}

/* #paid確認事項
--------------------------*/
.paid_confirm_message_text {
  text-align: left;
  position: relative;
  padding-left: 20px;
  line-height: 160%;
  font-size: 14px;
}

.paid_confirm_message_text_span {
  position: absolute;
  left: 0;
}

.paid_confirm_message_link_text {
  color: #25bedd;
  padding-bottom: 2px;
}
.paid_confirm_message_link_text:hover {
  border-bottom: 1px solid #25bedd;
}

.paid_confirm_message_text .blue-text{
  color: #25bedd;
  text-decoration: underline;
}

/* #確認ページテキスト
--------------------------*/
.confirm_text {
  border-bottom: 2px solid #efefef;
  padding: 20px 20px;
  line-height: 140%;
}

.textarea_confirm {
  height: 100%;
  word-break: break-word;
  line-height: 29px;
}

/* #サンクスページテキスト
--------------------------*/
.thanks_text {
  position: relative;
  width: 75%;
  margin: 0 auto;
  padding: 30px 20px;
  padding-bottom: 10px;
  height: 330px;
}
@media (max-width: 999px) {
  .thanks_text {
    height: 100%;
  }
}
.thanks_text h2 {
  color: #25bedd;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 25px;
}
.thanks_text p {
  text-align: left;
  font-size: 14px;
  line-height: 160%;
  padding-bottom: 25px;
  position: absolute;
  z-index: 4;
}
.thanks_text .img {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 58%;
  z-index: 1;
}

/* #danger_small_text
--------------------------*/
.danger_small_text {
  font-size: 14px;
}

.under_guide .guide {
  padding: 0;
}
.under_guide .guide_page_list {
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
@media (max-width: 999px) {
  .under_guide .guide_page_list {
    padding: 50px 20px;
  }
}
.under_guide .guide_page_list .select_area form {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
}
.under_guide .guide_page_list .select_area .select_list {
  background-color: #fff;
  box-shadow: 0 0 8px #eeeeee;
  padding: 10px;
  margin: auto 0;
  margin-right: 20px;
  cursor: pointer;
}
.under_guide .guide_page_list .select_area .select_list select {
  border: none;
  color: #25bedd;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  cursor: pointer;
}
@media (max-width: 999px) {
  .under_guide .guide_page_list .select_area .select_button {
    text-align: left;
    width: 100%;
    padding-top: 20px;
  }
}
.under_guide .guide_page_list .select_area .select_button input {
  color: #25bedd;
  background-color: #fff;
  border: 2px solid #25bedd;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.5s ease;
}
.under_guide .guide_page_list .select_area .select_button input:hover {
  background-color: #25bedd;
  color: #fff;
}
.under_guide .pager {
  padding-top: 30px;
}
.under_guide .pager .pagination {
  text-align: center;
  line-height: 0;
}
.under_guide .pager .pagination li {
  display: inline;
  margin: 0 1px;
  padding: 0;
  display: inline-block;
  width: 30px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background-color: #fff;
}
.under_guide .pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  transition: all 0.3s ease;
}
.under_guide .pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  transform: none;
}
.under_guide .pager .pagination li a:hover {
  color: #fff;
  background: #25bedd;
}
.under_guide .pager .pagination li .active {
  color: #fff;
  background: #25bedd;
}
.under_guide .pager .pagination .pre,
.under_guide .pager .pagination .next {
  width: 70px;
}

@media (max-width: 999px) {
  .guide_page_main {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

/*==================================================================
# シングルページ
===================================================================*/
.single_guide_content {
  padding: 50px 40px;
  padding-bottom: 10px;
  background-color: #fff;
}
.single_guide_content .under_page_title {
  text-align: left;
  list-style: 180%;
  font-size: 36px;
  line-height: 140%;
}
.single_guide_content .headingPost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.single_guide_content .headingPost .date_time {
  text-align: left;
  font-size: 12px;
  padding-bottom: 30px;
}
.single_guide_content .img {
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.single_guide_content .img img {
  width: 90%;
}
.single_guide_content .under_page_text {
  text-align: left;
  line-height: 180%;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 35px;
}
.single_guide_content .under_page_text.top_title {
  margin-top: 40px;
  margin-bottom: 30px;
}
.single_guide_content .single_page_list {
  padding: 30px 35px;
  background-color: #fafafa;
  box-shadow: 0 0 8px #eeeeee;
}
.single_guide_content .single_page_list .list_title {
  font-size: 18px;
  text-align: center;
  color: #25bedd;
  font-weight: bold;
  padding-bottom: 20px;
}
.single_guide_content .single_page_area {
  margin-top: 60px;
}
.single_guide_content .single_page_area .single_guide_h3 {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 15px;
  background-color: #e6eef1;
  border-left: 4px solid #25bedd;
}

.item_list_item {
  padding-bottom: 15px;
  font-size: 16px;
}
.item_list_item a span {
  margin-right: 10px;
}
.item_list_item + .item_list_item:hover a {
  color: #25bedd;
}

/*==================================================================
# 料金
===================================================================*/
/* #料金スライダー
================================================*/
.price_content {
  padding: 120px 0;
  background-color: #eeeeee;
}

.price_box {
  background-color: #fff;
  margin-top: 50px;
}
@media (max-width: 999px) {
  .price_box {
    margin: 50px 20px 0 20px;
  }
}

.price_tab_area {
  padding: 60px 0;
  padding-bottom: 45px;
}

.price_tab {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.price_tab_item {
  border: 2px solid #25bedd;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  color: #25bedd;
  padding: 10px 50px;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  transition: 0.3s;
}
.price_tab_item.active {
  color: #fff;
  background: #25bedd;
  cursor: auto;
}
.price_tab_item:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media (max-width: 999px) {
  .price_tab_item {
    padding: 10px 25px;
  }
}

.slider_text {
  text-align: center;
}

.slider_text_p {
  font-size: 16px;
  padding-bottom: 15px;
}

.amount_input {
  position: relative;
  display: inline-block;
}
.amount_input input {
  border: none;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .amount_input input {
    width: 90%;
  }
}

.slider_case {
  position: absolute;
  top: 18px;
  right: 130px;
  font-size: 18px;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .slider_case {
    right: 20%;
  }
}

#box_slider {
  width: 600px;
  height: 6px;
  margin: 20px auto;
  position: relative;
  background: #ececec;
  border: none;
}
@media (max-width: 999px) {
  #box_slider {
    width: 80%;
  }
}
#box_slider:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f103";
  font-weight: bold;
  transform: translate(-50%, 0);
  bottom: -80px;
  left: 50%;
  color: #b1deea;
  font-size: 40px;
  font-weight: bold;
}
#box_slider .ui-slider-handle {
  outline: none;
  background-image: url(../img/under/03_price/slider_icon.png);
  background-color: #fff;
  width: 35px;
  height: 35px;
  border: none;
  top: -14px;
}
@media (max-width: 999px) {
  #box_slider .ui-slider-handle {
    background-image: url(../img/under/03_price/slider_icon_sp.png);
  }
}
#box_slider .ui-slider-range {
  background: #25bedd;
}
#box_slider .point {
  position: absolute;
  top: -8px;
  left: -5px;
  z-index: 2;
}
#box_slider .point_after {
  position: absolute;
  top: -8px;
  right: -5px;
  z-index: 2;
}

.area_price {
  padding: 40px 0;
}

.price_wrap.content {
  display: none;
}
.price_wrap.show {
  display: block;
}
@media (max-width: 999px) {
  .price_wrap {
    border: none;
  }
}

.price_wrap_box {
  margin: 40px 40px 0 40px;
}
@media (max-width: 999px) {
  .price_wrap_box {
    margin: 40px 20px 0;
  }
}

.price_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  border: 2px solid #efefef;
}
@media (max-width: 999px) {
  .price_list {
    display: block;
    border: none;
  }
}

.price_list_form {
  width: 33.3%;
}
.price_list_form:last-child .price_list_item .price_list_text, .price_list_form:last-child .price_value, .price_list_form:last-child .list {
  border-right: none;
}
.price_list_form:last-child .price_list_item .pc_list {
  border-right: none;
}
.price_list_form + .price_list_form .price_pc_list {
  border-left: 2px solid #efefef;
}
.price_list_form + .price_list_form .price_value {
  border-left: 2px solid #efefef;
}
@media (max-width: 999px) {
  .price_list_form + .price_list_form .price_value {
    border-left: none;
  }
}
.price_list_form + .price_list_form .price_list_text {
  border-left: 2px solid #fff;
}
@media (max-width: 999px) {
  .price_list_form + .price_list_form .price_list_text {
    border-left: none;
  }
}
@media (max-width: 999px) {
  .price_list_form {
    border: 2px solid #efefef;
    width: 100%;
  }
  .price_list_form + .price_list_form {
    margin-top: 20px;
  }
}

.price_list_text {
  background-color: #25bedd;
  padding: 25px 0;
  text-align: center;
}
@media (max-width: 999px) {
  .price_list_text {
    padding: 25px 30px;
    border-right: none;
  }
}

.price_list_text_h3 {
  font-size: 24px;
  padding-bottom: 10px;
  color: #fff;
}

.price_list_text_p {
  font-size: 15px;
  line-height: 160%;
  color: #fff;
}

.price_value {
  padding: 20px 40px 30px 40px;
  text-align: center;
  font-size: 18px;
  border-bottom: 2px solid #efefef;
}
@media (max-width: 999px) {
  .price_value {
    padding: 30px 40px;
    border-right: none;
  }
}

.connoisseur {
  padding-top: 10px;
  padding-bottom: 15px;
}
@media (max-width: 999px) {
  .connoisseur {
    padding: 15px 0;
  }
}

.price_value_input {
  margin: 0 auto;
  display: inline-block;
}

.value_price {
  border: none;
  font-size: 40px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .value_price {
    width: 90%;
  }
}

.price_cmn_button {
  border: none;
}
@media (max-width: 999px) {
  .price_cmn_button {
    padding: 10px 15px;
  }
}

.price_cmn_button_link {
  width: 220px;
  padding: 5px 0;
  outline: none;
}
@media (max-width: 999px) {
  .price_cmn_button_link {
    width: 100%;
    border: none;
    font-weight: bold;
    background-color: #fff100;
    color: #666666;
  }
}

.price_cmn_button_link_text {
  font-size: 17px;
}

/* #税込み表記
--------------------------*/
.price_danger_text {
  padding-bottom: 10px;
  text-align: right;
}
@media (max-width: 999px) {
  .price_danger_text {
    padding-bottom: 5px;
  }
}

.note {
  font-size: 10px;
}

/* #pcリスト
--------------------------*/
.price_pc_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 999px) {
  .price_pc_list {
    display: none;
  }
}

.price_list_left {
  flex: 0 0 50%;
  border-right: 2px solid #efefef;
}

.price_list_left_item {
  font-size: 14px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  height: 50px;
}
.price_list_left_item + .price_list_left_item {
  border-top: 2px solid #efefef;
}

.price_list_right {
  flex: 0 0 50%;
}

.price_list_right_item {
  font-size: 14px;
  padding: 20px 0;
  text-align: center;
  height: 50px;
}
.price_list_right_item + .price_list_right_item {
  border-top: 2px solid #efefef;
  align-items: center;
  display: grid;
}

/* #sp版
================================================*/
.price_sp_list {
  display: none;
}
@media (max-width: 999px) {
  .price_sp_list {
    display: block;
  }
}

.open_list {
  background-color: #eeeeee;
  width: 100%;
  font-weight: bold;
  color: #666666;
  font-size: 20px;
  text-align: center;
  padding: 20px 0;
  cursor: pointer;
}
.open_list:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: bold;
}
.open_list.slide:before {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  font-weight: bold;
}

.close_list {
  display: none;
}

.price_close_box {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
}

/* #機能紹介
================================================*/
.price_function_content {
  background-color: #fafafa;
}

.price_function_box {
  margin-top: 50px;
}

.pc_table {
  border-collapse: collapse;
}
@media (max-width: 999px) {
  .pc_table {
    display: none;
  }
}

.head_list {
  background-color: #25bedd;
  width: 22%;
  border-right: 2px solid #fff;
  padding: 30px 20px 20px 20px;
  font-size: 24px;
}
.head_list:last-child {
  border: none;
}
.head_list.blank {
  background-color: #fafafa;
  width: 30%;
}

.head_list_h3 {
  margin-bottom: 20px;
  color: #fff;
}

.price_function_cmn_button_link {
  width: 180px;
  padding: 7px 0;
  font-size: 16px;
  background-color: #fff;
  border: 2px solid #25bedd;
}
.price_function_cmn_button_link:hover {
  border: 2px solid #fff;
  background-color: #25bedd;
}
.price_function_cmn_button_link:hover .price_function_cmn_button_link_text {
  color: #fff;
}

.price_function_cmn_button_link_text {
  color: #25bedd;
}

.price_function_body_th, .price_function_body_td {
  border: 2px solid #efefef;
  font-size: 16px;
  padding: 15px 20px;
}

.price_function_body_th {
  text-align: left;
}

.price_function_body_td {
  text-align: center;
}
.price_function_body_td i {
  color: #d0324b;
}

/* #sp版
================================================*/
.sp_table_wrap {
  display: none;
}
@media (max-width: 999px) {
  .sp_table_wrap {
    display: block;
  }
}

.sp_table {
  border-collapse: collapse;
  margin: 40px 20px;
}

.sp_head_list {
  background-color: #25bedd;
  width: 20%;
  border-right: 2px solid #fff;
  padding: 30px 15px;
  font-size: 24px;
  color: #fff;
}
.sp_head_list:last-child {
  border: none;
}
.sp_head_list.blank {
  background-color: #fafafa;
  width: 40%;
}

.sp_head_list_p {
  font-size: 16px;
  color: #25bedd;
  background-color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  margin-top: 20px;
}

.sp_price_function_table_th, .sp_price_function_table_td {
  border: 2px solid #efefef;
  font-size: 16px;
  padding: 20px;
}

.sp_price_function_table_th {
  text-align: left;
}

.sp_price_function_table_td {
  text-align: center;
}
.sp_price_function_table_td i {
  color: #d0324b;
}

/*==================================================================
# 機能ページ
===================================================================*/
/* #MV
================================================*/
.function_mv_txt {
  font-size: 42px;
}

/* #機能ページ - リスト
================================================*/
.function_page {
  background-color: #eeeeee;
}
@media (max-width: 999px) {
  .function_page {
    padding-top: 60px;
  }
}

.link_item {
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 20px;
  box-shadow: 0 0 8px #eeeeee;
  transition: all 0.5s ease;
}
@media (max-width: 999px) {
  .link_item {
    border-radius: 30px;
  }
}

.function_list_item_link {
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 40px 10px 20px;
  color: #25bedd;
  position: relative;
  transition: all 0.5s ease;
  display: inline-block;
}
.function_list_item_link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  position: absolute;
  transition: all 0.5s ease;
  color: #92deee;
  right: 15px;
}
.function_list_item_link:hover {
  background-color: #25bedd;
  color: #fff;
}
.function_list_item_link:hover::after {
  color: #fff;
}
@media (max-width: 639px) {
  .function_list_item_link {
    font-size: 12px;
  }
}

.green_text {
  color: #8aca6d;
}
.green_text::after {
  color: #c7e18f;
}
.green_text:hover {
  background-color: #8aca6d;
  color: #fff;
}
.green_text:hover::after {
  color: #fff;
}

/* #メインコンテンツ
================================================*/
@media (max-width: 999px) {
  .function_page_main_content {
    padding-top: 60px;
  }
}

.function_wrap {
  display: block;
  padding-top: 10px;
}

.function_container {
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 5px;
  align-items: center;
  padding: 50px 40px;
}
.function_container + .function_container {
  margin-top: 30px;
}
@media (min-width: 1000px) {
  .function_container {
    display: flex;
  }
  .function_container:nth-child(2n) .function_container_img {
    order: 1;
  }
  .function_container:nth-child(2n) .function_container_text {
    order: 0;
    padding-left: 0;
    padding-right: 40px;
  }
}
@media (max-width: 999px) {
  .function_container {
    margin-bottom: 0;
  }
  .function_container + .function_container {
    margin-top: 60px;
  }
}

.function_page_text {
  line-height: 180%;
}
@media (max-width: 999px) {
  .function_page_text {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .function_page_text {
    font-size: 20px;
  }
}

.function_container_img {
  flex: 0 0 500px;
  order: 0;
}
.function_container_img img {
  width: 100%;
}

.function_container_text {
  flex: 0 1 100%;
  order: 1;
}
@media (min-width: 1000px) {
  .function_container_text {
    text-align: left;
    padding-left: 40px;
  }
}
@media (max-width: 999px) {
  .function_container_text {
    margin-bottom: 45px;
  }
}

.function_container_text_h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 140%;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .function_container_text_h3 {
    text-align: center;
    font-size: 40px;
  }
}
@media (max-width: 639px) {
  .function_container_text_h3 {
    text-align: center;
    font-size: 30px;
  }
}

.function_container_text_p {
  text-align: left;
  line-height: 180%;
  font-size: 18px;
}
@media (max-width: 639px) {
  .function_container_text_p {
    font-size: 15px;
  }
}

/* #メール作成以下
================================================*/
#mail-deli, #list, #effect, #other {
  padding-top: 120px;
}

.function_wrap.mail-deli .function_container:nth-child(2n) .function_container_img, .function_wrap.list .function_container:nth-child(2n) .function_container_img, .function_wrap.effect .function_container:nth-child(2n) .function_container_img, .function_wrap.other .function_container:nth-child(2n) .function_container_img {
  order: 1;
}
.function_wrap.mail-deli .function_container:nth-child(2n) .function_container_text, .function_wrap.list .function_container:nth-child(2n) .function_container_text, .function_wrap.effect .function_container:nth-child(2n) .function_container_text, .function_wrap.other .function_container:nth-child(2n) .function_container_text {
  order: 0;
}
.function_wrap.mail-deli .function_container_img, .function_wrap.list .function_container_img, .function_wrap.effect .function_container_img, .function_wrap.other .function_container_img {
  flex: 0 0 280px;
  order: 0;
}
.function_wrap.mail-deli .function_container_img.other_img, .function_wrap.list .function_container_img.other_img, .function_wrap.effect .function_container_img.other_img, .function_wrap.other .function_container_img.other_img {
  flex: 0 0 480px;
}
.function_wrap.mail-deli .function_container_text_h3, .function_wrap.list .function_container_text_h3, .function_wrap.effect .function_container_text_h3, .function_wrap.other .function_container_text_h3 {
  font-size: 34px;
  margin-bottom: 25px;
}
@media (max-width: 639px) {
  .function_wrap.mail-deli .function_container_text_h3, .function_wrap.list .function_container_text_h3, .function_wrap.effect .function_container_text_h3, .function_wrap.other .function_container_text_h3 {
    font-size: 30px;
  }
}

.mail-deli .function_container, .effect .function_container {
  box-shadow: 0 0 20px #eeeeee;
}

.list .function_container, .other .function_container {
  box-shadow: 0 0 8px #e7e7e7;
}

@media (max-width: 999px) {
  #other {
    padding-bottom: 120px;
  }
}

/*==================================================================
# APIについて
===================================================================*/
/* #リスト
================================================*/
.api_tab_item {
  color: #25bedd;
  cursor: pointer;
}

article.panel {
  display: none;
}
article.is-show {
  display: block;
}

.api_wrap {
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 8px #e7e7e7;
}

.api_container {
  margin-bottom: 40px;
}
.api_container:last-child {
  margin-bottom: 20px;
}

.api_h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.api_code {
  font-size: 14px;
  padding: 15px 20px;
  background-color: #2a2f36;
}

.code_text {
  color: #fff;
}

/* #できること
--------------------------*/
.api_can_wrap {
  margin-top: 35px;
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .api_can_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
  }
}
@media (max-width: 999px) {
  .api_can_wrap {
    margin: 0 20px;
  }
}

.api_can_container {
  width: 30.3%;
  margin-right: 30px;
  margin-bottom: 0;
}
.api_can_container:last-child {
  margin-right: 0;
}
@media (max-width: 999px) {
  .api_can_container {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-shrink: 0;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 55px;
    border-bottom: 1px solid #d6d6d6;
    border-top: 0;
  }
  .api_can_container:last-child {
    border-bottom: 1px solid #d6d6d6;
  }
}

.api_can_img {
  width: 65%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.api_can_img img {
  border-radius: 50%;
  width: 100%;
}
@media (max-width: 999px) {
  .api_can_img {
    width: 30%;
    margin: 0;
    margin-right: 30px;
  }
}

.api_can_text {
  text-align: center;
}
@media (max-width: 999px) {
  .api_can_text {
    width: 60%;
  }
}

.api_can_text_h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .api_can_text_h3 {
    text-align: left;
    font-size: 28px;
    line-height: 160%;
  }
  .api_can_text_h3::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
  }
  .api_can_text_h3::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
  }
}
@media (max-width: 639px) {
  .api_can_text_h3 {
    font-size: 20px;
  }
}

.api_can_text_p {
  font-size: 15px;
  line-height: 170%;
}
@media (max-width: 999px) {
  .api_can_text_p {
    text-align: left;
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .api_can_text_p {
    font-size: 15px;
  }
}

/* #ログイン・ログアウト
================================================*/
/* #タブコンテンツ
--------------------------*/
.login_box {
  margin-top: 50px;
}
@media (max-width: 999px) {
  .login_box {
    margin: 50px 20px 0 20px;
  }
}

.login_tab {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
}

.login_tab_item {
  padding: 25px 70px;
  font-size: 18px;
  background-color: #fafafa;
  border-top: 4px solid #8aca6d;
  margin-right: 5px;
  border-radius: 6px 5px 0 0;
  color: #666666;
  font-weight: bold;
  cursor: pointer;
}
.login_tab_item.active {
  background-color: #fff;
}
.login_tab_item:last-child {
  border-top: 4px solid #f79332;
}
@media (max-width: 999px) {
  .login_tab_item {
    padding: 20px 30px;
  }
}

/* #コンテンツ内容
--------------------------*/
@media (max-width: 999px) {
  .tab_content_area {
    padding-bottom: 120px;
  }
}

.login_wrap {
  background-color: #fff;
  padding: 50px 45px;
}
@media (min-width: 1000px) {
  .login_wrap {
    margin-bottom: 20px;
  }
}
@media (max-width: 999px) {
  .login_wrap {
    padding: 50px 30px;
  }
}
.login_wrap.content {
  display: none;
}
.login_wrap.show {
  display: block;
}

/* #login-list-box
--------------------------*/
.login_list_box {
  margin-bottom: 40px;
  border: 1px solid #eee;
  padding: 20px;
}

.login_list_box_item {
  font-size: 18px;
}
.login_list_box_item + .login_list_box_item {
  margin-top: 10px;
}

/* #login-text
------------*/
.login_text {
  margin-bottom: 30px;
  text-align: center;
  line-height: 150%;
  font-size: 18px;
}
.login_text.text-left {
  text-align: left;
}
@media (max-width: 999px) {
  .login_text {
    text-align: left;
  }
}
@media (max-width: 639px) {
  .login_text {
    font-size: 15px;
  }
}

/* #login-code
------------*/
.login_code_box {
  margin-bottom: 70px;
}
.login_code_box:last-child {
  margin-bottom: 30px;
}

.login_code_box_h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.login_code_box_api {
  font-size: 14px;
  padding: 15px 20px;
  background-color: #2a2f36;
  color: #fff;
  line-height: 20px;
}
@media (max-width: 999px) {
  .login_code_box_api {
    overflow: scroll;
  }
}

.login_code_box_api_p {
  color: #fff;
}

/* #container
------------*/
.login_container + .login_container {
  margin-top: 70px;
}

.login_container_h3 {
  font-size: 36px;
  color: #8aca6d;
  padding-top: 10px;
  margin-bottom: 20px;
}
.login_container_h3.orange_text {
  color: #f79332;
}
@media (max-width: 639px) {
  .login_container_h3 {
    font-size: 30px;
  }
}

/* #login-child
------------*/
.login_child {
  margin-top: 50px;
}

.login_child_box + .login_child_box {
  margin-top: 70px;
}

.login_child_box_h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.login_h4 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2c2c2c;
}
@media (max-width: 999px) {
  .login_h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .login_h4 {
    font-size: 25px;
  }
}

/* #テーブル
------------*/
.login_table {
  width: 100%;
  text-align: left;
}

.login_table_th {
  background-color: #eeeeee;
  padding: 20px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  color: #2c2c2c;
  line-height: 160%;
}
@media (max-width: 999px) {
  .login_table_th {
    padding: 10px;
  }
}
@media (max-width: 639px) {
  .login_table_th {
    font-size: 12px;
  }
}

.login_table_td {
  background-color: #fafafa;
  padding: 20px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  color: #2c2c2c;
  line-height: 160%;
}
.login_table_td.bgc-gray {
  background-color: #eeeeee;
  width: 20%;
}
@media (max-width: 999px) {
  .login_table_td {
    padding: 10px;
  }
}
@media (max-width: 639px) {
  .login_table_td {
    font-size: 12px;
  }
}

/*==================================================================
# すべての機能ページ
===================================================================*/
@media (max-width: 999px) {
  .all_function_page_main {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 999px) {
  .all_function_wrap {
    margin: 0 20px;
  }
}

.all_function_container {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 5px;
  box-shadow: 0 0 8px #e7e7e7;
}
.all_function_container + .all_function_container {
  margin-top: 60px;
}

/* #all-function-box
================================================*/
.all_function_box {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  flex-shrink: 0;
  border-bottom: 2px solid #e3efcd;
  padding: 0 40px 20px 40px;
}

.all_function_container_img {
  margin-right: 10px;
}

.all_function_container_text_h3 {
  font-size: 30px;
  color: #8aca6d;
  margin: auto 0;
}

/* #all-function-table
================================================*/
.all_function_table {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .all_function_table {
    display: block;
  }
  .all_function_table thead, .all_function_table tbody, .all_function_table tr, .all_function_table th, .all_function_table td {
    display: block;
    width: 100%;
  }
}

.all_function_table_tr + .all_function_table_tr .all_function_table_td {
  border-top: 2px solid #efefef;
}
@media (max-width: 999px) {
  .all_function_table_tr + .all_function_table_tr .all_function_table_td {
    border-top: none;
  }
}
.all_function_table_tr + .all_function_table_tr .all_function_table_th {
  border-top: 2px solid #efefef;
}

.all_function_table_th, .all_function_table_td {
  padding: 25px 0;
  font-size: 18px;
  line-height: 180%;
}

.all_function_table_th {
  width: 25%;
  vertical-align: baseline;
  text-align: left;
}

.all_function_table_td {
  width: 70%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */