/* トップページ */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
  visibility: hidden;
}

body {
  overflow-x: hidden;
  background-color: #F7F7F7;
}
/* 共通パーツのCSS */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.active .scroll-fade-side,
.active .scroll-fade-up {
  position: relative;
  z-index: -100;
}

/* ヘッダー*/
header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  position: fixed;
  width: 5vw;
  height: 100vh;
  background-color: #fff;
  padding: 20px 10px;
  border-right: 0.5px solid rgb(224, 224, 224);
}

.site-ttl {
  font-size: 10px;
  text-align: center;
  line-height: 1;
}

.site-ttl a {
  display: block;
  width: 60px;
  height: 60px;
}

header .site-ttl img {
  width: 100%;
  height: 100%;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 30px;
  z-index: 10000;
}

.hamburger-bar {
  position: absolute;
  display: block;
  background-color: #000;
  width: 100%;
  height: 2px;
  transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
  z-index: 10000;
}

.hamburger-bar:nth-of-type(1) {
  top: 0%;
}
.hamburger-bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-bar:nth-of-type(3) {
  bottom: 0%;
}

.sns {
  width: 30px;
  height: 30px;
}

.sns a {
  display: block;
  width: 100%;
  height: 30px;
}

.sns img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダー終了 */

/* ドロワーメニュー */
.active .hamburger-bar {
  background-color: #000;
  z-index: 200;
}

.active .hamburger-bar:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.active .hamburger-bar:nth-of-type(2) {
  width: 0;
}
.active .hamburger-bar:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}

#nav-content {
  position: fixed;
  z-index: 1000;
  overflow: auto;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  color: #000;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .6s ease;
  margin-left: 5vw;
  z-index: -100;
  visibility: hidden;
}

#nav-content a {
  display: block;
  color: #fff;
  transition: opacity .6s ease;
  pointer-events: unset;
  visibility: hidden;
}

#nav-content a:hover {
  text-decoration: underline;
}

.active {
  overflow: hidden;
}

.active #nav-content {
  z-index: 1000;
  visibility: visible;
  opacity: 1;
  margin-left: 5vw;
}

.active #nav-content a {
  pointer-events: auto;
  visibility: visible;
}

.inner-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 90%;
  padding: 200px 100px;
}

.inner-list {
  position: relative;
  border-right: 1px solid #707070;
  padding-right: 40px;
  height: 100%;
}
.inner-list:last-of-type {
  border-right: none;
}

.inner-list h2 {
  color: #fff;
}

.inner-item {
  margin: 20px 0;
}

.inner-list .inner-item a {
  color: #fff;
}
.inner-list .inner-item a:hover {
  text-decoration: underline;
}

.inner-item2 a {
  color: #bababa !important;
  padding-left: 20px;
}
/* ドロワーメニュー終了 */

main {
  width: 95vw;
  margin-left: auto;
}

.mv {
  position: relative;
  width: 100%;
  background-color: #F7F7F7;
  z-index: 100;
}

.active .mv {
  z-index: -100;
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
}
  
.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(115, 115, 115, 0.1);
  overflow: hidden;
}

.line::after {
  content: '';
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(215, 215, 215, 0) 0%, rgb(180, 180, 180) 75%, rgb(130, 130, 130) 100%);
  animation: drop 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
  
.line:nth-child(1) {
  margin-left: -25%;
}
.line:nth-chile(1)::after {
  animation-delay: 1s;
}

.line:nth-child(3) {
  margin-left: 25%;
}
.line:nth-child(3) {
  animation-delay: 1s;
}
  
    
@keyframes drop {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.mv-bg-ttl {
  position: relative;
  text-align: center;
  font-size: 12vw;
  font-weight: bold;
  color: #E2E2E2;
  z-index: 100;
}

.mv-catch {
  position: relative;
  font-size: 46px;
  z-index: 10;
}

.mv-contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  z-index: 10;
}

.mv-contact-wrapper {
  display: flex;
  flex-direction: column;
  width: 47%;
  height: auto;
  box-shadow: 10px 10px 20px 0px rgb(224, 224, 224);
  margin-top: 40px;
  padding: 20px 40px;
}

.mv-contact-left {
  background-color: #fff;
}

.mv-contact-right {
  background-image: linear-gradient(135deg, #324A7D 0%, #042562 100%);
}

.mv-contact-box {
  display: flex;
  flex-direction: column;
}

.mv-contact-box h3 {
  text-align: center;
  margin: 10px 0;
}

.mv-contact-right h3,
.mv-contact-right p {
  color: #fff;
}

.contact-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  text-align: center;
  line-height: 60px;
  margin: 20px 0;
  font-size: 16px;
  font-weight: bold;
  font-family: "Font Awesome 6 Free";
  transition: .3s;
  z-index: 10;
}

.active .contact-btn {
  z-index: -100;
}

.btn-left {
  background-image: linear-gradient(135deg, #455a88 0%, #042562 100%);
  color: #fff;
}
.btn-left::after {
  position: absolute;
  content: "\f35a";
  top: 0;
  bottom: 0;
  right: 30px;
}
.btn-left:hover {
  background-image: unset;
  background-color: #fff;
  border: 2px solid #042562;
  color: #000;
}

.btn-right {
  background-color: #fff;
}
.btn-right::after {
  position: absolute;
  content: "\f35a";
  top: 0;
  bottom: 0;
  right: 30px;
  color: #042562;
}
.btn-right:hover {
  border: solid 2px #fff;
  background-color: unset;
  color: #fff;
}
.btn-right:hover::after {
  color: #fff;
}

.mv-news {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 70%;
  height: 60px;
  margin: 40px 0 0 auto;
  padding: 10px 40px;
  z-index: 10;
  overflow: hidden;
}

.mv-news a {
  display: flex;
  align-items: center;
  color: #353535;
  transition: all .3s ease;
}
.mv-news a:hover {
  color: #1c86ff;
}

.mv-news .news-date {
  margin-right: 30px;
}

section {
  padding: 100px 0;
}

.sec-sub-ttl {
  color: #5C95BC;
  font-size: 20px;
}

.sec-ttl {
  margin: 10px 0;
}

.active .about {
  position: relative;
  z-index: -10000;
}

.about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-left {
  width: 50%;
}

.about-right {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 45%;
}
.about-right::after {
  position: absolute;
  content: "";
  background: url(../img/logo-rotate.png) no-repeat center center/contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.about-right-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  width: calc(50% - 20px);
  min-height: 180px;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}
.about-right-box:nth-of-type(1),
.about-right-box:nth-of-type(2) {
  margin-top: 0;
}

.ab-box1 {
  background-color: #175390;
}
.ab-box2 {
  background-color: #2D709F;
}
.ab-box3 {
  background-color: #5C95BC;
}
.ab-box4 {
  background-color: #042562;
}

.about-right-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hp-service {
  padding-top: 0;
}

.active .hp-service {
  position: relative;
  z-index: -10000;
}

.hp-service .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hp-service-wrapper {
  position: relative;
  width: calc(50% - 15px);
  height: 260px;
  overflow: hidden;
  margin-top: 30px;
}
.hp-service-wrapper:nth-of-type(1),
.hp-service-wrapper:nth-of-type(2) {
  margin-top: 0;
}
.hp-service-wrapper::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #fff;
}
.hp-service-wrapper:hover .hp-service-box::after {
  background-color: rgba(4, 37, 98, 0.9);
}

.hp-service-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 130px 20px 30px;
  transition: all .4s ease;
}
.hp-service-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.6);
  transition: all .3s ease;
}

.hp-service-box1 {
  background: url(../img/corporate-devide.jpg) no-repeat center center/cover;
}
.hp-service-box2 {
  background: url(../img/top-recruit-bg.jpg) no-repeat center center/cover;
}
.hp-service-box3 {
  background: url(../img/ec-bg.jpg) no-repeat center center/cover;
}
.hp-service-box4 {
  background: url(../img/top-lp-bg.jpg) no-repeat center center/cover;
}

.hp-service-box h3,
.hp-service-box h2 {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-service-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.hp-service-box p {
  position: relative;
  visibility: hidden;
  color: #fff;
  padding: 20px;
  z-index: 10;
}

.hp-service-wrapper:hover .hp-service-box {
  padding: 30px 20px;
}

.hp-service-wrapper:hover .hp-service-box p {
  transition: all .4s ease;
  visibility: unset;
}

.worry {
  position: relative;
  background-image: linear-gradient(135deg, #324A7D 30%, #042562 100%);
}

.active .worry {
  z-index: -1000;
}

.worry .sec-sub-ttl,
.worry .sec-ttl {
  text-align: center;
}

.worry .sec-ttl {
  color: #fff;
}

.worry-list-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
}

.worry-item {
  position: relative;
  width: calc(25%);
  height: 200px;
}
.worry-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-color: #2D709F;
  box-shadow: 5px 5px 10px 0px rgb(32, 32, 32);
  transition: all .3s ease;
}
.worry-item:hover::before {
  top: 53%;
  transition: all .4s ease;
}

.worry-item:nth-of-type(4),
.worry-item:nth-of-type(8) {
  margin-right: 0;
}

.worry-item:nth-of-type(5),
.worry-item:nth-of-type(6),
.worry-item:nth-of-type(7),
.worry-item:nth-of-type(8) {
  margin-top: 40px;
}

.worry-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  width: 200px;
  height: 200px;
  color: #fff;
  margin: 0 auto;
}

.worry-item img {
  position: relative;
  width: 60px;
  height: 60px;
}

.worry-item p {
  text-align: center;
  margin-top: 20px;
  white-space: nowrap;
}

.sec-desc {
  font-size: 20px;
  line-height: 1.8;
}

.service-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30%;
  text-align: center;
  box-shadow: 10px 10px 20px 0px rgb(224, 224, 224);
  padding: 20px;
}

.service-ttl {
  background-image: linear-gradient(135deg, #455a88 10%, #042562 60%);
  color: #fff;
  height: 40px;
  line-height: 40px;
  margin: -20px -20px 0 -20px;
}

.service-item img {
  width: 100px;
  margin: 20px auto;
}

.service-item-desc {
  text-align: left;
}

.service-btn {
  position: relative;
  color: #042562;
  font-weight: bold;
  margin-top: 20px;
  padding-right: 40px;
  text-align: right;
}
.service-btn::after {
  position: absolute;
  content: "\f35a";
  font-family: Font Awesome\ 5 Free;
  top: 0;
  bottom: 0;
  right: 10px;
}

.active .service-btn {
  z-index: -100;
}

.service-btn a:hover {
  color: #5C95BC;
}

.reason {
  background-color: #455a88;
  background-image: linear-gradient(135deg, #455a88 0%, #042562 100%);
  padding: 80px 0 0;
}

.reason .sec-sub-ttl,
.reason .sec-ttl {
  text-align: center;
}

.reason .sec-ttl {
  color: #fff;
}

.reason-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 60px 0;
}

.reason-item {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 5px 5px 20px rgb(226, 226, 226);
  padding: 20px 30px;
  margin-bottom: -80px;
  width: calc(100% / 3);
  transition: all .3s ease;
}

.reason-item:hover {
  top: 8px;
  transition: all .3s ease;
  box-shadow: unset;
}

.reason-item:hover .service-btn {
  color: #5C95BC;
}

.reason-no {
  color: #B9B9B9;
  font-size: 60px;
  text-align: center;
  margin: -70px auto 0;
  width: fit-content;
}

.reason-item-ttl {
  text-align: center;
  margin: 0 0 20px 0;
}

.reason-item-desc {
  flex-grow: 1;
}

.post {
  padding-top: 120px;
}

.post .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.column-container,
.news-container {
  position: relative;
  border-top: 1px solid #a1a1a1;
  padding-top: 20px;
}
.column-container::before,
.news-container::before {
  position: absolute;
  content: "";
  top: -1px;
  border-top: 2px solid #042562;
  width: 100px;
}

.active .column-container,
.active .news-container {
  z-index: -100;
}

.column-container .sec-ttl,
.news-container .sec-ttl {
  margin-bottom: 20px;
}

.column-container {
  width: 70%;
  margin-right: 80px;
}

.column-bg-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 40px;
}
.column-bg-wrapper:last-of-type {
  margin-bottom: 0;
}

.column-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 240px;
  background: url(../img/column1.jpg) no-repeat center center/cover;
  padding: 30px 50px;
}
.column-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.5);
  z-index: 1;
  transition: .3s;
}
.column-wrapper:hover::before {
  background-color: rgba(4, 37, 98, 0.7);
}

.column-ttl,
.column-text {
  position: relative;
  color: #fff;
  z-index: 100;
}

.column-text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #fff;
}

.news-container {
  width: 30%;
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  border-bottom: 1px solid #455A88;
  padding: 20px 0;
}

.news-img img {
  width: 150px;
  height: auto;
  object-fit: cover;
  margin-right: 20px;
}

.news-text-box .news-wrap-ttl {
  width: 100%;
  font-size: 14px;
  text-align: left;
}

.news-text-box .news-wrap-date {
  font-size: 12px;
  font-weight: bold;
  color: #455A88;
  margin-top: 5px;
}

.news-container .service-btn {
  margin-top: 30px;
}

.other {
  position: relative;
  margin-top: 160px;
}
.other::after {
  position: absolute;
  content: "";
  background-color: #D4E8F2;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: -10;
}

.other .sec-sub-ttl,
.other .sec-ttl,
.other .sec-desc {
  text-align: center;
}

.other-service-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 30px;
}

.other-service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.other-service-wrapper a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: calc(100% / 3);
  height: 100%;
  padding: 40px 30px;
}
.other-service-wrapper a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.7);
  transition: all .3s ease-out;
}
.other-service-wrapper a:hover::after {
  background-color: rgba(4, 37, 98, 0.9);
}

.active .other-service-wrapper a {
  z-index: -100;
}

.other-service-shindan {
  background: url(../img/shindan.jpg) no-repeat center center/cover;
}
.other-service-seo {
  background: url(../img/checksheet.jpg) no-repeat center center/cover;
}
.other-service-web {
  background: url(../img/web-column.jpg) no-repeat center center/cover;
}

.other-service-ttl,
.other-service-desc,
.other-service-wrapper img {
  position: relative;
  z-index: 100;
  color: #fff;
}

.other-service-ttl {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.other-service-btn {
  text-align: right;
}

.other-service-wrapper img {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  margin-top: 20px;
  padding: 15px;
}

.faq {
  padding: 0;
}

.faq .sec-sub-ttl,
.faq .sec-ttl {
  text-align: center;
}

.top-faq-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.faq-box {
  border: solid 1px #D0D0D0;
  background-color: #fff;
  width: 47%;
  min-height: 240px;
  margin-top: 30px;
}

.faq-head {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #526993;
  padding: 0 20px;
}

.faq-head p {
  color: #7184A5;
  font-size: 46px;
  font-weight: bold;
}

.faq-head h4 {
  color: #fff;
  margin-left: 10px;
}

.faq-desc {
  padding: 20px;
}

.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #042562;
  width: 80%;
}

.contact .contact-left {
  background-image: linear-gradient(135deg, #455a88 0%, #042562 100%);
  width: 50%;
  padding: 40px;
}

.contact .contact-left .sec-ttl {
  color: #fff;
}

.contact .contact-right {
  width: 50%;
  text-align: center;
}

.contact-right-text {
  font-size: 24px;
  font-weight: bold;
}

.contact .contact-right .contact-btn {
  width: 80%;
  margin: 20px auto 0;
}

footer {
  position: relative;
  background-color: #0e2247;
  padding: 30px 0 40px;
  color: #fff;
  width: 95vw;
  margin-left: auto;
}

.active footer {
  z-index: -100;
}

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

.footer-ttl a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100px;
}

.footer-ttl img {
  display: inline-block;
  /* width: 80px; */
  height: 80px;
  margin-right: 30px;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: start;
  /* height: 300px; */
}

.footer-list {
  border-right: 1px solid #707070;
  padding-right: 40px;
  height: 100%;
}
.footer-list:last-of-type {
  border-right: none;
}

.footer-list h2 {
  font-size: 24px;
}

.footer-item {
  margin: 20px 0;
}

.footer-list .footer-item a {
  color: #fff;
}
.footer-list .footer-item a:hover {
  text-decoration: underline;
}

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

  .pc-only {
    display: none !important;
    visibility: hidden;
  }
  
  .sp-only {
    display: block;
    visibility: unset;
  }

  body {
    overflow-x: hidden;
  }
  /* ヘッダー*/
  header {
    display: flex;
    flex-direction: row;
    position: fixed;
    width: 100vw;
    height: 8vh;
    padding: 10px;
    border-right: unset;
    background: #fff;
    z-index: 10000;
  }
  
  .site-ttl {
    font-size: 10px;
    text-align: center;
  }

  .site-ttl a {
    width: 30px;
    height: 30px;
  }
  
  .hamburger {
    width: 30px;
    height: 20px;
  }
  /* ヘッダー終了 */
  
  /* ドロワーメニュー */
  .active .hamburger-bar {
    background-color: #fff;
  }
  
  #nav-content a {
    display: block;
    color: #fff;
    transition: opacity .6s ease;
    pointer-events: unset;
    visibility: hidden;
  }
  
  #nav-content a:hover {
    text-decoration: underline;
  }
  
  .active {
    overflow: hidden;
  }
  
  .active #nav-content {
    z-index: 1000;
    visibility: visible;
    opacity: 1;
    margin-left: 0;
  }
  
  .inner-menu {
    display: block;
    height: unset;
    width: 100%;
    padding: 40px;
  }
  
  .inner-list {
    position: relative;
    border-right: unset;
    padding-right: 0;
    height: max-content;
    margin-bottom: 40px;
  }
  .inner-list:last-of-type {
    border-right: none;
  }
  
  .inner-list h2 {
    font-size: 20px;
  }
  
  .inner-item {
    margin: 20px 0;
  }
  /* ドロワーメニュー終了 */
  
  main {
    margin: 0 auto;
    padding-top: 5vh;
    width: 100vw;
    overflow-x: hidden;
  }
  
  .container {
    width: 90%;
  }
  
  .mv-bg-ttl {
    font-size: 13vw;
  }
  
  .mv-catch {
    font-size: 26px;
  }
  
  .mv-contact {
    display: block;
  }
  
  .mv-contact-wrapper {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 10px 20px;
  }
  
  .mv-contact-box {
    display: block;
  }
  
  .mv-contact-box h3 {
    margin: 10px 0;
    font-size: 20px;
  }

  .contact-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: bold;
    font-family: "Font Awesome 6 Free";
    transition: .3s;
    z-index: 10;
  }
  
  .mv-news {
    width: 90%;
    height: 60px;
    margin: 40px 0 0 auto;
    padding: 10px 20px;
    overflow: hidden;
  }
  
  section {
    padding: 60px 0;
  }
  
  .sec-sub-ttl {
    font-size: 16px;
  }
  
  .sec-ttl {
    margin: 10px 0;
    font-size: 24px;
  }

  .about .container {
    display: block;
  }
  
  .about-left {
    width: 100%;
    margin-bottom: 30px;
  }

  .about-left .sec-desc {
    font-size: 16px;
  }
  
  .about-right {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .about-right::after {
    width: 100px;
    height: 100px;
  }
  
  .about-right-box {
    width: 50%;
    min-height: 140px;
    padding: 20px 10px;
    margin-top: 0;
  }
  
  .about-right-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-right-box p {
    font-size: 12px;
  }

  .hp-service {
    padding-bottom: 0;
  }
  
  .hp-service .container {
    display: block;
    width: 100%;
  }
  
  .hp-service-wrapper {
    position: relative;
    width: 50%;
    height: 120px;
    overflow: hidden;
  }
  
  .hp-service-box {
    padding: 20px 10px 10px;
    transition: all .4s ease;
  }
  
  .hp-service-box h3 {
    font-size: 18px;
  }

  .hp-service-box h2 {
    font-size: 24px;
  }
  
  .hp-service-box p {
    position: relative;
    visibility: unset;
    color: #fff;
    padding: 20px;
    z-index: 10;
  }
  
  .worry-list-wrapper {
    width: 100%;
    margin-top: 40px;
  }
  
  .worry-item {
    width: 150px;
    height: 150px;
    margin-top: 30px;
  }
  .worry-item::before {
    width: 150px;
    height: 150px;
    border-radius: 150px;
  }
  
  .worry-item:nth-of-type(4),
  .worry-item:nth-of-type(8) {
    margin-right: 0;
  }
  
  .worry-item:nth-of-type(5),
  .worry-item:nth-of-type(6),
  .worry-item:nth-of-type(7),
  .worry-item:nth-of-type(8) {
    margin-top: 30px;
  }
  
  .worry-item:nth-of-type(1),
  .worry-item:nth-of-type(2) {
    margin-top: 0;
  }

  .worry-item a {
    border-radius: 150px;
    width: 150px;
    height: 150px;
    margin: 0px auto 0 0;
  }
  
  .worry-item p {
    margin-top: 20px;
    white-space: nowrap;
    font-size: 14px;
  }
  
  .sec-desc {
    font-size: 18px;
  }
  
  .service-list {
    display: block;
    margin-top: 20px;
    /* height: 400px; */
  }
  
  .service-item {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 30px;
  }
  
  .service-ttl {
    height: 40px;
    margin: -10px -10px 0 -10px;
  }
  
  .service-item img {
    width: 100px;
    height: 100px;
    margin: 20px auto;
  }
  
  .service-btn {
    margin-top: 20px;
    padding-right: 40px;
  }
  
  .reason {
    padding: 80px 0 0;
  }
  
  .reason-list {
    display: block;
    margin: 30px 0;
    padding-bottom: 40px;
  }
  
  .reason-item {
    padding: 20px 30px;
    margin: 40px 0 0px;
    width: 100%;
  }
  
  .reason-no {
    font-size: 60px;
  }
  
  .post {
    padding-top: 60px;
  }
  
  .post .container {
    display: block;
  }

  .column-container {
    width: 100%;
  }

  .post .sec-ttl {
    font-size: 20px;
  }
  
  .column-wrapper {
    padding: 20px;
  }

  .column-ttl {
    font-size: 16px;
  }
  
  .column-ttl,
  .column-text {
    position: relative;
    color: #fff;
    z-index: 100;
  }
  
  .column-text {
    margin-top: 20px;
    padding-top: 20px;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .news-container {
    width: 100%;
    margin-top: 80px;
  }
  
  .news-wrapper {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .news-wrapper:last-of-type {
    margin-bottom: 0;
  }
  
  .other {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .other-service-container {
    display: block;
    margin-top: 30px;
  }
  
  .other-service-wrapper {
    display: block;
    overflow: hidden;
  }
  
  .other-service-wrapper a {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
    margin-top: 30px;
  }
  
  .other-service-btn {
    text-align: center;
  }
  
  .other-service-wrapper img {
    width: 40px;
    height: 40px;
    margin-top:20px;
    padding: 10px;
  }
  
  .top-faq-container {
    display: block;
  }
  
  .faq-box {
    width: 100%;
    min-height: 240px;
    margin-top: 30px;
  }
  
  .faq-head p {
    font-size: 36px;
  }
  
  .faq-head h4 {
    font-size: 16px;
  }
  
  .faq-desc {
    padding: 20px;
  }

  .contact {
    padding: 60px 0;
  }
  
  .contact .container {
    display: block;
    width: 90%;
  }
  
  .contact .contact-left {
    width: 100%;
    padding: 20px;
  }

  .contact .contact-left .sec-sub-ttl {
    text-align: center;
  }
  
  .contact .contact-left .sec-ttl {
    text-align: center;
    font-size: 20px;
  }
  
  .contact .contact-right {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
  
  .contact-right-text {
    font-size: 20px;
  }
  
  .contact .contact-right .contact-btn {
    width: 80%;
    margin: 20px auto 0;
  }
  
  footer {
    padding: 20px 10px;
    width: 100vw;
    margin-left: auto;
  }
  
  .footer-ttl {
    margin-bottom: 0px;
    text-align: center;
    font-size: 24px;
  }

}
/* トップページ終わり */

/* ホームページ制作 */
.hp-mv {
  position: relative;
  width: 95vw;
  height: 100vh;
  background: url(../img/hp-mv.jpg) no-repeat center center/cover;
  z-index: 0;
}
.hp-mv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.5);
  z-index: -10;
}

.active .hp-mv {
  z-index: -10000;
}

.hp-mv .container {
  position: relative;
  height: 100%;
}

.active .hp-mv .container {
  z-index: -10000;
}

.hp-mv-container {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.active .hp-mv-container {
  z-index: -10000;
}

.hp-mv-left {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 45%;
  color: #fff;
}

.hp-mv-left h2 {
  font-size: 34px;
}

.hp-mv-left p {
  font-size: 20px;
  margin-top: 15px;
}

.hp-mv-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  background-color: #E8E8E8;
  padding: 20px;
}

.hp-mv-wrapper {
  background-color: #fff;
  text-align: center;
  padding: 20px;
}

.hp-mv-wrapper .contact-btn {
  width: 80%;
  margin: 20px auto 0;
  background: linear-gradient(135deg, #415889 0%, #2D709F 33%);
}
.hp-mv-wrapper .contact-btn:hover {
  background: #fff;
}

.hp-worry {
  position: relative;
  background-color: #EFF5F8;
  clip-path: polygon(0 0, 100% 0%, 100% 85%, 50% 100%, 0 85%);
  padding-bottom: 140px;
}

.active .hp-worry {
  z-index: -1000;
}

.hp-worry .sec-ttl {
  text-align: center;
  margin-bottom: 40px;
}

.hp-worry-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hp-worry-item {
  background-color: #fff;
  width: 300px;
  height: 300px;
  border-radius: 300px;
  padding: 20px;
}

.hp-worry-item img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.hp-solution {
  position: relative;
  padding: 180px 0 0;
  margin-top: -100px;
}
.hp-solution::before {
  position: absolute;
  content: "";
  background-color: #5C95BC;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  z-index: -1;
}

.active .hp-solution {
  z-index: -1000;
}

.hp-solution .sec-ttl {
  color: #fff;
  text-align: center;
}

.hp-solution-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.hp-solution-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  width: 300px;
  height: 300px;
  border-radius: 300px;
  padding: 20px;
}

.hp-solution-item img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.hp-solution-text-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hp-solution-text {
  font-size: 18px;
  color: #fff;
  width: 300px;
  margin-top: 20px;
}

.solution-contact {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 5px 20px 0px rgb(101, 101, 101);
  width: 80%;
  margin: 60px auto -80px;
  padding: 30px 20px;
}

.solution-contact p {
  text-align: center;
  font-size: 20px;
}

.solution-contact .contact-btn {
  width: 60%;
  margin: 30px auto 0;
  background: linear-gradient(135deg, #415889 0%, #2D709F 33%);
}
.solution-contact .contact-btn:hover {
  background: #fff;
}

.hp-plan {
  position: relative;
  padding-top: 200px;
  padding-bottom: 0;
}

.active .hp-plan {
  z-index: -10000;
}

.hp-plan .sec-sub-ttl,
.hp-plan .sec-ttl,
.hp-plan .sec-desc {
  text-align: center;
}

.hp-plan-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.hp-plan-item {
  box-shadow: 5px 5px 20px 0px rgb(101, 101, 101);
  width: 30%;
  height: 160px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.hp-plan-item:nth-of-type(1),
.hp-plan-item:nth-of-type(2),
.hp-plan-item:nth-of-type(3) {
  margin-top: 0;
}
.hp-plan-item:hover {
  transform: translateY(3%);
  transition: all .3s ease;
  box-shadow: 5px 5px 10px 0px rgb(177, 177, 177);
}

.hp-plan-item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.hp-plan-item-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #042562;
  height: 100%;
  width: 20%;
}

.hp-plan-item-left p {
  color: #fff;
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hp-plan-item-right  {
  width: 80%;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}

.hp-plan-item-right h4 {
  font-size: 16px;
  margin-top: 20px;
} 

.hp-plan-item-right img {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.propose-container {
  position: relative;
  border: 3px solid #042562;
  padding-bottom: 40px;
}

.active .propose-container {
  z-index: -1000;
}

.propose-head {
  background-color: #042562;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
}

.propose-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
  width: 80%;
}

.propose-item {
  position: relative;
  font-size: 18px;
  width: 50%;
  margin-top: 20px;
  padding-left: 40px;
}
.propose-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/checkbox.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
}

.propose-container .contact-btn {
  width: 50%;
  margin: 30px auto 0;
  background: linear-gradient(135deg, #415889 0%, #2D709F 33%);
}
.propose-container .contact-btn:hover {
  background: #fff;
}

.site-partner {
  background-color: #EFF5F8;
}

.site-partner-list {
  margin-top: 40px;
}

.site-partner-item {
  display: flex;
  justify-content: space-between;
  align-items: top;
  margin-top: 60px;
}

.site-partner-item img {
  display: block;
  width: 50%;
  height: auto;
  object-fit: cover;
}

.site-partner-item-right {
  padding: 80px 30px;
}

.site-partner-item-right h3 {
  background-color: #042562;
  color: #fff;
  padding: 10px 30px;
  margin: 0 0 40px -80px;
  width: 90%;
}

.site-partner-wrapper + p .contact-btn {
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
  width: 40%;
  margin: 80px auto 0;
}
.site-partner-wrapper + p .contact-btn:hover {
  background-image: unset;
  background-color: #fff;
}

.hp-devide {
  background: url(../img/hp-devide.jpeg) no-repeat center center/cover;
}

.active .hp-devide {
  position: relative;
  z-index: -10000;
}

.hp-material .sec-sub-ttl,
.hp-material .sec-ttl {
  text-align: center;
}

.hp-material .container h3:last-of-type {
  margin-top: 120px;
}

.page-lead {
  position: relative;
  background-image: linear-gradient(135deg, #455a88 0%, #042562 100%);
  color: #FFf;
  text-align: center;
}

.active .page-lead {
  z-index: -1000;
}

.page-lead-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.page-lead-wrapper a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  height: 300px;
  color: #fff;
}
.page-lead-wrapper a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.5);
  transition: all .3s ease-out;
}
.page-lead-wrapper a:hover::after {
  background-color: rgba(4, 37, 98, 0.9);
}

.page-lead-box1 {
  background: url(../img/shindan.jpg) no-repeat center center/cover;
}
.page-lead-box2 {
  background: url(../img/checksheet.jpg) no-repeat center center/cover;
}
.page-lead-box3 {
  background: url(../img/web-column.jpg) no-repeat center center/cover;
}

.page-lead-wrapper h4 {
  position: relative;
  z-index: 100;
}

.page-lead-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-lead-btn-wrapper p {
  width: 60%;
}

.page-lead-btn-wrapper .contact-btn {
  width: 70%;
  margin: 80px auto 0;
}

.page-lead-btn-wrapper .btn-left {
  background: #fff;
  color: #000;
}
.page-lead-btn-wrapper .btn-left:hover {
  background: unset;
  border: 1px solid #fff;
  color: #fff;
}

.page-lead-btn-wrapper .btn-right {
  color: #fff;
  background: linear-gradient(135deg, #415889 0%, #2D709F 33%);
}
.page-lead-btn-wrapper .btn-right:hover {
  background: #fff;
  color: #000;
}

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

  section {
    padding-top: 40px;
  }

  .hp-mv {
    width: 100vw;
    height: 90vh;
  }
  
  .hp-mv .container {
    display: flex;
    align-items: flex-end;
    position: unset;
    height: 100%;
  }
  
  .hp-mv-container {
    position: static;
    display: flex;
    flex-direction: column;
  }
  
  .hp-mv-left {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
  }
  
  .hp-mv-left h2 {
    font-size: 24px;
  }
  
  .hp-mv-left p {
    font-size: 16px;
    margin-top: 15px;
  }
  
  .hp-mv-right {
    width: 100%;
    padding: 10px;
    margin-top: 30px;
  }
  
  .hp-mv-wrapper {
    padding: 10px;
  }

  .hp-mv-wrapper h3 {
    font-size: 18px;
  }
  
  .hp-mv-wrapper .contact-btn {
    width: 100%;
  }
  
  .hp-worry {
    clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
    padding-bottom: 100px;
  }
  
  .hp-worry-list {
    display: block;
  }
  
  .hp-worry-item {
    width: 240px;
    height: 240px;
    border-radius: 240px;
    padding: 20px 0 0;
    margin: 30px auto;
  }

  .hp-worry-item:nth-of-type(3) {
    margin-bottom: 0;
  }
  
  .hp-worry-item img {
    width: 120px;
    height: 110px;
    margin: 0 auto 20px;
  }
  
  .hp-solution {
    padding: 120px 0 0;
    margin-top: -100px;
  }
  
  .hp-solution-list {
    display: block;
    margin-top: 40px;
  }
  
  .hp-solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 240px;
    height: 240px;
    border-radius: 240px;
    padding: 20px 0 0;
    margin: 30px auto;
  }

  .hp-solution-item:nth-of-type(3) {
    margin-bottom: 0;
  }
  
  .hp-solution-item img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .hp-solution-item p {
    color: rgb(0, 0, 0);
    font-weight: normal;
    font-size: 14px;
    width: 300px;
  }
  
  .solution-contact {
    width: 100%;
    margin: 80px auto 0;
    padding: 20px;
  }
  
  .solution-contact p {
    font-weight: bold;
    font-size: 14px;
    text-align: left;
  }
  
  .solution-contact .contact-btn {
    width: 100%;
  }
  
  .hp-plan {
    padding-top: 80px;
  }
  
  .hp-plan .sec-sub-ttl,
  .hp-plan .sec-ttl {
    text-align: center;
  }

  .hp-plan .sec-desc {
    text-align: left;
  }
  
  .hp-plan-list {
    display: block;
    margin-top: 40px;
  }
  
  .hp-plan-item {
    width: 100%;
    height: 120px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .hp-plan-item:nth-of-type(1),
  .hp-plan-item:nth-of-type(2),
  .hp-plan-item:nth-of-type(3) {
    margin-top: 40px;
  }
  
  .hp-plan-item a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
  .hp-plan-item-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 20%;
  }
  
  .hp-plan-item-left p {
    font-size: 32px;
  }
  
  .hp-plan-item-right  {
    width: 80%;
    height: 100%;
    padding: 10px;
  }
  
  .hp-plan-item-right h4 {
    font-size: 16px;
    margin-top: 10px;
  } 
  
  .hp-plan-item-right img {
    width: 50px;
    height: 50px;
  }

  .propose {
    padding-top: 60px;
  }
  
  .propose-container {
    padding-bottom: 20px;
  }
  
  .propose-head {
    font-size: 16px;
    padding: 20px 0;
  }
  
  .propose-list {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 80%;
  }
  
  .propose-item {
    font-size: 14px;
    width: 100%;
    margin-top: 20px;
    padding-left: 30px;
  }
  .propose-item::before {
    width: 20px;
    height: 20px;
  }
  
  .propose-container .contact-btn {
    width: 80%;
    margin: 30px auto 0;
  }

  .site-partner-list {
    margin-top: 40px;
  }
  
  .site-partner-item {
    display: block;
    margin-top: 30px;
  }
  
  .site-partner-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .site-partner-item-right {
    padding: 0;
  }
  
  .site-partner-item-right h3 {
    font-size: 16px;
    position: relative;
    padding: 10px;
    margin: -20px 0 0 0;
    width: 90%;
  }

  .site-partner-item-right p {
    margin-top: 10px;
  }
  
  .site-partner-wrapper + p .contact-btn {
    background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
    width: 80%;
    margin: 30px auto 0;
  }
  .site-partner-wrapper + p .contact-btn:hover {
    background-image: unset;
    background-color: #fff;
  }

  .page-lead h3 {
    font-size: 18px;
  }
  
  .page-lead-wrapper {
    display: block;
    margin-top: 40px;
  }
  
  .page-lead-wrapper a {
    position: relative;
    display: block;
    width: 100%;
    height: 140px;
    margin-top: 30px;
  }

  .page-lead-wrapper a h4 {
    line-height: 140px;
  }
  
  .page-lead-btn-wrapper {
    display: block;
  }
  
  .page-lead-btn-wrapper p {
    width: 100%;
  }
  
  .page-lead-btn-wrapper .contact-btn {
    width: 80%;
    margin: 40px auto 0;
  }
  
  .page-lead-btn-wrapper .btn-left {
    background: #fff;
    color: #000;
  }
  .page-lead-btn-wrapper .btn-left:hover {
    background: unset;
    border: 1px solid #fff;
    color: #fff;
  }
  
  .page-lead-btn-wrapper .btn-right {
    color: #fff;
    background: linear-gradient(135deg, #415889 0%, #2D709F 33%);
  }
  .page-lead-btn-wrapper .btn-right:hover {
    background: #fff;
    color: #000;
  }

}

/* Web運用アドバイス */
.adviser-mv {
  position: relative;
  background: url(../img/adviser-mv.jpg) no-repeat center center/cover;
  z-index: 0;
}
.adviser-mv::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.5);
  z-index: -1;
}

.active .adviser-mv {
  z-index: -10000;
}

.web-a {
  padding-top: 160px;
}

.web-a .sec-sub-ttl,
.web-a .sec-ttl {
  text-align: center;
}

.web-a-feature-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 60px;
}

.web-a-feature-item {
  background-color: #fff;
  box-shadow: 2px 2px 15px 0px rgb(216, 216, 216);
  width: calc(100% / 3);
  padding: 40px;
  text-align: center;
}

.web-a-feature-no {
  color: #B9B9B9;
  font-size: 60px;
  text-align: center;
  margin-top: -80px;
}

.web-a-feature-desc {
  text-align: left;
  margin-top: 20px;
}

.web-a-plan {
  background-image: linear-gradient(135deg, #455a88 0%, #042562 100%);
}

.web-a-plan .sec-sub-ttl,
.web-a-plan .sec-ttl,
.web-a-plan .sec-desc {
  text-align: center;
}

.web-a-plan .sec-ttl,
.web-a-plan .sec-desc {
  color: #fff;
}

.web-a-plan-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 40px;
}

.web-a-plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 45%;
  margin-top: 40px;
}

.web-a-plan-item:nth-of-type(1),
.web-a-plan-item:nth-of-type(2) {
  margin-top: 0;
}

.web-a-plan-item-left,
.web-a-plan-item-right {
  height: 100%;
}

.web-a-plan-item-left {
  display: flex;
  align-items: center;
  background-color: #042562;
  color: #fff;
  font-size: 36px;
  padding: 0 10px;
  text-align: center;
}

.web-a-plan-item-right {
  background-color: #fff;
  padding: 20px;
}

@media screen and (max-width: 860px) {
  .web-a {
    padding-top: 80px;
  }
  
  .web-a-feature-list {
    display: block;
    margin-top: 30px;
  }
  
  .web-a-feature-item {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
  }
  
  .web-a-feature-no {
    font-size: 50px;
    margin-top: -60px;
  }
  
  .web-a-plan .sec-desc {
    text-align: left;
  }
  
  .web-a-plan-list {
    display: block;
    margin-top: 40px;
  }
  
  .web-a-plan-item {
    display: block;
    width: 100%;
    margin-top: 40px;
  }
  
  .web-a-plan-item:nth-of-type(1),
  .web-a-plan-item:nth-of-type(2) {
    margin-top: 40px;
  }
  
  .web-a-plan-item-left,
  .web-a-plan-item-right {
    height: 100%;
  }
  
  .web-a-plan-item-left {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 0 10px;
  }
  
  .web-a-plan-item-right {
    padding: 20px;
  }

  .web-a-plan-item-right h4 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .web-a-plan + .propose {
    padding-top: 60px;
  }
}

/* Web運用代行 */
.operation-mv {
  position: relative;
  background: url(../img/operation-mv.jpg) no-repeat center center/cover;
  z-index: 0;
}
.operation-mv::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.5);
  z-index: -10;
}


/* Webディレクターコラム */
.page-head {
  padding: 60px 0;
}

.page-head h2 {
  font-size: 30px;
}

.page-head + section {
  padding-top: 0;
}

@media screen and (max-width: 860px) {
  .page-head {
    padding: 30px 0;
  }
  
  .page-head h2 {
    font-size: 24px;
  }

  .page-head + .post .column-container {
    width: 100%;
  }
}

/* 新着情報 */
.news .main-aside-wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 90%;
  margin: 0 auto;
}

.nws-container {
  margin-right: 80px;
  width: 70%;
  padding-top: 0;
}

.nws-container,
aside,
.faq-container {
  position: relative;
  border-top: 1px solid #a1a1a1;
  padding-top: 20px;
}
.nws-container::before,
aside::before,
.faq-container::before {
  position: absolute;
  content: "";
  top: -1px;
  border-top: 2px solid #042562;
  width: 100px;
}

.active .nws-container {
  z-index: -10000;
}

.nws-latest-wrapper {
  height: auto;
  transition: all 0.2s ease;
}
.nws-latest-wrapper:hover {
  opacity: 0.9;
}

.nws-post {
  position: relative;
  display: block;
  background-color: #fff;
  width: 100%;
  height: auto;
}

.nws-cat {
  position: absolute;
  display: inline-block;
  background-color: #5C95BC;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  width: 160px;
  text-align: center;
  top: 0;
  left: 0;
}

.nws-post img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.post-content-wrapper {
  background-color: #042562;
  padding: 20px;
}

.post-content-wrapper h2 {
  font-size: 22px;
  margin: 10px 0;
}

.post-content-wrapper .post_date {
  color: #fff;
  font-size: 16px;
}

.post-content-wrapper time {
  color: #fff;
}

.nws-wrapper .nws-ttl {
  color: #fff;
  font-size: 20px;
  width: 100%;
  height: 30%;
  /* white-space: nowrap;
  overflow: hidden; */
  /* text-overflow: ellipsis; */
}

aside {
  width: 30%;
  margin-bottom: 60px;
}

.nws-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nws-wrapper .nws-post {
  width: calc(50% - 20px);
  height: auto;
  margin:40px 20px 0 0;
  transition: all .2s ease;
}
.nws-wrapper .nws-post:hover {
  opacity: .9;
}

.nws-wrapper .nws-post:nth-of-type(even) {
  margin-right: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.page-numbers {
  display: block;
  padding: 10px 20px;
  margin-right: 10px;
  border: 1px solid #0E2347;
}

.current {
  background-color: #0E2347;
  color: #fff;
}

.page-numbers:hover {
  background-color: #5C95BC;
  color: #fff;
}

/* お知らせ詳細のCSS */
.news .main-aside-wrapper {
  display: flex;
  justify-content: space-between;
}

.nws-detail-img {
  width: 100%;
  object-fit: contain;
  max-height: 400px;
}

.datetime {
  display: block;
}

.nws-detail-container .nws-ttl {
  padding-bottom: 10px;
  margin: 10px 0 20px;
  border-bottom: 2px solid #5C95BC;
}

.post-categories li {
  position: absolute;
  display: inline-block;
  background-color: #64A1EF;
  padding: 5px 20px;
  margin: 0px 5px 10px 0;
}

.nws-detail-container .post-categories li {
  position: static;
}

.post-categories li a {
  font-weight: bold;
  color: #fff;
}

.wp-post-content p {
  line-height: 1.6;
  margin-top: 12px;
}

.wp-post-content h2 {
  background-color: #fff;
  border-left: 5px solid #042562;
  padding: 10px 15px;
  margin: 40px 0 20px;
}

.wp-post-content h3,
.wp-post-content h4 {
  margin: 40px 0 20px;
}

.wp-post-content img {
  display: block;
  margin: 20px auto;
  max-height: 460px;
  width: 100%;
  object-fit: cover;
}

.wp-post-content blockquote {
  background-color: #e9e9e9;
  color: #2c2c2c;
  font-style: italic;
  margin: 20px 0;
  padding: 20px;
  line-height: 1.8;
}

.wp-post-content ul {
  margin: 20px 0;
}

.wp-post-content li {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
}

.wp-post-content a {
  color: #0000EE;
  text-decoration: underline;
}
.wp-post-content a:hover {
  color: #7b95ff;
}

.active .nws-container + aside {
  z-index: -1000;
}

.aside-free-advice {
  background-image: linear-gradient(135deg, #455a88 0%, #042562 100%);
  padding: 10px;
}

.aside-free-advice-left {
  display: flex;
}

.aside-free-advice-left img {
  width: 80px;
  height: 80px;
}

.aside-free-advice h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.aside-free-advice-right .contact-btn {
  background-image: unset;
  background-color: #fff;
  color: #000;
  width: 90%;
  margin: 10px auto;
}
.aside-free-advice-right .contact-btn:hover {
  background-color: #5C95BC;
  border: unset;
  color: #fff;
}

.aside-free-advice-right p,
.aside-free-advice-right .contact-btn {
  font-size: 16px;
}

.aside-page-lead {
  margin-top: 40px;
}

.aside-page-lead h3 {
  color: #5C95BC;
}

.aside-page-lead-bg {
  position: relative;
  background-color: #d5ecf7;
  width: 100%;
  height: 200px;
  margin-top: 20px;
}

.aside-page-lead-bg:nth-of-type(1) {
  margin-top: 10px;
}

.aside-page-lead-bg h4 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.aside-page-lead-bg h4::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(4, 37, 98, .4);
  z-index: -1;
  transition: all .2s ease;
} 
.aside-page-lead-bg h4:hover::after {
  background-color: rgba(4, 37, 98, .6);
}

.aside-page-lead-bg img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  padding: 10px;
}
.aside-page-lead-bg img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 1);
}

.aside-page-lead-bg .other-service-btn img {
  width: 10%;
  height: 10%;
}

.aside-contact-wrapper {
  border: 1px solid rgb(228, 228, 228);
  box-shadow: 3px 3px 5px 0px rgb(224, 224, 224);
  margin-top: 40px;
}

.aside-contact-head {
  background-color: #5C95BC;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

.aside-contact-body {
  padding: 20px;
}

.aside-contact-body p {
  text-align: center;
  font-weight: bold;
}

.aside-contact-body .p,
.aside-contact-body .contact-btn {
  font-size: 16px;
  margin-bottom: 0;
}

/* コラムページのCSS */
.nav-links li {
  margin: 40px 0;
}

.column-archive .column-container {
  width: 100%;
}

.column-post-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: -60px;
}

.column-post-wrapper li {
  width: calc(50% - 20px);
}

.column-post-wrapper li:hover {
  opacity: 0.6;
  transition: all .3s ease;
}

.column-post-container {
  position: relative;
  margin-top: 60px;
}

.column-post-container .post-date {
  position: relative;
}

.column-post-wrapper img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.column-post-wrapper .post_date,
.column-post-wrapper .post_title {
  color: #fff;
}

.post_date a {
  display: block;
  width: 100%;
  height: 100%;
}

.post-cat {
  position: absolute;
  top: 0;
  left: 0;
}

.column-detail .main-aside-wrapper {
  display: flex;
  justify-content: space-between;
}

.column-detail .nws-container {
  width: 70%;
  margin: 0 80px 0 auto;
}

.pager-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.pager-wrapper a,
.pager-wrapper span {
  margin-right: 20px;
}

@media screen and (max-width:860px) {
  .column-detail .nws-container {
    width: 100%;
    margin: 0 auto;
  }
}

/* 目次ショートコードのCSS */
.toc {
  position: relative;
  margin-top: 5%;
  background: #e8f6fd;
  padding: 1% 2%;
  width: 70%;
  word-break: break-all;
  word-wrap: break-word;
  margin: 30px auto;
}
.toc-title {
  text-align: center;
  font-size: 22px;
  letter-spacing: 3px;
  margin: 0.5%;
  font-weight: bold;
}
.toc-toggle {
  position: absolute;
  right: 12px;
}
.toc .wp-post-content a {
  color: unset;
  text-decoration: none !important;
}
.toc-list {
  padding: 9px;
  line-height: 1.7;
}
.toc-list li {
  list-style: none !important;
}
.toc-list ul {
  list-style: square;
}
.toc-list li a {
  color: #343434;
}

@media screen and (max-width:860px) {
  .toc {
    margin-top: 5%;
    padding: 1% 2%;
    width: 100%;
    margin: 30px auto;
  }
  .toc-title {
    text-align: center;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 0.5%;
    font-weight: bold;
  }
  .toc-toggle {
    position: absolute;
    right: 12px;
  }
  .toc-list {
    padding: 9px;
    line-height: 1.7;
  }
}

@media screen and (max-width:860px) {
  .main-aside-wrapper {
    display: block;
    width: 90%;
  }
  
  .nws-container {
    margin-right: 0;
    width: 100%;
  }

  .nws-container::before,
  aside::before {
    position: absolute;
    content: "";
    top: -1px;
    border-top: 2px solid #042562;
    width: 100px;
  }

  .nws-latest-wrapper .nws-ttl {
    font-size: 18px;
  }
  
  .nws-cat {
    padding: 10px 0;
    width: 120px;
  }

  .post-content-wrapper {
    padding: 10px;
  }
  
  .post-content-wrapper time {
    font-size: 14px;
  }
  
  .nws-wrapper .nws-ttl {
    font-size: 18px;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .nws-wrapper .nws-post {
    width: 100%;
    margin: 30px 0;
  }
  
  aside {
    width: 100%;
  }

  .nws-wrapper {
    display: block;
  }
  
  .aside-page-lead {
    margin-top: 30px;
  }
  
  .aside-page-lead-bg {
    width: 100%;
    height: 140px;
    margin-top: 20px;
  }
  
  .aside-page-lead-bg h4 {
    font-size: 16px;
  }
  
  .aside-page-lead-bg img {
    object-fit: cover;
  }
  
  .aside-contact-wrapper {
    margin: 40px 0;
  }
  
  .aside-contact-body p {
    font-size: 16px;
  }
}

/* カテゴリーページ */
.category .nws-wrapper {
  align-items: stretch;
}

.category .nws-post {
  background-color: #052562;
}

.category .nws-wrapper img {
  height: 240px;
  object-fit: cover;
}

.category .nws-wrapper .post-content-wrapper {
  height: auto;
}

/* よくあるご質問 */
.main-aside-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto;
}

.faq-container {
  width: 70%;
  margin-right: 80px;
  padding-top: 20px;
}

.active .faq-container,
.active .faq-container + aside {
  z-index: -10000;
}

.s-03 .accordion-one {
  width: 100%;
  margin-top: 40px;
}

.s-03 .accordion-one:first-of-type {
  margin-top: 0;
}

.s-03 .accordion-one .accordion-header {
  position: relative;
  background-color: #042562;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 80px 15px 15px;
  transition-duration: 0.2s;
  z-index: +1;
}
.s-03 .accordion-one .accordion-header .i-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  margin-top: -15px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s-03 .accordion-one .accordion-header.stay .i-box {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.s-03 .accordion-one .accordion-header .i-box .one-i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s-03 .accordion-one .accordion-header.stay .i-box .one-i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.s-03 .accordion-one .accordion-header.stay.open .i-box .one-i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.s-03 .accordion-one .accordion-header.open .i-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s-03 .accordion-one .accordion-header.stay.open .i-box {
  -webkit-transform: rotate(315eg);
  transform: rotate(315deg);
}
.s-03 .accordion-one .accordion-header .i-box .one-i:before, .s-03 .accordion-one .accordion-header .i-box .one-i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s-03 .accordion-one .accordion-header .i-box .one-i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s-03 .accordion-one .accordion-header.stay .i-box .one-i:before {
  content: none;
}
.s-03 .accordion-one .accordion-header.open .i-box .one-i:before {
  content: none;
}
.s-03 .accordion-one .accordion-header.stay.open .i-box .one-i:before {
  content: "";
}
.s-03 .accordion-one .accordion-header.open .i-box .one-i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s-03 .accordion-one .accordion-header.stay.open .i-box .one-i:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.s-03 .accordion-one .accordion-inner {
  display: none;
  padding: 15px;
  box-sizing: border-box;
}
.s-03 .accordion-one .accordion-inner.stay {
  display: block;
}
.s-03 .accordion-one .accordion-inner p.txt-a-ac {
  margin: 0;
}
.s-03 .accordion-one .accordion-inner .box-one a {
  text-decoration: underline;
  color: #339ddb;
}
@media screen and (max-width: 860px) {
  .faq-container {
    width: 100%;
    margin-right: 0;
  }

  .s-03 .accordion-one .accordion-header {
    font-size: 18px;
  }
  .s-03 .accordion-one .accordion-header .i-box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 860px) {
  .s-03 .accordion-one .accordion-header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}

/* お問い合わせ・無料相談申し込みフォーム */
.form {
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
  padding-bottom: 80px;
}

.page-head-ttl-form {
  color: #fff;
}

.form .main-aside-wrapper,
.form-wrapper {
  position: relative;
  border-top: 1px solid #a1a1a1;
  padding-top: 60px;
}
.form .main-aside-wrapper::after,
.form-wrapper::after {
  position: absolute;
  content: "";
  top: -1px;
  border-top: 2px solid #042562;
  width: 100px;
}

.active .form .main-aside-wrapper,
.active .form-wrapper {
  z-index: -10000;
}

.contact-wrapper-left {
  width: calc(45% - 30px);
  margin-right: 30px;
}

.form-lead {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}

.form-lead-text {
  color: #fff;
  margin: 30px 0 10px;
}

.form-lead-text-small {
  color: #b9b9b9;
  font-size: 14px;
}

.contact-wrapper {
  background-color: #fff;
  width: 70%;
}

.form-complete .contact-wrapper {
  margin: 0 auto;
}

.form-inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px;
}

.form-wrapper .form-lead,
.form-wrapper .form-lead-text {
  text-align: center;
}

.form-wrapper .form-lead-text {
  margin: 30px 0;
}

.contact-wrapper2 {
  width: 80%;
  margin: 0 auto;
}

/* MW WP FormのCSS */
.contact-wrapper p {
  margin: 30px 0;
}

.contact-wrapper input,
.contact-wrapper textarea {
  display: block;
  border-radius: unset;
  border: 1px solid rgb(210, 210, 210);
  width: 80%;
  margin: 0 auto;
}

.contact-wrapper input {
  height: 50px;
}

.contact-wrapper2 input[type="radio"] {
  height: 10px;
  width: 30px;
  display: inline;
}

.contact-wrapper2 label {
  display: block;
  margin-top: 10px;
}

input.form-select {
  display: inline;
  height: unset;
  width: 10px;
}

.mwform-radio-field {
  white-space: nowrap;
}

span.mwform-radio-field-text {
  margin-top: 30px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mwform-radio-field-text {
  margin: 20px 30px 0 0;
}

.contact-wrapper input:focus,
.contact-wrapper textarea:focus {
  border-radius: unset;
  outline: 2px solid #E96041;
}

.mwform-tel-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.contact-wrapper .mwform-tel-field input[type="text"] {
  display: block;
  width: 100px;
  margin: 0 5px;
}
.contact-wrapper .mwform-tel-field input[type="text"]:first-of-type {
  margin-left: 0;
}

/* コピペのCSS */
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form input[type="text"],
.mw_wp_form textarea {
  padding: 1em;
  font-size: 15px;
  width: 100%;
}

/*――――「表」デザイン――――*/
.cform tr {
  width: 100%;
  font-weight: normal;
}

.cform th {
	font-size: 15px;
	width: 30%; 
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 0px 10px 15px;
  text-align: left;
}


.cform td {
	font-size: 15px;
	line-height: 200%;
	border-bottom: solid 1px #d6d6d6;
	padding: 30px;
  width: 100%;
}

.confirm-checkbox {
  text-align: center;
}

input.confirm-check,
input.confirm-check2 {
  display: inline;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}


/*―――――表示―――――*/

.cform {
	width: 100%;
	margin: auto;
}

@media only screen and (max-width:860px) {
	.cform th,
	.cform td {
		width: 97%;
  border: 1px solid #999;
  padding: .5em 1em;
		display: block;
		border-top: none;
	}
}

/*――「送信ボタン」デザイン――*/

.submit-btn input {
background:linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
border:0;
color:#ffffff;
font-size:1.3em;
font-weight:bolder;
margin:0 auto;
padding: 10px;
text-align:center;
width: 50%;
}

.submit-btn {
text-align:center;
margin-top:20px;
cursor: pointer;
}

.submit-btn input:hover {
	background: #0E2147;
	color: #FFFFFF;
 cursor: pointer;
}


/*―――「必須」デザイン―――*/
.required-srt {
font-size:0.9em;
padding: 6px;
margin-left: 10px;
background: #E96041;
color: #ffffff;
}

.unrequired-srt {
  font-size:0.9em;
  padding: 6px;
  margin-left: 10px;
  background: #0E2147;
  color: #fff;
}

/*ーーーーーーーーーーーーーーーー*/

@media screen and (max-width:860px) {
  .form {
    padding-bottom: 60px;
  }

  .form .main-aside-wrapper {
    display: block;
  }
  
  .form .main-aside-wrapper,
  .form-wrapper {
    padding-top: 30px;
  }
  
  .contact-wrapper-left {
    width: 100%;
    margin-right: 0;
  }
  
  .form-lead {
    font-size: 22px;
  }
  
  .form-lead-text {
    margin: 20px 0 10px;
  }
  
  .form-lead-text-small {
    color: #b9b9b9;
    font-size: 12px;
  }
  
  .contact-wrapper {
    width: 100%;
  }
  
  .form-wrapper .form-lead,
  .form-wrapper .form-lead-text {
    text-align: center;
  }
  
  .form-wrapper .form-lead-text {
    margin: 20px 0;
  }
  
  .contact-wrapper2 {
    width: 100%;
    margin: 0 auto;
  }
}

/* 個人情報保護方針 */
.pp .container{
  position: relative;
  border-top: 1px solid #a1a1a1;
  padding-top: 20px;
}
.pp .container::after {
  position: absolute;
  content: "";
  top: -1px;
  border-top: 2px solid #042562;
  width: 100px;
}

.pp-container {
  border: 1px solid #5C95BC;
  padding: 30px 60px;
}

.active .pp .container {
  z-index: -10000;
}

.pp-container {
  color: #707070;
}

.pp-container h3 {
  font-size: 20px;
  margin-top: 20px;
}

.text_center {
  margin: 20px 0;
}

.list-pp li{
  margin-top: 10px;
}

.row03 a {
  color: rgb(7, 118, 174);
}

@media(min-width: 860px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

@media screen and (max-width:860px) {
  
  .pp-container {
    padding: 20px;
  }
  
  .pp-container h3 {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .text_center {
    margin: 20px 0;
  }
  
  .list-pp li{
    font-size: 14px;
  }
  
  .row03 a {
    overflow-wrap: break-word;
  }
}

/* コーポレートサイト制作 */
.site {
  padding: 0;
}

.site-mv-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 0;
}

.site-mv-left {
  width: calc(40% - 30px);
  margin-right: 30px;
}

.site-mv-left h2 {
  color: #042562;
  font-size: 42px;
}

.site-mv-left h3 {
  margin: 20px 0 0;
}

.site-mv-left .contact-btn {
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
  margin-top: 40px;
}
.site-mv-left .contact-btn:hover {
  background-image: unset;
  background-color: #fff;
}

.site-mv-right {
  width: 60%;
  height: 80vh;
  background-repeat: no-repeat;
  background-size: contain;
}

.cp-mv {
  background-image: url(../img/cp-mv.png);
}
.lp-mv {
  background-image: url(../img/lp-mv.png);
}
.ec-mv {
  background-image: url(../img/ec-mv.png);
}
.recruit-mv {
  background-image: url(../img/recruit-mv.png);
}

.devide {
  position: relative;
  width: 90vw;
  margin-left: auto;
}
.devide::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 37, 98, 0.5);

}

.corporate-devide {
  background: url(../img/corporate-devide.jpg) no-repeat center center/cover;
}

.active .corporate-devide {
  z-index: -10000;
}

.devide h3 {
  position: relative;
  color: #fff;
  font-size: 36px;
  margin-left: 40px;
  z-index: 100;
}

.site-role .sec-sub-ttl,
.site-role .sec-ttl {
  text-align: center;
}

.site-point {
  background-color: #EFF5F8;
}

.site-point h3,
.site-point h2 {
  text-align: center;
}

.site-point-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.site-point-left {
  width: 50%;
  margin-right: 60px;
}

.site-point-left:nth-of-type(even) {
  margin-right: 0;
  margin-left: 60px;
}

.site-point-left .site-point-sub {
  font-weight: bold;
  color: #5674AD;
}

.site-point-left h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
}

.site-point-desc {
  line-height: 1.8;
}

.site-point-right {
  width: 50%;
}

.site-point-right img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.site-flow .container {
  height: auto;
}

.site-flow .sec-sub-ttl,
.site-flow .sec-ttl,
.site-flow .sec-desc {
  text-align: center;
}

.site-flow-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.site-flow-upper-item {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  height: 60px;
  margin-right: 30px;
}
.site-flow-upper-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.active .site-flow-upper-item {
  z-index: -10000;
}

.site-flow-upper1 {
  position: relative;
  background-color: #A9B7D1;
  width: 40%;
}
.site-flow-upper1::after {
  position: absolute;
  content: "";
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #A9B7D1;
}

.site-flow-upper2 {
  position: relative;
  background-color: #5674AD;
  width: 30%;
}
.site-flow-upper2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #EFF5F8;
}
.site-flow-upper2::after {
  position: absolute;
  content: "";
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #5674AD;
}

.site-flow-upper3 {
  position: relative;
  background-color: #042562;
  width: 30%;
}
.site-flow-upper3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #EFF5F8;
}
.site-flow-upper3::after {
  position: absolute;
  content: "";
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #042562;
}

.site-flow-bottom-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 20px;
}

.site-flow-bottom-item {
  width: 80px;
  margin-top: 30px;
}

.site-flow-no {
  color: #fff;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 36px;
  width: 80px;
  padding: 10px;
  text-align: center;
}

.site-flow-no1 {
  background-color: #A9B7D1;
}

.site-flow-no2 {
  background-color: #5674AD;
}

.site-flow-no3 {
  background-color: #042562;
}

.site-flow-bottom-ttl {
  writing-mode: vertical-lr;
  background-color: #fff;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 30px 20px;
  width: 80px;
  height: 300px;
}

@media screen and (max-width:860px) {
  
  .site-mv-wrapper {
    display: block;
    padding: 0;
  }
  
  .site-mv-left {
    width: 95%;
    margin: 0 auto;
  }
  
  .site-mv-left h2 {
    font-size: 28px;
  }
  
  .site-mv-left h3 {
    font-size: 20px;
    margin: 20px 0 0;
  }
  
  .site-mv-left .contact-btn {
    width: 80%;
    margin: 40px auto;
  }
  
  .site-mv-right {
    width: 100%;
    height: 40vh;
    margin-top: 40px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .devide {
    width: 100vw;
    margin-left: unset;
  }
  
  .corporate-devide {
    height: 100px;
    padding: 0;
  }
  
  .corporate-devide h3 {
    font-size: 20px;
    line-height: 100px;
    text-align: center;
    margin-left: 0;
  }

  .site-point-container {
    display: block;
    margin-top: 40px;
  }
  
  .site-point-left {
    width: 100%;
    margin-right: 0;
  }
  
  .site-point-left:nth-of-type(even) {
    margin-right: 0;
    margin-left: 0;
  }

  .site-point-left > p {
    margin-top: 10px;
  }
  
  .site-point-left h4 {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
  
  .site-point-desc {
    line-height: 1.8;
  }
  
  .site-point-right {
    width: 100%;
  }

  .site-point-left img,
  .site-point-right img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .site-flow .sec-sub-ttl,
  .site-flow .sec-ttl,
  .site-flow .sec-desc {
    text-align: left;
  }

  .site-flow .sec-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .site-flow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
  }
  
  .site-flow-upper {
    display: block;
    margin-top: 0;
    width: 30px;
  }
  
  .site-flow-upper-item {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: unset;
    writing-mode: vertical-rl;
    height: auto;
    margin-right: 0;
    margin-bottom: 20px;
    width: 30px;
  }
  .site-flow-upper-item::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: unset;
    border-bottom: unset;
  }

  .site-flow-upper-item:last-of-type {
    margin-bottom: 0;
  }
  
  .site-flow-upper1 {
    position: relative;
    width: auto;
    height: 260px;
  }
  .site-flow-upper1::after {
    position: absolute;
    content: "";
    top: unset;
    bottom: -15px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #A9B7D1;
    border-bottom: unset;
  }
  
  .site-flow-upper2 {
    position: relative;
    background-color: #5674AD;
    width: 100%;
    height: 190px;
  }
  .site-flow-upper2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: unset;
    border-bottom: unset;
    border-left: unset;
  }
  .site-flow-upper2::after {
    position: absolute;
    content: "";
    top: unset;
    bottom: -15px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #5674AD;
    border-bottom: unset;
  }
  
  .site-flow-upper3 {
    position: relative;
    background-color: #042562;
    width: 100%;
    height: 180px;
  }
  .site-flow-upper3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: unset;
    border-bottom: unset;
    border-left: unset;
  }
  .site-flow-upper3::after {
    position: absolute;
    content: "";
    top: unset;
    bottom: -15px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #042562;
    border-bottom: unset;
  }

  .site-flow-bottom {
    width: 85%;
  }
  
  .site-flow-bottom-list {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  
  .site-flow-bottom-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .site-flow-no {
    font-size: 24px;
    width: 60px;
    height: 60px;
    padding: 10px;
    text-align: center;
  }
  
  .site-flow-bottom-ttl {
    writing-mode: unset;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 40px;
    padding: 10px 10px 10px 20px;
    width: 100%;
    height: 60px;
  }
  
}

/* SEOに強いホームページ */
.seo-hp-mv {
  background: url(../img/mv-seo-hp.jpg) no-repeat center center/cover;
}

.about-seo {
  text-align: center;
}

.about-seo .sec-desc:last-of-type {
  margin-top: 30px;
}

.service-guide-right .sec-desc {
  margin-top: 30px;
}
.service-guide-right .sec-desc:first-of-type {
  margin-top: 0;
}

.seo-hp-devide {
  background: url(../img/seo-hp-devide.jpg) no-repeat center center/cover;
}
.active .seo-hp-devide {
  z-index: -10000;
}

.service-guide .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-guide-left {
  width: 100%;
  height: 300px;
  background: url(../img/service-guide.png) no-repeat center center/contain;
}

.service-guide-right {
  margin-left: 30px;
}

.strong {
  font-weight: bold;
}

.service-guide-right .contact-btn {
  width: 50%;
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
  margin: 40px 0 30px;
}
.service-guide-right .contact-btn:hover {
  background-image: unset;
  background-color: #fff;
}

.seo-hp-feature {
  background-color: #EFF5F8;
}

.seo-hp-feature .sec-sub-ttl,
.seo-hp-feature .sec-ttl {
  text-align: center;
}

.seo-hp-feature .contact-btn {
  width: 40%;
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
  margin: 60px auto 30px;
}
.seo-hp-feature .contact-btn:hover {
  background-image: unset;
  background-color: #fff;
}

.seo-checksheet {
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
}

.seo-checksheet .sec-sub-ttl,
.seo-checksheet .sec-ttl,
.seo-checksheet .sec-desc {
  text-align: center;
}

.seo-checksheet .sec-sub-ttl {
  color: #BEBEBE;
}

.seo-checksheet .sec-ttl,
.seo-checksheet .sec-desc {
  color: #fff;
}

.seo-checksheet .contact-btn {
  width: 40%;
  margin: 60px auto 30px;
  background-color: #fff;
  color: #fff;
}
.seo-checksheet .contact-btn:hover {
  background-color: unset;
  border: #fff solid 2px;
  color: #fff;
}

@media screen and (max-width:860px) {
  .about-seo .sec-desc {
    text-align: left;
  }

  .service-guide .container {
    display: block;
  }

  .service-guide-left {
    height: 240px;
  }

  .service-guide-right {
    margin-left: 0;
  }

  .service-guide .sec-desc {
    margin-top: 20px;
  }
  .service-guide .sec-desc:first-of-type {
    margin-top: 0;
  }

  .service-guide .contact-btn {
    width: 80%;
    margin: 30px auto 0;
  }

  .seo-hp-feature .contact-btn {
    width: 80%;
    margin: 30px auto 0;
  }

  .seo-checksheet .sec-desc {
    text-align: left;
  }

  .seo-checksheet .contact-btn {
    font-size: 14px;
    width: 80%;
    margin: 30px auto 0;
  }
  .seo-checksheet .btn-left::after {
    right: 10px;
  }
}

/* ホームページ診断 */
.check-mv {
  background: url(../img/mv-check.jpg) no-repeat center center/cover;
}

.check-devide {
  position: relative;
  background: url(../img/check-devide.jpg) no-repeat center center/cover;
}
.active .check-devide {
  z-index: -10000;
}

.check-guide {
  background: url(../img/check-guide.png) no-repeat center center/contain;
}

.check-price {
  position: relative;
}
.active .check-price {
  z-index: -10000;
}

.check-price .container {
  background-image: linear-gradient(135deg, #324A7D 0%, #2D709F 100%);
  padding: 40px 20px;
}

.check-price .sec-sub-ttl,
.check-price .sec-ttl {
  text-align: center;
}

.check-price .sec-sub-ttl {
  color: #BEBEBE;
}

.check-price .sec-ttl,
.check-price .sec-desc {
  color: #fff;
}

.check-price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 40px auto;
}

.check-price-left {
  width: 40%;
  height: 360px;
  background: url(../img/check-price.png) no-repeat center center/contain;
}

.price-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 30px solid #5C95BC;
  margin: 20px auto;
}

.standard-price,
.cp-price {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.standard-price {
  text-align: center;
}

.std-bg {
  position: relative;
  font-size: 60px;
}
.std-bg::before {
  position: absolute;
  content: "";
  top: 45%;
  left: 0;
  /* transform: rotate(20deg); */
  width: 120%;
  height: 3px;
  background-color: red;
}

.std-bg,
.cp-bg {
  margin: 0 10px;
}

.cp-price-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cp-bg {
  font-size: 80px;
}

.first-10 {
  display: inline-block;
  background-color: #F24949;
  color: #FFFF00;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 40px;
  border-radius: 30px;
}

.campaign-text {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.check-price-sml {
  color: #D3D3D3;
}

.check-price-right .contact-btn {
  width: 60%;
  margin: 40px auto 0;
  background-color: #fff;
  color: #fff;
}
.check-price-right .contact-btn:hover {
  background-color: unset;
  border: #fff solid 2px;
  color: #fff;
}

@media screen and (max-width:860px) {
  
  .check-price .container {
    padding: 20px;
  }
  
  .check-price-container {
    display: block;
    width: 100%;
  }
  
  .check-price-left {
    width: 100%;
    height: 200px;
  }
  
  .standard-price,
  .cp-price {
    font-size: 20px;
  }
  
  .std-bg {
    font-size: 50px;
  }
  
  .std-bg,
  .cp-bg {
    margin: 0 10px;
  }
  
  .cp-price-wrapper {
    display: block;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  .cp-price-left {
    text-align: center;
  }
  
  .cp-bg {
    font-size: 50px;
  }
  
  .first-10 {
    font-size: 16px;
    padding: 5px 30px;
  }
  
  .campaign-text {
    font-size: 20px;
    margin: 10px 0;
  }
  
  .check-price-sml {
    font-size: 12px;
  }
  
  .check-price-right .contact-btn {
    width: 90%;
    margin: 30px auto 0;
  }

  .check-price-right .btn-left::after {
    right: 10px;
  }
}

/* Contact Form7 のCSS */
/* 共通レイアウト */
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-label {
  width: 160px;
  font-weight: bold;
  padding-right: 15px;
}

.required-label,
.optional-label {
  display: inline-block;
  font-size: 12px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 3px;
}

.required-label {
  background: #b52828;
  color: #fff;
}

.optional-label {
  background: #007bff;
  color: #fff;
}

.form-field {
  flex: 1;
}

.input-field,
.textarea-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.textarea-field {
  height: 120px;
  resize: vertical;
}

/* チェックボックス行（1カラムに） */
.checkbox-row {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* 送信ボタン */
.submit-button {
  margin-top: 30px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(to right, #274b8f, #2d80c0);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}
