@charset "UTF-8";
/*============================================================================================================
	初期設定
============================================================================================================*/
body {
  color: #0F1E40;
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  letter-spacing: .7px;
  background: #F1F1F2;
}

div, h1, h2, h3, h4, h5, p, li, dl, dt, dd, th, td, article, header, footer, nav, span, a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  height: auto;
  width: auto;
  max-width: 100%;
  line-height: 100%;
  vertical-align: bottom;
}
em {
  font-style: normal;
}
h1, h2, h3, h4, h5 {
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
}
p, li, td, th, dt, dd {
  font-size: 17px;
  line-height: 2;
  margin: 0;
  word-wrap: break-word;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  word-break: break-all;
}
ul, ol {
  padding: 0;
  margin: 0;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 769px) {
  .pchd {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sphd {
    display: none !important;
  }
}

/* ページトップボタン：常に block（表示制御は opacity / visibility で） */
#pageTopBtn {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 55px;
  opacity: 0;
  transform: translateY(60px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .7s ease-out,
    transform .7s cubic-bezier(0.19, 1, 0.22, 1),
    visibility .7s ease;
  cursor: pointer;
  z-index: 9999;
}

/* 出現：ふわっと表示 */
#pageTopBtn.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

#pageTopBtn:hover {
  opacity: 0.9;
}

/* 
---------------------------------------------------------
 フッターボタン
--------------------------------------------------------- 
*/
@media (max-width: 768px) {

  #footerbtn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  #footerbtn.show {
    transform: translateY(0);
  }
  #footerbtn ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #footerbtn li {
    width: 50%;
    border-right: 1px solid #fff
  }
  #footerbtn li:last-child {
    border-right: none;
  }
  #footerbtn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  #footerbtn a i {
    font-size: 22px;
    margin-bottom: 3px;
    font-weight: 900;
  }
  #footerbtn a:hover {
    background: #444;
  }

}

@media (min-width: 769px) {
  #footerbtn {
    display: none;
  }
}

/*------------------------------------------
	フォント
------------------------------------------*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", 'ヒラギノ角ゴシック Pro', "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.serif {
  font-family: 'Noto Serif JP', serif;
}
.cormorant {
  font-family: 'Cormorant Garamond', serif;
}

/*------------------------------------------
	枠
------------------------------------------*/
/* ★修正：PC(769px以上)は常に固定幅（769〜1080でもズレない） */
@media screen and (min-width: 769px) {
  body {
    min-width: 1200px;
  }
  .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  body { min-width: 0 !important; }
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
  .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  #contents.page {
    padding-top: 75px;
  }
}

/*============================================================================================================
	hover
============================================================================================================*/
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover {
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
  }
}

/* =========================
   Header (PC: 769px〜) 固定レイアウト
   ========================= */
@media (min-width: 769px) {

  .site-header{
    width: 100%;
    background: #0b3a63;
  }

  /* 1200pxを“いっぱいに使う”（左右ピッタリ） */
  .header-inner{
    width: 1200px;          /* 固定 */
    max-width: none;
    margin: 0 auto;
    padding: 12px 0;        /* 左右0でピッタリ */
    display: flex;
    align-items: center;
    justify-content: space-between;  /* 左端/右端に寄せる */
    box-sizing: border-box;
  }

  /* 左：ロゴ（左ピッタリ） */
  .logo{
    flex: 0 0 312px;        /* ロゴ枠固定（必要なら調整） */
    width: 312px;
    margin: 0;
  }
  .logo a{
    display: inline-flex;
    align-items: center;
  }
  .logo img{
    display: block;
    width: 100%;
    height: auto;
  }

  /* PCではハンバーガー非表示 */
  .nav-toggle{ display: none; }

  /* 右：TEL（右ピッタリ） */
  .tel{
    flex: 0 0 180px;        /* TEL枠固定（必要なら調整） */
    width: 180px;
    margin: 0;              /* 右にピッタリ */
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .tel img{
    display: block;
    width: 100%;
    height: auto;
  }

  /* 中：ナビ（固定幅＋中で配置も固定） */
  .main-nav{
    flex: 0 0 640px;        /* ★ここで“間隔含めて固定” */
    width: 640px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ナビ内の並びも固定 */
    gap: 0;
    margin: 0;
    min-width: 0;
  }

  .main-nav a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .main-nav .btn-apply{
    background: #f19600;
    color: #fff;
    padding: 10px 14px;
    border-radius: 40px;
    font-weight: 700;
  }
}



/* 1200px以下で詰まった時の微調整（PCの範囲内） */
@media (max-width: 1024px){
  .main-nav{ gap: 16px; }
}

/* ハンバーガーボタンの初期状態（PCでは非表示） */
.nav-toggle {
  display: none;
}

/* スマホ時のメニュー＆ボタン（※ここは変更なし） */
@media (max-width:768px) {
  .site-header {
    position: fixed;
    z-index: 1000;
    padding: 16px 0;
    background: #0b3a63;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: #0b3a63;
    cursor: pointer;
    padding: 0;
    position: relative; 
  }

  .nav-toggle span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: transform .3s ease, opacity .3s ease, top .3s ease;
  }

  .nav-toggle span:nth-child(1) { top: 14px; }
  .nav-toggle span:nth-child(2) { top: 21px; }
  .nav-toggle span:nth-child(3) { top: 28px; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media (max-width:768px) {
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    background: #0b3a63;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px 24px;
    gap: 12px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 900;
  }

  body.nav-open .main-nav { transform: translateY(0); }

  .main-nav a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }

  .main-nav a:last-child { border-bottom: none; }
}

@media (max-width:768px) {
  .tel { display: none; }
  .header-inner { justify-content: flex-start; }
  .logo img { width: 90%; height: auto; }
}

a.btn-apply {
  background: #f19600;
  color: #fff;
  padding: 6px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700
}

/*	nav
============================================================================================================*/
#nav .list .item a {
  display: block;
  position: relative;
}
#nav .list .item .en {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto -1px;
}
#nav .list .item.contact {
  width: 200px;
}
#nav .list .item.contact a {
  height: 80px;
  padding: 0;
  background: #0F1E40;
}
#nav .list .item.contact a:before {
  content: none;
}
#nav .list .item.contact a .en,
#nav .list .item.contact a .ja {
  display: block;
  position: absolute;
  height: 15px;
  line-height: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#nav .list .item.contact a .en {
  opacity: 0;
  font-size: 15px;
}

/*------------------------------------------
	pc
------------------------------------------*/
@media screen and (min-width: 769px) {
  #nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: block !important;
    opacity: 1 !important;
  }
  #nav .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #nav .list .item {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }
  #nav .list .item + .item {
    margin-left: 51px;
  }
  #nav .list .item a {
    padding: 22px 0 12px;
  }
  #nav .list .item a:hover {
    opacity: 1;
  }
  #nav .list .item a:hover:before {
    width: 60px;
  }
  #nav .list .item a:before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #nav .list .item.contact a:hover {
    opacity: 1;
    background: #3CB4C4;
  }
  #nav .list .item.contact a:hover .en {
    opacity: 1;
    letter-spacing: 5px;
  }
  #nav .list .item.contact a:hover .ja {
    opacity: 0;
  }
}

/*------------------------------------------
	sp
------------------------------------------*/
/*	メニューを開くボタン
---------------------------*/
.navBtn {
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s;
  transition: .5s;
  cursor: pointer;
  width: 45px;
  height: 45px;
  top: 0;
  right: 0;
  position: fixed;
  text-align: center;
  z-index: 9999;
  background: #0F1E40;
  border: none;
}
.navBtn a {
  height: 100%;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.navBtn, .navBtn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navBtn span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.navBtn span:nth-of-type(1) { top: 13px; }
.navBtn span:nth-of-type(2) { top: 0; bottom: 0; }
.navBtn span:nth-of-type(3) { bottom: 13px; }
.navBtn.close span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.navBtn.close span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}
.navBtn.close span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
@-webkit-keyframes active-menu-bar02 { 100% { height: 0; } }
@keyframes active-menu-bar02 { 100% { height: 0; } }

@media screen and (max-width: 768px) { 
  #nav {
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 70px 30px;
    position: fixed;
    z-index: 9997;
    overflow-y: scroll;
    background: rgba(255, 255, 255, 0.9);
  }
  #nav::-webkit-scrollbar { display: none; }
  #nav .list .item {
    color: #0F1E40;
    line-height: 1.5;
    text-align: center;
  }
  #nav .list .item + .item { margin-top: 15px; }
  #nav .list .item a { display: block; padding: 10px 0; }
  #nav .list .item .en { margin: 0 auto 2px; }
  #nav .list .item.contact {
    color: #fff;
    margin: 20px auto 0;
  }
  #nav .list .item.contact a { height: 50px; }
}

/*============================================================================================================
	footer
============================================================================================================*/
#footer .footerBtm {
  padding: 16px 0 30px;
  background: #dbdbdb;
}
#footer .footerBtm .inner {
  position: relative;
}
#footer .footerTtl {
  text-align: center;
  margin-top: 1rem;
}
#footer .footerTtl img {
  margin: 0 auto 1rem;
}
#footer .list {
  float: right;
  margin: 14px 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .list .item {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
#footer .list .item + .item {
  margin-left: 51px;
}
#footer .list .item a {
  display: block;
  padding: 4px 0 1px;
  position: relative;
}
#footer .list .item a:hover { opacity: 1; }
#footer .list .item a:hover:before { width: 60px; }
#footer .list .item a:before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #0F1E40;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#footer .list .item .en {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin: 0 auto -6px;
}
#footer .list .item.contact {
  color: #fff;
  width: 160px;
  margin-left: 39px;
}
#footer .list .item.contact a {
  height: 50px;
  padding: 0;
  background: #0F1E40;
}
#footer .list .item.contact a:hover {
  opacity: 1;
  background: #3CB4C4;
}
#footer .list .item.contact a:hover .en {
  opacity: 1;
  letter-spacing: 5px;
}
#footer .list .item.contact a:hover .ja { opacity: 0; }
#footer .list .item.contact a:before { content: none; }
#footer .list .item.contact a .en,
#footer .list .item.contact a .ja {
  display: block;
  position: absolute;
  height: 15px;
  line-height: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#footer .list .item.contact a .en {
  opacity: 0;
  font-size: 15px;
}
#footer .copyright {
  font-size: 12px;
  text-align: center;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {

  #footer { width: 100%; }

  #footer .footerBtm { padding: 20px 0; }
  #footer .footerTtl {
    width: 50%;
    height: auto;
    margin: 0 auto;
  }
  #footer .list {
    float: none;
    display: block;
    margin: 0 auto 30px;
  }
  #footer .list .item { line-height: 1.5; }
  #footer .list .item + .item { margin: 15px auto 0; }
  #footer .list .item a { padding: 5px 0; }
  #footer .list .item a:before { content: none; }
  #footer .list .item .en { margin: 0 auto 2px; }
  #footer .list .item.contact { margin: 20px auto 0; }
  #footer .copyright {
    position: static;
    text-align: center;
    display: block;
  }
}

/*------------------------------------------
	TOPへ戻る	
------------------------------------------*/
.retop {
  text-align: center;
  width: 5%;
  margin: 0 auto;
}
.retop a {
  display: block;
  padding: 27px 0 30px;
}
.retop a img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.retop a:hover { opacity: 1; }
.retop a:hover img {
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px);
}
@media screen and (max-width: 768px) {
  .retop { width: 20%; }
  .retop a { padding: 12px 0; }
  .retop a img { width: 60px; }
}

/*============================================================================================================
	contents
============================================================================================================*/
.secTit {
  text-align: center;
  font-size: 34px;
  font-weight: normal;
  font-family: 'Noto Serif JP', serif;
  padding: 0 0 28px;
  position: relative;
}
.secTit:before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #0F1E40;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.secTit .en {
  display: block;
  font-weight: 600;
  font-size: 17px;
  font-family: 'Cormorant Garamond', serif;
}
@media screen and (max-width: 768px) {
  .secTit {
    font-size: 22px;
    padding: 0 0 15px;
    margin-bottom: 30px !important;
  }
  .secTit .en { font-size: 14px; }
}

/*------------------------------------------
	事業内容
------------------------------------------*/
#service {
  padding: 140px 0 0;
}
#service .secTit { margin-bottom: 70px; }
#service .box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
#service .box .img { box-shadow: 10px 10px 0 #002345; }
#service .box .txtBox {
  width: 56.3%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#service .box .txtBox .lead {
  display: table;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 4px;
  padding: 9px 20px;
  margin: 0 auto 20px 0;
  background: #fff;
}
#service .box .txtBox .txt {
  padding: 27px 34px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #service { padding: 40px 15px 0; }
  #service .box .img {
    display: block;
    margin: 0 auto;
    box-shadow: 5px 5px 0 #002345;
  }
  #service .box .txtBox {
    width: 100%;
    margin: 0 auto 20px;
    position: static;
  }
  #service .box .txtBox .lead {
    font-size: 20px;
    margin: 0 auto 10px 0;
  }
  #service .box .txtBox .txt {
    padding: 20px;
    font-size: 14px;
  }
}

/*------------------------------------------
	代表挨拶
------------------------------------------*/
#message { padding: 139px 0 0; }
#message .secTit { margin-bottom: 70px; }
#message .box {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#message .box .img, #message .box .txtBox {
  width: 50%;
  max-width: 550px;
}
#message .box .txtBox { padding: 0 95px 0 0; }
#message .box .txtBox .txt + .txt { margin-top: 34px; }
@media screen and (max-width: 1120px) {
  #message .box .txtBox { padding-left: 15px; }
}
@media screen and (max-width: 768px) {
  #message { padding: 70px 0 0; }
  #message .box { display: block; }
  #message .box .img, #message .box .txtBox {
    max-width: none;
    width: 100%;
  }
  #message .box .txtBox { padding: 20px 15px; }
  #message .box .txtBox .txt { font-size: 14px; }
  #message .box .txtBox .txt + .txt { margin-top: 15px; }
}

/*------------------------------------------
	会社情報
------------------------------------------*/
#company { padding: 0; }
#company .secTit { margin-bottom: 61px; }
#company .lead {
  text-align: center;
  margin: 0 auto 91px;
}
#company .lead span { font-weight: bold; }
#company .subTit {
  font-size: 28px;
  font-weight: normal;
  padding: 6px 0 5px 14px;
  margin: 0 auto 93px;
  border-left: 4px solid #0F1E40;
}
#company .data {
  width: 46.5%;
  float: left;
}
#company .data + .data { float: right; }
#company .data + .data th { width: 81px; }
#company .data th, #company .data td {
  font-size: 15px;
  vertical-align: top;
}
#company .data th {
  width: 64px;
  font-weight: bold;
  text-align: right;
  padding: 0 0 20px 0;
}
#company .data td { padding: 0 0 20px 48px; }
#company .mapBox {
  width: 100%;
  height: 500px;
}
#company .mapBox iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #company { padding: 70px 0 0; }
  #company .lead {
    font-size: 15px;
    margin: 0 auto 30px;
  }
  #company .subTit {
    font-size: 20px;
    padding: 4px 0 5px 12px;
    margin: 0 auto 20px;
  }
  #company .data {
    width: 100%;
    float: none !important;
  }
  #company .data th, #company .data td { font-size: 14px; }
  #company .data th {
    width: 80px !important;
    padding: 0 0 10px 0;
  }
  #company .data td {
    font-size: 12px;
    padding: 0 0 20px 15px;
  }
  #company .mapBox { height: 210px; }
}

/*------------------------------------------
	お問い合わせ
------------------------------------------*/
#contact {
  color: #fff;
  padding: 98px 0 88px;
  background: url("../img/bg_contact.png") no-repeat center;
  background-size: cover;
}
#contact .secTit { margin-bottom: 57px; }
#contact .secTit:before { background: #fff; }
#contact .txt {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
#contact .btns {
  width: 100%;
  max-width: 1200px;
  margin: 28px auto;
}
#contact .btns ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#contact .btns ul li {
  width: 32%;
  font-size: 26px;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  padding: 1em 0 1em 0;
  border: 3px solid #fff;
  background-position: 36px center;
  background-repeat: no-repeat;
  text-align: center;
}
#contact li.btnTel:before, #contact li.btnFax:before, #contact li.btnmail:before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 1em;
  position: relative;
  top: -2px;
  left: 0;
}
#contact li.btnTel:before { background-image: url("../img/ico_tel.png"); }
#contact li.btnFax:before { background-image: url("../img/ico_fax.png"); }
#contact li.btnmail:before { background-image: url("../img/ico_mail.png"); }

@media screen and (min-width: 769px) {
  #contact .btnTel { pointer-events: none; }
}
@media screen and (max-width: 768px) {
  #contact { padding: 40px 0; }
  #contact .txt {
    font-size: 16px;
    line-height: 1.5;
  }
  #contact .btns { max-width: 300px; }
  #contact .btns .btn + .btn { margin-top: 20px; }
  #contact .btns ul { display: block; }
  #contact .btns ul li {
    width: 100%;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: bold;
    letter-spacing: 0;
    padding: 1em 0 1em 0;
    border: 3px solid #fff;
    background-position: 36px center;
    background-repeat: no-repeat;
    text-align: center;
    margin: 0 0 20px 0;
  }
}

.mynavi_banner {
  text-align: center;
  padding: 40px 0 20px 0;
}

/* =========================
   SP: ヘッダー幅100% 強制（768px以下）
   ========================= */
@media (max-width: 768px) {
  .site-header{
    left: 0;
    right: 0;
    width: 100%;
  }

  .header-inner{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;          /* autoを潰す */
    padding: 0 16px !important;    /* 任意（左右余白） */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* 念のため：ロゴとトグルの並びを安定 */
  .logo{ flex: 0 1 auto; }
  .nav-toggle{ margin-left: auto; flex: 0 0 auto; }

  /* スマホナビ文字色 */
  .main-nav a{ color: #fff; }
}
}