@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* -------------------------------------------------
-------------------------------------------------
*01. pc common
*02. header
*03. footer
*04. 共通CSS (第2階層)
*05. 各ページ

-------------------------------------------------
------------------------------------------------- */
/* ---------------------------

01. common

---------------------------*/
/* ------------------

フォントサイズ 

------------------ */
/* ------------------

margin-bottom 

------------------ */
/* ------------------

テキスト隠す 

------------------ */
body {
  background-color: #FFF;
  color: #444;
  font-size: 0.875rem;
  font-family: "Roboto", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sp_none {
  display: none !important;
}

#wrapper.second_wrapper {
  margin-top: 50px;
}

.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  position: relative;
  width: 92vw;
}

.section_s {
  margin-bottom: 40px !important;
}

.section_m {
  margin-bottom: 40px !important;
}

.section {
  margin-bottom: 60px !important;
}

.section_l {
  margin-bottom: 70px !important;
}

/**
* bg
*/
.bg_gray {
  background-color: #eee;
}

.bg_white {
  background-color: #FFF;
}

.border_gray {
  border: 1px solid #DDD;
}

/**
* title
*/
.tit_15 {
  font-size: 0.9375rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.tit_20 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.1875rem;
  margin-bottom: 15px;
}

.tit_23 {
  font-size: 1.4375rem;
  font-weight: bold;
  line-height: 1.875rem;
  margin-bottom: 15px;
}

.tit_30 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 2.25rem;
  margin-bottom: 30px;
}

/**
* text
*/
.text_white {
  color: #FFF;
}

.text_gray {
  color: #999999;
}

.text_red {
  color: #ff0000;
}

.text_pink {
  color: #ed5e76;
}

.text_blue {
  color: #6B8EC9 !important;
}

.text_maker_yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.text_marker_orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffd0b1));
  background: linear-gradient(transparent 60%, #ffd0b1 60%);
}

p {
  margin-bottom: 1.5em;
}

.gothic, .tit_01 span {
  font-family: "Roboto", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.gothic_en {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.mincho, .tit_01 {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.text_ss {
  font-size: 0.65625rem;
  line-height: 1.55em;
}

.text_small {
  font-size: 0.75rem;
  line-height: 1.6em;
}

.text_medium {
  font-size: 1rem;
  line-height: 2rem;
}

.text_large {
  font-size: 1.25rem;
  line-height: 2.1875rem;
}

.letter-spacing-0 {
  letter-spacing: 0;
}

.font_normal {
  font-weight: normal;
}

.float-right {
  float: right;
}

.list_circle {
  list-style: none;
  margin-bottom: 16px;
}
.list_circle li {
  padding-left: 8px;
  position: relative;
}
.list_circle li:before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0.8em;
}

.list_disc {
  list-style: none;
  margin: 0 0 0 -3px;
  padding: 0;
}
.list_disc > li {
  padding-left: 12px;
  position: relative;
}
.list_disc > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.img_w_100 {
  width: 100%;
  height: auto;
}

.img_border, .border_gray {
  border: 1px solid #DDD;
}

.link_border {
  color: #999;
  text-decoration: underline !important;
}

.sp_w_half {
  width: 43%;
}

/* button */
a.btn:link, a.btn:visited, a.btn:hover, a.btn:active,
button.btn, input[type=submit].btn {
  border-radius: 0;
  text-decoration: none;
}
a.btn:link:hover, a.btn:visited:hover, a.btn:hover:hover, a.btn:active:hover,
button.btn:hover, input[type=submit].btn:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

/* list */
.list-style-disc {
  margin-left: 3em;
}
.list-style-disc li {
  list-style: disc;
}

.list_center {
  text-align: center;
}
.list_center li {
  display: inline-block;
  margin: 0 13px;
}

/* link */
a {
  color: #444;
  cursor: pointer;
}

a:link, a:visited {
  color: #444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover, a:active {
  color: #444;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a.link_blue {
  color: #5177B7;
  text-decoration: underline;
}

a.link_blank {
  padding-right: 12px;
  position: relative;
  text-decoration: underline;
}
a.link_blank:after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  display: block;
  margin: auto 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
}

/* -------------------------------

02. header

------------------------------- */
#hdr {
  background-color: transparent;
  z-index: 100;
}
#hdr .logo {
  width: 115px;
  position: absolute;
  top: 20px;
  left: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hdr.is-fixed .logo {
  position: fixed;
}

.nav_buz {
  text-align: center;
}

.logo_buz_text {
  background-color: #2452a0;
  color: #FFF;
  padding: 5px;
}

.logo_buz {
  margin: 20px auto 0;
  max-width: 150px;
  padding-bottom: 10px;
}

.nav_border {
  border-top: 1px solid #DDD;
}

.sns_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  padding: 30px 0 0;
  width: 150px;
}
.sns_ul a {
  fill: #444;
}

/* ---------------------------

03. footer

---------------------------*/
#ftr {
  border-top: 3px solid #F5F5F5;
  padding: 30px 0 50px;
}

.download_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
}
.download_ul li {
  margin: 0 10px;
}
.download_ul .img_googleplay {
  width: 161px;
}
.download_ul .img_app {
  width: 130px;
}

.ftr_container {
  background-color: #F6F6F6;
  padding: 30px 0 70px;
  text-align: center;
}
.ftr_container p {
  font-size: 0.8125rem;
}
.ftr_container p.copyrights {
  font-size: 0.6875rem;
}

/* ---------------------------

04. 共通CSS (第2階層)

---------------------------*/
#contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 0;
}

.tit_01 {
  border-bottom: 1px solid #e0e5ed;
  color: #6B8EC9;
  font-size: 1.75rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.tit_01 span {
  font-size: 0.875rem;
  font-weight: bold;
  margin-left: 15px;
}

/* ----------------------------------------------

05. 各ページ

----------------------------------------------*/
/*  --------------------------------------

top  

--------------------------------------*/
#fullsc {
  min-height: 600px;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

#overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #6B8EC9;
  opacity: 0.2;
  z-index: 0;
  width: 100vw;
  height: 100%;
}

a.btn_register {
  background-color: #6B8EC9;
  border-bottom: 4px solid #4e76b9;
  border-radius: 10px;
  color: #FFF;
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 auto 15px;
  max-width: 315px;
  padding: 30px;
  position: relative;
  text-align: center;
  width: 84vw;
}
a.btn_register:hover {
  background-color: #8aa7d9;
  opacity: 1;
}
a.btn_register:before {
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
  display: block;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}

a.btn_register02 {
  background-color: #c3b358;
  border-bottom: 4px solid #ab9a3a;
  border-radius: 10px;
  color: #FFF;
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 auto 15px;
  max-width: 315px;
  padding: 30px;
  position: relative;
  text-align: center;
  width: 84vw;
}
a.btn_register02:hover {
  background-color: #ab9a3a;
  opacity: 1;
}
a.btn_register02:before {
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
  display: block;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}

.mainvisual_img {
  background: url(../../images/lp/mainvisual_sp.jpg) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.top_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  height: 100%;
  padding: 0;
  z-index: 2;
}

.top_text {
  margin: 125px auto 30px;
  max-width: 282px;
  width: 85.33vw;
  z-index: 2;
}

.top_contents {
  padding-bottom: 69px;
  z-index: 2;
}
.top_contents a.btn_register {
  padding: 20px;
}

.top_campagin {
  max-width: 315px;
  margin: 0 auto 3vh;
  width: 60vw;
}

.top_mainvisual_scroll {
  color: #FFF;
  position: absolute;
  right: 15px;
  bottom: 0;
  padding-bottom: 180px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  line-height: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_mainvisual_scroll:before {
  background: #FFF;
  content: "";
  position: absolute;
  left: 50%;
  top: 65px;
  display: block;
  width: 1px;
  height: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation: scroll-bar 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: scroll-bar 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes scroll-bar {
  0% {
    height: 0;
    bottom: inherit;
    top: 65px;
  }
  40% {
    height: calc(100% - 65px);
    bottom: inherit;
    top: 65px;
  }
  41% {
    height: calc(100% - 65px);
    bottom: 0;
    top: inherit;
  }
  80% {
    height: 0;
    bottom: 0;
    top: inherit;
  }
  100% {
    height: 0;
    bottom: 0;
    top: inherit;
  }
}

@keyframes scroll-bar {
  0% {
    height: 0;
    bottom: inherit;
    top: 65px;
  }
  40% {
    height: calc(100% - 65px);
    bottom: inherit;
    top: 65px;
  }
  41% {
    height: calc(100% - 65px);
    bottom: 0;
    top: inherit;
  }
  80% {
    height: 0;
    bottom: 0;
    top: inherit;
  }
  100% {
    height: 0;
    bottom: 0;
    top: inherit;
  }
}
/* 20221117 saito wrote */
.point_img01 {
  margin: 0 auto 30px;
  max-width: 375px;
  position: absolute;
  top: -80px;
  right: 0;
  left: 0;
}

.contents_content01_20221117 {
  background: url(../../images/lp/about_bg_20221117.png) top center #f4f8ff;
  background-size: cover;
  padding: 146px 0 50px;
  position: relative;
}

.contents_content02_20221117 {
  padding: 50px 0 70px;
}

.contents_content03_20221117 {
  padding: 0;
}

.tit01_20221117 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.tit01_20221117 span {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0 0 10px;
}

.media_img {
  margin: 10px 0 0;
}

/* service */
.service_box {
  border: 1px solid #e4deb6;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
}
.service_box:before {
  background-color: #faf8ea;
  border-radius: 10px 10px 0 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 10px;
}

.service_box_inner {
  padding: 10px 13px 15px;
}

.service_label {
  width: 69px;
  position: absolute;
  top: -15px;
  left: -10px;
}

.service_tag_wrap {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  background-color: #eaf2ff;
  border-radius: 4px;
  margin-bottom: 7px;
  padding: 3px 3px;
}

.service_tag {
  background-color: #6B8EC9;
  border-radius: 4px;
  color: #FFF;
  display: table;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 0.6875rem;
  margin: 0;
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
}

.service_tag_tit p, .service_tag_tit h2 {
  color: #6B8EC9;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.375rem;
  margin: 0;
}

.service_tag_tit_s {
  font-size: 0.875rem;
}

.service01_content01_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service01_content01_01 {
  width: 113px;
}

.service01_content01_02 {
  width: calc(100% - 113px);
}
.service01_content01_02 p {
  line-height: 1.4em;
}

.service01_tag_tit {
  padding: 0 13px;
}

.service01_function_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.6875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  line-height: 0.875rem;
  list-style: none;
  padding: 0;
}
.service01_function_ul li {
  margin-bottom: 8px;
  width: calc(50% - 4.5px);
}
.service01_function_ul p {
  margin: 0;
}

.service01_function_tit {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e4deb6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 8px;
  padding-bottom: 3px;
}
.service01_function_tit .service01_function_icon {
  margin-right: 7px;
  width: 22px;
}
.service01_function_tit .service01_function_tit_text {
  width: calc(100% - 29px);
}

.service02_tag, .service03_tag {
  float: left;
}

.service02_tag_tit {
  margin-left: 80px;
}

.service02_content01_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service02_content01_01 {
  width: 103px;
}

.service02_content01_02 {
  width: calc(100% - 113px);
}
.service02_content01_02 p {
  font-size: 0.65625rem;
  line-height: 1.4em;
}

.service02_img02 {
  margin: 0 auto 20px;
  width: 256px;
}

.service03_tag_tit01 {
  margin-left: 104px;
}
.service03_tag_tit01 p {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.service03_tag_tit02 {
  text-align: center;
}

.service03_tit {
  border-bottom: 1px solid #e4deb5;
  font-size: 0.875rem;
  font-weight: bold;
  padding-bottom: 5px;
}

.service03_icon01 {
  display: inline-block;
  margin-right: 10px;
  width: 21px;
}

.iframe, .movie {
  width: 100%;
  height: 180px;
}

.service04_tag {
  margin: 0 auto;
}

.service04_tag_tit01 {
  margin: 5px 0 0;
  text-align: center;
}

.conversion_area {
  margin: 0 8vw 40px;
}

/* contents */
.contents_container {
  background-color: #faf8ea;
  padding: 40px 0 0;
}

.contents_tit_02 {
  background-color: #FFF;
  border-top: 1px solid #e4deb5;
  border-bottom: 1px solid #e4deb5;
  color: #c3b358;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.375rem;
  margin-bottom: 10px;
  padding: 9px;
  position: relative;
  text-align: center;
}

.contents_box {
  margin-bottom: 40px;
}

.feature02_text01 p {
  margin-bottom: 10px;
}

.feature02_text02 {
  background-color: #FFF;
  margin-top: 10px;
  padding: 10px;
}
.feature02_text02 p {
  font-size: 0.75rem;
  line-height: 1.125rem;
  margin: 0;
}

.feature03_text01 {
  text-align: center;
}

.feature03_set {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}

.feature03_ph {
  width: 26.09%;
}

.feature03_text02 {
  width: 66%;
}
.feature03_text02 .text_small {
  margin-bottom: 5px;
}
.feature03_text02 P {
  margin: 0;
  width: 100%;
}
.feature03_text02 strong {
  color: #6B8EC9;
}

/* price */
.price_container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.tab_ul {
  list-style: none;
  padding: 0;
}
.tab_ul li {
  background-color: #eaf2ff;
  border: 2px solid #d0def5;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px 12px;
}

.tab {
  position: relative;
}
.tab:before {
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -5px;
  right: -6px;
}
.tab:after {
  border-top: 2px solid #6B8EC9;
  border-right: 2px solid #6B8EC9;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}
.tab .price_text01 {
  color: #999;
  font-size: 0.75rem;
  margin-bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab .price_text02 {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.25rem;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab .price_text03 {
  font-size: 1rem;
  margin: 0;
  text-align: right;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab .price_text04 {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab.aco_open:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  top: 2px;
  right: 0;
}
.tab.aco_open .price_text01 {
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab.aco_open .price_text02 {
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab.aco_open .price_text03 {
  margin-bottom: 10px;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab.aco_open .price_text04 {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.tab_contents {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
}
.tab_contents a.btn_register, .tab_contents a.btn_register02 {
  font-size: 0.875rem;
  padding: 16px 10px;
  width: 80%;
}

.tab_contents_tit01 {
  background-color: #FFF;
  color: #6B8EC9;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 7px;
  padding: 5px 7px;
}

.tab_contents_tit02 {
  color: #ab9a3a;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0 0 7px;
  padding: 0 7px 5px;
  text-align: center;
}

.tab_contents_text01 {
  padding: 0 7px;
}
.tab_contents_text01 p {
  margin: 0;
}
.tab_contents_text01 + .tab_contents_tit01 {
  margin-top: 7px;
}

/* concept */
.concept_bg {
  background: url(../../images/lp/concept_bg.png) top center no-repeat #f4f8ff;
  background-size: 100%;
  padding: 50px 0 0;
}

.concept_tit01 {
  margin-bottom: 10px;
  padding-top: 20px;
}

.concept_tit02 {
  color: #c3b358;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.25rem;
  margin-bottom: 8px;
  text-align: center;
}

.concept_text01 {
  margin: 5px 0;
  text-align: center;
}
.concept_text01 p {
  font-weight: bold;
  margin: 0 0 10px;
}

.concept_text02 p {
  font-size: 0.75rem;
  line-height: 1.125rem;
  margin: 0 0 10px;
  text-align: center;
}

.concept_box {
  background-color: #FFF;
  margin-bottom: 20px;
  padding: 14px;
}

.concept02_img {
  margin: 0 auto 10px;
  width: 132px;
}

/* voice */
.voice_container {
  padding: 50px 0 0;
}

.voice_box {
  background-color: #f6f6f6;
  margin-bottom: 10px;
  padding: 15px;
}
.voice_box p {
  font-size: 0.875rem;
  line-height: 1.4375rem;
  margin: 0;
}

.voice_img {
  float: left;
  margin: 0 15px 12px 0;
  width: 90px;
}

.voice_tag {
  background-color: #FFF;
  border: 1px solid #6B8EC9;
  border-radius: 20px;
  color: #6B8EC9;
  font-size: 0.75rem;
  line-height: 0.75rem;
  padding: 3px 8px 1px;
}

.voice_tit01 {
  font-size: 1rem;
  font-weight: bold;
  margin: 8px 0 3px;
}

/* faq */
.faq_bg {
  background-color: #faf8ea;
}

.faq_container {
  padding: 50px 0 20px;
}

.faq_dl {
  margin: 0 0 30px;
  padding: 0;
}
.faq_dl dt {
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.faq_dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.faq_dl .faq_q {
  color: #6B8EC9;
  font-size: 2.25rem;
  font-weight: normal;
  min-height: 38px;
  width: 38px;
}
.faq_dl .faq_a {
  color: #e07975;
  font-size: 2.25rem;
  line-height: 2.25rem;
  min-height: 38px;
  width: 38px;
}
.faq_dl .faq_text {
  width: calc(100% - 38px);
}

/* first */
.first_bg {
  background: url(../../images/lp/first_bg_20221117.png) top center;
  background-size: cover;
  margin-bottom: 30px;
  padding: 80px 0 50px;
  text-align: center;
}
.first_bg p {
  font-size: 0.8125rem;
  line-height: 1.5rem;
  margin-bottom: 2em;
}

.first_tit {
  margin: 0 auto 30px;
  width: 147px;
}
