@charset "utf-8";

/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --white: #FFF;
  --txt-color: #333;
  --black: #333;
  --gray: #EEEEEE;
  --main-blue: #007BBE;
  --deep-blue: #217FC4;
  --light-blue: #E8ECF7;

  /* 横幅 */
  --width-1024: 1024px;
  --width-1200: 1200px;

  /*スペース*/
  --sp-10: 10px;
  --sp-20: 20px;
  --sp-30: 30px;
  --sp-40: 40px;
  --sp-50: 50px;
  --sp-60: 60px;
  --sp-90: 90px;
  --sp-100: 100px;
  --sp-150: 150px;

  /*行間*/
  --ls: 6px;
  --ls_s: 3px;

  /*フォントサイズ*/
  --fs-131: 13.1rem;
  --fs-108: 10.8rem;
  --fs-64: 6.4rem;
  --fs-48: 4.8rem;
  --fs-40: 4.0rem;
  --fs-36: 3.6rem;
  --fs-34: 3.4rem;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-24: 2.4rem;
  --fs-20: 2.0rem;
  --fs-18: 1.8rem;
  --fs-14: 1.4rem;

  @media screen and (max-width: 767px) {

    /* 横幅 */

    /*スペース*/

    /*行間*/
    --ls: 5%;
    --ls_s: 5%;

    /*フォントサイズ*/
    --fs-64: 4.2rem;
    --fs-48: 4rem;
    --fs-40: 3.2rem;
    --fs-36: 3.0rem;
    --fs-34: 2.8rem;
    --fs-32: 2.6rem;
    --fs-28: 2.4rem;
    --fs-24: 2rem;
    --fs-20: 1.8rem;
    --fs-18: 1.6rem;
    --fs-14: 1.2rem;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: var(--txt-color);
  letter-spacing: 5%;

  @media screen and (max-width: 767px) {
    font-size: 1.5rem;
  }
}

main {
  margin-top: 72px;
  line-height: 2;

  @media screen and (max-width: 767px) {
    line-height: 1.5;
  }
}

/* スマホメニュー非表示 */
.spNav_btn,
.spNav_panel {
  display: none;
}

/* PCのみ表示する要素を表示 */
.pc_block {
  display: block;
}

.sp_block {
  display: none;
}

.bold {
  font-weight: bold;
}

a:hover {
  opacity: 0.7;
}

/* インデント */
.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.indent_2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent_3 {
  text-indent: -3em;
  padding-left: 3em;
}

/* 文字の位置 */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

/* アニメーション */
.fade {
  opacity: 0;
  transition: .5s ease-in-out;
}

.fade.fade--bot {
  transform: translate(0, 100px);
}

.fade.fade--top {
  transform: translate(0, -100px);
}

.fade.fade--left {
  transform: translate(-100px, 0);
}

.fade.fade--right {
  transform: translate(100px, 0);
}

.fade.fadein {
  transform: translate(0, 0);
  opacity: 1;
}

/* 子要素を順番にフェードイン */
.fade.fade--list {
  opacity: 1;
}

.fade_child {
  opacity: 0;
  transform: translate(0, 100px);
  transition: .5s ease-in-out;
}

.fadein .fade_child {
  transform: translate(0, 0);
  opacity: 1;
}

.fade_child:nth-child(1) {
  transition-delay: 0.15s;
}

.fade_child:nth-child(2) {
  transition-delay: 0.3s;
}

.fade_child:nth-child(3) {
  transition-delay: 0.45s;
}

.fade_child:nth-child(4) {
  transition-delay: 0.6s;
}

.fade_child:nth-child(5) {
  transition-delay: 0.75s;
}

.fade_child:nth-child(6) {
  transition-delay: 0.9s;
}

.fade_child:nth-child(7) {
  transition-delay: 1.05s;
}

.fade_child:nth-child(8) {
  transition-delay: 1.2s;
}

.fade_child:nth-child(9) {
  transition-delay: 1.35s;
}

.fade.roll-in {
  opacity: 0;
}

.fade.roll-in.roll-in.fadein {
  animation: rollFadeIn 1s ease-in-out;
  opacity: 1;
}

@keyframes rollFadeIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) translate(0);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) translate(0);
  }
}

/*コンポーネント*/
.mt_10 {
  margin-top: var(--sp-10);
}

.mt_20 {
  margin-top: var(--sp-20);
}

.mt_30 {
  margin-top: var(--sp-30);
}

.mt_40 {
  margin-top: var(--sp-40);
}

.mt_50 {
  margin-top: var(--sp-50);
}

.mt_90 {
  margin-top: var(--sp-90);
}

.mt_100 {
  margin-top: var(--sp-100);
}

a.tdu {
  color: var(--txt-color);
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}

/* ------------------
 header
------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all .3s;
  background: #FFF;
}

.hd_inner {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  height: 72px;
  padding: 0 20px;
  width: 100%;
  min-width: 1280px;
}

.header_logo {
  height: 100%;

  a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.hd_pc {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.hd_nav {
  height: 100%;
}

.hd_nav_list {
  display: flex;
  align-items: center;
  height: 100%;
}

.hd_nav--item {
  height: 100%;
  font-weight: 400;
  transition: 0.5s;
  letter-spacing: 0.8px;
  position: relative;

  &::before {
    content: "";
    background: var(--deep-blue);
    width: 1px;
    height: 17px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }

  &:last-child {
    &::before {
      display: none;
    }
  }

  >a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--txt-color);
    padding: 0 20px;

    &:hover {
      color: var(--deep-blue);
      transition: 0.5s;
      font-weight: 700;
      opacity: 1;
    }
  }
}

.translateBtn {
  width: 50px;
  height: 40px;
  color: var(--deep-blue);
  background: #E8ECF7;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  @media screen and (max-width: 767px) {
    margin: 20px 5% 0 auto;
    height: 36px;
  }
}

.hd_cont {
  width: 151px;
  height: 40px;
  color: var(--txt-color);
  background: var(--gray);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.5s;

  &:hover {
    opacity: 1;
    color: var(--main-blue);
    font-weight: bold;
    background: var(--white);
    border: 1px solid var(--main-blue);
    transition: 0.5s;
  }
}

/* メガメニュー */
.mega_first_link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .5s;

  &::after {
    content: "";
    background: url(../../common/img/mega_arrow.svg) no-repeat center/cover;
    width: 10px;
    height: 6px;
    transition: all .5s;
  }

  &:hover::after {
    transform: rotate(-180deg);
  }
}

.pcNav_mega {
  background: rgba(232, 236, 247, 0.95);
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: all .5s;
}

.Mega:hover .pcNav_mega {
  opacity: 1;
  box-shadow: 0 17px 24px 0 rgba(0, 0, 0, 0.25);
  height: 500px;
  color: var(--txt-color);
  font-weight: normal;
}

.mega_box {
  width: 100%;
  position: fixed;
  top: 72px;
  left: 0;

  &:hover {
    font-weight: normal;
  }
}

.mega_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mega_link {
  max-width: 328px;
  width: 100%;
  border-radius: 10px;
}

.mega_link_top {
  background: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 10px 10px 0 0;
  min-height: 115px;
  padding: 0 15px;
  position: relative;

  &::before {
    content: "";
    background: url(../../common/img/mba_02.svg) no-repeat;
    background-size: contain;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
}

.mi_top_title {
  color: var(--main-blue);
  letter-spacing: 2.4px;
  font-weight: 300;
  line-height: 72px;
  font-size: 4.8rem;

  &:hover {
    font-weight: 300;
  }
}

.mlt_txt {
  color: var(--txt-color);
}

.mega_more {
  max-width: 195px;
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid var(--deep-blue);
  background: #FFF;
  display: flex;
  align-items: center;
  padding: 0 15px;
  position: relative;
  color: var(--txt-color);

  &::before {
    content: "";
    background: url(../../common/img/mba_02.svg) no-repeat center/cover;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
  }
}

.mi_top {
  display: flex;
  /*flex-direction: column;*/
  gap: 20px;
}

/* 製品・サービス メガメニュー */
.mega_busi .mega_inner {
  max-width: var(--width-1024);
  width: 100%;
  padding-top: 60px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.mega_busi .mega_link_top {
  &::before {
    content: "";
    background: url(../../common/img/mba_01.svg) no-repeat center/cover;
    width: 34px;
    height: 34px;
  }
}

/* 受託事業 メガメニュー */
.mega_ser .mega_inner {
  max-width: var(--width-1024);
  width: 100%;
  margin: auto;
  display: flex;
  gap: 20px;
  padding-top: 60px;
}

.mega_ser .mega_link {
  max-width: 244px;
}

.mega_ser .mega_link_top {
  min-height: 60px;
}

.mega_ser .mega_link_list {
  max-width: 760px;
  align-items: center;
  gap: 14px;
}

/* 会社案内 メガメニュー */
.mega_comp .mega_inner {
  max-width: var(--width-1024);
  width: 100%;
  margin: auto;
  display: flex;
  gap: 20px;
  padding-top: 60px;
}

.mega_comp .mega_link {
  max-width: 180px;
}

.mega_comp .mega_link_top {
  min-height: 60px;
}

.mega_comp .mega_link_list {
  max-width: 762px;
  align-items: center;
  gap: 14px;
}

/* contact */
.contact {
  .cont_inner {
    max-width: 1024px;
    width: 90%;
    margin: 60px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .cont_head {
    font-size: var(--fs-48);
    font-weight: normal;
    color: var(--deep-blue);
  }

  .cont_sub {
    margin-top: 20px;
  }

  .cont_btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 10px 15px 10px 30px;
    gap: 15px;
    background: var(--deep-blue);
    border-radius: 10px;

    &::after {
      content: '';
      display: block;
      background: url(/common/img/arrow_rev.svg) no-repeat center;
      background-size: contain;
      width: 20px;
      height: 20px;
    }
  }

  @media screen and (max-width: 767px) {
    .cont_head {
      font-size: min(4rem, 7vw);
      font-weight: normal;
      color: var(--deep-blue);
    }

    .cont_inner {
      flex-direction: column;
      gap: 30px;
    }
  }
}

/* ------------------
下層ページ共通
------------------ */
.com_bg {
  /* background: url(/common/img/cmn_bg.png) repeat; */
  background: #e8ecf7;
}

.under_mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 200px;
  /* background: url(/common/img/cmn_bg.png) repeat; */
  background: #e8ecf7;
  position: relative;
  padding: 50px 0;
}

.under_mv_inner {
  max-width: 1152px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.page_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin: auto;
  position: relative;
  padding-left: 30px;
  border-left: 6px solid #054094;
}

.page_title--main {
  font-size: 5.6rem;
  font-weight: normal;
  color: var(--main-blue);
  letter-spacing: 6px;
  line-height: calc(1em + 0.5rem);
}

.page_title--sub {
  margin-top: 15px;
}

.page_visual {
  max-width: 1152px;
  width: 100%;
  margin: -154px auto 0;
  position: relative;
  z-index: 1;
}

*:has(.page_visual) .under_mv {
  padding-bottom: 200px;
}

.bot_cont {
  padding: 60px 0 0;
}

.bot_cont_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #F4F6FB;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding: 40px 5%;
}

.bot_cont_head--main {
  font-size: var(--fs-40);
  color: var(--main-blue);
  line-height: 1.2;
}

.bot_cont_body {
  margin-top: 20px;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bot_cont_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 324px;
  width: 100%;
  background: #fff;
  color: var(--deep-blue);
  border: 1px solid var(--deep-blue);
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  gap: 10px;
  font-size: var(--fs-28);
  line-height: 1;
}

/* パンくずリスト */
.breadcrumb {
  position: absolute;
  top: 0;
  left: 5%;
}

.breadcrumb_list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.breadcrumb_item {
  color: var(--txt-color);

  a {
    text-decoration: underline;
    color: var(--txt-color);

    &:hover {
      text-decoration: none;
    }
  }

  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 5px;
  }

  &:has(a[href])::after {
    content: "＞";
    font-size: 1rem;
    font-weight: bold;
    color: var(--deep-blue);
  }
}

main {
  padding-bottom: var(--sp-60);
}

/* article */
.article {
  padding-top: var(--sp-60);
}

.art_inner {
  max-width: 1024px;
  width: 90%;
  margin: auto;
}

.art_head {
  position: relative;
  font-size: var(--fs-40);
  color: var(--main-blue);
  font-weight: normal;
  padding-bottom: 20px;
  border-bottom: 1px solid #C2C2C2;
  padding-left: 15px;

  &::before {
    content: '';
    display: block;
    width: 6px;
    height: 1em;
    background: #054094;
    position: absolute;
    left: 0;
    top: 0.15em;
  }
}

.art_sub {
  font-size: var(--fs-24);
  font-weight: bold;
}

/* ------------------
 footer
------------------ */
footer {
  /* background: url(/common/img/cmn_bg.png) repeat; */
  background: #e8ecf7;
}

.ft_inner {
  max-width: var(--width-1024);
  width: 100%;
  margin: auto;
  padding: 40px 0 20px 0;
}

.ft_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.ft_left {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}

.ft_comp_name {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 40px;
  font-family: "BIZ UDPGothic";
}

.ft_add {
  margin-top: 10px;
  line-height: 200%;
  font-family: "Noto Sans JP";
}

.ft_nav {
  display: flex;
  justify-content: flex-end;
  font-family: "Noto Sans JP";
  line-height: 1.75;
}

.ft_nav_list {
  padding: 0 30px;
  border-right: 1px solid var(--white);
  display: flex;
  flex-direction: column;

  li {
    display: flex;
    align-items: center;
  }

  &:first-child {
    border-left: 1px solid var(--white);
  }
}

.ft_nav_list:nth-child(2) {
  border-right: none;

}


.ft_nav_list:nth-child(3) {
  padding: 1.5em 30px 0;
}

.fn_top {
  font-weight: bold;

  a {
    color: var(--main-blue);
  }
}

.fn_second {
  margin-left: 10px;
  margin-top: 15px;

  &:first-child {
    margin-top: 0;
  }

  a {
    color: var(--main-blue);
  }

  &::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: var(--main-blue);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-right: 5px;
  }
}

.fn_third {
  margin-left: 20px;

  a {
    color: var(--txt-color);
  }

  &::before {
    content: '';
    display: block;
    width: 8px;
    height: 2px;
    background: var(--txt-color);
    margin-right: 5px;
  }
}

.fn_fourth {
  margin-left: 45px;

  a {
    color: var(--txt-color);
  }
}

.ft_bot {
  background: #fff;
}

.ft_bot_inner {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
}

.ft_nav_add {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.fna_link {
  color: #707070;
  font-size: 1.4rem;
}

.copyright {
  font-family: "Noto Sans JP";
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  opacity: 0.75;

  a {
    position: relative;
    top: 2px;
  }
}

/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}

#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.6;
  visibility: visible;
  z-index: 8;
}

@media screen and (max-width: 1279px) {

  /* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }

}

@media screen and (max-width: 1376px) {
  .ft_comp_name {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 40px;
    font-family: "BIZ UDPGothic";
    width: 9%;
    font-size: 1.2em;
    line-height: 1.3;
  }
}

@media screen and (min-width: 768px) {

  /* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* iPad調整用 */
@media screen and (orientation: portrait) and (min-width: 768px) {}

@media screen and (max-width: 767px) {
  main {
    margin-top: 56px;
  }

  .text-wrap {
    display: inline-block;
  }

  /* ------------------
  header
  ------------------ */
  .hd_pc {
    display: none;
  }

  .hd_inner {
    height: 56px;
  }

  .header_logo {
    max-width: 210px;
  }

  /* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }

  /* スマホのみ表示する要素を表示 */
  .sp_block {
    display: block;
  }

  .pc_block {
    display: none;
  }

  /* ------------------
  スマホメニュー
  ------------------ */
  /* ボタン */
  .spNav_btn {
    display: block;
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--main-blue);
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 100;

    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: 18px;
      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: 18px;
      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: 13px;
    }

    &[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: 13px;
    }
  }

  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 260px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--main-blue);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    overflow: auto;
    z-index: 99;

    /* パネルが閉じている状態 */
    &[aria-hidden="true"] {
      visibility: hidden;
      pointer-events: none;
      transform: translateX(100%);
    }

    /* パネルが開いている状態 */
    &[aria-hidden="false"] {
      visibility: visible;
      transform: translateX(0);
    }
  }

  /* メニューパネル内の項目 */
  .spNav_list {
    width: 100%;
    padding: 56px 0 0;
    font-size: 1.5rem;
  }

  .spNav_list--item {
    border-bottom: 1px solid #fff;

    a {
      display: block;
      padding: 12px 20px;
      color: #fff;
    }
  }

  .spNav_accordion--title {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;

    &::after {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }

    /* アコーディオン開閉時の状態表示 */
    &[aria-expanded="false"]::after {
      content: "+";
    }

    &[aria-expanded="true"]::after {
      content: "-";
    }

    /* アコーディオン内の項目 */
    &[aria-expanded="false"]+.spNav_accordion {
      max-height: 0;
      height: auto;
    }

    &[aria-expanded="true"]+.spNav_accordion {
      max-height: 1000px;
    }
  }

  .spNav_accordion {
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;

    a {
      padding-left: 15%;
      color: var(--txt-color);
      border-bottom: 1px dashed #ccc;
    }
  }

  /* ------------------
  下層ページ共通
  ------------------ */
  .under_mv {
    min-height: 200px;
    padding: 30px 5%;
    flex-direction: column;
  }

  .page_title {
    padding-left: 15px;
  }

  .page_title--main {
    font-size: 3.6rem;
    letter-spacing: 0;
  }

  .breadcrumb {
    position: static;
    margin-bottom: 10px;
  }

  .page_visual {
    min-height: 200px;
    margin-top: -150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    .mv_bg {
      width: auto;
      height: auto;
      max-width: none;
      max-height: 200px;
      object-fit: cover;
    }
  }

  *:has(.page_visual) .under_mv {
    padding-bottom: 200px;
  }

  /* ------------------
  footer
  ------------------ */
  .ft_inner {
    padding: 25px 5%;
  }

  .ft_right {
    display: none;
  }

  .ft_left {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0 0;
  }

  .ft_bot_inner {
    flex-direction: column-reverse;
    gap: 0;
  }

  .ft_comp_name {
    margin-left: 0;
    width: 100%;
  }
.ft_nav_add {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    /* justify-content: center; */
    justify-content: flex-start;
    /* gap: .5em; */
}
  .copyright {
    margin-top: 20px;
    display: inline-block;

    a {
      display: inline-block;
    }
  }
}

/* 印刷用設定 */
@media print {
  body {
    width: 1280px !important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }

  header {
    position: absolute;
    top: 0;
  }
}

@page {
  size: A4;
  margin: 5px;
}