@charset "utf-8";
/* =========================================================
   service 共通：H1背景
========================================================= */
.h1_bg.service{
  position: relative;
  overflow: hidden;
  min-height: clamp(180px, 22vw, 300px);
  max-height: 300px;
}

/* 背景画像 + 青グラデ */
.h1_bg.service::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(0,119,192,.55), rgba(0,119,192,.55)),
    url("/wp-content/themes/tygr-tozai/images/service_h1_bg.jpg") right center / cover no-repeat;
}

/* 左の青いポリゴン */
.h1_bg.service::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0D52A0;
  clip-path: polygon(0 0, 58% 0, 48% 100%, 0 100%);
}

.h1_bg.service .h1_inner{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(32px, 4vw, 64px) 20px;
}

.h1_bg.service .h1_text{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* タイトル本体 */
.h1_bg.service .h1_title.service{
  color: #fff;
  margin: 0;
  padding-top: 3.3em; /* 英字大見出し分の余白 */
  position: relative; /* ::afterの基準 */
}

/* 英字の大見出し（ページ別に content を切替） */
.h1_title.service::after{
  content: "SERVICE";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(3.6rem, 6vw, 6.0rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255,255,255,0.25);
  pointer-events: none;
}


.content_area {
	padding: 0 20px;
}

/* 約款・料金表等はこちら：pで右寄せ、リンクにアンダーライン、矢印は線2本で下向きV（CSS） */
.service-content .service-item-link {
    text-align: right;
}
.service-content .service-item-link a {
    color: #000;
    padding-right: 15px;
    position: relative;
    display: inline-block;
}
/* 下向きシェブロン＝線2本でV字 */
.service-content .service-item-link a::before,
.service-content .service-item-link a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 70%;
    width: 10px;
    height: 2px;
    background: #0077C0;
    transform-origin: right center;
    transform: translateY(-50%) rotate(45deg);
}
.service-content .service-item-link a::after {
    transform: translateY(-50%) rotate(135deg);
}



a[target="_blank"] {
    color: #000;
}

.service-docs-item {
    line-height: 4rem;
}

#docs {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 80px calc(50vw - 50%);
    background: #ECEEF0;
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .h1_bg.service::before {
    clip-path: polygon(0 0, 72% 0, 56% 100%, 0 100%);
  }

  .h1_bg.service::after {
    background-size: cover;
  }

  .h1_bg.service .h1_inner {
    padding: clamp(24px, 5vw, 32px) 15px;
  }

  #docs {
    padding: 10px 20px;
	  margin-top: 50px;
  }

  .service-docs-item {
    line-height: 2.4rem;
  }
	
}