@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #3d3d3d;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1160px;
}

@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

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

strong {
  font-weight: bold;
}

a {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

a:link {
  color: #3d3d3d;
  text-decoration: none;
  cursor: pointer;
}

a:visited {
  color: #3d3d3d;
  text-decoration: none;
}

a:hover {
  color: #3d3d3d;
  text-decoration: none;
  opacity: .7;
}

a:active {
  color: #3d3d3d;
  text-decoration: none;
}

a[href^="tel"] {
  color: #3d3d3d;
}

.contain {
  width: 1160px;
  min-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #3d3d3d;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #3d3d3d;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #3d3d3d;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #3d3d3d;
}

input::placeholder, textarea::placeholder {
  color: #3d3d3d;
}

input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #3d3d3d;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #3d3d3d;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #3d3d3d;
}

input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  color: #3d3d3d;
}

input:focus::placeholder, textarea:focus::placeholder {
  color: #3d3d3d;
}

@media screen and (min-width: 769px) {
  .u_pc {
    display: block;
  }
  .u_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u_pc {
    display: none;
  }
  .u_sp {
    display: block;
  }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_content_size
================================= */
.l_content_size_sp_1 {
  padding: 0 4%;
}

@media screen and (min-width: 1025px) {
  .l_content_size_sp_1 {
    max-width: 1160px;
    margin: 0 auto;
  }
}

.l_content_size_pc_1 {
  width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .l_content_size_pc_1 {
    width: auto;
    padding: 0 4vw;
  }
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
}

/* =================================
 l_header
================================= */
/* =================================
 l_header_sp
================================= */
/* =================================
 l_menu_sp
================================= */
/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_side
================================= */
.l_side {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  padding: calc(30/750*100vw);
}

.l_side .side_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
}

.l_side .side_list a {
  font-size: calc(24/750*100vw);
  font-weight: 500;
  color: #fff;
  width: calc(305/750*100vw);
  height: calc(90/750*100vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 45px;
}

.l_side .side_list a img {
  margin-right: calc(15/750*100vw);
}

.l_side .side_list li:nth-of-type(1) a {
  background: #1f52e6;
}

@media screen and (max-width: 768px) {
  .l_side .side_list li:nth-of-type(1) a img {
    width: calc(26/750*100vw);
  }
}

.l_side .side_list li:nth-of-type(2) a {
  background: #363636;
}

@media screen and (max-width: 768px) {
  .l_side .side_list li:nth-of-type(2) a img {
    width: calc(31/750*100vw);
  }
}

/* =================================
 l_footer
================================= */
.l_footer {
  background: url(../img/bg_footer.png) center bottom/auto no-repeat;
  position: relative;
  height: 404px;
  padding: 100px 0 40px;
}

@media screen and (max-width: 768px) {
  .l_footer {
    background: url(../img/sp/bg_footer.png) center top/100% no-repeat;
    height: calc(972/750*100vw);
    padding: calc(130/750*100vw) 0 calc(230/750*100vw);
  }
}

.l_footer .footer_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_top {
    display: block;
    margin: 0 calc(30/750*100vw) calc(80/750*100vw);
  }
}

.l_footer .footer_logo {
  margin-bottom: 44px;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_logo {
    margin-bottom: calc(80/750*100vw);
  }
}

.l_footer .footer_info {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_info {
    margin-bottom: calc(75/750*100vw);
  }
}

.l_footer .footer_info dt {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_info dt {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}

.l_footer .footer_info dd {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_info dd {
    font-size: calc(24/750*100vw);
  }
  .l_footer .footer_info dd a {
    color: #fff;
  }
}

.l_footer .footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .l_footer .footer_sns li {
    width: calc(90/750*100vw);
  }
}

.l_footer .footer_sns li + li {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_sns li + li {
    margin-left: calc(20/750*100vw);
  }
}

.l_footer .footer_copy {
  font-size: 1.2rem;
  color: #b7d8f1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l_footer .footer_copy {
    font-size: calc(22/750*100vw);
  }
}

/* =================================
 l_hoge
================================= */
/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_container_top
================================= */
.l_container_top {
  position: relative;
}

/* =================================
 l_header_top
================================= */
/* =================================
 l_header_sp_top
================================= */
/* =================================
 l_main_visual_top
================================= */
/* =================================
 l_content_top
================================= */
/* =================================
 l_main_top
================================= */
/* =================================
 l_side_top
================================= */
/* =================================
 l_footer_top
================================= */
/* =================================
 l_hoge_top
================================= */
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
}

.key {
  background: url(../img/bg_key.png) center top/auto no-repeat;
}

@media screen and (max-width: 768px) {
  .key {
    background: url(../img/sp/bg_key.png) center top/100% no-repeat;
  }
}

.key_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  padding-top: 30px;
  margin-bottom: -62px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .key_list {
    display: none;
  }
}

.key_list a {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  border-radius: 24px;
}

.key_list li:nth-of-type(1) a {
  background: #1f52e6;
  padding: 13px 48px;
}

.key_list li:nth-of-type(2) a {
  background: #363636;
  padding: 13px 28px;
}

.key_list li + li {
  margin-left: 12px;
}

.key_img {
  margin-bottom: -23px;
}

@media screen and (max-width: 768px) {
  .key_img {
    padding-top: calc(42/750*100vw);
    margin: 0 calc(-30/750*100vw) calc(60/750*100vw) 0;
  }
}

.key .scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 75px;
  -webkit-animation: sdb 1.5s infinite;
          animation: sdb 1.5s infinite;
}

@media screen and (max-width: 768px) {
  .key .scroll {
    width: calc(61/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
}

.slider {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .slider {
    margin-bottom: calc(100/750*100vw);
  }
}

.slider_list {
  display: none;
}

.slider_list li {
  margin: 0 15px;
}

@media screen and (max-width: 768px) {
  .slider_list li {
    width: calc(200/750*100vw);
    margin: 0 calc(15/750*100vw);
  }
}

.why_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .why_ttl {
    width: calc(592/750*100vw);
    margin: 0 auto calc(77/750*100vw);
  }
}

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

@media screen and (max-width: 768px) {
  .why_list {
    display: block;
  }
}

.why_item {
  width: 340px;
  position: relative;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .why_item {
    width: calc(630/750*100vw);
    margin: 0 auto calc(100/750*100vw);
  }
}

.why_item-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .why_item-point {
    width: calc(190/750*100vw);
    margin: 0 auto calc(50/750*100vw);
  }
}

.why_item-ttl {
  text-align: center;
  color: #26a3da;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .why_item-ttl {
    font-size: calc(40/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}

.why_item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.why_item-text {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .why_item-text {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(35/750*100vw);
    line-height: 1.76;
  }
}

.why_item-btn {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .why_item-btn {
    position: static;
  }
}

.why_item-btn a {
  border: 1px solid #26a3da;
  color: #26a3da;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 24px;
  display: inline-block;
  padding: 10px 24px;
}

@media screen and (max-width: 768px) {
  .why_item-btn a {
    font-size: calc(26/750*100vw);
    border-radius: 45px;
    padding: calc(30/750*100vw) calc(125/750*100vw);
  }
}

.about {
  background: url(../img/bg_about.png) center top/auto no-repeat;
  height: 956px;
  margin-bottom: -60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .about {
    background: url(../img/sp/bg_about.png) center top/100% no-repeat;
    height: calc(1164/750*100vw);
    margin-bottom: calc(-40/750*100vw);
  }
}

.about_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0 50px;
}

@media screen and (max-width: 768px) {
  .about_ttl {
    width: calc(431/750*100vw);
    margin: 0 auto;
    padding: calc(130/750*100vw) 0 calc(46/750*100vw);
  }
}

.about_text {
  width: 540px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #fff;
  line-height: 2;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .about_text {
    width: calc(630/750*100vw);
    font-size: calc(26/750*100vw);
    margin-bottom: calc(50/750*100vw);
  }
}

.about_movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .about_movie {
    width: calc(630/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
}

.about_movie img {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(53, 148, 190, 0.3);
          box-shadow: 0px 0px 30px 0px rgba(53, 148, 190, 0.3);
}

.about_list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_list a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  width: 257px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .about_list a {
    font-size: calc(24/750*100vw);
    width: calc(305/750*100vw);
    height: calc(90/750*100vw);
    border-radius: 45px;
  }
}

.about_list a img {
  margin-right: 9px;
}

@media screen and (max-width: 768px) {
  .about_list a img {
    margin-right: calc(15/750*100vw);
  }
}

.about_list li:nth-of-type(1) a {
  background: #1f52e6;
}

@media screen and (max-width: 768px) {
  .about_list li:nth-of-type(1) a img {
    width: calc(26/750*100vw);
  }
}

.about_list li:nth-of-type(2) a {
  background: #363636;
}

@media screen and (max-width: 768px) {
  .about_list li:nth-of-type(2) a img {
    width: calc(31/750*100vw);
  }
}

.about_list li + li {
  margin-left: 16px;
}

@media screen and (max-width: 768px) {
  .about_list li + li {
    margin-left: calc(20/750*100vw);
  }
}

.case {
  background: url(../img/bg_case.png) center 610px/auto no-repeat #f0fbff;
  padding: 157px 0 165px;
}

@media screen and (max-width: 768px) {
  .case {
    background: url(../img/sp/bg_case.png) center calc(1225/750*100vw)/100% no-repeat #f0fbff;
    padding: calc(140/750*100vw) 0;
  }
}

.case_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 84px;
}

@media screen and (max-width: 768px) {
  .case_ttl {
    width: calc(634/750*100vw);
    margin: 0 auto calc(80/750*100vw);
  }
}

.case_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .case_img {
    margin-bottom: calc(60/750*100vw);
  }
}

.case_waku {
  background: #fff;
  border-radius: 25px;
  padding: 45px 115px 90px;
  margin: 0 50px 60px;
}

@media screen and (max-width: 768px) {
  .case_waku {
    padding: calc(60/750*100vw) calc(30/750*100vw) calc(60/750*100vw);
    margin: 0 0 calc(100/750*100vw);
  }
}

.case_img04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .case_img04 {
    margin-bottom: calc(40/750*100vw);
  }
}

.case_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .case_list {
    display: block;
    margin-bottom: calc(80/750*100vw);
  }
}

.case_item {
  width: 230px;
  margin-bottom: 42px;
}

@media screen and (max-width: 768px) {
  .case_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: inherit;
    margin: 0 calc(10/750*100vw) calc(30/750*100vw);
  }
}

.case_item + .case_item {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .case_item + .case_item {
    margin: calc(30/750*100vw) 0 0;
  }
}

.case_item-img {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .case_item-img {
    width: calc(230/750*100vw);
    margin-bottom: 0;
  }
}

.case_item-text {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .case_item-text {
    font-size: calc(30/750*100vw);
    width: calc(350/750*100vw);
    text-align: left;
  }
}

.case_evidence {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .case_evidence {
    margin-bottom: calc(70/750*100vw);
  }
}

.case_evidence dt {
  color: #26a3da;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 27px;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .case_evidence dt {
    font-size: calc(40/750*100vw);
    margin-bottom: calc(40/750*100vw);
    line-height: 1.5;
  }
}

.case_evidence dd {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .case_evidence dd {
    font-size: calc(26/750*100vw);
    line-height: 1.76;
  }
}

.case_comment {
  border: 2px solid #26a3da;
}

.case_subttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}

.case_text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .case_text {
    font-size: calc(30/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}

.case .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #26a3da;
}

.case .slick-dots li button:hover:before, .case .slick-dots li button:focus:before {
  color: #26a3da;
}

.slick-dots {
  bottom: -45px;
}

@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: calc(-76/750*100vw);
  }
}

.comment {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .comment {
    padding: calc(50/750*100vw) calc(30/750*100vw);
  }
}

.comment_name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .comment_name {
    font-size: calc(30/750*100vw);
    margin-bottom: calc(24/750*100vw);
  }
}

.comment_name samll {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .comment_name samll {
    font-size: calc(26/750*100vw);
  }
}

.comment_company {
  font-size: 1.2rem;
  color: #727171;
  font-weight: 400;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .comment_company {
    font-size: calc(22/750*100vw);
    margin-left: calc(30/750*100vw);
  }
}

.comment_text {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .comment_text {
    font-size: calc(26/750*100vw);
  }
}

.item {
  background: url(../img/bg_item.png) center top/auto no-repeat;
  height: 674px;
  margin: -60px 0 -62px;
  padding-top: 120px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .item {
    background: url(../img/sp/bg_item.png) center top/100% no-repeat;
    height: calc(893/750*100vw);
    margin: calc(-40/750*100vw) 0;
    padding-top: calc(100/750*100vw);
  }
}

.item_outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .item_outer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.item_left {
  margin: 0 80px 0 100px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .item_left {
    margin: 0 0 0 calc(30/750*100vw);
    width: calc(366/750*100vw);
  }
}

.item_subttl {
  font-size: 1.4rem;
  border: 1px solid #fff;
  border-radius: 15px;
  width: 110px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .item_subttl {
    font-size: calc(28/750*100vw);
    border-radius: 35px;
    width: calc(250/750*100vw);
    height: calc(70/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}

.item_ttl {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .item_ttl {
    font-size: calc(50/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}

.item_text {
  font-size: 1.6rem;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .item_text {
    font-size: calc(26/750*100vw);
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .item_img {
    width: calc(267/750*100vw);
    margin-left: -2vw;
  }
}

.item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .item_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: calc(20/750*100vw);
  }
}

.item_list a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 257px;
  height: 60px;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .item_list a {
    font-size: calc(24/750*100vw);
    width: calc(305/750*100vw);
    height: calc(90/750*100vw);
    border-radius: 45px;
  }
}

.item_list a img {
  margin-right: 9px;
}

@media screen and (max-width: 768px) {
  .item_list a img {
    margin-right: calc(15/750*100vw);
  }
}

.item_list li:nth-of-type(1) a {
  background: #1f52e6;
}

@media screen and (max-width: 768px) {
  .item_list li:nth-of-type(1) a img {
    width: calc(26/750*100vw);
  }
}

.item_list li:nth-of-type(2) a {
  background: #363636;
}

@media screen and (max-width: 768px) {
  .item_list li:nth-of-type(2) a img {
    width: calc(31/750*100vw);
  }
}

.item_list li + li {
  margin-left: 16px;
}

@media screen and (max-width: 768px) {
  .item_list li + li {
    margin-left: calc(20/750*100vw);
  }
}

.work {
  background: url(../img/bg_work.jpg) center top/auto no-repeat;
  padding: 160px 0 140px;
}

@media screen and (max-width: 768px) {
  .work {
    background: url(../img/sp/bg_work.jpg) center top/cover no-repeat;
    padding: calc(135/750*100vw) 0 calc(120/750*100vw);
  }
}

.work_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .work_ttl {
    width: calc(639/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
}

.work_text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .work_text {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}

.work_ja {
  position: relative;
  margin-bottom: 38px;
}

@media screen and (max-width: 768px) {
  .work_ja {
    margin-bottom: calc(70/750*100vw);
  }
}

.work_ja-ttl {
  background: #151515;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 14px 0;
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .work_ja-ttl {
    font-size: calc(30/750*100vw);
    padding: calc(26/750*100vw) 0 calc(62/750*100vw);
    margin-bottom: calc(-33/750*100vw);
  }
}

.work_ja-logo {
  position: absolute;
  top: 316px;
  left: calc(50% - 150px);
}

@media screen and (max-width: 768px) {
  .work_ja-logo {
    position: relative;
    width: calc(290/750*100vw);
    margin: 0 auto calc(-23/750*100vw);
    top: 0;
    left: 0;
  }
}

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

.work_item {
  width: 539px;
  height: 280px;
  margin-bottom: 2px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .work_item {
    width: 100%;
    height: calc(400/750*100vw);
    margin-bottom: calc(10/750*100vw);
  }
}

.work_item:nth-of-type(1) {
  background: url(../img/work01.jpg);
}

@media screen and (max-width: 768px) {
  .work_item:nth-of-type(1) {
    background: url(../img/sp/work01.jpg) center center/100% no-repeat;
  }
}

.work_item:nth-of-type(2) {
  background: url(../img/work02.jpg);
}

@media screen and (max-width: 768px) {
  .work_item:nth-of-type(2) {
    background: url(../img/sp/work02.jpg) center center/100% no-repeat;
  }
}

.work_item:nth-of-type(3) {
  background: url(../img/work03.jpg);
}

@media screen and (max-width: 768px) {
  .work_item:nth-of-type(3) {
    background: url(../img/sp/work03.jpg) center center/100% no-repeat;
  }
}

.work_item:nth-of-type(4) {
  background: url(../img/work04.jpg);
}

@media screen and (max-width: 768px) {
  .work_item:nth-of-type(4) {
    background: url(../img/sp/work04.jpg) center center/100% no-repeat;
  }
}

.work_item dt {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .work_item dt {
    font-size: calc(35/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}

.work_item dd {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .work_item dd {
    font-size: calc(26/750*100vw);
    line-height: 1.76;
  }
}

.work_img05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.work .comment_outer {
  margin: 0 165px;
}

@media screen and (max-width: 768px) {
  .work .comment_outer {
    margin: 0 calc(30/750*100vw);
  }
}

.work .slick-dots li button:before {
  opacity: .75;
}

.work .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

.feature {
  background: #f0fbff;
  padding: 100px 0 120px;
}

@media screen and (max-width: 768px) {
  .feature {
    padding: calc(100/750*100vw) 0 calc(75/750*100vw);
  }
}

.feature_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .feature_ttl {
    width: calc(409/750*100vw);
    margin: 0 auto calc(80/750*100vw);
  }
}

.feature_waku {
  border-radius: 25px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(53, 148, 190, 0.3);
          box-shadow: 0px 0px 20px 0px rgba(53, 148, 190, 0.3);
  margin: 0 90px 40px;
  padding: 40px 49px 40px 50px;
}

@media screen and (max-width: 768px) {
  .feature_waku {
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0 0 calc(60/750*100vw);
    padding: 0;
  }
}

.voice {
  background: url(../img/bg_voice.jpg) center top/auto no-repeat;
  padding: 160px 0 95px;
}

@media screen and (max-width: 768px) {
  .voice {
    background: url(../img/sp/bg_voice.jpg) center top/cover no-repeat;
    padding: calc(135/750*100vw) 0 1px;
  }
}

.voice_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .voice_ttl {
    width: calc(277/750*100vw);
    margin: 0 auto calc(80/750*100vw);
  }
}

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

@media screen and (max-width: 768px) {
  .voice_list {
    display: block;
  }
}

.voice_item {
  width: 325px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .voice_item {
    width: inherit;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .voice_item {
    margin-bottom: calc(80/750*100vw);
  }
}

.voice_item-img {
  margin-bottom: 44px;
}

@media screen and (max-width: 768px) {
  .voice_item-img {
    width: calc(325/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
}

.voice_item-company {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .voice_item-company {
    font-size: calc(24/750*100vw);
    margin-bottom: calc(30/750*100vw);
    text-align: center;
  }
}

.voice_item-comment dt {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .voice_item-comment dt {
    font-size: calc(35/750*100vw);
    margin-bottom: calc(34/750*100vw);
    text-align: center;
  }
}

.voice_item-comment dd {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .voice_item-comment dd {
    font-size: calc(26/750*100vw);
    line-height: 1.76;
  }
}

.list {
  padding: 100px 0 90px;
}

@media screen and (max-width: 768px) {
  .list {
    padding: calc(100/750*100vw) 0 calc(75/750*100vw);
  }
}

.list_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
  .list_ttl {
    width: calc(224/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
}

.list_text {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .list_text {
    font-size: calc(24/750*100vw);
    margin: 0 calc(30/750*100vw) calc(50/750*100vw);
  }
}

.list_component {
  background: #f0fbff;
  margin: 0 350px;
  padding: 24px 22px;
  font-size: 1.4rem;
  line-height: 2;
  color: #26a3da;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .list_component {
    font-size: calc(24/750*100vw);
    line-height: 1.8;
    padding: calc(36/750*100vw) calc(26/750*100vw);
    margin: 0 calc(30/750*100vw) calc(80/750*100vw);
  }
}

.list_list {
  margin: 0 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .list_list {
    margin: 0 calc(120/750*100vw);
    display: block;
  }
}

.list_item {
  width: 340px;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .list_item {
    width: inherit;
    margin-bottom: calc(60/750*100vw);
  }
}

.list_item-img {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .list_item-img {
    margin-bottom: calc(40/750*100vw);
  }
}

.list_item-text {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .list_item-text {
    font-size: calc(24/750*100vw);
    text-align: center;
  }
}

.list_item-movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 63px;
}

@media screen and (max-width: 768px) {
  .list_item-movie {
    margin: 0 calc(30/750*100vw) calc(98/750*100vw);
  }
}

.faq {
  padding: 160px 0 100px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: calc(100/750*100vw) 0 calc(100/750*100vw);
  }
}

.faq_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .faq_ttl {
    width: calc(155/750*100vw);
    margin: 0 auto calc(100/750*100vw);
  }
}

.faq_list {
  margin: 0 165px;
  border-bottom: 1px solid #cdd6dd;
}

@media screen and (max-width: 768px) {
  .faq_list {
    margin: 0;
  }
}

.faq_item {
  border-top: 1px solid #cdd6dd;
  border-left: 1px solid #cdd6dd;
  border-right: 1px solid #cdd6dd;
}

.faq_item dt {
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
  background: #fcfcfc;
  padding: 20px 80px 20px 28px;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .faq_item dt {
    font-size: calc(32/750*100vw);
    padding: calc(30/750*100vw) calc(80/750*100vw) calc(30/750*100vw) calc(30/750*100vw);
  }
}

.faq_item dt:before, .faq_item dt:after {
  position: absolute;
  top: 34px;
  right: 30px;
  width: 25px;
  height: 3px;
  content: '';
  background: #26a3da;
}

@media screen and (max-width: 768px) {
  .faq_item dt:before, .faq_item dt:after {
    top: calc(53/750*100vw);
    right: calc(30/750*100vw);
    width: 13px;
    height: 2px;
  }
}

.faq_item dt:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.faq_item dt.active:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq_item dd {
  padding: 10px 30px 20px;
  font-size: 1.4rem;
  line-height: 1.78;
  display: none;
}

@media screen and (max-width: 768px) {
  .faq_item dd {
    font-size: calc(24/750*100vw);
    padding: calc(24/750*100vw) calc(30/750*100vw);
  }
}

.contact {
  background: #f0fbff;
  padding: 100px 0 196px;
  margin-bottom: -60px;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: calc(85/750*100vw) 0 calc(140/750*100vw);
    margin-bottom: calc(-60/750*100vw);
  }
}

.contact_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .contact_ttl {
    width: calc(336/750*100vw);
    margin: 0 auto calc(120/750*100vw);
  }
}

.contact form {
  margin: 0 260px;
}

@media screen and (max-width: 768px) {
  .contact form {
    margin: 0;
  }
}

.contact_item {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .contact_item {
    margin-bottom: calc(40/750*100vw);
  }
}

.contact_item dt {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .contact_item dt {
    font-size: calc(30/750*100vw);
    margin-bottom: calc(15/750*100vw);
  }
}

.contact .required {
  background: #de0304;
  font-size: 1.6rem;
  color: #fff;
  margin-left: 16px;
  padding: 2px 9px;
}

@media screen and (max-width: 768px) {
  .contact .required {
    font-size: calc(26/750*100vw);
    margin-left: calc(15/750*100vw);
    padding: calc(4/750*100vw) calc(18/750*100vw);
  }
}

.contact input[type="text"], .contact textarea {
  background: #fff;
  border-radius: 25px;
  border: 2px solid #cdd6dd;
  width: 100%;
  font-size: 1.8rem;
  padding: 10px 25px;
}

@media screen and (max-width: 768px) {
  .contact input[type="text"], .contact textarea {
    border-radius: 40px;
    font-size: clamp(1.6rem, 3.73333vw, 28rem);
    padding: calc(20/750*100vw) calc(47/750*100vw);
  }
}

.contact input[type="text"]::-webkit-input-placeholder, .contact textarea::-webkit-input-placeholder {
  color: #cdd6dd;
}

.contact input[type="text"]:-ms-input-placeholder, .contact textarea:-ms-input-placeholder {
  color: #cdd6dd;
}

.contact input[type="text"]::-ms-input-placeholder, .contact textarea::-ms-input-placeholder {
  color: #cdd6dd;
}

.contact input[type="text"]::placeholder, .contact textarea::placeholder {
  color: #cdd6dd;
}

.contact input[type="text"]::-ms-input-placeholder, .contact textarea::-ms-input-placeholder {
  color: #cdd6dd;
}

.contact input[type="text"]:-ms-input-placeholder, .contact textarea:-ms-input-placeholder {
  color: #cdd6dd;
}

@media screen and (max-width: 768px) {
  .contact textarea {
    border-radius: 30px;
  }
}

.contact .radio_input:checked + .radio_text:before {
  border: 8px solid #26a3da;
}

.contact .radio_text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .contact .radio_text {
    font-size: calc(30/750*100vw);
    margin-bottom: calc(20/750*100vw);
  }
}

.contact .radio_text:before {
  content: '';
  display: block;
  border-radius: 50%;
  border: 2px solid #cdd6dd;
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .contact .radio_text:before {
    margin-right: calc(28/750*100vw);
  }
}

.contact .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact .checkbox_input:checked + .checkbox_text:before {
  background: #26a3da;
}

.contact .checkbox_input:checked + .checkbox_text:after {
  position: absolute;
  top: 6px;
  left: 12px;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  width: 6px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact .checkbox_text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .contact .checkbox_text {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(58/750*100vw);
  }
}

.contact .checkbox_text:before {
  display: block;
  border: 1px solid #26a3da;
  border-radius: 5px;
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

@media screen and (max-width: 768px) {
  .contact .checkbox_text:before {
    margin-right: calc(33/750*100vw);
  }
}

.contact_privacy {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .contact_privacy {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}

.contact_privacy a {
  color: #26a3da;
  text-decoration: underline;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .contact_privacy a {
    line-height: 1.76;
  }
}

.contact_note {
  height: 150px;
  overflow-y: scroll;
  background: #fff;
  padding: 20px;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .contact_note {
    font-size: calc(22/750*100vw);
    margin-bottom: calc(60/750*100vw);
    padding: calc(40/750*100vw);
  }
}

.contact_note-text {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .contact_note-text {
    margin-bottom: calc(40/750*100vw);
  }
}

.contact_note-item:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .contact_note-item:not(:last-of-type) {
    margin-bottom: calc(40/750*100vw);
  }
}

.contact_note-item dt {
  font-weight: 700;
}

.contact_note-item ul {
  padding-left: 1.5em;
}

.contact_btn {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .contact_btn {
    margin-top: calc(60/750*100vw);
  }
}

.contact_btn button {
  background: #363636;
  width: 380px;
  height: 60px;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .contact_btn button {
    font-size: calc(26/750*100vw);
    width: calc(500/750*100vw);
    height: calc(90/750*100vw);
    border-radius: 45px;
  }
}

.contact_btn button:before {
  position: absolute;
  right: 30px;
  top: calc(50% - 12px);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f054';
  display: block;
}

@media screen and (max-width: 768px) {
  .contact_btn button:before {
    right: calc(37/750*100vw);
    top: calc(50% - 8px);
  }
}

.thanks_inner {
  padding: 200px 0 100px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .thanks_inner {
    padding: calc(200/750*100vw) 0 calc(100/750*100vw);
  }
}

.thanks_ttl {
  font-size: 3rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .thanks_ttl {
    font-size: calc(40/750*100vw);
    margin-bottom: calc(40/750*100vw);
  }
}

.thanks_text {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .thanks_text {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(80/750*100vw);
  }
}

.thanks_btn a {
  background: #363636;
  width: 380px;
  height: 60px;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .thanks_btn a {
    font-size: calc(26/750*100vw);
    width: calc(500/750*100vw);
    height: calc(90/750*100vw);
    border-radius: 45px;
  }
}

@media screen and (max-width: 768px) {
  .thanks .l_footer {
    height: calc(822/750*100vw);
    padding-bottom: calc(80/750*100vw);
  }
}

/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_menu_sp {
  z-index: 999;
}

.l_header {
  z-index: 998;
}

.l_header_sp {
  z-index: 998;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 999;
}

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}
