@charset "UTF-8";
.header {
  position: relative;           /* 要素の配置を相対座標に指定 */
  width: 100%;                  /* 要素の幅を100% */
  height: 0;                    /* 要素の高さを0% */
  padding-bottom: 50%;         /* 内余白の下部分を100% */
  background: url(../img/common/top.jpg) no-repeat center center/cover; /* 背景画像を領域を埋めるように、中央に配置 */
}

@media print, screen and (min-width: 768px) {
  .header {
    height: 400px;
    padding-bottom: 0;
  }
}

.logo {
  width: 60px;                  /* 要素の幅を60pxに */
  padding: 5px;                /* 要素の内余白を10pxに */
  background: #fff;             /* 背景色を白色に */
  position: absolute;           /* 要素の配置を絶対座標に指定 */
  top: 0;                       /* 上部分を基準点から0の位置に */
  left: 20px;                   /* 左部分を基準点から20pxの位置に */
}

@media print, screen and (min-width: 768px) {
  .logo {
    width: 110px;
    padding: 20px;
    left: 40px;
  }
}

.catch-copy, .page-title {
  text-align: center;           /* 文字を中央揃えに */
  width: 100%;                  /* 要素の幅を画面いっぱいに */
  /* color: #fff;                  /* 文字色を白色に */
  color: #fff;
 text-shadow: 3px 3px 1px #00007f;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; /* フォントの種類を指定 */
  font-size: 5vw;               /* フォントをビューポートの6%に */
  font-weight: bold;            /* 文字を太字に */
  position: absolute;           /* 要素の配置位置を絶対座標に指定 */
  top: 40%;                     /* 上部分を基準点から50%の位置に */
  left: 0;                      /* 左部分を基準点から0の位置に */
  -webkit-transform: translate(0, -50%); /* 要素の位置を50%分だけ上に */
  transform: translate(0, -50%);
}

.catch-copy span, .page-title span {
  border-bottom: 3px solid #fff; /* 下部分の罫線を 3px、実線、白色に */
  padding-bottom: 4px;           /* 下部分の余白を 4pxに */
}

@media print, screen and (min-width: 768px) {
  .catch-copy .page-title {
    font-size: 50px;
  }
}

.heading02 {
  text-align: center;            /* 文字を中央揃えに */
  font-size: 16px;               /* 文字サイズを16pxに */
  font-weight: bold;             /* 文字を太字に */
  color: #000;                   /* 文字色を黒に */

  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; /* フォントの種類を指定 */
  margin-bottom: 0px;           /* 下部分の余白を 20pxに  */
}

@media print, screen and (min-width: 768px) {
  .heading02 {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

.heading02 span {
  /* border-bottom: 3px solid #000;  /* 下部分の罫線を 3px、実線、黒色に */
  padding-bottom: 4px;           /* 下部分の余白を 4pxに */
}

.lead {
  font-size: 16px;               /* 文字サイズを16pxに */
  line-height: 2.0;              /* 行の高さをフォントサイズの2.0倍に */
}

.oshirase {
  font-size: 14px;               /* 文字サイズを16pxに */
  line-height: 2.0;              /* 行の高さをフォントサイズの2.0倍に */
}

.btn {
  display: block;                /* 表示形式をブロックに */
  text-align: center;            /* 文字を中央揃えに */
  width: 200px;                  /* 要素の横幅を200pxに */
  margin: 0 auto 60px;           /* 要素の外余白を上0、左右自動、下60pxに */
  border: 2px solid #000;        /* 下部分の罫線を 2px、実線、黒色に */
  text-decoration: none;         /* 文字の装飾を無しに */
  padding: 13px 0 12px;          /* 要素の内余白を上13px、左右0、下12pxに */
  font-weight: bold;             /* 文字を太字に */
}

@media print, screen and (min-width: 768px) {
  .btn {
    width: 400px;
    padding: 20px 0;
    font-size: 14px;
  }
}

.footer {
  padding: 15px 10px;            /* 内余白を上下15px、左右10pxに */
}

@media print, screen and (min-width: 768px) {
  .footer {
    padding: 30px 10px;
  }
}

.copy {
  text-align: center;            /* 文字を中央揃えに */
  font-size: 1.2rem;             /* 文字サイズを1remに */
}

.globalnav {
  position: relative;
  padding: 0 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.globalnav li {
  display: table-cell;
  text-align: center;
}

.globalnav li:not(:first-child) {
  border-left: 1px solid #000;
}

.globalnav li a {
  font-size: 1.3rem;
  display: block;
  background: #fff;
  text-decoration: none;
  padding: 15px 0;
}

.globalnav li a:hover {
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .globalnav li a:hover {
    background: #000;
    color: #fff;
  }
}

.globalnav-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: table;
  table-layout: fixed;
  border: 1px solid #000;
}

.globalnav-sublist {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  /* display: table; */
  /* table-layout: fixed; */
  border: 1px solid #000;
}

.glovalnav-list:hover .glovalnav-sublist {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

/*  231130 nav pulldown https://junpei-sugiyama.com/css-dropdown-menu /*/
/* ナビゲーションメニュー */
.nav-menu {
  background-color: #999; /* メニューの背景色  #333*/
  color: #fff; /* メニューテキストの色 */
  /* -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);  */
   margin-bottom: 30px;
  /**/
}

.nav-menu ul {
	display: block; /* flex */
	margin: 0 auto;
	padding: 0 0%; /* 0 0% */
	width: 100%; /* 94% */
	max-width: 850px; /* 850px */
}

@media print, screen and (min-width: 768px) {
  .nav-menu {
    background-color: #333; /* メニューの背景色 */
    color: #fff; /* メニューテキストの色 */
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);  
  /**/
  }
  .nav-menu ul {
	display: flex; /* flex */
	margin: 0 auto;
	padding: 0 3%;
	width: 94%;
	max-width: 850px; /* 850px */
  }
  .globalnav li a:hover {
    background: #000;
    color: #fff;
  }
}

.nav-menu ul li {
	flex: 1 0 auto;
}

.menu-list{
  display: flex;
  justify-content: center; /* メニューアイテムを中央揃えに */
}

.menu-item {
  border-left: 1px solid #fff; /* メニューアイテムの左ボーダー */
  position: relative;
}
.menu-item:last-child {
  border-right: 1px solid #fff; /* 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  display: block;
  visibility: visible; /* 下層メニューを表示 */
}

.menu-item a {
  align-items: center; /* center */
  color: #fff; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 60px;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
  width: 100%; /* 120px */
  /* position: relative; */
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background-color: #696969; /* メガメニューの背景色 */
  left: 0;
  position: absolute;
  top: 100%;
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
}


