@charset "utf-8";

*, article, aside, canvas, details, figcaption, figure,
header, footer, hgroup, nav, section, summary, main {
  margin: 0;
  padding: 0;
}

html,body{ height:100%;}

/* 背景 */
body {
  line-height: 1.7;  color: #333333;
  font-family: Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 90%;
  background: #FFFFFF;
}

/* 画像全体 */
img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リスト */
ol, ul, li {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

/* テーブル */
table {
  border-collapse: collapse;
}

/* HTML5, 5.1 で追加 */
article, aside, canvas, details, figcaption, figure, footer,
header, hgroup, main, menu, nav, picture, section, summary {
  display: block;
}

/* コンテンツ全体 */
#contents_all {
  width: 100%;
  height:auto !important;
  height:100%;
  margin:0 auto;
  min-height:684px;
}

/* ヘッダー */
.header_wapper {
  width: 100%;
  background: #FFFFFF;
  transition: 0.3s ease-in-out;
}
.header_inner {
  width: 1300px;
  height: 90px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.header_wapper {
  position: sticky;
  top: -90px;
  z-index: 3;
  filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.2));
  box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
}
header h1 a {
  display: block;
  width: 290px;
  transition: 0.3s all;
}
header h1 a:hover {
  opacity: 0.6;
}
header h1 a img {
  width: 100%;
}
/* header内 メニュー */
ul.header_sub_menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
ul.header_sub_menu li a {
  color: #003F73;
  text-decoration: none;
  position: relative;
  padding-left: 25px;
  margin-left: 30px;
  display: block;
}
ul.header_sub_menu li a::before {
  content: '';
  display: block;
  background: url(../images/home.svg) no-repeat;
  width: 18px;
  height: 14px;
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
}
ul.header_sub_menu li.contact a::before {
  background: url(../images/contact.svg) no-repeat;
  height: 12px;
  top: calc(50% - 7px);
}
ul.header_sub_menu li a:hover {
  opacity: 0.6;
}

/* コンテンツ */
#contents {
  margin: 20px auto 100px;
  width: 1000px;
  display: flex;
  align-items: flex-start;
}
#contents.top {
  margin: 40px auto 80px;
}

/* パンくずリスト */
.breadcrumb {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
.breadcrumb ol {
  width: 1200px;
  height: 40px;
  margin: 0 auto;
  padding-left: 100px;
  box-sizing: border-box;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.breadcrumb ol li+li:before {
  content: '\03e';
  padding: 0 0.5em;
  color: #888888;
}

/* クリアフィクス */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* 左コンテンツ */
#contents_l.top {
  width: 700px;
}

/* 下層 サブメニュー */
nav#sub_nav {
  width: 220px;
  margin-right: 45px;
}
nav#sub_nav p {
  display: flex;
  align-items: center;
  padding-left: 1em;
  min-height: 55px;
  box-sizing: border-box;
  background: #003F73;
  color: #FFFFFF;
  border-top: 5px solid #C0C0C0;
  border-bottom: 1px solid #FFFFFF;
  line-height: 1.4;
}
nav#sub_nav {
  border: 1px solid #DEDEDE;
  border-bottom: 0;
}
ul.sub_menu > li a {
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 14px;
  border-bottom: 1px solid #DEDEDE;
  border-left: 4px solid transparent;
  padding: 0.5em 0.5em 0.5em 1.5em;
  min-height: 50px;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  line-height: 1.4;
}
ul.sub_menu > li a.on,
ul.sub_menu > li a:hover {
  color: #003F73;
  border-left: 4px solid #C0C0C0;
}
/* 下層 サブメニュー の下層メニュー */
ul.sub_menu > li ul > li a {
  background: #F6F7F7;
  padding-left: 3em;
  box-sizing: border-box;
  position: relative;
}
ul.sub_menu > li ul > li a::before {
  content:'';
	position: absolute;
	top: 20px;
  left: 1.8em;
	width:5px;
	height:5px;
  border-top: 1px solid #003F73;
  border-right: 1px solid #003F73;
  transform: rotate(45deg);
}

/*ハンバーガー ボタン*/
.gnav_btn{
  display: none;
}
/* グローバル メニュー */
.gnav {
  width: 100%;
  background: #003F73;
  padding: 0 1em;
  box-sizing: border-box;
}
.gnav ul {
  display: flex;
	justify-content: space-between;
  width: 1200px;
  margin:0 auto;
  position: relative;
}
/*2階層目以降は横並びにしない*/
.gnav ul ul {
	display: block;
}
.gnav ul li {
  position: relative;
  flex: 1;
}
.gnav ul li:nth-of-type(5) {
  flex: 0 0 220px; /* 固定幅の項目 */
}
@media screen and (max-width:820px){
  .gnav ul li:nth-of-type(5) {
  flex: 1;
  }
}
.gnav > ul > li a {
  height: 55px;
	display: flex;
  align-items: center;
  justify-content: center;
	color: #FFFFFF;
	transition:all .3s;
  text-decoration: none;
}
.gnav ul li li a {
	/* width: 200px; */
  padding: 0 1em 0 1.5em;
  box-sizing: border-box;
  position: relative;
}
/* メニューにある太い ボーダー */
.gnav > ul > li > a,
.gnav > ul > li > a:hover,
.gnav > ul > li.has-child > a.on {
  position: relative;
}
.gnav > ul > li > a.on::after,
.gnav > ul > li > a:hover::before,
.gnav > ul > li.has-child > a.on::before {
  content: '';
  display: block;
  width: 99.5%;
  height: 5px;
  background: #C0C0C0;
  position: absolute;
  bottom: 0.6px;
  left: 0;
}
 
/*2階層の矢印の設定*/
.gnav ul li.has-child {
  position: relative;
}
.gnav ul li.has-child::before {
  content: "";
	display: inline-block;
  color: #FFFFFF;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  top: 40%;
  right: 30%;
}
@media screen and (max-width:1110px){
  .gnav ul li.has-child::before {
    right: 25%;
  }
}
@media screen and (max-width:820px){
  .gnav ul li.has-child::before {
    content: normal;
  }
  .gnav > ul > li > a.on::after,
  .gnav > ul > li > a:hover::before,
  .gnav > ul > li.has-child > a.on::before {
    content: normal;
  }
}

/*下の階層を持っているulの指定*/
.gnav li.has-child ul {
  position: absolute;
  left: 0;
  top: 55px;
  z-index: 4;
  background:#FFFFFF;
  width: 100%;
  visibility: hidden;  /*はじめは非表示*/
  opacity: 0;
  box-shadow: 10px 10px 30px -8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
/*hoverしたら表示*/
.gnav li.has-child:hover > ul,
.gnav li.has-child ul li:hover > ul,
.gnav li.has-child:active > ul,
.gnav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*2階層*/
.gnav li.has-child ul li a {
  color: #333333;
  border-bottom:solid 1px rgba(0,0,0,0.2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 44px;
  line-height: 1.1;
}
.gnav li.has-child ul li a.on,
.gnav li.has-child ul li a:hover {
  background: #F5F5F5;
  color: #003F73;
}
.gnav li.has-child ul li:last-child > a {
  border-bottom:none;
}
/*2階層の矢印の設定*/
.gnav ul ul li.has-child > a {
  position: relative;
}
.gnav ul ul li.has-child > a::before{
	content:'';
	position: absolute;
	top:17px;
  right: 1em;
	width:5px;
	height:5px;
  border-top: 1px solid #003F73;
  border-right: 1px solid #003F73;
  transform: rotate(45deg);
}
/*3階層の位置*/
  .gnav li.has-child ul ul{
  top: 0;
  left: 197px;
  background:#FFFFFF;
}

/* トップページhero画像 */
.img_hero {
  position: relative;
  text-align: center;
  background: #DCE6FA url(../images/img_hero_top.webp) no-repeat center top;
  height: 400px;
  /* height: 400px; */
}
.text_inner {
  font-size: clamp(22px,5.46vw,42px);
  line-height: 1.4;
  position: absolute;
  top: 100%; /* 初期位置：画面外 */
  left: 50%;
  transform: translate(-50%, 0);
  text-align: left;
  opacity: 0; /* 初期状態は非表示 */
  transition: transform 0.5s ease-in, opacity 0.5s ease-in;
  color: #003F73;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.visible {
  top: 45%; /* 表示位置 */
  transform: translate(-50%, -50%);
  opacity: 1; /* 徐々に表示 */
}

/* ここからmain部分 */

/* 右コンテンツ */
#contents_r {
  width: 735px;
}
#contents_r.top {
  width: 240px;
  margin-left: auto;
}
.banner_wapper a {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.banner_wapper img {
  border: 1px solid #DDDDDD;
  box-sizing: border-box;
}
.banner_wapper a.border_none {
  border: none;
}

/* 新着情報 */
#news {
  margin: 0 auto;
  width: 100%;
  text-align:left;
}
#news h2 {
  font-size: 28px;
  color: #003F73;
  text-align: center;
  line-height: 1.1;
  padding-bottom: 50px;
  border-bottom: 1px solid #DDDDDD;
  font-weight: bold;
  letter-spacing: 0.5px;
}
#news h2 span {
  color: #555555;
  font-size: 18px;
  font-weight: bold;
}
#news_frame {
  width: 100%;
  margin:0 auto;
  font-size: 14px;
  padding: 5px 20px;
  box-sizing: border-box;
  overflow:auto;
  line-height: 1.6;
  border-bottom: 1px solid #DDDDDD;
}
#news_frame dl {
  overflow: hidden;
  margin-bottom: 1em;
}
#news_frame dt ,#news_frame dd {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  border-top: 1px solid #DDDDDD;
}
#news_frame dt {
  float: left;
  font-weight: bold;
}
#news_frame dd {
  padding-left: 7em;
  position: relative;
}
#news_frame dd.icon_new {
  display: block;
  padding-left: 11.5em;
}
#news_frame dd.icon_new::before {
  content: "New";
  display: inline-block;
  position: absolute;
  top: 1.3em;
  left: 7em;
  border: 1px solid #C99C6C;
  color: #C99C6C;
  width: 3em;
  font-size: 0.9rem;
  text-align: center;
  box-sizing: border-box;
  border-radius: 3px;
}
#news_frame dd.icon_new {
  display: block;
}
#news_frame dt:first-of-type,
#news_frame dd:first-of-type {
 border-top: none;
}

/* 事務局等 */
#info {
  text-align: center;
}
#info address {
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

/* フッター */
footer {
  width: 100%;
  background: #F2F5F7;
  text-align: center;
  color: #003F73;
  padding-top: 40px;
}
.footer_logo {
  border-bottom: 1px solid #003F73;
  margin-bottom: 30px;
}
.footer_logo img {
  width: 290px;
  margin-bottom: 30px;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  padding-bottom: 6px;
}

/* サブページ内 */
main {
  width: 735px;
  /* padding: 0 0 80px; */
  position:relative;
  /* min-height:600px; */
  min-height:350px;
}
main h2 {
  width: 100%;
  min-height: 60px;
  padding: 6px 1em 4px 20px;
  margin-bottom: 30px;
  box-sizing: border-box;
  line-height: 1.1;
  background: #003F73;
  color: #FFFFFF;
  font-size: 32px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

/* サブページ大見出し */
main h3 {
  font-size: 22px;
  padding: 0 0 0 20px;
  margin: 30px 0 25px;
  line-height: 1.2;
  position: relative;
}
main h3::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 92%;
  background-color: #003F73;
  position: absolute;
  top: 0;
  left: 0;
}
main h3::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #dbdbdb;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* 一番最初にくる時はアキなしにする場合はここに書き足す */
main h3:first-child, main h4:first-child, main h5:first-child, main p:first-child, main table tr td p:first-child {
  margin-top: 0;
}

/* 組み合わせでアキなしする場合はここに書き足す */
main h3 + h4, main h4 + h5, main h3 + p ,main h4 + p, main h5 + p {
  margin-top:0;
}

main h4 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding: 5px 15px;
  font-size: 120%;
  font-weight: bold;
  border: 1px solid #003F73;
  box-sizing: border-box;
  color: #003F73;
  background: #F6F7F7;
}
/* サブページ小見出し  */
main h5 {
  margin: 1em 0 0.5em 0;
  padding:0.2em;
  font-size: 115%;
  font-weight: bold;
  border-bottom: 1px dotted #666666;
}
main h6 {
  margin: 1em 0 0.5em 0;
  padding:0.2em 10px 0.2em 1.8em;
  font-size: 110%;
  font-weight: bold;
  position: relative;
}
main h6:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #003F73;
  position: absolute;
  top: calc(50% - 7px);
  left: 0.5em;
}


/* サブページ段落 */
main p {
  margin-top: 1em;
}
main p.zero {
  margin-top: 0;
}
main p.han {
  margin-top: 0.5em;
}

/* サブページリスト */
main ul {
  margin-left: 1em;
}
main ul li {
  list-style: disc;
}
main ul.half li {
  margin-bottom: 0.5em;
}
main ol {
  margin-left: 1.5em;
}
main ol li {
  list-style: decimal;
}


/* サブページリスト */
main ul {
  margin-left: 1em;
}
main ul li {
  list-style: disc;
}
main ul.aki li {
  padding-bottom: 0.5em;
}
main ol {
  margin-left: 1.5em;
}
main ol li {
  list-style: decimal;
}
main ol.aki li {
  padding-bottom: 0.5em;
}

/* 只今準備中です。 */
p.jyunbi {
  text-align: center;
  padding-top: 100px;
}

/* 挨拶 */
main.greet p{
  line-height: 1.9;
  text-indent:1em;
}
div.greet_name {
  line-height: 1.8;
  position: relative;
  height:220px;
  margin-bottom:2em;
  width:100%;
}
main.greet div.name{
  position: absolute;
  bottom:0;
  margin-left:180px;
}
main.greet p.photo {
  float:left;
  text-indent:0;
}
main.greet p.photo img{
  border: 1px solid #CCCCCC;
  padding:1px;
}
/* 会則 */
.kaisoku {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
}
.kaisoku span {
  display: flex;
  align-items: center;
}
.kaisoku img {
  margin-right: 1em;
}

/* 開催概要 */
table.hyou_info{
  border-collapse:collapse;
  width:100%;
}
table.hyou_info th{
  border-top:1px solid #a52a2a;
  border-bottom:1px solid #a52a2a;
  padding:1em 1.5em 1em 0.5em;
  vertical-align:top;
  white-space:nowrap;
  text-align:left;
  color:#555;
  width:10%;
}
table.hyou_info td{
  border-top:1px solid #a52a2a;
  border-bottom:1px solid #a52a2a;
  padding: 1em 0 1em 0.5em;
  vertical-align:top;
  text-align:left;
}
/* 沿革 */
main.enkaku p{
  line-height: 1.9;
  text-indent:1em;
  margin-top: 0;
}
main p.enkaku_name {
  font-size: 120%;
  font-weight: bold;
  text-indent: 0;
}
/* 歴代会長 表組 */
ul.wrapper_btn_link {
  margin-left: 0;
  padding: 1.5em 0 1.5em 1em;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1em 1.3em;
  font-size: 15px;
  background: #FFFFFF;
  position: sticky;
  top: 55px;
}
ul.wrapper_btn_link li {
  list-style: none;
}
ul.wrapper_btn_link li a {
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  color: #333333;
  display: block;
}
ul.wrapper_btn_link li.link {
  background:url(../images/icon_link.png) no-repeat left center;
  padding-left:10px;
  margin-bottom:0;
}

table.addr_list {
  border-collapse: collapse;
  width: 100%;
}
table.addr_list th,
table.addr_list td {
  padding: 1em 0 1em 0.5em;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}
table.addr_list th {
  font-weight: normal;
  color: #666;
  background: #EEEEEE;
  position: sticky;
  top: 130px;
}
/* scroll-padding-top */
html.enkaku {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

@media screen and (max-width:1110px){
/* 歴代会長 表組 ------ */
  ul.wrapper_btn_link {
    top: 55px;
  }
  table.addr_list th {
    top: 170px;
  }
}

/* 学術集会 */
table {
  border-collapse: collapse;
}
table.hyou_meeting {
  width: 100%;
  margin-bottom: 1em;
}
table.hyou_meeting td {
  border: 1px solid #dbdbdb;
  background-color: #FFFFFF;
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}
table.hyou_meeting td > p {
	font-weight: normal;
}
table.hyou_meeting th {
  border: 1px solid #dbdbdb;
  background-color: #F6F7F7;
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
  width: 20%;
}
table.hyou_meeting tr {
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}
a.img_modal {
  margin: 0.5em 1em;
  display: inline-block;
}

/* ガイドライン、プロトコールなど */
main.guideline .h3_guidline {
  font-size: 20px;
}
main.guideline ul li {
  list-style: none;
  padding: 1em;
  display: flex;
  align-items: center;
}
main.guideline ul li img {
  margin-right: 1em;
}
main.guideline ul.pdf_list {
  margin-bottom: 6em;
}
html.guideline {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
.guideline_link {
  margin-bottom: 4em;
}
.guideline_link li a {
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}
.guideline_link li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 14px solid #0066CC;
  border-bottom: 0;
}

/* endai */

/* 別ページで開く------------------- */

/* 別ページで開くここまで------------------- */

/* kigyo */

/* accsess*/

/* リンク */
p.link {
  background:url(../images/icon_link.png) no-repeat left center;
  padding-left:15px;
  margin-bottom:0;
}
p.link a:link,p.link a:visited {
  color:#333333;
  text-decoration:none;
}
p.link a:hover,p.link a:active {
  color:#666666;
  text-decoration:underline;
}

/* 文章中のリンク */
a:link, a:visited {
  color: #0066CC;
  text-decoration: underline;
}
a:hover, a:active {
  color: #0066CC;
  text-decoration: none;
}

/******* ボタン ********/
.btn a:link {color: #FFFFFF;
  text-decoration: none;}
.btn a {
  font-size: 18px;
  border-radius: 5px;
  padding: 10px 30px;
  margin: 10px;
  min-width: 250px;
  box-sizing: border-box;
  display: inline-block;
  color: #FFFFFF;
  background-color: #0084DB;
  border: 2px solid #0084DB;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: 0.3s;
  position: relative;
}
.btn a:hover {
  color: #0084DB;
  background-color: #FFFFFF;
  border: 2px solid #0084DB;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.btn a::after {
  content: '';
  display: block;
  background: url(../images/icon_arrow_r_white.svg) no-repeat;
  width: 6px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 1em;
  transition: 0.5s ease-in-out;
}
.btn a:hover::after {
  background: url(../images/icon_arrow_r_blue.svg) no-repeat;
}

/* pagetop */
.pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 5;

}
.pagetop a {
  display: block;
  background-color: rgba(0,0,0,0.6);
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  position: relative;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.pagetop a::before {
  content: '';
  display: inline-block;
  position: absolute;
  top:55%;
  left:50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  transform:translate(-50%,-50%) rotate(315deg);
}
.pagetop a:hover {
  opacity: 0.6;
}

/* 外部リンク */
a.external {
  background: url(../images/external.png) no-repeat right center;
  padding-right: 20px;
}

/* テンプレート */
table.hyou_aaa {
  width: 100%;
  margin-bottom: 1em;
}
table.hyou_aaa td {
  border: 1px solid #dbdbdb;
  background-color: #FFFFFF;
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}
table.hyou_aaa th {
  border: 1px solid #dbdbdb;
  background-color: #F6F7F7;
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
  width: 20%;
}
table.hyou_aaa tr {
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}

table.hyou_meibo {
  width: 100%;
  margin-bottom: 1em;
}
table.hyou_meibo td {
  border: 1px solid #DDDDDD;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 1em;
  padding-left: 1em;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}
table.hyou_meibo th {
  background: #F6F7F7;
  border: 1px solid #DDDDDD;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 1em;
  padding-left: 1em;
  vertical-align: top;
  text-align: center;
  font-weight: normal;
  width: 25%;
}
table.hyou_meibo tr {
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}
table.hyou_meibo.shisetsu th {
  width: 45%;
}
table.hyou_meibo.meiyo {
  width: initial;
}
table.hyou_meibo.meiyo th {
  width: 25%;
}

/* table line_none */
table.non {
  border: none;
}
table.non td {
  text-align: left;
  vertical-align: top;
}
table.non th {
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  font-weight: normal;
}

/* ※一字下げ */
.kome{
  padding-left:1em;
  text-indent:-1em;
}

/* text */
.mbm1 {margin-bottom:-1em;}
.mb1 {margin-bottom:1em;}
.mb2 {margin-bottom:2em;}
.mb03 {margin-bottom:0.3em;}
.mb05 {margin-bottom:0.5em;}
.mb15 {margin-bottom:1.5em;}

.pl05 {padding-left:0.5em;}

.ml1 {margin-left:1em;}

.f85 {font-size:85%;}
.f90 {font-size:90%;}
.f95 {font-size:95%;}
.f100 {font-size:100%;}
.f105 {font-size:105%;}
.f110 {font-size:110%;}
.f115 {font-size:115%;}
.f120 {font-size:120%;}

.uchikeshi {
   background:
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAABGdBTUEAAK/INwWK6QAAAANQTFRFAAAAp3o92gAAAApJREFUCB1jYAAAAAIAAc/INeUAAAAASUVORK5CYII=)
0 center repeat-x;
}
.uchikeshi.red {
   background:
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAABGdBTUEAAK/INwWK6QAAAANQTFRF/wAAGeIJNwAAAApJREFUCB1jYAAAAAIAAc/INeUAAAAASUVORK5CYII=
) 0 center repeat-x;
}
.underline {
  text-decoration:underline;
}
.red {color: #FF0000;
}
.blue {color: #1d2777;
}

/* 太字 */
.bold{
  font-style:normal;
  font-weight:bold;
}

.text_r{
  text-align:right;
}
.text_c{
  text-align:center;
}

/* 注意事項用枠WAKU様式 */
div.tyuui_waku {
  display: block;
  margin: 1em auto;
  border: 2px solid #D1BAD9;
  background: #f1f4ff;
  padding: 1em;
  width: 90%;
  text-align: left;
  color: #482473;
  font-size: 100%;
  font-weight: bold;
}


/* PCで表示 */
.pc_only {
  display: inline-block;
}
/* PCでは非表示 */
.sp_only, .tb_only, .pc_none {
  display: none;
}

/*------------------------------------------*/
/* タブレット用 */
/*------------------------------------------*/
@media screen and (max-width:1300px){
  /* タブレットで表示 */
  .tb_only, .pc_none {
    display: inline-block;
  }
  /* タブレットでは非表示 */
  .pc_only, .sp_only {
    display: none;
  }

  /* ヘッダー */
  .header_inner {
    width: 100%;
  }

  /* トップページhero画像 */
  .img_hero {
    background: #DCE6FA url(../images/img_hero_top.webp) no-repeat center top / cover;
    /* height: 400px; */
  }
  .text_inner {
    font-size: 28px;
  }

  /* コンテンツ */
  #contents {
    width: 90%;
  }

  /* パンくずリスト */
  .breadcrumb ol {
    width: 100%;
    padding-left: 10%;
  }

  /* 左コンテンツ */
  #contents_l.top {
    width: 70%;
  }

  /* 下層 サブメニュー */
  nav#sub_nav {
    width: 22%;
    margin-right: 4.5%;
  }

  /* グローバル メニュー */
  .gnav {
    width: 100%;
    background: #003F73;
  }
  .gnav ul {
    width: 100%;
  }


  /* ここからmain部分 */

  /* 右コンテンツ */
  #contents_r.top {
    width: 24%;
  }

  /* サブページ内 */
  main {
    width: 73.5%;
  }


  /* 下記は削除しない */
}

/*------------------------------------------*/
/* スマホ用 820px  */
/*------------------------------------------*/
  @media screen and (max-width:820px){
  /* スマホで表示 */
  .sp_only, .pc_none {
    display: inline-block;
  }
  /* スマホでは非表示 */
  .pc_only, .tb_only, .sp_none {
    display: none;
  }

  /*ハンバーガー ボタン*/
  .gnav_btn {
    display: block;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px;
    margin-right: 10px;
    z-index: 3;
  }
  /*ボタン 線*/
  .gnav_btn span{
    display: inline-block;
    transition: all .2s;
    position: absolute;
    left: 12px;
    height: 3px;
    border-radius: 2px;
    background: #999999;
    width: 50%;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
  }
  .gnav_btn span:nth-of-type(1) {
    top:15px;
  }
  .gnav_btn span:nth-of-type(2) {
    top:23px;
  }
  .gnav_btn span:nth-of-type(3) {
    top:31px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .gnav_btn.active span:nth-of-type(1) {
      top: 18px;
      left: 12px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
  }
  .gnav_btn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  .gnav_btn.active span:nth-of-type(3){
      top: 30px;
      left: 12px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
  }

  .gnav li.has-child ul,
  .gnav li.has-child ul ul{
    position: relative;
    left:0;
    top:0;
    width:100%;
    /*JSで制御するため一旦表示*/
    visibility:visible;
    /*JSで制御するため一旦表示*/
    opacity:1;
    /*JSのslidetoggleで表示させるため非表示に*/
    display: none;
    /*JSで制御するためCSSのアニメーションを切る*/
    transition:none;
  }

  /* コンテンツ全体 */

  /* ヘッダー */
  .header_wapper {
    position: fixed;
    top: auto;
  }
  .header_inner {
    padding: 0;
    height: auto;
    flex-direction: column;
  }
  header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header h1 a {
    width: 90%;
    padding-left: 10px;
    box-sizing: border-box;
  }
  /* header内 メニュー */
  ul.header_sub_menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
  }
  ul.header_sub_menu li {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.2);
  }
  ul.header_sub_menu li a {
    height: 55px;
    margin-left: 0;
    padding-left: 3.5em;
    font-size: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  ul.header_sub_menu li a::before {
    width: 18px;
    height: 14px;
    position: absolute;
    top: calc(50% - 9px);
    left: 1.5em;
  }
  ul.header_sub_menu li.contact a::before {
    height: 12px;
    top: calc(50% - 7px);
  }
  ul.header_sub_menu li a:hover {
    opacity: 0.6;
  }
  /* トップページhero画像 */
  .img_hero {
    height: 200px;
    padding-top: 140px;
  }
  .text_inner {
    font-size: 22px;
    width: 90%;
    padding: 0 5%;
    white-space: normal;
  }
  .visible {
    top: 40%;
  }

  /* コンテンツ */
  #contents {
    margin: 20px auto;
    width: 90%;
    flex-direction: column;
  }

  /* パンくずリスト */
  .breadcrumb {
    padding-top: 70px;
  }
  .breadcrumb ol {
    padding-left: 5%;
  }

  /* 左コンテンツ */
  #contents_l.top {
    width: 100%;
    margin-bottom: 40px;
  }

  /* 下層 サブメニュー */
  nav#sub_nav {
    display: none;
  }

  /* グローバル メニュー */
  .gnav {
    width: 100%;
    background: #003F73;
    display: none;
    padding: 0;
  }
  .gnav ul {
    flex-direction: column;
  }
  .gnav ul li {
    width: 100%;
  }
  .gnav > ul > li {
    border-bottom: 1px solid #C0C0C0;
  }
  .gnav > ul > li a {
    justify-content: flex-start;
    padding-left: 1.5em;
    box-sizing: border-box;
    font-size: 15px;
    position: relative;
  }

  /* メニューにある太い ボーダー 初期値に戻す */
  .gnav > ul > li > a:hover::before,
  .gnav > ul > li.has-child > a.on::before {
    content:normal;
    position: static;
    bottom: auto;
    left: auto;
  }
  .gnav > ul > li.has-child > a.on,
  .gnav > ul > li.has-child > a {
    position: relative;
  }
  .gnav > ul > li.has-child > a::after {
    content:'';
    display: block;
    position: absolute;
    top: 25px;
    right: 1em;
    left: auto;
    bottom: auto;
    margin:auto;
    width: 12px;
    height: 1px;
    background: #FFFFFF;
    transform: rotate(90deg);
    transition: 0.3s;
  }
  .gnav > ul > li.has-child > a.on::before,
  .gnav > ul > li.has-child > a::before {
    content:'';
    display: block;
    position: absolute;
    top: 25px;
    right: 1em;
    left: auto;
    margin: auto;
    width: 12px;
    height: 1px;
    background: #FFFFFF;
    transform: rotate(180deg);
  }
   .gnav > ul > li.has-child.active > a.on::after,
  .gnav > ul > li.has-child.active > a::after {
    content:'';
    display: block;
    position: absolute;
    top: 25px;
    right: 1em;
    margin:auto;
    width: 12px;
    height: 1px;
    background: #FFFFFF;
    transform: rotate(180deg);
  }
  .gnav ul li li a {
    width: 100%;
  }

  
  /*下の階層を持っているulの指定*/
  .gnav li.has-child ul {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    box-shadow: none;
  }
  /*2階層*/
  .gnav li.has-child ul li a {
    padding-left: 2em;
  }
  /*2階層の矢印の設定*/
  .gnav ul ul li.has-child > a::before {
    right: 1.2em;
    transform: rotate(135deg);
    transition: 0.2s;
  }
  .gnav ul ul li.has-child.active > a::before {
    transform: rotate(315deg);
  }
   /*3階層の位置*/
  .gnav li.has-child ul ul {
    top: auto;
    left: auto;
    border-bottom:solid 1px rgba(0,0,0,0.2);
  }
  .gnav li.has-child ul ul li a {
    padding-left: 4em;
    box-sizing: border-box;
    font-size: 90%;
    background: #F6F7F7;
    position: relative;
    padding-left: 4em;
  }
  .gnav li.has-child ul ul li a::after {
    content:'';
    position: absolute;
    top: 12px;
    left: 2.8em;
    width:8px;
    height:8px;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    transform: rotate(180deg);
  }

  /* 右コンテンツ */
  #contents_r.top {
    width: 100%;
    margin: auto;
  }
  .banner_wapper a {
    text-align: center;
  }

  /* 新着情報 */
  #news {
    margin: 0 auto;
    width: 100%;
    text-align:left;
  }
  #news h2 {
    font-size: 22px;
    padding-bottom: 20px;
  }
  #news {
    width: 100%;
  }
  #news h3 {
    width: 100%;
  }
  #news h3 img {
    width: 35%;
  }
  #news_frame {
    width: 100%;
    margin: 0 auto;
    padding: 5px 1em;
    height: 190px;
  }
  #news_frame dd {
    padding-top: 0;
  }
  #news_frame dt {
    float: none;
    border-top: none;
    padding-bottom: 0.5em;
  }
  #news_frame dd {
    padding-left: 0;
    padding-right: 0;
    border-top: none;
    border-bottom: 1px solid #DDDDDD;
  }
  #news_frame dd.icon_new {
    padding-left: 4em;
  }
  #news_frame dd.icon_new::before {
    top: 0;
    left: 0;
  }

  /* 歴代会長 表組 */
  table.addr_list .heading {
    display: none;
  }
  table.addr_list th,
  table.addr_list td {
    font-size: 1em;
  }
  table.addr_list td {
    display: block;
  }
  table.addr_list td::before {
    content: attr(data-label);
    font-size: .875rem;
    color: #666666;
    display: block;
    margin-bottom: 0.25rem;
  }
  table.addr_list td.number_times {
    background: #eee;
  }

  table.addr_list th {
    position: relative;
  }

  /* scroll-padding-top */
  html.rekidaikaityou {
    scroll-padding-top: 200px;
  }

  /* サブページ内 */
  main {
    width: 100%;
    padding: 0 0 20px;
  }



  /* 下記は削除しない */
}

/*------------------------------------------*/
/* スマホ用 599px  */
/*------------------------------------------*/
@media screen and (max-width:599px){


/* 歴代会長及 表組 ------ */
/* scroll-padding-top */
  html.rekidaikaityou {
    scroll-padding-top: 230px;
  }


  /* 下記は削除しない */
}
