@charset "UTF-8";
@media screen and (min-width: 801px) {
/* ページ全体の設定 */
body {
  font-size: 100%;/* フォントサイズ */
  width: 100%;
  height: 100%;
  padding: 0 auto;
  margin: 0 auto;
  font-family: Arial, メイリオ, Meiryo, Helvetica, ヒラギノ角ゴ ProN, sans-serif;/* フォント種類 */
}

/* ロゴ */
.logo {
  margin: 5px 0;/* 上下余白 */
  position: relative;/* 相対配置 */
  width: 345px;
  height: 92px;
}

/* 言語選択 */
/* 基本設定 */
.side {
  background: #ccc;/* 背景色 */
  margin-top: 5px;/* 上の余白 */
  display: inline-block;/* インライン要素 */
  width: 120px;
  text-align: center;/* 中央揃え */
  vertical-align: middle;/* 縦方向中央揃え */
  color: #0f4c81;/* 文字色 */
  text-decoration: none;/* リンク文字装飾無 */
  font-weight: bold;/* 太字 */
  font-size: 18pt;
  padding: 10px;/* 文字周囲の余白 */
  position: relative;/* 相対配置 */
  border: 2px solid #0f4c81;/* 線(太さ 種類 色) */
  transition: .4s;/* 変化時間 0.4秒 */
  height: 30px;
}

/* マウスホバー時設定 */
.side:hover {
  border: 2px solid transparent;/* 線(太さ 種類 透過) */
  color: #fff;
}

.side:before, .side:after {
  width: 100%;
  height: 100%;
  z-index: 3;/* 表示序列 */
  content: "";/* 要素挿入 */
  position: absolute;/* 絶対配置 */
  top: 0;/* .sideとの位置関係 */
  left: 0;/* .sideとの位置関係 */
  box-sizing: border-box;/* 幅と高さにpaddingとborderを含める */
  transform: scale(0);/* 変形 */
  transition: .4s;
}

.side:before {
  border-bottom: 2px solid #fff;/* 線:下 */
  border-left: 2px solid #fff;/* 線:左 */
  transform-origin: 100% 0%;/* 変形の原点からの距離 */
}

.side:after {
  border-top: 2px solid #fff;/* 線:上 */
  border-right: 2px solid #fff;/* 線:右 */
  transform-origin: 0% 100%;/* 変形の原点からの距離 */
}

.side:hover:after,
.side:hover:before {
  transform: scale(1);
}

/* 電話番号 */
.tel {
  font-size: 14pt;
  margin: 0;
  color: #222;
}

/* 右寄せ */
.rightside {
  text-align: right;
}

.rightside-1 {
  text-align: right;
  margin-top: 55px;
}

/* ヘッダー */
header {
  display: flex;/* 横並び */
  justify-content: space-between;/* 指定幅内で左右両端揃え */
  width: 70%;
  max-width: 1100px;/* 最大幅 */
  margin: 0 auto;/* 余白無 */
}

/* ドロップダウンリスト */
/* メニューバーの装飾 */
ul.ddmenu {
  list-style-type: none;/* リスト表示無 */
  width: 100%;
  height: 50px;
  margin: 0; /* メニューバー外側の余白 */
  padding: 0; /* メニューバー内側の余白 */
  background-color: #555; /* バーの背景色 */
  display: flex;/* 横並び */
  justify-content: center;/* 中央揃え */
  z-index: 9999;/* 表示序列 */
  font-weight: bold;
  top: 0;
}

/* スクロール時上部固定 */
#sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* メインメニュー項目の装飾 */
ul.ddmenu li {
  width: 11.6%; /* メニュー項目の横幅 */
  display: inline-block; /* 横並びに配置する */
  position: relative; /* サブメニュー表示の基準位置にする */
  margin: 0;
  padding: 0;
}

/* 各項目の設定 */
ul.ddmenu a {
  background-color: #555;
  color: #fff;
  line-height: 1em;/* 一行の高さ */
  padding: 17px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin: 0;
  word-break: keep-all;/* 改行無 */
}

/* 奇数のメニュー */
ul.ddmenu li:nth-child(2n+1) {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

/* 偶数のメニュー */
ul.ddmenu li ul li:nth-child(2n) {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

/* 6番目のメニュー */
ul.ddmenu li:nth-child(6) {
  border-right: 1px solid #ddd;
}

/* マウスホバー時アニメーション */
ul.ddmenu a:hover {
  background-color: #eee; /* メニュー項目にマウスが載ったときの背景色 */
  color: #0f4c81; /* メニュー項目にマウスが載ったときの文字色 */
}

/* サブメニューがある場合に開く処理 */
/* ※サブメニューが2階層以上ある場合の記述 */
ul.ddmenu li:hover > ul {
  display: block; /* マウスポインタが載っている項目の内部にあるリストを表示する */
  width: 100%;
}

/* サブメニューの装飾 */
ul.ddmenu ul {
  margin: 0px; /* サブメニュー外側の余白 */
  padding: 0px; /* サブメニュー内側の余白 */
  display: none; /* 標準では非表示にする */
  position: absolute; /* 絶対配置にする */
}

/* サブメニュー(以降の)項目の装飾 */
ul.ddmenu ul li {
  width: 100%; /* サブメニュー1項目の横幅 */
}

ul.ddmenu ul li a {
  line-height: 1.2em; /* サブメニュー1項目の高さ */
  text-align: center; /* 文字列の配置 */
  padding: 17px 0; /* 文字列の余白 */
  font-weight: normal; /* 太字にはしない */
  vertical-align: middle;
}

ul.ddmenu ul li a:hover {
  background-color: #eee; /* サブメニュー項目にマウスが載ったときの背景色 */
  color: #0f4c81; /* サブメニュー項目にマウスが載ったときの文字色 */
}

/* 非選択時は非表示 */
.nav-unshown {
  display:none;
}

/* 内容 */
/* タイトル */
h1 {
  margin: 0 auto;
  width: 70%;
  text-align: center;
  margin-top: 50px;
  font-size: 28pt;
  color: #222;
}

/* 本文 */
.container {
  margin: 0 auto;
  width: 80%;
  max-width: 800px;
  font-size: 14pt;
  text-align: justify;/* 両端揃え */
  line-height: 1.6;/* 一行の高さ */
  letter-spacing: 1pt;/* 字間1pt */
  color: #334;
}

.text {
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
  font-size: 14pt;
  text-align: justify;/* 両端揃え */
  line-height: 1.6;/* 一行の高さ */
  letter-spacing: 1pt;/* 字間1pt */
  color: #334;
}

.text:nth-of-type(1) {
  margin-top: 50px;
}


.text2:nth-of-type(1) {
  margin-top: 50px;
}

/* MECT2021 */
.mect-large {
  margin: 20px auto;
  width: 60%;
  display: flex;
  justify-content: center;
}


/* 上へ戻るボタン */
.return {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  color: #0f4c81;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: double 4px #0f4c81;
  text-align: center;
  vertical-align: middle;
  transition: .6s;
  cursor: pointer;  
  text-decoration: none;
  font-size: 20pt;
  margin-top: 20px;
}

/* ホバー時 */
.return:hover {
  border: 4px solid #0f4c81;
}

/* 配置 */
.back {
  margin: 0 auto;
  width: 70%;
  max-width: 1100px;
  text-align: right;
  margin-bottom: 30px;
}

/* フッター */
footer {
  margin: 0;
  padding: 0;
  bottom: 0;
  text-align: center;
  color: #222;
}
}

/* 印刷用設定 */
@media print {
body {
  font-size: 100%;
  width: 100%;
  height: 100%;
  padding: 0 auto;
  margin: 0 auto;
  font-family: Arial, メイリオ, Meiryo, Helvetica, ヒラギノ角ゴ ProN, sans-serif;/* フォント種類 */
}

/* ロゴ */
.logo {
  margin: 5px 0;
  position: relative;
  width: 345px;
  height: 92px;
}

/* 言語選択 */
.side {
  background: #ccc;
  margin-top: 5px;
  display: inline-block;
  width: 120px;
  text-align: center;
  vertical-align: middle;
  color: #0f4c81;
  text-decoration: none;
  font-weight: bold;
  font-size: 18pt;
  padding: 10px;
  position: relative;
  border: 2px solid #0f4c81;
  transition: .4s;
  height: 30px;
}

.tel {
  font-size: 14pt;
  margin: 0;
  color: #222;
}

.rightside {
  text-align: right;
}

.rightside-1 {
  text-align: right;
  margin-top: 55px;
}

/* トップ */
header {
  display: flex;
  justify-content: space-between;
  width: 70%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ドロップダウンリスト */
/* メニューバーの装飾 */
ul.ddmenu {
  list-style-type: none;
  width: 100%;
  height: 50px;
  margin: 0; /* メニューバー外側の余白 */
  padding: 0; /* メニューバー内側の余白 */
  background-color: #555; /* バーの背景色 */
  display: flex;
  justify-content: center;
  z-index: 9999;
  font-weight: bold;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* メインメニュー項目の装飾 */
ul.ddmenu li {
  width: 11.6%; /* メニュー項目の横幅 */
  display: inline-block; /* 横並びに配置する */
  position: relative; /* サブメニュー表示の基準位置にする */
  margin: 0;
  padding: 0;
}

ul.ddmenu a {
  background-color: #555;
  color: #fff;
  line-height: 1em;
  padding: 17px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin: 0;
  word-break: keep-all;
}

ul.ddmenu li:nth-child(2n+1) {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

ul.ddmenu li ul li:nth-child(2n) {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

ul.ddmenu li:nth-child(6) {
  border-right: 1px solid #ddd;
}

ul.ddmenu ul {
  margin: 0px; /* サブメニュー外側の余白 */
  padding: 0px; /* サブメニュー内側の余白 */
  display: none; /* 標準では非表示にする */
  position: absolute; /* 絶対配置にする */
}

.nav-unshown {
  display:none;
}

/* 内容 */
h1 {
  margin: 0 auto;
  width: 70%;
  text-align: center;
  margin-top: 50px;
  font-size: 28pt;
  color: #222;
}

.container {
  margin: 0 auto;
  width: 70%;
  max-width: 700px;
  font-size: 14pt;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 1pt;
  color: #334;
}

.text {
  margin: 0 auto;
  width: 70%;
  max-width: 600px;
  font-size: 14pt;
  text-align: justify;/* 両端揃え */
  line-height: 1.6;/* 一行の高さ */
  letter-spacing: 1pt;/* 字間1pt */
  color: #334;
}

.text:nth-of-type(1) {
  margin-top: 50px;
}

a.link:visited {
  color: #ad0056;
}

/* 上へ戻る */
.return {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  color: #0f4c81;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: double 4px #0f4c81;
  text-align: center;
  vertical-align: middle;
  transition: .6s;
  cursor: pointer;  
  text-decoration: none;
  font-size: 20pt;
  margin-top: 20px;
}

.back {
  margin: 0 auto;
  width: 70%;
  max-width: 1100px;
  text-align: right;
  margin-bottom: 30px;
}

/* フッター */
footer {
  margin: 0;
  padding: 0;
  bottom: 0;
  text-align: center;
  color: #222;
}
}

/* 画面サイズ800px以下 */
@media screen and (max-width: 800px) {
body {
  padding: 0 auto;
  margin: 0 auto;
  font-family: Arial, メイリオ, Meiryo, Helvetica, ヒラギノ角ゴ ProN, sans-serif;
}

/* ロゴ */
.logo {
  margin: 5px;
  position: relative;
  width: 180px;
  height: 48px;
}

header a {
  height: 48px;
  width: 180px;
}

/* 言語選択 */
.side {
  background: #ccc;
  display: inline-block;
  width: 100px;
  text-align: center;
  vertical-align: middle;
  color: #0f4c81;
  text-decoration: none;
  font-weight: bold;
  font-size: 14pt;
  padding: 10px;
  position: relative;
  border: 2px solid #0f4c81;
  max-height: 25px;
  margin: 5px;
}

.side:hover {
  border: 2px solid transparent;
  color: #fff;
}

.side:before, .side:after {
  width: 100%;
  height: 100%;
  z-index: 3;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  transform: scale(0);
  transition: .4s;
}

.side:before {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform-origin: 100% 0%;
}

.side:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: 0% 100%;
}

.side:hover:after,
.side:hover:before {
  transform: scale(1);
}

/* 電話番号 */
.tel {
  font-size: 14pt;
  margin: 0;
  margin-right: 5px;
  color: #222;
}

/* 右寄せ */
.rightside {
  text-align: right;
}

.rightside-1 {
  text-align: right;
  margin-top: 5px;
  padding-bottom: 10px;
}

/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
}

/* ハンバーガーメニュー */
#nav-drawer {
  position: relative;/* 相対配置 */
}

/* スクロール時上部固定 */
#sticky {
  width: 100%;
  height: 40px;
  padding: 5px;
  background: #fff;
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* メニュー基本設定 */
ul.ddmenu {
  margin: 0;
  padding: 0;
  background: #555;
  font-weight: bold;
  font-size: 12pt;
  line-height: 1.6;
}

/* メインメニュー項目の装飾 */
ul.ddmenu li {
  list-style-type: none;
  display: block;
  margin-left: 15px;
  padding: 5px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 0px 0px 0px 7px;
}

/* メニュー最後尾 */
ul.ddmenu li ul li:last-child {
  border: none;
  border-left: 1px solid #fff;
}

/* メインメニュー文字色 */
ul.ddmenu a {
  color: #00dff6;
  text-decoration: none;
  font-weight: bold;
}

/* 子メニュー文字色 */
ul.ddmenu ul li a {
  color: #fff;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 35px;
  height: 40px;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: -10px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;/* 絶対配置 */
  height: 5px;/* 線の太さ */
  width: 35px;/* 長さ */
  border-radius: 4px;
  background-image: linear-gradient(45deg, #0f4c81, #00dff6);/* 色:グラデーション */
  display: block;/* ブロック要素 */
  content: '';/* 要素挿入 */
  cursor: pointer;
}

#nav-open span:before {
  bottom: -10px;
}

#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄カバー*/
#nav-close {
  display: none;/* はじめは隠しておく */
  position: fixed;
  z-index: 99;
  top: 0;/* 全体に広がるように */
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f4c81;
  opacity: 0;/* 透過率 */
  transition: .3s ease-in-out;/* 変化時間 緩やかに開始/終了 */
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; /*最前面に*/
  width: 90%; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 350px; /*最大幅（調整してください）*/
  height: 100%;
  background: #555; /*背景色*/
  transition: .3s ease-in-out; /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%); /*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* 内容 */
/* タイトル */
h1 {
  margin: 0 auto;
  width: 95%;
  margin-top: 30px;
  color: #222;
  text-align: center;
}

.title {
  font-size: 16pt;
}

/* 任意の改行 */
span.kai {
  display: inline-block;
}

/* 本文 */
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
  font-size: 12pt;
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 1pt;
  color: #334;
}

.text {
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
  font-size: 12pt;
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 1pt;
  color: #334;
}

.text:nth-of-type(1) {
  margin-top: 30px;
}


a.link:visited {
  color: #ad0056;
}

/* 上へ戻る */
.return {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  color: #0f4c81;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: double 4px #0f4c81;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;  
  text-decoration: none;
  font-size: 20pt;
  font-weight: bold;
  margin-left: 85%;
  margin-bottom: 15px;
  margin-top: 15px;
}

.return:hover {
  border: 4px solid #0f4c81;
}

/* フッター */
footer {
  margin: 0;
  bottom: 0;
  text-align: center;
  color: #222;
}
}