@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');
/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --main-color: #1F2D8E;
  --sub-color: #00AEEF;
  --bg-color: #D9E1EF;
  --gray: #F5F5F5;

  /* 背景 */
  --grad-menu:linear-gradient(135deg, #0FA 0%, #05F 100%);
  --grad-cyan:linear-gradient(135deg, #b3ffe6 0%, #b3ccff 100%);
  --grad-yell:linear-gradient(135deg, #ffbfb3 0%, #fffeb2 100%);
  --grad-mage:linear-gradient(135deg, #b3e5ff 0%, #feb3ff 100%);

  /* 文字サイズ */
	--font-46: 4.6rem;
	--font-34: 3.4rem;
  --font-32: 3.2rem;
	--font-24: 2.4rem;
  --font-22: 2.2rem;
  --font-20: 2rem;
	--main-txt: 1.6rem;
  --font-14: 1.4rem;

  /* 幅 */
  --width-1200: 1200px;

  /* 余白 */
  --space-90: 90px;
  --space-65: 65px;
  --space-30: 30px;
}
@media screen and (max-width: 767px) {
  :root {
    /* 文字サイズ */
    --font-46: 3.2rem;
    --font-34: 2.4rem;
    --font-32: 2.2rem;
    --font-24: 2rem;
    --font-22: 1.8rem;
    --font-20: 1.7rem;
    --main-txt: 1.6rem;

    /* 余白 */
    --space-90: 60px;
    --space-65: 45px;
    --space-30: 20px;
  }
}

html {
	scroll-padding-top: 85px;
}

  html #wpadminbar {
    display: none !important;
  }
  html {
    margin-top: 0 !important;
  }
/* ------------------
 フォント
------------------ */
body {
  font-family: "Noto Sans JP",'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: var(--main-txt);
	line-height: 1.75;
	position: relative;
  color: #000;
}
.f_os {
  font-family: "Oswald",Meiryo,sans-serif;
}
.f_mag{
  font-family: "Yusei Magic",Meiryo, sans-serif;
}
/* ------------------
 config
------------------ */
:where(a){color: #000000;&:hover {opacity: 0.8;}}
:where(h1,h2,h3,h4,h5){line-height: 1.5;}
:where(button){font-family: 'Noto Sans JP';font-size: var(--main-txt);}

/* スマホメニュー非表示 */
.spNav_btn,.spNav_panel {display: none;}

/* スマホ閲覧時のみ表示 */
.sp_block {display: none;}

/* ------------------
 アニメーション
------------------ */
.fade{
  opacity: 0;
  transition:ease-out 0.5s;
}
.fade.fade--left{
  transform: translate(-100px,0)
}
.fade.fade--right{
  transform: translate(100px,0)
}
.fade.fade--bot{
  transform: translate(0,100px)
}
.fade.scrollin{
  opacity: 1;
  transform: translate(0,0);
}
.fade.fade--list{
  opacity: 1;
}
.fade.fade--list .fade_child{
  opacity: 0;
  transition:ease-out 0.5s;
  transform: translate(0,100px)
}
.fade.fade--list.scrollin .fade_child{
  opacity: 1;
  transform: translate(0,0);
}

.fade.fade--list .fade_child:nth-child(1){
  transition-delay: 0.0s;
}
.fade.fade--list .fade_child:nth-child(2){
  transition-delay: 0.15s;
}
.fade.fade--list .fade_child:nth-child(3){
  transition-delay: 0.3s;
}
.fade.fade--list .fade_child:nth-child(4){
  transition-delay: 0.45s;
}
.fade.fade--list .fade_child:nth-child(5){
  transition-delay: 0.6s;
}
.fade.fade--list .fade_child:nth-child(6){
  transition-delay: 0.75s;
}
.fade.fade--list .fade_child:nth-child(7){
  transition-delay: 0.9s;
}
.fade.fade--list .fade_child:nth-child(8){
  transition-delay: 1.05s;
}
.fade.fade--list .fade_child:nth-child(9){
  transition-delay: 1.2s;
}
.fade.fade--list .fade_child:nth-child(10){
  transition-delay: 1.35s;
}
/* ------------------
 レイアウト
------------------ */
.container {
	max-width: 1024px;
	width: 90%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.paragraph {
  padding-bottom: var(--space-30);
}
.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mt_60{margin-top: 60px;}
.mt_70{margin-top: 70px;}
.mt_80{margin-top: 80px;}
.mt_90{margin-top: 90px;}
.mt_100{margin-top: 100px;}
.center{
  text-align: center;
}
.blue{
  color: var(--main-color);
}
.cyan{
  color: var(--sub-color);
}
/* ------------------
 各種パーツ
------------------ */
.anchor{
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px 20px;
  padding: 60px 0 0;
}
.anc_btn{
  max-width: 190px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #1F2D8E;
  border:1px solid;
  position: relative;
  &::after{
    content: '';
    display: block;
    background: url("../img/arrow_anchor.svg") no-repeat center;
    min-width: 11px;
    height: 6px;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    right: 20px;
  }
}
.anc_point{
  position: absolute;
  top: 0px;
}
.art_head {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: bold;
}
.art_head_main{
  font-size: 2.8rem;
  position: absolute;
  z-index: 1;
  &.art_head_main--shadow{
    filter: drop-shadow(0 0 10px #000);
  }
  &.art_head_main--white{
    color: #fff;
  }
}
.art_head_sub{
  font-size: 8rem;
  position: relative;
  z-index: 0;
  opacity: .15;
    line-height: 1;
  &.art_head_sub--white{
    color: #fff;
  }
  &.art_head_sub--blue{
    color: #1F2D8E;
  }
  &.art_head_sub--cyan{
    color: #00AEEF;
  }
}
.title_line {
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #1F2D8E;
}
.title_line--cyan {
  border-bottom: 1px solid var(--sub-color);
}
.more_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #323232;
  color: #fff;
  width: 100%;
  height: 65px;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 50px;
  position: relative;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_right.svg) no-repeat center;
    background-size: contain;
    min-width: 13px;
    height: 13px;
    position: absolute;
    right: 15px;
  }
}
.more_btn--rev{
  background: #fff;
  color: #2a57b2;
  &::after{
    background: url(../img/arrow_right_blue.svg) no-repeat center;
    background-size: contain;
  }
}
.indent{
  padding-left: 1em;
  text-indent: -1em;
}
a.tdu {
  text-decoration: underline;
}
a.blank{
  &::after{
    content: '';
    display: inline-block;
    background: url(../img/icon_blank.svg) no-repeat center;
    background-size: contain;
    width: 11px;
    height: 10px;
    margin-left: 5px;
  }
}
.bold{
  font-weight: bold;
}
.green{
  color: #00D1D1;
}
.red{
  color: #ff5050;
}
/* ------------------
 見出し関連
------------------ */




/* ------------------
 テキスト関連
------------------ */
.text-wrap{
  display: inline-block;
}


/* ------------------
 リスト、インデント関連
------------------ */

/* ------------------
 header
------------------ */
header{
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
.header_inner {
  max-width: 1160px;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  padding: 0 30px;
}
.pc_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.pc_nav_top {
  display: flex;
}
.pc_nav_btn {
  & a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 10px;
    padding: 0px 20px;
    background: #000;
    color: #fff;
    line-height: 1;
  }
}
.pc_nav_btn--dl a{
  background: #1F2D8E;
  &::before{
    content: '';
    display: block;
    background: url("../img/icon_dl.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 24px;
    height: 23px;
  }
}
.pc_nav_btn--cont a{
  background: #00AEEF;
  &::before{
    content: '';
    display: block;
    background: url("../img/icon_mail.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 22px;
    height: 15px;
  }
}
.pc_nav_list {
  display: flex;
  gap: 40px;
  padding: 0 20px;
}
.pc_nav_item a{
  padding: 15px 0;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}
.mega {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  background: var(--grad-cyan);
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: .3s;
}
.pc_nav_item:hover .mega{
  height: 270px;
  opacity: 1;
}
.mega_inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
}
.mega_card {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 470px;
  width: 100%;
}
.mega_col{
  max-width: 200px;
  width: 100%;
}
.mega_head {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
}
.mega_sub {
  font-size: 2.4rem;
}
.mega_more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #00D1D1;
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
  &::after{
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url(../img/arrow_more.svg) no-repeat center;
    background-size: contain;
  }
}

.pop{
  background: none;
  border: 0;
}
.pop_mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  top: 0;
  left: 0;
}
.pop_inner {
  background: #f8f8f8;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 908px;
  width: 100%;
  padding: 50px;
}
.pop_head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
  background: var(--grad-cyan);
  font-size: 2.4rem;
  font-weight: bold;
}
.pop_top {
  display: flex;
  justify-content: center;
  background: #fff;
  gap: 80px;
  padding: 50px;
}
.pop_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 140px;
  border: 1px solid #00AAEB;
}
.pop_plate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_more.svg) no-repeat center;
    background-size: contain;
    width: 30px;
    height: 30px;
  }
}
.pop_bot {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.pop_btn {
  max-width: 379px;
  width: 100%;
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--grad-mage);
  padding: 0 30px 0 60px;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 50px;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_side_03.svg) no-repeat center;
    background-size: contain;
    width: 57px;
    height: 57px;
  }
}
.pop_btn:last-child {
  background: var(--grad-yell);
  &::after{
    background: url(../img/arrow_side_02.svg) no-repeat center;
    background-size: contain;
  }
}
/* ------------------
 footer
------------------ */
.footer {

}

.ft_cont {
  height: 380px;
  position: relative;
  padding-top: 80px;
  &::before{
    content: '';
    display: block;
    width: 100%;
    height: 315px;
    background: url("../img/bg_contact.png") no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#product ~ footer .ft_cont::before{
  background: url("../img/bg_contact_pro.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
#tech .ft_cont::before{
  background: url("../img/bg_contact_tech.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
#company .ft_cont::before{
  background: url("../img/bg_contact_comp.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
#news ~ footer .ft_cont::before{
  background: url("../img/bg_contact_news.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
#privacy .ft_cont::before{
  background: url("../img/bg_contact_priv.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
#contact .ft_cont::before{
  background: url("../img/bg_contact_cont.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
#recruit .ft_cont::before{
  background: url("../img/bg_contact_rec.png") no-repeat center top;
  -webkit-background-size: cover;
  background-size: cover;
}
.ft_cont_block {
  width: 90%;
  margin: auto;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: relative;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_right.svg) no-repeat center;
    background-size: contain;
    width: 27px;
    height: 27px;
    position: absolute;
    right: 0;
    top: 30px;
  }
}
a.ft_cont_sub {
  max-width: 850px;
  width: 100%;
  background: #00aeef;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto 0;
  height: 160px;
  font-size: 2.4rem;
  color: #fff;
  &:hover{
    opacity: 1;
  }
  &::before{
    content: '';
    display: block;
    background: url("../img/icon_mail.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 38px;
    height: 26px;
    margin-right: 15px;
  }
}
.footer_flex {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding: 65px 30px;
  display: flex;
  justify-content: space-between;
}
.footer_left {
  display: flex;
  gap: 20px 40px;
}
.footer_add {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_links {
  display: flex;
  flex-wrap: wrap;
  max-width: 250px;
  gap: 5px;
}
.footer_nav {
  border-left: 1px solid #00aeef;
  display: flex;
}
.footer_nav--list{
  padding: 0 30px;
  border-right: 1px solid #00aeef;
  line-height: 2;
}
.footer_nav--top{
}
.footer_nav--second{
  padding-left: 1em;
}
.footer_nav--third{
  padding-left: 2em;
}


.copyright {
  color: #fff;
  width: 100%;
  margin: auto;
  padding: 5px 5% 10px;
  background: #00AEEF;
  display: flex;
  justify-content: center;
  & small{
    display: flex;
  font-size: 1.2rem;
  align-items: center;
  }
  & a{
    display: inline;
    height: 13px;
  }
}

/* ------------------
製品ページnav
------------------ */
.nav_product {
  margin-top: 100px;
  background: #1f2d8e;
  padding: 60px 0;
  & .container{
    display: flex;
    justify-content: space-between;
    gap:10px 20px;
  }
}
.nav_product_card {
  position: relative;
  overflow: hidden;
  & img{
    transition: .3s;
  }
  &:hover{
    opacity: 1;
    & img{
      transform: scale(1.1);
    }
  }
  & figcaption{
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
  }
}
/* ------------------
下層ページ共通
------------------ */
/* パンくずリスト */
.breadcrumb {
  max-width: 1024px;
  width: 90%;
  margin: 5px auto;
  position: relative;
}
.breadcrumb_list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:5px;
}
.breadcrumb_item {
  color: #000;
  a {
    text-decoration: underline;
		color: #000;
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 5px;
  }
  &:has(a[href])::after {
    content: "-";
    color: #000;
  }
}
.under_mv {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: #F4F4F4;
  background-size: cover;
}
.page_title {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  height: 200px;
  background: rgba(31, 45, 142, .75);
  color: #fff;
  font-size: 4.8rem;
  position: relative;
  top: 30px;
}
#recruit .page_title {
  background: rgba(0, 174, 239, .75);
}
/* ------------------
  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-inline: auto;
}
#backtop.active {
  opacity: 0.6;
  visibility: visible;
  z-index: 50;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@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: 1023px) {
}

@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
.sp_block {display: block;}
.pc_block,.pc_nav {display: none;}

  /* ------------------
  スマホメニュー
  ------------------ */
  .pc_nav {display: none;}
  header{
    height: 60px;
  }
  .header_logo {
    padding: 0 10px;
    max-width: 110px;
  }
  /* ボタン */
  .spNav_btn {
    display: block;position: absolute; width: 40px;height: 40px; transition: all 0.5s;z-index: 11;color: #fff;font-size: 1.2rem;font-weight: bold; background: #1F2D8E; top: 10px; right: 10px;
    span {position: absolute;display: block;height: 2px;background: #fff;margin-inline: auto;}
    
    /* 閉じた状態 */
    &[aria-pressed="false"]::before {content: 'MENU';font-size: 0.8rem;color: #fff; position: absolute;top: 3px;left: 0;right: 0;width: 100%;}
    &[aria-pressed="false"] span {transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {width: 20px; top: 16px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {width: 20px; top: 22px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(3) {width: 20px; top: 28px;left: 0;right: 0;}
    
    /* 開いた状態 */
    &[aria-pressed="true"]::before {content: 'CLOSE';font-size: 0.8rem;color: #fff; position: absolute;top: 3px;left: 0;right: 0;width: 100%;}
    &[aria-pressed="true"] span {transition: all 0.5s;}
    &[aria-pressed="true"] span:nth-child(1) {width: 21px; top: 27px;transform: translateY(-1.5px) rotate(45deg);left: 0;right: 0px;}
    &[aria-pressed="true"] span:nth-child(3) {width: 21px; top: 24px;left: 0;right: 0; opacity: 0;}
    &[aria-pressed="true"] span:nth-child(2) {width: 21px; bottom: 14px;transform: translateY(1.5px) rotate(-45deg);left: 0;right: 0px;}
  }
  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 300px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--main-color);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    overflow: auto;
    z-index: 9;
    
    /* パネルが閉じている状態 */
    &[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: #1f2d8e;
      border-bottom: 1px dashed #ccc;
    }
  }
  a.header_contact {
  font-size: 2.4rem;
  height: 48px;
  padding: 5px 00 0;
  margin: 20px auto 0;
}
.header_inst {
  position: absolute;
  top: 10px;
  left: 15px;
}

  /* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 0;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 8;overflow: hidden;pointer-events: none;}
  body:has(#onbody[aria-hidden="true"]) {height: 100%; overflow: hidden;}

.art_head{
  min-height: 60px;
}
.art_head_main {
  font-size: min(2.8rem,7.5vw);
  position: absolute;
  z-index: 1;
}
.art_head_sub {
  font-size: min(8rem, 15vw);
}
.under_mv {
  min-height: 200px;
  margin-top: 60px;
}
.page_title {
  top: 0;
  height: 120px;
  padding: 0 2.5%;
  font-size: min(3.6rem, 7vw);
  text-align: center;
  line-height: 1.25;
}
.title_line {
  font-size: 2.4rem;
}
.nav_product {
  & .container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.nav_product_card {
  & figcaption{
    font-size: 2rem;
  }
}
.anchor {
  flex-direction: column;
  align-items: center;
}
  /* footer */
  .cmn_contact_inner {
    flex-direction: column;
  }
  .cmn_contact_btn {
    width: 100%;
  }
  .cmn_contact_top {
    font-size: 3.6rem;
    line-height: 1;
    .f_bar {
      font-size: 6.4rem;
    }
  }
  .cmn_contact_mid {
    font-size: 6rem;
  }
  .cmn_contact_btn {
    width: 100%;
    min-height: 230px;
  }
.ft_cont {
  height: 280px;
  position: relative;
  padding-top: 80px;
  &::before {
    height: 215px;
  }
}
a.ft_cont_sub {
  margin-top: 40px;
  height: 120px;
  font-size: min(2.4rem, 4.5vw);
}
.footer_left {
  flex-direction: column;
}
  .footer_flex{
    padding: 50px 0;
  }
.footer_nav {
  display: none;
}
  .copyright{
    line-height: 1.5;
  & small {
    display: block;
  }
  & a {
    display: inline-block;
    padding-top: 2.5px;
  }

  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  header{
    position: absolute;
  }
  .header{
    position: absolute;
  }
}
@page {
  size: A4;margin: 5px;
}