@charset "UTF-8";
/* --- @mixin box-center
-------------------------------------------*/
/* ---カラー指定
-------------------------------------------*/
/* --- PC/SP　メディアクエリ
-------------------------------------------*/
/* ---フォントサイズ指定
-------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Sawarabi+Gothic&display=swap");
.w100 {
  font-weight: 100;
}

.w200 {
  font-weight: 200;
}

.w300 {
  font-weight: 300;
}

.w400 {
  font-weight: 400;
}

.w500 {
  font-weight: 500;
}

.w700 {
  font-weight: 700;
}

.w900 {
  font-weight: 900;
}

/* ---マージン調整
-------------------------------------------*/
.mb-1p {
  margin-bottom: clamp(2px, 1%, 18px) !important;
}

.mb-3p {
  margin-bottom: clamp(5px, 3%, 30px) !important;
}

.mb-5p {
  margin-bottom: clamp(10px, 5%, 50px) !important;
}

.mb-10p {
  margin-bottom: clamp(20px, 10%, 80px) !important;
}

.mt-1p {
  margin-top: clamp(2px, 1%, 18px) !important;
}

.mt-3p {
  margin-top: clamp(5px, 3%, 30px) !important;
}

.mt-5p {
  margin-top: clamp(10px, 5%, 50px) !important;
}

.mt-10p {
  margin-top: clamp(20px, 10%, 80px) !important;
}

.mt-20p {
  margin-top: clamp(50px, 20%, 160px) !important;
}

/* ---背景色
-------------------------------------------*/
.bg--white {
  background: #fff !important;
}

body, p, a, span, li, th, td {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 2rem);
  line-height: 1.8;
}

.txt-ss {
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
}

.txt-s {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
}

.tl-main {
  font-size: clamp(1.4rem, 2.6rem + 0.625vw, 4rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .tl-main {
    font-size: clamp(1.4rem, 1.8rem + 0.625vw, 2rem);
  }
}

@media screen and (max-width: 768px) {
  .pc-on {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc-on {
    display: inline;
  }
}

@media screen and (min-width: 769px) {
  .sp-on {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-on {
    display: inline;
  }
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.txt-l {
  text-align: left;
}

.txt-c {
  text-align: center;
}

.txt-r {
  text-align: right;
}

.txt-next {
  padding-top: 1.5rem;
}

.txt-red {
  color: #EB4720;
}

.posi--r {
  position: relative;
}

.posi--a {
  position: absolute;
}

table {
  width: 100%;
}

img {
  vertical-align: bottom;
}

a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

sup {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: 0.1em;
  line-height: 1;
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fade {
  opacity: 0;
}

/* ふわっとフェードイン　*/
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* シュッとスライドイン　*/
.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}
.slidein.slidein-left {
  transform: translate(-100%, 0);
}
.slidein.slidein-right {
  transform: translate(100%, 0);
}
.slidein.slidein-up {
  transform: translate(0, -100%);
}
.slidein.slidein-bottom {
  transform: translate(0, 100%);
}
.slidein.scrollin {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.block__bg01 {
  position: absolute;
  width: 50%;
  max-width: 400px;
  top: 0;
  left: -5%;
  z-index: -1;
}

.block__bg02 {
  position: absolute;
  width: 50%;
  max-width: 247px;
  bottom: 2%;
  right: -5%;
  z-index: -1;
}

.block__bg02-left {
  position: absolute;
  width: 50%;
  max-width: 247px;
  bottom: 2%;
  left: -5%;
  z-index: -1;
}

/* 画像の反転 */
.flip-horizontal {
  transform: scale(-1, 1);
}

/* ドット付きリスト　*/
.dot-list {
  margin-left: 0.5rem;
  padding-left: 1rem;
}

.dot-list li {
  list-style: disc;
}

/* 外部リンク　*/
.link-out::after {
  font-family: "Font Awesome 6 Free"; /* または使用中のバージョン名 */
  font-weight: 900; /* Solidアイコンは900、Regularは400など */
  content: "\f08e"; /* 表示したいアイコンのUnicode */
  margin-left: 0.5rem;
}

/* ボタンアニメーション　*/
.btn {
  position: relative;
  display: block;
  width: max-content;
  transition: 0.2s;
  box-sizing: border-box;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  z-index: -1;
}

.btn:hover::before {
  transform-origin: left top;
  transform: scaleX(1);
}

/* お問い合わせ　*/
.btn.btn-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5vw 2.5vw;
  background-color: #EB4720;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #EB4720;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .btn.btn-contact {
    padding: 5vw 3vw;
  }
}
.btn.btn-contact .btn-text {
  position: relative;
  display: block;
  z-index: 1;
  transition: color 0.3s ease;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 2rem);
  line-height: 1.8;
  line-height: 1;
}
.btn.btn-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn.btn-contact:hover {
  opacity: 1 !important;
}
.btn.btn-contact:hover .btn-text {
  color: #EB4720;
}
.btn.btn-contact:hover::before {
  transform: translateX(0);
}

/* 紺色ボタン */
.btn.btn-navy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5vw 5vw;
  background-color: #04489B;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #04489B;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .btn.btn-navy {
    padding: 2vw 8vw;
  }
}
.btn.btn-navy .btn-text {
  position: relative;
  display: block;
  z-index: 999;
  transition: color 0.3s ease;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 2rem);
  line-height: 1.8;
  line-height: 1;
}
.btn.btn-navy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn.btn-navy:hover {
  opacity: 1 !important;
}
.btn.btn-navy:hover .btn-text {
  color: #04489B;
}
.btn.btn-navy:hover::before {
  transform: translateX(0);
}

.btn-text.case {
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  font-weight: 700;
}
.btn-text.case span {
  display: block;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  font-weight: normal;
}

/* 角丸ボタン黒　*/
.btn.btn-black {
  position: relative;
  padding: 1vw 2.5vw;
  background-color: #fff;
  color: #222222;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  box-sizing: border-box;
  border-radius: 50px;
  border: 2px solid #222222;
}
@media screen and (max-width: 768px) {
  .btn.btn-black {
    padding: 2vw 4vw;
  }
}

.btn.btn-black::before {
  background: #222222;
  border-radius: 50px;
}

/* ホバー時のスタイル */
.btn.btn-black:hover {
  color: #fff;
}

/* もっと見る 青反転　*/
.btn.btn-arrow-blue::before {
  background: #0A60C4;
}

.btn.btn-arrow-blue:hover {
  color: #fff;
}

.btn.btn-arrow-blue:hover::after {
  color: #fff;
}

/* もっと見る 白反転　赤矢印　*/
.sec-blue .btn.btn-arrow-red::before {
  background: #fff;
}

.sec-blue .btn.btn-arrow-red:hover {
  color: #0889CE;
}

.sec-blue .btn.btn-arrow-red:hover::after {
  color: #0889CE;
}

/* ライトブルー反転　*/
.btn-lightblue:hover {
  background: #DDE9F7;
  transition: 0.5s;
}

/* もっと見る 白矢印　*/
.btn-arrow-white {
  color: #fff;
}
.btn-arrow-white:after {
  font-family: "Font Awesome 6 Free"; /* または使用中のバージョン名 */
  font-weight: 900; /* Solidアイコンは900、Regularは400など */
  content: "\f061"; /* 表示したいアイコンのUnicode */
  margin-left: 0.5rem;
  color: #fff;
}

/* --- haader 
-------------------------------------------*/
.header {
  position: fixed;
  width: 96%;
  left: 2%;
  z-index: 10;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 5px 8px -6px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .header {
    border-radius: 0 0 10px 10px;
  }
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: inherit;
  padding: 1.5% 0;
}
@media screen and (max-width: 768px) {
  .header .inner {
    padding: 3% 0;
  }
}

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

.header-nav, .header-nav ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-nav, .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5vw;
  }
}

.header-nav ul {
  width: 100%;
}

.header-nav__menu {
  padding: 0 1vw;
}
@media screen and (max-width: 768px) {
  .header-nav__menu {
    display: block;
    width: 100%;
    padding: 3vw 0;
    border-bottom: 1px solid #0889CE;
  }
}
.header-nav__menu a {
  position: relative;
  color: #0A60C4;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .header-nav__menu a::after {
    position: absolute;
    left: 0;
    bottom: -4px;
    content: "";
    width: 100%;
    height: 2px;
    background: #EB4720;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
}
@media screen and (min-width: 769px) {
  .header-nav__menu a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .header-nav__menu a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.6rem;
  }
  .header-nav__menu a:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    padding-right: 0.5rem;
    font-family: "Font Awesome 6 Free";
    content: "\f054";
    font-weight: 700;
  }
}
.header-nav .btn-contact {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .header-nav .btn-contact {
    display: block;
    width: 60%;
    margin: 0 auto;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 25vh;
    padding-left: 5vw;
    padding-right: 5vw;
    background-color: #0A60C4;
    z-index: 100;
    opacity: 0;
    box-sizing: border-box;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
  }
}

.header-nav.active {
  visibility: visible;
  opacity: 1;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) {
  .header__hamburger {
    display: none;
  }
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #0A60C4;
  position: relative;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__main.active {
  display: block;
  opacity: 1;
}

.header__hamburger.active {
  margin-top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
  background-color: #FFF;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
  background-color: #FFF;
}

/* ---footer
-------------------------------------------*/
.footer {
  background: #04489B;
  color: #fff;
}
.footer .inner {
  max-width: inherit;
  padding: 3% 0;
}
@media screen and (min-width: 769px) {
  .footer .inner {
    display: flex;
    justify-content: space-between;
  }
}
.footer .footer-nav {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav {
    flex-direction: column;
  }
}
.footer .footer-nav__wrapp {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer .footer-nav__wrapp {
    width: 20%;
    padding-right: 3%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer-nav__wrapp:nth-of-type(1) {
    width: 40%;
  }
}
.footer .footer-nav__menu__child {
  margin-top: -0.5rem;
  margin-bottom: min(25px, 1.5vw);
}
.footer .footer-nav__menu__child li {
  margin-bottom: min(10px, 0.75vw);
  line-height: 1.2;
}
.footer .footer-nav__menu__child a {
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
  padding-left: 0.5rem;
}
.footer .footer-nav__menu__child a:before {
  padding-right: 0.25rem;
  content: "-";
}
.footer .footer-nav__menu > a {
  display: block;
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  border-left: 6px solid #0889CE;
  line-height: 1.4;
}
.footer .footer-logo {
  width: 18%;
  max-width: 248px;
  margin-right: 8%;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    width: 60%;
    margin: 0 auto 5% auto;
  }
}
.footer .footer-logo a {
  display: block;
  width: 100%;
  padding-bottom: 2vw;
  border-bottom: 2px solid #EB4720;
}
@media screen and (max-width: 768px) {
  .footer .btn-contact {
    width: 60%;
    margin: 5% auto 0 auto;
    padding: 3%;
  }
}

/* --- body
-------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html[lang=ja] {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #222222;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

ruby, ruby rt {
  line-height: 1;
}

.img-vtop {
  vertical-align: top !important;
}

.img-vbottom {
  vertical-align: bottom !important;
}

p.txt-normal + p.txt-normal {
  padding-top: 1.5rem;
}

img {
  width: 100%;
  max-width: 100%;
}

[id] {
  scroll-margin-top: 14vw;
}
@media screen and (min-width: 769px) {
  [id] {
    scroll-margin-top: 95px; /* ヘッダーの高さに合わせる */
  }
}

/* --- common
-------------------------------------------*/
main.main {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.block {
  padding: min(50px, 6vw) 0 min(80px, 10vw) 0;
}

.block__box {
  padding: min(30px, 6vw) min(30px, 6vw) min(16px, 3vw) min(30px, 6vw);
  border-radius: 12px;
}

.block__box.blue {
  background-color: rgba(11, 96, 196, 0.14);
}

.block__box.white {
  background-color: rgba(255, 255, 255, 0.85);
}

.block__box.sec-blue {
  background-color: #0889CE;
  color: #fff;
}

.colmn-cross {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .colmn-cross__main {
    width: 55%;
    max-width: 700px;
  }
}
@media screen and (min-width: 769px) {
  .colmn-cross__sub {
    position: absolute;
    width: 33%;
    max-width: 400px;
    right: 0;
    top: 80px;
  }
}

.leadcopy {
  margin-bottom: 5%;
}
@media screen and (min-width: 769px) {
  .leadcopy p {
    text-align: center;
  }
}

/* ブロックの高さが小さすぎる時用　*/
.short-block {
  min-height: 25vh;
}
@media screen and (min-width: 769px) {
  .short-block {
    min-height: 50vh;
  }
}

/* --- TITLE
-------------------------------------------*/
.main-tl {
  display: block;
  width: fit-content;
  position: relative;
  letter-spacing: 0.1rem;
  margin-bottom: min(50px, 8vw);
  padding: 0 0 1rem 0.5rem;
  font-size: clamp(1.4rem, 2.6rem + 0.625vw, 4rem);
  line-height: 1.8;
  color: #0A60C4;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-tl {
    font-size: clamp(1.4rem, 1.8rem + 0.625vw, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .main-tl {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .main-tl span {
    text-align: center;
  }
}
.main-tl:before {
  position: absolute;
  content: "";
  width: min(12px, 1vw);
  width: 9px;
  height: 9px;
  background: #04489B;
  top: -14px;
  left: -5px;
}
.main-tl:after {
  position: absolute;
  content: "";
  width: min(16px, 1.4vw);
  width: 14px;
  height: 14px;
  background-color: rgba(235, 71, 32, 0.6);
  top: -5px;
  left: -20px;
}
.main-tl span {
  display: block;
  padding-top: 0.5rem;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  color: #222222;
}

.main-tl.tl-w {
  color: #fff;
}
.main-tl.tl-w:before {
  background: #9BD7F7;
}
.main-tl.tl-w:after {
  background-color: #EB4720;
}
.main-tl.tl-w span {
  color: #fff;
}

.tl-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.tl-center span {
  text-align: center;
}

.sub-tl__type01 {
  display: block;
  margin-bottom: min(30px, 4.5vw);
  color: #0A60C4;
  font-weight: 700;
  font-size: clamp(1.4rem, 2rem + 0.625vw, 2.8rem);
  border-bottom: 1px solid #0A60C4;
}
.sub-tl__type02 {
  margin-bottom: min(30px, 4.5vw);
  padding-left: 1.5rem;
  color: #0A60C4;
  font-weight: 700;
  border-left: 10px solid #EB4720;
  font-size: clamp(1.4rem, 2rem + 0.625vw, 2.8rem);
}
.sub-tl__txt {
  vertical-align: middle;
}

/* --- LINK
-------------------------------------------*/
.link-more {
  display: flex;
  justify-content: flex-end;
}
.link-more a {
  display: inline-block;
  position: relative;
  margin-top: min(30px, 2vw);
  padding: 0.5rem 2rem 0.5rem 0.5rem;
}
.link-more a:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 0 0 0 0.5rem;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 700;
  color: #0A60C4;
}
.link-more a:hover::after {
  color: #fff;
}
.link-more a.btn-arrow-red:after {
  color: #EB4720;
}
.link-more .btn-arrow-white {
  display: block;
  width: max-content;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 2rem);
  line-height: 1.8;
}
.link-more .btn-arrow-white:after {
  color: #fff;
}

/* ローダー */
#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease; /* ← ふわっと切り替え */
  opacity: 1;
  pointer-events: auto;
}

#loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-warp {
  width: 35%;
  height: 35%;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* シンプルなローダー（くるくる回る円） */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #666;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* --- サービス
-------------------------------------------*/
.service {
  background: #0A60C4 url("../img/common/bg_service_menu.webp") no-repeat;
  background-size: cover;
}
.service__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .service__nav {
    grid-gap: 10px;
  }
}
.service__nav__item {
  width: calc(33.3% - 20px);
}
@media screen and (max-width: 768px) {
  .service__nav__item {
    width: calc(50% - 6px);
  }
}
.service__nav__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: min(160px, 9vw);
  margin-bottom: 1.5vw;
  padding: 20px 26px;
  border-radius: 12px;
  box-sizing: border-box;
  color: #0A60C4;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .service__nav__item a {
    padding: 15% 10px;
  }
}
.service__headnav {
  display: flex;
  flex-wrap: wrap;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto min(80px, 10vw) auto;
}
@media screen and (min-width: 769px) {
  .service__headnav {
    border-top: 1px solid #0A60C4;
    border-right: 1px solid #0A60C4;
  }
}
@media screen and (max-width: 768px) {
  .service__headnav {
    gap: 2px;
  }
}
.service__headnav__item {
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .service__headnav__item {
    flex: 1;
    border-bottom: 1px solid #0A60C4;
    border-left: 1px solid #0A60C4;
  }
}
@media screen and (max-width: 768px) {
  .service__headnav__item {
    width: 32.5%;
    border: 1px solid #0A60C4;
  }
}
.service__headnav__item a {
  display: block;
  padding: 10px;
  color: #0A60C4;
}
.service__headnav__item a:hover {
  background: #DDE9F7;
}
@media screen and (max-width: 768px) {
  .service__headnav__item a {
    padding: 3px;
  }
}

.service__headnav__item.current {
  background: #0A60C4;
}
.service__headnav__item.current a {
  color: #fff;
}
.service__headnav__item.current a:hover {
  color: #DDE9F7;
  background: #0A60C4;
}

.service__nav__item.router a {
  background: #fff url("../img/common/bg_service_menu_router.webp") right top no-repeat;
  background-size: contain;
}

.service__nav__item.switch a {
  background: #fff url("../img/common/bg_service_menu_switch.webp") right top no-repeat;
  background-size: contain;
}

.service__nav__item.wireress a {
  background: #fff url("../img/common/bg_service_menu_wireress.webp") right top no-repeat;
  background-size: contain;
}

.service__nav__item.firewall a {
  background: #fff url("../img/common/bg_service_menu_fire.webp") right top no-repeat;
  background-size: contain;
}

.service__nav__item.server a {
  background: #fff url("../img/common/bg_service_menu_server.webp") right top no-repeat;
  background-size: contain;
}

/* サービストップ */
.sevice-top .service__nav {
  width: 90%;
  margin: 0 auto;
}
.sevice-top .block.service {
  padding-bottom: min(50px, 6vw);
}

/* --- TOP ニュース
-------------------------------------------*/
.top .inner.news {
  padding-top: min(100px, 12vw);
}
@media screen and (min-width: 769px) {
  .top .inner.news {
    /*padding-top: 200px;*/
  }
}

/* --- ニュース
-------------------------------------------*/
.news__list__item {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}
.news__list__ymd {
  display: block;
  width: 10rem;
  margin-right: 1vw;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  line-height: 2.4;
}
.news__list__txt {
  flex: 1;
}

.news .btn-black, .page-blog .btn-black {
  margin: min(50px, 8vw) auto 0;
}
.news .btn-black {
        margin-bottom: min(50px, 8vw);
    }

/* --- 会社概要


/* --- TOP 会社情報
-------------------------------------------*/
.company {
  margin-bottom: min(80px, 10vw);
  background-color: #0A60C4;
  background-image: url("../img/common/bg_blue_left.png"), url("../img/common/bg_blue_right.png");
  background-position: left top, right top;
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
}
@media screen and (max-width: 768px) {
  .company {
    background-blend-mode: lighten; /* 背景画像と背景色をブレンド */
  }
}
@media screen and (min-width: 769px) {
  .company__wrapp {
    display: flex;
    justify-content: space-between;
  }
}
.company__overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: url("../img/common/company_overview_img.webp") top center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .company__overview {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .company__overview {
    margin-bottom: 5vw;
    padding: 20vw 0;
  }
}
.company__overview .btn-overview {
  position: relative;
  display: block;
  padding: 0.5vw 8vw;
  background-color: rgba(0, 0, 146, 0.7);
  color: #fff;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  box-sizing: border-box;
  border-radius: 50px;
  border: 2px solid #fff;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  font-weight: 700;
}
.company__overview .btn-overview:before {
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .company__overview .btn-overview {
    padding: 1.5vw 18vw;
  }
}
.company__overview .btn-overview span {
  display: block;
}
@media screen and (min-width: 769px) {
  .company__other {
    width: 48%;
  }
}
.company__other__item {
  display: flex;
  align-items: center;
  padding: 5px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .company__other__item {
    background: #0A60C4;
  }
}
.company__other__pic {
  width: 23%;
}
.company__other__contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 5%;
}
.company__other__contents__tl {
  display: flex;
  align-items: center;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.company__other__contents__tl span {
  padding-left: 1rem;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  font-weight: normal;
  line-height: 1;
}

.company__other li:nth-of-type(even) .company__other__item {
  flex-direction: row-reverse;
  background: #0889CE;
}
.company__other li:nth-of-type(even) .company__other__item .company__other__pic {
  margin-left: 5%;
}

/* 角丸ボタン　会社概要 */
　 .btn-overview:before {
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
}

/* ホバー時のスタイル  */
.company__overview .btn {
  z-index: 1;
}
.company__overview:hover {
  opacity: 1;
}
.company__overview:hover .btn-overview {
  color: #0A60C4;
  z-index: 2;
}
.company__overview:hover .btn-overview span {
  color: #0A60C4;
}
.company__overview:hover .btn-overview::before {
  transform-origin: left top;
  transform: scaleX(1);
}

.company__other {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company__other__contents {
  margin-right: 1rem;
}
.company__other__contents .btn-arrow-white {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  font-weight: 700;
}
.company__other__contents__tl {
  margin-bottom: min(20px, 2vw);
}

/* --- 採用　コンタクト
-------------------------------------------*/
.info {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .info {
    display: flex;
    justify-content: space-between;
  }
}
.info__box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  padding: 15vw 5vw;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .info__box {
    width: 100%;
    padding: min(100px, 12vw);
  }
}
.info__box__fillter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.8s ease;
  z-index: 1;
}
.info__box.recruit {
  background: url("../img/common/bg_menu_recruit.webp") center 25%;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .info__box.recruit {
    margin-right: -100px;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
  }
}
.info__box.contact {
  background: url("../img/common/bg_menu_contact.webp") center 25%;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .info__box.contact {
    margin-left: -100px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
  }
}
.info__catch {
  margin-bottom: 1.5rem;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  z-index: 2;
  text-align: center;
}
.info .recruit .info__catch {
  color: #fff;
}
.info .contact .info__catch {
  color: #0A60C4;
}
.info__btn {
  min-height: 5vw;
}

.info__box:hover .info__box__fillter {
  background-color: rgba(0, 0, 0, 0);
}

.recruit .info__box__fillter {
  background-color: rgba(8, 137, 206, 0.6);
}

.btn-overview {
  position: relative;
  display: block;
  padding: 0.5vw 8vw;
  background-color: rgba(0, 0, 146, 0.7);
  color: #fff;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  box-sizing: border-box;
  border-radius: 50px;
  border: 2px solid #fff;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  font-weight: 700;
}
.btn-overview:before {
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
}

.btn-overview span {
  display: block;
}

.info__box.recruit .btn {
  z-index: 1;
}
.info__box.recruit:hover {
  opacity: 1;
}
.info__box.recruit:hover .btn-overview {
  color: #0A60C4;
  z-index: 2;
}
.info__box.recruit:hover .btn-overview span {
  color: #0A60C4;
}
.info__box.recruit:hover .btn-overview::before {
  transform-origin: left top;
  transform: scaleX(1);
}

.info__box.contact .btn-contact {
  border: 1px solid #fff;
  padding: 0.5vw 8vw;
}
.info__box.contact .btn-contact .btn-text {
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
}
.info__box.contact .btn {
  z-index: 1;
}
.info__box.contact:hover {
  opacity: 1;
}
.info__box.contact:hover .btn-contact {
  color: #EB4720;
  z-index: 2;
}
.info__box.contact:hover .btn-contact::before {
  transform-origin: left top;
  transform: scaleX(1);
}

a.info__btn:hover {
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .info__box.contact .btn-contact, .info__box.recruit .btn-overview {
    display: block;
    width: 80%;
    padding: 5vw 10vw;
  }
  .info__box.recruit .btn-overview {
    padding: 1vw 10vw;
  }
}
/* --- 下層ページ COMMON
-------------------------------------------*/
.bg--blue {
  background: #DDE9F7;
}

.table-type01 th, .table-type01 td {
  padding: min(20px, 4vw);
  border-bottom: 1px solid #0A60C4;
  vertical-align: top;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .table-type01 th, .table-type01 td {
    display: block;
    width: 100%;
  }
}

.table-type01 {
  width: 100%;
}
.table-type01 th {
  font-weight: normal;
  color: #0A60C4;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .table-type01 th {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .table-type01 td {
    border-bottom: 2px solid #0A60C4;
  }
}

.table-type02 {
  width: 100%;
}
.table-type02 th {
  font-weight: normal;
  text-align: left;
}

.table-type02 th, .table-type02 td {
  padding: min(20px, 4vw);
  border-bottom: 1px solid #999;
}

.list-dot li {
  list-style: disc;
}

/* --- 下層ページ　タイトル
-------------------------------------------*/
.pages-header {
  background-image: url("../img/common/bg_mv.png"), linear-gradient(90deg, rgb(8, 137, 206) 0%, rgb(4, 72, 155) 100%);
  background-size: cover, 100% 100%;
  background-position: 800px top, 0 0;
  background-repeat: no-repeat, no-repeat;
}
.pages-header .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pages-header .inner {
    padding-top: 15vw;
    padding-bottom: 5vw;
  }
}
@media screen and (min-width: 769px) {
  .pages-header .inner {
    height: 25vw;
    max-height: 460px;
  }
}
.pages-header_ill {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .pages-header_ill {
    display: none;
  }
}
.pages-header__tl {
  margin-top: 5vw;
  font-size: clamp(1.4rem, 2.6rem + 0.625vw, 4rem);
  line-height: 1.8;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .pages-header__tl {
    font-size: clamp(1.4rem, 1.8rem + 0.625vw, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .pages-header__tl {
    font-size: clamp(1.4rem, 1.8rem + 0.625vw, 2rem);
  }
}
.pages-header__tl__sub {
  display: block;
  width: fit-content;
  margin-bottom: 1rem;
  padding-bottom: 1.25rem;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
  border-bottom: 4px solid #EB4720;
}
@media screen and (max-width: 768px) {
  .pages-header__tl__sub {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
  }
}

.pages-header + .block {
  padding-top: 0;
}

/* --- 事業ページ business
-------------------------------------------*/
.consulting__image {
  margin-bottom: min(100px, 12vw);
}
.consulting__image:nth-last-of-type() {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .consulting__image {
    padding-bottom: 15%;
    background: url(../img/business/bg_kadai_consul.webp) no-repeat center top;
    background-size: 84% auto;
  }
}
@media screen and (max-width: 768px) {
  .consulting__image {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: min(20px, 10vw);
    background: #E3EFFA;
    border: 3px solid #0889CE;
    border-radius: 10px;
  }
}
@media screen and (min-width: 769px) {
  .consulting__image.worry {
    padding-bottom: 15%;
    background: url(../img/business/bg_worry_consul.webp) no-repeat center top;
    background-size: 84% auto;
  }
}
@media screen and (max-width: 768px) {
  .consulting__image.worry {
    background: #B9BAE7;
    border: 3px solid #04489B;
  }
}
@media screen and (min-width: 769px) {
  .consulting__image.roadmap {
    padding-bottom: 15%;
    background: url(../img/business/bg_roadmap_consul.webp) no-repeat center top;
    background-size: 84% auto;
  }
}
@media screen and (max-width: 768px) {
  .consulting__image.roadmap {
    background: #97BFEF;
    border: 3px solid #0A60C4;
  }
}
.consulting__image__tl {
  margin: 0 auto min(8%, 60px) auto;
}
@media screen and (min-width: 769px) {
  .consulting__image__tl {
    width: 30%;
    max-width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .consulting__image__tl {
    width: 70%;
  }
}
@media screen and (min-width: 769px) {
  .consulting__image__wrap {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .consulting__image__cont {
    width: 36%;
    max-width: 560px;
  }
}

@media screen and (max-width: 768px) {
  .consulting__image__cont + .consulting__image__cont {
    margin-top: 8%;
  }
}

.page-consulting .pages-header_ill {
  width: 55%;
  max-width: 550px;
}

.page-operation .pages-header_ill {
  right: -5%;
}

.breadcrumbs {
  position: relative;
  z-index: 3;
  padding: 1rem 0;
  margin-bottom: min(50px, 8vw);
}
.breadcrumbs ul {
  display: flex;
}
.breadcrumbs li {
  padding-right: 0.5rem;
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
  line-height: 1;
}
.breadcrumbs li a {
  line-height: 1;
  text-decoration: underline;
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
  line-height: 1;
}
.breadcrumbs li + li:before {
  content: "＞";
}

.business-nav {
  display: flex;
  justify-content: space-between;
  width: 70%;
  max-width: 690px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .business-nav {
    width: 85%;
  }
}
.business-nav li {
  width: 31%;
}
.business-nav li a {
  opacity: 0.3;
}
.business-nav li a:hover {
  opacity: 1;
}
.business-nav li a.current {
  opacity: 1;
}
.business-nav li a.current:hover {
  opacity: 0.7;
}

.operation-list {
  display: flex;
  justify-content: space-between;
  margin-top: min(60px, 8vw);
}
@media screen and (max-width: 768px) {
  .operation-list {
    flex-direction: column;
  }
}
.operation-list__item {
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .operation-list__item {
    width: 30.5%;
    max-width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .operation-list__item {
    margin-bottom: 5%;
  }
}
.operation-list__tl {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
}
.operation-list__icon {
  max-width: 174px;
  margin: 0 auto 1rem auto;
}
.operation-list__tl__sub {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
}
.operation-list__tl__sub:after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 20px solid #EB4720;
  border-bottom: 0;
}

.operation-list__item.routine {
  background: #DDE9F7;
}

.routine .operation-list__tl,
.routine .operation-list__tl__sub {
  color: #0A60C4;
}

.operation-list__item.trouble {
  background: #DDEFF8;
}

.trouble .operation-list__tl,
.trouble .operation-list__tl__sub {
  color: #0889CE;
}

.operation-list__item.mainte {
  background: #DCDCF0;
}

.mainte .operation-list__tl,
.mainte .operation-list__tl__sub {
  color: #04489B;
}

/* --- サービスページ service
-------------------------------------------*/
.page-service .pages-header_ill {
  width: 35%;
  max-width: 220px;
  bottom: 5%;
  right: 3%;
}
.page-service__visual {
  max-width: 1100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-service__case__table {
  width: 100%;
  margin-top: min(40px, 5vw);
  border: 3px solid #0A60C4;
}
.page-service__case__table.sec {
  border: 3px solid #04489B;
}
.page-service__case__table th {
  width: 33.3%;
  text-align: left;
  background: #0A60C4;
  color: #fff;
}
.page-service__case__table td {
  background: #fff;
}
.page-service__case__table.sec th {
  width: 28.3%;
  text-align: left;
  background: #04489B;
  color: #fff;
}
.page-service__case__table tr:nth-last-of-type(odd) td {
  background: #DDE9F7;
}
.page-service__case__table.sec tr:nth-last-of-type(odd) td {
  background: #DCDCF0;
}
.page-service__case__table__price {
  width: 20%;
}
.page-service .caution {
  margin-top: min(30px, 5vw);
}
.page-service .caution li {
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.page-service .caution li:before {
  content: "※";
}
.page-service__vender {
  padding: min(30px, 5vw);
  background: #DDEFF8;
  border-radius: 20px;
}
.page-service .notes {
  padding-left: 0.75rem;
}

.page-service__case__table th, .page-service__case__table td {
  padding: min(10px, 3vw);
  border: 1px solid #97BFEF;
}

.page-service__case__table.sec th, .page-service__case__table.sec td {
  border: 1px solid #B9BAE7;
}

@media screen and (min-width: 769px) {
  th.page-service__case__table__hours {
    width: 10% !important;
  }
  th.page-service__case__table__price {
    width: 23% !important;
  }
}
@media screen and (max-width: 768px) {
  th.page-service__case__table__price {
    width: 35% !important;
  }
}
.page-service .btn.btn-navy {
  width: 40%;
  max-width: 420px;
  margin: min(40px, 6vw) auto;
}
@media screen and (max-width: 768px) {
  .page-service .btn.btn-navy {
    width: 80%;
  }
}

.btn.btn-navy .btn-text.case {
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  font-weight: 700;
}
.btn.btn-navy .btn-text.case span {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
}

.page-service .pages-header_ill.switch {
  width: 15%;
}

.page-service .pages-header_ill.wireless {
  width: 15%;
  max-width: 180px;
}

.page-service .pages-header_ill.firewall {
  width: 18%;
}

.page-service .pages-header_ill.server {
  width: 18%;
}

/* --- 会社概要　company
-------------------------------------------*/
.company__msg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 5%;
}
.company__msg__name {
  display: block;
  width: fit-content;
  padding-right: 1.5rem;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
}
@media screen and (max-width: 768px) {
  .company__msg__name {
    font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
    line-height: 1.6;
  }
}
.company__msg__pic {
  max-width: 170px;
}
@media screen and (max-width: 768px) {
  .company__msg__pic {
    width: 35%;
  }
}

.ggmap {
  position: relative;
  margin-top: min(30px, 5vw);
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-history th {
  width: 15%;
}
.table-history__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  width: 100px;
  height: 100px;
  background: #04489B;
  color: #fff;
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .table-history__circle {
    width: 20vw;
    height: 20vw;
  }
}
.table-history__circle strong {
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .table-history td p {
    display: flex;
  }
}
.table-history__month {
  color: #04489B;
  padding-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .table-history__month {
    display: block;
  }
}

.block-organization {
  margin-bottom: min(50px, 8vw);
}

.block-organization .block__bg02 {
  z-index: 1;
  bottom: 15%;
}

/* --- お問い合わせ contact
-------------------------------------------*/
.contact__table {
  width: 100%;
  margin: min(50px, 8vw) auto;
  border-bottom: 1px solid #0A60C4;
}
.contact__table th {
  width: 30%;
  text-align: left;
  color: #0A60C4;
}
@media screen and (max-width: 768px) {
  .contact__table th {
    width: 100%;
  }
}
.contact__submit {
  display: block;
  width: fit-content;
  margin: min(50px, 8vw) auto 0;
  padding: 3% 8%;
  background: #EB4720;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  border-radius: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact__submit {
    padding: 5% 10%;
  }
}
.contact__pp a {
  color: #0A60C4;
  text-decoration: underline;
}

.contact__table th, .contact__table td {
  padding: 1rem;
  padding-top: min(26px, 5vw);
  padding-bottom: min(26px, 5vw);
  border-top: 1px solid #0A60C4;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .contact__table th, .contact__table td {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .contact__table th {
    padding-bottom: 2.5vw;
  }
}

@media screen and (max-width: 768px) {
  .contact__table td {
    border-top: none;
  }
}

.required {
  padding-left: 0.5rem;
  color: #EB4720;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  line-height: 1;
  vertical-align: middle;
}

.wpcf7-form-control-wrap input[type=text], .wpcf7-form-control-wrap input[type=email], .wpcf7-form-control-wrap input[type=tel] {
  display: inline-block;
  border: solid 1px #B3B3B3;
  width: 90%;
  height: 5.3rem;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
  padding: 0 1rem;
  background: #ffffff;
  border-radius: 6px;
}

.wpcf7-form-control-wrap textarea {
  border: solid 1px #B3B3B3;
  width: 100%;
  min-height: 22rem;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
  padding: 1rem;
  background: #ffffff;
  border-radius: 6px;
}

.contact__submit input[type=submit] {
  display: block;
  margin: 0 auto;
  background-color: #EB4720;
  color: #ffffff;
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
  border: none;
  font-weight: bold;
}

.wpcf7-spinner {
  display: none;
}

/*　　プライバシーポリシー　　*/
.privacy-policy {
  margin: min(50px, 8vw) auto;
  height: 25vh;
  max-height: 300px;
  overflow: scroll;
  padding: 25px;
  border: 1px solid #999;
  background-color: #efefef;
  line-height: 1.5;
}
.privacy-policy p.text {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
}
.privacy-policy__tl {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
}
.privacy-policy__list {
  margin-top: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  list-style-type: disc;
}
.privacy-policy__list li {
  list-style-type: disc;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
}

.privacy-policy__list.number {
  list-style-type: decimal;
}
.privacy-policy__list.number li {
  list-style-type: decimal;
}

/* --- 導入実績 case
-------------------------------------------*/
.page-case .pages-header_ill {
  width: 35%;
  max-width: 280px;
  bottom: 7%;
  right: 0;
}
.page-case .case-tl {
  margin-bottom: min(50px, 8vw);
  font-weight: 700;
}
.page-case__table {
  width: 100%;
}
.page-case__table td {
  padding: min(10px, 3vw);
  border: 1px solid #0A60C4;
  background: #fff;
}
.page-case__table tr:nth-of-type(even) td {
  background: #DDE9F7;
}
.page-case__table__total {
  padding: min(10px, 3vw);
  background: #0A60C4;
  color: #fff;
  text-align: right;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3rem + 0.625vw, 2.2rem);
}
.page-case .caution {
  margin-top: 1rem;
}
.page-case .case-content {
  padding-bottom: min(80px, 10vw);
}
.page-case .case-content .wp-block-group {
  padding-bottom: min(40px, 7vw);
}

/* --- 技術者ブログ tech-blog
-------------------------------------------*/
.page-blog {
  background: #DDE9F7;
}
.page-blog .block__bg01 {
  z-index: 0;
}
.page-blog .block__bg02 {
  z-index: 0;
}
.page-blog .pages-header_ill {
  width: 35%;
  max-width: 300px;
  bottom: 0;
  right: 0;
}
.page-blog__tl {
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
}
.page-blog__archive {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 40px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-blog__archive {
    width: calc(100% + 20px);
  }
}
.page-blog__archive__item {
  width: calc(33.3333% - 40px);
  margin: 0 40px 40px 0;
}
@media screen and (max-width: 768px) {
  .page-blog__archive__item {
    width: calc(50% - 20px);
    margin: 0 20px 30px 0;
  }
}
.page-blog__archive__thmb {
  position: relative;
  height: 22vw;
  max-height: 260px;
  margin-bottom: min(20px, 3vw);
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-blog__archive__thmb {
    height: 30vw;
    border-radius: 8px;
  }
}
.page-blog__archive__thmb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-blog__tag-wrap {
  display: flex;
  flex-wrap: wrap;
}
.page-blog__tag {
  display: block;
  width: fit-content;
  margin-right: 10px;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  background: #EB4720;
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-blog__tag {
    margin-right: 5px;
    padding: 5px 5px;
  }
}
.page-blog .ymd {
  font-size: clamp(1rem, 0.85rem + 0.625vw, 1.3rem);
  line-height: 1.4;
}
.page-blog__archive__tl {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.6rem);
  line-height: 1.6;
  line-height: 1.4;
  font-weight: normal;
}

.page-blog__tag.posi--a {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.page-blog__header {
  position: relative;
  margin-bottom: min(30px, 4.5vw);
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.page-blog__main-pic {
  display: block;
  width: 100%;
  height: 52.5vw;
  max-height: 630px;
  margin-bottom: min(40px, 5vw);
}
.page-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 1200px;
  max-height: 630px;
  object-position: center center;
}
.page-blog__main-contents {
  position: relative;
  max-width: 1100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.page-blog__main-contents p {
  margin-bottom: 1rem;
}
.page-blog__h2 {
  display: block;
  margin-bottom: min(30px, 4.5vw);
  color: #0A60C4;
  font-weight: 700;
  font-size: clamp(1.4rem, 2rem + 0.625vw, 2.8rem);
  border-bottom: 1px solid #0A60C4;
}
.page-blog__h3 {
  display: block;
  margin-bottom: min(30px, 4.5vw);
  padding-left: 1.5rem;
  font-size: clamp(1.4rem, 2rem + 0.625vw, 2.4rem);
  border-left: 8px solid #EB4720;
  font-weight: 700;
}
.page-blog__h4 {
  display: block;
  margin-bottom: min(20px, 3vw);
  font-size: clamp(1.4rem, 1.8rem + 0.625vw, 2.2rem);
  font-weight: 700;
}

/* --- ページネーション共通
-------------------------------------------*/
.pagination {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: min(50px, 8vw) auto;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 10px;
  font-size: clamp(1.2rem, 1.4rem + 0.625vw, 1.6rem);
  line-height: 1;
  color: #04489B;
  background-color: #fff;
  border: 1px solid #04489B;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #04489B;
  border: 1px solid #04489B;
}
.pagination .prev.page-numbers,
.pagination .next.page-numbers,
.pagination .page-numbers.dots {
  border: none;
}
.pagination .prev.page-numbers, .pagination .next.page-numbers {
  background: none;
}

/* --- タクソノミーリンク　年代
-------------------------------------------*/
.year-list {
  margin: min(50px, 8vw) auto;
}
.year-list .sub-tl {
  font-size: clamp(1.2rem, 1.4rem + 0.625vw, 1.6rem);
}
.year-list__link {
  display: flex;
  flex-wrap: wrap;
}
.year-list__link .button-style {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 20px;
  line-height: 1;
  border: 1px solid #222222;
}

/* --- 採用情報 recruit
-------------------------------------------*/
.recruit-page .recruit__link {
  margin-bottom: min(100px, 18vw);
}
@media screen and (max-width: 768px) {
  .recruit-page .recruit__link {
    width: 80%;
    margin: 0 auto 10vw auto;
  }
}
.recruit-page .recruit__link__box {
  position: relative;
  display: block;
  padding: 30px 20px;
  box-sizing: border-box;
  background: url(../img/recruit/rec_img02.webp) center 50%;
  background-size: cover;
  border: 2px solid #04489B;
}
@media screen and (max-width: 768px) {
  .recruit-page .recruit__link__box {
    margin-bottom: 5vw;
  }
}
.recruit-page .recruit__link__box.career {
  background: url(../img/recruit/rec_img01.webp) center 45%;
  background-size: 100% auto;
}
.recruit-page .recruit__link__fillter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 2, 152, 0.6);
  transition: background-color 0.8s ease;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .recruit-page .recruit__link {
    display: flex;
    justify-content: space-between;
  }
  .recruit-page .recruit__link__box {
    width: 48%;
  }
}
.recruit-page .career .recruit__link__fillter {
  background-color: rgba(8, 137, 216, 0.6);
}

.recruit__link strong {
  font-size: clamp(1.4rem, 1.6rem + 0.625vw, 3rem);
}
.recruit__link .btn.btn-navy {
  flex-direction: row;
  margin: 0 auto;
  border: #fff 2px solid;
  background-color: #080298;
}
.recruit__link .btn.btn-navy:hover {
  color: #04489B;
  z-index: 2;
  opacity: 1;
}
.recruit__link .career .btn.btn-navy {
  background-color: #0A60C4;
}