@charset "utf-8";
/* CSS Document */
/* --------------mobaile_fast--------------------- */

/* =====================================================
    基本設定
======================================================== */
html {
  font-size: 62.5%;
  /* 個別に指定するならこちらで　10px */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  overflow-x: hidden;
  text-align: center;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Gothic Medium BBB", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  word-wrap: break-word;
/*   overflow-x: hidden; */
}

/* フェードインアニメーション */
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* フェードインアニメーションここまで */
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  /*画像同士の隙間防止*/
}

a img {
  border: none;
}

small {
  text-align: center;
  font-size: 1.0rem;
  font-style: normal;
}

address {
  font-style: normal;
}

/* リンク----------------------------- */
a {
  color: #1111cc;
  /* googleデフォルト */
  -webkit-backface-visibility: hidden;
  /* ブレ防止追加 */
  backface-visibility: hidden;
  /* ブレ防止追加 */
  transition: all 0.4s ease-in-out;
  transition: opacity 0.4s;
}

a:link {
  text-decoration: none;
  /*text-decoration: underline;*/
}

a:visited {
  text-decoration: none;
  /*text-decoration: underline;*/
}

a:active {
  text-decoration: none;
}

/* =====================================================
  ・ 共通クラス
======================================================== */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.spNone {
  display: none !important;
}

.pcNone {
  display: block !important;
}

.onlySp {
  display: block !important;
}

.onlyPc {
  display: none !important;
}

.boxRerative {
  position: relative;
}

.box-center {
  /*上下左右真ん中*/
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.box-H_center {
  /*左右真ん中*/
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.scroll-prevent {
  /*動き固定*/
  position: fixed;
  /*奥行きを管理*/
  z-index: -1;
  /*下2つで背景を元のサイズのまま表示することができる*/
  width: 100%;
  height: 100%;
}

.boxFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.boxLeft {
  float: left;
}

.boxRight {
  float: right;
}

.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 1;
}

/* =====================================================
  ・ 共通フレーム
======================================================== */
section {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.secInner,
.boxInner {
  width: 92%;
  /* 両サイドの隙間を4%で想定 */
  margin: 0 auto;
}

/* ==========================================
 		共通設定
========================================== */
section h1 {
  margin-bottom: 40px;
  color: #756f65;
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1.8;
  text-align: left;
}

section h1 span {
  font-size: 60%;
}

/* ==========================================
 		header
========================================== */
#top header {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

#page header {
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 0;
  background: #756f65;
}

#page header .boxLogo {
  width: 50%;
  margin: 0 auto 40px;
  text-align: center;
}

header .nav .container {
  padding-right: 0;
}

/* =====================================================
  ・#globalNavi
======================================================== */
#globalNavi {
  background: #756f65;
}

#globalNavi {
  padding-top: 2em;
  padding-bottom: 2em;
}

#globalNavi.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

#globalNavi li {
  width: 20%;
  margin-bottom: .5em;
  line-height: 1.2;
}

#globalNavi li span {
  display: none;
}

#globalNavi li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  white-space: nowrap;
}

#globalNavi li .nav-link {
  padding: 1rem;
}

#globalNavi li a::after {
  position: absolute;
  bottom: 2px;
  left: 30%;
  content: '';
  width: 40%;
  height: 2px;
  background: #d1c74e;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .5s;
}

#globalNavi li a.current::after {
  transform: scale(1, 1);
}

/* ==========================================
		footer
========================================== */
footer {
  background-color: #756f65;
  padding-top: 80px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  color: #fff;
}

footer h2 {
  margin-bottom: 7px;
  font-size: 2rem;
}

footer .boxTel a {
  font-size: 3rem;
  color: #fff;
  line-height: 1.4;
}

footer h1 {
  margin-top: 40px;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

footer .boxInfo {
  margin-bottom: 80px;
}

footer .boxLogo {
  margin-bottom: 30px;
  text-align: center;
}

footer .el_tokutei {
  margin-top: 1em;
}

footer .el_tokutei a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: underline;
}

/* ======================================
    404 (SP)
====================================== */
#page404 {
  padding-top: 60px;
  padding-bottom: 60px;
}

#page404 h2 {
  font-size: 2rem;
  line-height: 2;
}


/*================================
  ▼ブレイクポイントのルール▼
  -スマホを基本設計にする-
  *〜479px：SP縦
  *480px〜：SP横
  *600px〜タブレット
  *960px〜小型PC
  *1280px〜大型PC
================================*/

/* --------------mobaile_fast--------------------- */
@media screen and (min-width:480px) {
  /*　for iPhone (iPhone 横)　*/
}

@media screen and (min-width:600px) {

  /*　for iPad 　*/
  /* =====================================================
      基本設定
  ======================================================== 
  /* =====================================================
    ・ 共通フレーム (min-width:600px)
  ======================================================== */
  .secInner,
  .boxInner {
    max-width: 600px;
  }

  /* =====================================================
    ・ 共通クラス (min-width:600px)
  ======================================================== */
  .spNone {
    display: block !important;
  }

  .onlySp {
    display: none !important;
  }

  /* ==========================================
			共通設定 (min-width:600px)
	========================================== */
  section h1 {
    text-align: left;
  }

  /* ==========================================
			header (min-width:600px)
	========================================== */
  /* header {
    padding-bottom: 40px;
  } */
  header .boxLogo {
    width: 100%;
    margin: 0 auto 40px;
  }

  /* ==========================================
		・#globalNavi (min-width:600px)
	========================================== */
  #globalNavi {
    height: 3em;
    padding-top: .5em;
  }

  #top #globalNavi {
    height: auto;
  }

  #globalNavi li {
    position: relative;
    width: auto;
    margin-bottom: 0;
  }
}

@media screen and (min-width:768px) {

  /*　for iPad 　*/
  #globalNavi li::after {
    position: absolute;
    top: 9px;
    right: 0;
    display: block;
    content: "";
    width: 1px;
    height: 10px;
    background: #fff;
  }

  /* ==========================================
			footer (min-width:768px)
	========================================== */
  footer .boxLogo {
    position: relative;
  }

  footer .boxLogo div {
    position: absolute;
    right: 0;
    bottom: 100px;
  }
	
  footer .el_tokutei {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5em;
  }
}

@media screen and (min-width:960px) {
  /*　for PC　*/
  /* =====================================================
      基本設定
  ======================================================== */

  /* リンク----------------------------- */
  a:hover {
    text-decoration: none;
  }

  a:hover img {
    opacity: 0.7;
  }

  #globalNavi li a:hover::after {
    transform: scale(1, 1);
  }

  /* =====================================================
    ・ 共通フレーム (min-width:600px)
  ======================================================== */
  .secInner,
  .boxInner {
    max-width: 600px;
  }

  /* =====================================================
    ・ 共通クラス
  ======================================================== */
  .pcNone {
    display: none !important;
  }

  .onlyPc {
    display: block !important;
  }

  /* =====================================================
    ・ 共通フレーム (min-width:960px)
  ======================================================== */
  .secInner,
  .boxInner {
    width: 100%;
    max-width: 960px;
  }

  /* ==========================================
			header (min-width:960px)
	========================================== */
  /* ==========================================
		・#globalNavi (min-width:960px)
	========================================== */
  #globalNavi {
    /*height: 2em;*/
  }

  #globalNavi li {
    /*line-height: .3;*/
    /*border-right: 1px solid #756f65;*/
  }

  #globalNavi li span {
    display: inline;
  }

  #globalNavi li:last-of-type {
    border-right: none;
  }

  #globalNavi li a::after {
    bottom: -8px;
  }
}