@charset "utf-8";

/*
---------------------------------------------
heading
---------------------------------------------
*/

.heading-lv2 {
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  color: #d30e1c;
  margin-top: 90px;
}

.heading-lead {
  font-weight: 500;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .heading-lv2 {
    font-size: 20px;
    margin-top: 40px;
  }
  
  .heading-lead {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 60px;
  }
}

/*
---------------------------------------------
pagetop
---------------------------------------------
*/

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: none;
}

#pagetop a {
  display: block;
  width: 65px;
  height: 65px;
  font-weight: bold;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #d30e1c;
  transition: .3s;
}

#pagetop a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: .3s;
}

#pagetop a:hover {
  background: #D30E1C;
}

#pagetop a:hover::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

@media screen and (max-width: 767px) {
  #pagetop {
    right: 13px;
  }

  #pagetop a {
    width: 50px;
    height: 50px;
  }
}

/*
---------------------------------------------
kv
---------------------------------------------
*/

#home .kv {
  background: url(../images/home/kv.jpg) center/cover no-repeat;
  height: 680px;
  position: relative;
}

#home .kv .body {
  position: absolute;
  bottom: 120px;
  left: 240px;
}

#home .kv .lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 38px;
  margin-top: 24px;
}

#home .kv .title {
  font-weight: bold;
  font-size: 50px;
  letter-spacing: -0.02em;
  color: #d30e1c;
}

#home .kv .kv-banner {
  position: absolute;
  width: 361px;
  height: 198px;
  top: 80px;
  right: 90px;
}

@media screen and (max-width: 1550px) {
  #home .kv .body {
    left: 5%;
  }
}

@media screen and (max-width: 767px) {
  #home .kv-banner {
    padding-top: 34px;
    text-align: center;
  }

  #home .kv-banner img {
    max-width: 100%;
  }

  #home .kv {
    background: url(../images/home/kv-sp.jpg) center/cover no-repeat;
    height: 543px;
  }

  #home .kv .body {
    bottom: 54px;
    left: 21px;
  }
  
  #home .kv .lead {
    font-size: 16px;
    line-height: 30px;
    margin-top: 27px;
    padding-right: 20px;
  }
  
  #home .kv .title {
    font-size: 30px;
  }
}

@media screen and (max-width: 374px) {
  #home .kv .title {
    font-size: 26px;
  }
}

/*
---------------------------------------------
app
---------------------------------------------
*/

.app {
  padding-top: 80px;
  font-weight: bold;
}

.app .lead {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 23px;
}

.app .inner {
  position: relative;
  background: #D30E1C;
  border-radius: 10px;
  display: flex;
  padding: 50px 60px 52px;
  gap: 0;
  overflow: hidden;
}

.app .inner::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -89px;
  background: #FCF2F3;
  width: 590px;
  height: 834px;
  transform: rotateZ(20deg);
}

.app .body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.app .body .title span {
  background: white;
  font-size: 50px;
  padding: 3px 10px;
  display: inline-block;
}

.app .body .title .red {
  color: #D30E1C;
}

.app .body .sub-title {
  color: white;
  font-size: 32px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.app .body .text {
  font-size: 18px;
  line-height: 36px;
  color: #fff;
}

.app .body .btns {
  display: flex;
  margin-top: 57px;
  gap: 20px;
}

.app .body .btn {
  width: 300px;
  background: white;
  border-radius: 6px;
  color: #D30E1C;
  text-align: center;
  padding: 22px 0;
  position: relative;
  border: solid 2px #D30E1C;
  transition: .3s;
}

.app .body .btn.orange {
  background: #F08C37;
  color: white;
  border: solid 2px #F08C37;
}

.app .body .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../images/home/icon-link-r.png) center/cover no-repeat;
  width: 15px;
  height: 17px;
  transition: .3s;
}

.app .body .btn.orange::after {
  background: url(../images/home/icon-link-w.png) center/cover no-repeat;
}

.app .body .btn:hover {
  background: #D30E1C;
  color: white;
  border: solid 2px white;
}

.app .body .btn:hover::after {
  background: url(../images/home/icon-link-w.png) center/cover no-repeat;
}

.app .body .btn.orange:hover {
  background: white;
  color: #F08C37;
  border: solid 2px #F08C37;
}

.app .body .btn.orange:hover::after {
  background: url(../images/home/icon-link-o.png) center/cover no-repeat;
}

.app .images {
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1330px) {
  .app .lead {
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 15px;
  }

  .app .inner {
    gap: 20px;
  }

  .app .inner::after {
    right: -35%;
  }

  .app .images {
    width: 100%;
  }

  .app .images img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .app {
    padding-top: 40px;
  }

  .app .contents-inner {
    padding: 0;
  }

  .app .inner {
    border-radius: 0;
    display: block;
    padding: 50px 24px 40px;
  }
  
  .app .inner::after {
    top: -450px;
    right: -400px;
    transform: rotateZ(-35deg);
  }

  .app .body::after {
    content: "";
    position: absolute;
    top: -39px;
    right: -17px;
    background: url(../images/home/info-img-sp.png?20231031) center/cover no-repeat;
    width: 171px;
    height: 250px;
    z-index: -1;
  }

  .app .body .title span {
    font-size: 32px;
  }

  .app .body .sub-title {
    margin-top: 37px;
  }
  
  .app .body .text {
    font-size: 16px;
    line-height: 30px;
    padding-right: 20px;
  }
  
  .app .body .btns {
    display: block;
    margin-top: 30px;
  }
  
  .app .body .btn {
    display: block;
    width: 100%;
  }
  
  .app .body .btn.orange {
    margin-top: 20px;
  }
}

/*
---------------------------------------------
service
---------------------------------------------
*/

#home .service {
  padding-top: 100px;
}

#home .service .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

#home .service .service-title {
  font-weight: bold;
  font-size: 60px;
  color: #d30e1c;
}

#home .service .lead {
  font-weight: 500;
  font-size: 18px;
  margin-left: 38px;
  margin-top: 5px;
}

#home .service .area {
  background: #F7F7F7;
  border-radius: 10px;
}

#home .service .area {
  padding: 58px 50px;
}

#home .service .area.bm0 {
  padding: 58px 50px 0;
}

#home .service .area + .area {
  margin-top: 50px;
}

#home .service .area .media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#home .service .area.bm0 .media {
  align-items: flex-start;
}

#home .service .area .media.border {
  padding-bottom: 50px;
  margin-bottom: 77px;
  border-bottom: solid 1px #B9B9B9;
}

#home .service .media .body {
  width: 500px;
}

#home .service .area.bm0 .media .body {
  margin-bottom: 60px;
}

#home .service .media .media-title {
  display: flex;
  font-weight: bold;
  font-size: 31px;
}

#home .service .media .media-title span {
  color: #d30e1c;
  margin-right: 24px;
}

#home .service .media .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  margin-top: 30px;
  margin-bottom: 39px;
}

#home .service .media .btn {
  width: 300px;
  background: #D30E1C;
  border-radius: 6px;
  color: white;
  text-align: center;
  padding: 22px 0;
  position: relative;
  display: inline-block;
  font-weight: bold;
  transition: .3s;
  border: solid 2px #D30E1C;
}

#home .service .media .btn.link {
  padding-right: 20px;
}

#home .service .media .btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

#home .service .media .btn.link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(0);
  border: none;
  width: 15px;
  height: 17px;
  background: url(../images/home/icon-link-w.png) center/cover no-repeat;
}

#home .service .media .btn:hover {
  background: white;
  color: #D30E1C;
}

#home .service .media .btn:hover::after {
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
}

#home .service .media .btn.link:hover::after {
  border: none;
  background: url(../images/home/icon-link-r.png) center/cover no-repeat;
}

#home .service .media .images {
  display: flex;
  gap: 20px;
  flex: 1;
}

#home .service .area.bm0 .media .images {
  margin-top: 11px;
}

#home .service .media .images .img {
  text-align: center;
  width: 100%;
}

#home .service .media .images .img02 img {
  width: 367px;
}

#home .service .media .images .img03 img {
  width: 412px;
}

#home .service .media .images .img04 img {
  width: 567px;
}


.owner-banner {
  position: relative;
  width: 940px;
  height: 180px;
  border: solid 3px #D30E1C;
  border-radius: 13px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.owner-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
  width: 12px;
  height: 12px;
}

.owner-banner .img {
  margin-top: -27px;
}

.owner-banner .body {
  margin-left: 32px;
}

.owner-banner .bubble {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #d30e1c;
  width: 407px;
  height: 53px;
  border-radius: 26px;
  background: #f8e5e7;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.owner-banner .bubble::after {
  content: "";
  position: absolute;
  left: 97px;
  bottom: -14px;
  background: url(../images/home/bubble.png) center/cover no-repeat;
  width: 20px;
  height: 25px;
}

.owner-banner .title {
  display: flex;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #090808;
  align-items: center;
}

.owner-banner .title span {
  width: 170px;
  height: 44px;
  border-radius: 4px;
  border: 2px solid #d30e1c;
  font-weight: bold;
  font-size: 20px;
  color: #d30e1c;
  display: grid;
  place-items: center;
  margin-right: 10px;
}

@media screen and (max-width: 1360px) {
  #home .service .media .images.lg {
    width: 100%;
    gap: 10px;
  }

  #home .service .media .images.lg img {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .owner-banner {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #home .service {
    padding-top: 50px;
  }
  
  #home .service .title-wrap {
    display: block;
    margin-bottom: 40px;
  }
  
  #home .service .service-title {
    font-size: 40px;
  }
  
  #home .service .lead {
    font-size: 16px;
    margin-left: 0;
    margin-top: 19px;
  }
  
  #home .service .area {
    border-radius: 0;
  }
  
  #home .service .area {
    padding: 30px 11px 40px;
  }
  
  #home .service .area.bm0 {
    padding: 30px 11px 0;
  }
  
  #home .service .area + .area {
    margin-top: 40px;
  }
  
  #home .service .area .media {
    display: block;
  }
  
  #home .service .area .media.border {
    padding-bottom: 40px;
    margin-bottom: 57px;
  }
  
  #home .service .media .body {
    width: 100%;
  }
  
  #home .service .media .media-title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  #home .service .media .media-title span {
    margin-right: 20px;
  }
  
  #home .service .media .text {
    font-size: 16px;
    line-height: 32px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  #home .service .media .btn {
    width: 100%;
    padding: 23px 0;
    margin-top: 30px;
  }
  
  #home .service .media .btn.link {
    padding-right: 20px;
  }
  
  #home .service .media .btn::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    border-top: solid 2px white;
    border-right: solid 2px white;
    width: 8px;
    height: 8px;
  }
  
  #home .service .media .btn.link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(0);
    border: none;
    width: 15px;
    height: 17px;
    background: url(../images/home/icon-link-w.png) center/cover no-repeat;
  }
  
  #home .service .media .images {
    gap: 9px;
    width: 100%;
    margin-top: 30px;
  }

  #home .service .media .images img {
    max-width: 100%;
  }

  .owner-banner {
    position: relative;
    width: 100%;
    max-width: 327px;
    height: auto;
    display: block;
    padding: 13px 10px 20px 15px;
    margin: auto;
  }
  
  .owner-banner::after {
    top: 73%;
    right: 17px;
    width: 8px;
    height: 8px;
  }
  
  .owner-banner .img {
    position: absolute;
    margin-top: 0px;
    width: 63px;
    top: -30px;
    left: 10px;
  }

  .owner-banner img {
    width: 100%;
  }
  
  .owner-banner .body {
    margin-left: 0;
  }
  
  .owner-banner .bubble {
    font-size: 13px;
    width: 100%;
    max-width: 270px;
    height: 45px;
    margin-bottom: 16px;
    margin-left: 28px;
  }
  
  .owner-banner .bubble::after {
    content: "";
    position: absolute;
    left: 97px;
    bottom: -14px;
    background: url(../images/home/bubble.png) center/cover no-repeat;
    width: 20px;
    height: 25px;
  }
  
 .owner-banner .title {
    font-size: 20px;
  }
  
 .owner-banner .title span {
    width: 115px;
    height: 32px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 374px) {
 .owner-banner .bubble {
    margin-left: 0;
    font-size: 11px;
  }

  .owner-banner .title span {
    font-size: 11px;
    width: 100px;
  }

  .owner-banner .title {
    font-size: 16px;
  }
}

/*
---------------------------------------------
contact-us
---------------------------------------------
*/

.contact-us {
  background: url(../images/common/contact-us-bg.jpg) center/cover no-repeat;
  height: 480px;
  padding: 55px 0;
}

.contact-us .contents-inner {
  display: flex;
  justify-content: space-between;
}

.contact-us .body {
  color: white;
  padding-top: 10px;
}

.contact-us .body .title-wrap {
  display: flex;
  font-weight: bold;
  align-items: flex-end;
}

.contact-us .body .contact-us-title {
  font-size: 60px;
  margin-right: 30px;
  line-height: 1;
}

.contact-us .body .lead {
  font-size: 18px;
}

.contact-us .body .text {
  font-weight: 500;
  margin: 40px 0 30px;
}

.contact-us .body .phone {
  position: relative;
  display: flex;
  font-weight: bold;
  font-size: 43px;
  letter-spacing: 0.01em;
  color: #fff;
  padding-left: 32px;
  margin-bottom: 8px;
}

.contact-us .body .phone::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-phone.png) center/cover no-repeat;
  width: 26px;
  height: 34px;
}

.contact-us .body .hours {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

.contact-us .body .btn {
  width: 300px;
  border-radius: 6px;
  background: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #d30e1c;
  display: block;
  margin-top: 30px;
  padding: 21px 0 22px;
  position: relative;
  transition: .3s;
}

.contact-us .body .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../images/common/icon-mail-r.png) center/cover no-repeat;
  width: 29px;
  height: 23px;
  transition: .3s;
}

.contact-us .body .btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #d30e1c;
  border-right: solid 2px #d30e1c;
  width: 8px;
  height: 8px;
  transition: .3s;
}

.contact-us .body .btn:hover {
  background: #d30e1c;
  color: #fff;
}

.contact-us .body .btn:hover::before {
  background: url(../images/common/icon-mail-w.png) center/cover no-repeat;
}

.contact-us .body .btn:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.contact-us .line-area {
  width: 670px;
  height: 370px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #707070;
  padding: 43px 105px 36px;
}

.contact-us .line-area .bubble {
  position: relative;
  width: 460px;
  height: 140px;
  border-radius: 10px;
  border: 3px solid #00b900;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  padding-top: 15px;
  margin-bottom: 20px;
  z-index: 1;
}

.contact-us .line-area .bubble span {
  color: #00b900;
}

.contact-us .line-area .bubble::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 47px;
  background: url(../images/common/bubble-line.png) center/cover no-repeat;
  width: 25px;
  height: 31px;
  z-index: -2;
}

.contact-us .line-area .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-us .line-area-text {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-us .line-area .btn {
  color: white;
  width: 300px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 21px 0 22px 15px;
  position: relative;
  background: #00B900;
  border-radius: 6px;
  z-index: 1;
  transition: .3s;
  display: block;
  border: solid 2px #00B900;
}

.contact-us .line-area .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../images/common/icon-line-w.png) center/cover no-repeat;
  width: 36px;
  height: 40px;
  transition: .3s;
}

.contact-us .line-area .btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

.contact-us .line-area .btn:hover {
  background: white;
  color: #00B900;
}

.contact-us .line-area .btn:hover::before {
  background: url(../images/common/icon-line-g.png) center/cover no-repeat;
}

.contact-us .line-area .btn:hover::after {
  border-top: solid 2px #00B900;
  border-right: solid 2px #00B900;
}

.contact-us .line-area .box .img {
  width: 144px;
}

.contact-us .line-area .box img {
  width: 100%;
}

@media screen and (max-width: 1220px) {
  .contact-us .contents-inner {
    gap: 20px;
  }

  .contact-us .line-area .bubble {
    margin: 0 auto 20px;
  }

  .contact-us .line-area .box {
    width: 460px;
    margin: auto;
  }
}

@media screen and (max-width: 1120px) {
  .contact-us .body {
    width: 380px;
  }

  .contact-us .line-area {
    flex: 1;
    padding: 43px 5% 36px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us {
    height: auto;
    padding: 40px 0 40px;
  }
  
  .contact-us .contents-inner {
    display: block;
  }

  .contact-us .body {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 12px;
  }

  .contact-us .body .title-wrap {
    display: block;
  }

  .contact-us .body .contact-us-title {
    font-size: 40px;
    margin-right: 0;
  }

  .contact-us .body .lead {
    font-size: 16px;
  }

  .contact-us .body .text {
    font-size: 14px;
    margin: 20px 0;
  }

  .contact-us .body .phone {
    font-size: 30px;
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .contact-us .body .phone::before {
    width: 19px;
    height: 24px;
  }

  .contact-us .body .hours {
    font-size: 12px;
    line-height: 20px;
  }

  .contact-us .body .btn {
    max-width: 300px;
    width: 100%;
    margin-top: 15px;
  }

  .contact-us .line-area {
    width: 100%;
    height: auto;
  }
  
  .contact-us .line-area .bubble {
    width: 100%;
    max-width: 310px;
    height: 120px;
    font-size: 22px;
    padding-top: 25px;
    margin: 0 auto 28px;
  }

  .contact-us .line-area .bubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 255px;
    width: 25px;
    height: 31px;
    z-index: -2;
  }
  
  .contact-us .line-area .box {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  .contact-us .line-area-text {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .contact-us .line-area .btn {
    color: white;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    padding: 21px 0 22px 15px;
    margin: auto;
  }
}

@media screen and (max-width: 520px) {
  .contact-us .body .btn {
    max-width: 100%;
    width: 100%;
  }

  .contact-us .line-area .btn {
    max-width: 100%;
    width: 100%;
    font-size: 18px;
  }

  .contact-us .line-area {
    padding: 20px 12px 14px;
  }

  .contact-us .line-area .bubble {
    border-radius: 16px;
    padding-top: 23px;
    max-width: 280px;
  }

  .contact-us .line-area-body {
    width: 100%;
  }

  .contact-us .line-area .bubble::after {
    right: auto;
    left: 27px;
    background: url(../images/common/bubble-line-sp.png) center/cover no-repeat;
    width: 16px;
    height: 20px;
  }

  .contact-us .line-area-text {
    font-size: 16px;
  }

  .contact-us .line-area .img {
    display: none;
  }

  .contact-us .line-area .btn::before {
    left: 20px;
  }
}

@media screen and (max-width: 360px) {
  .contact-us .body .btn::before {
    left: 9px;
  }

  .contact-us .line-area-text {
    font-size: 14px;
  }
}

/*
---------------------------------------------
lower
---------------------------------------------
*/

/* kv */

.lower .kv {
  background: #FCF2F3;
  height: 260px;
  padding-top: 78px;
}

.lower .kv .en {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #d30e1c;
  margin-bottom: 5px;
}

.lower .kv .title {
  font-weight: bold;
  font-size: 50px;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .lower .kv {
    height: 150px;
    padding-top: 40px;
  }

  .lower .kv .en {
    font-size: 14px;
    margin-bottom: 0;
  }

  .lower .kv .title {
    font-size: 22px;
  }
}

/* topic-path */

.lower .topic-path {
  display: flex;
  margin-top: 20px;
  font-size: 14px;
  color: #B9B9B9;
}

.lower .topic-path li + li::before {
  content: ">";
  margin: 0 10px;
}

.lower .topic-path li a {
  color: #D30E1C;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .lower .topic-path {
    margin-top: 10px;
    font-size: 12px;
  }

  .lower .topic-path li + li::before {
    margin: 0 5px;
  }
}

/* others */

.lower .menu-wrap {
  /* display: flex; */
}

#service.lower .menu-wrap {
  /* margin-top: 120px; */
}

.lower .menu-inner {
  max-width: 1000px;
  margin-left: auto;
}

.lower .menu-inner02 {
  max-width: 1040px;
  margin-left: auto;
}

.lower .scroll-menu {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 400px;
  margin-right: auto;
}

.lower .scroll-menu.fixed {
  position: fixed;
  top: 125px;
}

#service.lower .scroll-menu {
  /* margin-top: 146px; */
}

.lower .scroll-menu li a {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: bold;
  background: #F7F7F7;
  border-radius: 0 8px 8px 0;
  color: #090808;
  padding: 38px 50px 33px;
  border-bottom: solid 1px #D9D9D9;
  transition: .3s;
}

.lower .scroll-menu li a::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 2px #090808;
  transition: .3s;
}

.lower .scroll-menu li a::after {
  content: "";
  position: absolute;
  top: 44px;
  right: 41px;
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #090808;
  border-right: solid 2px #090808;
  transform: rotateZ(45deg);
  transition: .3s;
}

.lower .scroll-menu li a.active,
.lower .scroll-menu li a:hover {
  background: #D30E1C;
  color: white;
}

.lower .scroll-menu li a.active::before,
.lower .scroll-menu li a:hover::before {
  border: solid 2px white;
}

.lower .scroll-menu li a.active::after,
.lower .scroll-menu li a:hover::after {
  border-bottom: solid 2px white;
  border-right: solid 2px white;
}

@media screen and (max-width: 1600px) {
  .lower .scroll-menu {
    width: 300px;
  }

  .lower .scroll-menu li a {
    font-size: 16px;
    padding: 20px;
  }

  .lower .scroll-menu li a::before {
    top: 24px;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  
  .lower .scroll-menu li a::after {
    top: 31px;
    right: 28px;
    width: 6px;
    height: 6px;
  }
}

@media screen and (max-width: 1350px) {
  .lower .scroll-menu {
    width: 200px;
  }

  .lower .scroll-menu li a {
    font-size: 16px;
    padding: 15px 27px 15px 15px;
  }

  .lower .scroll-menu li a::before {
    top: 15px;
    right: 10px;
  }

  .lower .scroll-menu li a::after {
    top: 22px;
    right: 18px;
  }
}

@media screen and (max-width: 1230px) {
  .lower .scroll-menu {
    position: static;
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    margin-bottom: 40px;
  }

  .lower .scroll-menu li a {
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
  }

  .lower .scroll-menu li a::before {
    right: 15px;
  }

  .lower .scroll-menu li a::after {
    right: 23px;
  }

  .lower .menu-inner02,
  .lower .menu-inner {
    width: 100%;
    max-width: 100%;
  }

  .lower .menu-wrap {
    display: block;
  }

  #service.lower .menu-wrap {
    margin-top: 40px;
  }

  #service.lower .scroll-menu {
    margin-top: 0;
  }
}

/*
---------------------------------------------
service
---------------------------------------------
*/

#service .section-title {
  font-weight: bold;
  font-size: 32px;
  text-align: left;
  margin-bottom: 49px;
}

@media screen and (max-width: 767px) {
  #service .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* rental */

#service .top {
  margin-top: 120px;
  margin-bottom: 59px;
}

#service .rental .rental-title,
#service .top .rental-title {
  font-weight: bold;
  font-size: 32px;
  color: #d30e1c;
  margin-bottom: 19px;
}

#service .top .rental-lead {
}

#service .rental {
  padding-bottom: 120px;
  margin-right: auto;
}

#service .rental .rental-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#service .rental .rental-list > li {
  background: #F7F7F7;
  border-radius: 20px;
  padding: 30px;
  width: 480px;
}

#service .rental .rental-list .img {
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  min-height: 168px;
}

#service .rental .rental-list .img01 img {
  width: 277px;
}

#service .rental .rental-list .img02 img {
  width: 149px;
}

#service .rental .rental-list .img03 img {
  width: 198px;
}

#service .rental .rental-list .img04 img {
  width: 234px;
}

#service .rental .rental-list .img05 img {
  width: 252px;
}

#service .rental .rental-list img {
  max-width: 100%;
}

#service .rental .rental-list .title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

#service .rental .rental-list .title span {
  color: #D30E1C;
  margin-right: 20px;
}

#service .rental .rental-list .list {
  list-style: disc;
  margin-left: 22px;
}

@media screen and (max-width: 1350px) {
  #service .rental {
    padding: 0 20px 120px;
  }
}

@media screen and (max-width: 1260px) {
  #service .rental .rental-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  #service .rental .rental-list > li {
    width: calc(calc(100% - 40px) / 2);
  }
}

@media screen and (max-width: 1000px) {
  #service .rental .contents-inner {
    min-width: 100%;
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  #service .top {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  #service .rental .rental-title,
  #service .top .rental-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  #service .top .rental-lead {
    font-size: 14px;
  }

  #service .rental .rental-lead {
    margin-bottom: 20px;
    font-size: 14px;
  }

  #service .rental {
    margin-top: 20px;
    padding-bottom: 60px;
  }

  #service .rental .rental-list {
    flex-wrap: nowrap;
    gap: 20px;
    flex-direction: column;
  }
  
  #service .rental .rental-list > li {
    border-radius: 10px;
    padding: 15px;
    width: 100%;
  }

  #service .rental .rental-list .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  #service .rental .rental-list .title span {
    margin-right: 10px;
  }
  
  #service .rental .rental-list .list {
    margin-left: 22px;
    font-size: 14px;
  }
}

/* choose */

#service .choose {
  background: #FAF2F3;
  padding-top: 80px;
  padding-bottom: 115px;
}

#service .choose .media {
  display: flex;
}

#service .choose .media + .media {
  margin-top: 30px;
}

#service .choose .media .img {
  background: #F7F7F7;
  padding: 35px 25px;
  width: 229px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#service .choose .media .img01 img {
  width: 175px;
}

#service .choose .media .img02 img {
  width: 119px;
}

#service .choose .media .img03 img {
  width: 111px;
}

#service .choose .media .img04 img {
  width: 104px;
}

#service .choose .media .body {
  background: white;
  padding: 40px;
  flex: 1;
}

#service .choose .media .media-title {
  font-weight: bold;
  font-size: 24px;
  color: #d30e1c;
  margin-bottom: 19px;
}

#service .choose .media .list {
  list-style: disc;
  margin-left: 22px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #service .choose {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  #service .choose .media {
    flex-direction: column;
  }
  
  #service .choose .media + .media {
    margin-top: 20px;
  }
  
  #service .choose .media .img {
    padding: 15px;
    width: 100%;
  }
  
  #service .choose .media .body {
    padding: 15px;
    flex: 1;
  }
  
  #service .choose .media .media-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #service .choose .media .list {
    margin-top: 14px;
    font-size: 14px;
  }
}

/* rule */

#service .rule {
  padding: 131px 0 124px;
}

#service .rule .inner {
  width: 1000px;
  margin-left: auto;
}

#service .rule .rule-title {
  display: flex;
  font-weight: bold;
  font-size: 32px;
  color: #d30e1c;
  margin-bottom: 40px;
}

#service .rule .rule-title span {
  width: 160px;
  border-radius: 6px;
  background: #d30e1c;
  color: white;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  padding: 9px 0 10px;
  margin-right: 8px;
}

#service .rule .scroll {
  /* overflow-x: scroll; */
}

#service .rule .list {
  display: flex;
  gap: 60px;
  width: 1000px;
  flex-wrap: wrap;
}

#service .rule .list li {
  width: 470px;
}

#service .rule .list li img {
  border-radius: 10px;
  max-width: 100%;
}

#service .rule .list li .title {
  font-weight: bold;
  font-size: 24px;
  margin: 20px 0;
}

#service .rule .list li .text {
  line-height: 28px;
}

@media screen and (max-width: 1040px) {
  #service .rule .inner {
    width: 100%;
  }

  #service .rule .list {
    width: 100%;
  }

  #service .rule .list li {
    width: calc(calc(100% - 60px) / 2);
  }
}

@media screen and (max-width: 767px) {
  #service .rule {
    margin-top: 0;
    padding: 40px 0 40px;
  }

  #service .rule .inner {
    width: 100%;
  }

  #service .rule .rule-title {
    font-size: 20px;
    margin-bottom: 20px;
    align-items: center;
  }
  
  #service .rule .rule-title span {
    width: 110px;
    font-size: 14px;
    padding: 7px 0 8px;
    margin-right: 5px;
  }

  #service .rule .list {
    gap: 20px;
    /* width: 1460px; */
    flex-direction: column;
    width: 100%;
  }

  #service .rule .list li {
    width: 100%;
  }

  #service .rule .list li .title {
    font-size: 16px;
    margin: 10px 0;
  }
  
  #service .rule .list li .text {
    line-height: 24px;
    font-size: 14px;
  } 
}

/* resolution */

#service .resolution + .resolution {
  margin-top: 90px;
}

#service .resolution .lead {
  margin-bottom: 50px;
}

#service .resolution .item {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 30px;
}

#service .resolution .item + .item {
  margin-top: 30px;
}

#service .resolution .item .title {
  position: relative;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

#service .resolution .item .title span {
  color: #D30E1C;
  margin-right: 10px;
}

#service .resolution .item .title::before,
#service .resolution .item .title::after {
  display: block;
  content: "";
  background: #d30e1c; 
  position: absolute;
  width: 30px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .3s;
}

#service .resolution .item .title::before {
  transform: rotateZ(90deg) translateY(-50%);
  right: 1px;
}

#service .resolution .item .title.active::before {
  transform: rotateZ(0) translateY(-50%);
}

#service .resolution .item .body {
  border-top: solid 1px #B9B9B9;
  margin-top: 26px;
  padding: 28px 40px 0;
  display: none;
}

#service .resolution .wrap {
  margin: 90px 0 120px;
}

@media screen and (max-width: 767px) {
  #service .resolution + .resolution {
    margin-top: 40px;
  }
  
  #service .resolution .lead {
    margin-bottom: 20px;
    font-size: 14px;
  }

  #service .resolution .item {
    padding: 15px;
  }
  
  #service .resolution .item + .item {
    margin-top: 20px;
  }
  
  #service .resolution .item .title {
    font-size: 18px;
  }
  
  #service .resolution .item .title span {
    margin-right: 7px;
  }
  
  #service .resolution .item .title::before,
  #service .resolution .item .title::after {
    width: 20px;
  }

  #service .resolution .item .body {
    margin-top: 15px;
    padding: 15px 20px 0;
  }

  #service .resolution .item .body .text {
    font-size: 14px;
  }

  #service .resolution .wrap {
    margin: 60px 0 40px;
  }
}

/* business */

#service .business {
  background: #F7F7F7;
  padding: 120px 0;
}

#service .business .business-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
}

#service .business .area {
  background: white;
  border-radius: 10px;
  padding-bottom: 20px;
}

#service .business .area + .area {
  margin-top: 50px;
}

#service .business .area .title-wrap {
  display: flex;
  align-items: center;
  height: 74px;
  border-radius: 10px 10px 0px 0px;
  background: #d30e1c;
  padding-left: 20px;
  margin-bottom: 20px;
}

#service .business .area .title {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  margin-left: 15px;
}

#service .business .area .table {
  width: calc(100% - 40px);
  margin: auto;
  border: solid 1px #DCE2E8;
}

#service .business .area .table tr {
  border-bottom: solid 1px #DCE2E8;
}

#service .business .area .table th {
  background: #666666;
  color: white;
  font-weight: 500;
  font-size: 18px;
  padding: 30px 20px;
  width: 260px;
	vertical-align:middle;
}

#service .business .area .table td {
  padding: 30px 20px;
  line-height: 28px;
	vertical-align:middle;
}

@media screen and (max-width: 1320px) {
  #service .business .area .table {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 767px) {
  #service .business {
    padding: 60px 0;
  }
  
  #service .business .business-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  #service .business .area {
    padding-bottom: 20px;
  }
  
  #service .business .area + .area {
    margin-top: 30px;
  }
  
  #service .business .area .title-wrap {
    height: 50px;
    border-radius: 10px 10px 0px 0px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  
  #service .business .area .title {
    font-size: 20px;
    margin-left: 10px;
  }

  #service .business .area .icon {
    width: 30px;
  }

  #service .business .area .icon img {
    width: 100%;
  }

  #service .business .area .table {
    width: calc(100% - 20px);
    margin: auto;
  }

  #service .business .area .table th {
    display: block;
    font-size: 16px;
    padding: 15px 10px;
    width: 100%;
  }
  
  #service .business .area .table td {
    display: block;
    padding: 15px 10px;
    line-height: 19px;
    font-size: 14px;
  }
}

/*
---------------------------------------------
privacy
---------------------------------------------
*/

/* content */

#privacy .content {
  margin-top: 90px;
}

#privacy .content .title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

#privacy .content .title span {
  color: #D30E1C;
  margin-right: 1rem;
}

#privacy .content .text {
  line-height: 28px;
  color: #474646;
  margin-bottom: 80px;
}

#privacy .content .text a {
  color: #474646;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #privacy .content {
    margin-top: 40px;
  }
  
  #privacy .content .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
 
  #privacy .content .text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*
---------------------------------------------
company
---------------------------------------------
*/

/* content */

#company .content {
  margin-top: 80px;
  margin-bottom: 120px;
}

#company .page-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 50px;
}

#company .content .body {
  line-height: 1.7;
  margin-bottom: 40px;
}

#company .content .body .text + .text {
  margin-top: 20px;
}

#company .content .table {
  width: 100%;
  line-height: 28px;
}

#company .content .table tr {
  border-bottom: solid 1px #DCE2E8;
}

#company .content .table th {
  font-weight: 500;
  width: 175px;
  padding: 30px 0;
}

#company .content .table td {
  color: #474646;
  padding: 30px 0;
}

#company .content .table .img {
  margin-top: 5px;
  display: block;
  max-width: 300px;
}

#company .content .table img {
  max-width: 100%;
}

#company .content .table a {
  color: #474646;
}

@media screen and (max-width: 767px) {
  #company .content {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  #company .page-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  #company .content .body {
    margin-bottom: 30px;
    font-size: 14px;
  }
  
  #company .content .body .text + .text {
    margin-top: 15px;
  }
  
  #company .content .table {
    width: 100%;
    line-height: 24px;
    font-size: 14px;
  }

  #company .content .table th {
    width: 100%;
    padding: 15px 0;
    display: block;
    border-bottom: solid 1px #DCE2E8;
  }
  
  #company .content .table td {
    padding: 15px 0;
    display: block;
  }
}

/* access */

#company .access .map {
  margin-bottom: 40px;
}

#company .access .text {
  line-height: 28px;
  color: #474646;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #company .access .map {
    margin-bottom: 40px;
  }
  
  #company .access .text {
    line-height: 28px;
    color: #474646;
    margin-bottom: 20px;
  }
}

/*
---------------------------------------------
owner
---------------------------------------------
*/

/* content */

.lower .faq {
  margin-top: 80px;
}

.lower .faq .content-title {
  font-weight: bold;
  font-size: 32px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.lower .faq .area {
  background: white;
  border-radius: 10px;
  padding-bottom: 30px;
  border: solid 1px #d30e1c;
}

.lower .faq .area + .area {
  margin-top: 30px;
}

.lower .faq .area .title-wrap {
  display: flex;
  align-items: center;
  height: 74px;
  border-radius: 10px 10px 0px 0px;
  background: #d30e1c;
  padding-left: 20px;
  margin-bottom: 30px;
}

.lower .faq .area .area-title {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  margin-left: 15px;
}

.lower .faq .question {
  width: calc(100% - 60px);
  margin: auto;
  padding-bottom: 40px;
  border-bottom: solid 1px #DCE2E8;
}
.lower .faq .question a{
	text-decoration:underline;
}
.lower .faq .question + .question {
  margin-top: 40px;
}

.lower .faq .title {
  position: relative;
  display: flex;
  font-weight: bold;
  font-size: 18px;
  color: #d30e1c;
  cursor: pointer;
}

.lower .faq .title::before,
.lower .faq .title::after {
  display: block;
  content: "";
  background: #d30e1c;
  position: absolute;
  width: 30px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .3s;
}

.lower .faq .title::before {
  transform: rotateZ(90deg) translateY(-50%);
  right: 1px;
}

.lower .faq .title.active::before {
  transform: rotateZ(0) translateY(-50%);
}

.lower .faq .title span {
  margin-right: 16px;
}

.lower .faq .body {
  display: none;
}

.lower .faq .answer {
  display: flex;
  margin-top: 17px;
}

.lower .faq .answer span {
  margin-right: 19px;
  font-weight: bold;
  font-size: 24px;
  margin-top: -5px;
}

.lower .faq .answer .text {
  line-height: 28px;
}

.lower .faq .answer a {
  color: #328474;
}

.lower .faq .answer a.link {
  color: #328474;
  text-decoration: underline;
  transition: .3s;
}

.lower .faq .answer a.link:hover {
  text-decoration: none;
  opacity: .7;
}

@media screen and (max-width: 1360px) {
  .lower .faq .question {
    width: calc(100% - 40px);
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .lower .faq {
    margin-top: 20px;
    padding-bottom: 0;
  }

  .lower .faq .lead {
    font-size: 14px;
  }

  .lower .faq .content-title {
    font-weight: bold;
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .lower .faq .area {
    padding-bottom: 20px;
  }
  
  .lower .faq .area + .area {
    margin-top: 25px;
  }
  
  .lower .faq .area .title-wrap {
    height: 50px;
    border-radius: 10px 10px 0px 0px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  
  .lower .faq .area .area-title {
    font-size: 20px;
    margin-left: 10px;
  }

  .lower .faq .area .icon {
    width: 30px;
  }

  .lower .faq .area .icon img {
    width: 100%;
  }
  
  .lower .faq .question {
    width: calc(100% - 30px);
    padding-bottom: 20px;
    padding-right: 36px;
  }
  
  .lower .faq .question + .question {
    margin-top: 20px;
  }
  
  .lower .faq .title {
    font-size: 16px;
  }
  
  .lower .faq .title::before,
  .lower .faq .title::after {
    width: 15px;
    height: 2px;
    right: -33px;
  }

  .lower .faq .title::before {
    right: -32px;
  }

  .lower .faq .title span {
    margin-right: 10px;
  }

  .lower .faq .answer {
    margin-top: 10px;
  }
  
  .lower .faq .answer span {
    margin-right: 13px;
    font-size: 18px;
    margin-top: -4px;
  }
  
  .lower .faq .answer .text {
    line-height: 24px;
    font-size: 14px;
  }
}

/*
---------------------------------------------
customer
---------------------------------------------
*/

#customer .page-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  #customer .page-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

/* top */

#customer .top {
  margin: 80px 0;
}

#customer .top .lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  #customer .top {
    margin: 40px 0;
  }
  
  #customer .top .lead {
    font-size: 14px;
    line-height: 24px;
  }
}

/* customer-items */

#customer .customer-items {
  padding-bottom: 80px;
  /* margin-right: auto; */
}

#customer .customer-items .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#customer .customer-items .list li {
  width: 480px;
  border-radius: 15px;
  background: #F7F7F7;
  padding: 40px 0 40px 30px;
  font-size: 24px;
  font-weight: bold;
}

#customer .customer-items .list li span {
  color: #D30E1C;
  margin-right: 20px;
}

@media screen and (max-width: 1060px) {
  #customer .customer-items {
    padding: 0;
    margin-bottom: 40px;
  }

  #customer .customer-items .list {
    gap: 40px 20px;
  }

  #customer .customer-items .list li {
    width: calc(calc(100% - 20px) / 2);
  }
}

@media screen and (max-width: 767px) {
  #customer .customer-items {
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  
  #customer .customer-items .list {
    gap: 15px;
  }
  
  #customer .customer-items .list li {
    width: 100%;
    border-radius: 10px;
    padding: 20px 0 20px 15px;
    font-size: 16px;
  }
  
  #customer .customer-items .list li span {
    margin-right: 10px;
  }
}

/* content */

#customer .content {
  background: #F7F7F7;
  padding: 60px 0 80px;
}

#customer .content + .content {
  padding: 0 0 80px;
}

#customer .content .media {
  display: flex;
  background: white;
  border-radius: 10px;
  padding: 40px;
  gap: 56px;
  align-items: center;
}

#customer .content .media + .media {
  margin-top: 40px;
}

#customer .content .media .img {
  width: 130px;
  text-align: center;
}

#customer .content .media .img01 img {
  width: 101px;
}

#customer .content .media .img02 img {
  width: 71px;
}

#customer .content .media .img03 img {
  width: 105px;
}

#customer .content .media .img04 img {
  width: 92px;
}

#customer .content .media .img05 img {
  width: 105px;
}

#customer .content .media .img06 img {
  width: 131px;
}

#customer .content .media img {
  max-width: 100%;
}

#customer .content .media .body {
  flex: 1;
}

#customer .content .media .title {
  font-weight: bold;
  font-size: 24px;
  color: #d30e1c;
  margin-bottom: 20px;
}

#customer .content .media .text {
  line-height: 28px;
}

#customer .content .media .text a {
  color: #090808;
}

#customer .content .media .text a.link {
  color: #328474;
  text-decoration: underline;
  transition: .3s;
}

#customer .content .media .text a.link:hover {
  text-decoration: none;
  opacity: .7;
}

@media screen and (max-width: 767px) {
  #customer .content {
    padding: 30px 0 40px;
  }

  #customer .content + .content {
    padding: 0 0 40px;
  }

  #customer .content .media {
    display: block;
    padding: 20px;
  }

  #customer .content .media + .media {
    margin-top: 20px;
  }

  #customer .content .media .img {
    width: 100%;
    margin-bottom: 20px;
  }

  #customer .content .media .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #customer .content .media .text {
    line-height: 24px;
    font-size: 14px;
  }
}

/*
---------------------------------------------
guide
---------------------------------------------
*/

/* top */

#guide .top {
  margin-top: 80px;
  margin-bottom: 120px;
}

#guide .top .top-kv {
  background: url(../images/guide/guide-bg.jpg) center/cover no-repeat;
  height: 440px;
  display: grid;
  place-items: center;
}

#guide .top .box {
  background: white;
  padding: 62px 77px 45px;
  text-align: center;
}

#guide .top .box .lead {
  font-weight: bold;
  font-size: 20px;
  color: #371f21;
  margin-bottom: 24px;
}

#guide .top .box .lead span {
  color: #D30E1C;
}

#guide .top .box .btn {
  width: 300px;
  background: #D30E1C;
  border-radius: 6px;
  color: white;
  text-align: center;
  padding: 21px 0;
  position: relative;
  display: inline-block;
  font-weight: bold;
  transition: .3s;
  border: solid 2px #D30E1C;
  margin-top: 50px;
}

#guide .top .box .btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

#guide .top .box .btn:hover {
  background: white;
  color: #D30E1C;
}

#guide .top .box .btn:hover::after {
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
}

#guide .top .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
}

#guide .top .note {
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #999;
}

@media screen and (max-width: 767px) {
  #guide .top {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  #guide .top .top-kv {
    height: 300px;
  }
  
  #guide .top .box {
    width: calc(100% - 30px);
    padding: 20px 15px;
    margin: auto;
  }
  
  #guide .top .box .lead {
    font-size: 14px;
    margin-bottom: 15px;
  }

  #guide .top .box img {
    width: 100%;
  }

  #guide .top .box .btn {
    width: 100%;
    max-width: 300px;
    margin-top: 25px;
  }

  #guide .top .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  
  #guide .top .note {
    font-size: 11px;
  }
}

/* flow */

#guide .flow .page-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 50px;
}

#guide .flow .list {
  display: flex;
  background: #F2F2F2;
  height: 140px;
  margin-bottom: 40px;
}

#guide .flow .list li {
  position: relative;
  width: 314px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#guide .flow .list li:last-child {
  flex: 1;
}

#guide .flow .list li:not(:last-child)::before,
#guide .flow .list li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

#guide .flow .list li:not(:last-child)::before {
  top: -8px;
  right: -28px;
  border-width: 78px 0 78px 48px;
  border-color: transparent transparent transparent #fff;
}

#guide .flow .list li:not(:last-child)::after {
  top: 0;
  right: -22px;
  border-width: 70px 0 70px 42px;
  border-color: transparent transparent transparent #F2F2F2;
}

#guide .flow .list li .no {
  font-weight: 500;
  font-size: 18px;
  color: #d30e1c;
  margin-bottom: 7px;
}

#guide .flow .list li .title {
  font-weight: bold;
  font-size: 24px;
}

#guide .flow .area {
  background: #F2F2F2;
  padding: 40px;
}

#guide .flow .area .step {
  background: white;
  border-radius: 10px;
  padding: 40px;
  position: relative;
}

#guide .flow .area .step + .step {
  margin-top: 54px;
}

#guide .flow .area .step + .step::before {
  position: absolute;
  top: -34px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 16px 0 16px;
  border-color: #d30e1b transparent transparent transparent;
}

#guide .flow .step .title {
  display: flex;
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: solid 1px #D30E1C;
  align-items: baseline;
}

#guide .flow .step .title span {
  font-weight: 500;
  font-size: 18px;
  color: #d30e1c;
  margin-right: 30px;
}

#guide .flow .step .text {
  line-height: 28px;
  flex: 1;
}

#guide .flow .step .text a {
  color: #328474;
}

#guide .flow .step .item {
  display: flex;
  align-items: flex-start;
}

#guide .flow .step .item + .item {
  margin-top: 34px;
}

#guide .flow .step .sub-title {
  font-weight: bold;
  color: #d30e1c;
  width: 164px;
  border-radius: 4px;
  border: 1px solid #d30e1c;
  text-align: center;
  padding: 11px 0;
  line-height: 1;
  margin-right: 20px;
}

@media screen and (max-width: 1300px) {
  #guide .flow .list li {
    width: 24%;
  }
}

@media screen and (max-width: 767px) {
  #guide .flow .page-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  #guide .flow .scroll {
    overflow-x: scroll;
    margin-bottom: 20px;
    overflow-y: hidden;
  }

  #guide .flow .list {
    height: auto;
    margin: 0 auto;
    width: 1000px;
  }

  #guide .flow .list li {
    padding: 30px 0 32px;
  }

  #guide .flow .list li:last-child {
    padding: 15px 0 35px;
  }

  #guide .flow .list li:not(:last-child)::before {
    top: -7px;
    right: -28px;
    border-width: 63px 0 63px 48px;
    border-color: transparent transparent transparent #fff;
  }

  #guide .flow .list li:not(:last-child)::after {
    top: 0;
    right: -22px;
    border-width: 56px 0 56px 42px;
    border-color: transparent transparent transparent #F2F2F2;
  }
  
  #guide .flow .list li .no {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  #guide .flow .list li .title {
    font-weight: bold;
    font-size: 17px;
  }
  
  #guide .flow .area {
    padding: 20px;
  }
  
  #guide .flow .area .step {
    padding: 20px;
  }
 
  #guide .flow .step .title {
    display: block;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  
  #guide .flow .step .title span {
    font-size: 12px;
    margin-right: 10px;
    display: block;
  }
  
  #guide .flow .step .text {
    font-size: 14px;
    line-height: 24px;
  }
  
  #guide .flow .step .item {
    display: block;
  }
  
  #guide .flow .step .item + .item {
    margin-top: 20px;
  }
  
  #guide .flow .step .sub-title {
    width: 164px;
    padding: 8px 0;
    margin-right: 0;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/*
---------------------------------------------
contact
---------------------------------------------
*/

#contact .content {
  margin-top: 80px;
}

#contact .content .page-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 50px;
}

#contact .content .box {
  width: 814px;
  height: 306px;
  border-radius: 10px;
  background: #f7f7f7;
  padding: 40px;
  margin-bottom: 130px;
}

#contact .content .box .lead {
  color: #474646;
  margin-bottom: 40px;
}

#contact .content .box .inner {
  display: flex;
  gap: 110px;
}

#contact .content .box .box-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 13px;
}

#contact .content .box .phone {
  font-weight: bold;
  font-size: 43px;
  letter-spacing: 0.01em;
  color: #d30e1c;
  position: relative;
  padding-left: 32px;
}

#contact .content .box .phone::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-phone-r.png) center/cover no-repeat;
  width: 26px;
  height: 34px;
}

#contact .content .box .hours {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #474646;
}

#contact .content .box .btn {
  color: white;
  width: 300px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 21px 0 22px;
  position: relative;
  background: #00B900;
  border-radius: 6px;
  z-index: 1;
  transition: .3s;
  display: block;
  border: solid 2px #00B900;
  margin-top: 25px;
}

#contact .content .box .btn:hover {
  background: white;
  color: #00B900;
}

#contact .content .box .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../images/common/icon-line-w.png) center/cover no-repeat;
  width: 36px;
  height: 40px;
  transition: .3s;
}

#contact .content .box .btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

#contact .content .sub-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

#contact .content .text {
  color: #474646;
}

#contact .content .text + .text {
  margin-top: 35px;
}

#contact .content .table {
  border: solid 1px #DCE2E8;
  width: 100%;
  margin-top: 50px;
}

#contact .content .table tr {
  border-bottom: solid 1px #DCE2E8;
}

#contact .content .table th {
  font-weight: bold;
  color: #3b4043;
  background: #F7F7F7;
  width: 270px;
  padding: 30px 0 30px 30px;
  vertical-align: top;
}

#contact .content .table th span {
  width: 35px;
  height: 17px;
  border-radius: 2px;
  background: #d30e1c;
  font-weight: bold;
  font-size: 10px;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-left: 4px;
}

#contact .content .table td {
  padding: 30px;
}

#contact .content textarea,
#contact .content input[type="email"],
#contact .content input[type="text"] {
  max-width: 440px;
  width: 100%;
  border: solid 1px #CDD6DD;
  border-radius: 3px;
  padding: 8px;
}

#contact .content textarea {
  max-width: 800px;
  height: 200px;
}

#contact .content input[type="text"].lg {
  max-width: 800px;
}

#contact .content input[type="text"].sm {
  max-width: 120px;
}

#contact .content input[type="email"].required,
#contact .content input[type="text"].required {
  border: solid 2px #F5DFE0;
}

#contact .content input[type="email"] {
  /* background: url(../images/common/icon-attention.png) center right 6px/22px no-repeat; */
}

#contact .content .select-wrap {
  position: relative;
  max-width: 440px;
}

#contact .content .select-wrap::before,
#contact .content .select-wrap::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

#contact .content .select-wrap::before {
  right: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 0 3px 3px 0;
  background-color: #D62C22;
  content: '';
}

#contact .content .select-wrap::after {
  position: absolute;
  top: 45%;
  right: 20px;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

#contact .content .select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 7px 6px;
  border: solid 1px #CDD6DD;
  border-radius: 3px;
  cursor: pointer;
	color:#090808;
  background: white;
}

#contact .content label {
  cursor: pointer;
}

#contact .content label:nth-of-type(1) {
  margin-right: 30px;
  display: inline-block;
}

#contact .content input[type="radio"] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  vertical-align: sub;
  margin-right: 10px;
  cursor: pointer;
}

#contact .content input[type="radio"]::before,
#contact .content input[type="radio"]::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

#contact .content input[type="radio"]::before {
  background-color: #fff;
  border: 1px solid #CDD6DD;
  height: 20px;
  width: 20px;
  left: 0px;
}

#contact .content input[type="radio"]::after {
  background-color: #D62C22;
  opacity: 0;
  height: 14px;
  width: 14px;
  left: 4px;
}

#contact .content input[type="radio"]:checked::after {
  opacity: 1;
}

#contact .content .form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 250px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  background: #D30E1C;
  border-radius: 6px;
  z-index: 1;
  transition: .3s;
  padding: 15px 0 15px;
  border: solid 2px #D30E1C;
  margin: 50px auto 80px;
}

#contact .content .form-btn::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

#contact .content .form-btn:hover {
  background: white;
  color: #D30E1C;
}

#contact .content .form-btn:hover::after {
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
}

#contact .content .btn-wrap {
  display: flex;
  gap: 20px;
  flex-direction: row-reverse;
  justify-content: center;
  margin: 50px auto 80px;
}

#contact .content .btn-wrap .form-btn {
  margin: 0;
}

#contact .content .form-btn.back {
  background: #999;
  border-color: #999;
}

#contact .content .form-btn.back:after {
  transform: translateY(-50%) rotate(-135deg);
  right: auto;
  left: 20px;
}

#contact .content .form-btn.back:hover {
  background: white;
  color: #999;
}

#contact .content .form-btn.back:hover::after {
  border-top: solid 2px #999;
  border-right: solid 2px #999;
}

#contact .content .btn-top {
  text-align: center;
  display: block;
  color: white;
  width: 250px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  background: #D30E1C;
  border-radius: 6px;
  z-index: 1;
  transition: .3s;
  padding: 15px 0 15px;
  border: solid 2px #D30E1C;
  margin: 30px auto 0;
}

#contact .content .btn-top::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 8px;
  height: 8px;
  transition: .3s;
}

#contact .content .btn-top:hover {
  background: #fff;
  color: #D30E1C;
}

#contact .content .btn-top:hover::after {
  border-top: solid 2px #D30E1C;
  border-right: solid 2px #D30E1C;
}

#contact .content .error{
	color:#d30e1c;
}
#contact .content .error-alert{
	color:#d30e1c;
	font-weight:bold;
	margin-top:10px;
}

@media screen and (max-width: 767px) {
  #contact .content {
    margin-top: 40px;
  }
  
  #contact .content .page-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  #contact .content .box {
    width: 100%;
    height: auto;
    padding: 20px;
    margin-bottom: 50px;
  }
  
  #contact .content .box .lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  #contact .content .box .inner {
    display: block;
  }
  
  #contact .content .box .box-title {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  #contact .content .box .phone {
    font-size: 30px;
    padding-left: 22px;
  }
  
  #contact .content .box .phone::before {
    width: 16px;
    height: 21px;
  }
  
  #contact .content .box .hours {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  
  #contact .content .box .btn {
    max-width: 300px;
    width: 100%;
    margin-top: 15px;
  }

  #contact .content .sub-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #contact .content .text {
    font-size: 14px;
    color: #474646;
  }
  
  #contact .content .text + .text {
    margin-top: 20px;
  }
  
  #contact .content .table {
    margin-top: 25px;
  }

  #contact .content .table th {
    display: block;
    width: 100%;
    padding: 15px;
  }
  
  #contact .content .table td {
    display: block;
    width: 100%;
    padding: 15px;
  }

  #contact .content input[type="text"].sm {
    max-width: 70px;
  }

  #contact .content .form-btn {
    margin: 25px auto 40px;
  }

  #contact .content .btn-wrap {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    margin: 25px auto 40px;
  }
}

/*
---------------------------------------------
app owners
---------------------------------------------
*/

/* top */

#owners .top {
  margin-top: 80px;
  margin-bottom: 120px;
}

#owners .top .top-kv img {
  max-width: 100%;
}

#owners .top .top-note {
  margin-top: 20px;
  color: #999999;
  font-size: 12px;
}

#owners .page-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  #owners .top {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  #owners .top .top-note {
    margin-top: 10px;
    font-size: 10px;
  }

  #owners .page-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/* content */

#owners .content.bg {
  background: #F3F5F9;
  padding: 80px 0;
  margin-bottom: 120px;
  margin-top: -13px;
}

#owners .content .lead {
  margin-bottom: 50px;
}

#owners .content .img {
  text-align: center;
  margin-bottom: 120px;
}

#owners .content.bg .img {
  margin-bottom: 0;
}

#owners .content .img img {
  max-width: 100%;
}

#owners .content .media {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 20px;
}

#owners .content .media.md {
  max-width: 1205px;
  margin:0 auto 100px;
}

#owners .content .media.md .text {
  line-height: 1.8;
}

#owners .content .media .body {
  width: 700px;
}

#owners .content .media .body.bg {
  background: #F3F5F9;
  border-radius: 20px;
  width: 670px;
  padding: 56px 20px 40px 80px;
}

#owners .content .media .img {
  width: 434px;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

#owners .content .media .img.lg {
  width: 568px;
}

#owners .content.bg .media {
  margin-bottom: 0;
}

#owners .content.bg .media .body {
  width: 500px;
}

#owners .content.bg .media .img {
  width: 714px;
}

#owners .content .media .list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 23px;
}

#owners .content .media .list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: #005CAC;
  border-radius: 50%;
}

#owners .content .content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 120px;
}

#owners .content .content-list li {
  background: #F7F7F7;
  border-radius: 15px;
  width: 660px;
  padding: 40px 40px 40px 30px;
}

#owners .content .content-list .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

#owners .content .content-list .title span {
  display: inline-block;
  color: #005CAC;
  margin-right: 20px;
}

#owners .content .content-list .text {
  font-size: 18px;
  line-height: 32px;
}

#owners .content .content-list .note {
  font-size: 15px;
  margin-top: 7px;
}

@media screen and (max-width: 1370px) {
  #owners .content .content-list li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  #owners .content.bg {
    padding: 40px 0;
    margin-bottom: 60px;
    margin-top: 0;
  }

  #owners .content .lead {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  #owners .content .img {
    text-align: center;
    margin-bottom: 60px;
    display: block;
  }

  #owners .content.bg .scroll {
    overflow-x: scroll;
  }

  #owners .content.bg .img {
    width: 747px;
  }

  #owners .content .img img {
    width: auto;
    height: auto;
  }

  #owners .content .media {
    display: block;
    margin-bottom: 50px;
    gap: 20px;
  }

  #owners .content .media.md {
    width: 100%;
    margin-bottom: 50px;
  }

  #owners .content .media .body {
    width: 100%;
    margin-bottom: 20px;
  }

  #owners .content .media .body .text {
    font-size: 14px;
    line-height: 1.7;
  }

  #owners .content .media .body.bg {
    border-radius: 10px;
    width: 100%;
    max-width: 670px;
    padding: 20px 20px 10px 20px;
  }
  
  #owners .content .media .img {
    width: 100%;
    max-width: 434px;
    margin: 0 auto;
    display: block;
  }
  
  #owners .content .media .img.lg {
    width: 100%;
    max-width: 568px;
    margin: 0 auto;
  }

  #owners .content.bg .media {
    gap: 20px;
  }
  
  #owners .content.bg .media .body {
    width: 100%;
  }
  
  #owners .content.bg .media .img {
    width: 100%;
    max-width: 100%;
  }
  
  #owners .content .media .list li {
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 14px;
  }
  
  #owners .content .media .list li::before {
    transform: translateY(-38%);
  }
  
  #owners .content .content-list {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
  }
  
  #owners .content .content-list li {
    border-radius: 10px;
    width: 100%;
    padding: 15px;
  }
  
  #owners .content .content-list .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #owners .content .content-list .title span {
    margin-right: 10px;
  }
  
  #owners .content .content-list .text {
    font-size: 14px;
    line-height: 21px;
  }
  
  #owners .content .content-list .note {
    font-size: 10px;
    margin-top: 5px;
  }
}

/* slider */

#owners .slide-owners {
  margin-bottom: 120px;
}

#owners .slide-owners .slick-track {
  display: flex;
}
#owners .slide-owners .slick-slide {
  height: auto !important;
}

#owners .slide-owners .slide-item {
  width: 568px;
  margin: 0 10px;
  background: #F7F7F7;
  border-radius: 22px;
  text-align: center;
  padding: 35px 0;
}

#owners .slide-owners .slide-title {
  font-weight: bold;
  font-size: 32px;
  color: #005cac;
  margin-bottom: 33px;
}

#owners .slide-owners .slide-text {
  font-size: 18px;
  line-height: 32px;
}

#owners .slide-owners .slide-item img {
  max-width: 100%;
  border-radius: 22px;
}

#owners .slide-owners .slick-track {
  float: none;
  display: flex;
  left: calc(calc(568px / 2) * -1);
}

#owners .slide-owners .slick-prev,
#owners .slide-owners .slick-next {
  width: 56px;
  height: 56px;
  background: #005CAC;
  border-radius: 50%;
}

#owners .slide-owners .slick-prev {
  left: calc(calc(50% - 568px) - 28px);
  z-index: 1;
}

#owners .slide-owners .slick-next {
  right: calc(calc(50% - 568px) - 28px);
}

#owners .slide-owners .slick-prev:before,
#owners .slide-owners .slick-next:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  opacity: 1;
}

#owners .slide-owners .slick-prev:before {
  position: relative;;
  left: 3px;
  transform: rotate(-135deg);
}

#owners .slide-owners .slick-next:before {
  position: relative;;
  right: 3px;
  transform: rotate(45deg);
}

#owners .slide-owners .slick-prev:hover,
#owners .slide-owners .slick-prev:focus,
#owners .slide-owners .slick-next:hover,
#owners .slide-owners .slick-next:focus {
  background: #005CAC;
}

@media screen and (max-width: 1220px) {
  #owners .slide-owners .slick-prev {
    left: 25px;
  }

  #owners .slide-owners .slick-next {
    right: 25px;
  }
}

@media screen and (max-width: 767px) {
  #owners .slide-owners {
    margin-bottom: 60px;
  }
  
  #owners .slide-owners .slide-item {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
  }

  #owners .slide-owners .slide-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  #owners .slide-owners .slide-text {
    font-size: 14px;
    line-height: 24px;
  }

  #owners .slide-owners .slide-item img {
    border-radius: 10px;
  }
  
  #owners .slide-owners .slick-track {
    left: 0;
    gap: 0;
  }
  
  #owners .slide-owners .slick-prev,
  #owners .slide-owners .slick-next {
    width: 40px;
    height: 40px;
  }
  
  #owners .slide-owners .slick-prev {
    left: 25px;
    z-index: 1;
  }
  
  #owners .slide-owners .slick-next {
    right: 25px;
  }

  #owners .slide-owners .slick-prev:before,
  #owners .slide-owners .slick-next:before {
    width: 8px;
    height: 8px;
  }
  
  #owners .slide-owners .slick-prev:before {
    left: 2px;
  }
  
  #owners .slide-owners .slick-next:before {
    right: 2px;
  }
}

/*
---------------------------------------------
app residents
---------------------------------------------
*/

/* top */

#residents .top {
  margin-top: 80px;
  margin-bottom: 120px;
}

#residents .top .top-kv img {
  max-width: 100%;
}

#residents .top .top-note {
  margin-top: 20px;
  color: #999999;
  font-size: 12px;
}

#residents .page-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  #residents .top {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  
  #residents .top .top-note {
    margin-top: 10px;
    font-size: 10px;
  }

  #residents .page-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/* content */

#residents .content.bg {
  background: #EDF7F0;
  padding: 80px 0;
  margin-bottom: 120px;
}

#residents .content .lead {
  margin-bottom: 50px;
}

#residents .content .img {
  text-align: center;
  margin-bottom: 120px;
}

#residents .content.bg .img {
  margin-bottom: 0;
}

#residents .content .img img {
  max-width: 100%;
}

#residents .content .media {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 20px;
}

#residents .content .media.md {
  max-width: 1205px;
  margin: 0 auto 100px;
}

#residents .content .media.md .text {
  line-height: 1.8;
}

#residents .content .media .body {
  width: 700px;
}

#residents .content .media .body.bg {
  background: #EDF7F0;
  border-radius: 20px;
  width: 670px;
  padding: 56px 20px 40px 80px;
}

#residents .content .media .img {
  width: 434px;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

#residents .content .media .img.lg {
  width: 626px;
}

#residents .content.bg .media {
  margin-bottom: 0;
}

#residents .content.bg .media .body {
  width: 500px;
}

#residents .content.bg .media .img {
  width: 712px;
}

#residents .content .media .list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 23px;
}

#residents .content .media .list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: #78AE88;
  border-radius: 50%;
}

#residents .content .content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 120px;
}

#residents .content .content-list li {
  background: #F7F7F7;
  border-radius: 15px;
  width: 660px;
  padding: 40px 40px 40px 30px;
}

#residents .content .content-list .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

#residents .content .content-list .title span {
  display: inline-block;
  color: #005CAC;
  margin-right: 20px;
}

#residents .content .content-list .text {
  font-size: 18px;
  line-height: 32px;
}

#residents .content .content-list .note {
  font-size: 15px;
  margin-top: 7px;
}

@media screen and (max-width: 1000px) {
  #residents .content .content-list li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  #residents .content.bg {
    padding: 40px 0;
    margin-bottom: 60px;
  }

  #residents .content .lead {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  #residents .content .img {
    text-align: center;
    margin-bottom: 60px;
    display: block;
  }

  #residents .content.bg .scroll {
    overflow-x: scroll;
  }

  #residents .content.bg .img {
    width: 747px;
  }

  #residents .content .img img {
    width: auto;
    height: auto;
  }

  #residents .content .media {
    /* flex-direction: column; */
    margin-bottom: 50px;
    gap: 20px;
    display: block;
  }

  #residents .content .media .body {
    width: 100%;
    margin-bottom: 20px;
  }

  #residents .content .media .body .text {
    font-size: 14px;
    line-height: 1.7;
  }

  #residents .content .media .body.bg {
    border-radius: 10px;
    width: 100%;
    max-width: 670px;
    padding: 20px 20px 10px 20px;
  }
  
  #residents .content .media .img {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: block;
  }
  
  #residents .content .media .img.lg {
    width: 100%;
    max-width: 568px;
    margin: 0 auto;
    display: block;
  }

  #residents .content.bg .media {
    gap: 20px;
  }
  
  #residents .content.bg .media .body {
    width: 100%;
  }
  
  #residents .content.bg .media .img {
    width: 100%;
    max-width: 100%;
  }
  
  #residents .content .media .list li {
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 14px;
  }
  
  #residents .content .media .list li::before {
    transform: translateY(-38%);
  }
  
  #residents .content .content-list {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
  }
  
  #residents .content .content-list li {
    border-radius: 10px;
    width: 100%;
    padding: 15px;
  }
  
  #residents .content .content-list .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #residents .content .content-list .title span {
    margin-right: 10px;
  }
  
  #residents .content .content-list .text {
    font-size: 14px;
    line-height: 21px;
  }
  
  #residents .content .content-list .note {
    font-size: 10px;
    margin-top: 5px;
  }
}

/* slider */

#residents .slide-residents {
  margin-bottom: 120px;
}

#residents .slide-residents .slick-track {
  display: flex;
}
#residents .slide-residents .slick-slide {
  height: auto !important;
}

#residents .slide-residents .slide-item {
  width: 568px;
  padding: 0 10px;
  margin: 0 10px;
  background: #F7F7F7;
  border-radius: 22px;
  text-align: center;
  padding: 35px 0;
}

#residents .slide-residents .slide-title {
  font-weight: bold;
  font-size: 32px;
  color: #5EA773;
  margin-bottom: 33px;
}

#residents .slide-residents .slide-text {
  font-size: 18px;
  line-height: 32px;
}

#residents .slide-residents .slide-item img {
  max-width: 100%;
  border-radius: 22px;
}

#residents .slide-residents .slick-track {
  float: none;
  display: flex;
  left: calc(calc(568px / 2) * -1);
}

#residents .slide-residents .slick-prev,
#residents .slide-residents .slick-next {
  width: 56px;
  height: 56px;
  background: #78AE88;
  border-radius: 50%;
}

#residents .slide-residents .slick-prev {
  left: calc(calc(50% - 568px) - 28px);
  z-index: 1;
}

#residents .slide-residents .slick-next {
  right: calc(calc(50% - 568px) - 28px);
}

#residents .slide-residents .slick-prev:before,
#residents .slide-residents .slick-next:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  opacity: 1;
}

#residents .slide-residents .slick-prev:before {
  position: relative;;
  left: 3px;
  transform: rotate(-135deg);
}

#residents .slide-residents .slick-next:before {
  position: relative;;
  right: 3px;
  transform: rotate(45deg);
}

#residents .slide-residents .slick-prev:hover,
#residents .slide-residents .slick-prev:focus,
#residents .slide-residents .slick-next:hover,
#residents .slide-residents .slick-next:focus {
  background: #78AE88;
}

@media screen and (max-width: 1220px) {
  #residents .slide-residents .slick-prev {
    left: 25px;
  }

  #residents .slide-residents .slick-next {
    right: 25px;
  }
}

@media screen and (max-width: 767px) {
  #residents .slide-residents {
    margin-bottom: 60px;
  }
  
  #residents .slide-residents .slide-item {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
  }

  #residents .slide-residents .slide-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  #residents .slide-residents .slide-text {
    font-size: 14px;
    line-height: 24px;
  }
  
  #residents .slide-residents .slide-item img {
    border-radius: 10px;
  }
  
  #residents .slide-residents .slick-track {
    left: 0;
    gap: 0;
  }
  
  #residents .slide-residents .slick-prev,
  #residents .slide-residents .slick-next {
    width: 40px;
    height: 40px;
  }
  
  #residents .slide-residents .slick-prev {
    left: 25px;
    z-index: 1;
  }
  
  #residents .slide-residents .slick-next {
    right: 25px;
  }

  #residents .slide-residents .slick-prev:before,
  #residents .slide-residents .slick-next:before {
    width: 8px;
    height: 8px;
  }
  
  #residents .slide-residents .slick-prev:before {
    left: 2px;
  }
  
  #residents .slide-residents .slick-next:before {
    right: 2px;
  }
}
