@charset "UTF-8";
/* ===================================
色設定
=================================== */
/* ===================================
フォント
=================================== */
/* ===================================
ボタン
=================================== */
/* ===================================
ボタン（丸）
=================================== */
/* ===================================
共通
=================================== */
.bold {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
}

.en {
  font-family: "Roboto", Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bg-gray {
  background-color: #f2f5f5;
}

.bg-black {
  color: #fff;
  background-color: #262b2c;
}



a:hover {
    opacity: .7
}


@media screen and (max-width: 600px) {
  body {
    font-size: 12px;
  }
}
.all_fade_up,
.all_fade_up_delay {
  opacity: 0;
  transform: translateY(40px);
}

.all_fade_up.anime {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.8s 0s ease, transform 0.8s 0s ease;
}

.all_fade_up_delay.anime_delay {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.8s 0.5s ease, transform 0.8s 0.5s ease;
  transition-delay: 1s;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* レイアウト
==============================　*/
.sec_inner {
  max-width: calc(70vw + 40px);
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .sec_inner {
    max-width: calc(90vw + 40px);
  }
}
@media screen and (max-width: 768px) {
  .sec_inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .sec_inner {
    padding: 0 15px;
  }
}
/* ===================================
ヘッダー
=================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    z-index: 10;
    transition: .3s
}

.header a {
    text-decoration: none
}

.header.fade-bg {
    background-color: #3C88D5
}

.page-sub .header {
    background-color: #3C88D5
}

.header-logo {
    width: 14.14%;
    max-width: 180px;
    line-height: 0
}

.header-menu-wrap {
    display: flex;
    width: 93%;
    padding-left: 3%
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%
}

.header-menu-item {
    padding-right: 1.5%
}

.header-menu-item a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #FFF
}

.header-menu-cv-item {
    width: 25%;
    max-width: 266px
}

.header-menu-cv-item:last-of-type {
    padding-left: 10px
}

.header-menu-cv-item a {
    display: block;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
    padding: 7px 0;
    line-height: 1;
    font-weight: 600;
    color: #595757;
    background-color: #F8CD01
}

@media screen and (max-width: 1390px) {
    .header-copy {
        font-size:1vw
    }

    .header-menu-item a {
        font-size: 1vw
    }

    .header-menu-cv-item a {
        padding: .5vw 0;
        font-size: 1vw
    }
}

@media screen and (max-width: 1000px) {
    .page-sub .header {
        height:60px
    }
}

@media screen and (max-width: 768px) {
    .header {
        height:60px
    }
}

.menu-head-box {
    display: none;
    position: relative
}

.menu-head {
    width: 60px;
    height: 52px
}

.drawer-open-btn {
    position: absolute;
    top: 18px;
    right: 9px;
    width: 40px;
    height: 22px;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box
}

.drawer-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    transition: .5s all
}

.drawer-close-btn:hover,.drawer-close-btn:visited {
    transform: rotate(360deg);
    opacity: .8;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg)
}

.drawer-open-btn-item {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FFF;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box
}

.drawer-close-btn-item {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box
}

.drawer-close-btn-item:nth-of-type(1),.drawer-open-btn-item:nth-of-type(1) {
    top: 0
}

.drawer-open-btn-item:nth-of-type(2) {
    top: 9px
}

.drawer-close-btn-item:nth-of-type(2) {
    top: 20px
}

.drawer-close-btn-item:nth-of-type(3),.drawer-open-btn-item:nth-of-type(3) {
    bottom: 0
}

.drawer-close-btn-item:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg)
}

.drawer-close-btn-item:nth-of-type(2) {
    opacity: 0
}

.drawer-close-btn-item:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    bottom: 0
}

.drawer-btn {
    display: none
}

.drawer {
    display: none
}

.drawer-nav .cv-btn {
    text-decoration: none;
    line-height: 1.4;
    padding: 8px 0;
    font-size: 17px
}

.drawer-item {
    font-size: 17px;
    font-weight: 600;
    color: #FFF
}

.drawer-item a {
    display: block;
    margin-bottom: 6%;
    font-size: 17px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none
}

@media screen and (max-width: 1000px) {
    .header-menu-wrap {
        display:none
    }

    .menu-head-box {
        position: fixed;
        top: -5px;
        right: 0;
        display: block;
        width: 60px;
        height: 60px;
        z-index: 10
    }

    .drawer {
        position: fixed;
        overflow-y: scroll;
        top: 0;
        left: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        padding: 15% 5% 0;
        box-sizing: border-box;
        background-color: #000
    }

    .drawer {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 0.5s,visibility 0s 0.5s;
        transition: opacity 0.5s,visibility 0s 0.5s
    }

    .drawer.is-open {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
        background-color: #3C88D5
    }
}

@media screen and (max-width: 768px) {
    .header-logo {
        width:40%
    }

    .drawer {
        padding: 20% 10% 0
    }

    .menu-head-box {
        top: 0;
        background-color: rgba(60,136,213,1)
    }
}


.footer {
    background-color: #323436;
    font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic"
}

.footer-wrapper {
    width: 95%;
    margin: 0 auto;
    padding: 56px 0 64px
}

.footer-contact-logo {
    display: block;
    width: 65%;
    margin-bottom: 22px
}

.footer-contact-ttl {
    color: #808084;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px
}

.footer-contact-txt {
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    white-space: nowrap
}

.footer-contact-txt-phone {
    color: #fff
}

.footer-contact-txt-mail {
    color: #fff;
    display: inline-block;
    text-decoration: none
}

.footer-product-ttl {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px
}

.footer-product-list {
    display: flex;
    justify-content: space-between
}

.footer-product-list-item {
    width: 32.386%
}

.footer-menu {
    width: 100%;
    border-top: 1px solid #808084;
    margin-top: 41px;
    padding-top: 24px
}

.footer-menu-list-item {
    margin: 0 1.1%
}

.footer-menu-list-item-link {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

.footer-menu-copyright {
    font-size: 12px;
    color: #808084;
    text-align: center
}

@media screen and (min-width: 769px) {
    .footer-wrapper {
        max-width:1080px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap
    }

    .footer-contact {
        width: 31%;
        flex-shrink: 0
    }

    .footer-product {
        width: 65%
    }

    .footer-contact-txt-phone.is-pc {
        display: inline-block
    }

    .footer-menu-list {
        display: flex;
        justify-content: center
    }
}

@media screen and (max-width: 768px) {
    .footer-wrapper {
        width:87.2%;
        padding: 56px 0 40px
    }

    .footer-contact-logo {
        width: 43.425%;
        margin: 0 auto 28px
    }

    .footer-contact-ttl {
        text-align: center
    }

    .footer-contact-txt {
        text-align: center;
        margin-bottom: 32px
    }

    .footer-contact-txt-phone.is-sp {
        display: inline-block
    }

    .footer-product-ttl {
        text-align: center;
        margin-bottom: 16px
    }

    .footer-product-list {
        justify-content: center;
        flex-wrap: wrap
    }

    .footer-product-list-item {
        width: 47.706%;
        margin-bottom: 4.587%
    }

    .footer-product-list-item:nth-child(1) {
        margin-right: 4.587%
    }

    .footer-product-list-item:last-child {
        margin-bottom: 0
    }

    .footer-menu {
        padding: 0
    }

    .footer-menu-list {
        margin-bottom: 32px
    }

    .footer-menu-list-item {
        margin: 0;
        border-bottom: 1px solid #808084
    }

    .footer-menu-list-item-link {
        display: block;
        padding: 26px 0;
        position: relative
    }

    .footer-menu-list-item-link::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        background-image: url(../images/common/footer_menu_arrow.webp);
        width: 20px;
        height: 20px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%)
    }

    .footer-menu-copyright {
        text-align: right
    }
}


.cv-btn-list {
    display: flex;
    justify-content: center
}

.cv-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 50px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 600;
    border-radius: 25px;
    text-align: center;
    background-color: #F8CD01;
    box-sizing:content-box;
}

.drawer-nav .cv-btn:after {
    content: "";
    display: inline-block;
    background-image: url(https://procan.co.jp/assets/images/common/arrow_right.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 20px;
    height: 10px
}

@media screen and (max-width: 768px) {
    .cv-btn-list {
        flex-wrap:wrap
    }

    .cv-btn {
        margin: 0 0 4%
    }

    .drawer-nav .cv-btn {
        margin: 0 0 4%;
        max-width: none
    }
}

.back-yellow {
    background: linear-gradient(transparent 20%,#F8CD01 20%,#F8CD01 90%,transparent 90%)
}
@-webkit-keyframes fadeInAnime {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  20% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  20% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutAnime {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(40px);
    opacity: 0;
  }
}
@keyframes fadeOutAnime {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(40px);
    opacity: 0;
  }
}

/* ===================================
見出し（英語）
=================================== */
/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
.right-en {
  position: relative;
  overflow: hidden;
}
.right-en::before {
  font-size: 130px;
  position: absolute;
  right: -20px;
  top: 90px;
  font-family: "Roboto", Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
}

.left-en {
  position: relative;
  overflow: hidden;
}
.left-en::before {
  font-size: 130px;
  position: absolute;
  left: -10px;
  top: 90px;
  font-family: "Roboto", Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .right-en::before {
    font-size: 90px;
  }

  .left-en::before {
    font-size: 90px;
  }
}
@media screen and (max-width: 600px) {
  .right-en::before {
    font-size: 50px;
    top: 40px;
    right: -10px;
  }

  .left-en::before {
    font-size: 50px;
    top: 50px;
    left: -5px;
  }
}
/* ===================================
H2タイトル
=================================== */
/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
.border-ttl {
  font-weight: bold;
  font-size: 40px;
  position: relative;
  line-height: 1.4;
  padding-left: 33px;
  letter-spacing: 0.1em;
}
.border-ttl::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: #262b2c;
  left: 0;
  top: 8px;
}
.border-ttl .mini {
  font-size: 15px;
  display: block;
  margin-top: 13px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 600px) {
  .border-ttl {
    font-size: 25px;
    padding-left: 10px;
  }
  .border-ttl::before {
    width: 2px;
    height: 120%;
    top: -3px;
  }
  .border-ttl .mini {
    font-size: 11px;
    margin-top: 8px;
  }
}
/* ===================================
フッター
=================================== */
/* お問い合わせ
==============================　*/
/* 小カテゴリ、コメント */
.contactWrap {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  background-color: #F2F7FC;
  overflow: hidden;
}
.contactWrap::before {
  content: "";
  font-size: 130px;
  font-family: "Roboto", Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #E3EDF7;
  position: absolute;
  top: 10px;
  right: 50%;
  transform: translateX(50%);
  white-space: nowrap;
  letter-spacing: 0.11em;
}
.contactWrap .contact-ttl {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.contactWrap .contact-ttl .mini {
  display: block;
  font-size: 15px;
  margin-top: 0px;
  letter-spacing: 0.12em;
}
.contactWrap .btnwrap01 {
  margin-top: 57px;
}
.contactWrap .btnwrap01 .btnWrap + .btnWrap {
  margin-top: 20px;
}
.contactWrap .btnwrap01 .btnWrap a {
  display: block;
  font-weight: bold;
  padding: 15px 20px;
  position: relative;
  color: #fff;
  max-width: 530px;
  background-color: #21a8c9;
  z-index: 1;
  border: 2px solid #21a8c9;
  margin: 0 auto;
  font-size: 24px;
  padding: 18px 33px;
  border-radius: 5px;
}
.contactWrap .btnwrap01 .btnWrap a::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../img/common/arrow-white.png) no-repeat center/14px auto, #73cadf;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: right 0.3s;
  z-index: 1;
}
.contactWrap .btnwrap01 .btnWrap a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
  border-radius: 3px;
}
.contactWrap .btnwrap01 .btnWrap a:hover {
  color: #21a8c9;
  opacity: 1;
}
.contactWrap .btnwrap01 .btnWrap a:hover::after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.contactWrap .btnimg01 a:hover{
  transform-origin: 0% 50%;
}
.contactWrap .btnimg01 img{
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .contactWrap .btnwrap01 .btnWrap a:hover {
    color: #fff;
  }
  .contactWrap .btnwrap01 .btnWrap a::after {
    display: none;
  }
}
.contactWrap .btnwrap01 .btnWrap a::before {
  width: 40px;
  height: 40px;
  right: 30px;
  background-size: 20px auto;
}
.contactWrap .btnwrap02 {
  margin-top: 50px;
}
.contactWrap .btnwrap02 .contact-text {
  text-align: center;
}
.contactWrap .btnwrap02 .btnWrap {
  margin-top: 15px;
}
.contactWrap .btnwrap02 .btnWrap a {
  display: block;
  font-weight: bold;
  position: relative;
  color: #fff;
  max-width: 530px;
  background-color: #262b2c;
  z-index: 1;
  border: 2px solid #262b2c;
  margin: 0 auto;
  font-size: 24px;
  padding: 18px 33px;
  border-radius: 5px;
}
.contactWrap .btnwrap02 .btnWrap a::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../img/common/arrow-white.png) no-repeat center/14px auto, #5f6969;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: right 0.3s;
  z-index: 1;
}
.contactWrap .btnwrap02 .btnWrap a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
  border-radius: 3px;
}
.contactWrap .btnwrap02 .btnWrap a:hover {
  color: #262b2c;
  opacity: 1;
}
.contactWrap .btnwrap02 .btnWrap a:hover::after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
@media screen and (max-width: 1023px) {
  .contactWrap .btnwrap02 .btnWrap a:hover {
    color: #fff;
  }
  .contactWrap .btnwrap02 .btnWrap a::after {
    display: none;
  }
}
.contactWrap .btnwrap02 .btnWrap a::before {
  width: 40px;
  height: 40px;
  right: 30px;
  background-size: 20px auto;
}

@media screen and (max-width: 1023px) {
  .contactWrap::before {
    font-size: 100px;
  }
}
@media screen and (max-width: 600px) {
  .contactWrap {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .contactWrap::before {
    font-size: 50px;
    top: 15px;
  }
  .contactWrap .contact-ttl {
    font-size: 25px;
    line-height: 1.5;
  }
  .contactWrap .contact-ttl .mini {
    font-size: 11px;
  }
  .contactWrap .btnwrap01 {
    margin-top: 30px;
  }
  .contactWrap .btnwrap01 .btnWrap + .btnWrap {
    margin-top: 10px;
  }
  .contactWrap .btnwrap01 .btnWrap a {
    font-size: 16px;
    padding: 12px 15px;
  }
  .contactWrap .btnwrap01 .btnWrap a::before {
    width: 25px;
    height: 25px;
    right: 10px;
    background-size: 10px auto;
  }
  .contactWrap .btnwrap02 {
    margin-top: 35px;
  }
  .contactWrap .btnwrap02 .btnWrap {
    margin-top: 10px;
  }
  .contactWrap .btnwrap02 .btnWrap a {
    font-size: 16px;
    padding: 12px 15px;
  }
  .contactWrap .btnwrap02 .btnWrap a::before {
    width: 25px;
    height: 25px;
    right: 10px;
    background-size: 10px auto;
  }
}
/* サイトマップ
==============================　*/

/* ===================================
ブログ部分
=================================== */
/* 
==============================　*/
.secBlog {
  padding-top: 111px;
  padding-bottom: 138px;
background: #F2F5F5;
    
}
.secBlog::before {
  content: "MAGAZINE";
  color: #E6EBEB;
}
.secBlog .secBlog-box01{
    background: #FFFFFF;
    padding: 1px 50px 60px 50px;
    margin-top: 80px;
}

.btnCenter a{
    margin: 0 auto;
}

.secBlog .logo03_img{
    overflow: hidden;
    font-size: 0;
}


.secBlog .bl-moreBtn {
  text-align: center;
  margin-top: 55px;
}
.secBlog .bl-moreBtn a {
  display: inline-block;
  padding-top: 80px;
  position: relative;
}
.secBlog .bl-moreBtn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  background: url(../img/common/arrow-white.png) no-repeat center/19px 17px, #262b2c;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-radius: 50%;
  transition: background 0.3s;
  box-sizing: border-box;
}
.secBlog .bl-moreBtn a:hover::before {
  background: url(../img/common/arrow-black.png) no-repeat center/19px 17px, #fff;
}
@media screen and (max-width: 1023px) {
  .secBlog .bl-moreBtn a:hover::before {
    background: url(../img/common/arrow-white.png) no-repeat center/19px 17px, #262b2c;
  }

}
@media screen and (max-width: 600px) {
  .secBlog .bl-moreBtn a {
    padding-top: 71px;
  }
  .secBlog .bl-moreBtn a::before {
    width: 71px;
    height: 71px;
  }
.secBlog .secBlog-box01{
    background: #FFFFFF;
    padding: 1px 20px 30px 20px;
    margin-top: 30px;
}
}
.secBlog .bl-moreBtn a::before {
  border: 2px solid #262b2c;
}

.sec_inner__secBlog {
  
}



.secBlog-text02 {
  margin-top: 50px;
}

.bloglistWrap {
  display: flex;
  flex-wrap: wrap;
}

.bloglist {
  border-bottom: 1px solid #e6ebeb;
  margin: 0 30px;
  width: calc((100% - 120px) / 2);
  position: relative;
}
.bloglist::after, .bloglist::before {
  content: "";
  display: inline-block;
  height: calc(100% - 60px);
  width: 1px;
  background-color: #e6ebeb;
  position: absolute;
  top: 30px;
}
.bloglist::before {
  left: -30px;
}
.bloglist::after {
  right: -30px;
}
.bloglist:nth-child(even)::before {
  display: none;
}
.bloglist:nth-child(1)::before, .bloglist:nth-child(1)::after, .bloglist:nth-child(2)::before, .bloglist:nth-child(2)::after {
  top: 0;
  height: calc(100% - 30px);
}
.bloglist:nth-child(n+3) a {
  padding-top: 30px;
}
.bloglist a {
  display: block;
  padding: 0px 0 30px;
  line-height: 1.6;
}

.blog_img {
  width: 100%;
  overflow: hidden;
  height: 0;
  padding-top: 61.8%;
  position: relative;
}
.blog_img img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  transition: 0.3s;
  position: absolute;
  top: 0;
}

a:hover .blog_img img {
  transform: scale(1.1);
}

.blog_cat {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  line-height: 2;
  padding-bottom: 5px;
}
.blog_cat span {
  display: inline-block;
  margin: 0 5px 5px 0;
  min-width: 78px;
  text-align: center;
  border: 1px solid #262b2c;
  border-radius: 15px;
  padding: 2px 11px;
  white-space: nowrap;
}

.blog_ttl {
  font-weight: bold;
  padding-bottom: 1px;
  border-bottom: 1px solid #000;
  display: inline;
}

.blog_date {
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

.bl-moreBtn__secBlog {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .secBlog {
    padding-bottom: 70px;
  }

  .sec_inner__secBlog {
    display: block;
  }
  .sec_inner__secBlog .left {
    width: 100%;
  }
  .sec_inner__secBlog .left .bl-moreBtn {
    display: none;
  }
  .sec_inner__secBlog .right {
    margin-top: 50px;
    width: 100%;
  }

  .secBlog-text02 br {
    display: none;
  }

  .bl-moreBtn__secBlog {
    display: block !important;
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .secBlog {
    padding-top: 95px;
  }
  .secBlog .bl-moreBtn {
    margin-top: 30px;
  }
  .secBlog.left-en::before {
    top: 70px;
  }

  .secBlog-text02 {
    margin-top: 30px;
  }

  .sec_inner__secBlog .right {
    margin-top: 20px;
  }

  .bloglistWrap {
    margin: 0 0px;
  }

  .bloglist {
    margin: 0 5px;
    width: calc((100% - 20px) / 2);
  }
  .bloglist::after {
    right: -5px;
    top: 0;
    height: calc(100% - 15px) !important;
  }
  .bloglist::before {
    left: -5px;
    top: 0;
    height: calc(100% - 15px) !important;
  }
  .bloglist:nth-child(n+3) a {
    padding-top: 15px;
  }
  .bloglist:nth-child(n+3)::after {
    top: 15px;
    height: calc(100% - 30px) !important;
  }
  .bloglist:nth-child(n+3)::before {
    top: 15px;
    height: calc(100% - 30px) !important;
  }
  .bloglist a {
    line-height: 1.8;
  }
  .blog_cat {
    padding-bottom: 0px;
    margin-top: 5px;
  }
  .blog_cat span {
    font-size: 10px;
    min-width: 53px;
  }

  .blog_ttl {
    font-size: 12px;
  }

  .blog_date {
    font-size: 10px;
    margin-top: 7px;
  }
}
/* リンクボックス
==============================　*/
.bl-linkBox {
  position: relative;
  margin-top: 20px;
}
.bl-linkBox::after {
  content: "READ MORE";
  font-size: 14px;
  position: absolute;
  right: 42px;
  bottom: 30px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.bl-linkBox-first {
  margin-top: 33px;
}

.bl-linkBox a {
  display: block;
  padding: 40px 150px 30px 40px;
  position: relative;
}
.bl-linkBox a::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  background: url(../img/common/arrow-white.png) no-repeat center/19px 17px, #5f6969;
  right: 46px;
  bottom: 63px;
  border-radius: 50%;
  transition: background 0.3s;
}
.bl-linkBox a:hover::before {
  background: url(../img/common/arrow-gray.png) no-repeat center/19px 17px, #fff;
}

.bl-linkBpx-ttl {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  line-height: 1.2;
  padding-left: 16px;
  padding-top: 8px;
}
.bl-linkBpx-ttl::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 110%;
  width: 2px;
  background-color: #fff;
  top: 0;
  left: 0;
}
.bl-linkBpx-ttl .mini {
  font-size: 14px;
  display: block;
  margin-top: 11px;
}

.bl-linkBox-text {
  margin-top: 40px;
}

.bl-linkBox__black {
  color: #fff;
}
.bl-linkBox__black a {
  min-height: 335px;
  background: url(../img/top/sec03-ilust.png) no-repeat right 163px top 58px/467px auto, #262b2c;
}
@media screen and (min-width: 1024px) {
  .bl-linkBox__black a:hover {
    background: url(../img/top/sec03-ilust.png) no-repeat right 163px top 58px/467px auto, #404546;
  }
}

.bl-linkBox__gray {
  color: #fff;
}
.bl-linkBox__gray a {
  background-color: #5f6969;
}
.bl-linkBox__gray a::before {
  background: url(../img/common/arrow-white.png) no-repeat center/19px 17px, #262b2c;
}
@media screen and (min-width: 1024px) {
  .bl-linkBox__gray a:hover {
    background-color: #798383;
  }
  .bl-linkBox__gray a:hover::before {
    background: url(../img/common/arrow-black.png) no-repeat center/19px 17px, #fff;
  }
}

@media screen and (max-width: 1023px) {
  .bl-linkBox__black a {
    min-height: 315px;
    background: url(../img/top/sec03-ilust.png) no-repeat right 23px top 38px/310px auto, #262b2c;
  }
}
@media screen and (max-width: 600px) {
  .bl-linkBox {
    padding: 0 15px;
  }
  .bl-linkBox::after {
    display: none;
  }

  .bl-linkBpx-ttl {
    font-size: 16px;
    padding-left: 10px;
  }
  .bl-linkBpx-ttl::before {
    height: 100%;
    top: 5px;
  }
  .bl-linkBpx-ttl .mini {
    font-size: 10px;
    margin-top: 5px;
  }

  .bl-linkBox-text {
    font-size: 11px;
    margin-top: 12px;
    line-height: 1.5;
  }

  .sec03-text02 {
    font-size: 11px;
    margin-top: 2px;
  }

  .bl-linkBox {
    margin-top: 15px;
  }
  .bl-linkBox a {
    padding: 15px 70px 20px 20px;
  }
  .bl-linkBox a::before {
    width: 40px;
    height: 40px;
    top: 40px;
    right: 20px;
    background-size: 10px auto !important;
  }

  .bl-linkBox__black a {
    min-height: auto;
    background: url(../img/top/sec03-ilust.png) no-repeat bottom 20px center/265px auto, #262b2c;
    padding-bottom: 180px;
  }

  .bl-linkBox-first {
    margin-top: 20px;
  }
}
/* ===================================
サービスページFV部分
=================================== */
/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
.sec_serviceFv {
  padding-top: 260px;
  padding-bottom: 115px;
  background-position: right 30% center;
}
.sec_serviceFv .border-ttl {
  color: #21a8c9;
}
.sec_serviceFv .fvtextBox {
  padding-left: 40px;
  margin-top: 45px;
}
.sec_serviceFv .fvtextBox_text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
.sec_serviceFv .fvtextBox_text02 {
  margin-top: 15px;
  max-width: 290px;
  line-height: 1.7;
  font-size: 14px;
}

@media screen and (max-width: 1200px) {
  .sec_serviceFv {
    background-size: 60% auto;
  }
}
@media screen and (max-width: 1024px) {
  .sec_serviceFv {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .sec_serviceFv .fvtextBox {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_serviceFv {
    padding-top: 345px;
  }
  .sec_serviceFv .border-ttl::before {
    height: 100%;
    top: 4px;
  }
  .sec_serviceFv .border-ttl .mini {
    margin-top: 5px;
  }
  .sec_serviceFv .fvtextBox {
    margin-top: 30px;
  }
  .sec_serviceFv .fvtextBox_text {
    font-size: 16px;
  }
  .sec_serviceFv .fvtextBox_text02 {
    font-size: 12px;
    max-width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .sec_serviceFv {
    padding-top: 345px;
  }
}
@media screen and (max-width: 374px) {
  .sec_serviceFv .border-ttl {
    font-size: 23px;
  }
}
/* ===================================
コンタクトセクション
=================================== */
/* 
==============================　*/
.contactArea {
  display: block;
  background-color: #21a8c9;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin: 60px auto;
  padding: 30px 0;
  border-radius: 5px;
}
.contactArea .contact_inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.contactArea .contact-ttl {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0em;
}
.contactArea .contact-text {
  margin-top: 15px;
  letter-spacing: 0em;
  line-height: 1.6;
}
.contactArea .bl-moreBtn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 5%;
}
.contactArea .bl-moreBtn span {
  display: inline-block;
  padding-top: 80px;
  position: relative;
}
.contactArea .bl-moreBtn span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  background: url(../img/common/arrow-white.png) no-repeat center/19px 17px, #73cadf;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border-radius: 50%;
  transition: background 0.3s;
  box-sizing: border-box;
}
.contactArea:hover {
  background-color: #3bc2e3;
}
.contactArea:hover .bl-moreBtn span::before {
  background: url(../img/common/arrow-blue.png) no-repeat center/19px 17px, #fff;
}

@media screen and (max-width: 767px) {
  .contactArea {
    text-align: left;
    padding: 18px 0;
  }
  .contactArea .contact_inner {
    padding-left: 30px;
  }
  .contactArea .contact-ttl {
    font-size: 21px;
  }
  .contactArea .contact-text {
    margin-top: 0px;
  }
  .contactArea .bl-moreBtn span::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 374px) {
  .contactArea .bl-moreBtn span::before {
    width: 40px;
    height: 40px;
  }
}
/* ===================================
大カテゴリ
=================================== */
/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
/* ===================================
Utility
=================================== */
/* テキスト
==============================　*/
.bold {
  font-weight: bold;
}


/* 改行
==============================　*/
/*任意の位置で改行させる*/
.ib {
  display: inline-block;
}

/*PCのみ*/
.pc-br {
  display: inline;
}

/*TBのみ*/
.tb-br {
  display: none;
}

/*PC〜TBにかけて*/
.pc-tb-br {
  display: inline;
}

/*TB〜SPにかけて*/
.tb-sp-br {
  display: none;
}

/*SPのみ*/
.sp-br {
  display: none;
}

/*iphoneSE用*/
.se-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }

  .tb-br {
    display: inline;
  }

  .tb-sp-br {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .pc-tb-br {
    display: none;
  }

  .tb-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }
}
@media screen and (max-width: 374px) {
  .se-br {
    display: inline;
  }
}

/* 準備中
==============================　*/
.ready_txt {
  padding: 16px;
  margin: 16px;
  color: #666
}
.ready_btn {
  position: relative;
  pointer-events: none;
}
.ready_btn > span::before {
  content: "coming soon...";
  color: #FFF;
  background-color: #666;
  padding: 2px 8px;
  position: absolute;
  top: -16px;
  left: 16px;
  font-size: 12px;
  border-radius: 5px;
  z-index: 3;
}
.ready_btn > span:after{
  content: "";
  position: absolute;
  left: 32px;
  top: 10px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #666 transparent transparent transparent;
  border-width: 10px 7px 0 7px;
  z-index: 2;
}
.nolink {
    color: #333;
    cursor: default;
    line-height: 60px;
    display: block;
}
@media screen and (max-width: 1023px) {
  .hamburger_contents li a.nolink{
    background: none;
  }
}