/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
}
.w_base {
	margin: 0 auto;
	max-width: 1240px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  border-top: 2px solid #0477bf;
}
.hd_bg .hd_con {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 30px;
}
.hd {
	position: relative;
  margin-top: 13px;
  margin-bottom: 15px;
}

.hd h1 a {
  color: #000;
  text-decoration: none;
  font-size: 1.71rem;
}

.hd h1 .main_title {
  font-size: 1.6rem;
  line-height:2.1em;
  display: block;
  margin-bottom: -7px;
}

.hd h1 .en_title {
  display: block;
  font-size: 0.8rem;
  color: #035aa6;
  margin-top: -3px;
  line-height: 1.1rem;
}

.hd_right {
}

.hd_right .hd_info {
  display: flex;
  justify-content: end;
  margin-top: 18px;
  margin-bottom: 30px;
}

.hd_right .hd_info li{
  margin-right: 40px;
  padding-right: 20px;
  font-size: 1.076rem;
  border-right: 1px solid #999999;
  position: relative;
}
.hd_right .hd_info li:nth-of-type(3){
  margin-right: 20px;
}
.hd_right .hd_info li:last-child{
  margin-right:0;
  border: none;
  padding: 0;
}

.hd_right .hd_info li a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.hd_right .hd_info li a:hover{
  color: #035aa6;
  transition: 0.5s;
}


.hd_right .hd_info li:before{
  content: "";
  position: absolute;

}

.hd_right .hd_info li:nth-of-type(1):before{
  background:url(../images/common/icon_access.png);
  width: 11px;
  height: 14px;
  top: 5px;
  left: -17px;
}
.hd_right .hd_info li:nth-of-type(2):before{
  background:url(../images/common/icon_link.png);
  width: 16px;
  height: 8px;
  top: 8px;
  left: -22px;
}

.hd_right .hd_info li:nth-of-type(3):before{
  background:url(../images/common/icon_contact.png);
  width: 17px;
  height: 14px;
  top: 5px;
  left: -22px;
}

.hd_right .hd_info .lang .current {
  color: #035aa6;
}

/* 画面縮小時のヘッダー調整 */
@media (max-width:1360px) { 
  .hd h1 a {
    font-size: 1.5vw;
  }
  
  .hd h1 .en_title {
    font-size: 0.7vw;
  }
  
  .nav_list>li>a {
    font-size: 1vw!important;
  }
  
  .nav_list>li {
    margin-right: 10px!important;
  }
  
  .nav_list>li:last-child {
    margin-right: 0px!important;
  }
  
  .hd_bg .hd_con {
    padding: 0 10px!important;
  }
  
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	overflow: visible;
}
.nav_list {
	display: flex;
	width: 100%;
}
.nav_list>li {
	position: relative;
	z-index: 1000;
  margin-right: 30px;
  display: flex;
  align-self: center;
  overflow: hidden;
  padding-bottom: 30px;
}

.nav_list>li:last-child {
  margin-right: 0px;
}
.nav_list>li>a {
	display: block;
	text-align: center;
  font-size: 1.153rem;
  text-decoration: none;
  color: #000;
  transition: 0.5s;
  height: 100%;
}
.nav_list>li>a:hover,
.nav_list>li>a.current{
  color: #035aa6;
}
.nav_list>li:hover .nav_clist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}

.nav_list li a{
	animation: nav_active 1s ease 0s 1 alternate;
}
.nav_list li a:before {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to right, #035aa6, #004184);
  height: 2px;
  width: 100%;;
  bottom: 0;
  left: -100%;
  transition: 0.5s;
}

.nav_list li a:hover:before {
  left: 0;
  transition: 0.5s;
}



@-webkit-keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
.nav_clist {
	display: none;
	transition: All 0.5s ease;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0
}
.nav_clist>li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	position: relative
}
.nav_clist>li>a {
	background-color: #000;
	color: #fff;
	display: block;
	padding: 10px;
	text-decoration: none;
  
}
.nav_clist>li>a:hover, .nav_clist>li>a.current {
	opacity: 0.8;
}
.nav_clist>li:hover .nav_glist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}
.nav_glist {
	display: none;
	width: 100%;
	position: absolute;
	top: 0;
	left: 100%
}
.nav_glist>li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	border-left: 1px solid rgba(255, 255, 255, 0.4)
}
.nav_glist>li>a {
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	display: block;
	padding: 10px;
	text-decoration: none
}
.nav_glist>li>a:hover, .nav_glist>li>a.current {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}

.nav_list li a.current:before {
  left: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
}
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 0;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 840px;
}
.side {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 230px;
}
.side h3 {
	background-color: #EEE;
	color: #111;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 8px;
	text-align: center
}
.side_nav_list li a {
	background: url(../images/icon_arrow_gray.png) no-repeat left center;
	border-bottom: 1px solid #CCC;
	color: #111;
	display: block;
	padding: 12px 10px;
	text-decoration: none
}
.side_nav_list li a:hover, .side_nav_list li a.current {
	text-decoration: underline
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/

.ft_bg {
  background: #eef6fb;
}
.ft {
	padding: 30px 0;
  background: #035aa6;
}
.ft_copy {
	font-size: 0.8461rem;
	text-align: center;
  color: #fff;
}

.ft_info {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.ft_info li{
  margin-right: 20px;
  padding-right: 20px;
  font-size: 1.076rem;
  border-right: 1px solid #6bafd0;
  position: relative;
}

.ft_info li:last-child{
  margin-right:0;
  border: none;

}

.ft_info li a{
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

.ft_info li a:hover {
  color: #035aa6;
  transition: 0.5s;
}

.ft_info li:before{
  content: "";
  position: absolute;

}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #035aa6;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	right: 30px;
	position: fixed;
	width: 60px;
	z-index: 100;
  border: 2px solid #fff;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 8px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 7px;
	bottom: 0;
}
.pt_btn::after{
	height: 7px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_con_img_box {
display: flex;
justify-content: space-between;
}

.index_con_img_box  > * {
  width: calc( (100% - 1em ) / 3);
}

.index_con_img_box a {
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition:1s all;
}

.index_con_img_box a figure {
  position: relative;
  margin-right: 5px;
  overflow: hidden;
  
}

.index_con_img_box a:last-child figure {
  position: relative;
  margin-right: 0px;
}

.index_con_img_box a figure img {
  width: 100%;
  display: block;
  position: relative;
}

.index_con_img_box a img {
  transition:1s all;
}

.index_con_img_box a:hover img {
  transform:scale(1.2,1.2);
  transition:1s all;
}

.index_con_img_box a figure:before {
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(to right, #035aa6, #004184);
  z-index: 1;
}
.index_con_img_box a figure figcaption {
  background: #035aa6d9;
    text-align: center;
    position: absolute;
    width: 100%;
    font-weight: bold;
    clip-path: polygon(96% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
    height: 50px;
    display: flex;
    justify-content: center;
    bottom: -2px;
    font-size: 1.23rem;
    line-height: 1.5rem;
    align-items: center;
    padding-bottom: 2px;
}

.index_con_img_box a figure figcaption:before {
  content: "";
  background: url(../images/common/arrow.png);
  width: 16px;
  height: 15px;
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 2;
  display: block;
}


.index_main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 840px;
}


.index_side {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 330px;
}
.index_bnr_list li {
	margin-bottom: 4px
}
.index_bnr_list a {
	padding: 16px 16px 16px 42px;
	border: 1px solid #000000;
	border-radius: 3px;
	display: block;
	text-decoration: none;
	background: url(../images/icon_elink_black.png) no-repeat 16px center;
	color: #000000;
}
.index_bnr_list a:hover {
	background-color: #000;
	background-image: url(../images/icon_elink_white.png);
	color: #FFF
}

.index_news .index_news_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.index_news .index_news_title h2 {
  font-size: 2rem;
  line-height: 1em;
}

.index_news .index_news_title h2 span {
	margin-bottom: 0px;
  position: relative;
  font-size: 1.23rem;
  display: block;
  color: #035aa6;
  padding-left: 20px;
}

.index_news .index_news_title h2 span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: 12px;
  left: 0;
  background: linear-gradient(to right, #035aa6, #004184);
}

.index_news .index_news_title .index_news_list {
  font-size: 1.153rem;
  text-decoration: none;
  color: #035aa6;
  border-bottom: 1px solid #035aa6;
  height: fit-content;
  font-weight: bold;
  position: relative;
  margin-right: 35px;
}

.index_news .index_news_title .index_news_list:before {
  position: absolute;
  content: "";
  background: #035aa617;
  width: 50px;
  height: 50px;
  right: -35px;
  top: -10px;
  border-radius: 50%;
}

.index_news .index_news_title .index_news_list:after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow_blue.png);
  width: 12px;
  height: 11px;
  right: -17px;
  top: 8px;
  border-radius: 50%;
  transition: .5s;
}

.index_news .index_news_title .index_news_list:hover:after {
  right: -25px;
  transition: .5s;
}

.index_news_item:first-child {
	border-top: 1px solid #d9d9d9;  
  padding-top: 25px;
}

.index_news_item {
	border-bottom: 1px solid #d9d9d9;
	padding: 10px 0;
	width: 100%;
  font-size: 1.23rem;
  margin-top: 15px;
}


.index_news_item_date {
  color: #035aa6;
  margin-bottom: 5px;  
}

.index_news_item_ttl {
  width: 100%;
  margin-bottom: 15px;
}
.index_news_item_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_news_item_icon_new:before {
	content: "NEW"
}
.index_news_scrl {
	max-height: 820px;
	overflow: auto;
  padding-right: 10px;
}
.index_slider_bg {
border-bottom: 1px solid #fff;
}

.index_slider_bg .index_slider {
  position: relative;
}

.index_slider_bg .index_slider .index_slider_txt {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  width: 100%;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 50px;
  text-align: center;
  line-height: 0.5;
  text-shadow: 0 0 20px #000000;
  z-index: 10;
}

.index_slider_bg .index_slider .index_slider_txt span {
  font-size: 46px;
}

.index_slider_bg .index_slider .index_slider_txt span:first-of-type {
  margin-left: -0.5 em;
}

.index_slider_bg .index_slider img {
  width: 100%;
  max-height: 600px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: 'object-fit: cover!important;';
}


.index_movie .index_movie_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.index_movie .index_movie_title h2 {
  font-size: 2rem;
  line-height: 1em;
}

.index_movie .index_movie_title h2 span {
	margin-bottom: 0px;
  position: relative;
  font-size: 1.23rem;
  display: block;
  color: #035aa6;
  padding-left: 20px;
}

.index_movie .index_movie_title h2 span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: 12px;
  left: 0;
  background: linear-gradient(to right, #035aa6, #004184);
}

.index_movie .index_movie_title .index_movie_list {
  font-size: 1.153rem;
  text-decoration: none;
  color: #035aa6;
  border-bottom: 1px solid #035aa6;
  height: fit-content;
  font-weight: bold;
  position: relative;
  margin-right: 35px;
}

.index_movie .index_movie_title .index_movie_list:before {
  position: absolute;
  content: "";
  background: #035aa617;
  width: 50px;
  height: 50px;
  right: -35px;
  top: -10px;
  border-radius: 50%;
}

.index_movie .index_movie_title .index_movie_list:after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow_blue.png);
  width: 12px;
  height: 11px;
  right: -17px;
  top: 8px;
  border-radius: 50%;
  transition: .5s;
}

.index_movie .index_movie_title .index_movie_list:hover:after {
  right: -25px;
  transition: .5s;
}

.index_movie iframe {
  width: 320px;
  height: 180px;
}
/*理工学研究科は動画がないため上部のスペースを削除
.index_link {
  margin-top: 35px;
}*/

.index_link .index_link_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.index_link .index_link_title h2 {
  font-size: 2rem;
  line-height: 1em;
}

.index_link .index_link_title h2 span {
	margin-bottom: 0px;
  position: relative;
  font-size: 1.23rem;
  display: block;
  color: #035aa6;
  padding-left: 20px;
}

.index_link .index_link_title h2 span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: 12px;
  left: 0;
  background: linear-gradient(to right, #035aa6, #004184);
}

.index_link .index_link_title .index_link_list {
  font-size: 1.153rem;
  text-decoration: none;
  color: #035aa6;
  border-bottom: 1px solid #035aa6;
  height: fit-content;
  font-weight: bold;
  position: relative;
  margin-right: 35px;
}

.index_link .index_link_title .index_link_list:before {
  position: absolute;
  content: "";
  background: #035aa617;
  width: 50px;
  height: 50px;
  right: -35px;
  top: -10px;
  border-radius: 50%;
}

.index_link .index_link_title .index_link_list:after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow_blue.png);
  width: 12px;
  height: 11px;
  right: -17px;
  top: 8px;
  border-radius: 50%;
  transition: .5s;
}

.index_link .index_link_title .index_link_list:hover:after {
  right: -25px;
  transition: .5s;
}

.index_link ul li {
  margin-bottom: 15px;
  background: #eef6fb;
  border: 1px solid #b5d2e7;
  width: 320px;
  height: 70px;
  display: flex;
  align-items: center;
}
.index_link ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.538rem;
  line-height: 1.1em;
  margin-left: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.index_link ul li a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.index_link ul li a:before {
  position: absolute;
  content: "";
  background: #035aa617;
  width: 50px;
  height: 50px;
  right: -15px;
  top: 10px;
  border-radius: 50%;
}

.index_link ul li a:after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow_blue.png);
  width: 12px;
  height: 11px;
  right: 5px;
  top: 30px;
  border-radius: 50%;
  transition: .5s;
}

.index_link ul li a:hover:after {
  right: 0px;
  transition: .5s;
}


.index_link ul li a span.index_link_blue {
  color: #0477bf;
}
.index_link ul li a span.index_link--en_title {
  font-size: 0.923rem;
  display: block;
  color: #94d0ef;
}

.index_contact {
  margin-top: 35px;
}

.index_contact .index_contact_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.index_contact .index_contact_title:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  position: absolute;
  background: linear-gradient(to right, #035aa6, #004184);
  z-index: 1;
}

.index_contact .index_contact_title h2 {
  font-size: 2rem;
  line-height: 1em;
}

.index_contact .index_contact_title h2 span {
	margin-bottom: 0px;
  position: relative;
  font-size: 1.23rem;
  display: block;
  color: #035aa6;
  padding-left: 20px;
}

.index_contact .index_contact_title h2 span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: 12px;
  left: 0;
  background: linear-gradient(to right, #035aa6, #004184);
}

.index_contact .index_contact_title .index_contact_list {
  font-size: 1.153rem;
  text-decoration: none;
  color: #035aa6;
  border-bottom: 1px solid #035aa6;
  height: fit-content;
  font-weight: bold;
  position: relative;
  margin-right: 35px;
}

.index_contact .index_contact_title .index_contact_list:before {
  position: absolute;
  content: "";
  background: #035aa617;
  width: 50px;
  height: 50px;
  right: -35px;
  top: -10px;
  border-radius: 50%;
}

.index_contact .index_contact_title .index_contact_list:after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow_blue.png);
  width: 12px;
  height: 11px;
  right: -17px;
  top: 8px;
  border-radius: 50%;
  transition: .5s;
}

.index_contact .index_contact_title .index_contact_list:hover:after {
  right: -25px;
  transition: .5s;
}

.index_contact p{
  font-size: 1.23rem;
  margin-top: 30px;
}


.index_contact a.index_contact_blue {
  color: #0477bf;
  text-decoration: none;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*-- 
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con_img {
  width: 100%;
  position: relative;
}
.con_bg .con_img img {
  width: 100%;
}

.con_bg .con_img figcaption {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 1.384rem;
  color: #fff;
  font-weight: bold;
}

.con_bg .con_img figcaption span {
  display: block;
  font-size: 2.307rem;
  position: relative;
}

.con_bg .con_img figcaption span:before {
  content: "";
  width: 30px;
  height: 3px;
  position: absolute;
  background: linear-gradient(to right, #035aa6, #004184);
  bottom: -10px;
  left: 30px;
}

.con_bg .con {
  padding: 80px 0;
}

.mcon {
	word-wrap: break-word
}

.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1 {
	font-size: 2rem;
	margin-bottom: 30px;
}

.mcon h1 span {
  font-size: 1.23rem;
  display: block;
  color: #035aa6;
  position: relative;
  padding-left: 20px;
}

.mcon h1 span:before {
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  background: linear-gradient(to right, #035aa6, #004184);
  bottom: 10px;
  left: 0px;
}

.mcon h2 {
  font-size: 1.38rem;
  background: #eef6fb;
  border-bottom: 1px solid #b5d2e7;
	margin-bottom: 20px;
	margin-top: 20px;
  padding: 10px 20px;
  position: relative;
}

.mcon h2:before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  background: linear-gradient(#004184, #035aa6);
  top: 0;
  left: 0px;
}
.mcon h3 {
	font-size: 16px;
	margin-bottom: 8px;
	margin-top: 16px;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	font-size: 1.1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em;
  font-size: 1.23rem;
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em;
  font-size: 1.23rem;
}
.mcon p {
	margin-bottom: 1em;
  font-size: 1.23rem;
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em;
  font-size: 1.23rem;
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em;
  font-size: 1.23rem;
}


























.btn01 {
  display: inline-block;
  width: 544px;
  text-align: center;
  border: 1px solid #1790BF;
  font-size: 16px;
  color: #1790BF;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 4px;
  transition: .4s;
}

.btn01:hover {
  background-color: #1790BF;
  border-color: #1790BF;
  color: #FFF;
}
.btn {
  display: inline-block;
  width: 260px;
  text-align: center;
  border: 1px solid #1790BF;
  font-size: 16px;
  color: #1790BF;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: .4s;
}

.btn:hover {
  background-color: #1790BF;
  border-color: #1790BF;
  color: #FFF;
}
html{scroll-behavior: smooth;}


.table_member_box{
	width:840px;
}

/*pc向け電話不可機能*/
a[href^="tel:"] {
    pointer-events: none;
}



