@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --main-color: #023894;
  --sub-color: #00CCFF;
  --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.7rem;
  --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.5rem;

    /* 余白 */
    --space-90: 60px;
    --space-65: 45px;
    --space-30: 20px;
  }
}

html {
	scroll-padding-top: 85px;
}

/* ------------------
 フォント
------------------ */
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: var(--main-txt);
	line-height: 1.5;
  font-weight: 600;
	position: relative;
}
.f_min {
  font-family: "Noto Serif", serif;
}
.f_san {
  font-family: "Noto Sans JP", sans-serif;
}
/* ------------------
 config
------------------ */
:where(a){color: #000;&: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: var(--width-1200);
	width: 90%;
	margin: var(--space-65) auto;
}
.paragraph {
  padding-bottom: var(--space-30);
}

/* ------------------
 各種パーツ
------------------ */
.anc_point{
  position: absolute;
  top: -100px;
}
.art_head{
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
.art_head--main {
  font-size: 8rem;
  line-height: 1;
  font-weight: bold;
}
.art_head--sub {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: normal;
}
.more_btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 40px;
  background: #fff;
  max-width: 320px;
  width: 100%;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 50px;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_more.svg) no-repeat center;
    background-size: contain;
    min-width: 48px;
    height: 48px;
  }
}
.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;
}
/* ------------------
 見出し関連
------------------ */




/* ------------------
 テキスト関連
------------------ */
.text-wrap{
  display: inline-block;
}


/* ------------------
 リスト、インデント関連
------------------ */
main{
}

/* ------------------
 header
------------------ */
.header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	background: rgba(255,255,255,0);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
.header_logo {
  & a{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:10px;
    max-width: 370px;
    background: #fff;
    border-radius: 0 0 100px 0;
    padding: 25px 40px 25px 30px;
  }
}
a.hd_contact {
  position: absolute;
  top: 25px;
  right: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  height: 40px;
  background: #F60;
  color: #fff;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 30px 0 0 30px;
  &::before{
    content: '';
    display: block;
    background: url(../img/icon_mail.svg) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 16px;
  }
}

.pc_nav {
}
.pc_nav--list {
  display: flex;
  align-items: flex-start;
  position: absolute;
  right: 0;
  top: 82px;
  border-radius: 30px 0px 0px 30px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0 15px;
}
.pc_nav--item {
	& > a {
		height: 60px;
		padding: 0 7.5px;
		display: flex;
		align-items: center;
		color: #000;
    font-size: 1.8rem;
    font-weight: bold;
	}
}
.header_contact {
	width: 184px;
	height: 40px;
	& button {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--grad-menu);
		color: #fff;
		font-weight: bold;
    border-radius: 50px;
	}
	& > a {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--grad-menu);
		color: #fff;
		font-weight: bold;
    border-radius: 50px;
	}
}
.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 {
  width: 100%;
  padding: 60px 0 0;
  background: #EFEFEF;
  background-size: cover;
  position: relative;
}
.footer_flex {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
.ft_name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #4A281F;
}
.ft_data {
  line-height: 2;
  border-left: 3px solid #FF6600;
  padding-left: 1em;
  margin-top: 30px;
}
.copyright {
  font-size: 1.6rem;
  color: #fff;
  background: #4A281F;
  text-align: center;
  padding: 20px 0;
}
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 20px;
  max-width: 400px;
  width: 100%;
  justify-content: space-between;
  line-height: 2;
}
.footer_item {
  padding-left: 1em;
}
.footer_item a {
  color: #351300;
}
.footer_item--head {
  width: 100%;
  padding-left: 0;
  height: auto;
}
/* ------------------
下層ページ共通
------------------ */
/* パンくずリスト */
.breadcrumb {
  max-width: var(--width-1200);
  width: 90%;
  margin: 120px auto 0;
  position: relative;
  padding-bottom: 30px;
}
.breadcrumb_list {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap:5px;
}
.breadcrumb_item {
  color: #222;
  a {
    text-decoration: underline;
		color: #222;
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 5px;
  }
  &:has(a[href])::after {
    content: ">";
    color: #00d1d1;
  }
}

/* about_nav */
.about_nav {
  background: #F8F8F8;
  padding: 60px 0;
}
.about_nav_list {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about_nav_card {
  position: relative;
  max-width: 328px;
  width: 100%;
  &:hover{
    opacity: 1;
  }
}
.about_nav_img{
  width: 100%;
  max-height: 342px;
  overflow: hidden;
}
.about_nav_img img{
  transition: .3s;
}
.about_nav_card:hover .about_nav_img img{
  transform: scale(1.1);
}
.about_nav_cap {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:5px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  & span{
    background: #222;
    padding: 0 10px;
  }
}
/* people_nav */
.people_nav {
  position: relative;
  background: #Fff;
  padding: 70px 0;
}
.people_nav_list {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.people_nav_card {
  max-width: 328px;
  width: 100%;
  height: 280px;
  padding: 10px;
  box-sizing: border-box;
  background: url(/recruit/people/img/nav_bg.png);
  background-size: cover;
  position: relative;
}
.people_nav_img{
  position: absolute;
  bottom: 0;
  right: 0px;
}

/* work_nav */
.work_nav{
  background: #fff;
  padding: 60px 0;
}
.work_nav_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.work_nav_card{
  max-width: 241px;
  min-height: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8f8f8;
  &:hover{
    opacity: 1;
  }
}
.work_nav_thumb{
  max-width: 100%;
  max-height: 155px;
  overflow: hidden;
}
.work_nav_thumb img{
  transition: .3s;
}
.work_nav_card:hover .work_nav_thumb img{
  transform: scale(1.1);
}
.work_nav_plate{
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  min-height: 4em;
}
.work_nav_card--story{
  background: none;
  .work_nav_thumb{
    max-width: 180px;
    max-height: 180px;
    border-radius: 50%;
    overflow: hidden;
  }
  .work_nav_sub{
    line-height: 1;
    margin-top: 5px;
  }
}
/* cross_nav */
.cross_nav {
  background: #222;
  padding: 60px 0;
}
.cross_nav_inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 763px;
  width: 90%;
  margin: auto;
  gap: 20px;
}
.cross_nav_card{
  background: #00D1D1;
  font-size: 1.8rem;
  max-width: 241px;
  width: calc(50% - 5px);
  text-align: center;
  &:hover{
    opacity: 1;
  }
}
.cross_nav_plate{
  padding: 10px 0;
}
.cross_nav_img{
  max-width: 100%;
  max-height: 155px;
  overflow: hidden;
}
.cross_nav_img img{
  transition: .3s;
}
.cross_nav_card:hover .cross_nav_img img{
  transform: scale(1.1);
}
/* お問い合わせ */

.cmn_contact{
  position: relative;
}
.cmn_contact_inner {
  display: flex;
  justify-content: center;
}
.cmn_contact_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  /* width: 50%; */
  width: 100%;
  min-height: 320px;
  background: var(--grad-menu);
}
.cmn_contact_top {
  font-size: 5.6rem;
  line-height: 1;
  .f_bar{
    font-size: 9.6rem;
    font-weight: 600;
  }
}
.cmn_contact_mid {
  font-size: 8rem;
  font-weight: 600;
  line-height: 1;
}
.cmn_contact_bot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 264px;
  min-height: 40px;
  background: #fff;
  border-radius: 50px;
  margin-top: 15px;
}


.other{
  background: #f8f8f8;
  padding: 120px 0;
  position: relative;
}
.oth_inner{
  max-width: 880px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:20px;
}
.oth_btn{
  max-width: 400px;
  width: 100%;
  padding: 20px 40px 20px 60px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 50px;
}
.oth_btn::after{
  content: '';
  display: block;
  background: url(../../common/img/arrow_more.svg) no-repeat center;
  min-width: 64px;
  height: 64px;
  background-size: contain;
}

/* ------------------
  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;}
	

  /* 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;}


  /* ------------------
  スマホメニュー
  ------------------ */
  .pc_nav {display: none;}
  .header{
    padding: 0;
  }
  .hd_logo_sub {
    display: none;
  }
  .header_logo {
    & a {
      max-width: 50vw;
      width: 200px;
      background: none;
    }
  }
  /* ボタン */
  .spNav_btn {
    display: block;position: fixed; width: 60px;height: 60px;padding-top: 26px; top:10px;right: 10px;transition: all 0.5s;z-index: 11;color: #fff;font-size: 1.2rem;font-weight: bold;background: #f60; border-radius: 50%;
    span {position: absolute;display: block;height: 1px;background: #fff;margin-inline: auto;left: 0;right: 0;width: 20px;}
    
    /* 閉じた状態 */
    &[aria-pressed="false"] span {transition: all 0.5s;width: 20px;}
    &[aria-pressed="false"] span:nth-child(1) {top: 21px;}
    &[aria-pressed="false"] span:nth-child(2) {top: 29px;}
    &[aria-pressed="false"] span:nth-child(3) {top: 37px;}
    
    /* 開いた状態 */
    &[aria-pressed="true"] span {transition: all 0.5s;}
    &[aria-pressed="true"] span:nth-child(1) {transform: rotate(45deg);top: 29px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {transform: rotate(-45deg);top: 29px;}
  }

  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 300px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background:#22150B;
    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: #fff1e7;
    transition: all 0.5s;
    a {
      padding-left: 15%;
      color: #000;
      border-bottom: 1px dashed #ccc;
    }
  }
  .header_contact {
    margin: 20px auto;
  }

  
  .art_head--main {
    font-size: 5rem;
  }
  .art_head--sub {
    font-size: 2.4rem;
  }
  /* about_nav */
  .about_nav_list {
    flex-direction: column;
    align-items: center;
  }
  /* people_nav */
  .people_nav {
    padding: 40px 0;
  }
  .people_nav_list {
    gap: 10px;
  }
  .people_nav_card {
    max-width: 328px;
    width: calc(50% - 5px);
    height: min(280px, 43vw);
  }
  .people_nav_img{
    right: 5%;
    max-width: 70%;
  }
  .people_nav_name {
    font-size: min(1.7rem, 2.8vw);
  }

  .work_nav_inner{
    gap:10px;
  }
  .work_nav_card {
    width: calc(50% - 5px);
    min-height: 0;
    padding-bottom: 10px;
  }
  .work_nav_plate {
    font-size: min(1.7rem, 3.8vw);
  }
  .work_nav_sub{
    font-size: min(1.7rem, 3.8vw);
  }
  
  .cross_nav_inner {
    gap: 10px;
  }
  .cross_nav_plate {
    font-size: min(1.7rem, 3.25vw);
  }
  
  .other {
    padding: 40px 0;
  }
  .oth_inner {
    flex-direction: column;
    align-items: center;
  }
  .oth_btn {
    padding: 10px 20px 10px 40px;
    font-size: 2.4rem;
    font-weight: normal;
  }
  
  /* 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;
  }
  .footer{
    padding: 10px 0 0;
    position: relative;
  }
  .footer_nav {
    & a {
      display: flex;
      flex-direction: column;
      width: 100%;
      line-height: 1.5;
      .f_bar {
        min-width: 0px;
      }
      .f_min {
        width: 100%;
        text-align: left;
      }
    }
  }
  .footer_nav--list {
    width: 100%;
    max-width: 300px;
  }
  .footer_flex {
    padding-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
  .footer_links {
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 5px 20px;
    line-height: 1.5;
  }
  .copyright{
    line-height: 1.5;
  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
}
@page {
  size: A4;margin: 5px;
}