@charset "UTF-8";
/************
hdr_main
************/
.hdr_main {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 136px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1140px) {
  .hdr_main {
    height: 88px;
  }
}
@media (max-width: 650px) {
  .hdr_main {
    height: 64px;
  }
}
.hdr_main .wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr_main .wrap .logo {
  width: 127px;
  transition: opacity 0.3s;
}
@media (max-width: 1140px) {
  .hdr_main .wrap .logo {
    width: 96px;
    margin-left: 20px;
  }
}
@media (max-width: 650px) {
  .hdr_main .wrap .logo {
    width: 72px;
  }
}
.hdr_main .wrap .logo img {
  width: 100%;
}
.hdr_main .wrap .logo:hover {
  opacity: 0.7;
}
@media (max-width: 1140px) {
  .hdr_main .wrap .menu.pc_ver {
    display: none;
  }
}
.hdr_main .wrap .menu.pc_ver .upper {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn {
  width: 180px;
  height: 49px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 2px solid #e90404;
  -o-border-image: linear-gradient(to right, #e90404, #af0404);
     border-image: linear-gradient(to right, #e90404, #af0404);
  border-image-slice: 1;
  transition: 0.4s;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #e90404;
  position: relative;
  padding-left: 28px;
  transition: all 0.4s ease-out;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn span {
  position: relative;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #e90404, #af0404);
  content: "";
  transition: all 0.4s ease-out;
  opacity: 0;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn:after {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 59px;
  content: "";
  background-image: url(../img/dl-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  transition: all 0.4s ease-out;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn:hover {
  color: #fff;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn:hover:after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/dl-img-h.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.hdr_main .wrap .menu.pc_ver .upper a .dl_btn:hover:before {
  opacity: 1;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn {
  width: 180px;
  height: 49px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: linear-gradient(to right, #e90404, #af0404);
  border: 2px solid #e90404;
  -o-border-image: linear-gradient(to right, #e90404, #af0404);
     border-image: linear-gradient(to right, #e90404, #af0404);
  border-image-slice: 1;
  transition: 0.4s;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-left: 24px;
  transition: all 0.4s ease-out;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn span {
  position: relative;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  transition: all 0.4s ease-out;
  opacity: 0;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn:after {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 59px;
  content: "";
  background-image: url(../img/mail-img-h.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  transition: all 0.4s ease-out;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn:hover {
  color: #e90404;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn:hover:after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/mail-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.hdr_main .wrap .menu.pc_ver .upper a .contact_btn:hover:before {
  opacity: 1;
}
.hdr_main .wrap .menu.pc_ver .lower {
  width: 380px;
  margin-top: 24px;
  margin-left: auto;
}
.hdr_main .wrap .menu.pc_ver .lower nav ul {
  display: flex;
  gap: 48px;
}
.hdr_main .wrap .menu.pc_ver .lower nav ul li a {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  transition: opacity 0.4s;
}
.hdr_main .wrap .menu.pc_ver .lower nav ul li:hover {
  opacity: 0.8;
}

.sp_ver {
  display: none;
}
@media (max-width: 1140px) {
  .sp_ver {
    display: block;
  }
}
.sp_ver .nav_wrap {
  display: flex;
  gap: 18px;
  margin-right: 72px;
}
@media (max-width: 650px) {
  .sp_ver .nav_wrap {
    gap: 15px;
    margin-right: 68px;
  }
}

.sp_ver .nav_wrap a .dl_btn {
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e90404;
  transition: 0.4s;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-left: 0;
  transition: all 0.4s ease-out;
}
@media (max-width: 650px) {
  .sp_ver .nav_wrap a .dl_btn {
    width: 40px;
    height: 40px;
  }
}
.sp_ver .nav_wrap a .dl_btn span {
  position: relative;
}
.sp_ver .nav_wrap a .dl_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #e90404, #af0404);
  content: "";
  transition: all 0.4s ease-out;
  opacity: 0;
  border-radius: 9999px;
}
.sp_ver .nav_wrap a .dl_btn:after {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 17px;
  content: "";
  background-image: url(../img/dl-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  transition: all 0.4s ease-out;
}
@media (max-width: 650px) {
  .sp_ver .nav_wrap a .dl_btn:after {
    left: 11px;
  }
}
.sp_ver .nav_wrap a .dl_btn:hover {
  color: #e90404;
}
.sp_ver .nav_wrap a .dl_btn:hover:after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/dl-img-h.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.sp_ver .nav_wrap a .dl_btn:hover:before {
  opacity: 1;
}
.sp_ver .nav_wrap a .contact_btn {
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: linear-gradient(to right, #e90404, #af0404);
  border: 1px solid #e90404;
  transition: 0.4s;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-left: 0;
  transition: all 0.4s ease-out;
}
@media (max-width: 650px) {
  .sp_ver .nav_wrap a .contact_btn {
    width: 40px;
    height: 40px;
  }
}
.sp_ver .nav_wrap a .contact_btn span {
  position: relative;
}
.sp_ver .nav_wrap a .contact_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  transition: all 0.4s ease-out;
  opacity: 0;
  border-radius: 9999px;
}
.sp_ver .nav_wrap a .contact_btn:after {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 17px;
  content: "";
  background-image: url(../img/mail-img-h.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  transition: all 0.4s ease-out;
}
@media (max-width: 650px) {
  .sp_ver .nav_wrap a .contact_btn:after {
    left: 10px;
  }
}
.sp_ver .nav_wrap a .contact_btn:hover {
  color: #e90404;
}
.sp_ver .nav_wrap a .contact_btn:hover:after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/mail-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.sp_ver .nav_wrap a .contact_btn:hover:before {
  opacity: 1;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 1140px) {
  .hamburger {
    top: 24px;
  }
}
@media (max-width: 650px) {
  .hamburger {
    top: 12px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  transform: rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #fff;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
  transition: 0.5s;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #eee;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 2.3em 0;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 650px) {
  nav.globalMenuSp ul li a {
    padding: 1.3em 0;
  }
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

/************
fv_main
************/
.fv_main {
  padding-top: 136px;
  width: 100%;
  height: 554px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-image: url(../img/fv-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1140px) {
  .fv_main {
    height: 755px;
    background-image: url(../img/fv-img2.png);
  }
}
@media (max-width: 710px) {
  .fv_main {
    padding-top: 96px;
    height: 700px;
  }
}
@media (max-width: 550px) {
  .fv_main {
    background-image: url(../img/fv-img3.png);
    background-position: top;
  }
}
.fv_main .bg {
  width: 1060px;
  margin: 0 auto;
}
@media (max-width: 1140px) {
  .fv_main .bg {
    width: 100%;
  }
}
.fv_main .bg .wrap {
  width: 900px;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .fv_main .bg .wrap {
    display: block;
    width: 660px;
    margin: 0 auto;
  }
}
@media (max-width: 710px) {
  .fv_main .bg .wrap {
    width: calc(100% - 50px);
  }
}
.fv_main .bg .wrap .left h1 {
  width: 670px;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1140px) {
  .fv_main .bg .wrap .left h1 {
    width: 100%;
  }
}
.fv_main .bg .wrap .left h1 .main {
  font-size: 46px;
  line-height: 1.35;
}
@media (max-width: 1140px) {
  .fv_main .bg .wrap .left h1 .main {
    font-size: 40px;
  }
}
@media (max-width: 710px) {
  .fv_main .bg .wrap .left h1 .main {
    font-size: 32px;
  }
}
.fv_main .bg .wrap .left h1 .sub {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.35;
}
@media (max-width: 710px) {
  .fv_main .bg .wrap .left h1 .sub {
    font-size: 20px;
  }
}
.fv_main .bg .wrap .left a .dl_btn {
  margin-top: 32px;
  width: 180px;
  height: 49px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e90404;
  -o-border-image: linear-gradient(to right, #e90404, #af0404);
     border-image: linear-gradient(to right, #e90404, #af0404);
  border-image-slice: 1;
  transition: 0.4s;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #e90404;
  position: relative;
  padding-left: 28px;
  transition: all 0.4s ease-out;
}
@media (max-width: 710px) {
  .fv_main .bg .wrap .left a .dl_btn {
    margin-top: 24px;
  }
}
.fv_main .bg .wrap .left a .dl_btn span {
  position: relative;
}
.fv_main .bg .wrap .left a .dl_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #e90404, #af0404);
  content: "";
  transition: all 0.4s ease-out;
  opacity: 0;
}
.fv_main .bg .wrap .left a .dl_btn:after {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 59px;
  content: "";
  background-image: url(../img/dl-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  transition: all 0.4s ease-out;
}
.fv_main .bg .wrap .left a .dl_btn:hover {
  color: #fff;
}
.fv_main .bg .wrap .left a .dl_btn:hover:after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/dl-img-h.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
.fv_main .bg .wrap .left a .dl_btn:hover:before {
  opacity: 1;
}
.fv_main .bg .wrap .right {
  width: 198px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .fv_main .bg .wrap .right {
    margin: 0 auto;
  }
}
@media (max-width: 710px) {
  .fv_main .bg .wrap .right {
    width: 135px;
    margin-top: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.fv_main .bg .wrap .right img {
  width: 65%;
}
.fv_main .bg .wrap .right img:nth-child(2) {
  width: 30%;
}


/************
problem
************/
.problem .bg {
  position: relative;
  background: #f4f2ec;
  z-index: 0;
}
.problem .bg:before {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/problem-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
.problem .bg .con {
  width: 1060px;
  margin: 0 auto;
}
@media (max-width: 1140px) {
  .problem .bg .con {
    width: 900px;
  }
}
@media (max-width: 950px) {
  .problem .bg .con {
    width: calc(100% - 50px);
  }
}
.problem .bg .con h2 {
  padding-top: 90px;
  text-align: center;
}
@media (max-width: 1140px) {
  .problem .bg .con h2 {
    padding-top: 64px;
  }
}
@media (max-width: 650px) {
  .problem .bg .con h2 {
    padding-top: 56px;
  }
}
@media (max-width: 450px) {
  .problem .bg .con h2 {
    padding-top: 48px;
  }
}
.problem .bg .con h2 .sub {
  margin-bottom: 16px;
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #f7b402;
}
@media (max-width: 1140px) {
  .problem .bg .con h2 .sub {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .problem .bg .con h2 .sub {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .problem .bg .con h2 .sub {
    font-size: 16px;
  }
}
.problem .bg .con h2 .main {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #333;
}
@media (max-width: 1140px) {
  .problem .bg .con h2 .main {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .problem .bg .con h2 .main {
    font-size: 28px;
    line-height: 1.35;
  }
}
@media (max-width: 450px) {
  .problem .bg .con h2 .main {
    font-size: 24px;
  }
}
.problem .bg .con .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 64px auto;
}
@media (max-width: 1140px) {
  .problem .bg .con .wrap {
    margin: 48px auto;
    justify-content: center;
    gap: 48px;
  }
}
@media (max-width: 950px) {
  .problem .bg .con .wrap {
    display: block;
  }
}
@media (max-width: 650px) {
  .problem .bg .con .wrap {
    margin: 40px auto;
  }
}
@media (max-width: 450px) {
  .problem .bg .con .wrap {
    margin: 32px auto;
  }
}
.problem .bg .con .wrap .problem {
  width: 300px;
  background: #fff;
}
@media (max-width: 1140px) {
  .problem .bg .con .wrap .problem {
    width: 260px;
  }
}
@media (max-width: 950px) {
  .problem .bg .con .wrap .problem {
    width: 304px;
    margin: 0 auto;
  }
}
.problem .bg .con .wrap .problem .problem_img {
  margin: 0 auto;
  padding-top: 40px;
  width: 118px;
}
@media (max-width: 950px) {
  .problem .bg .con .wrap .problem .problem_img {
    margin: 0 auto;
    padding-top: 48px;
  }
}
.problem .bg .con .wrap .problem .problem_img img {
  width: 100%;
}
.problem .bg .con .wrap .problem .desc {
  width: 224px;
  margin: 32px auto 40px;
  font-size: 19px;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .problem .bg .con .wrap .problem .desc {
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 950px) {
  .problem .bg .con .wrap .problem .desc {
    text-align: center;
    padding-bottom: 48px;
  }
}
.problem .bg .con .mes {
  font-size: 32px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  line-height: 1.5;
  padding-bottom: 150px;
}
@media (max-width: 1140px) {
  .problem .bg .con .mes {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .problem .bg .con .mes {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .problem .bg .con .mes {
    font-size: 20px;
    padding-bottom: 132px;
  }
}

/************
problem_solving
************/
.problem_solving {
  background: linear-gradient(to right, #e8494d, #ba0007);
  -webkit-clip-path: polygon(50% 4.5%, 100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(50% 4.5%, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-top: -96px;
}
@media (max-width: 1140px) {
  .problem_solving {
    -webkit-clip-path: polygon(50% 3%, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(50% 3%, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
@media (max-width: 650px) {
  .problem_solving {
    -webkit-clip-path: polygon(50% 1.5%, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(50% 1.5%, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.problem_solving .bg {
  width: 1060px;
  margin: 0 auto;
  padding: 180px 0 108px;
}
@media (max-width: 1140px) {
  .problem_solving .bg {
    width: 900px;
    padding: 126px 0 30px;
  }
}
@media (max-width: 1140px) and (max-width: 950px) {
  .problem_solving .bg {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1140px) and (max-width: 650px) {
  .problem_solving .bg {
    padding: 94px 0 22px;
  }
}
.problem_solving .bg h2 {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 1140px) {
  .problem_solving .bg h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .problem_solving .bg h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg h2 {
    margin-bottom: 32px;
  }
}
.problem_solving .bg h2 .sub {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .problem_solving .bg h2 .sub {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .problem_solving .bg h2 .sub {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg h2 .sub {
    font-size: 16px;
  }
}
.problem_solving .bg h2 .main {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .problem_solving .bg h2 .main {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .problem_solving .bg h2 .main {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg h2 .main {
    font-size: 24px;
  }
}
@media (max-width: 950px) {
  .problem_solving .bg .con.pc_ver {
    display: none;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg {
  position: relative;
  width: 100%;
  height: 452px;
}
.problem_solving .bg .con.pc_ver .solve_bg .pic {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 614px;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg .pic {
    width: 462px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg .pic img {
  width: 100%;
}
.problem_solving .bg .con.pc_ver .solve_bg .desc {
  position: absolute;
  z-index: 2;
  top: 64px;
  left: 0;
}
.problem_solving .bg .con.pc_ver .solve_bg .desc h3.ttl {
  width: 450px;
  margin-right: auto;
  padding: 12px 0;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  background: linear-gradient(to right, #e8494d, #ba0007);
  font-family: "Rajdhani", sans-serif;
  color: #fff;
}
.problem_solving .bg .con.pc_ver .solve_bg .desc h3.ttl .main {
  font-size: 62px;
  padding-left: 24px;
  line-height: 1;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg .desc h3.ttl .main {
    font-size: 48px;
    padding-left: 18px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg .desc h3.ttl .sub {
  font-size: 28px;
  line-height: 1.6;
}
.problem_solving .bg .con.pc_ver .solve_bg .desc .txt {
  width: 997px;
  height: 310px;
  margin-right: auto;
  background: #fff;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg .desc .txt {
    width: 854px;
    height: 274px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg .desc .txt .main {
  width: 368px;
  margin-right: auto;
  padding-top: 40px;
  padding-left: 40px;
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg .desc .txt .main {
    padding-top: 32px;
    padding-left: 32px;
    font-size: 22px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg .desc .txt .sub {
  width: 368px;
  margin-right: auto;
  padding-top: 24px;
  padding-left: 40px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg .desc .txt .sub {
    padding-top: 18px;
    padding-left: 32px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg2 {
  position: relative;
  width: 100%;
  height: 452px;
  margin: 80px auto;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg2 {
    margin: 24px auto;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg2 .pic {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 614px;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg2 .pic {
    width: 462px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg2 .pic img {
  width: 100%;
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc {
  position: absolute;
  z-index: 2;
  top: 64px;
  right: 0;
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc h3.ttl {
  width: 450px;
  margin-left: auto;
  padding: 12px 0;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  background: linear-gradient(to right, #e8494d, #ba0007);
  font-family: "Rajdhani", sans-serif;
  color: #fff;
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc h3.ttl .main {
  font-size: 62px;
  padding-left: 24px;
  line-height: 1;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg2 .desc h3.ttl .main {
    font-size: 48px;
    padding-left: 18px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc h3.ttl .sub {
  font-size: 28px;
  line-height: 1.6;
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc .txt {
  width: 997px;
  height: 310px;
  margin-left: auto;
  background: #fff;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg2 .desc .txt {
    width: 854px;
    height: 274px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc .txt .main {
  width: 368px;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 40px;
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg2 .desc .txt .main {
    padding-top: 32px;
    padding-right: 32px;
    font-size: 22px;
  }
}
.problem_solving .bg .con.pc_ver .solve_bg2 .desc .txt .sub {
  width: 368px;
  margin-left: auto;
  padding-top: 24px;
  padding-right: 40px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .problem_solving .bg .con.pc_ver .solve_bg2 .desc .txt .sub {
    padding-top: 18px;
    padding-right: 32px;
  }
}
.problem_solving .bg .con.sp_ver {
  display: none;
}
@media (max-width: 950px) {
  .problem_solving .bg .con.sp_ver {
    display: block;
    margin: 0 auto;
  }
}
.problem_solving .bg .con.sp_ver .solve_b {
  width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .problem_solving .bg .con.sp_ver .solve_b {
    width: 100%;
  }
}
.problem_solving .bg .con.sp_ver .solve_b .pic img {
  width: 100%;
}
.problem_solving .bg .con.sp_ver .solve_b .desc .ttl {
  width: 100%;
  margin-left: auto;
  padding: 12px 0;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  background: linear-gradient(to right, #ed5257, #b30006);
  font-family: "Rajdhani", sans-serif;
  color: #fff;
}
.problem_solving .bg .con.sp_ver .solve_b .desc .ttl .main {
  font-size: 48px;
  padding-left: 24px;
  line-height: 1;
}
@media (max-width: 650px) {
  .problem_solving .bg .con.sp_ver .solve_b .desc .ttl .main {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg .con.sp_ver .solve_b .desc .ttl .main {
    font-size: 32px;
  }
}
.problem_solving .bg .con.sp_ver .solve_b .desc .ttl .sub {
  font-size: 28px;
  line-height: 1.6;
}
@media (max-width: 650px) {
  .problem_solving .bg .con.sp_ver .solve_b .desc .ttl .sub {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg .con.sp_ver .solve_b .desc .ttl .sub {
    font-size: 20px;
  }
}
.problem_solving .bg .con.sp_ver .solve_b .txt {
  width: 100%;
  margin-left: auto;
  background: #fff;
}
.problem_solving .bg .con.sp_ver .solve_b .txt .main {
  margin-left: auto;
  padding: 0;
  padding: 24px 18px 18px;
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 650px) {
  .problem_solving .bg .con.sp_ver .solve_b .txt .main {
    padding: 18px 14px 14px;
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg .con.sp_ver .solve_b .txt .main {
    padding: 16px 12px 12px;
    font-size: 18px;
  }
}
.problem_solving .bg .con.sp_ver .solve_b .txt .sub {
  margin-left: auto;
  padding: 0 18px 24px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 650px) {
  .problem_solving .bg .con.sp_ver .solve_b .txt .sub {
    padding: 0 14px 20px;
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .problem_solving .bg .con.sp_ver .solve_b .txt .sub {
    padding: 0 12px 18px;
    font-size: 12px;
  }
}

/************
about
************/
.about .wrap.pc_ver {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .about .wrap.pc_ver {
    width: 900px;
    padding: 64px 0;
  }
}
@media (max-width: 950px) {
  .about .wrap.pc_ver {
    display: none;
  }
}
.about .wrap.pc_ver .left h2 .sub {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #e70404;
}
@media (max-width: 1140px) {
  .about .wrap.pc_ver .left h2 .sub {
    font-size: 20px;
  }
}
.about .wrap.pc_ver .left h2 .main {
  margin-bottom: 16px;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #333;
}
@media (max-width: 1140px) {
  .about .wrap.pc_ver .left h2 .main {
    font-size: 32px;
  }
}
.about .wrap.pc_ver .left .desc {
  width: 508px;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .about .wrap.pc_ver .left .desc {
    width: 420px;
  }
}
.about .wrap.pc_ver .right iframe {
  width: 520px;
  height: 320px;
}
@media (max-width: 1140px) {
  .about .wrap.pc_ver .right iframe {
    width: 420px;
    height: 258px;
  }
}
.about .wrap.sp_ver {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
  display: flex;
  display: none;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .about .wrap.sp_ver {
    width: 900px;
    padding: 64px 0;
  }
}
@media (max-width: 950px) {
  .about .wrap.sp_ver {
    width: calc(100% - 50px);
    display: block;
  }
}
@media (max-width: 950px) {
  .about .wrap.sp_ver .left h2 {
    text-align: center;
  }
}
.about .wrap.sp_ver .left h2 .sub {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #e70404;
}
@media (max-width: 1140px) {
  .about .wrap.sp_ver .left h2 .sub {
    font-size: 20px;
  }
}
.about .wrap.sp_ver .left h2 .main {
  margin-bottom: 16px;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #333;
}
@media (max-width: 1140px) {
  .about .wrap.sp_ver .left h2 .main {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
.about .wrap.sp_ver .left .desc {
  width: 508px;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .about .wrap.sp_ver .left .desc {
    width: 500px;
  }
}
@media (max-width: 950px) {
  .about .wrap.sp_ver .left .desc {
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .about .wrap.sp_ver .left .desc {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .about .wrap.sp_ver .left .desc {
    font-size: 12px;
  }
}
@media (max-width: 950px) {
  .about .wrap.sp_ver .right {
    text-align: center;
  }
}
.about .wrap.sp_ver .right iframe {
  width: 520px;
  height: 320px;
}
@media (max-width: 1140px) {
  .about .wrap.sp_ver .right iframe {
    width: 500px;
    height: 307px;
  }
}
@media (max-width: 950px) {
  .about .wrap.sp_ver .right iframe {
    margin: 0 auto;
    height: auto;
    margin-bottom: 18px;
  }
}
@media (max-width: 650px) {
  .about .wrap.sp_ver .right iframe {
    width: 100%;
  }
}

/************
feature
************/
.feature {
  background: linear-gradient(to right, #e8494d, #ba0007);
  position: relative;
}
.feature:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 864px;
  height: 660px;
  background-image: url(../img/feature_bg.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.13;
  content: "";
}
@media (max-width: 1140px) {
  .feature:before {
    width: 600px;
    height: 462px;
  }
}
@media (max-width: 950px) {
  .feature:before {
    background-image: none;
  }
}
.feature .bg {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (max-width: 1140px) {
  .feature .bg {
    width: 900px;
    padding: 64px 0;
  }
}
@media (max-width: 950px) {
  .feature .bg {
    width: calc(100% - 50px);
  }
}
@media (max-width: 650px) {
  .feature .bg {
    padding: 56px 0;
  }
}
@media (max-width: 450px) {
  .feature .bg {
    padding: 48px 0;
  }
}
.feature .bg h2 {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 1140px) {
  .feature .bg h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .feature .bg h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .feature .bg h2 {
    margin-bottom: 32px;
  }
}
.feature .bg h2 .sub {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .feature .bg h2 .sub {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .feature .bg h2 .sub {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .feature .bg h2 .sub {
    font-size: 16px;
  }
}
.feature .bg h2 .main {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .feature .bg h2 .main {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .feature .bg h2 .main {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .feature .bg h2 .main {
    font-size: 24px;
  }
}
.feature .bg .con .feature_b {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (max-width: 1140px) {
  .feature .bg .con .feature_b {
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
  }
}
@media (max-width: 950px) {
  .feature .bg .con .feature_b {
    display: block;
    width: 500px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .feature .bg .con .feature_b {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .feature .bg .con .feature_b {
    margin-bottom: 32px;
  }
}
.feature .bg .con .feature_b:last-of-type {
  margin-bottom: 0;
}
.feature .bg .con .feature_b .feature_img {
  width: 348px;
}
@media (max-width: 1140px) {
  .feature .bg .con .feature_b .feature_img {
    width: 280px;
  }
}
@media (max-width: 950px) {
  .feature .bg .con .feature_b .feature_img {
    width: 100%;
  }
}
.feature .bg .con .feature_b .feature_img img {
  width: 100%;
}
.feature .bg .con .feature_b .desc {
  width: 664px;
}
@media (max-width: 1140px) {
  .feature .bg .con .feature_b .desc {
    width: 468px;
  }
}
@media (max-width: 950px) {
  .feature .bg .con .feature_b .desc {
    width: 100%;
  }
}
.feature .bg .con .feature_b .desc h3 {
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1.35;
}
@media (max-width: 1140px) {
  .feature .bg .con .feature_b .desc h3 {
    font-size: 24px;
  }
}
@media (max-width: 950px) {
  .feature .bg .con .feature_b .desc h3 {
    margin-top: 18px;
  }
}
@media (max-width: 650px) {
  .feature .bg .con .feature_b .desc h3 {
    margin-top: 16px;
  }
}
@media (max-width: 450px) {
  .feature .bg .con .feature_b .desc h3 {
    margin-top: 14px;
  }
}
.feature .bg .con .feature_b .desc h3:after {
  display: block;
  margin: 16px auto;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
}
@media (max-width: 950px) {
  .feature .bg .con .feature_b .desc h3:after {
    margin: 14px auto;
  }
}
@media (max-width: 650px) {
  .feature .bg .con .feature_b .desc h3:after {
    margin: 12px auto;
  }
}
@media (max-width: 450px) {
  .feature .bg .con .feature_b .desc h3:after {
    margin: 10px auto;
  }
}
.feature .bg .con .feature_b .desc .txt {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  line-height: 1.5;
}
.feature .bg .mes {
  margin-top: 68px;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.35;
  color: #fff;
}
@media (max-width: 1140px) {
  .feature .bg .mes {
    font-size: 28px;
    margin-top: 48px;
  }
}
@media (max-width: 950px) {
  .feature .bg .mes {
    font-size: 24px;
    margin-top: 40px;
  }
}
@media (max-width: 650px) {
  .feature .bg .mes {
    font-size: 22px;
    margin-top: 32px;
  }
}
@media (max-width: 450px) {
  .feature .bg .mes {
    font-size: 20px;
    margin-top: 24px;
  }
}

/************
want
************/
.want {
  background: #f4f2ec;
}
.want .bg {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (max-width: 1140px) {
  .want .bg {
    width: 900px;
    padding: 64px 0;
  }
}
@media (max-width: 1140px) and (max-width: 950px) {
  .want .bg {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1140px) and (max-width: 650px) {
  .want .bg {
    padding: 56px 0;
  }
}
@media (max-width: 1140px) and (max-width: 450px) {
  .want .bg {
    padding: 48px 0;
  }
}
.want .bg h2 {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 1140px) {
  .want .bg h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .want .bg h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .want .bg h2 {
    margin-bottom: 32px;
  }
}
.want .bg h2 .sub {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #e70404;
}
@media (max-width: 1140px) {
  .want .bg h2 .sub {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .want .bg h2 .sub {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .want .bg h2 .sub {
    font-size: 16px;
  }
}
.want .bg h2 .main {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .want .bg h2 .main {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .want .bg h2 .main {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .want .bg h2 .main {
    font-size: 24px;
  }
}
.want .bg .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 950px) {
  .want .bg .wrap {
    display: block;
  }
}
.want .bg .wrap .want_b {
  width: 330px;
}
@media (max-width: 1140px) {
  .want .bg .wrap .want_b {
    width: 280px;
  }
}
@media (max-width: 950px) {
  .want .bg .wrap .want_b {
    width: 500px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
  .want .bg .wrap .want_b:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .want .bg .wrap .want_b {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .want .bg .wrap .want_b {
    margin-bottom: 32px;
  }
}
.want .bg .wrap .want_b .want_img img {
  width: 100%;
}
.want .bg .wrap .want_b .desc {
  height: 312px;
  background: #fff;
}
@media (max-width: 950px) {
  .want .bg .wrap .want_b .desc {
    height: 252px;
  }
}
@media (max-width: 650px) {
  .want .bg .wrap .want_b .desc {
    height: auto;
    padding-bottom: 24px;
  }
}
.want .bg .wrap .want_b .desc .con {
  width: calc(100% - 24px);
  margin: 0 auto;
}
.want .bg .wrap .want_b .desc .con h3 {
  padding-top: 24px;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #333;
}
@media (max-width: 1140px) {
  .want .bg .wrap .want_b .desc .con h3 {
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  .want .bg .wrap .want_b .desc .con h3 {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .want .bg .wrap .want_b .desc .con h3 {
    font-size: 20px;
  }
}
.want .bg .wrap .want_b .desc .con h3:after {
  display: block;
  margin: 24px auto;
  width: 100%;
  height: 2px;
  background: #e70404;
  content: "";
}
@media (max-width: 650px) {
  .want .bg .wrap .want_b .desc .con h3:after {
    margin: 20px auto;
  }
}
@media (max-width: 450px) {
  .want .bg .wrap .want_b .desc .con h3:after {
    margin: 18px auto;
    height: 1.5px;
  }
}
.want .bg .wrap .want_b .desc .con .txt {
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .want .bg .wrap .want_b .desc .con .txt {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .want .bg .wrap .want_b .desc .con .txt {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .want .bg .wrap .want_b .desc .con .txt {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .want .bg .wrap .want_b .desc .con .txt {
    font-size: 12px;
  }
}

/************
faq
************/
.faq {
  background: linear-gradient(to right, #e8494d, #ba0007);
}
.faq .bg {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (max-width: 1140px) {
  .faq .bg {
    padding: 64px 0;
    width: calc(100% - 50px);
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .faq .bg {
    padding: 56px 0;
  }
}
@media (max-width: 450px) {
  .faq .bg {
    padding: 48px 0;
  }
}
.faq .bg h2 {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 1140px) {
  .faq .bg h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .faq .bg h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .faq .bg h2 {
    margin-bottom: 32px;
  }
}
.faq .bg h2 .sub {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .faq .bg h2 .sub {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .faq .bg h2 .sub {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .faq .bg h2 .sub {
    font-size: 16px;
  }
}
.faq .bg h2 .main {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .faq .bg h2 .main {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .faq .bg h2 .main {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .faq .bg h2 .main {
    font-size: 24px;
  }
}
.faq .bg .con .faq_b.b1 {
  margin-bottom: 56px;
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b1 {
    margin-bottom: 48px;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b1 {
    margin-bottom: 40px;
  }
}
.faq .bg .con .faq_b.b1 h3.question {
  margin-bottom: 40px;
  padding-left: 32px;
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  position: relative;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b1 h3.question {
    font-size: 24px;
    margin-bottom: 32px;
    padding-left: 24px;
    line-height: 1.45;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b1 h3.question {
    font-size: 20px;
    margin-bottom: 28px;
    padding-left: 20px;
    text-indent: -1em;
    padding-left: 2em;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b1 h3.question {
    font-size: 18px;
    margin-bottom: 24px;
    padding-left: 18px;
    text-indent: -1em;
    padding-left: 2em;
  }
}
.faq .bg .con .faq_b.b1 h3.question:before {
  position: absolute;
  top: 5px;
  left: -3px;
  width: 32px;
  height: 24px;
  background-image: url(../img/question_i.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b1 h3.question:before {
    height: 20px;
    top: 9px;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b1 h3.question:before {
    top: 7px;
    height: 18px;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b1 h3.question:before {
    top: 5px;
    height: 16px;
  }
}
.faq .bg .con .faq_b.b1 .answer {
  padding: 36px 32px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
  border: 2px solid #fff;
  line-height: 1.35;
  text-indent: -1em;
  padding-left: 2em !important;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b1 .answer {
    padding: 28px 24px;
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b1 .answer {
    padding: 22px 18px;
    font-size: 20px;
    text-indent: -1em;
    padding-left: 2em;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b1 .answer {
    padding: 20px 16px;
    font-size: 18px;
    border: 1.5px solid #fff;
    text-indent: -1em;
    padding-left: 2em;
  }
}
.faq .bg .con .faq_b.b2 {
  margin-bottom: 56px;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 {
    margin-bottom: 32px;
  }
}
.faq .bg .con .faq_b.b1:last-of-type {
  margin-bottom: 0;
}
.faq .bg .con .faq_b.b2 h3.question {
  margin-bottom: 40px;
  padding-left: 32px;
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  position: relative;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 h3.question {
    font-size: 24px;
    margin-bottom: 32px;
    padding-left: 24px;
    line-height: 1.45;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b2 h3.question {
    font-size: 20px;
    margin-bottom: 28px;
    padding-left: 20px;
    text-indent: -1em;
    padding-left: 2em;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 h3.question {
    font-size: 18px;
    margin-bottom: 24px;
    padding-left: 18px;
    text-indent: -1em;
    padding-left: 2em;
  }
}
.faq .bg .con .faq_b.b2 h3.question:before {
  position: absolute;
  top: 5px;
  left: -3px;
  width: 32px;
  height: 24px;
  background-image: url(../img/question_i.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 h3.question:before {
    top: 9px;
    width: 28px;
    height: 20px;
  }
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 h3.question:before {
    height: 20px;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b2 h3.question:before {
    top: 7px;
    height: 18px;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 h3.question:before {
    top: 5px;
    height: 16px;
  }
}
.faq .bg .con .faq_b.b2 .answer_con {
  padding: 36px 32px;
  border: 2px solid #fff;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 .answer_con {
    padding: 28px 24px;
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b2 .answer_con {
    padding: 22px 18px;
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 .answer_con {
    padding: 20px 16px;
    font-size: 18px;
    border: 1.5px solid #fff;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 .answer_con {
    border: 1.5px solid #fff;
  }
}
.faq .bg .con .faq_b.b2 .answer_con .txt {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 .answer_con .txt {
    margin-bottom: 22px;
    font-size: 24px;
    line-height: 1.45;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b2 .answer_con .txt {
    margin-bottom: 20px;
    font-size: 20px;
    text-indent: -1em;
    padding-left: 1em;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 .answer_con .txt {
    margin-bottom: 10px;
    font-size: 18px;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.faq .bg .con .faq_b.b2 .answer_con .txt.last {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.45;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 .answer_con .txt.last {
    margin-bottom: 22px;
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  .faq .bg .con .faq_b.b2 .answer_con .txt.last {
    margin-bottom: 20px;
    font-size: 20px;
    text-indent: -1em;
    padding-left: 1em;
  }
}
@media (max-width: 450px) {
  .faq .bg .con .faq_b.b2 .answer_con .txt.last {
    margin-bottom: 10px;
    font-size: 18px;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.faq .bg .con .faq_b.b2 .answer_con .answer_img.pc_ver {
  width: 880px;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 .answer_con .answer_img.pc_ver {
    width: 680px;
  }
}
@media (max-width: 800px) {
  .faq .bg .con .faq_b.b2 .answer_con .answer_img.pc_ver {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .faq .bg .con .faq_b.b2 .answer_con .answer_img.pc_ver {
    display: none;
    width: 100%;
    max-width: 680px;
  }
}
.faq .bg .con .faq_b.b2 .answer_con .answer_img.pc_ver img {
  width: 100%;
}
.faq .bg .con .faq_b.b2 .answer_con .answer_img.sp_ver {
  display: none;
  width: 880px;
}
@media (max-width: 1140px) {
  .faq .bg .con .faq_b.b2 .answer_con .answer_img.sp_ver {
    width: 680px;
  }
}
@media (max-width: 550px) {
  .faq .bg .con .faq_b.b2 .answer_con .answer_img.sp_ver {
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }
  .faq .bg .con .faq_b.b2 .answer_con .answer_img.sp_ver:last-of-type {
    margin-bottom: 0;
  }
}
.faq .bg .con .faq_b.b2 .answer_con .answer_img.sp_ver img {
  width: 100%;
  background: #fff;
}

/************
icom
************/
.icom {
  background: #ededed;
  position: relative;
  opacity: 0.95;
}
.icom:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 682px;
  height: 618px;
  background-image: url(../img/icom-bg.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 1140px) {
  .icom:before {
    width: 502px;
    height: 456px;
  }
}
@media (max-width: 950px) {
  .icom:before {
    width: 100%;
    background-image: none;
  }
}
.icom .bg {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (max-width: 1140px) {
  .icom .bg {
    width: 900px;
    padding: 64px 0;
  }
}
@media (max-width: 1140px) {
  .icom .bg {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
}
.icom .bg h2 {
  margin-bottom: 64px;
  font-size: 40px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #144691;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .icom .bg h2 {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .icom .bg h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .icom .bg h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.icom .bg .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .icom .bg .wrap {
    justify-content: center;
    gap: 32px;
  }
}
@media (max-width: 950px) {
  .icom .bg .wrap {
    display: block;
  }
}
.icom .bg .wrap .want_b {
  width: 330px;
  background: #fff;
}
@media (max-width: 1140px) {
  .icom .bg .wrap .want_b {
    width: 280px;
  }
}
@media (max-width: 950px) {
  .icom .bg .wrap .want_b {
    width: 500px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
}
@media (max-width: 950px) and (max-width: 650px) {
  .icom .bg .wrap .want_b {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 950px) and (max-width: 450px) {
  .icom .bg .wrap .want_b {
    margin-bottom: 32px;
  }
}
@media (max-width: 950px) {
  .icom .bg .wrap .want_b:last-of-type {
    margin-bottom: 0;
  }
}
.icom .bg .wrap .want_b .con {
  width: calc(100% - 24px);
  margin: 0 auto;
}
.icom .bg .wrap .want_b .con .want_img {
  padding-top: 12px;
}
.icom .bg .wrap .want_b .con .want_img img {
  width: 100%;
}
.icom .bg .wrap .want_b .con .desc {
  width: calc(100% - 24px);
  margin: 0 auto;
  padding-top: 12px;
  height: 254px;
  background: #fff;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .icom .bg .wrap .want_b .con .desc {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .icom .bg .wrap .want_b .con .desc {
    font-size: 16px;
    height: 170px;
  }
}
@media (max-width: 650px) {
  .icom .bg .wrap .want_b .con .desc {
    font-size: 14px;
    height: auto;
    padding-bottom: 24px;
  }
}
.contact {
  background: #333;
  position: relative;
  z-index: 0;
  opacity: 0.9;
}
.contact:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/contact-bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  content: "";
}
@media (max-width: 450px) {
  .contact:before {
    background-attachment: unset;
  }
}
.contact .bg {
  width: 1060px;
  margin: 0 auto;
  padding: 90px 0;
}
@media (max-width: 1140px) {
  .contact .bg {
    width: 900px;
    padding: 64px 0;
  }
}
@media (max-width: 950px) {
  .contact .bg {
    width: calc(100% - 50px);
  }
}
@media (max-width: 650px) {
  .contact .bg {
    padding: 56px 0;
  }
}
@media (max-width: 450px) {
  .contact .bg {
    padding: 48px 0;
  }
}
.contact .bg h2 {
  margin-bottom: 64px;
  font-size: 40px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1140px) {
  .contact .bg h2 {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
@media (max-width: 650px) {
  .contact .bg h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .contact .bg h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.contact .bg .con.pc_ver {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
@media (max-width: 950px) {
  .contact .bg .con.pc_ver {
    display: none;
  }
}
@media (max-width: 450px) {
  .contact .bg .con.pc_ver {
    border: 1.5px solid #fff;
  }
}
.contact .bg .con.pc_ver a {
  width: 527px;
  display: block;
  border-left: 2px solid #fff;
  transition: 0.6s;
}
.contact .bg .con.pc_ver a:first-of-type {
  border: none;
}
.contact .bg .con.pc_ver a:first-of-type:hover {
  background: #fff;
}
.contact .bg .con.pc_ver a:first-of-type:hover > .contact_b > .block > .b_txt {
  color: #333;
}
.contact .bg .con.pc_ver a:first-of-type:hover > .contact_b > .block > .b_wrap > .b_i {
  filter: brightness(0) invert(0);
}
.contact .bg .con.pc_ver a:first-of-type:hover > .contact_b > .block > .b_wrap > .b_sec {
  color: #333;
}
.contact .bg .con.pc_ver a:hover {
  background: #fff;
}
.contact .bg .con.pc_ver a:hover > .contact_b > .block > .b_txt {
  color: #333;
}
.contact .bg .con.pc_ver a:hover > .contact_b > .block > .b_wrap > .b_i {
  filter: brightness(0) invert(0);
}
.contact .bg .con.pc_ver a:hover > .contact_b > .block > .b_wrap > .b_sec {
  color: #333;
}
.contact .bg .con.pc_ver a .contact_b {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 527px;
  height: 164px;
}
.contact .bg .con.pc_ver a .contact_b:first-of-type {
  border: none;
}
@media (max-width: 1140px) {
  .contact .bg .con.pc_ver a .contact_b {
    width: 447px;
  }
}
.contact .bg .con.pc_ver a .contact_b .block .b_txt {
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.pc_ver a .contact_b .block .b_txt {
    font-size: 14px;
  }
}
.contact .bg .con.pc_ver a .contact_b .block .b_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact .bg .con.pc_ver a .contact_b .block .b_wrap .b_i {
  width: 22px;
}
.contact .bg .con.pc_ver a .contact_b .block .b_wrap .b_i img {
  width: 100%;
}
.contact .bg .con.pc_ver a .contact_b .block .b_wrap .b_sec {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.pc_ver a .contact_b .block .b_wrap .b_sec {
    font-size: 24px;
  }
}
.contact .bg .con.tab_ver {
  display: none;
}
@media (max-width: 950px) {
  .contact .bg .con.tab_ver {
    display: block;
  }
}
@media (max-width: 674px) {
  .contact .bg .con.tab_ver {
    display: none;
  }
}

.contact .bg .con.tab_ver a.contact_a {
  width: 600px;
  margin: 0 auto;
  display: block;
  border: 2px solid #fff;
  transition: 0.6s;
}
.contact .bg .con.tab_ver a.contact_a:nth-child(2){
  border-top: none;
}

@media (max-width: 450px) {
  .contact .bg .con.tab_ver a.contact_a {
    border: 1.5px solid #fff;
  }
}
.contact .bg .con.tab_ver a.contact_a:hover {
  background: #fff;
}
.contact .bg .con.tab_ver a.contact_a:hover > .contact_b > .block > .b_txt {
  color: #333;
}
.contact .bg .con.tab_ver a.contact_a:hover > .contact_b > .block > .b_wrap > .b_i {
  filter: brightness(0) invert(0);
}
.contact .bg .con.tab_ver a.contact_a:hover > .contact_b > .block > .b_wrap > .b_sec {
  color: #333;
}

.contact .bg .con.tab_ver a.contact_a .contact_b:first-of-type {
  border: none;
}

.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_txt {
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.tab_ver a.contact_a .contact_b .block .b_txt {
    font-size: 14px;
  }
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_i {
  width: 22px;
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_i img {
  width: 100%;
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_sec {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_sec {
    font-size: 24px;
  }
}
.contact .bg .con.tab_ver a.contact_a .contact_b {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 600px;
  margin: 0 auto;
  border: 2px solid #fff;
  height: 164px;
}

@media (max-width: 450px) {
  .contact .bg .con.tab_ver a.contact_a .contact_b {
    border: 1.5px solid #fff;
  }
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_txt {
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.tab_ver a.contact_a .contact_b .block .b_txt {
    font-size: 14px;
  }
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_i {
  width: 22px;
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_i img {
  width: 100%;
}
.contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_sec {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.tab_ver a.contact_a .contact_b .block .b_wrap .b_sec {
    font-size: 24px;
  }
}
.contact .bg .con.sp_ver {
  display: none;
}
@media (max-width: 674px) {
  .contact .bg .con.sp_ver {
    width: 100%;
    display: block;
  }
}
.contact .bg .con.sp_ver a {
  display: block;
  border: 2px solid #fff;
  transition: 0.6s;
}
@media (max-width: 450px) {
  .contact .bg .con.sp_ver a {
    border: 1.5px solid #fff;
  }
}
.contact .bg .con.sp_ver a:first-of-type {
  border-bottom: none;
}
.contact .bg .con.sp_ver a:hover {
  background: #fff;
}
.contact .bg .con.sp_ver a:hover > .contact_b > .block > .b_txt {
  color: #333;
}
.contact .bg .con.sp_ver a:hover > .contact_b > .block > .b_wrap > .b_i {
  filter: brightness(0) invert(0);
}
.contact .bg .con.sp_ver a:hover > .contact_b > .block > .b_wrap > .b_sec {
  color: #333;
}
.contact .bg .con.sp_ver a .contact_b {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 353px;
  height: 164px;
}
.contact .bg .con.sp_ver a .contact_b:first-of-type {
  border: none;
}
@media (max-width: 1140px) {
  .contact .bg .con.sp_ver a .contact_b {
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .contact .bg .con.sp_ver a .contact_b {
    width: 100%;
    height: auto;
    padding: 40px 0;
  }
}
.contact .bg .con.sp_ver a .contact_b .block .b_txt {
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.sp_ver a .contact_b .block .b_txt {
    font-size: 14px;
  }
}
.contact .bg .con.sp_ver a .contact_b .block .b_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact .bg .con.sp_ver a .contact_b .block .b_wrap .b_i {
  width: 22px;
}
.contact .bg .con.sp_ver a .contact_b .block .b_wrap .b_i img {
  width: 100%;
}
.contact .bg .con.sp_ver a .contact_b .block .b_wrap .b_sec {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1140px) {
  .contact .bg .con.sp_ver a .contact_b .block .b_wrap .b_sec {
    font-size: 24px;
  }
}

/************
ftr_main
************/
.ftr_main .upper {
  background: #fff;
}
.ftr_main .upper .logo {
  width: 128px;
  margin: 64px auto;
}
@media (max-width: 1140px) {
  .ftr_main .upper .logo {
    width: 104px;
    margin: 56px auto;
  }
}
@media (max-width: 650px) {
  .ftr_main .upper .logo {
    width: 90px;
    margin: 48px auto;
  }
}
@media (max-width: 450px) {
  .ftr_main .upper .logo {
    width: 72px;
    margin: 40px auto;
  }
}
.ftr_main .upper .logo img {
  width: 100%;
}
.ftr_main .lower {
  padding: 20px 30px;
  font-size: 14px;
  color: #fff;
  background: #333;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1100px){
.ftr_main .lower {
    padding: 15px 30px;
}
}
@media only screen and (max-width: 900px){
  .ftr_main .lower {
      padding: 15px 20px;
  }
}
@media only screen and (max-width: 640px){
  .ftr_main .lower {
      padding: 15px 15px;
      font-size: 62.5%;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-box-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      align-items: center;
  }
}
.ftr_main .lower ul {
  display: flex;
}
@media (max-width: 640px){
  .ftr_main .lower ul {
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
  }  
  }
.ftr_main .lower ul li {
  list-style: none;
  margin-right: 20px;
  border-left: solid 1px #e0e0e0;
  padding-left: 20px;
}
.ftr_main .lower ul li:first-of-type {
  border: none;
  padding-left: 0;
}
.ftr_main .lower ul li:last-of-type {
    margin-right: 0;
}
.ftr_main .lower ul li a {
  text-decoration: none;
  color: #fff;
}
.ftr_main .lower ul li a:hover {
  text-decoration: underline;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ba0007;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a img {
  width: 16px;
}

#page-top a:hover {
  opacity: 0.9;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/
#page-top.LeftMove {
  -webkit-animation: LeftAnime 0.5s forwards;
          animation: LeftAnime 0.5s forwards;
}

@-webkit-keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  -webkit-animation: RightAnime 0.5s forwards;
          animation: RightAnime 0.5s forwards;
}

@-webkit-keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}/*# sourceMappingURL=lp.css.map */