/* ------------------------------------------------------------- */
/* layout / parts                                                */
/* ------------------------------------------------------------- */
html.wf-loading {
  opacity: 0;
  transition: all .0s ease;
}

html.wf-active {
  opacity: 1;
}

html {
  overflow-x: hidden !important;
}

html.is-lock{
  overflow-y: hidden !important;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pc-movie {
  display: block !important;
}

.sp-movie {
  display: none !important;
}

body {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 2;
  font-family: noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  outline: none;
  overflow-x: hidden;
}

input,
textarea {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
}

.inner {
  margin: 0 auto;
}

.padding-120 {
  padding: 120px 0;
}

.padding-80 {
  padding: 80px 0 120px;
}

.m-center {
  display: block;
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .agree {
    margin-top: 40px;
  }
}


/*-----------------ページャー--------------------*/
.pager {
  margin-top: 100px;
}

.pager .pagination {
  text-align: center;
}

.pager .pagination span,
.pager .pagination a,
.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: #ffffff;
  width: 60px;
  height: 60px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  line-height: 60px;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  transition-duration: 0.3s;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active,
.pager .pagination span.current {
  color: #ffffff;
  background-color: #e60012;
  border-radius: 50%;
  transition-property: background-color;
}

/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
}

img.fit-contain {
  object-fit: contain;
}

figure img {
  width: 100%;
}

img {
  vertical-align: top;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.right {
  justify-content: end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------Link--------------------*/
a {
  text-decoration: none;
  transition: all .3s ease;
}

section li>a {
  display: block;
}

a {
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

/*----------------btn---------------------*/
.btn,
input.btn {
  font-weight: bold;
  position: relative;
  display: block;
  width: 320px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 20px 0;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 33px;
  background-color: #ff8000;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 0;
  cursor: pointer;
}

.btn::before,
input.btn::before,
.submit-btn__wrap::before {
  position: absolute;
  top: 50%;
  left: 7%;
  content: '';
  display: inline-block;
  width: 8px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  background-image: url(../img/common/btn_arw.png);
  transition: left 0.3s ease-in-out;
  z-index: 99;
}

.btn:hover,
input.btn:hover {
  filter: brightness(120%);
  -webkit-filter: brightness(120%);
  -moz-filter: brightness(120%);
  -o-filter: brightness(120%);
  -ms-filter: brightness(120%);
  opacity: 1;
}

.btn:hover::before,
input.btn:hover::before {
  left: 9%;
}

.submit-btn__wrap {
  position: relative;
  width: 320px;
  margin: 0 auto;
}

.submit-btn__wrap:hover::before {
  left: 9%;
}

.btn.btn-w {
  width: 180px;
  background-color: #fff;
  border: solid 1px #ff6c00;
  color: #ff6c00;
  font-size: 14px;
  padding: 10px 0;
}

.arw-big {
  font-weight: 700;
}

.arw-big::before {
  content: '';
  display: inline-block;
  width: 70px;
  height: 70px;
  vertical-align: -28px;
  margin-right: 20px;
  background-image: url(../img/common/link_arw_big.png);
  background-size: cover;
}

.scroll-btn {
  background-image: url(../img/common/scroll_btn.png);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 165px;
  width: 8px;
  z-index: 200;
}

.window__icon {
  position: relative;
  top: 7px;
  right: -10px;
}

/*-----------------BG--------------------*/
.bg-color1 {
  background-color: #f3f1ef;
}

/*----------------text---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

.f-h-top__txt strong,
.red {
  color: #e60416;
}

/*----------------section-tittle---------------------*/
.ttl {
  text-align: center;
  font-weight: 700;
}

.ttl::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: #e60012;
}

.ttl__txt {
  font-size: 38px;
  color: #e60012;
  margin-bottom: 10px;
}

.ttl__sub-txt {
  font-size: 24px;
  margin-bottom: 13px;
}

.lead-txt {
  line-height: 1.7;
  font-weight: 500;
}

.radius-bg {
  position: relative;
}

.w-radius-bg-top::before,
.w-radius-bg-bottom::after,
.g-radius-bg-bottom::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 4vw;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}

.w-radius-bg-top::before {
  top: -52px;
  max-height: 53px;
  background-image: url(../img/common/w_radius_top.svg);
  background-position: bottom;
}

.w-radius-bg-bottom::after {
  bottom: -46px;
  max-height: 50px;
  background-image: url(../img/common/w_radius_bottom.svg);
  background-position: top;
}

.g-radius-bg-bottom::after {
  bottom: -41px;
  max-height: 56px;
  background-image: url(../img/common//g_radius_bottom.svg);
  background-position: top;
}

@media (max-width: 1300px) {
  .w-radius-bg-top::before {
    top: -3.5vw;
  }

  .w-radius-bg-bottom::after,
  .g-radius-bg-bottom::after {
    bottom: -3vw;
  }
}

@media (min-width: 1370px) {
  body {
    min-width: 1370px;
  }
}

@media (min-width: 1200px) {
  .inner {
    width: 1200px;
  }
}

@media (max-width: 1024px) {
  .inner {
    width: 90%;
  }
}

@media (max-width: 500px) {

  .pc-movie {
    display: none !important;
  }

  .sp-movie {
    display: block !important;
  }
}

@media (max-width: 768px) {

  /* ------------------------------------------------------------- */
  /* layout / parts                                                */
  /* ------------------------------------------------------------- */
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  body {
    min-width: auto;
    font-size: 14px;
  }

  .inner.large_inner {
    width: 90%;
  }

  .main {
    width: 100%;
  }

  .contents {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  aside {
    width: 100%;
    padding: 0 5vw;
  }


  a:hover {
    opacity: 1;
  }

  .btn {
    width: 90%;
  }

  .reverse {
    flex-wrap: wrap;
  }


  .padding-120 {
    padding: 80px 0 80px;
  }

  .ttl__txt {
    font-size: 30px;
  }

  .ttl__sub-txt {
    font-size: 18px;
  }

  .arw-big::before {
    width: 50px;
    height: 50px;
    vertical-align: middle;
  }

  .scroll-btn {
    height: 127px;
    width: 6px;
  }
}


/* ------------------------------------------------------------- */
/* page-top（下層ページ名 + パンくずリスト）                      */
/* ------------------------------------------------------------- */
.page-top {
  padding: 20px 0px 20px 80px;
}

@media (max-width: 768px) {
  .page-top {
    padding: 20px;
  }
}

.page-top__ttl {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 500px) {
  .page-top__ttl {
    font-size: 20px;
  }
}

.page-top .breadcrumb {
  color: #999999;
  font-size: 12px;
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  .page-top .breadcrumb {
    margin-bottom: 3px;
  }
}

.page-top .breadcrumb li>a {
  margin-right: 10px;
}

.page-top .breadcrumb li>a:after {
  content: url(../img/common/breadcrumb_arw.png);
  margin-left: 10px;
}

/*----------------------------------------------------*/
/*                    footer                          */
/*----------------------------------------------------*/
.footer .f-link {
  padding: 80px 0 50px;
  border-top: solid 1px #eeeeee;
}

.footer .f-link__inner {
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
}

.footer .m-b30 {
  margin-bottom: 30px;
}

.footer .f-link__logo {
  margin-bottom: 40px;
}

.footer .f-link .list-wrap .list {
  margin-right: 90px;
}

.footer .f-link .list-wrap .list li {
  margin-bottom: 10px;
}

.footer .f-link .list-wrap .list li .icon::after {
  content: url(../img/common/footer/footer_icon01.png);
  margin-left: 10px;
}

.footer .f-link .blog-link {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
}

.footer .f-link .blog-link a:first-of-type {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .footer .f-link .blog-link a:first-of-type {
    margin-bottom: 20px;
  }
}

.footer .f-link .sns-link img {
  display: block;
  margin-left: auto;
}

.footer .f-link .sns-link a:first-of-type {
  margin-bottom: 5px;
  display: block;
}

.footer .f-link .sns-link .m-t {
  margin-top: 5px;
}

@media (max-width: 768px) {

  .footer .f-link .sns-link img,
  .footer .blog-link {
    margin-top: 20px;
  }

  .footer .sns-flex {
    display: block;
  }

  .footer .f-link .sns-link .m-t {
    margin-top: 30px;
  }
}

.footer .f-link .company-block__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .f-link .company-block__address {
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .footer .f-link .company-block__address {
    margin-bottom: 20px;
  }

  .footer .f-link .sns-link img {
    margin-left: 0;
  }
}

.footer .link-service-list {
  padding: 45px 0;
  background-color: #f3f1ef;
}

.footer .link-service-list ul {
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
  justify-content: flex-start;
}

.footer .link-service-list ul li img{
  width: 100%;
}

.footer .link-service-list ul li{
  width: calc(20% - 80px/5);
  margin-right: 20px;
}

.footer .link-service-list ul li:nth-child(5n){
  margin-right: 0;
}

@media (max-width:1024px){
  .footer .link-service-list ul li{
    width: calc(33.3% - 40px/3);
    margin-right: 20px;
  }
  
  .footer .link-service-list ul li:nth-child(5n){
    margin-right: auto;
  }

  .footer .link-service-list ul li:nth-child(3n){
    margin-right: 0;
  }
}

@media (max-width:768px){
  .footer .link-service-list ul li{
    width: calc(50% - 20px/2);
    margin-right: 20px;
  }

  .footer .link-service-list ul li:nth-child(3n){
    margin-right: auto;
  }

  .footer .link-service-list ul li:nth-child(2n){
    margin-right: 0;
  }
}


@media (max-width: 500px) {
  .footer .link-service-list ul {
    max-width: 90%;
    width: 90%;
  }

  .footer .link-service-list ul li{
    width: calc(50% - 10px/2);
    margin-right: 10px;
  }

  .footer .link-service-list ul li:nth-child(2n){
    margin-right: 0;
  }
}

.footer .link-service-list ul::after {
  content: '';
  display: block;
  max-width: 280px;
  width: 100%;
}

.footer .link-service-list__item {
  display: block;
  max-width: 280px;
  width: 100%;
  margin: 15px 0;
}

@media (max-width: 500px) {
  .footer .link-service-list__item {
    max-width: 90%;
    margin: 15px auto;
  }
}

.footer .link-service-list__txt {
  font-size: 13px;
  margin-top: 10px;
}

.footer__copy {
  color: #fff;
  font-size: 10px;
  padding: 15px 0;
  letter-spacing: 0.2em;
  background-color: #e60012;
}

@media (max-width: 500px) {
  .footer__copy {
    font-size: 12px;
    word-break: break-word;
  }

  .link-service-list__img {
    width: 100%;
  }

  .link-service-list li {
    margin: 0 auto;
  }
}

.f-company__ttl {
  font-size: 18px;
  font-weight: 700;
  border-bottom: solid 1px #d8d5d2;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.f-company .company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1720px;
  margin: 0 auto;
}

.f-company .company-list::after {
  content: "";
  display: block;
  max-width: 280px;
  width: 100%;
}

.f-company .company-list li a {
  display: block;
  max-width: 280px;
  width: 100%;
  margin: 15px 0;
}

.f-company .company-list li p {
  font-size: 14px;
  text-align: center;
}

.f-company__logo {
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width:500px) {
  .f-company .company-list {
    max-width: 90%;
    width: 90%;
  }

  .f-company .company-list li {
    margin: 0 auto;
  }

  .f-company .company-list li a {
    width: 100%;
    max-width: 90%;
    margin: 15px auto;
  }

  .f-company__logo {
    max-width: 280px;
  }
}

/* ------------------------------------------------------------- */
/*   lower-kv                                                     */
/* ------------------------------------------------------------- */
.lower-mv {
  position: relative;
  padding: 80px 0;
  /* padding: 205px 0; */
  background-size: cover;
  position: relative;
  background-position-x: center;
}

.lower-mv::after {
  content: "";
  background: rgba(0, 0, 0, .3);
  width: 900px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 84px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .lower-mv {
    padding: 90px 20px;
  }

  .lower-mv::after {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 500px) {
  .lower-mv {
    padding: 20vw 20px;
  }
}

.lower-mv__txt-wrap {
  color: #fff;
  padding-left: 170px;
  position: relative;
  z-index: 10;

}

@media (max-width: 1024px) {
  .lower-mv__txt-wrap {
    padding-left: 0;
    padding: 0 20px;
  }
}

.lower-mv__ttl {
  width: 44%;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .lower-mv__ttl {
    width: 100%;
    font-size: 5vw;
  }
}

@media (max-width: 500px) {
  .lower-mv__ttl {
    font-size: 8vw;
  }
}

.lower-mv__ttl--small {
  display: block;
  font-size: 28px;
  margin-bottom: -60px;
}

@media (max-width: 768px) {
  .lower-mv__ttl--small {
    font-size: 4vw;
    margin-bottom: -6vw;
  }
}

@media (max-width: 500px) {
  .lower-mv__ttl--small {
    font-size: 6.5vw;
    margin-bottom: -10vw;
  }
}

.lower-mv__lead-txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .lower-mv__lead-txt {
    font-size: 3vw;
  }
}

@media (max-width: 500px) {
  .lower-mv__lead-txt {
    font-size: 5vw;
  }
}

.formError2 {
  color: #E60416;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 2px;
}
