@charset "UTF-8";
/* Common CSS */
/* _setting CSS */
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
}

/* ___________________Font */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  color: #333333;
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Helvetica,Arial,Verdana,sans-serif;
  margin: 0;
  padding: 0;
  font-size: 2rem;
}

/* ___________________Link */
a {
  color: #797878;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}
a:hover img {
  opacity: 0.8;
}

/* ___________________UI */
.btn {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}
.btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  position: relative;
  background-color: #34b947;
  color: #fff;
  text-decoration: none;
}
.btn a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.button {
  outline: none;
  border: none;
  display: block;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  position: relative;
}
.button:disabled {
  background: #ccc !important;
  cursor: not-allowed;
}

/* Desktops and laptops */
@media print, screen and (min-width: 751px) {
  html, body {
    min-width: 1400px;
  }

  .sp {
    display: none;
  }

  /* ___________________Layout */
  .content_inner {
    width: 1200px;
    margin: 0 auto;
  }

  /* ___________________Contents */
  .service_lineup {
    padding: 80px 0;
    background-color: #edf2f9;
    margin-bottom: 150px;
  }
  .service_lineup .title {
    margin-bottom: 50px;
  }
  .service_lineup .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service_lineup .list li {
    width: 575px;
    margin-bottom: 40px;
  }
  .service_lineup .list li a,
  .service_lineup .list li .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    text-decoration: none;
  }
  .service_lineup .list li a .thumb,
  .service_lineup .list li .item .thumb {
    width: 250px;
  }
  .service_lineup .list li a .thumb img,
  .service_lineup .list li .item .thumb img {
    width: 100%;
    height: auto;
  }
  .service_lineup .list li a .detail,
  .service_lineup .list li .item .detail {
    width: calc(100% - 270px);
    padding: 20px 20px 0 0;
  }
  .service_lineup .list li a .detail .name,
  .service_lineup .list li .item .detail .name {
    width: 100%;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: bold;
  }
  .service_lineup .list li a .detail .name img,
  .service_lineup .list li .item .detail .name img {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
  }
  .service_lineup .list li a .detail .name_note,
  .service_lineup .list li .item .detail .name_note {
    margin: -5px 0 15px 0;
    font-size: 1.2rem;
  }
  .service_lineup .list li a .detail .caps,
  .service_lineup .list li .item .detail .caps {
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .service_lineup .list li a .detail .more,
  .service_lineup .list li .item .detail .more {
    width: 100%;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .service_lineup .list li a .detail .more::after,
  .service_lineup .list li .item .detail .more::after {
    content: '';
    display: inline-block;
    background: url(../images/common/icon_arrow_black.png) center center no-repeat;
    width: 14px;
    height: 12px;
    margin-left: 5px;
    vertical-align: middle;
  }
  .service_lineup .list li a .detail .more.blank::after,
  .service_lineup .list li .item .detail .more.blank::after {
    background: url(../images/common/icon_window.png) center center no-repeat;
    width: 13px;
    height: 13px;
  }
  .service_lineup .list li a:hover {
    background-color: #fff;
  }
  .service_lineup .list li a:hover .thumb img {
    opacity: 1;
  }
  .service_lineup .list li:nth-child(3) .detail, .service_lineup .list li:nth-child(4) .detail {
    padding-top: 15px;
  }
  .service_lineup .btn_lineup {
    width: 440px;
    margin: 50px auto 0 auto;
  }
  .service_lineup .btn_lineup a {
    width: 100%;
    height: 100px;
    line-height: 95px;
    display: block;
    background: url(../images/common/icon_circle_arrow_black.png) calc(100% - 20px) center no-repeat #fff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0 65px 0 20px;
    color: #333;
    border: 2px solid #cccccc;
    text-align: center;
    text-decoration: none;
  }
  .service_lineup .btn_lineup a img {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
  }
  .service_lineup .btn_lineup a:hover {
    border-color: #34b947;
    color: #34b947;
  }
  .service_lineup .assets img {
    top: -115px;
    right: -70px;
  }

  .service_contact {
    margin-top: 150px;
    margin-bottom: 200px;
    padding-top: 0;
  }
  .service_contact .title {
    margin-bottom: 30px;
  }
  .service_contact .lead {
    margin-bottom: 60px;
    font-size: 2rem;
    line-height: 1.8;
    text-align: center;
  }
  .service_contact .btns {
    padding: 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fdffdf;
    border-radius: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service_contact .btns .btn {
    width: 360px;
    margin: 0;
  }
  .service_contact .btns .btn a {
    width: 100%;
    height: 140px;
    padding: 30px 15px 30px 90px;
    display: block;
    background: url(../images/common/icon_circle_arrow_black.png) calc(100% - 20px) center no-repeat #fff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 2rem;
    color: #333;
    border: 2px solid #cccccc;
    text-align: left;
    text-decoration: none;
    position: relative;
  }
  .service_contact .btns .btn a strong {
    margin-bottom: 5px;
    display: block;
  }
  .service_contact .btns .btn a strong img {
    height: 24px;
    width: auto;
    max-width: none;
  }
  .service_contact .btns .btn a span {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .service_contact .btns .btn a > img {
    margin: auto 0;
    display: block;
    position: absolute;
  }
  .service_contact .btns .btn a:hover {
    border-color: #34b947;
    color: #34b947;
  }
  .service_contact .btns .btn:nth-of-type(1) a > img {
    left: 32px;
    top: 40px;
  }
  .service_contact .btns .btn:nth-of-type(2) a > img {
    left: 17px;
    top: 40px;
  }
  .service_contact .btns .btn:nth-of-type(3) a > img {
    left: 23px;
    top: 52px;
  }
  .service_contact .assets img:nth-child(1) {
    top: -100px;
    left: -80px;
  }
  .service_contact .assets img:nth-child(2) {
    top: -100px;
    right: -5px;
  }

  /* ___________________header */
  .menu-btn {
    display: none;
  }

  #header {
    width: 100%;
  }
  #header .header_inner {
    max-width: 1400px;
    height: 120px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .header_inner #logo {
    width: 140px;
  }
  #header .header_inner #logo a {
    padding: 20px 0;
    display: block;
  }
  #header .header_inner #logo a img {
    width: 100%;
    height: auto;
  }
  #header .header_inner #gnav {
    width: calc(100% - 160px);
  }
  #header .header_inner #gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #header .header_inner #gnav ul li {
    margin-left: 50px;
  }
  #header .header_inner #gnav ul li a {
    padding: 10px 0;
    display: block;
    font-size: 1.6rem;
    color: #333333;
    text-decoration: none;
  }
  #header .header_inner #gnav ul li a:hover {
    color: #34b947;
  }
  #header .header_inner #gnav ul li.contact a {
    padding: 10px 30px;
    background-color: #34b947;
    color: #fff;
    border-radius: 5px;
  }
  #header .header_inner #gnav ul li.contact a:hover {
    background-color: #52ce64;
  }

  /* ___________________page head */
  #page_head {
    margin-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #page_head .page_title {
    width: 100%;
    min-height: 260px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background-color: #edf2f9;
  }
  #page_head .page_title .page_title_inner {
    width: 1200px;
    padding: 90px 0 0 0;
    margin: 0 auto;
    position: relative;
  }
  #page_head .page_title .page_title_inner .name {
    margin-bottom: 15px;
    font-size: 3.8rem;
    font-weight: bold;
  }
  #page_head .page_title .page_title_inner .text {
    font-size: 2.2rem;
    font-weight: bold;
  }
  #page_head .page_title .page_title_inner .image {
    position: absolute;
  }
  #page_head .pankuzu {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 60px 0;
  }
  #page_head .pankuzu .pankuzu_inner {
    max-width: 1400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page_head .pankuzu .pankuzu_inner .name {
    padding-left: 20px;
    line-height: 1.25;
    font-size: 1.6rem;
    color: #959595;
    position: relative;
  }
  #page_head .pankuzu .pankuzu_inner .name::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.25em;
    margin: auto 0;
    background-color: #34b947;
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  #page_head .pankuzu .pankuzu_inner .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page_head .pankuzu .pankuzu_inner .list li {
    font-size: 1.3rem;
  }
  #page_head .pankuzu .pankuzu_inner .list li a {
    color: #959595;
  }
  #page_head .pankuzu .pankuzu_inner .list li a:hover {
    color: #34b947;
  }
  #page_head .pankuzu .pankuzu_inner .list li::after {
    content: '';
    display: inline-block;
    margin: 0 10px;
    width: 9px;
    height: 13px;
    background: url(../images/common/icon_pankuzu.svg) no-repeat center center;
    vertical-align: middle;
  }
  #page_head .pankuzu .pankuzu_inner .list li:last-child::after {
    content: none;
  }

  /* ___________________pagenavi */
  .page_nav {
    text-align: center;
    margin: 70px 0;
  }
  .page_nav .current, .page_nav .page {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    text-align: center;
    border-radius: 30px;
    padding-top: 13px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 8px;
    font-size: 1.8rem;
  }
  .page_nav .current {
    background-color: #333;
    color: #fff;
  }
  .page_nav .page {
    background-color: #fff;
    color: #333;
  }
  .page_nav .page:hover {
    text-decoration: none;
    opacity: 0.6;
  }
  .page_nav .nextpostslink,
  .page_nav .previouspostslink {
    text-decoration: none;
    margin: 0 20px;
  }
  .page_nav .nextpostslink span,
  .page_nav .previouspostslink span {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }
  .page_nav .previouspostslink span {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* ___________________footer */
  #footer {
    width: 100%;
    position: relative;
  }
  #footer #footer_inner {
    width: 1400px;
    padding: 100px 60px 60px 60px;
    margin: 0 auto;
    border-radius: 60px;
    background-color: #edf2f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer #footer_inner .footer_content {
    width: 280px;
  }
  #footer #footer_inner .footer_content .logo {
    width: 280px;
    margin-bottom: 50px;
  }
  #footer #footer_inner .footer_content .logo a {
    display: block;
  }
  #footer #footer_inner .footer_content .logo a img {
    width: 100%;
    height: auto;
  }
  #footer #footer_inner .footer_content .language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #footer #footer_inner .footer_content .language li {
    margin: 0 10px;
  }
  #footer #footer_inner .footer_content .language li a {
    font-size: 1.6rem;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    display: block;
    text-decoration: none;
  }
  #footer #footer_inner .footer_content .language li a:hover {
    background-color: #34b947;
    color: #fff;
  }
  #footer #footer_inner .footer_content .language li.on a {
    background-color: #333333;
    color: #fff;
  }
  #footer #footer_inner .fnav_service {
    width: 580px;
    padding: 15px 0 0 80px;
  }
  #footer #footer_inner .fnav_service .title {
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.25;
    font-size: 2.2rem;
    font-weight: bold;
    position: relative;
  }
  #footer #footer_inner .fnav_service .title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.25em;
    margin: auto 0;
    background-color: #34b947;
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  #footer #footer_inner .fnav_service .sub_title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #footer #footer_inner .fnav_service .sub_title a {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333333;
    padding: 0 30px 0 0;
    text-decoration: none;
  }
  #footer #footer_inner .fnav_service .sub_title a:hover {
    color: #34b947;
  }
  #footer #footer_inner .fnav_service .sub_title a:hover {
    color: #34b947;
  }
  #footer #footer_inner .fnav_service .sub_title a::before, #footer #footer_inner .fnav_service .sub_title a::after {
    position: absolute;
    content: '';
    display: inline-block;
  }
  #footer #footer_inner .fnav_service .sub_title a::before {
    border-radius: 50%;
    background-color: #333;
    width: 18px;
    height: 18px;
    top: 2px;
    right: 0;
  }
  #footer #footer_inner .fnav_service .sub_title a::after {
    top: 8px;
    right: 7px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #footer #footer_inner .fnav_service .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer #footer_inner .fnav_service .list li {
    min-width: 250px;
    padding-right: 50px;
    margin-bottom: 20px;
  }
  #footer #footer_inner .fnav_service .list li a {
    display: block;
    padding: 0;
    font-size: 1.5rem;
    color: #333333;
    text-decoration: none;
  }
  #footer #footer_inner .fnav_service .list li a::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-right: 10px;
    background: url(../images/common/icon_arrow_green.svg) no-repeat center center;
  }
  #footer #footer_inner .fnav_service .list li a:hover {
    color: #34b947;
  }
  #footer #footer_inner .fnav_service .list + .sub_title {
    margin-top: 20px;
    font-weight: normal;
    font-size: 1.6rem;
  }
  #footer #footer_inner .fnav {
    width: 300px;
    padding: 15px 0 0 0;
  }
  #footer #footer_inner .fnav .list {
    padding: 0 0 0 60px;
    margin-bottom: 45px;
    border-left: 1px dashed #5a5b5d;
  }
  #footer #footer_inner .fnav .list li {
    margin-bottom: 30px;
  }
  #footer #footer_inner .fnav .list li a {
    display: block;
    padding: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
  }
  #footer #footer_inner .fnav .list li a:hover {
    color: #34b947;
  }
  #footer #footer_inner .fnav .contact {
    width: 240px;
  }
  #footer #footer_inner .fnav .contact a {
    display: block;
    padding: 15px 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #34b947;
    border-radius: 50px;
    text-decoration: none;
  }
  #footer #footer_inner .fnav .contact a:hover {
    background-color: #52ce64;
  }
  #footer #footer_inner .footer_policy {
    width: 100%;
    padding: 0 40px;
    margin-top: 40px;
    border-radius: 40px;
    background-color: #fff;
  }
  #footer #footer_inner .footer_policy .list {
    line-height: 1;
  }
  #footer #footer_inner .footer_policy .list li {
    display: inline-block;
    margin-right: 20px;
  }
  #footer #footer_inner .footer_policy .list li a {
    padding: 15px 0;
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
  }
  #footer #footer_inner .footer_policy .list li a:hover {
    color: #34b947;
  }
  #footer #footer_bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer #footer_bottom .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #footer #footer_bottom .list li {
    margin-right: 30px;
  }
  #footer #footer_bottom .list li a img {
    width: auto;
    height: 71px;
    margin: 0 auto;
    display: block;
  }
  #footer #footer_bottom #copyrights {
    font-size: 1rem;
  }
  #footer #footer_bottom #copyrights a {
    color: #333;
  }
  #footer #footer_pagetop {
    width: 70px;
    height: 70px;
    display: none;
    position: fixed;
    bottom: 20px;
    left: calc(50vw + 665px);
  }
  #footer #footer_pagetop a {
    width: 100%;
    height: 100%;
    display: block;
  }
  #footer #footer_pagetop a img {
    width: 100%;
    height: auto;
  }
  #footer #footer_pagetop.fix {
    position: absolute;
    bottom: auto;
    top: -130px;
  }
}
@media screen and (max-width: 1470px) {
  #footer #footer_pagetop {
    left: calc(100vw - 80px);
  }
}
/* Smartphones (portrait and landscape) */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }

  img {
    width: 100%;
    height: auto;
  }

  body {
    padding-top: 70px;
  }

  /* ___________________Smartphones Layout */
  #wrapper.disabled {
    pointer-events: none;
  }

  /* ___________________Smartphones Contents */
  .service_lineup {
    position: relative;
    padding: 45px 0 55px;
    background-color: #edf2f9;
  }
  .service_lineup .content_inner {
    width: 91.46%;
    margin: 0 auto;
  }
  .service_lineup .title {
    width: 35.06667vw;
    margin: 0 auto 30px 0;
  }
  .service_lineup .list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .service_lineup .list li a,
  .service_lineup .list li .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 10px;
    text-decoration: none;
  }
  .service_lineup .list li a .thumb,
  .service_lineup .list li .item .thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 37%;
    max-width: 250px;
  }
  .service_lineup .list li a .thumb img,
  .service_lineup .list li .item .thumb img {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .service_lineup .list li a .detail,
  .service_lineup .list li .item .detail {
    width: calc(100% - 39%);
    padding: 0 0 0 10px;
  }
  .service_lineup .list li a .detail .name,
  .service_lineup .list li .item .detail .name {
    width: 100%;
    margin-bottom: 8px;
    font-size: 3.73333vw;
    font-weight: bold;
  }
  .service_lineup .list li a .detail .name img,
  .service_lineup .list li .item .detail .name img {
    width: 50px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
  }
  .service_lineup .list li a .detail .name_note,
  .service_lineup .list li .item .detail .name_note {
    margin: -5px 0 2px 0;
    line-height: 1.5;
    font-size: 2.93333vw;
  }
  .service_lineup .list li a .detail .caps,
  .service_lineup .list li .item .detail .caps {
    width: 100%;
    margin-bottom: 10px;
    font-size: 3.46667vw;
    line-height: 1.5;
  }
  .service_lineup .list li a .detail .more,
  .service_lineup .list li .item .detail .more {
    width: 100%;
    font-size: 3.2vw;
    font-weight: bold;
  }
  .service_lineup .list li a .detail .more::after,
  .service_lineup .list li .item .detail .more::after {
    content: '';
    display: inline-block;
    background: url(../images/common/icon_arrow_black.png) center center/100% no-repeat;
    width: 9px;
    height: 7px;
    margin-left: 5px;
    vertical-align: middle;
  }
  .service_lineup .list li a .detail .more.blank::after,
  .service_lineup .list li .item .detail .more.blank::after {
    background: url(../images/common/icon_window.png) center center/100% no-repeat;
    width: 8px;
    height: 8px;
  }
  .service_lineup .list .item1 a .thumb img {
    padding: 0;
  }
  .service_lineup .btn_lineup {
    width: 440px;
    margin: 50px auto 0 auto;
  }
  .service_lineup .btn_lineup a {
    width: 100%;
    height: 50px;
    line-height: 48px;
    display: block;
    background: url(../images/common/icon_circle_arrow_black.png) calc(100% - 20px) center no-repeat #fff;
    background-size: 20px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 2.93333vw;
    padding: 0 65px 0 20px;
    color: #333;
    border: 2px solid #cccccc;
    text-align: center;
    text-decoration: none;
  }
  .service_lineup .btn_lineup a img {
    width: 25.6vw;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
  }
  .service_lineup .btn_lineup a:hover {
    border-color: #34b947;
    color: #34b947;
  }
  .service_lineup .assets img {
    width: 24vw;
    position: absolute;
    top: -20px;
    right: 15px;
  }

  .service_contact {
    position: relative;
    margin-top: 80px;
    margin-bottom: 70px;
    padding-top: 0;
  }
  .service_contact .content_inner {
    padding: 0 15px;
  }
  .service_contact .title {
    width: 47.86667vw;
    margin-bottom: 30px;
  }
  .service_contact .lead {
    font-size: 3.73333vw;
    line-height: 1.69231;
    padding: 0 0 15px 0;
  }
  .service_contact .btns {
    width: calc(100%);
    margin: 0 auto;
    padding: 10px 26px;
    background: #fdffdf;
    border-radius: 20px;
  }
  .service_contact .btns .btn {
    width: 100%;
    margin: 10px 0;
  }
  .service_contact .btns .btn a {
    width: 100%;
    height: 27.73333vw;
    display: block;
    background: url(../images/common/icon_circle_arrow_black.png) calc(100% - 15px) center no-repeat #fff;
    background-size: 20px auto;
    border-radius: 10px;
    font-weight: bold;
    font-size: 3.73333vw;
    line-height: 1.2;
    padding: 5.33333vw 10.66667vw 0 17.33333vw;
    color: #333;
    border: 2px solid #cccccc;
    text-align: left;
    text-decoration: none;
  }
  .service_contact .btns .btn a > img {
    width: 30px;
    height: 44px;
    vertical-align: top;
    margin: auto 0;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
  }
  .service_contact .btns .btn a:hover {
    border-color: #34b947;
    color: #34b947;
  }
  .service_contact .btns .btn .cta_text {
    line-height: 1;
  }
  .service_contact .btns .btn .cta_text strong {
    display: block;
    margin-bottom: 5px;
  }
  .service_contact .btns .btn .cta_text strong img {
    height: 5.33333vw;
    width: auto;
  }
  .service_contact .btns .btn .cta_text span {
    font-size: 3.46667vw;
  }
  .service_contact .btns .btn:nth-of-type(1) a > img {
    height: 10.66667vw;
    width: auto;
    left: 5.6vw;
    top: 1.33333vw;
  }
  .service_contact .btns .btn:nth-of-type(2) a > img {
    height: 10.66667vw;
    width: auto;
    left: 3.2vw;
    top: 1.33333vw;
  }
  .service_contact .btns .btn:nth-of-type(3) a > img {
    height: 6.66667vw;
    width: auto;
    left: 3.2vw;
    top: 1.33333vw;
  }
  .service_contact .assets img {
    position: absolute;
  }
  .service_contact .assets img:nth-child(2) {
    width: 29.86667vw;
    top: -45px;
    right: 20px;
  }

  /* ___________________Smartphones header */
  #header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 997;
  }
  #header .header_inner {
    width: 100%;
    padding: 20px 15px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .header_inner #logo {
    width: 130px;
  }
  #header .header_inner #logo a {
    display: block;
  }
  #header .header_inner #logo a img {
    width: auto;
    height: 30px;
  }
  #header .header_inner .menu {
    width: calc(100% - 140px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .header_inner .menu .contact {
    width: 120px;
  }
  #header .header_inner .menu .contact a {
    width: 100%;
    display: block;
    padding: 0 10px;
    background-color: #34b947;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 30px;
  }
  #header .header_inner .menu .contact a:hover {
    background-color: #52ce64;
  }
  #header .header_inner .menu #button_menu {
    width: 30px;
    height: 30px;
    margin-left: 15px;
    display: block;
    position: relative;
    z-index: 999;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    border: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }
  #header .header_inner .menu #button_menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #cdcdcd;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #header .header_inner .menu #button_menu span::before, #header .header_inner .menu #button_menu span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #cdcdcd;
    position: absolute;
    left: 0;
  }
  #header .header_inner .menu #button_menu span::before {
    top: -12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #header .header_inner .menu #button_menu span::after {
    bottom: -12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #header .header_inner .menu #button_menu.active span {
    background-color: transparent;
  }
  #header .header_inner .menu #button_menu.active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header .header_inner .menu #button_menu.active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #header #sp_menu {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    padding: 70px 20px 20px 20px;
    background-color: #edf2f9;
    z-index: -1;
    -webkit-transform: translateX(-20%) scale(1);
            transform: translateX(-20%) scale(1);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    pointer-events: none;
  }
  #header #sp_menu::-webkit-scrollbar {
    display: none;
  }
  #header #sp_menu.active {
    pointer-events: auto;
    z-index: 998;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    opacity: 1;
  }
  #header #sp_menu .sp_nav .title {
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.25;
    font-size: 5.33333vw;
    font-weight: bold;
    position: relative;
  }
  #header #sp_menu .sp_nav .title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.25em;
    margin: auto 0;
    background-color: #34b947;
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  #header #sp_menu .sp_nav .sub_title {
    margin-bottom: 28px;
    font-size: 4.26667vw;
    font-weight: bold;
  }
  #header #sp_menu .sp_nav .sub_title a {
    position: relative;
    display: inline-block;
    color: #333;
    font-size: 4.26667vw;
    font-weight: bold;
    padding-right: 8vw;
  }
  #header #sp_menu .sp_nav .sub_title a:hover {
    color: #34b947;
  }
  #header #sp_menu .sp_nav .sub_title a::before, #header #sp_menu .sp_nav .sub_title a::after {
    position: absolute;
    content: '';
    display: inline-block;
  }
  #header #sp_menu .sp_nav .sub_title a::before {
    border-radius: 50%;
    background-color: #333;
    width: 4.8vw;
    height: 4.8vw;
    top: 0;
    right: 0;
  }
  #header #sp_menu .sp_nav .sub_title a::after {
    top: 1.73333vw;
    right: 2vw;
    width: 1.06667vw;
    height: 1.06667vw;
    border-top: 0.26667vw solid #fff;
    border-right: 0.26667vw solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header #sp_menu .sp_nav .list li {
    padding-right: 50px;
    margin-bottom: 30px;
  }
  #header #sp_menu .sp_nav .list li a {
    display: block;
    padding: 0;
    font-size: 3.73333vw;
    color: #333333;
    text-decoration: none;
  }
  #header #sp_menu .sp_nav .list li a::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-right: 10px;
    background: url(../images/common/icon_arrow_green.svg) no-repeat center center;
  }
  #header #sp_menu .sp_nav .list li a:hover {
    color: #34b947;
  }
  #header #sp_menu .sp_nav .list + .sub_title {
    margin-top: 30px;
  }
  #header #sp_menu .sp_nav .list2 {
    padding-top: 35px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-top: 1px dashed #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header #sp_menu .sp_nav .list2 li {
    width: 50%;
    margin-bottom: 30px;
  }
  #header #sp_menu .sp_nav .list2 li a {
    display: block;
    padding: 0;
    font-size: 4.8vw;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
  }
  #header #sp_menu .sp_nav .list2 li a:hover {
    color: #34b947;
  }
  #header #sp_menu .sp_nav .btn_contact {
    width: 100%;
  }
  #header #sp_menu .sp_nav .btn_contact a {
    border-radius: 5px;
  }
  #header #sp_menu .sp_address {
    padding-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header #sp_menu .sp_address .logo {
    width: 180px;
  }
  #header #sp_menu .sp_address .logo a {
    display: block;
  }
  #header #sp_menu .sp_address .logo a img {
    width: auto;
    height: 40px;
  }
  #header #sp_menu .sp_address .language {
    width: calc(100% - 180px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #header #sp_menu .sp_address .language li {
    margin: 0 10px;
  }
  #header #sp_menu .sp_address .language li a {
    font-size: 1.6rem;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    display: block;
    text-decoration: none;
  }
  #header #sp_menu .sp_address .language li a:hover {
    background-color: #34b947;
    color: #fff;
  }
  #header #sp_menu .sp_address .language li.on a {
    background-color: #333333;
    color: #fff;
  }
  #header #sp_menu .sp_address .address {
    width: 100%;
    font-size: 3.46667vw;
    line-height: 1.5;
    padding: 15px 0 20px;
  }
  #header #sp_menu .sp_address .policy {
    width: 100%;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 5px;
    background-color: #fff;
  }
  #header #sp_menu .sp_address .policy li {
    display: inline-block;
    margin-right: 20px;
  }
  #header #sp_menu .sp_address .policy li a {
    padding: 10px 0;
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
  }
  #header #sp_menu .sp_address .policy li a:hover {
    color: #34b947;
  }

  /* ___________________Smartphones page head */
  #page_head {
    margin-bottom: 8.66667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #page_head .page_title {
    width: 100%;
    min-height: 36vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background-color: #edf2f9;
  }
  #page_head .page_title .page_title_inner {
    width: 100%;
    padding: 12vw 0 0 15px;
    margin: 0 auto;
    position: relative;
  }
  #page_head .page_title .page_title_inner .name {
    margin-bottom: 2vw;
    font-size: 5.6vw;
    font-weight: bold;
  }
  #page_head .page_title .page_title_inner .text {
    font-size: 3.73333vw;
    font-weight: bold;
  }
  #page_head .page_title .page_title_inner .image {
    position: absolute;
  }
  #page_head .pankuzu {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 12.5px 0;
  }
  #page_head .pankuzu .pankuzu_inner {
    width: 100%;
    margin: 0 auto;
  }
  #page_head .pankuzu .pankuzu_inner .name {
    display: none;
  }
  #page_head .pankuzu .pankuzu_inner .list {
    width: 100%;
    padding: 0 15px 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: scroll;
  }
  #page_head .pankuzu .pankuzu_inner .list::-webkit-scrollbar {
    display: none;
  }
  #page_head .pankuzu .pankuzu_inner .list li {
    font-size: 3.2vw;
    white-space: nowrap;
  }
  #page_head .pankuzu .pankuzu_inner .list li a {
    color: #959595;
  }
  #page_head .pankuzu .pankuzu_inner .list li a:hover {
    color: #34b947;
  }
  #page_head .pankuzu .pankuzu_inner .list li::after {
    content: '';
    display: inline-block;
    margin: 0 10px;
    width: 9px;
    height: 13px;
    background: url(../images/common/icon_pankuzu.svg) no-repeat center center;
    vertical-align: middle;
  }
  #page_head .pankuzu .pankuzu_inner .list li:last-child::after {
    content: none;
  }

  /* ___________________pagenavi */
  .page_nav {
    text-align: center;
    margin: 30px 0 90px;
  }
  .page_nav .current, .page_nav .page {
    font-size: 1.3rem;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    text-align: center;
    border-radius: 30px;
    padding-top: 11px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 4px;
  }
  .page_nav .current {
    background-color: #333;
    color: #fff;
  }
  .page_nav .page {
    background-color: #fff;
    color: #333;
  }
  .page_nav .page:hover {
    text-decoration: none;
    opacity: 0.6;
  }
  .page_nav .nextpostslink,
  .page_nav .previouspostslink {
    text-decoration: none;
    margin: 0 10px;
  }
  .page_nav .nextpostslink span,
  .page_nav .previouspostslink span {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }
  .page_nav .previouspostslink span {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* ___________________Smartphones footer */
  #footer {
    margin-top: 6.66667vw;
    padding: 15px;
    position: relative;
  }
  #footer #footer_inner {
    padding: 30px 20px;
    background-color: #edf2f9;
    border-radius: 30px;
  }
  #footer .footer_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer_content .logo {
    width: 180px;
  }
  #footer .footer_content .logo a {
    display: block;
  }
  #footer .footer_content .logo a img {
    width: auto;
    height: 40px;
  }
  #footer .footer_content .language {
    width: calc(100% - 180px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #footer .footer_content .language li {
    margin: 0 10px;
  }
  #footer .footer_content .language li a {
    font-size: 1.6rem;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    display: block;
    text-decoration: none;
  }
  #footer .footer_content .language li a:hover {
    background-color: #34b947;
    color: #fff;
  }
  #footer .footer_content .language li.on a {
    background-color: #333333;
    color: #fff;
  }
  #footer .fnav_service {
    margin-top: 20px;
  }
  #footer .fnav_service .title {
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.25;
    font-size: 5.33333vw;
    font-weight: bold;
    position: relative;
  }
  #footer .fnav_service .title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.25em;
    margin: auto 0;
    background-color: #34b947;
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  #footer .fnav_service .sub_title {
    margin-bottom: 25px;
    font-size: 4.26667vw;
    font-weight: bold;
  }
  #footer .fnav_service .sub_title a {
    position: relative;
    display: inline-block;
    color: #333;
    font-size: 4.26667vw;
    font-weight: bold;
    padding-right: 30px;
  }
  #footer .fnav_service .sub_title a:hover {
    color: #34b947;
  }
  #footer .fnav_service .sub_title a::before, #footer .fnav_service .sub_title a::after {
    position: absolute;
    content: '';
    display: inline-block;
  }
  #footer .fnav_service .sub_title a::before {
    border-radius: 50%;
    background-color: #333;
    width: 18px;
    height: 18px;
    top: 0;
    right: 0;
  }
  #footer .fnav_service .sub_title a::after {
    top: 6px;
    right: 7px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #footer .fnav_service .list li {
    padding-right: 50px;
    margin-bottom: 30px;
  }
  #footer .fnav_service .list li:last-child {
    margin-bottom: 30px;
  }
  #footer .fnav_service .list li a {
    display: block;
    padding: 0;
    font-size: 4vw;
    color: #333333;
    text-decoration: none;
  }
  #footer .fnav_service .list li a::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-right: 10px;
    background: url(../images/common/icon_arrow_green.svg) no-repeat center center;
  }
  #footer .fnav_service .list li a:hover {
    color: #34b947;
  }
  #footer .fnav_service .list + .sub_title {
    margin-top: 30px;
  }
  #footer .fnav {
    margin-top: 50px;
  }
  #footer .fnav .list {
    padding-top: 35px;
    margin-bottom: 20px;
    border-top: 1px dashed #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .fnav .list li {
    width: 50%;
    margin-bottom: 30px;
  }
  #footer .fnav .list li a {
    display: block;
    padding: 0;
    font-size: 4.8vw;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
  }
  #footer .fnav .list li a:hover {
    color: #34b947;
  }
  #footer .fnav .contact {
    width: 100%;
  }
  #footer .footer_policy {
    padding-top: 20px;
  }
  #footer .footer_policy .list {
    width: 100%;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 20px;
    background-color: #fff;
  }
  #footer .footer_policy .list li {
    display: inline-block;
    margin-right: 20px;
  }
  #footer .footer_policy .list li a {
    padding: 10px 0;
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
  }
  #footer .footer_policy .list li a:hover {
    color: #34b947;
  }
  #footer #footer_bottom {
    margin: 0 auto;
    padding: 15px 20px 0 20px;
  }
  #footer #footer_bottom .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer #footer_bottom .list li {
    margin: 0 10px 10px 10px;
  }
  #footer #footer_bottom .list li a img {
    width: auto;
    height: 50px;
    margin: 0 auto;
    display: block;
  }
  #footer #footer_bottom .list li:first-child {
    margin-right: 20px;
  }
  #footer #footer_bottom #copyrights {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  #footer #footer_bottom #copyrights a {
    color: #333;
  }
  #footer #footer_pagetop {
    width: 40px;
    height: 40px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    left: auto;
  }
  #footer #footer_pagetop a {
    width: 100%;
    height: 100%;
    display: block;
  }
  #footer #footer_pagetop a img {
    width: 100%;
    height: auto;
  }
  #footer #footer_pagetop.fix {
    position: absolute;
    bottom: auto;
    top: -65px;
  }

  #copyrights {
    margin: 25px auto 0 auto;
    color: #757575;
    font-size: 1rem;
    text-align: center;
  }
}
