/* style.css */
/* ベース指定 */
:root{
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
html,
body {
    height: 100%;
}
body {
    font-family: var(--font-sans);
    /* 和文の詰め（プロポーショナル幅） */
    font-feature-settings: "palt" 1;

    font-size: 10px;  /* 以下、remで指定 */
    line-height: 1.6;
    background-color: #fff;
    color: #333;

    /* ここから追加 */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.pconly {
  display: block;
}
.sponly {
  display: none;
}
@media screen and (max-width: 600px) {
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/* content container */
.cc {
    width: 1280px;
    margin: 0 auto;
}
/* header*/
header {
  background: #fff;
}
header .cc {
    display: flex;
    justify-content: space-between;
}

header h1 {
    padding: 10px;
}
header h1 a {
    transition: all .3s;
}
header h1 a:hover {
    opacity: .7;
}
header h1 a img {
    height: 50px;
    vertical-align: middle;
}
header h1 a img.h30 {
    height: 30px;
    margin-left: 20px;
    vertical-align: middle;
}
/* global navi */
header nav ul {
    display: flex;
    justify-content: space-around;
}
header nav a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 15px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 70px;
    color: #333;
    transition: color .3s ease;
}
header nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #0077cc;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}
header nav a:hover {
    color: #0077cc;
}
header nav a:hover::after {
    transform: translateX(0);
    opacity: 1;
}
header nav a::after {
    will-change: transform, opacity;
}

/* main */
main {
  flex: 1 0 auto;
}
section {
  width: 100%;
}
section#hero {
  position: relative;
}
section#hero img {
  position: relative;
  z-index: -1;
  width: 100%;
  object-fit: cover; /* 余白を作らず拡大してトリミング */
  display: block;
}
section#hero .hero_text {
  position: absolute;
  top: 50%;
  z-index: 110;
  margin-top: -50px;
  padding: 0 20px;
  transform: translateY(-50%);
  color: #fff;
}
section#hero .hero_text h2 {
  font-size: 52px;
  font-weight: 900;
}
section#hero .hero_text p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}
section#hero .cta {
  padding-top: 20px;
}
section#hero .cta a {
  display: block;
  background: url(./../img/common/phone.svg) no-repeat left 1em center;
  background-size: auto 40px;
  background-color: rgba( 0, 0, 0, .3 );
  width: 100%;
  max-width: 400px;
  padding: 1em 2em;
  padding-left: 3em;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  border-radius: 6px;

  transition: all .3s;
}
section#hero .cta a span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  margin-bottom: 5px;
  
}
section#hero .cta a:hover {
  background-color: #477fc0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
section#hero .cta_fax {
  background: rgba( 255, 255, 255, .6 );
  width: 100%;
  max-width: 400px;
  padding: .5em 2em;
  color: #333;
  font-size: 18px;
  font-weight: 900 !important;
  text-align: center;
  text-shadow: none !important;
  border-radius: 6px;
}
section#hero .cta_fax span {
  font-size: 14px;
  font-weight: 500 !important;
  margin-right: 20px;
}
/* slider */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.slider .slide.active {
  opacity: 1;
  position: relative;
}
.slider img {
  width: 100%;
  height: auto;
  display: block;
}
.slider_mask {
  position: absolute;
  top: 0;
  z-index: 100;
}
.slider_mask {
  width: 100%;
  height: auto;
  display: block;
}

/* About us */
section#about {
  position: relative;
  background:
    linear-gradient(to bottom, #ffffff 60%, #f4f7fb 100%);
  background-size: cover;
  overflow: hidden;
}

/* 埋め込みSVG波形 */
section#about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: no-repeat bottom center;
  background-size: cover;
  opacity: 0.7;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'><path fill='%235d8ac4' fill-opacity='0.20' d='M0,64 C480,160 960,0 1440,96 L1440,160 L0,160 Z'/><path fill='%235d8ac4' fill-opacity='0.15' d='M0,96 C480,144 960,32 1440,128 L1440,160 L0,160 Z'/></svg>");
}
section#about .cc {
  display: flex;
  padding: 100px 20px 250px;
  justify-content: space-between;
}
section#about .cc .text_box {
  width: 50%;
}
section#about .cc .text_box h2 {
  color: #0077cc;
}
section#about .cc .text_box h2 span.small {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
section#about .cc .text_box h2 span.big {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2em;
}
section#about .cc p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 2;
}
section#about .cc p.btn_box {
  margin-top: 50px;
}
section#about .cc p.btn_box a {
  display: block;
  width: fit-content;
  background: #0077cc;
  padding: 10px 30px;
  color: #fff;
  font-weight: 600;
  border-top: 1px solid rgba( 255, 255, 255, .2 );
  border-left: 1px solid rgba( 255, 255, 255, .2 );
  border-right: 1px solid rgba( 0, 0, 0, .2);
  border-bottom: 2px solid rgba( 0, 0, 0, .2);
  border-radius: 4px;

  transition: all .3s;
}
section#about .cc p.btn_box a:hover {
  opacity: .8;
}
section#about .cc .img_box {
  width: 50%;
}
section#about .cc .img_box img {
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  vertical-align: bottom;
}
/* service */
section#service {
  position: relative;
  background: linear-gradient(to bottom, #d3dfed 0%, #e9eff6 80%, #ffffff 100%);
  color: #333;
  overflow: hidden;
}

/* 波（上向き・白に自然に切り替える） */
section#service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  opacity: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'><path fill='%23ffffff' fill-opacity='1' d='M0,100 C480,20 960,140 1440,60 L1440,160 L0,160 Z'/><path fill='%23ffffff' fill-opacity='0.85' d='M0,120 C480,40 960,160 1440,80 L1440,160 L0,160 Z'/></svg>");
}
section#service .cc {
  padding: 100px 20px 250px;
}
section#service .cc h2 {
  position: relative;
  color: #0077cc;
}
section#service .cc h2 span.small {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
section#service .cc h2 span.small::after {
  content: '';
  position: absolute;
  top: 50%;
  background: #0077cc;
  width: 200px;
  height: 2px;
  margin-left: 20px;
  transform: translateY( -50% );
}
section#service .cc h2 span.big {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2em;
}
section#service .service-items {
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  gap: 60px;
}
section#service .service-item {
  display: flex;
  align-items: center;
  gap: 40px;
}
section#service .service-item:nth-child(even) {
  flex-direction: row-reverse;
}
section#service .service-item .thumb {
  flex: 1;
}
section#service .service-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
section#service .service-item .content {
  flex: 1;
}
section#service .service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}
section#service .service-item h3 span {
  font-size: 20px;
  color: #0077cc;
  font-weight: 600;
  margin-right: 10px;
}
section#service .service-item p {
  font-size: 18px;
  line-height: 2;
}

/* 全体 */
section#strength {
  position: relative;
  background:
    linear-gradient(to bottom, #ffffff 60%, #f4f7fb 100%);
  background-size: cover;
  overflow: hidden;
}
section#strength .cc {
  padding: 100px 20px 250px;
}

/* 埋め込みSVG波形 */
section#strength::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: no-repeat bottom center;
  background-size: cover;
  opacity: 0.7;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'><path fill='%235d8ac4' fill-opacity='0.20' d='M0,64 C480,160 960,0 1440,96 L1440,160 L0,160 Z'/><path fill='%235d8ac4' fill-opacity='0.15' d='M0,96 C480,144 960,32 1440,128 L1440,160 L0,160 Z'/></svg>");
}

/* 見出し */
section#strength .cc h2 {
  position: relative;
  color: #0077cc;
}
section#strength .cc h2 span.small {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
section#strength .cc h2 span.small::after {
  content: '';
  position: absolute;
  top: 50%;
  background: #0077cc;
  width: 200px;
  height: 2px;
  margin-left: 20px;
  transform: translateY( -50% );
}
section#strength .cc h2 span.big {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2em;
}
/* カードレイアウト */
.strength-items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.strength-item {
  flex: 1;
  min-width: 320px;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.strength-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.strength-item h3 {
  font-size: 1.3rem;
  color: #0077cc;
  font-weight: 700;
  margin-bottom: 15px;
}
.strength-item p {
  font-size: 1rem;
  line-height: 1.8;
}
.strength-item img {
  height: 80px;
  margin-bottom: 20px;
  vertical-align: bottom;
}
section#strength .safety {
  background: #e7eff8;
  margin-top: 50px;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
section#strength .safety h3 {
  display: flex;
  gap: .4rem;
  color: #3b6da8;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: .3rem;
  border-bottom: 2px solid rgba(93, 138, 196, 0.4);
}
section#strength .safety h3 .icon {
  vertical-align: bottom;
  margin-top: 6px;
}
section#strength .safety p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
}

/* contact */
#contact {
  background: linear-gradient(to bottom, #d3dfed 0%, #e9eff6 80%, #ffffff 100%);
  padding: 80px 0;
}
#contact .two-column {
  display: flex;
  gap: 0;
}
#contact .col {
  flex: 1;
}
section#contact .cc .col:first-of-type {
  padding-right: 20px;
  border-right: 1px solid rgba( 255, 255, 255, .8 );
}
section#contact .cc .col:last-of-type {
  
  padding-left: 20px;
  border-left: 1px solid rgba( 0, 0, 0, .1 );
}
section#contact .cc .col h2 {
  position: relative;
  color: #0077cc;
  text-align: center;
}
section#contact .cc .col h2 span.small {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
section#contact .cc .col h2 span.big {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2em;
}
section#contact .cc .col .text_box {
  color: #0077cc;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
}
section#contact .cc .col .tel {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 20px auto 0;
}
section#contact .cc .col .tel dt span {
  position: relative;
  top: 50%;
  display: inline-block;
  background: #333;
  width: fit-content;
  margin-right: 20px;
  padding: 0 10px;

  color: #fff;
  font-size: 16px;
  font-weight: 800;

  transform: translateY(-50%);
}
section#contact .cc .col .tel dd {
  font-size: 48px;
  font-weight: 900;
}

section#contact .cc .col .fax {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 0  auto 20px;
}
section#contact .cc .col .fax dt span {
  position: relative;
  top: 50%;
  display: inline-block;
  background: #3b6da8 ;
  width: fit-content;
  margin-right: 20px;
  padding: 0 10px;

  color: #fff;
  font-size: 14px;
  font-weight: 800;

  transform: translateY(-50%);
}
section#contact .cc .col .fax dd {
  font-size: 22px;
  font-weight: 900;
}

section#contact .cc .col .open {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
}
section#contact .cc .col .link {
  margin-top: 50px;
  text-align: center;
}
section#contact .cc .col .link span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
section#contact .cc .col .link a {
  transition: all .3s;
}
section#contact .cc .col .link a:hover {
  opacity: .8;
}
section#contact .cc .col .link img {
  border-radius: 6px;
  vertical-align: bottom;
}
section#contact .map {
  text-align: center;
}
section#contact .map iframe {
  width: 420;
  height: 300px;
  margin-top: 40px;
  border: 0;
  border-radius: 10px;
}


section#contact .cc .col .address {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
section#contact .cc .col .address span {
  display: inline-block;
  background: #333;
  width: fit-content;
  margin-right: 10px;
  padding: 0 10px;

  color: #fff;
  font-size: 16px;
  font-weight: 600;

}

/* footer */
footer {
  background: #4b7fb6;
  margin-top: auto;
}
footer .cc {
  padding: 50px 20px;
}
footer .cc nav {}
footer .cc nav ul {
  display: flex;
  justify-content: center;
}
footer .cc nav ul li {
  margin: 0 10px;
}
footer .cc nav ul li a {
  color: rgba( 255, 255, 255, .8 );
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}
footer .cc nav ul li a:hover {
  color: rgba( 255, 255, 255, 1 );
}
footer .cc .copy {
  margin-top: 50px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

/* レスポンシブ */
@media screen and (max-width: 960px) {
  .strength-items {
    flex-direction: column;
    align-items: center;
  }
  .strength-item {
    width: 90%;
  }
}



/* =========================================================
   追加レスポンシブCSS（既存改変なし・追記専用）
   ========================================================= */

/* 1280px以下：コンテナ可変幅 */
@media screen and (max-width: 1280px) {
  header nav {
    display: none;
  }
    /* ハンバーガー表示 */
  .nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
  }
  .nav-toggle__bar {
    display: block;
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: #0077cc;
    transition: transform .25s ease, top .25s ease, opacity .25s ease;
  }
  .nav-toggle__bar:nth-child(1) { top: 10px; }
  .nav-toggle__bar:nth-child(2) { top: 18px; }
  .nav-toggle__bar:nth-child(3) { top: 26px; }

  /* 開閉状態 */
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }

  /* ナビ全体 */
  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0 0;
    border-top: 2px solid #0077cc;
  }
  header nav {
    position: absolute;
    top: -100%; left: 0;
    width: 100%;
    background: #fff;

    transition: all .3s;
  }
  header nav ul li {
    width: 100%;
  }
  header nav ul li a {
    display: block;
    width: 100%;
  }
  header nav ul li a::after {
    left: 0;
    height: 1px;
    opacity: 1;
    transform: translateX(0);
  }
  
  header nav.is-open {
    display: block;
    top: 70px; left: 0;
    z-index: 999;
  }

  body.no-scroll {
    overflow: hidden;
  }
  .cc {
    width: 100%;
  }
  section#hero {
    overflow: hidden;
  }
  section#hero .hero_text h2 {
    font-size: 32px;
  }
  section#hero .hero_text p {
    font-size: 18px;
  }
  section#hero .cta a {
    background-size: auto 30px;
    font-size: 24px;
  }
  section#hero .cta a span {
    font-size: 12px;
    
  }
  section#about .cc {
    padding: 50px 20px 180px;
  }
  section#about .cc .text_box h2 span.small {
    font-size: 14px;
  }
  section#about .cc .text_box h2 span.big {
    font-size: 24px;
  }
  section#about .cc p {
    font-size: 14px;
  }
  section#service .cc {
    padding: 50px 20px 180px;
  }
  section#service .cc h2 span.small {
    font-size: 14px;
  }
  section#service .cc h2 span.big {
    font-size: 24px;
  }
  section#service .service-item h3 {
    font-size: 20px;
  }
  section#service .service-item h3 span {
    font-size: 20px;
  }
  section#service .service-item p {
    font-size: 16px;
  }
  section#strength .cc {
    padding: 50px 20px 180px;
  }
  section#strength .cc h2 span.small {
    font-size: 14px;
  }
  section#strength .cc h2 span.big {
    font-size: 24px;
  }
  .strength-item h3 {
    font-size: 18px;
  }
  .strength-item p {
    font-size: 14px;
  }
  section#strength .safety h3 {
    font-size: 20px;
  }
  #contact {
    padding: 40px 0 80px;
  }
  section#contact .cc .col h2 span.small {
    font-size: 14px;
  }
  section#contact .cc .col h2 span.big {
    font-size: 24px;
  }
  section#contact .cc .col .text_box {
    font-size: 18px;
  }
  section#contact .cc .col .tel dd {
    font-size: 32px;
  }
  section#contact .cc .col .open {
    font-size: 16px;
  }
  section#contact .cc .col .link {
    margin-top: 30px;
  }
  section#contact .cc .col .link img {
    width: 100%;
    max-width: 360px;
  }
  section#contact .map iframe {
    width: 100%;
    max-width: 360px;
    height: 180px;
    margin-top: 20px;
  }
  section#contact .cc .col .address {
    font-size: 14px;
  }
  section#contact .cc .col .address span {
    font-size: 12px;
  }

}
@media screen and (max-width: 900px) {
  header .cc {
    flex-wrap: wrap;
    align-items: center;
  }
  section#hero img {
    width: auto;
    height: 600px;
    object-fit: cover; 
  }
  .slider img {
    position: relative;
    right: 250px;
    width: auto;
    height: 600px;
  }
  .slider_mask img {
    position: relative;
    right: 250px;
    width: auto;
    height: 600px;
  }
  section#about .cc .text_box {
   padding-right: 20px;
  }
  section#about .cc .img_box {
    overflow: hidden;
    padding-left: 20px;
    border-radius: 8px;
  }
  section#about .cc .img_box img {
    position: relative;
    left: -50px;
    width: auto;
    height: 350px;
    object-fit: cover;
  }

}
@media screen and (max-width: 600px) {
  header {
    height: 60px;
  }
  header h1 a img {
      height: 30px;
  }
  header h1 a img.h30 {
      height: 20px;
  }
  header nav.is-open {
    top: 53px;
  }
  section#hero .hero_text h2 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    font-size: 28px;
    margin-bottom: 20px;
  }
  section#hero .hero_text p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    font-size: 14px;
  }
  section#hero .cta a {
    margin-top: 40px;
    background-color: rgba(0, 0, 0, .6);
  }
  .slider img {
    right: 800px;
  }
  .slider_mask img {
    right: 500px;
  }
  section#about .cc {
    display: block;
  }
  section#about .cc p.btn_box a {
    width: 100%;
    text-align: center;
  }
  section#about .cc .text_box {
   width: 100%;
   padding-right: 0;
  }
  section#about .cc .img_box {
   width: 100%;
   margin-top: 50px;
  }
  section#service .service-item {
    flex-wrap: wrap;
    gap: 10px;
  }
  section#service .service-item .thumb {
    flex: auto;
    width: 100%;
  }
  section#service .service-item p {
    font-size: 14px;
  }
  .strength-items {
    gap: 10px;
  }
  .strength-item {
    width: 100%;
  }
  section#strength .safety p {
    font-size: 14px;
  }
  #contact .two-column {
    display: block;
  }
  section#contact .cc .col:first-of-type {
    padding: 0 20px;
    border-right: 0;
  }
  section#contact .cc .col:last-of-type {
    padding: 0 20px;
    margin-top: 20px;
    border-left: 0;
  }
  footer .cc nav ul {
    display: block;
  }  
  footer .cc nav ul li {}
  footer .cc nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba( 0, 0, 0, .3 );
  }
  footer .cc nav ul li:last-of-type a {
    border-bottom: 0;
  }
}


/* =========================================================
   サブページ
   ========================================================= */
#sub_hero {
  position: relative;
  background: linear-gradient(135deg, #1e73be 0%, #3da8ef 50%, #cde4ff 100%), 
              radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 70%);
  background-blend-mode: overlay;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#sub_hero .cc {
  padding: 0 20px;
}
#sub_hero .cc h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#sub_hero .cc h2 .big {
  display: block;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .1em;
}
#sub_hero .cc h2 .small {
  display: block;
  color: #fff;
  font-size: 18px;
  letter-spacing: .1em;
}
#breadcrumbs {
  background: #e7eff8;
}
#breadcrumbs .cc {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}
#breadcrumbs .cc a {
  color: #477fc0;
  transition: all .3s;
}
#breadcrumbs .cc a:hover {
  opacity: .8;
}
#breadcrumbs .cc span {
  padding-left: 10px;
}
#breadcrumbs .cc span:before {
  content: "»";
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  #sub_hero .cc h2 .big {
    font-size: 24px;
  }
  #sub_hero .cc h2 .small {
    font-size: 16px;
  }
}

/* =========================================================
   個人情報保護方針
   ========================================================= */
#privacy {}
#privacy .cc {
  padding: 100px 20px;
  font-size: 16px;
  line-height: 1.8;
}
#privacy .cc p {
  margin: 0 0 1.2em;
}

#privacy .cc h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e73be;
  border-left: 4px solid #1e73be;
  padding-left: 0.6em;
  margin: 2.2em 0 1em;
}

#privacy .cc ul {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
  list-style: disc;
}

#privacy .cc li {
  margin-bottom: 0.4em;
}

#privacy .cc strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  #privacy .cc {
    padding: 1.5em 1em;
  }
  #privacy .cc h3 {
    font-size: 1.1rem;
  }
}

/* =========================================================
   求人情報
   ========================================================= */
#recruit {}
#recruit .cc {
  padding: 100px 20px;
  font-size: 16px;
  line-height: 1.8;
}
#recruit .cc p {
  margin: 0 0 1.2em;
}

/* =========================================================
   会社概要
   ========================================================= */
#company {}
#company .cc {
  padding: 100px 20px;
  font-size: 16px;
  line-height: 1.8;
}
#company .cc p {
  margin: 0 0 1.2em;
}
#company .cc h3 {
  color: #0077cc;
}
#company .cc h3 .small {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}
#company .cc h3 .big {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2em;
}
#company .cc .message_box {
  position: relative;
  padding-bottom: 200px;
  margin-bottom: 50px;
}
#company .cc .message_box .text {
  position: relative;
  z-index: 10;
}
#company .cc .message_box .text p {
  background: rgba( 255, 255, 255 .5 );
  font-size: 18px;
  margin-top: 20px;
  line-height: 180%;
}
#company .cc .message_box .text p span {
  background:#fff;
  padding: 0 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
#company .cc .message_box .text p span.name {
  font-size: 14px;
}
#company .cc .message_box .img {
  position: relative;
}
#company .cc .message_box .img img {
  position: absolute;
  left: 0; bottom: -200px;
  width: 100%;
}
#company .cc .about_company {}
#company .cc .about_company dl {
  display: flex;
  margin-top: 20px;
  border-top: 1px solid #0077cc;
}
#company .cc .about_company dl dt {
  width: 100px;
  height: 36px;
  background: #0077cc;
  padding: 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}
#company .cc .about_company dl dd {
  width: calc( 100% - 100px );
  margin-left: 20px;
  font-size: 16px;
  line-height: 36px;
}
@media screen and (max-width: 1280px) {
  #company .cc h3 .small {
    font-size: 14px;
  }
  #company .cc h3 .big {
    font-size: 24px;
  }
  #company .cc .message_box {
    padding-bottom: 100px;
  }
  #company .cc .message_box .text p {
    font-size: 14px;
  }
  #company .cc .message_box .img img {
    bottom: -100px;
  }
  #company .cc .about_company dl dt {
    font-size: 13px;
  }
  #company .cc .about_company dl dd {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #company .cc {
    padding: 1.5em 1em;
  }
  #company .cc h3 {
    font-size: 1.1rem;
  }
}

/* =========================================================
   求人情報
   ========================================================= */

#recruit .cc {
  padding: 100px 20px;
}

.recruit-lead {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #333;
}

/* 情報ブロック */
.recruit-list {
  border-top: 1px solid #cfe1f3;
}

.recruit-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #cfe1f3;
}

.recruit-item .label {
  width: 140px;
  color: #0077cc;
  font-weight: 600;
  font-size: 16px;
}

.recruit-item .value {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}

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

/* 応募ボタン */
/* 応募エリア */
.recruit-apply {
  margin-top: 70px;
  margin-bottom: 50px;
  text-align: center;
}

/* 電話ボタン本体 */
.recruit-tel-btn {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  padding: 15px 30px;
  border-radius: 10px;

  background: linear-gradient(
    to bottom,
    #e7eff8 0%,
    #dbe8f6 100%
  );

  color: #1e73be;
  text-decoration: none;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* ホバー */
.recruit-tel-btn:hover {
  background: linear-gradient(
    to bottom,
    #dce9f7 0%,
    #cfe1f3 100%
  );
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* 上の説明ラベル */
.recruit-tel-btn .label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 6px;
  color: #3b6da8;
}

/* 電話番号 */
.recruit-tel-btn .tel {
  display: block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

/* 担当者 */
.recruit-tel-btn .sub {
  display: block;
  font-size: 14px;
  color: #333;
}


/* SP調整 */
@media screen and (max-width: 768px) {
  #recruit .cc {
    padding: 1.5em 1em;
  }
  .recruit-item {
    flex-direction: column;
  }

  .recruit-item .label {
    width: auto;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .recruit-lead {
    font-size: 16px;
  }

  .recruit-apply {
    margin-top: 50px;
  }

  .recruit-tel-btn {
    padding: 20px 18px;
    border-radius: 8px;
  }

  .recruit-tel-btn .tel {
    font-size: 26px;
  }
}