@charset "UTF-8";
/* ==========================================================================
Reset
========================================================================== */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input,
select,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

b,
strong {
  font-weight: bold;
}

/* ==========================================================================
Variables & Mixins
========================================================================== */
.blue {
  color: #00bfb3;
}

.org {
  color: #fb8007;
}

.grn {
  color: #7bbf64;
}

.purp {
  color: #895fa5;
}

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

.sp {
  display: block !important;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/* ==========================================================================
共通
========================================================================== */
body {
  font-family: "Yu Gothic Medium", "Yu Gothic", YuGothic, "游ゴシック体", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}
body.off-scroll {
  overflow: hidden;
}

.lead_inner,
.about_inner,
.lead_inner,
.feature_inner,
.point_inner,
.voice_inner,
.faq_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .lead_inner,
.about_inner,
.lead_inner,
.feature_inner,
.point_inner,
.voice_inner,
.faq_inner {
    padding: 40px 6.5%;
    width: 100%;
    overflow-x: hidden;
  }
}

.text_22 {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .text_22 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.photo_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .photo_list {
    display: block;
  }
}
.photo_list li {
  width: 49.5%;
}
@media screen and (max-width: 768px) {
  .photo_list li {
    width: 100%;
    margin-bottom: 5px;
  }
}

.btn {
  background: #00bfb3;
  color: #fff;
  border: solid 5px #fff;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn {
    border: solid 3px #fff;
    border-radius: 15px;
  }
}
.btn a {
  display: block;
}
.btn:hover {
  background: #7bbf64;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .btn:hover {
    background: #00bfb3;
  }
}

.btn_float_box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn_float_box {
    bottom: 10px;
    right: 10px;
  }
}
.btn_float_box .btn_float {
  background: #00bfb3;
  color: #fff;
  border: solid 4px #fff;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 0 auto;
  width: 160px;
  padding: 30px 0px 39px;
  line-height: 1.2;
  font-size: 20px;
  text-align: center;
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .btn_float_box .btn_float {
    font-size: 14px;
    border-radius: 15px;
    padding: 20px 0px 25px;
    width: 110px;
    border: solid 3px #fff;
  }
}
.btn_float_box .btn_float:hover {
  background: #7bbf64;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .btn_float_box .btn_float:hover {
    background: #00bfb3;
  }
}
.btn_float_box .btn_float::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: -60px;
  margin: auto 0;
  right: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .btn_float_box .btn_float::before {
    bottom: -45px;
    width: 9px;
    height: 9px;
  }
}

.btn_float_box.show {
  opacity: 1;
}

/* ==========================================================================
アニメーション
========================================================================== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.anim.is-show {
  opacity: 1;
  transform: translateY(0);
}

.trig {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.trig.is-show {
  opacity: 1;
}

.animout {
  opacity: 1;
  transition: opacity 0.6s ease-out;
}
.animout.is-out {
  opacity: 0;
}

.anim-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.8s ease-out, transform 0.8s ease-out;
}
.anim-left.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
Header
========================================================================== */
.header {
  background-color: #fff;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
}
.header_inner {
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header_inner {
    padding: 0 10px;
  }
}
.header_inner .header_logo img {
  height: 50px;
  display: block;
}
@media screen and (max-width: 768px) {
  .header_inner .header_logo img {
    height: 25px;
  }
}
.header_inner .header_nav .hamburger-overlay {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .hamburger-overlay {
    top: 5px;
    width: 50px;
    height: 50px;
    right: 10px;
  }
}
.header_inner .header_nav .hamburger-overlay__line {
  position: absolute;
  left: 12px;
  width: 36px;
  height: 3px;
  background-color: #333;
  transition: all 0.6s;
  border-radius: 2px;
}
.header_inner .header_nav .hamburger-overlay__line:nth-of-type(1) {
  top: 18px;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .hamburger-overlay__line:nth-of-type(1) {
    top: 13px;
  }
}
.header_inner .header_nav .hamburger-overlay__line:nth-of-type(2) {
  top: 28.5px;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .hamburger-overlay__line:nth-of-type(2) {
    top: 24px;
  }
}
.header_inner .header_nav .hamburger-overlay__line:nth-of-type(3) {
  top: 39px;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .hamburger-overlay__line:nth-of-type(3) {
    top: 35px;
  }
}
.header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(10.5px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
}
.header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-10.5px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}
.header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.header_inner .header_nav .nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/smileitplus_bg_nav.png) no-repeat center center;
  background-size: cover;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  z-index: 900;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .nav-overlay {
    height: 100vh;
  }
}
.header_inner .header_nav .nav-overlay.active {
  transform: translateX(0);
}
.header_inner .header_nav .nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.header_inner .header_nav .nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_inner .header_nav .nav-overlay__item {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateX(0);
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(1) .nav-overlay__link {
    font-size: 20px;
    padding: 0px 0px 18px;
    margin-bottom: 0px;
    line-height: 1.5;
  }
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.6s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.7s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.8s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.9s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(6) {
  transition-delay: 1s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(7) {
  transition-delay: 1.1s;
}
.header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(8) {
  transition-delay: 1.2s;
}
.header_inner .header_nav .nav-overlay__link {
  display: inline-block;
  padding: 20px 10px;
  color: #000;
  margin-bottom: 10px;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 768px) {
  .header_inner .header_nav .nav-overlay__link {
    font-size: 20px;
    padding: 18px 0px;
    margin-bottom: 0px;
    line-height: 1.5;
  }
}
.header_inner .header_nav .nav-overlay__link:hover {
  color: #00bfb3;
}

/* ==========================================================================
kv
========================================================================== */
.kv .kv_inner {
  width: 100%;
  position: relative;
}
.kv .kv_inner .kv_img {
  position: relative;
  z-index: 10;
}

/* ==========================================================================
lead
========================================================================== */
.lead {
  background: url(../img/smileitplus_bg_01.png) repeat-y;
  background-size: contain;
}
.lead .btn {
  width: 700px;
  padding: 18px 0;
  font-size: 28px;
  margin: -40px auto 0;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .lead .btn {
    margin: -13px auto 0;
    width: 80%;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
  }
}
.lead .lead_inner {
  padding: 70px 0 300px;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner {
    padding: 30px 6.5% 160px;
  }
}
.lead .lead_inner .lead_ttl_cont {
  text-align: center;
}
.lead .lead_inner .lead_ttl_cont .lead_ttl {
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_ttl_cont .lead_ttl {
    font-size: 22px;
  }
}
.lead .lead_inner .lead_ttl_cont .lead_description {
  font-size: 22px;
  line-height: 1.7;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_ttl_cont .lead_description {
    font-size: 18px;
    padding: 20px 0;
    line-height: 35px;
  }
}
.lead .lead_inner .lead_ttl_cont .lead_subttl {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_ttl_cont .lead_subttl {
    font-size: 20px;
  }
}
.lead .lead_inner .lead_content_flex {
  display: flex;
  justify-content: space-between;
  background: #ecedec;
  padding: 50px 60px;
  border-radius: 20px;
  margin: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_content_flex {
    display: block;
    margin: 30px 0 0;
    border-radius: 15px;
    padding: 25px 20px;
  }
}
.lead .lead_inner .lead_content_flex .lead_content_flex_txt {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_content_flex .lead_content_flex_txt {
    width: 100%;
  }
}
.lead .lead_inner .lead_content_flex .lead_content_flex_txt .lead_ttl {
  font-size: 28px;
  padding-bottom: 20px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_content_flex .lead_content_flex_txt .lead_ttl {
    font-size: 20px;
    padding-bottom: 10px;
  }
}
.lead .lead_inner .lead_content_flex .lead_content_flex_img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .lead .lead_inner .lead_content_flex .lead_content_flex_img {
    width: 75%;
    margin: 10px auto 0;
  }
}

/* ==========================================================================
feature
========================================================================== */
.feature {
  background: url(../img/smileitplus_bg_02.png) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.feature .feature_inner {
  padding: 80px 0 0;
  position: relative;
  margin: -150px auto 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner {
    padding: 50px 6.5% 0;
    margin: -100px auto 0;
  }
}
.feature .feature_inner::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_nikomaru_01.png) no-repeat;
  background-size: contain;
  width: 15%;
  height: 190px;
  top: -50px;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner::after {
    width: 17%;
    height: 100px;
    top: 15px;
    right: 10px;
  }
}
.feature .feature_inner .feature_deco {
  position: relative;
  z-index: 1;
}
.feature .feature_inner .feature_deco::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_feature_deco_02.png) no-repeat;
  background-size: contain;
  width: 40%;
  height: 400px;
  top: 0%;
  right: -20%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_deco::after {
    width: 50%;
    height: 270px;
    top: 5%;
    right: -20%;
  }
}
.feature .feature_inner .feature_deco::before {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_feature_deco_01.png) no-repeat;
  background-size: contain;
  width: 40%;
  height: 420px;
  bottom: 11%;
  left: -9%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_deco::before {
    width: 40%;
    height: 190px;
    bottom: 0%;
    left: -12%;
  }
}
.feature .feature_inner .feature_ttl_box {
  margin: -90px 0 0;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_ttl_box {
    margin: -50px 0 0;
  }
}
.feature .feature_inner .feature_ttl_box .feature_subttl {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_ttl_box .feature_subttl {
    font-size: 20px;
  }
}
.feature .feature_inner .feature_ttl_box .feature_ttl {
  font-size: 60px;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_ttl_box .feature_ttl {
    font-size: 30px;
  }
}
.feature .feature_inner .feature_ttl_box .feature_text {
  line-height: 1.8;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_ttl_box .feature_text {
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 1.9;
  }
}
.feature .feature_inner .feature_list {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list {
    width: 100%;
  }
}
.feature .feature_inner .feature_list .feature_ul {
  display: flex;
  padding: 50px 0 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_ul {
    padding: 10px 0 10px;
  }
}
.feature .feature_inner .feature_list .feature_ul li {
  position: absolute;
  width: 35%;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_ul li {
    width: 49%;
  }
}
.feature .feature_inner .feature_list .feature_ul li:nth-child(1) {
  top: 300px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_ul li:nth-child(1) {
    top: 170px;
  }
}
.feature .feature_inner .feature_list .feature_ul li:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.feature .feature_inner .feature_list .feature_ul li:nth-child(3) {
  top: 300px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_ul li:nth-child(3) {
    top: 170px;
  }
}
.feature .feature_inner .feature_list .feature_arrow {
  position: relative;
}
.feature .feature_inner .feature_list .feature_arrow .arrow img {
  position: absolute;
  width: 8%;
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_arrow .arrow img {
    width: 9%;
  }
}
.feature .feature_inner .feature_list .feature_arrow .arrow img:nth-child(1) {
  top: 140px;
  left: 180px;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_arrow .arrow img:nth-child(1) {
    top: 115px;
    left: 16%;
  }
}
.feature .feature_inner .feature_list .feature_arrow .arrow img:nth-child(2) {
  top: 135px;
  left: 547px;
  transform: rotate(82deg);
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_arrow .arrow img:nth-child(2) {
    left: 75%;
    top: 110px;
  }
}
.feature .feature_inner .feature_list .feature_photo {
  position: relative;
}
.feature .feature_inner .feature_list .feature_photo img {
  display: block;
  margin: 200px auto 0;
  width: 40%;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .feature .feature_inner .feature_list .feature_photo img {
    margin: 285px auto 0;
    width: 45%;
  }
}

/* ==========================================================================
point
========================================================================== */
.point .point_inner .point_subttl {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_subttl {
    line-height: 1.5;
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .point .point_inner .point_subttl {
    font-size: 24px;
  }
}
.point .point_inner .point_subttl .small {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_subttl .small {
    font-size: 24px;
  }
}
.point .point_inner .point_subttl .org {
  font-weight: 600;
}
.point .point_inner .point_ttl {
  text-align: center;
  font-size: 70px;
  font-weight: 600;
  position: relative;
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_ttl {
    font-size: 45px;
    padding: 0px 0 80px;
    line-height: 1.3;
  }
}
.point .point_inner .point_ttl::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_point_deco_01.png) no-repeat;
  background-size: contain;
  width: 8%;
  height: 15%;
  left: 50%;
  bottom: 65px;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_ttl::after {
    width: 15%;
    height: 15%;
    left: 50%;
    bottom: 55px;
  }
}
.point .point_inner .point_ttl .small_l {
  font-size: 50px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_ttl .small_l {
    font-size: 32px;
  }
}
.point .point_inner .point_ttl .small {
  font-size: 55px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_ttl .small {
    font-size: 35px;
  }
}
.point .point_inner .point_list .point_card {
  padding: 90px 0 90px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card {
    padding: 50px 0;
  }
}
.point .point_inner .point_list .point_card .point_card_ttl {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_ttl {
    font-size: 20px;
    padding-bottom: 10px;
  }
}
.point .point_inner .point_list .point_card .point_card_ttl::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_point_n01.png) no-repeat;
  background-size: contain;
  width: 13%;
  height: 150%;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_ttl::after {
    width: 70px;
    height: 70px;
    left: 50%;
    bottom: 55px;
  }
}
.point .point_inner .point_list .point_card:nth-child(2) .point_card_ttl::after {
  background-image: url(../img/smileitplus_point_n02.png);
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card:nth-child(2) .point_card_ttl::after {
    bottom: 90px;
  }
}
.point .point_inner .point_list .point_card:nth-child(3) .point_card_ttl::after {
  background-image: url(../img/smileitplus_point_n03.png);
}
.point .point_inner .point_list .point_card:nth-child(4) .point_card_ttl::after {
  background-image: url(../img/smileitplus_point_n04.png);
}
.point .point_inner .point_list .point_card .point_card_text {
  padding: 0 0 40px;
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_text {
    padding: 0 0 30px;
    font-size: 16px;
  }
}
.point .point_inner .point_list .point_card .point_card_text_centr {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_text_centr {
    font-size: 16px;
  }
}
.point .point_inner .point_list .point_card .point_card_comment {
  background: #ecedec;
  border-radius: 30px;
  padding: 40px 35px 40px 150px;
  width: 900px;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_comment {
    width: 100%;
    border-radius: 15px;
    padding: 30px 20px 30px 20px;
    margin-top: 30px;
  }
}
.point .point_inner .point_list .point_card .point_card_comment::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_point_photo_05.png) no-repeat;
  background-size: contain;
  width: 30%;
  height: 56%;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_comment::after {
    width: 50%;
    height: 22%;
    left: auto;
    bottom: 0;
    top: -9%;
    top: -35px;
    right: -40%;
  }
}
.point .point_inner .point_list .point_card .point_card_comment .comment_ttl {
  font-size: 22px;
  padding-bottom: 15px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_comment .comment_ttl {
    font-size: 17px;
    padding-bottom: 15px;
  }
}
.point .point_inner .point_list .point_card .point_card_comment p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card .point_card_comment p {
    font-size: 16px;
  }
}
.point .point_inner .point_list .point_card:nth-child(2) .point_cont_list_ul li {
  position: relative;
}
.point .point_inner .point_list .point_card:nth-child(2) .point_cont_list_ul li:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 45px solid #895fa5;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card:nth-child(2) .point_cont_list_ul li:nth-child(2)::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #895fa5;
    border-bottom: 0;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }
}
.point .point_inner .point_list .point_card:nth-child(2) .point_cont_list_ul li:nth-child(3)::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 45px solid #895fa5;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card:nth-child(2) .point_cont_list_ul li:nth-child(3)::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #895fa5;
    border-bottom: 0;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }
}
.point .point_inner .point_list .point_card:nth-child(4) {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card:nth-child(4) {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_card:last-child {
    padding: 50px 0 0;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ttl {
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  padding: 10px 0 15px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ttl {
    font-size: 20px;
    padding: 0px 0 15px;
    line-height: 1.5;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ul {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ul {
    display: block;
    padding: 10px 0 0;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ul li {
  width: 31%;
  background: #ecedec;
  border-radius: 20px;
  padding: 30px 30px 30px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ul li {
    width: 100%;
    border-radius: 15px;
    padding: 10px 20px 20px;
    margin-bottom: 20px;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ul li .icon img {
  display: block;
  margin: 0 auto;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ul li .icon img {
    width: 17%;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ul li .list_ttl {
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ul li .list_ttl {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    padding: 5px 0 8px;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ul li .list_ttl span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ul li .list_ttl span {
    font-size: 16px;
  }
}
.point .point_inner .point_list .point_cont_list .point_cont_list_ul li p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .point .point_inner .point_list .point_cont_list .point_cont_list_ul li p {
    font-size: 16px;
  }
}

/* ==========================================================================
voice
========================================================================== */
.voice {
  background: linear-gradient(to bottom, #e2fcfa 0%, #fff 100%);
}
.voice .voice_inner {
  padding: 80px 0 260px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner {
    padding: 50px 6.5% 350px;
  }
}
.voice .voice_inner .voice_ttl {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_ttl {
    font-size: 22px;
    padding-bottom: 20px;
  }
}
.voice .voice_inner .voice_ttl span {
  font-size: 42px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_ttl span {
    font-size: 26px;
  }
}
.voice .voice_inner .voice_text {
  line-height: 2;
}
.voice .voice_inner .caution {
  font-size: 14px;
  padding: 20px 0 30px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .caution {
    font-size: 14px;
    padding: 5px 0 20px;
    line-height: 1.5;
  }
}
.voice .voice_inner .voice_graph_cont .voice_subttl {
  text-align: center;
  font-size: 26px;
  padding: 80px 10px 5px;
  font-weight: 600;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #00bfb3;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_graph_cont .voice_subttl {
    font-size: 20px;
    padding: 50px 0px 0px;
    border-bottom: none;
    line-height: 1.7;
    margin: 0 auto;
    margin-left: 0;
    text-align: left;
    text-decoration: underline;
    -webkit-text-decoration-color: #00bfb3;
    text-decoration-color: #00bfb3;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
}
.voice .voice_inner .voice_graph_cont .voice_subttl span {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_graph_cont .voice_subttl span {
    font-size: 23px;
  }
}
.voice .voice_inner .voice_graph_cont .voice_subttl::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_nikomaru_02.png) no-repeat;
  background-size: contain;
  width: 20%;
  height: 150px;
  top: 50px;
  right: -170px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_graph_cont .voice_subttl::after {
    width: 26%;
    height: 100px;
    top: 60px;
    right: -80px;
    z-index: 10;
  }
}
.voice .voice_inner .voice_graph_cont .voice_txt {
  width: 30%;
  margin: 20px auto 10px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_graph_cont .voice_txt {
    width: 55%;
    margin: 20px auto 20px;
  }
}
.voice .voice_inner .voice_graph_cont .caution {
  text-align: right;
  padding: 40px 0 50px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_graph_cont .caution {
    padding: 30px 0 20px;
    text-align: left;
  }
}
.voice .voice_inner .voice_graph_cont .voice_graph_ul {
  width: 90%;
  margin: 0 auto;
}
.voice .voice_inner .voice_graph_cont .btn {
  width: 600px;
  line-height: 60px;
  font-size: 22px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .voice .voice_inner .voice_graph_cont .btn {
    width: 90%;
    font-size: 20px;
    line-height: 50px;
  }
}

/* ==========================================================================
message
========================================================================== */
.message {
  position: relative;
  z-index: 10;
}
.message::before {
  content: "";
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/smileitplus_bg_02.png) no-repeat;
  background-size: cover;
  transform: scaleX(-1);
  z-index: -3;
}
@media screen and (max-width: 768px) {
  .message::before {
    background: url(../img/smileitplus_bg_02_sp.png) no-repeat;
    background-size: cover;
    transform: scaleX(1);
    top: 50px;
  }
}
.message .message_kv {
  z-index: -2;
  width: 100%;
  margin-left: auto;
  position: relative;
}
.message .message_kv .message_kv_inner_bg {
  background: #00bfb3;
  position: absolute;
  right: 0;
  width: calc(50% + 415px);
  height: 525px;
  margin-bottom: -660px;
}
@media screen and (max-width: 768px) {
  .message .message_kv .message_kv_inner_bg {
    width: calc(50% + 140px);
    height: 340px;
  }
}
.message .message_kv .message_kv_inner {
  width: 1300px;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
}
.message .message_kv .message_kv_inner .message_kv_photo {
  margin-left: auto;
  margin-top: -140px;
  width: 80%;
}
.message .message_kv .message_kv_inner .message_name_box {
  margin-top: -100px;
  width: 30%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .message .message_kv .message_kv_inner .message_name_box {
    padding: 0 15px 0;
    margin-top: -90px;
    width: 100%;
  }
}
.message .message_kv .message_kv_inner .message_name_box p {
  font-size: 15px;
  -webkit-text-stroke: 5px white;
  paint-order: stroke;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .message .message_kv .message_kv_inner .message_name_box p {
    font-size: 16px;
    text-align: right;
    -webkit-text-stroke: 3.5px white;
  }
}
.message .message_kv .message_kv_inner .message_name_box p .top {
  font-size: 14px;
}
.message .message_kv .message_kv_inner .message_name_box p .bottom {
  font-size: 10px;
}
.message .message_kv .message_kv_inner .message_ttl_box {
  margin-top: -340px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .message .message_kv .message_kv_inner .message_ttl_box {
    margin-top: -450px;
  }
}
.message .message_kv .message_kv_inner .message_ttl_box .message_ttl,
.message .message_kv .message_kv_inner .message_ttl_box .message_subttl {
  padding: 10px 20px;
  margin-bottom: 30px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  font-size: 32px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .message .message_kv .message_kv_inner .message_ttl_box .message_ttl,
.message .message_kv .message_kv_inner .message_ttl_box .message_subttl {
    font-size: 20px;
    padding: 6px 15px;
    margin-bottom: 15px;
  }
}
.message .message_kv .message_kv_inner .message_ttl_box .message_ttl .blue,
.message .message_kv .message_kv_inner .message_ttl_box .message_subttl .blue {
  font-weight: 600;
}
.message .message_kv .message_kv_inner .message_ttl_box .message_subttl {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .message .message_kv .message_kv_inner .message_ttl_box .message_subttl {
    font-size: 18px;
  }
}
.message .message_inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .message .message_inner {
    width: 100%;
    padding: 320px 6.5% 0px;
  }
}
.message .message_inner .message_name_box,
.message .message_inner .message_txt {
  max-width: 1200px;
  margin: 0 auto;
}
.message .message_inner .message_txt {
  line-height: 2.2;
  padding-top: 170px;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_txt {
    padding: 45px 0 0;
  }
}
.message .message_inner .message_content .message_content_ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  background: #00bfb3;
  color: #fff;
  text-align: center;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.3);
  margin: 80px auto 40px;
  padding: 8px 90px;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_ttl {
    width: 100%;
    font-size: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
    margin: 50px auto 20px;
    padding: 10px 10px;
    border-radius: 60px;
  }
}
.message .message_inner .message_content .message_content_list {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list {
    flex-wrap: wrap;
    padding-top: 50px;
  }
}
.message .message_inner .message_content .message_content_list .message_content_li {
  width: 20%;
  background: #fff;
  border-radius: 30px;
  padding: 0 0 30px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list .message_content_li {
    width: 100%;
    border-radius: 15px;
    padding: 0 0 20px;
    overflow: visible;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list .message_content_li:last-child {
    margin-bottom: 0px;
  }
}
.message .message_inner .message_content .message_content_list .message_content_li::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #00bfb3;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list .message_content_li::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #00bfb3;
    border-bottom: 0;
    left: 50%;
    top: auto;
    bottom: -25px;
    transform: translateX(-50%);
  }
}
.message .message_inner .message_content .message_content_list .message_content_li .list_icon {
  margin: -40px auto 20px;
  display: block;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list .message_content_li .list_icon {
    margin: -40px auto 10px;
    display: block;
    width: 18%;
  }
}
.message .message_inner .message_content .message_content_list .message_content_li .list_ttl {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 0 10px 15px;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list .message_content_li .list_ttl {
    font-size: 18px;
    padding: 0 10px 10px;
  }
}
.message .message_inner .message_content .message_content_list .message_content_li p {
  padding: 0 20px 0;
}
@media screen and (max-width: 768px) {
  .message .message_inner .message_content .message_content_list .message_content_li p {
    padding: 0 20px 0;
  }
}
.message .message_inner .message_content .message_content_list .message_content_li:last-child::after {
  content: none;
}

/* ==========================================================================
faq
========================================================================== */
.faq .faq_inner {
  padding: 250px 0 80px;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner {
    padding: 100px 6.5% 40px;
  }
}
.faq .faq_inner .faq_ttl {
  margin: 0 auto 30px;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_ttl {
    width: 85%;
    margin: 10px auto 20px;
  }
}
.faq .faq_inner .faq_list li {
  border-bottom: 1px solid #ebedeb;
  padding: 40px 0 40px 120px;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_list li {
    padding: 30px 0 30px 0px;
  }
}
.faq .faq_inner .faq_list li:last-child {
  border-bottom: none;
}
.faq .faq_inner .faq_list li .faq_item_question {
  background: #ccf2f0;
  padding: 25px 35px;
  border-radius: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_list li .faq_item_question {
    padding: 15px 15px;
    border-radius: 15px;
    margin: 0px 0 15px 45px;
  }
}
.faq .faq_inner .faq_list li .faq_item_question::after {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_faq_deco.png) no-repeat;
  background-size: contain;
  z-index: 10;
  width: 40px;
  height: 40px;
  bottom: -5px;
  left: -25px;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_list li .faq_item_question::after {
    width: 20px;
    height: 20px;
    bottom: 0px;
    left: -15px;
  }
}
.faq .faq_inner .faq_list li .faq_item_question::before {
  position: absolute;
  content: "";
  background: url(../img/smileitplus_faq_q1.png) no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  left: -110px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_list li .faq_item_question::before {
    width: 40px;
    height: 40px;
    top: 20px;
    transform: translateY(-50%);
    left: -50px;
    z-index: 10;
  }
}
.faq .faq_inner .faq_list li .faq_item_question p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_list li .faq_item_question p {
    font-size: 16px;
  }
}
.faq .faq_inner .faq_list li:nth-child(2) .faq_item_question::before {
  background-image: url(../img/smileitplus_faq_q2.png);
}
.faq .faq_inner .faq_list li:nth-child(3) .faq_item_question::before {
  background-image: url(../img/smileitplus_faq_q3.png);
}
.faq .faq_inner .faq_list li:nth-child(4) .faq_item_question::before {
  background-image: url(../img/smileitplus_faq_q4.png);
}
.faq .faq_inner .faq_list li:nth-child(5) .faq_item_question::before {
  background-image: url(../img/smileitplus_faq_q5.png);
}
.faq .faq_inner .faq_list li:nth-child(6) .faq_item_question::before {
  background-image: url(../img/smileitplus_faq_q6.png);
}
.faq .faq_inner .faq_list li:nth-child(7) .faq_item_question::before {
  background-image: url(../img/smileitplus_faq_q7.png);
}
@media screen and (max-width: 768px) {
  .faq .faq_inner .faq_list li .faq-item_answer {
    font-size: 16px;
    line-height: 1.9;
  }
}

/* ==========================================================================
contact
========================================================================== */
.contact {
  background: #fff;
}
.contact .contact_inner {
  margin: 0 auto;
  padding: 0px 0;
}
.contact .contact_inner .iframe-wrapper {
  width: 100%;
  overflow: hidden !important;
  height: 100%;
}
.contact .contact_inner .iframe-wrapper iframe {
  width: 100%;
  border: 0;
  display: block;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */