@charset "UTF-8";

/* --------------------------------------------------
 Common Block
-------------------------------------------------- */

.max-comm-blc {
  max-width: 1920px;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.large-comm-blc {
  max-width: 1600px;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.comm-blc {
  max-width: 1200px;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.min-comm-blc {
  max-width: 1000px;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.narrow-comm-blc {
  max-width: 800px;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.margin-comm {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.padding-comm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.container {
  margin-top: 4rem;
}

@media screen and (max-width:640px) {
  .container {
    margin-top: 2rem;
  }
}

@media screen and (max-width:480px) {
  .margin-comm {
    margin-top: 15vw;
    margin-bottom: 15vw;
  }

  .padding-comm {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
}

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

 ttl-heading-blc
 
-------------------------------------------------- */

/* style02 ------------------ */

.ttl-heading-blc.style02 {
  background-color: #0158a2;
  padding: 1rem 0;
  text-align: center;
  box-sizing: border-box;
}

.ttl-heading-blc.style02 .ttl-heading01 {
  color: #fff;
  font-size: 250%;
  font-weight: bold;
  max-width: 1200px;
  margin: auto;
  padding: 0 4%;
  box-sizing: border-box;
}

.ttl-heading-blc.style02 .txt-desc {
  color: #fff;
  font-size: 120%;
  max-width: 1200px;
  margin: auto;
  padding: 0 4%;
  box-sizing: border-box;
}

/* contents01 ------------------ */

.ttl-contents01 {
  font-size: 150%;
  display: block;
  text-align: center;
  font-weight: 600;
  box-sizing: border-box;
}

/* section01 ------------------ */

.ttl-section01 {
  font-size: 250%;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #0158a2;
  line-height: 1.2;
}

/* section02 ------------------ */

.ttl-section02 {
  font-size: 150%;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: block;
  box-sizing: border-box;
  border-bottom: 4px solid #ddd;
  position: relative;
  font-weight: 600;
}

.ttl-section02::before {
  content: "";
  width: 300px;
  height: 4px;
  background-color: #1976f2;
  position: absolute;
  left: 0;
  bottom: -4px;
}

@media screen and (max-width:640px) {
  .ttl-contents01 {
    font-size: 120%;
  }

  .ttl-heading-blc.style02 .ttl-heading01 {
    font-size: 180%;
  }

  .ttl-heading-blc.style02 .txt-desc {
    font-size: 100%;
  }

  .ttl-section02 {
    font-size: 120%;
  }

  .ttl-section01 {
    font-size: 200%;
  }
}

@media screen and (max-width:480px) {

  .ttl-section01 {
    font-size: 180%;
  }

}

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

 btn-style-blc
 
-------------------------------------------------- */

@media screen and (min-width:1001px) {
  .btn-style-blc .btn:hover {
    background-color: #fff;
    color: #ee9c32;
  }
}

.btn-style-blc {
  text-align: center;
  margin-top: 2rem;
}

.btn-style-blc .btn {
  text-decoration: none;
  padding: 10px 50px 10px 30px;
  background-color: #ee9c32;
  border: 2px solid #ee9c32;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  min-width: 200px;
  font-weight: bold;
  transition: all ease-in 0.3s;
}

.btn-style-blc .btn::after {
  content: '\f078';
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: rotate(-90deg);
}

.btn-style-blc button.btn {
  cursor: pointer;
}

.btn-style-blc button.btn::after {
  top: 18px;
}

/* btn-style-button ------------------------ */

.btn-style-blc.btn-style-button {
  display: flex;
  justify-content: center;
}

.btn-style-blc.btn-style-button>button {
  margin-right: 10px;
}

.btn-style-blc.btn-style-button>button:last-child {
  margin-right: 0;
}

/* btn-style-form ------------------------ */

.btn-style-blc.btn-style-form .btn {
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  font-size: 120%;
}

.btn-style-blc.btn-style-form .btn+.btn {
  margin-left: 10px;
}

.btn-style-blc.btn-style-form {
  display: flex;
  justify-content: center;
}

@media screen and (max-width:480px) {
  .btn-style-blc .btn {
    padding: 10px 30px 10px 20px;
  }

  .btn-style-blc button.btn::after {
    top: 12px;
  }

  .btn-style-blc.btn-style-button>button {
    min-width: 120px;
  }

  .btn-style-blc.btn-style-form {
    flex-wrap: wrap;
  }

  .btn-style-blc.btn-style-form .btn {
    width: 100%;
    max-width:250px;
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .btn-style-blc.btn-style-form .btn:first-child {
    margin-top: 0;
  }
}

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

 #key-visual-blc.main-img

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

#keyvisual-blc.main-img .single-box {
  position: relative;
}

#keyvisual-blc.main-img .single-box .txt-blc .ttl-blc .ttl01 {
  text-align: center;
  font-size: 300%;
  font-weight: 900;
  display: inline-block;
  text-shadow: #ffffff 5px 0px 0px, #ffffff 4.90033px 0.993347px 0px, #ffffff 4.60531px 1.94709px 0px, #ffffff 4.12668px 2.82321px 0px, #ffffff 3.48353px 3.58678px 0px, #ffffff 2.70151px 4.20736px 0px, #ffffff 1.81179px 4.6602px 0px, #ffffff 0.849836px 4.92725px 0px, #ffffff -0.145998px 4.99787px 0px, #ffffff -1.13601px 4.86924px 0px, #ffffff -2.08073px 4.54649px 0px, #ffffff -2.94251px 4.04248px 0px, #ffffff -3.68697px 3.37732px 0px, #ffffff -4.28444px 2.57751px 0px, #ffffff -4.71111px 1.67494px 0px, #ffffff -4.94996px 0.7056px 0px, #ffffff -4.99147px -0.291871px 0px, #ffffff -4.83399px -1.27771px 0px, #ffffff -4.48379px -2.2126px 0px, #ffffff -3.95484px -3.05929px 0px, #ffffff -3.26822px -3.78401px 0px, #ffffff -2.4513px -4.35788px 0px, #ffffff -1.53666px -4.75801px 0px, #ffffff -0.560763px -4.96845px 0px, #ffffff 0.437495px -4.98082px 0px, #ffffff 1.41831px -4.79462px 0px, #ffffff 2.34258px -4.41727px 0px, #ffffff 3.17346px -3.86382px 0px, #ffffff 3.87783px -3.15633px 0px, #ffffff 4.4276px -2.32301px 0px, #ffffff 4.80085px -1.39708px 0px, #ffffff 4.98271px -0.415447px 4px;
}


#keyvisual-blc.main-img .single-box .bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

#keyvisual-blc.main-img .single-box .txt-blc {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#keyvisual-blc.main-img .single-box .txt-blc::after {
  content: none;
}

@media screen and (max-width:1000px) {
  #keyvisual-blc.main-img .single-box .txt-blc {
    min-height: 150px;
  }

  #keyvisual-blc.main-img .single-box .txt-blc .ttl-blc .ttl01 {
    font-size: 200%;
  }
}


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

 banner-inner

-----------------------------------------------*/
@media screen and (min-width:1001px) {
  .banner-inner a:hover {
    opacity: 0.5;
  }
}

.banner-inner {
  text-align: center;
  display: block;
}

.banner-inner a {
  display: inline-block;
  transition: all ease-in 0.3s;
}

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

 service-blc 

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

#service-blc .service-ul {
  margin-top: 2rem;
}

#service-blc .service-ul .list-blc {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  counter-reset: num;
  max-width: 900px;
  margin: auto;
}

#service-blc .service-ul .list-blc li {
  width: calc((100% - 8rem) / 3);
  margin-right: 4rem;
  margin-top: 2rem;
  position: relative;
}

#service-blc .service-ul .list-blc li::before {
  content: "";
  background-image: url(../img/top/service_icon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 37px;
  position: absolute;
  right: -50px;
  top: 50%;
  margin: auto;
}

#service-blc .service-ul .list-blc li:nth-child(-n+3) {
  margin-top: 0;
}

#service-blc .service-ul .list-blc li:nth-child(3n+3) {
  margin-right: 0;
}

#service-blc .service-ul .list-blc li:last-child {
  margin-right: 0;
}

#service-blc .service-ul .list-blc li .txt-blc {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
  line-height: 1.5;
}

#service-blc .service-ul .list-blc li:nth-child(3n+3)::before {
  display: none;
}

#service-blc .service-ul .list-blc li:last-child::before {
  display: none;
}

#service-blc .service-ul .list-blc li .img-blc {
  margin-top: 1rem;
}

#service-blc .service-ul .list-blc li .ttl-blc {
  text-align: center;
}

#service-blc .service-ul .list-blc li .ttl-blc>.ttl-blc01 {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0158a2;
  box-sizing: border-box;
}

#service-blc .service-ul .list-blc li .ttl-blc>.ttl-blc01>.ttl01 {
  color: #fff;
  font-weight: bold;
  font-size: 120%;
  display: block;
  line-height: 1;
}

#service-blc .service-ul .list-blc li .ttl-blc>.ttl-blc01 .ttl02 {
  display: block;
  box-sizing: border-box;
  font-size: 250%;
  position: relative;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

#service-blc .service-ul .list-blc li .ttl-blc>.ttl-blc01 .ttl02::before {
  counter-increment: num;
  content: " " counter(num) " ";
}

@media screen and (max-width:767px) {
  #service-blc .service-ul .list-blc {
    flex-wrap: wrap;
  }

  #service-blc .service-ul .list-blc li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6rem;
  }

  #service-blc .service-ul .list-blc li::before {
    right: 0;
    left: 0;
    top: auto;
    bottom: -65px;
    transform: rotate(90deg);
  }

  #service-blc .service-ul .list-blc li:nth-child(3n+3) {
    margin-bottom: 0;
  }

  #service-blc .service-ul .list-blc li .txt-blc {
    text-align: center;
  }
}

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

 voice-blc 

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

#voice-blc {
  background-color: #fff;
}

#voice-blc .list-slide-blc {
  margin-top: 2rem;
}

#voice-blc .list-slide-blc .slick-slide {
  margin: 0 10px;
}

#voice-blc .list-slide-blc .list {
  border: 1px solid #a6a6a6;
  border-radius: 20px;
  padding: 2rem 2rem;
  box-sizing: border-box;
}

#voice-blc .list-slide-blc .list .img figure {
  text-align: left;
}

#voice-blc .list-slide-blc .list .img+.txt {
  margin-top: 1rem;
}

/* slick --------------------- */

#voice-blc .list-slide-blc .slick-prev,
#voice-blc .list-slide-blc .slick-next {
  width: 43px;
  height: 43px;
  transform: translate(0, 0);
  padding: 0;
}

#voice-blc .list-slide-blc .slick-prev::before,
#voice-blc .list-slide-blc .slick-next::before {
  transition: all ease-in 0.3s;
}

#voice-blc .list-slide-blc .slick-prev {
  left: -10px;
}

#voice-blc .list-slide-blc .slick-next {
  right: -10px;
}

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

 Other

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

@media screen and (min-width:1001px) {
  .txt-link a:hover {
    text-decoration: none !important;
  }
}

/* bg-color --------------------*/

.bg-color-white {
  background-color: #fff;
  padding: 4rem 4rem;
  box-sizing: border-box;
}

/* text-align --------------------*/

.text-align-center {
  text-align: center !important;
}

/* font-weight --------------------*/

.font-weight-bold {
  font-weight: bold !important;
}

/* color --------------------*/

.color-red {
  color: #dd2e1e !important;
}

.color-green {
  color: #5dc342 !important;
}

.color-orange {
  color: #ee9c32 !important;
}

.color-blue {
  color: #2f69af !important;
}

/* txt --------------------*/

.txt-link a {
  text-decoration: underline !important;
  color: #dd2e1e !important;
}

.txt-big {
  font-size: 150%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* padding --------------------------------*/
.pt-4rem {
  padding-top: 4rem;
}

/* margin --------------------------------*/
.mt-4rem {
  margin-top: 4rem;
}

.mt-3rem {
  margin-top: 3rem;
}

.mt-2rem {
  margin-top: 2rem;
}

.mt-1rem {
  margin-top: 1rem;
}

.mt-10px {
  margin-top: 10px;
}

/* padding --------------------------------*/
.p-4rem {
  padding: 4rem;
  box-sizing: border-box;
}

.pb-0 {
  padding-bottom: 0;
}

@media screen and (max-width:767px) {
  .mt-4rem {
    margin-top: 2rem;
  }

  .bg-color-white {
    padding: 4rem 2rem;
  }
}

@media screen and (max-width:480px) {
  .mt-3rem {
    margin-top: 2rem;
  }

  .mt-2rem {
    margin-top: 1rem;
  }

  .bg-color-white {
    padding: 4rem 1rem;
  }
}

@media screen and (min-width:481px) {
  .br-sp480 {
    display: none;
  }
}

/* --------------------------------------------------
 Hide
-------------------------------------------------- */
.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.disnon {
  display: none;
}

.hide {
  opacity: 0;
}