@charset "utf-8";
/* CSS Document */

/* =========================================================
============================================================
============================================================
Swidge.com
============================================================
============================================================
========================================================= */





:root {
  --main-color: #124e6a;
  --sub-color: #46b1e1;
}






/*------------------------------------------------------------
|
| Common
|
------------------------------------------------------------*/
.sp {/* PCレイアウトでSPを消す*/
    display: none;
}
.pc {/* PCレイアウトでPCを表示*/
    display: block;
}
.parent{/* 上下センター*/
	display: flex;
	align-items: center;
}
.col{
	display: flex;
}
.col-between{
    display: inline-flex;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1040px) {
.sp {display: block;}
.pc {display: none;}
.col{display: block;}
.col-between{display: block;margin-left: auto;margin-right: auto;text-align: center;}
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    word-wrap: break-word;/* 英字折り返し */
    overflow-wrap: break-word;
    height: 100vh;
    color: #454F5B;
    background-attachment: fixed;
    background-color: #F6F8F8;
}

		
img{/* 画像の隙間をなくす */
    vertical-align: top;
}

a img:hover  {
	opacity: 0.5 ;
	transition: 0.8s ;
		}
a.ovimg{
	background-color:#FFF;
	display:inline-block;
	}
a.ovimg:hover img,
a.ovimg:active img{
    -moz-opacity: 0.7;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
a img {/* リンク画像のボーダーを消す*/
	border: none;
}
a {/* FireFoxで点線を消す */
	outline: none;
}
.float-l {/* 回り込み左 */
	float: left;
}
.float-r {/* 回り込み右 */
	float: right;
}
.clear-both {/* 回り込み解除 */
	clear: both;
}
.center {/* 配置－中央 */
	text-align: center;
}
.right {/* 配置－右 */
	text-align: right;
}
/* 上下のマージン */
.mt20{ margin-top:20px; }
.mt30{ margin-top:30px; }
.mt40{ margin-top:40px; }
.mt50{ margin-top:50px; }
.mt60{ margin-top:60px; }
.mt70{ margin-top:70px; }
.mt80{ margin-top:80px; }
.mb20{ margin-bottom:20px; }
.mb30{ margin-bottom:30px; }
.mb40{ margin-bottom:40px; }
.mb50{ margin-bottom:50px; }
.mb60{ margin-bottom:60px; }
.mb70{ margin-bottom:70px; }
.mb80{ margin-bottom:80px; }


.sp_left_1 {/* 左にマージン */
	margin-left: 1rem;
}
.al-mid {/* 上下のセンタリング */
	display: table-cell;
	vertical-align: middle;
}
.img_50 img {/* 上下のセンタリング */
	width: 100%;
}



/*==========================================================
  リンクアイコン
========================================================= */

.windowicon-black {
    margin-right: 2px;
    padding-right: 1.5rem;
    background-repeat: no-repeat;
    background-position: 8px 2px;
    background-image: url(../images/w-icon-black.svg);
    background-size: 18px 24px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    height: 24px;
    width: 24px;
    display: inline-block;
}

.windowicon-white {
    margin-right: 2px;
    padding-right: 1.5rem;
    background-repeat: no-repeat;
    background-position: 8px 2px;
    background-image: url(../images/w-icon-white.svg);
    background-size: 18px 24px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    height: 24px;
    width: 24px;
    display: inline-block;
}

.pdficon {
    margin-right: 2px;
    padding-right: 1.5rem;
    background-repeat: no-repeat;
    background-position: 8px 2px;
    background-image: url(../images/icon_pdf.svg);
    background-size: 18px 32px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    height: 32px;
    width: 32px;
    display: inline-block;
}



/*------------------------------------------------------------
|
| Header
|
------------------------------------------------------------*/
header {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    position: fixed;
    top: 0px;
    z-index: 1000;
    background-color: #822642;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 3px 9px;
    background-image: url(../images/header_back.jpg);
    background-size: auto 100%;
    background-repeat: repeat-x;
}

header .inner {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.logo {
}

h1 {
    background-repeat: no-repeat;
    overflow: hidden;
    width: 560px;
    height: 84px;
    background-size: 560px auto;
    text-indent: -9999px;
    font-size: 0px;
    background-image: url(../images/header_title.svg);
    text-indent: -9999px;
    margin: 18px 0px;
}

@media screen and (max-width: 1040px) {
header {height: 60px;position: fixed;}
header .inner {width: 90%;}
h1 {width: 600px;height: 40px;background-size: 370px auto;margin-top: 12px;}
}
@media screen and (max-width: 600px) {
h1 {background-size: 290px auto;margin-top: 18px;}
}









/*------------------------------------------------------------
|
| footer
|
------------------------------------------------------------*/
footer {
  width: 100%;
  bottom: 0px;
  margin: 0px;
  background-color: var(--main-color);
  padding-top: 40px;
    background-image: url(../images/footer_back.jpg);
    background-size: auto 100%;
    background-repeat: repeat-x;
}
footer .inner {
  display: flex;
  width: 90%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  color: #2C2C2C;
}
footer .inner a {
  color: #fff;
}
.footer_logo img {
  max-width: 320px;
  width: 90%;
}
.footer_right {
  display: flex;
  width: 90%;
  margin-left: 40px;
}
.footer_unei {
  margin-right: 32px; 
  margin-bottom: 16px;
}
.jimukyoku_unei_tite {
  background-color: #fff;
  color: var(--main-color);
  padding: 6px 16px;
  display: inline;
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: 8px;
  margin-bottom: 12px;
}
.footer_copyright {
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  display: block;
  text-align: center;
  margin: 0px auto;
  padding-bottom: 40px;
  color: #fff;
}



#page-top a {
    position: fixed;
    background-color: var(--main-color);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    line-height: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    color: #fff;
    right: 10px;
    bottom: 50px;
    width: 60px;
    height : 60px;
    padding: 28px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
}
#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}
#page-top a:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1rem;
    top:-10px;
	left:25px;
    margin:auto;
    width: .5rem;
    height: .5rem;
    border-top: .15em solid #FFF;
    border-right: .15em solid #FFF;
    transform: rotate(315deg);
    transition:.3s;
}
#page-top a:hover:after{
    top:-14px;
}
@media screen and (max-width: 1040px) {
footer .inner {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
	padding: 40px 0px 0px 0px;
}
.footer_jimukyoku,.footer_unei{
    width: 100%;
    padding-bottom: 10px;
}
.footer_right {
  display: block;
  margin-left: 0px;
  margin-top: 16px;
}
}







/*------------------------------------------------------------
|
|  hamburger
|
------------------------------------------------------------*/
.hamburger {
    display: none;
    width: 60px;
    height: 60px;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
    background-color: var(--main-color);
    padding-top: 24px;
    z-index: 9999!important;
}
.hamburger .bar {
    width: 40px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    display: block;
    position: absolute;
    transition: all 0.3s;
}
.hamburger::after {
    font-weight: 200;
    font-style: normal;
    color: #fff;
    display: block;
    content: "MENU";
    font-size: 10px;
    margin-top: 20px;
}
.checkbox:checked ~ .hamburger::after {
    font-weight: 200;
    font-style: normal;
     color: #fff;
    display: block;
    content: "CLOSE";
    font-size: 10px;
    margin-top: 20px;
}
.hamburger .bar-top {
    transform: translate(0, -12px);
}
.hamburger .bar-bottom {
    transform: translate(0, 12px);
}
.checkbox:checked ~ .hamburger .bar-middle {
    opacity: 0;
}
.checkbox:checked ~ .hamburger .bar-top {
    transform: translate(0, 0) rotate(45deg);
}
.checkbox:checked ~ .hamburger .bar-bottom {
    transform: translate(0, 0) rotate(-45deg);
}
.checkbox {
    display: none;
}

@media screen and (max-width: 1040px) {
.hamburger {display: flex;top: 0;right: 0;position: fixed;}
.checkbox:checked ~ .nav-menu {left: 0;}
}










/*------------------------------------------------------------
|
|  navi
|
------------------------------------------------------------*/
.navi-area {
    background-color: #FFFFFF;
    width: 240px;
    padding: 16px 12px 48px 12px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 3px 9px;
}
.nav-menu {
    padding-bottom: 24px;
}
nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: block;
}
nav ul li a {
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.0rem;
    line-height: 1.5rem;
    width: 208px;
    text-decoration: none;
    color: #525252;
    padding: 12px 30px 12px 12px;
    display: block;
    border-bottom: 1px solid #e8e8e8;
}
nav ul li a:hover {
    color: var(--sub-color);
}
nav ul li :visited {
    color: #525252;
}
nav ul li a:visited:hover {
    color: var(--sub-color);
}
nav ul li .ls {
    letter-spacing: 0.1rem;
}
.nav-menu .none {
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.0rem;
    line-height: 1.rem;
    text-decoration: none;
    color: #e8e8e8;
    padding: 12px 0px 12px 12px;
    display: block;
    border-bottom: 1px solid #e8e8e8;
}

@media screen and (max-width: 1040px) {
.navi-area {
    width: 0px;
    padding: 0px;
    overflow: scroll;
}
.nav-menu {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    background-color: var(--main-color);
    opacity: 1;
    color: #fff;
    top: 60px;
    left: 100%;
    transition: all 0.5s;
    z-index: 100;
  }
nav ul li a {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    color: #fff;
}
nav ul li a:visited {
    color: #fff;
}
.nav-menu .none {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    color: #6C88A5;
}
}
/* =========================================================
  GlobaoNavi-Arrow
========================================================= */
.nav-arrow {
    line-height: 1.25;
    text-decoration: none;
    position: relative;
    transition: .3s;
}
.nav-arrow:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1rem;
    right:8%;
    margin:auto;
    width: .5rem;
    height: .5rem;
    border-top: .1rem solid var(--sub-color);
    border-right: .1rem solid var(--sub-color);
    transform: rotate(45deg);
    transition:.3s;
}

.nav-arrow:hover:after{
	border-top: .1rem solid #e8e8e8;
    border-right: .1rem solid #e8e8e8;
    right:4%;
}



/* =========================================================
  GlobaoNavi-Banner
========================================================= */
.nav-banner {
    border: 1px solid #333;
    margin: 12px 0px;
    padding: 0px;
    background-color: #F1F1F1;
}
.nav-banner img {
    width: 100%;
    padding: 0px;
}

@media screen and (max-width: 1040px) {
.nav-banner {width: 80%;margin: 12px auto;}
}








/*------------------------------------------------------------
|
|  All
|
------------------------------------------------------------*/
.wraper {
    display: flex;
    width: 1080px;
    padding-top: 130px;
    margin-left: auto;
    margin-right: auto;
}
main {
    width: 840px;
}
main .inner{

    margin: 48px 0px 64px 48px;

}

@media screen and (max-width: 1040px) {
.wraper {display: block;padding-top: 110px;width: 100%;}
main {width: 90%;margin-left: auto;margin-right: auto;margin-top: -30px;}
main .inner{ margin: 32px auto;padding:0px 0px 32px 0px;}
}










/*------------------------------------------------------------
|
|  Fonts
|
------------------------------------------------------------*/




.txt_just {
    text-align:justify;
}
.weight500 {
    font-weight:500
} 
.weight700 {
    font-weight:700
} 
a {
	color:var(--sub-color);
	text-decoration: underline;
	font-weight: normal;
	transition: .3s;
}
a:visited {
    color:var(--sub-color);
}
a:hover {
    color: #F99300;
    font-weight: normal;
    text-decoration: none;
    transition: .3s;
}
h2 {
    font-weight: 500;
    font-size: 2.2rem;
    letter-spacing: 0.3rem;
    color: #fff;
    text-align: center;
    position: relative;
    height: 110px;
    padding-top: 32px;
    background-image: linear-gradient(0deg, #124e6a, #46b1e1);
}

h3 {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    border-bottom: 1px solid #C9D0D6;
    color: var(--main-color);
    line-height: 2.8rem;
    letter-spacing: 0.1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.1rem;
    margin-top: 2.0rem;
    margin-bottom: 1.2rem;
}

h3:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20%;
    height: 2px;
    content: '';
    background-color:var(--sub-color);
}
h4 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #5d6e5c;
    font-weight: bold;
    margin-top: 1.4rem;
    margin-bottom: 1.2rem;
    border-left: 5px solid var(--main-color);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 1.5rem;
    background-color: #F3F3F3;
}
h5 {
	font-size: 1.0rem;
	font-weight: bold;
	color: #346321;
	margin-bottom: 0px;
}

h6 {
    font-size: 1.0rem;
    color: #FFFFFF;
    line-height: 1.6rem;
    margin-top: 15px;
    padding: 6px;
    background-color: #519043;
    margin-bottom: 15px;
}
.txt_size_sss {/* 極小小の文字サイズ */
	font-size: 0.6rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	padding-top: 1em;
}
.txt_size_ss {/* 極小の文字サイズ */
	font-size: 0.72rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
}
.txt_size_s {/* 小の文字サイズ */
	font-size: 0.85rem;
	line-height: 1.5rem;
}
.txt_size_m {/* 中の文字サイズ */
	font-size: 1.0rem;
	line-height: 2.0rem;
	letter-spacing: 0.15rem;
}
.txt_size_l {/* 大の文字サイズ */
	font-size: 1.2rem;
	line-height: 2.2rem;
	letter-spacing: 0.15rem;
}
.txt_size_ll {/* 大の文字サイズ */
	font-size: 1.4rem;
	line-height: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.15rem;
}

.txt_li li {/* リスト項目 */
    line-height: 1.8rem;
    text-indent: 0rem;
    padding-left: rem;
    margin-left: 2rem;
}
.txt_li li {/* リスト項目 */
    list-style-type: disc;
}
.mi {/* 冒頭にスペース */
	text-indent: 1rem;
}
.mt {/* 2行目からスペース */
	line-height: 1.8rem;
	text-indent: -1rem;
	padding-left: 1rem;
}
.ls {/* レタースペース */
letter-spacing: 0.3rem;
}
.txt_ol {
    font-size: 1.0rem;
    line-height: 2.0rem;
    padding-top: 0.8rem;
    margin-left: 1rem;
}
.txt_ol li {
    margin-bottom: 0.5rem;
}

.txt_color_orange {
	color: #e78230;
}
.txt_color_white {
	margin: 5px;
	color: #FFFFFF;
}
.txt_color_gray {
	color: #B3B3B3;
}
.txt_color_green {
	color: #347e3b;
}
.txt_color_blue{
	color: #0073ad;
}
.txt_day {
	font-size: 1.3rem;
	line-height: 2.0rem;
	padding-top: 1rem;
	padding-left: 0.4rem;
	color: #FF6E00;
	font-weight: bold;
}

.txt-marker {
    text-decoration: underline;
    text-decoration-thickness: 0.6rem;
    text-decoration-color: rgba(255, 218, 0, 0.4);
    text-underline-offset: -0.4rem;
    text-decoration-skip-ink: none;
}


/*==========================================================
  二重取り消し線
========================================================= */
.del {
    background-image: linear-gradient(transparent 0.5em, #fe3464 0, #fe3464 calc(0.5em + 1px), transparent 0, transparent calc(0.5em + 3px), #fe3464 0, #fe3464 calc(0.5em + 4px), transparent 0);
    color: #888;
    text-decoration: none;
}
@media screen and (max-width: 1040px) {
	

h2 {height: auto;padding: 26px 0;margin-bottom: 10px;}
}



/*==========================================================
  tableのcss
========================================================= */

.table_wrap {/* 横スクロールさせる場合はdivでくくる */
  overflow-x: scroll;
}
.line_table {
  width: 100%;
  min-width: 600px;
	margin: 0px;
	border: 1px solid #D0D0D0;
	border-collapse: collapse;
	background-color: #D0D0D0;  /* 背景色指定 */
}
.line_table th {
    padding: 15px;
    margin: 0px;
    border: 1px solid #D0D0D0;
    background-color: #53657f;  /* 背景色指定 */
    color: #F8F5E7;
}
.line_table td {
	padding: 15px;
	border: 1px solid #D0D0D0;
	background-color: #FFF;  /* 背景色指定 */
}
/*==========================================================
  table(プログラム用)のcss
========================================================= */
.line_table-program {
	margin: 0px;
	border: 1px solid #D0D0D0;
	border-collapse: collapse;
	background-color: #D0D0D0;  /* 背景色指定 */
}
.line_table-program th {
    padding: 4px;
    margin: 0px;
    border: 1px solid #D0D0D0;
    background-color: #E4EDE3;  /* 背景色指定 */
    text-align: left;
}
.line_table-program td {
    padding: 4px;
    border: 1px solid #D0D0D0;
    background-color: #FFF;  /* 背景色指定 */
    text-align: left;
}




/*------------------------------------------------------------
|
| LAYOUT
|
------------------------------------------------------------*/



/*==========================================================
お問い合わせBOX
========================================================= */
.contact_box {
    background-color: #E5E5E5;
    border-radius: 18px;
    padding: 18px;
}

/*==========================================================
  注意事項の枠BOX
========================================================= */
.color-box01 {
    background-color: #EFEEE3;
    border-radius: 0px;
    padding: 18px;
    border: 4px solid #E88747;
}

/*==========================================================
  注意事項の枠BOX
========================================================= */
.color-box02 {
    background-color: #EFEEE3;
    border-radius: 0px;
    padding: 18px;
    border: 4px solid #DDCFC6;
}


/*==========================================================
  注意事項の枠BOX
========================================================= */
.color-box03 {
    background-color: #F1F1F1;
    border-radius: 8px;
    padding-bottom: 16px;
}

/*==========================================================
トップページNewsArea 
========================================================= */
#news_box {
    padding: 0px;
    height: 180px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;

}
#news_box ul {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding: 0px;
}
#news_box li {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 9rem;
    margin-bottom: 10px;
    font-size: 0.9rem;
    list-style: none;
    letter-spacing: 0.1rem;
    background-repeat: no-repeat;
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 200%;
    background-position: 0px 0px;
    text-indent: -9rem;
    width: 530px;
}
#news_box strong {
    font-weight: normal;
    color: #FFF;
    background-color: var(--main-color);
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 15px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 13px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 1040px) {
#news_box {
    width: 80%;
	}
#news_box li {
    width: 95%;
}

#news_box {
    width: 100%;
	}
#news_box ul {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0rem;
    padding: 0px;
}
#news_box li {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
    font-size: 0.9rem;
    list-style: none;
    letter-spacing: 0.1rem;
    background-repeat: no-repeat;
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 200%;
    background-position: 0px 0px;
    text-indent: 0rem;
    width: 96%;
}
#news_box strong {
	display: table;
	text-indent: 1rem;
	margin-left: 0px;
	margin-bottom: 2px;
	font-size: 0.9em;
	line-height: 1.0rem;
	padding-top: 0.5rem;
	padding-left: 0rem;
}
}


/*==========================================================
プロモーション動画
========================================================= */
#pv-area{
    padding: 3px;
    background-color: #282828;
    margin-top: 30px;
    text-align: center;
}
video {
  max-width: 100%;
}



/*==========================================================
会長挨拶
========================================================= */

.greeting-col {
	display: flex;  
    flex-direction: row-reverse;

}
.photo-box {
    width: 250px;
    margin: 0px 0px 30px 0px;

}
.photo-txt {
    width: 480px;
    text-align: rig;
    margin-top: 30px;
    margin-right: 30px;
    line-height: 1.2em;
    font-size: 1.1em;

}

@media screen and (max-width: 1040px) {
.greeting-col {
	display: block;  
}
.photo-box {
    width: 400px;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    text-align: center;
}
.photo-txt {
    width: 90%;
    margin-top: 30px;
}
}
@media screen and (max-width: 768px) {
.photo-box {
    width: 90%;

}
}


/*==========================================================
 プログラム
========================================================= */

.program_shingebox {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.program_title {
    font-size: 1.2rem;
    line-height: 2.2rem;
    color: #0F5916;
    font-weight: bold;
}

.program_name {
    font-size: 1.1rem;
	letter-spacing: 0.15rem;
    margin-left: 2rem;
    line-height: 1.8rem;
    font-weight: bold;
}
.program_affiliation {
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    margin-left: 1.4rem;
    padding-bottom: 1.4rem;
}

/*==========================================================
  座長・演者の皆様へ
========================================================= */
.col-area {
    margin-left: 2rem;
}
.col-coi {
    display: flex;
    margin: 16px 0px;
}
.col-coi img {
    width: 90%;
    margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
.col-coi {
    display: block;
    margin: 16px 0px;
}
}





/*==========================================================
  アクセス
========================================================= */
#google_map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
#google_map iframe,
#google_map object,
#google_map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}









/*------------------------------------------------------------
|
| BUTTON
|
------------------------------------------------------------*/
.btn-wrap {
    border-radius: 16px;
    padding: 24px 0;
    background-color: #ECECEC;
}
/*==========================================================
  BTN-large
========================================================= */
.btn-l {
    display: block;
    width: 80%;
    padding: 16px 20px;
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1.6;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}
/* 中央揃え */
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* SVGアイコン（外部ファイル） */
.btn-text::before {
    content: "";
    display: inline-block;
    width: 2em;
    height: 2em;
    background-image: url(../images/arrow.svg); /* ←ここにSVGパス */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/*==========================================================
  BTN-small
========================================================= */
.btn-s {
    display: block;
    width: 60%;
    margin: 0 auto 16px;
    padding: 12px;
    box-sizing: border-box;
    font-size: 1.0rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1.6;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

/* 背景色 */
.btn-orange { background: #f08a24; }
.btn-green  { background: #4caf50; }
.btn-blue   { background: #2196f3; }
/* hover */
.btn-l:hover,.btn-s:hover{
    opacity: 0.8;
    color: #FFFFFF;
}
/* visit */
.btn-l:visited,.btn-s:visited{
    opacity: 0.8;
    color: #FFFFFF;
}
.btn-l + .btn-l{
  margin-top: 20px;
}
/*------------------------------------------------------------
|
| ICON
|
------------------------------------------------------------*/

/*==========================================================
  リンクアイコン
========================================================= */
.windowicon {
	margin-right: 2px;
	padding-right: 2.5rem;
	background: url(../images/w-icon.svg) 100% 0.1em no-repeat;
	background-size: 18px 12px;
	margin-left: 0px;
	margin-bottom: 24px;
	margin-top: 0px;
	padding-top: 0px;
}
.windowicon-black {
    margin-right: 2px;
    padding-right: 2.5rem;
    background-repeat: no-repeat;
    background-position: 20px 10px;
    background-image: url(../images/icon_window-bk.svg);
    background-size: 20px 24px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    height: 32px;
    width: 32px;
    display: inline-block;
}
.downloadicon {
    margin-right: 2px;
    padding-right: 30px;
    background: url(../images/d-icon.png) 100% 0.2em no-repeat;
    background-size: 15px 12px;
}
.icon_pdf {
    margin-left: 2rem;
    padding-right: 2rem;
    background-repeat: no-repeat;
    background-position: 100% no-repeat;
    background-image: url(../images/icon_pdf.svg);
    background-size: 30px 30px;
    height: 30px;
    display: inline-block;
    margin-left: 12px;
}
.icon_word {
    margin-left: 2rem;
    padding-right: 2rem;
	background-repeat: no-repeat;
	background-position: 100% no-repeat;
	background-image: url(../images/icon_word.svg);
	background-size: 30px 30px;
	height: 30px;
	display: inline-block;
}
.icon_ptt {
    margin-left: 2rem;
    padding-right: 2rem;
    background-repeat: no-repeat;
    background-position: 100% no-repeat;
    background-image: url(../images/icon_ppt.svg);
    background-size: 30px 30px;
    height: 30px;
    display: inline-block;
}