@charset "utf-8";
/* ------------------
  reset_min
------------------ */
@charset "utf-8";*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){color-scheme:normal;scroll-behavior:smooth;cursor:auto;-moz-tab-size:2;tab-size:2;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;font-size:62.5%;line-height:1.5;margin:0;padding:0}@supports not (min-block-size:100dvb){:where(html){block-size:100%}}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){block-size:100%;block-size:100dvb;line-height:1.5;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border:none;background:none}:where(a){text-underline-offset:.5ex;text-decoration:none}:where(ul,ol,li){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word;font-size: 100%;}:where(h1,h2,h3){line-height:1.5}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(address){font-style:normal}:where(table){border-collapse:collapse}:where(:focus-visible){outline:2px solid var(--focus-color,Highlight);outline-offset:2px}:where(.visually-hidden:not(:focus,:active,:focus-within,.not-visually-hidden)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --red: #D60B0A;
  --blue: #0169EF;
  --green: #017249;
  --darkblue-rgb: 35,64,143;
  --thinblue-rgb: 101,154,210;
  --green-rgb: 1, 114, 73;
  --opacity: 1;
  --gradation-blue: transparent linear-gradient(90deg, rgba(var(--darkblue-rgb), var(--opacity)) 0%, rgba(var(--thinblue-rgb), var(--opacity)) 100%);
  --gradetion-green: transparent linear-gradient(90deg, rgba(var(--turquoise-rgb), var(--opacity)) 0%, rgba(var(--green-rgb), var(--opacity)) 100%);
  --gradetion-water: transparent linear-gradient(270deg, #BFD9FB 0%, #BFE8F1 100%);

  --main-color: #0D2453;
  --sub-color: #CC0000;
  --subsub-color: #23408F;
  --sky-blue: #DFE9F7;
  --main-gradetion: linear-gradient(90deg, #23408F 0%, #659AD2 100%);
  --main-gradetion-thin: linear-gradient(90deg, rgba(35, 64, 143, .75) 0%, rgba(101, 154, 210, .75) 100%);

  /* 文字サイズ */
  --font-12: 1.2rem;
  --font-14: 1.4rem;
  --font-16: 1.6rem;
  --font-18: 1.8rem;
  --font-20: 2rem;
  --font-24: 2.4rem;
  --font-30: 3rem;

  /* 余白 */
  --space-60: 60px;

  @media screen and (max-width: 767px){
    /* 文字サイズ */
    --font-16: 1.5rem;
    --font-18: 1.6rem;
    --font-20: 1.8rem;
    --font-24: 2rem;
    --font-30: 2.4rem;

    /* 余白 */
    --space-60: 40px;
  }
}

/* ------------------
  共通設定
------------------ */
body {
  font-family: 'Noto Sans JP','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: var(--font-16);
	line-height: 1.8;
	position: relative;
}
a {
  color: #000;
  &:hover {
    opacity: 0.8;
    cursor: pointer;
    text-decoration: none;
  }
}
em {
  font-style: normal;
}
.main_txt:not(:last-child) {
  padding-bottom: 1em;
}
.txt_box:not(:last-child) {
  padding-bottom: 3em;
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.indent01_5 {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
  &::before {
    content: "・";
  }
}
.bold_txt {
  font-weight: bold;
}
.red {
  color: var(--red);
}
.center_txt {
  text-align: center;
  img {
    margin-inline: auto;
  }
}
.ta_left {
  text-align: left;
}
.cmn_under {
  a {
    display: inline-block;
    text-decoration: underline;
    padding-left: 1em;
    text-indent: -1em;
  }
  a:hover {text-decoration: none;}
}
.mr_auto {
  margin-right: auto!important;
  margin-left: 0!important;
}
.page_img {
  border: 1px solid #999;
}
.morebtn {
  margin: 2em auto 0;
  max-width: 240px;
  width: 100%;
  min-height: 50px;
  background: #FFF;
  color: #0D2453;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: var(--font-14);
  padding-right: .5em;
  &.mt_0 {
    margin-top: 0;
  }
  &.border {
    border: 1px solid #23408F;
  }
  span {
    position: relative;
    &::after {
      content: "";
      background: url(../img/arrow_red.svg) no-repeat center/cover;
      width: 8px;
      height: 14px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: -12px;
      transition: .2s;
    }
  }
  &:hover span::after{
    transition: .2s;
    right: -15px;
  }
  @media screen and (max-width: 767px){
    margin-top: 1em;
  }
  @media print, screen and (min-width: 768px){
    .main {
      padding-top: 0;
    }
  }
}
/* PC・SP切り替え */
.sp_block {
  display: none;
}
@media screen and (max-width: 767px){
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
}

/* ------------------
  レイアウト
------------------ */
.container {max-width: 1024px;width: 90%;margin: 65px auto;}
.main {
  padding-top: 76px;
}
.mt0 {margin-top: 0px;}
.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mt60 {margin-top: 60px;}
.mt70 {margin-top: 70px;}
.mt80 {margin-top: 80px;}
.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}

/* ------------------
  共通パーツ
------------------ */
/* パンくずリスト */
.breadcrumb {
  max-width: 1344px;
  width: 90%;
  height: 40px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-bottom: var(--space-60);
  @media screen and (max-width: 767px){
    overflow: auto;
    white-space: nowrap;
    flex-wrap: initial;
  }
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0 10px;
  a {
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
  &::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-bottom: 1px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
  }
  &[aria-current="page"]::after {
    content: none;
  }
}
/* 下層ページコンテナ */
.page_container {
  max-width: 1344px;
  width: 90%;
  margin: 0 auto var(--space-60);
}
/* 下層ページコンテナ（枠線あり） */
.page_container.page_container--border {
  border: 1px solid black;
  padding: 50px;
  @media screen and (max-width: 767px) {
    padding: 25px 5%;
  }
}
/* 下層ページコンテナ（margin-top） */
.page_container--mini {
  margin-top: 2em;
}
/* 下層ページコンテナ（まとめ箇所） */
.page_container--summary {
  width: 100%;
  background: linear-gradient(90deg, #7FD1E2 0%, #7FB3F7 100%);
  padding: var(--space-60) 0;
}
.page_container--summary .page_container {margin-bottom: 0;}
.summary_block {
  width: 100%;
  background: #fff;
  border: 1px solid black;
  padding: 50px;
  @media screen and (max-width: 767px) {
    padding: 40px 5%;
  }
}
.summary_measure--ttl {
  color: var(--green);
  font-size: var(--font-20);
  margin-bottom: 20px;
}
.summary_measure--link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  a {
    width: calc(50% - 12px);
    color: #000;
    background: linear-gradient(270deg, #7FD1E2 40.12%, #7FB8A3 100%);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 16px;
    a {
      width: 100%;
    }
  }
}
/* 下層ページ効果横並び */
.effect_case--list {
  display: flex;
  justify-content: space-around;
  gap: 1.5em;
  margin-top: 2em;
  li {
    width: 100%;
    border: 1px solid #406AB3;
    border-radius: 20px;
    padding: 2em .8em;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    li {
      max-width: 100%;
      text-align: center;
      padding: 1em;
    }
  }
}
/* 下層ページ青背景広めbox */
.blue_box {
  max-width: 860px;
  width: 100%;
  margin: 2em auto 0;
  padding: 3em;
  background: var(--sky-blue);
  border-radius: 20px;
  h4 {
    text-align: center;
    font-size: var(--font-20);
    font-weight: bold;
  }
  p , ul {
    margin-top: 20px;
  }
  @media screen and (max-width: 767px) {
    padding: 1.5em;
  }
}
/* 下層ページ実績 */
.case_box {
  background: var(--sky-blue);
  border-radius: 20px;
  padding: 2em;
  margin-top: 2em;
  h3 {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    padding: 1.5em;
  }
}
.case_box--img {
  display: flex;
  gap: 2em;
  margin-top: 2em;
  @media screen and (max-width: 767px) {
    gap: 1em;
  }
}
.case_box--txt {
  background: #FFF;
  padding: 1.5em;
  border-radius: 20px;
  margin-top: 2em;
  p:first-of-type {
    color: var(--main-color);
  }
  p:nth-of-type(2) {
    margin-top: 1em;
  }
}
/* 下層ページ画像横並び */
.img_flex {
  display: flex;
  justify-content: center;
  gap: 2em;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
  }
}
/* 枠線付き画像 */
.img_border {
  border: 1px solid #406AB3;
  display: flex;
  justify-content: center;
  padding: 2em 1em;
}
/* ページ下部リンクリスト */
.link_list {
  display: flex;
  flex-direction: column;
  a {
    text-decoration: underline;
  }
}
/* 価格表 */
.cmn_price {
  border: 1px solid #707070;
}
.cmn_price--item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  &:not(:last-child) {
    border-bottom:1px solid #707070;
  }
  & > * {
    width: 50%;
    padding: 28px 0;
    display: flex;
    justify-content: center;
    @media screen and (max-width: 767px) {
      padding: 15px 10px;
    }
  }
  dt {
    background: #DFE9F7;
    border-right: 1px solid #707070;
  }
  dd {
    gap: 10px;
    line-height: 1.5;
  }
}
.cmn_price--num {
  font-size: var(--font-20);
  display: flex;
  align-items: flex-end;
}
/* ページタイトル */
.page_title {
  max-width: 800px;
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  font-size: var(--font-30);
  font-weight: bold;
  color: #fff;
  background: var(--main-gradetion-thin);
  @media screen and (max-width: 767px){
    padding: 8px 5%;
    min-height: 96px;
  }
}
.page_mv {
  width: 100%;
  padding: 0 5%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/common/img/mv_bg.webp) no-repeat center;
  background-size: cover;
  @media screen and (max-width: 767px){
    min-height: 220px;
    height: auto;
  }
}
/*見出し（トップ用）*/
.cmn_heading {
  width: 100%;
  font-size: var(--font-20);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  position: relative;
  &::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, #406AB3 0%, #5CA9DD 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  /* 見出し（トップ用／中央寄せ） */
  &.center_txt {
    padding-bottom: 0;
  }
  &.center_txt::after {display: none;}
  &.center_txt span {
    position: relative;
    padding-bottom: 0.5em;
  }
  &.center_txt span::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, #7FB8A3 0%, #00A4C5 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
/* 見出し（h3） */
.h3_txt {
  border-radius: 10px;
  background: var(--sky-blue);
  color: var(--main-color);
  padding: .8em 2em;
}
/* 見出し（事例用） */
.cmn_heading--mini {
  width: 100%;
  font-size: var(--font-20);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  position: relative;
}
/* 横並びレイアウト */
.cmn_flex {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  @media screen and (max-width: 767px){
    flex-direction: column;
    align-items: center;
  }
  & > *:first-child {
    max-width: 600px;
  }
  /* 子要素二個の際に一番目の子要素に対してflex付与 */
  &:has(> :first-child:nth-last-child(2)) > :first-child {
    display: flex;
    flex-direction: column;
    gap: 3em;
    @media screen and (max-width: 767px){
      gap: 2em;
    }
  }
}
/* ナンバーリスト */
.cmn_num {
  width: 100%;
  padding-block: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  figure {
    flex-shrink: 0;
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: 20px;
  }
}
.cmn_num--txt {
  h3 {
    font-size: var(--font-20);
    padding-bottom: 0.5em;
  }
  h3 span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 23px;
  height: 23px;
  background: var(--subsub-color);
  color: #fff;
  line-height: 1.5;
  }
  @media screen and (max-width: 767px){
    h3 {
      padding-left: 2.3em;
      text-indent: -2.3em;
    }
    h3 span {
      display: inline;
      padding: 2px 10px;
    }
  }
  li {
    display: flex;
    align-items: flex-start;
    font-weight: bold;
    padding-bottom: 0.5em;
  }
  li span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 23px;
  height: 23px;
  background: var(--subsub-color);
  color: #fff;
  line-height: 1.5;
  flex-shrink: 0;
  }
  @media screen and (max-width: 767px){
    li span {
      display: inline-flex;
      padding: 2px 10px;
    }
  }
}
/* ナンバーリスト2 */
.number_list {
  counter-reset: num 0;
}
.number_list--item {
  --space-40: 40px;
  width: 100%;
  padding-bottom: var(--space-40);
  border-bottom: 1px dotted #000;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin: var(--space-40) auto;
  &:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.number_list--item:has(figure) .number_list--content {
  --space: 20px;
  max-width: calc(100% - 387px);
  width: 100%;
  @media screen and (max-width: 767px){
    max-width: 100%;
  }
}
.number_list--title {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-size: var(--font-20);
  padding-bottom: 0.5em;
  &::before {
    counter-increment: num 1;
    content: counter(num) '';
    width: 23px;
    height: 23px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--green-rgb));
    color: #fff;
    line-height: 1;
  }
}

/* 色付きリスト */
.cmn_color--list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 16px;
  li {
    width: calc(50% - 8px);
    background: var(--sky-blue);
    border-radius: 20px;
    padding: 4rem 2rem;
    h3 {
      font-size: var(--font-20);
      color: var(--main-color);
    }
  }
  p.example {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    color: #000;
    text-align: center;
    padding: 10px;
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: 16px;
    li {
      width: 100%;
      padding: 32px 5%;
      min-height: auto;
    }
  }
}

/* table（表）の記述 */
.cmn_table--outer {
  overflow: auto;
  width: 100%;
  margin-block: 30px;
  table {
    width: 100%;
  }
  thead th,
  tbody td {
    padding: 10px 24px;
  }
  thead th {
    font-weight: bold;
    background: var(--sky-blue);
    border-right: 1px solid #707070;
    text-align: center;
  }
  tbody td {
    border-right: 1px solid #707070;
  }
  thead th:first-child,
  tbody td:first-child {
    border-left: 1px solid #707070;
  }
  tr {
    border-top: 1px solid #707070;
  }
  tr:last-child {
    border-bottom: 1px solid #707070;
  }
  &.half {
    th {
      width: 50%;
    }
  }
  @media screen and (max-width: 767px) {
    &.multiple table {
      width: 800px;
    }
  }
}

.cmn_table--outer2 thead th,td {
  text-align: center;
}

/* ------------------
  body, main
------------------ */
.body {
  @media print, screen and (min-width: 768px){
    display: flex;
    flex-wrap: wrap;
  }
}
.main {
  width: 100%;
  @media print, screen and (min-width: 768px){
    max-width: calc(100% - 240px);
  }
  @media screen and (max-width: 767px){
    padding-top: 55px;
  }
}

/* ------------------
  header
------------------ */
.header {
  @media print, screen and (min-width: 768px){
    width: 240px;
    background: var(--main-gradetion);
  }
  @media screen and (max-width: 767px){
    width: 100%;
    height: 55px;
    padding: 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    &:has(.spNav_panel[aria-hidden="false"]){
      background: #fff;
    }
  }
}
.header_left {
  @media print, screen and (min-width: 768px){
    width: 240px;
    max-height: 100dvh;
    padding-bottom: 50px;
    overflow-y: auto;
    position: sticky;
    top: 0;
    left: 0;
  }
  @media screen and (max-width: 767px){
    display: contents;
  }
}
/* ロゴ */
.header_logo {
  @media print, screen and (min-width: 768px){
    width: 100%;
    height: 76px;
    background: #fff;
  }
  a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media screen and (max-width: 767px){
    width: 200px;
    height: auto;
  }
}
/* グローバルナビ */
.header_nav {
  width: 100%;
}
.header_nav--heading p, .header_nav--heading a {
  width: 100%;
  border-bottom: 1px solid #fff;
  display: block;
  font-weight: bold;
  color: #fff;
  padding: 0.5em;
  background: var(--main-gradetion);
}
.header_nav--items {
  li {
    width: 100%;
  }
  a {
    width: 100%;
    padding: 0.5em 0.3em 0.5em 0.8em;
    border-bottom: 1px solid #fff;
    display: block;
    background: var(--gradetion-water);
    font-size: var(--font-14);
    color: #000;
  }
}
/* 上部バー */
.header_bar {
  width: calc(100% - 240px);
  height: 76px;
  padding: 5px 5px 5px 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main-gradetion);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  @media screen and (max-width: 767px){
    display: none;
  }
}
.header_bar--txt {
  color: #fff;
}
.header_bar--items {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
}
.header_bar--company a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--font-14);
  line-height: 1.5;
  color: #fff;
  svg {
    fill: #fff;
  }
}
.header_bar--contacts {
  display: flex;
  gap: 5px;
}
.header_bar--mail {
  width: auto;
  height: 42px;
  background: var(--red);
  a {
    width: 100%;
    height: 100%;
    padding: 6px 3px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    background: var(--red);
    font-size: 1.2rem;
    color: #fff;
  }
  svg {
    fill: #fff;
  }
}
.header_bar--tel {
  width: 175px;
  height: 42px;
  background: #fff;
  a {
    width: 100%;
    height: 100%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: var(--font-20);
    font-weight: bold;
    color: #0d2453;
    background: #fff;
  }
  svg {
    fill: #0d2453;
  }
}

/* ------------------
main
------------------ */
/* サービス */
.service_items {
  max-width: 1344px;
  margin: 0 auto var(--space-60);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  @media screen and (max-width: 767px) {
    gap: 15px;
    justify-content: center;
  }
}
.service_item {
  max-width: calc(25% - 15px);
  width: 100%;
  figure {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  img {
    width: auto;
    height: auto;
  }
  a {
    width: 100%;
    height: 100%;
    padding-top: 1em;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: .5em;
    background: var(--sky-blue);
  }
  @media screen and (max-width: 767px) {
    max-width: 220px;
    border-radius: 25px;
    width: calc(50% - 7.5px);
    a {
      padding-top: 1em;
      justify-content: space-between;
      gap: 0.5em;
      line-height: 1.5;
      font-size: var(--font-14);
    }
    figure {
      height: auto;
      max-height: 55px;
    }
    img {
      height: 100%;
      width: auto;
    }
    p {
      min-height: 2em;
    }
  }
}
.service_name {
  font-weight: bold;
  text-align: center;
  min-height: 54px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 1em;
}
.service_text {
  display: flex;
  justify-content: space-between;
  gap: .5em;
  width: 100%;
  height: 50px;
}
.service_text--left {
  padding-left: 1em;
  line-height: 1.25;
  @media screen and (max-width: 767px){
    font-size: var(--font-12);
  }
}
.service_text--right {
  color: #FFF;
  background: var(--main-gradetion);
  border-radius: 25px 0 25px 0;
  max-width: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------
お問い合わせ
------------------ */
.cmn_contact {
  width: 100%;
}
.cmn_contact--txt {
  width: 100%;
  padding: var(--space-60) 5% 150px;
  background: url(../img/contact_bg.webp) no-repeat center;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  text-align: center;
  @media screen and (max-width: 767px){
    padding-bottom: 160px;
  }
}
.cmn_contact--title {
  font-size: var(--font-30);
  padding-bottom: 0.5em;
}
.cmn_contact--list {
  width: 70%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-inline: auto;
  transform: translateY(-50%);
  margin-bottom: -54px;
  @media screen and (max-width: 767px){
    width: 90%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: -90px;
    transform: translateY(-160%);
  }
}
.cmn_contact--item {
  max-width: calc(100% / 2 - 40px / 3);
  width: 100%;
  a {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  a:hover {
    opacity: 1;
  }
  @media screen and (max-width: 767px){
    max-width: 100%;
    height: 80px;
    a {
      height: 100%;
      flex-direction: row;
    }
  }
}
.cmn_contact--name {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #919FC7 0%, #B2CCE8 100%);
  text-align: center;
  font-size: var(--font-20);
  @media screen and (max-width: 767px){
    width: 75%;
    height: auto;
  }
}
.cmn_contact--img {
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #C8CFE3 0%, #D9E6F4 100%);
  @media screen and (max-width: 767px){
    width: 25%;
    height: auto;
    padding: 1em;
    img {
      height: 100%;
      width: auto;
    }
  }
}
.cmn_contact--item a:hover h3 {
  opacity: 0.7;
}
.cmn_contact--item a:hover img {
  opacity: 0.8;
}

/* ------------------
footer
------------------ */
.footer {
  width: 100%;
}
.footer_management {
  width: 100%;
  padding: 40px 5%;
  background: #ededed;
}
.footer_management--title {
  text-align: center;
  font-size: var(--font-20);
  font-weight: bold;
  color: var(--green);
  margin: 0 auto 15px;
}
.footer_management--list {
  max-width: 1024px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_management--item {
  height: 52px;
  max-width: 240px;
  width: 100%;
  border: 2px solid #fff;
  font-weight: bold;
}
.footer_management--item a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 15px;
}
.footer_management--item a[href="https://www.saitama-hp.com/"] {color: #990000;background: #f5e5e5;}
.footer_management--item a[href="https://www.digital-catalog.jp/"] {color: #0033cc;background: #e3e6f7;}
.footer_management--item a[href="https://www.webook-berry.jp/"] {color: #0e0253;background: #ccc;}
.footer_management--item a[href="https://www.saitama-catalog.jp/"] {color: #006531;background: #dde6e0;}
.footer_management--item a[href="https://www.seizogyo.com/"] {color: #0d2354;background: #c2c8d4;}
.footer_management--item a[href="https://www.crossmedia-berry.jp/"] {color: #1f0863;background: #dedae8;}
.footer_management--item a[href="https://www.web-douga.com/"] {color: #333;background: #ffe5dc;}

.footer_management2 {display: flex;justify-content: center;flex-wrap: wrap;gap: 20px;margin: 20px auto 0;
	li {max-width: 420px;width: 100%;}
	a {width: 100%;display: flex;flex-wrap: wrap;}
	span {max-width: 210px;width: 100%;padding: 8px 0;display: flex; justify-content:center;align-items: center;background: #F0B2B2;color: #333;font-size: 2rem;}
}

.footer_sitename {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--font-20);
  font-weight: 900;
}
.footer_company {
  margin-top: 10px;
}

.footer_container {max-width: 1280px;width: 90%;padding: 40px 0 0;margin: auto;display: flex;justify-content: space-between;align-items: flex-start;@media screen and (max-width: 767px){display: none;}}
.footer_nav {display: flex;justify-content: flex-end;gap: 65px;}
.footer_nav--list {margin: 0 auto 15px;display: flex;flex-direction: column;flex-wrap: wrap;gap: 0 40px;}
.footer_nav--list a {display: flex;align-items: center;gap: 10px;position: relative;font-weight: bold;&:hover{text-decoration: underline;opacity: 1;}}
.footer_list--item {margin-bottom: 15px;}
.footer_nav--list:last-of-type {gap: 0;}

a.footer_list--icon {
  padding: 15px 50px 15px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  svg {
    fill: var(--main-color);
  }
  &:hover {
    text-decoration: none;
    background: rgba(var(--darkblue-rgb), 0.1);
  }
}

.footer_list--sublist {display: flex;flex-direction: column;gap: 5px;margin: 5px 0 5px 10px;}
.footer_list--sublist a {color: #000;font-size: 1.4rem;font-weight: normal;}
.footer_list--sublist a::before {content: "";width: 5px;height: 5px;border-top: 1px solid var(--main-color);border-right: 1px solid var(--main-color);transform: rotate(45deg);}

.footer_external {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 1.4rem;
	margin: 20px 0 0 auto;
	a {font-weight: normal;display: flex;align-items: center;gap: 5px;}
}
.copyright {
  width: 100%;
  padding: 0.25em;
  background: var(--main-gradetion);
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  @media screen and (max-width: 767px){
    font-size: var(--font-14);
  }
}
@media screen and (max-width: 767px) {
	.footer_management--title {font-size: 1.8rem;}
  .footer_management--list {gap: 10px;}
  .footer_management--item {width: calc(50% - 5px);}
  .footer_management--item a {padding: 0 5px;font-size: 1.3rem;line-height: 1.5;}
  .footer_list--item {width: 100%;}
}
/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 90px;
  border-radius: 50%;
  background: rgba(50,50,50,0.75);
  opacity: 0;
  transition: 0.5s;
  z-index: -10;
  a {
    display: block;
    width: 100%;
    height: 100%;
  }
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
#backtop.active {
  opacity: 0.8;
  z-index: 50;
}

/* PC用 */
@media screen and (max-width: 1279px) {
  body {
    width: 1280px;
  }
}

/* スマートフォン用 */
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
  /* ボタン */
  .spNav_btn {
    display: block;width: 45px;height: 45px;background: var(--main-gradetion);transition: all 0.5s;position: relative;
    span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}
    
    /* 閉じた状態 */
    &[aria-pressed="false"] span {width: 30px;transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {top: 13px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
    &[aria-pressed="false"] span:nth-child(3) {bottom: 13px;left: 0;right: 0;}
    
    /* 開いた状態 */
    &[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
    &[aria-pressed="true"] span:nth-child(1) {top: 50%;transform: translateY(-1.5px) rotate(45deg);left: 7.5px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {bottom: 50%;transform: translateY(1.5px) rotate(-45deg);left: 7.5px;}
  }
  /* メニューパネル */
  .spNav_panel {
    position: fixed;
    height: 100%;
    width: 80%;
    padding-bottom: 100px;
    background: var(--main-gradetion);
    top: 55px;
    right: 0;
    color: #000;
    z-index: 999;
    overflow: scroll;
    transition: all 0.3s;
  }
  .spNav_panel[aria-hidden="true"] {
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
  }
  .spNav_panel[aria-hidden="false"] {
    visibility: visible;
    transform: translateX(0);
  }
  /* bodyをタッチ不可に */
  #onbody {position: fixed;height: 100%;width: 100%; top: 55px;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 90;overflow: hidden;}
	.body:has(#onbody[aria-hidden="true"]){overflow: hidden;}
}
/* スマホメニュー用コンタクト */
.sp_nav--contact {
  display: none;
  li {
    width: calc(50% - 5px);
  }
  a {
    width: 100%;
    height: 40px;
    gap: 5px;
    font-size: 1.2rem;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  svg {
    fill: #fff;
  }
  @media screen and (max-width: 767px) {
    display: flex;
    width: 100%;
    padding: 0 1em;
    gap: 10px;
    margin: 25px auto 10px;
  }
}
@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 印刷用設定 */
@media print {body {width:1280px;zoom: 0.68;-webkit-print-color-adjust: exact;}}
@page {size: A4;margin: 5px;}

@media print {
  .header_left{
    position: absolute;
  }
}

/* タブレット用 */
@media screen and (max-width: 1279px) {
  .service_text {
    height: 70px;
  }
}
