@charset "utf-8";
/* CSS Document */

/* =========================================================
============================================================
============================================================
Swidge.com
============================================================
============================================================
========================================================= */



/*------------------------------------------------------------
|
| 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;
}
.col-space-evenly{
    display: inline-flex;
    display: flex;
    justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
.sp {
    display: block;
}

.pc {
    display: none;
}
.col{
    display: block;
 }
.col-between{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
 }
.col-space-evenly{
	display: block;
}
}


body {
    font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
background: rgb(180,203,220);
background: linear-gradient(338deg, rgba(180,203,220,1) 0%, rgba(241,246,251,1) 92%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    word-wrap: break-word;/* 英字折り返し */
    overflow-wrap: break-word;
    background-size: cover;
}

		
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;
}
.sp_t10 {/* 上にマージン */
	margin-top: 10px;
}
.sp_t20 {/* 上にマージン */
	margin-top: 20px;
}
.sp_t30 {/* 上にマージン */
	margin-top: 30px;
}
.sp_t40 {/* 上にマージン */
	margin-top: 40px;
}
.s_b180 {/* 上にマージン */
	margin-bottom:180px;
}
.sp_b20 {/* 下にマージン */
	margin-bottom: 20px;
}
.sp_b30 {/* 下にマージン */
	margin-bottom: 30px;
}
.sp_b40 {/* 下にマージン */
	margin-bottom: 40px;
}
.sp_b80 {/* 下にマージン */
	margin-bottom: 80px;
}
.sp_tb20 {/* 上下にマージン */
	margin-bottom: 20px;
	margin-top: 20px;
}
.sp_tb30 {/* 上下にマージン */
	margin-bottom: 30px;
	margin-top: 30px;
}
.sp_tb40 {/* 上下にマージン */
	margin-bottom: 40px;
	margin-top: 40px;
}
.sp_left_1 {/* 左にマージン */
	margin-left: 1rem;
}
.al-mid {/* 上下のセンタリング */
	display: table-cell;
	vertical-align: middle;
}
.img_100 img {
	width: 100%;
    margin: auto;
}
.img_80 img  {
	width: 80%;
    margin: auto;
}
.img_60 img {
    width: 60%;
    margin: auto;
}
.img_50 img {
    width: 60%;
    margin: auto;
}


#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%;
}







/*------------------------------------------------------------
|
| Header
|
------------------------------------------------------------*/
header {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    position: fixed;
    top: 0px;
    z-index: 1000;
    background-color: #fff;
    background-image: url(../images/head_footer_back.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1280px auto;
    box-shadow: 0px 0px 10px 2px #A5A5A5;
    -webkit-box-shadow: 0px 0px 10px 2px #000;
}

header .inner {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.logo {
}

h1 {
    background-repeat: no-repeat;
    overflow: hidden;
    width: 700px;
    height: 84px;
    background-size: 700px auto;
    text-indent: -9999px;
    font-size: 0px;
    background-image: url(../images/header_title.svg);
    text-indent: -9999px;
    margin-top: 32px;
}

@media screen and (max-width: 768px) {
header {height: 60px;position: fixed;background-color: #999;}
header .inner {width: 90%;}
h1 {width: 600px;height: 40px;background-size: 500px auto;margin-top: 12px;}
}
@media screen and (max-width: 600px) {
h1 {background-size: 290px auto;margin-top: 18px;}
}



.logo-en h1 {
    background-repeat: no-repeat;
    overflow: hidden;
    width: 700px;
    height: 84px;
    background-size: 500px auto;
    text-indent: -9999px;
    font-size: 0px;
    background-image: url(../images/header_title_en.svg);
    text-indent: -9999px;
    margin-top: 22px;
}

@media screen and (max-width: 768px) {
.logo-en h1 {width: 600px;height: 40px;background-size: 320px auto;margin-top: 12px;}
}

/*------------------------------------------------------------
|
| footer
|
------------------------------------------------------------*/
footer {
    width: 100%;
    bottom: 0px;
    padding: 0px 0px 32px 0px;
    margin: 32px 0px 0px 0px;
    background-image: url(../images/head_footer_back.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1080px auto;
    background-color: #fff;
}
footer .inner {
	width: 1008px;
    display:flex;
	margin-right: auto;
	margin-left: auto;
	padding: 64px 0px 56px 0px;
	color: #2C2C2C;
}
footer .inner a {
    color: #744E62;
}
.footer_images {
    display: block;
    margin-left: auto;
    margin-top: -90px;
    margin-right: auto;
    width: 1120px;
    text-align: right;
}
.footer_jimukyoku {
    width: 60%;
    margin-bottom: 15px;
    border-right-width: 0px;
    padding-bottom: 30px;
}
.footer_unei {
    width: 40%;
    margin-bottom: 15px;
}
.jimukyoku_unei_tite {
    background-color: #004DA0;
    color: #ffffff;
    padding: 6px 16px;
    display: inline;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 12px;
}
.footer_copyright {
    width: 956px;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


#page-top a {
    position: fixed;
    background: #004DA0;
    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: 768px) {
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;
}

}







/*------------------------------------------------------------
|
|  hamburger
|
------------------------------------------------------------*/
.hamburger {
    display: none;
    width: 60px;
    height: 60px;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
    background-color: #004DA0;
    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-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: #fff;
    display: block;
    content: "MENU";
    font-size: 10px;
    margin-top: 20px;
}
.checkbox:checked ~ .hamburger::after {
    font-family: "Poppins", sans-serif;
    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: 768px) {
.hamburger {display: flex;top: 0;right: 0;position: fixed;}
.checkbox:checked ~ .nav-menu {left: 0;}
}










/*------------------------------------------------------------
|
|  navi
|
------------------------------------------------------------*/
.navi-area {
    background-color: #004DA0;
    width: 240px;
    padding: 16px 16px 48px 16px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.nav-menu {
    padding-bottom: 24px;
}
nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: block;
}
nav ul li a {
    font-family: 'Arimo', sans-serif;
    overflow-wrap: break-word; 
    font-size: 1.0rem;
    letter-spacing: 0.0rem;
    line-height: 1.5rem;
    width: 208px;  
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding: 12px 24px;
    display: block;
    border-bottom: 1px solid #4375b2;
}
nav ul li a:hover {
    color: #ffec66;
}
nav ul li a:visited {
    color: #fff;
}
.nav-menu .none {
    font-family: 'Arimo', sans-serif;
    font-size: 1.0rem;
    letter-spacing: 0.0rem;
    line-height: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    color: #7E90B2;
    padding: 12px 0px 12px 12px;
    display: block;
    border-bottom: 1px solid #4375b2;
}

@media screen and (max-width: 768px) {
.navi-area {
    width: 0px;
    padding: 0px;
    overflow: scroll;
}
.nav-menu {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    background-color: #005bac;
    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%;
}

.nav-menu .none {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}
}
/* =========================================================
  GlobaoNavi-Arrow
========================================================= */
.nav-arrow {
    line-height: 1.25;
    text-decoration: none;
    position: relative;
    transition: .3s;
}
.nav-arrow:before{
    content:"";
    position:absolute;
    top:0;
    bottom:.1rem;
    left:0%;
    margin:auto;
    width: .5rem;
    height: .5rem;
    border-top: .1rem solid #fff;
    border-right: .1rem solid #fff;
    transform: rotate(45deg);
}
.nav-arrow:hover:before{
	border-top: .1rem solid #ffec66;
    border-right: .1rem solid #ffec66;
    left:2%;
    transition:.3s;
}

.nav-arrow .span {
    background-image: url(../images/icon_word.svg);
}

@media screen and (max-width: 768px) {
.nav-arrow:before{
    left:10%;
}
.nav-arrow:hover:before{
    left:11%;
}
}
/* =========================================================
  NEW-MARK
========================================================= */
.nav-new {
    background-color: #FB8B00;
    color: #FFFFFF;
    font-size: 12px;
    display: inline-block;
    padding: 0px 12px;
    margin-left: 40px;
    text-align: center;
    border: 1px solid #FFF;
    border-radius: 20px;
    position: absolute;
    right: 0px;
}

@media screen and (max-width: 768px) {
.nav-new {
    right: 40px;
}
}
/* =========================================================
  GlobaoNavi-Banner
========================================================= */
.nav-banner {
    margin: 12px 0px;
    padding: 0px;
    color: #FFFFFF;
}

.nav-banner img {
    border: 1px solid #333;
    background-color: #FFFFFF;
    width: 100%;
    padding: 0px;
    margin: 16px 0px;
}

@media screen and (max-width: 768px) {
.nav-banner {width: 60%;margin: 12px auto;
}
}






/*==========================================================
 nav-jipv
========================================================= */
.nav-jipv {
    display: inline-block;
    width: 100%;
    position: relative;
    background-color: #DEE5ED; /* 背景色 */
    padding: 0.8rem;
    font-weight: bold;
    color: #004DA0; /* 文字色 */
    text-decoration: none;
    transition-duration: 0.3s;
    border-radius: 8px;
    margin: auto;
    font-size: 0.8rem;
    line-height: 1.0rem;
    margin: 12px 0px 0px 0px;
}

.nav-jipv:visited{
    color: #fff; /* 文字色 */
}
/* マウスオーバーした際のデザイン */
.nav-jipv:hover {
    background: #004DA0; /* 背景色 */
    color: #fff; /* 文字色 */
}


@media screen and (max-width: 768px) {

.nav-jipv {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 27px;
}

}




/*------------------------------------------------------------
|
|  All
|
------------------------------------------------------------*/
.wraper {
    display: flex;
    width: 90%;
    max-width:  1240px;
    padding-top: 140px;
    margin-left: auto;
    margin-right: auto;
}
main {
    background-color: #FFF;
    width: calc(100% - 240px);
}
main .inner{
    width: 90%;
    margin: 48px 5% 64px 5%;
}

@media screen and (max-width: 768px) {
.wraper {display: block;padding-top: 110px;width: 100%;}
main {width: 90%;margin-left: auto;margin-right: auto;margin-top: -30px;}
main .inner{ width: 90%;margin: 32px auto;padding: 0px 0px 32px 0px;background-color: #FFFFFF;}
}

video {
  max-width: 100%;
}


/*==========================================================
  問い合わせBOX
========================================================= */
.contact_box {
	padding: 15px;
	background-color: #EDEDED;
	border-radius: 8px;
	border: 1px solid #FFFFFF;
}
/*==========================================================
  注意のBOX
========================================================= */
.caution-box01{
    background-color: #F9EBEB;
    padding: 24px;
    border: 3px solid #D50003;
}
/*==========================================================
  注意のBOX2
========================================================= */
.caution-box02 {
	padding: 15px;
	background-color: #EDE4E4;
	border-radius: 8px;
	border: 1px solid #A6322B;
}

/*==========================================================
  注意のBOX3
========================================================= */
.caution-box03 {
    padding: 15px;
    background-color: #EFF1F2;
    border-radius: 8px;
    border: 3px solid #D0E2EB;
    text-align: center;
}
/*==========================================================
  ボタンをくくるBOX
========================================================= */
.btn-box01{
    padding: 48px;
    background-color: #F2E4E4;
    border-radius: 8px;
    border: 4px solid #E3B2B3;
}


/*------------------------------------------------------------
|
|  Fonts
|
------------------------------------------------------------*/
.txt_just {
    text-align:justify;
}
.weight500 {
    font-weight:500
} 
.weight700 {
    font-weight:700
} 
a {
	color: #45bdcd;
	text-decoration: underline;
	font-weight: normal;
	transition: .3s;
}
a:visited {
    color: #45bdcd;
}
a:hover {
    color: #D6C9D0;
    font-weight: normal;
    text-decoration: none;
    transition: .3s;
}
h2 {
    font-size: 1.9rem;
	font-weight: 500;
    color: #fff;
	letter-spacing: 0.15rem;
    text-align: center;
    position: relative;
    height: 200px;
    padding-top: 80px;
    margin-bottom: 72px;
    background-image: url(../images/h2.jpg);
    background-repeat: no-repeat;
}

h3 {
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	border-bottom: 1px solid #D6C9D0;
	color: #004DA0;
	line-height: 2.8rem;
	letter-spacing: 0.1rem;
	padding-top: 0.5rem;
	margin-top: 2.0rem;
}

h3:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20%;
    height: 3px;
    content: '';
    background-color: #ffec66;
}
h4 {
	font-size: 1.1rem;
	line-height: 1.5rem;
	color: #292929;
	font-weight: bold;
	margin-top: 1.4rem;
	margin-bottom: 0.2rem;
	border-left: 3px solid #005bac;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	padding-left: 1.5rem;
	background-color: #ECECEC;
}
h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #004DA0;
    margin-top: 1.8rem;
    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;
	padding-top: 1rem;

}
.txt_size_s {/* 小の文字サイズ */
	font-size: 0.8rem;
	line-height: 1.5rem;
	padding-top: 1rem;

}
.txt_size_m {/* 中の文字サイズ */
	font-size: 1.0rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_size_l {/* 大の文字サイズ */
	font-size: 1.2rem;
	line-height: 2.2rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_size_ll {/* 大の文字サイズ */
	font-size: 1.4rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.15rem;
}
.txt_size_m {/* 中の文字サイズ */
	font-size: 1.0rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_li {
    line-height: 1.8rem;
    text-indent: 0rem;
    margin-left: 1rem!important;
    list-style-type: disc!important;
}
.mi {/* 冒頭にスペース */
	text-indent: 1rem;
}
.mt {/* 2行目からスペース */
	line-height: 1.8rem;
	text-indent: -1rem;
	padding-left: 1rem;
}
.txt_ol {
    font-size: 1.0rem;
    line-height: 2.0rem;
    padding-top: 0.8rem;
    margin-left: 1rem;
}
.txt_ol li {
	padding-top: 0.8rem;
    margin-bottom: 0.5rem;
	list-style-type: none;
	text-indent: -1.7rem;
	padding-left: 1.7rem;
}
.txt_color_red {
	color: #F72608;
}
.txt_color_orange {
	color: #F78608;
}
.txt_color_white {
	color: #FFFFFF;
}
.txt_color_gray {
	color: #B3B3B3;
}
.txt_color_blue{
	color: #005bac;
}
.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;
}
sup {
    font-size: 1.0rem;
    vertical-align: top;
    line-height: 1.6rem;
}
/*  二重取り消し線====== */
.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;
}

/*==========================================================
  英字の場合のCSS
========================================================= */

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.en_txt_size_s {/* 小の文字サイズ */
	font-size: 0.8rem;
	line-height: 1.5rem;
	padding-top: 1rem;

}
.en_txt_size_m {/* 中の文字サイズ */
	font-size: 0.9rem;
	line-height: 1.7rem;
	padding-top: 0.8rem;
	letter-spacing: 0.rem;
}
.en_txt_size_l {/* 大の文字サイズ */
	font-size: 1.1rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	letter-spacing: 0.rem;
}

@media screen and (max-width: 768px) {
	

h2 {height: 116px;padding-top: 40px;margin-bottom: 10px;font-size: 1.4rem;}
}









/*------------------------------------------------------------
|
| BUTTON
|
------------------------------------------------------------*/

/*==========================================================
  BTN-large
========================================================= */
.btn-large {
    display: inline-block;
    width: 100%;
    max-width: 100%; /* ボタン幅 */
    position: relative;
    background-color: #004DA0; /* 背景色 */
    border: 2px solid #004DA0;
    padding: 2rem 2em;
    font-weight: bold;
    color: #fff; /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 16px;
    margin: auto;
    font-size: 1.2rem;

}
.btn-large:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff; /* 矢印の色 */
    border-right: 2px solid #fff; /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25%;
    margin-top: -6px;
    transition:.3s;
}
.btn-large:visited{
    color: #fff; /* 文字色 */
}
/* マウスオーバーした際のデザイン */
.btn-large:hover {
    background: #fff; /* 背景色 */
    color: #004DA0; /* 文字色 */

}

.btn-large:hover:before {
    border-top: 2px solid #004DA0; /* 矢印の色 */
    border-right: 2px solid #004DA0; /* 矢印の色 */
    left: 27%;
}
.btn-large-none {
    display: inline-block;
    width: 100%;
    max-width: 100%; /* ボタン幅 */
    position: relative;
    background-color: #CBCACA; /* 背景色 */
    border: 2px solid #CBCACA;
    padding: 2rem 2em;
    font-weight: bold;
    color: #999; /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 16px;
    margin: auto;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
.btn-large:before {

    left: 5%;

}
}



/*==========================================================
  BTN-small-幅狭い
========================================================= */
.btn-small-narrow {
    display: inline-block;
    width: 60%;
    position: relative;
    background-color: #004DA0; /* 背景色 */
    border: 2px solid #004DA0;
    padding: 0.8rem;
    font-weight: bold;
    color: #fff; /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 8px;
    margin: auto;
    font-size: 1.0rem;

}
.btn-small-narrow:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff; /* 矢印の色 */
    border-right: 2px solid #fff; /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 8%;
    margin-top: -4px;
    transition:.3s;
}
.btn-small-narrow:visited{
    color: #fff; /* 文字色 */
}
/* マウスオーバーした際のデザイン */
.btn-small-narrow:hover {
    background: #fff; /* 背景色 */
    color: #004DA0; /* 文字色 */
}

.btn-small-narrow:hover:before {
    border-top: 2px solid #004DA0; /* 矢印の色 */
    border-right: 2px solid #004DA0; /* 矢印の色 */
    left: 10%;
}


@media screen and (max-width: 768px) {
.btn-small-narrow:before {

    left: 5%;

}
}



/*==========================================================
  BTN-small
========================================================= */
.btn-small {
    display: inline-block;
    width: 100%;
    position: relative;
    background-color: #004DA0; /* 背景色 */
    border: 2px solid #004DA0;
    padding: 0.8rem;
    font-weight: bold;
    color: #fff; /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 8px;
    margin: auto;
    font-size: 1.0rem;

}
.btn-small:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff; /* 矢印の色 */
    border-right: 2px solid #fff; /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 8%;
    margin-top: -4px;
    transition:.3s;
}
.btn-small:visited{
    color: #fff; /* 文字色 */
}
/* マウスオーバーした際のデザイン */
.btn-small:hover {
    background: #fff; /* 背景色 */
    color: #004DA0; /* 文字色 */
}

.btn-small:hover:before {
    border-top: 2px solid #004DA0; /* 矢印の色 */
    border-right: 2px solid #004DA0; /* 矢印の色 */
    left: 10%;
}
.btn_small-none {
	height: auto;
	top: 0px;
	padding-top: 1.0rem;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 1.0rem;
	text-align: center;
	position: relative;
	border-radius: 5px;
	transition: .3s;
	line-height: 1.2rem;
	font-size: 1.0rem;
	letter-spacing: 0.04rem;
	background-color: #CBCACA;
	color: #949494;
}

@media screen and (max-width: 768px) {
.btn-small:before {

    left: 5%;

}
}




/*==========================================================
  BTN-Lang
========================================================= */


.btn-lang-area img {
    margin-top: 24px;
}

.btn-lang {
    display: inline-block;
    width: 100%;
    position: relative;
    background-color: #fff; /* 背景色 */
    border: 2px solid #fff;
    padding: 0.8rem;
    font-weight: bold;
    color: #004DA0; /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 8px;
    margin: auto;
    font-size: 1.0rem;

}
.btn-lang:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #004DA0; /* 矢印の色 */
    border-right: 2px solid #004DA0; /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 8%;
    margin-top: -4px;
    transition:.3s;
}
.btn-lang:visited{
    color: #fff; /* 文字色 */
}
/* マウスオーバーした際のデザイン */
.btn-lang:hover {
    background: #004DA0; /* 背景色 */
    color: #fff; /* 文字色 */
}

.btn-lang:hover:before {
    border-top: 2px solid #fff; /* 矢印の色 */
    border-right: 2px solid #fff; /* 矢印の色 */
    left: 10%;
}

@media screen and (max-width: 768px) {

.btn-lang-area {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 27px;
}

.btn-lang-area img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 27px;
}

}






/*------------------------------------------------------------
|
| LAYOUT
|
------------------------------------------------------------*/

/*==========================================================
トップページNewsArea 
========================================================= */
#news_box {
    padding: 0px;
    height: 190px;
    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: #004DA0;
    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: 768px) {
#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;
}
}



/*==========================================================
企業バナーエリア
========================================================= */
.banner-area  {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        margin-top: 20px;      
}
.banner-area li  {
        list-style: none;
}
@media screen and (max-width: 768px) {
.banner-area  {
        display: block;
        row-gap: 20px;
}
.banner-area li  {
        margin-bottom: 20px;
}
}




/*==========================================================
プロモーション動画
========================================================= */
#pv-area{
    padding: 3px;
    background-color: #282828;
    margin-top: 30px;
    text-align: center;
}
video {
  max-width: 100%;
}



/*==========================================================
会長挨拶
========================================================= */

.greeting-col {
	display: flex;  
}
.en-greeting-col {
    display: flex;
    margin: 0px auto;
    width: 80%;
}
.photo-box {
	width: 220px;
    margin: 0px 60px 30px 0px;
}
.en-photo-box {
	width: 220px;
    margin: 60px 60px 30px 0px;
}
.photo-txt {
    width: 400px;
    text-align: left;
    margin-top: 90px;
    line-height: 1.2em;
    font-size: 1.1em;
}
.en-photo-txt {
    width: 400px;
    text-align: right;
    margin-top: 90px;
    line-height: 1.2em;
    font-size: 1.1em;
}
@media screen and (max-width: 768px) {
.greeting-col {
	display: block;  
}
.en-greeting-col {
	display: block;  
}
.photo-box {
    width: 90%;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    text-align: center;
}
.en-photo-box {
	width: 80%;
    margin:60px auto 0px;
}
.photo-txt {
    width: 90%;
    margin-top: 30px;
}
.en-photo-txt {
    width: 90%;
    margin-top: 30px;
}
}

/*==========================================================
  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: #81A0B7;
    color: #F8F5E7;
}
.line_table td {
	padding: 15px;
	border: 1px solid #D0D0D0;
	background-color: #FFF; 
}
.line_table .category {
    background-color: #EBEDEE;
    font-weight: bold;
    text-align: center;
}
.line_table .subcategory {
    background-color: #F6F9EF;
}
/*==========================================================
  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;
}




/*==========================================================
演題登録
========================================================= */
.abstract_box {
    padding: 15px 48px;
    background-color: #EDEDED;
    border-radius: 8px;
    border: 1px solid #FFFFFF;
}
.abstract_smalltitle {
    font-size: 1.0rem;
    color: #FFFFFF;
    line-height: 1.6rem;
    margin-top: 15px;
    padding: 12px;
    background-color: #004DA0;
    margin-bottom: 0px;
}
.abstract_session_title {
    font-size: 1.2rem;
	color: #004DA0;
    line-height: 1.6rem;
    margin-top: 15px;
    padding: 12px;
    margin-bottom: 0px;
    font-weight: bold;
	border-bottom: 1px solid #D6C9D0;
}

/*==========================================================
  COIボタン
========================================================= */
a.btn_coi {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: auto;
    margin: 24px 0px;
    padding: 2rem;
    font-weight: bold;
    background-color: #004DA0; /* 背景色 */
    border: 2px solid #004DA0;
    color: #fff;
    border-radius: 16px;
    position: relative;
    transition: 0.5s;
    font-size: 1.0rem;
}

a.btn_coi:hover {
    background: #fff; /* 背景色 */
    color: #004DA0; /* 文字色 */

}



/*==========================================================
  開閉用ボタン
========================================================= */
.syushi_gaiyo {
    clear: both;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 7px;
    padding-right: 30px;
}
.syushi_btn {
    display: block;
    margin: 0 0 12px 0;
    padding-top: 8px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 8px;
    line-height: 1.8em;
    color : #FFFFFF;
    cursor : pointer;
    font-weight: normal;
    font-size: 0.9em;
    background-color: #E98900;
    text-align: center;
    width: 230px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.syushi_gaiyo:hover, .syushi_gaiyo.active {
    opacity: 0.6;
}
.syushi_openbox {
    font-size: 0.9rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    background-color: #f0f8ff;
    padding: 0.5rem;
    display: none;
}






/*==========================================================
  演題登録用ボタン
========================================================= */
a.btn_a {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 300px;
    margin: 24px 0px;
    padding: 2rem;
    font-weight: bold;
    background: #27acd9;
    color: #fff;
    border-radius: 16px;
    position: relative;
    transition: 0.5s;
    font-size: 1.3rem;
}
a.btn_a::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
a.btn_a:hover {
	background: #44c6f2;
	color: #fff;
}
a.btn_b {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 300px;
    margin: 24px 0px;
    padding: 2rem;
    font-weight: bold;
    background-color: #EA9F00;
    color: #fff;
    border-radius: 16px;
    position: relative;
    transition: 0.5s;
    font-size: 1.3rem;
}
a.btn_b::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
a.btn_b:hover {
    background-color: #F7D92A;
    color: #fff;
}
.btn_none {
    width: 280px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.04rem;
    line-height: 4.6rem;
    background-color: #B0B0B0;
    display: block;
    left: 0;
    height: 100%;
    border-radius: 16px;
    display: block;
    margin: 32px auto;
}

@media screen and (max-width: 960px) {
.abstract_box .btn_area {
    display: block;
    text-align: center;
}
a.btn_a {
    width: 100%;
}
a.btn_b {
    width: 100%;
}
.btn_none {
    width: auto;
}
}



/*==========================================================
プログラム
========================================================= */
.program_li {
     display: flex;
     flex-wrap:wrap;
}
.program_li li {
    list-style-type: none;

}
.program_li li a {
    display: block;
    padding: 0.5rem;
    background-color: #004DA0;
    margin: 8px;
    font-size: 0.8rem;
    color: #FFFFFF;
    text-decoration: none;
}

h3 span {
    font-size: 1.0rem;
    margin:0rem 0rem 0rem 2rem;
}

.program_col {
    display: flex;
    margin-bottom: 16px;
}
.program_title {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1rem 0rem 0rem 0rem;
    color: #001644;
    line-height: 2.2rem;
}
.program_title_loe {
    background-color: #63AEE4;
    color: #FEFEFE;
    font-size: 0.8rem;
    line-height: 0.8rem;
    margin: 1.2rem 0rem 0rem 0rem;
    padding: 0.6rem;
    text-align: center;
    border-radius: 4px;
    letter-spacing: 0.2rem;
    margin-right: 1rem;
    height: 2rem;
}
.program_name {
    margin-bottom: 0.6rem;
    margin-left: 5rem;
}
.program_name span {
    color: #555555;
    font-size: 0.8rem;
    margin-left: 1rem;
}
.program_col .zachou_tab{
    font-weight: normal;
    color: #FFF;
    background-color: #005bac;
    padding-top: 3px;
    padding-right: 10px;
    padding-left: 10px;
    display: inline-block;
    font-size: 0.9rem;
    line-height: 2rem;
    margin-right: 12px;
    width: 64px;
    text-align: center;
}
.program_col .enjya_tab{
    font-weight: normal;
    color: #FFF;
    background-color: #90ADCB;
    padding-top: 3px;
    padding-right: 10px;
    padding-left: 10px;
    display: inline-block;
    font-size: 0.9rem;
    line-height: 2rem;
    margin-right: 12px;
    width: 64px;
    text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
.program_col {
    display: block;
}
}


/*==========================================================
  リンクアイコン
========================================================= */
.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/w-icon-black.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;
}

/*==========================================================
international_session
========================================================= */
.international_session .txt_box{
    width: 580px;
}
.international_session .poster_box{
    width: 320px;
    border: 1px solid #B0B0B0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}
.nternational_session-btn{
    width: 280px;
    margin: 60px auto;
}
.v-WIN-scientific-Award img{
    width: 500px;
}
@media screen and (max-width: 767px) {
.international_session .txt_box{
    width: 100%;
}
.international_session .poster_box{
    width: 60%;
}
.v-WIN-scientific-Award img{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
}





/*==========================================================
エクスカーション
========================================================= */

.excursion-box {
  display: flex;
    width: 50%;
  align-items: center;
}

/*==========================================================
  BTN-small
========================================================= */
.btn-excursion {
    display: inline-block;
    width: 400px;
    position: relative;
    background-color: #004DA0; /* 背景色 */
    border: 2px solid #004DA0;
    padding: 0.8rem;
    font-weight: bold;
    color: #fff; /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 8px;
    margin: auto;
    font-size: 1.0rem;

}
.btn-excursion:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff; /* 矢印の色 */
    border-right: 2px solid #fff; /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 8%;
    margin-top: -4px;
    transition:.3s;
}
.btn-excursion:visited{
    color: #fff; /* 文字色 */
}
/* マウスオーバーした際のデザイン */
.btn-excursion:hover {
    background: #fff; /* 背景色 */
    color: #004DA0; /* 文字色 */
}

.btn-excursion:hover:before {
    border-top: 2px solid #004DA0; /* 矢印の色 */
    border-right: 2px solid #004DA0; /* 矢印の色 */
    left: 10%;
}

@media screen and (max-width: 1180px) {
.excursion-box {
  display: block;
    width: 100%;
}
.btn-excursion {
    width: 100%;
    margin: 32px 0px 0px 0px;
 }
  }

/*==========================================================
  モーダル
========================================================= */
button {
  display: inline-block; /* ボタンを横並びにする */
  border: none; /* 枠線をなくす */
  border-radius: 5px; /* 角丸をつける */
  padding: 10px 32px; /* ボタンの内側の余白 */
  margin: 0px auto; /* ボタン同士の余白 */
  background-color: #E98900; /* ボタンの背景色 */
  color: white; /* ボタンの文字色 */
  text-align: center; /* ボタンのテキストを中央揃えにする */
  text-decoration: none; /* テキストに下線をつけない */
  font-size: 15px; /* テキストのフォントサイズ */
  cursor: pointer; /* マウスポインタを変更する */
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
     animation-duration: 6s; 
 }
  .modal-box {
    background-color: #fff;
    margin: 10% auto;
    padding: 50px 50px 30px 50px;
    max-width: 800px;
    width: 90%;
    border-radius: 10px;
    animation-name: modalopen;
    animation-duration: 6s;
    position: relative;
 }
    .modalClose{
      position: absolute;
      top: 10px;
      right: 10px;
 }
@media screen and (max-width: 767px) {
  .modal-box {
    background-color: #fff;
    margin:20% 5% 20% 5%;
    padding: 50px 5% 30px 5%;
    max-width: 90%;
    width: 80%;

 }
  }