@charset "UTF-8";
* {
  box-sizing: border-box;
}

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

body {
  font-family: ryo-gothic-plusn, YuGothic, "Yu Gothic", Meiryo, sans-serif;
  color: #383838;
}

li {
  list-style: none;
}

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

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

.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #4C4948;
  /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*=============================
      メイン
=============================*/
main {
  width: calc(100% - 340px);
}
@media screen and (max-width: 1080px) {
  main {
    width: 100%;
  }
}
main #header {
  position: relative;
}
main #header .header_inner {
  background-color: #ffffff;
  width: 100%;
  height: 60px;
  padding-left: 3vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  main #header .header_inner {
    position: relative;
  }
}
main #header .header_inner .site_title_fixed {
  width: 150px;
  overflow: hidden;
}
main #header .header_inner .link_btn {
  text-align: center;
  display: none;
}
@media screen and (max-width: 1080px) {
  main #header .header_inner .link_btn {
    display: flex;
  }
}
main #header .header_inner .link_btn a {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  height: 60px;
  background-color: #000;
  color: #ffffff;
  font-size: 14px;
}
main #header .header_inner .link_btn a img {
  width: 20px;
  margin-bottom: 5px;
}
main .site_title {
  display: inline-block;
  width: 230px;
  text-align: center;
  padding: 2.1vw 0;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300;
}
@media screen and (max-width: 768px) {
  main .site_title {
    height: 60px;
    padding: 3% 0;
  }
  main .site_title img {
    width: 100%;
  }
}
main .site_title img {
  width: 80%;
}
main .main_visual {
  padding: 60px 70px;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1080px) {
  main .main_visual img {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  main .main_visual {
    background: url("img/mainvisual.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    height: 95vw;
    max-height: 480px;
  }
}
main .main_visual .main_visual_textbox {
  background-color: rgba(101, 101, 101, 0.9);
  color: #ffffff;
  padding: 35px 50px;
  position: absolute;
  left: 0;
  bottom: -20px;
}
@media screen and (max-width: 768px) {
  main .main_visual .main_visual_textbox {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 84%;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 480px) {
  main .main_visual .main_visual_textbox {
    padding: 20px 15px;
  }
}
main .main_visual .main_visual_textbox .main_visual_text .main_visual_title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  main .main_visual .main_visual_textbox .main_visual_text .main_visual_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  main .main_visual .main_visual_textbox .main_visual_text .main_visual_title {
    font-size: 22px;
  }
}
main .main_visual .main_visual_textbox .main_visual_text .main_visual_sub_title {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  main .main_visual .main_visual_textbox .main_visual_text .main_visual_sub_title {
    font-size: 14px;
  }
}

/*=============================
      サイトトップ
=============================*/
#site_top {
  padding-top: 100px;
  padding-bottom: 100px;
}
#site_top .site_top_bg {
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #site_top .site_top_bg {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
#site_top .site_top_bg .sec_textbox {
  padding-left: 8%;
}
@media screen and (max-width: 768px) {
  #site_top .site_top_bg .sec_textbox {
    padding: 3vw;
  }
}
#site_top .site_top_bg .sec_textbox .sec_textbox_title {
  font-size: 32px;
  line-height: 1.3;
  color: #4C4948;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  #site_top .site_top_bg .sec_textbox .sec_textbox_title {
    font-size: 22px;
  }
}
#site_top .site_top_bg .sec_textbox .sec_text {
  line-height: 1.8;
}
#site_top .site_top_bg .sec_imgbox {
  width: 128%;
  height: 350px;
  right: -8%;
  overflow: hidden;
  flex: 0 0 46%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #site_top .site_top_bg .sec_imgbox {
    width: 90%;
    right: 0;
  }
}
#site_top .site_top_bg .sec_imgbox img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 128%;
  height: 350px;
}
@media screen and (max-width: 768px) {
  #site_top .site_top_bg .sec_imgbox img {
    width: 100%;
    height: 350px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/*=============================
      特徴
=============================*/
#feature {
  background-color: #e8e8e8;
}
#feature .feature_bg {
  padding-top: 100px;
  padding-bottom: 50px;
}
#feature .feature_bg .sec_title {
  font-size: 32px;
  color: #666666;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  #feature .feature_bg .sec_title {
    font-size: 22px;
  }
}
#feature .feature_bg .feature_list .feature_list_flex {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #feature .feature_bg .feature_list .feature_list_flex {
    flex-direction: column;
    justify-content: center;
  }
}
#feature .feature_bg .feature_list .feature_list_flex:nth-of-type(2) {
  flex-direction: row-reverse;
}
#feature .feature_bg .feature_list .feature_list_flex:nth-of-type(4) {
  flex-direction: row-reverse;
}
#feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox {
  background-color: #ffffff;
  width: 50%;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 8vw 5vw;
}
@media screen and (max-width: 768px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox {
    width: 85%;
    text-align: center;
  }
}
#feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title {
  font-size: 32px;
  line-height: 1.3;
  color: #4C4948;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title {
    padding-top: 280px;
  }
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title3 {
    padding-top: 320px;
  }
}
@media screen and (max-width: 480px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title {
    padding-top: 200px;
    font-size: 22px;
  }
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title3 {
    padding-top: 240px;
  }
}
#feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title span {
  position: absolute;
  top: -80px;
  left: 15%;
  font-size: 160px;
  font-weight: bold;
  color: #4C4948;
}
@media screen and (max-width: 1080px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title span {
    font-size: 120px;
  }
}
@media screen and (max-width: 768px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_title span {
    font-size: 100px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
}
#feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_text {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_textbox .feature_list_text {
    text-align: left;
  }
}
#feature .feature_bg .feature_list .feature_list_flex .feature_list_imgbox {
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #feature .feature_bg .feature_list .feature_list_flex .feature_list_imgbox {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
}
#feature .feature_bg .feature_list .feature_list_flex .no_02 {
  width: 30%;
}

/*=============================
      サイドバー
=============================*/
aside {
  background-color: #f4f4f4;
}
aside .aside_inner {
  padding: 80px 2vw;
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100vh;
  background-color: #f4f4f4;
  z-index: 500;
  overflow-y: scroll;
}
@media screen and (max-width: 1080px) {
  aside .aside_inner {
    position: unset;
    width: 87vw;
    margin: 0 auto;
    height: auto;
  }
}
aside .aside_inner .aside_title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
aside .aside_inner .contact .contact-form label {
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}
aside .aside_inner .contact .contact-form label::after {
  content: "*";
  font-size: 11px;
  color: #ff0000;
  display: inline-block;
  padding: 1px 4px;
}
aside .aside_inner .contact .contact-form .none::after {
  display: none;
}
aside .aside_inner .contact .contact-form input,
aside .aside_inner .contact .contact-form textarea {
  background-color: #ffffff;
  display: block;
  width: 100%;
  border: 1px solid #f4f4f4;
  padding: 0.7em 0.5em;
  border-radius: 5px;
  line-height: 1.3;
  margin-bottom: 12px;
}
aside .aside_inner .contact .contact-form .first {
  width: 47%;
  margin-right: 10px;
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  aside .aside_inner .contact .contact-form .first {
    width: 48.5%;
  }
}
@media screen and (max-width: 768px) {
  aside .aside_inner .contact .contact-form .first {
    margin-right: 20px;
    width: 47%;
  }
}
@media screen and (max-width: 480px) {
  aside .aside_inner .contact .contact-form .first {
    margin-right: 10px;
  }
}
aside .aside_inner .contact .contact-form .name {
  width: 47%;
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  aside .aside_inner .contact .contact-form .name {
    width: 48.5%;
  }
}
@media screen and (max-width: 768px) {
  aside .aside_inner .contact .contact-form .name {
    width: 47%;
  }
}
aside .aside_inner .contact .contact-form .check_box_area {
  display: flex;
}
aside .aside_inner .contact .contact-form .check_box_area input {
  width: 10%;
}
@media screen and (max-width: 1080px) {
  aside .aside_inner .contact .contact-form .check_box_area input {
    width: 3%;
  }
}
aside .aside_inner .contact .contact-form a {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #4C4948;
}
aside .aside_inner .contact .contact-form a:hover {
  text-decoration: underline;
}
aside .aside_inner .contact .contact-form .submit_btn {
  width: 160px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
}
aside .aside_inner .contact .contact-form .submit_btn input {
  width: 160px;
  border-radius: 50px;
  background-color: #000;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}
aside .aside_inner .contact .form_text p {
  font-size: 12px;
  line-height: 1.6;
}
aside .aside_inner .contact .form_text span {
  font-size: 12px;
}
aside .aside_inner .contact .form_text span a {
  color: #4C4948;
}
aside .aside_inner .contact .form_text span a:hover {
  text-decoration: underline;
}

.link_btn_fixed {
  display: none;
  text-align: center;
  z-index: 1000;
}
@media screen and (max-width: 1080px) {
  .link_btn_fixed {
    display: flex;
  }
}
.link_btn_fixed a {
  display: flex;
  flex-direction: column;
  width: 60px;
  border-radius: 5px;
  background-color: #000;
  position: fixed;
  bottom: 60px;
  right: 0;
  color: #ffffff;
  font-size: 9px;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.link_btn_fixed a img {
  width: 14px;
  margin-bottom: 5px;
}

/*=============================
      フッター
=============================*/
#footer .footer_inner {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 8%;
  color: #ffffff;
}
#footer .footer_inner .privacy_policy {
  display: flex;
}
@media screen and (max-width: 480px) {
  #footer .footer_inner .privacy_policy {
    flex-direction: column;
    gap: 8px;
  }
}
#footer .footer_inner .privacy_policy a {
  color: #ffffff;
  margin-right: 12px;
}
@media screen and (max-width: 480px) {
  #footer .footer_inner .privacy_policy a {
    font-size: 10px;
  }
  .copy {
    font-size: 80%;
  }
}
#footer .footer_inner .privacy_policy a:hover {
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */


.support .sec_title {
  font-size: 32px;
  color: #666666;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .support .sec_title {
    font-size: 22px;
  }
}
.support {
  padding: 70px 0 60px;
  text-align: center;
}

.support__arrow {
  margin: 0 auto;
  width: 80px;
}

.support__box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.support__item {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.support__item.-second {
  margin-top: 40px;
}
.support__item.-third {
  margin-top: 53px;
}

.support__img {
  width: 50px;
}

.support__concept {
  margin-left: 30px;
  width: calc(100% - 80px);
  padding-top: 20px;
}

.support__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.support__asterisk {
  opacity: 0.5;
  font-size: 12px;
}

.support__text {
  margin: 3px 0 0;
  font-size: inherit;
  line-height: 1.8;
  text-align: left;
}

.support__notes {
  opacity: 0.5;
  margin: 5px 0 0;
  font-size: 11px;
  text-align: left;
}

.support {
  padding: 105px 0 60px;
}

.support__arrow {
  margin: 0 auto;
  /* width: auto; */
}

.support__box {
  /* flex-wrap: nowrap; */
  justify-content: space-between;
  margin: 44px auto 0;
  padding: 0 20px;
  width: 100%;
  max-width: 954px;
}

.support__item {
  display: block;
  margin-top: 50px;
  width: 48%;
}

.support__img {
  display: flex;
  position: static;
  justify-content: center;
  width: auto;
  height: 112px;
}
.support__img.-first > img {
  margin-left: -40px;
}

.support__concept {
  margin: 30px 0 0;
  width: auto;
  text-align: center;
}

.support__title {
  font-size: 24px;
  text-align: inherit;
}

.support__text {
  margin-top: 20px;
}


#support .sec_title {

}
#support .sec_title {
  font-size: 32px;
  color: #666666;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  #support .sec_title {
    font-size: 22px;
  }
}
