@charset "utf-8";
/* CSS Document */
.mean-container .mean-bar {
  display: none !important;
}

body {
}

body,
html {
  width: 100%;
  height: 100%;
  /*font-family: kozuka-gothic-pro, sans-serif;
	font-style: normal;
	font-weight: 200;*/
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック体", YuGothic, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.06em;
}

img {
  max-width: 100%;
  height: auto;
}

/* グローバルメニュー全体の設定 */
.gmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  padding: 0; /* 内側余白をなくす */
  box-sizing: border-box;
}

/* メニュー展開前のgmenu-listの初期状態 */
.gmenu-list {
  height: 0; /* 初期状態では高さを0に設定 */
  overflow: hidden; /* 中身を隠す */
  transition: height 0.3s ease; /* 高さの変化をスムーズに */
  padding: 0 5vw;
}

/* メニューが展開されたときの状態 */
.gmenu.active .gmenu-list {
  height: calc(100vh - 80px); /* ロゴ部分の高さを引いた高さに設定 */
  overflow-y: auto; /* 縦スクロールを有効に */
}

/* メニュー内のアイコンとロゴのスタイル */
.gmenu-flex {
  display: flex;
  align-items: center;
  padding: 10px 15px; /* アイコンとロゴの内側余白 */
  background-color: #fff; /* 背景色を白に設定 */
}

/* ハンバーガーメニューのアイコンスタイル */
.gmenu-flex .menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  cursor: pointer;
  z-index: 2;
}

/* ハンバーガーメニューアイコンのスタイル */
.gmenu-flex .menu-toggle img {
  width: 45px; /* 適切なサイズに調整 */
  height: 45px;
  cursor: pointer;
  opacity: 1; /* 画像の透明度を100%に設定 */
  transition: opacity 0.3s ease; /* 画像の透明度の変化をスムーズに */
}

/* ロゴの位置を上部に寄せる */
.gmenu-flex .logo {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 0;
  padding: 10px 0;
}

.gmenu-flex .logo img {
  height: auto;
  width: 150px;
}

/* メニュー項目のスタイル */
.gmenu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gmenu-list ul > li {
  margin: 5px 0;
  position: relative;
  border-bottom: 1px solid #eee;
}

/* メインメニュー項目のリンク */
.gmenu-list ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  position: relative;
}

/* サブメニューが表示されるエリア */
.gmenu-list ul > li > div {
  display: none; /* サブメニューはデフォルトで非表示 */
  padding-left: 15px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}

/* サブメニュー項目のスタイル */
.gmenu-list ul > li > div ol {
  padding: 10px 0;
  list-style: none;
  margin: 0;
}

.gmenu-list ul > li > div ol li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* サブメニュー項目のリンク */
.gmenu-list ul > li > div ol li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

/* メインメニューの右矢印（展開前） */
.gmenu-list ul > li > a .arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/common/new/gm-arw1.svg"); /* 矢印の画像 */
  position: absolute; /* 絶対位置を指定 */
  right: 15px; /* 右端からの余白を設定 */
  top: 50%; /* 垂直中央に配置 */
  transform: translateY(-50%); /* 垂直方向に中央揃え */
  cursor: pointer;
  opacity: 1;
}

/* メインメニュー展開時（上方向の矢印） */
.gmenu-list ul > li.active > a .arrow {
  background-image: url("../images/common/new/gm-arw2.svg");
}

/* サブメニュー項目の右矢印 */
.gmenu-list ul > li > div ol li a:after {
  content: "";
  background-image: url("../images/common/new/gm-arw3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  overflow: visible;
}

/* メニュー項目全体の設定 */
.gmenu-list ul > li,
.gmenu-list ul > li > div ol li {
  position: relative;
  overflow: visible;
}

/* メインメニューとサブメニューの各要素の幅調整 */
.gmenu ul > li > a {
  padding: 15px 20px; /* 矢印の位置が右に詰まらないように調整 */
  overflow: visible; /* 矢印が隠れないように設定 */
  position: relative; /* 子要素の絶対位置指定のために必要 */
}

.gmenu ul > li > div ol li a {
  padding: 8px 20px; /* 矢印の位置が右に詰まらないように調整 */
  overflow: visible; /* 矢印が隠れないように設定 */
  position: relative; /* 子要素の絶対位置指定のために必要 */
}

/* 最初の項目(HOME)の矢印を非表示 */
.gmenu ul > li:first-child > a:after {
  content: none;
}

/* サブメニューの表示/非表示切り替え */
.gmenu ul > li.active > div {
  display: block;
}

/* SVGコンテナのスタイル */
.svg-container {
  height: 70px;
  cursor: pointer;
  overflow: visible;
  display: inline-block;
  position: relative;
}

.gmenu-flex2 {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}

/* 初期状態のスタイル */
.svg-initial {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

/* 初期状態の長方形スタイル */
.svg-initial rect {
  fill: #11285e; /* 背景色 */
  stroke: #11285e; /* 枠線の色 */
}

.button2 rect {
  fill: #fff;
}

.button3 rect {
  fill: #051844;
}

/* 初期状態のテキストスタイル */
.svg-initial text {
  fill: #ffffff;
  transition: fill 0.3s ease;
  font-size: 18px;
}

.button2 text {
  fill: #333;
}

/* 初期状態の円 */
.circle {
  fill: #8fc31f;
  cx: 202;
  cy: 35;
  r: 5; /* 初期状態の円の半径 */
  transition: all 0.5s ease; /* アニメーションの設定 */
}

/* 初期状態の矢印 */
.arrow {
  opacity: 0; /* 初期状態は非表示 */
  transition: all 0.5s ease; /* アニメーションの設定 */
}

/* マウスオーバー時のスタイル */
.svg-container:hover .svg-initial rect {
  fill: rgba(255, 255, 255, 0.7); /* 背景を透明に */
  stroke: #11285e; /* 枠線の色 */
}

.svg-container:hover .button2 rect {
  fill: #11285e; /* 背景色 */
  stroke: #fff; /* 枠線の色 */
}

.svg-container:hover .svg-initial .outer-rect {
}

.svg-container:hover text {
  fill: #11285e; /* テキスト色を変更 */
}

.svg-container:hover .button2 text {
  fill: #fff; /* テキスト色を変更 */
}

.svg-container:hover .circle {
  r: 20; /* ホバー時の円の半径 */
}

.svg-container:hover .arrow {
  opacity: 1; /* 矢印を表示 */
  transform: translate(32px, 6.5px); /* 円の中の適切な位置に調整 */
}

/* 言語切替のスタイル */
.gmenu .lang {
  margin-top: 1vh;
  display: flex;
  padding: 0;
  gap: 10px;
}

.gmenu .lang a {
  display: block;
  border: #282828 solid 1px;
  padding: 5px 10px;
  color: #282828;
  min-width: 90px;
  line-height: 100%;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

/* 検索ボックスのスタイル */
.search-container {
  margin: 3vh 0 140px;
  display: flex;
  width: auto;
  max-width: 234px;
  height: 40px;
  background-color: #ddd;
  border-radius: 1px;
  padding: 0;
  overflow: hidden; /* 子要素の溢れを隠す */
}

.search-input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 16px;
  padding: 0 15px;
  background-color: transparent;
  outline: none;
}

.search-button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.search-button svg {
  width: 24px; /* アイコンの大きさを調整 */
  height: 24px;
}

#container {
  padding-top: 75px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 0;
}

.footer {
  display: none;
}

.footer2 {
  background: #11285e;
  position: relative;
  padding: 40px 5vw 0;
  text-align: left;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.footer2 .logo {
  text-align: center;
}

.footer2 .policy {
  position: absolute;
  top: 4vh;
  right: 2vw;
  color: #fff;
  font-size: 14px;
}

.footer2 .footer_flex {
  display: none;
}

.footer2 ul {
  margin: 20px;
  min-width: 170px;
  margin-top: 6vh;
}

.footer2 ul li {
  margin: 0 5px;
  text-align: left;
}

.footer2 ul li a {
  color: #fff;
  font-size: 13px;
}

.footer2 ul li a.b {
  display: block;
  font-size: 1.1vw;
  color: #8fc31f;
  font-weight: bold;
  margin-bottom: 1vh;
}

.footer2 ul li.line1 {
  padding-left: 18px;
}

.footer2 ul li.line2 {
  padding-left: 18px;
}

.footer2 .links {
  margin: auto;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}

.footer2 .links ul.text-links {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  gap: 20px;
}

.footer2 .links ul.text-links li {
  margin-left: 1vw;
  margin-right: 0;
}

.footer2 .links ul.text-links li a {
  padding-right: 0;
  margin-right: 0;
}

.footer2 .bn-area {
  display: flex;
  flex-flow: column;
  width: 70vw;
  align-items: center;
}

.footer2 .buttons {
  display: none;
}

.pageup {
  position: fixed;
  bottom: -10px;
  right: 0;
  width: 44px;
  z-index: 102;
}

.f_km {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  /*font-family: kozuka-mincho-pr6n, serif;
	font-weight: 700;
	font-style: normal;*/
}

video {
  max-width: 100%;
  height: auto;
}

.center {
  text-align: center;
}

.pc {
  display: none;
}

article {
  width: 100%;
  margin: 0px auto;
  background: #fff;
  text-align: center;
  font-size: 80%;
}

#logo2 {
  position: absolute;
  top: 5px;
  left: 5px;
}

.language {
  position: fixed;
  top: 10px;
  right: 60px;
}

.language li {
  display: inline-block;
  width: 50px;
  z-index: 105;
}

.language li a {
  font-size: 12px;
  color: #333;
}

.footer_sp {
  background: #11285e;
  padding: 15px 5px;
  margin-top: 0 !important;
  text-align: center;
}

.footer_sp p {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.footer_sp a {
  color: #fff;
  font-size: 12px;
  margin-top: 10px;
  display: none;
}

.red {
  color: #ff0004;
  font-size: 100%;
}

@media (max-width: 640px) {
  .tab {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  .sp {
    display: none;
  }
}
@media (min-width: 1181px) {
  .pc {
    display: none;
  }
  .sp {
    display: none;
  }
  .mean-container a.meanmenu-reveal {
    width: 44px !important;
  }
  .mean-container a.meanmenu-reveal span {
    height: 4px !important;
    margin-top: 4px !important;
  }
  .menu {
    position: fixed;
    top: 30px !important;
    right: 24px !important;
  }
  .mean-container a.meanmenu-reveal {
    margin-top: -6px;
  }
  .language {
    margin-right: 60px;
  }
}

.no-wrap {
  display: inline-block;
}

.linkbutton2 {
  color: #ffffff;
  display: inline-block;
  margin: 10px;
  padding: 5px 10px 5px 24px;
  line-height: 100%;
  font-size: 14px !important;
  border-radius: 20px; /* CSS3草案 */
  -webkit-border-radius: 20px; /* Safari,Google Chrome用 */
  -moz-border-radius: 20px;
  background: #269400 url("../images/common/arw6.png") no-repeat left 5px center;
}

.linkbutton2:hover {
  background-color: #61d36a;
}
