@charset "UTF-8";
/*
Theme Name: wp-jaled
*/

/* CSS Document */
* {
	list-style: none;
	box-sizing: border-box;
}
.w-10px {
	width: 10px;
}
.w-20px {
	width: 20px;
}
.w-30px {
	width: 30px;
}
.w-40px {
	width: 40px;
}
.w-50px {
	width: 50px;
}
.w-60px {
	width: 60px;
}
.w-70px {
	width: 70px;
}
.w-80px {
	width: 80px;
}
.w-90px {
	width: 90px;
}
.w-100px {
	width: 100px;
}
.v-none {
	visibility: hidden;
}
.top-header {
	position: fixed;
    width: 100%;
    top: 0;
    background: white;
    z-index: 1000;
}
.red{
	color: #c30d23;
}
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
.none{
	display: none!important;
}
.pc-none {
	display: none;
}
p {
	line-height: 2;
}
ol, ul {
    /*padding-left: 0rem!important;*/
}
button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}
.white{
	color: white;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	transition: 1s;
	opacity: 0.7;
	cursor: pointer;
	color: inherit;
}
.opa-bt:hover {
	transition: 0.5s;
	cursor: pointer;
	opacity: 0.5;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	color: #000000;
	font-style: normal;
	font-size: 2rem;
	line-height: 1.8;
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 400;
}
input {
		max-width: 100%!important;
	}
.font-gothic_shuei {
	font-family: "dnp-shuei-gothic-kin-std", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font-mincho {
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader img{
	width: 10%;
	height: auto;
}
.pc { display:block; }
.md { display:none; }
.sp { display:none; }
.mt-10{
	margin-top: 10px;
}
.mt-20{
	margin-top: 20px;
}
.mt-30{
	margin-top: 30px;
}
.mt-40{
	margin-top: 40px;
}
.mt-50{
	margin-top: 50px;
}
.mt-60{
	margin-top: 60px;
}
.mb-10{
	margin-bottom: 10px;
}
.mb-20{
	margin-bottom: 20px;
}
.mb-30{
	margin-bottom: 30px;
}
.A-contentBox {
	margin:80px auto;
}
.hidden {
	visibility: hidden;
}
.pt-s {
	background: url(../img/web-bk@2x.png)repeat;
	background-size: 10%;
	opacity: 50;
}
/* ローディング */
.bl_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
	z-index: 1000;
}
.bl_loading.loaded {
  opacity: 0!important;
  visibility: hidden!important;
}
.bl_loadingCircle {
	width: 100px;
	height: auto;
}


@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* スクロールナビ */
.fixed{
	position: fixed;
	top: 0;
	left: 0;
}
/* ここまで */
.logo {
    font-size: 1.8rem;
    align-items: center;
    height: auto;
}
.logo-50 {
    width: 70px;
    height: auto;
}
.search-box {
    width: 250px;
	height: 36.5px;
	margin-right: 20px;
}
.kyokaishi-search-box{
	width: 100%;
	height: 36.5px;
}
.kyokaishi-search-box .form-control ,.kyokaishi-search-box .btn{
    font-size: 1.8rem;
	height: 36.5px;
}
.search-box .form-control ,.search-box .btn{
    font-size: 1.8rem;
	height: 36.5px;
}
.topnav-left_area {
    position: absolute;
    top: 20px;
    left: 20px;
}
.topnav-right_area {
    position: absolute;
	top: 0;
    right: 0;
}
.nyukai_bt, .seikaiin_bt {
    width: 150px;
    font-size: 1.8rem;
    color: white;
    height: 50px;
}
.nyukai_bt {
    background-color: black;
}
.seikaiin_bt {
    background-color: #04b2d9;
}
/* 横に背景が流れるボタン */
.btn-left{
	/*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	padding: 5px 15px;
    border: #37bef0 2px solid;
    border-radius: 100px;
    font-size: 1.7rem;
	background: white;
	overflow: hidden;
}
/*ボタン内spanの形状*/
.btn-left span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

.btn-left:hover span{
	color:#fff;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#37bef0;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

/*ここまで*/

/* ドロップダウンメニュー */
.menu_button:hover::after{
	transform: translatex(5px);
	transition:0.5s;
}
.drop{
	background-color: #0367a6;
	position: absolute;
	width: 105%;
	left: -5%;
	display: none;
	border-top: #eee 2px solid;
	z-index: 100;
	text-align: left;
}
.drop .row  {
	padding-left: 7%;
	width: 80%;
}
.drop ul{
	padding: 20px;
}
.drop ul li{
	padding: 5px;
	border-bottom: 1px solid #3e8bbb;
	position: relative;
}
.drop ul li img{
	width: 20px;
	height: auto;
	position: absolute;
	right: 0;
}
.ganv .nav-link:hover{
	border-bottom: #04b2d9 2px solid;
}
.menu-parent .menu-child {
  box-sizing: border-box;
}
.menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
.menu-child ul li:hover  {
	transform:translatex(5px);
	transition:0.5s;
  }

/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
.menu-parent input{
	display: none;
}
/* --------- */
.gnav-area {
    position: relative;
    top: 60px;
	padding: 10px 0 10px 0;
    background-color: white;
}
.gnav{
	font-size: 1.8rem;
}
.gnav .nav-link{
	color: #000000!important;
}
.gnav .nav-item{
	border-color: #b5b5b6;
	border-left-width: 1px;
    border-right-width: 1px;
    border-top: 0;
    border-left-style: solid;
    overflow: hidden;
    line-height: 1.3;
	width: 100%;
	color: white;
}

.gnav .nav-link:hover{
	background: #04b2d9;
	color: white!important;
}
.hover{
	background: #04b2d9;
	color: white!important;
}
.gnav .nav-item:first-child{
	border-left: none;
}
.menu-ttl_inner {
    font-size: 2rem;
    padding-left: 15%;
    padding-top: 10px;
    margin-bottom: -10px;
}
.burger-btn {
    display: none;
}

/*************
スライダー************/
.slick {
	margin-top: 70px;
}

/* スライド周りの基本スタイル */
.slideobject{
  	margin: 0;
  	padding: 0;
	transform: translateY(80px);
}
.slick-slider img {
  	width: 100%;
  	height: 100%;
}
.slick-dots li button:before{
	font-size: 60px!important;
}
.slideobject .slick-dots {
    opacity: 0.5;
    bottom: 25px;
}
.main-content{
    bottom: 25px;
    margin-top: 180px;
}
.top-content_box {
    margin: 150px auto 70px auto;
}
.deco-eng {
    font-size: 7rem;
    color: #e6e6e6;
    display: block;
    z-index: -100;
    line-height: 1em;
    position: absolute;
    opacity: 0.8;
}
.top-about {
    position: relative;
    top: 30px;
}
.about-text_box {
    width: 70%;
}
.about-bt {
    float: right;
}
.deco-img-left img {
    position: absolute;
    z-index: -100;
    width: 45%;
    left: 0px;
	top: -250px;
}
.deco-img-right img {
    position: absolute;
    z-index: -100;
    width: 15%;
	top: -50px;
	right: 5%;
}
.eng-about {
    top: -60px;
    left: 30%;
}
.TOP h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.deco-atimg-left {
    position: absolute;
    width: 20%;
	left: 0px;
	z-index: -100;
	opacity: 0.6;
	display: none;
}
.deco-atimg-right{
    position: absolute;
    width: 15%;
	right: 3%;
	top: 50%;
    z-index: -100;
	opacity: 0.6;
}
.at-content_box {
    width: 70%;
}
.at-img_box {
    position: relative;
}
.at-img_box span {
    position: absolute;
    bottom: 0;
    display: block;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    background: white;
    font-size: 1.8rem;
}
.content-bt img {
    width: 20px;
    margin-left: 10px;
}
.content-bt {
    width: auto;
	border-radius: 100px;
	isolation: isolate;
}
.eng-at {
    top: -50px;
    left: 5%;
}
.top-attempt {
	background: rgb(4,178,217);
    background: linear-gradient(0deg, rgba(4,178,217,1) 41%, rgba(255,255,255,1) 100%);
	z-index: 200;
	position:relative;	
	padding-bottom: 50px;
	margin-top: 200px;
}
.at-img_box {
    margin-top: 15px;
}
.more-box {
    margin-top: 30px;
    background: url(../img/common/more-bk.png);
    border-radius: 10px;
    color: white;
    position: relative;
}
.more-text {
    position: absolute;
    font-size: 6rem;
    writing-mode: vertical-rl;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
	z-index: 100;
}
.more-box_inner img {
    border-radius: 10px;
    width: 100%;
}
.more-box_inner {
    padding: 20px 20px 0px 38px;
	margin-left: 38px;
	display: flex;
}
.car-auto div  {
    margin-right: 10px;
}
.car-auto .slick-dots {
    text-align: right;
    bottom: -15px;
    right: 5%;
}
.car-auto .next-arrow{
	width: 50px;
    height: auto;
    position: absolute;
    right: 1%;
    top: 45%;
}
.more-text_inner {
    font-size: 1.8rem;
}
.info-tab {
    font-size: 1.6rem;
}
.info-content_box {
    position: relative;
}
.info-tab .nav-link  {
    background-color: transparent;
	padding: 0.5rem 2rem;
}
.top-info {
    width: 70%;
    position: relative;
}
.eng-info {
    top: -50px;
}
.top-info_thum {
    width: 100%;
    height: auto;
	object-fit: contain;
    padding-right: 10px;
}
.top-info_ttl {
    border-bottom: 1px solid #898989;
    padding-bottom: 5px;
}
.info-content_box_inner {
    font-size: 1.6rem;
    margin: 20px 0;
    line-height: 1.5em;
}
.top-info_date {
    font-size: 1.5rem;
}
.info-content_box_inner p {
    padding-top: 5px;
}
.info-bt {
    bottom: -50px;
    right: 0;
    position: absolute;
}
.top-youtube {
    background: url("../img/common/top-youtube_img.png")no-repeat;
    padding: 100px 50px;
    width: 100%;
    outline: 1px solid white;
    outline-offset: -20px;
}
.top-youtube_inner {
    width: 80%;
    position: relative;
}
.top-youtube h3  {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    left: 20px;
    width: auto;
    margin-bottom: 20px;
}
.top-youtube_txtbox {
	position: relative;
	padding-left: 15px;
}
.top-youtube .top-youtube-ttl_deco {
    position: absolute;
    width: 80px;
    height: auto;
    top: -30px;
}
.youtube-bt {
    position: absolute;
    right: 0;
	bottom: -50px;
}
.top-shibu {
    position: relative;
    background-repeat: repeat-x;
    background-image: url("../img/common/top-shibu-ichiran_img.png");
    background-size: contain;
    background-position: center;
}
.eng-shibu {
    top: -70px;
    left: 20%;
}
.top-shibu_list li {
    border: 1px solid;
    width: 200px;
    margin-right: 10px;
}
.top-shibu_list {
    margin-top: 50px;
}
.top-shibu_box {
    width: 60%;
    height: auto;
}
#my-map-container {
    top: -100px;
}
.svg-map-tips {
    margin-top: -300px;
}
.top-contact {
    position: relative;
    background-color: #0367a6;
	margin-top: -100px;
	margin-bottom: 0px;
	padding: 100px 0;
}
.eng-contact {
    z-index: 100;
    top: -70px;
}
.top-contact-box_inner{
	width: 70%;
	height: auto;
}
.twt-box_inner {
	height: 800px;
    overflow: auto;
    width: 100%;
    border-radius: 10px;
}
.go-form p{
    color: white;
    font-size: 1.6rem;
}
.form-box {
    position: relative;
    margin-top: 100px;
	padding-left: 40px;
}
.form-box button {
    width: 350px;
}
.go-form button {
	background-color: white;
    border-radius: 5px;
    padding: 20px 40px;
}
.go-form button img {
	vertical-align: middle;
    width: 20px;
    height: auto;
}
.top-address {
    font-size: 1.6rem;
}
.footer {
    padding: 5px 0;
    background-color: #000;
    font-size: 1.4rem;
	clear: both;
}
/* トップへ戻るボタン */
.page_top_btn {
	 display: none;
    position: fixed;
    bottom: 50px;
    right: 10px;
    font-weight: bold;
    padding: 0.7em;
    text-align: center;
    transition: 0.3s;
    z-index: 800;
}
.page_top_btn img {
    width: 50px;
    height: auto;
}

/* マウスオーバー時 */
.page_top_btn:hover {
  opacity: 0.5;
}
.kaso-ttl_box {
    height: 150px;
    width: 100%;
    background: url("../img/common/kaso-ttl_back.png")no-repeat;
    background-size: cover;
    position: relative;
    align-items: center;
    font-size: 3rem;
}
.kaso-ttl_box p {
    left: 15%;
    position: absolute;
}
.kaso-pankuzu_area {
    position: absolute;
    top: 200px;
}
.pankuzu {
    margin: 0 0 10px 10px;
    font-size: 1.6rem;
}
.pankuzu-list{
    display: inline;
  }
  .pankuzu-list li a{
    color: inherit;
    text-decoration: none;
  }
  .pankuzu-list li + li:before{
    content: ">";
    margin:.5em;
  }
.yakuin-box {
}
.kaso-content_box {
    margin-top: 500px;
    margin-bottom: 200px;
}
.kaso-content-box_lib {
    margin-top: 650px;
    margin-bottom: 200px;
}
.kaso-ttl-inner_nomal {
    font-size: 2.6rem;
}
.yakuin-date  {
    display: flex;
    justify-content: flex-end;
    font-size: 1.6rem;
}
.yakuin-cat {
    background-color: #0367a6;
    width: fit-content;
    color: white;
    border-radius: 20px;
    padding: 3px 40px;
    margin-bottom: 15px;
    margin-top: 40px;
    clear: both;
}
.yakuin-box_inner ul li img {
    margin: 10px 0;
    width: 240px;
    height: auto;
	display: none;
}
.yakuin-box_inner ul li {
    display: block;
    margin-right: 20px;
    float: left;
}
.yakuin-box_inner ul {
    border-bottom: 1px dotted #595757;
    padding-bottom: 20px;
}
.yakuin-box_inner ul li:last-child {
    margin-right: 0px;
}
.yakuin-box_inner ul li span   {
    display: block;
}
.info-sidecat_ttl {
    background-color: #048abf;
    color: white;
    border-left: 4px solid #04b2d9;
}
.kyokaishi-sidecat_ttl {
    background-color: #048abf;
    color: white;
    border-left: 4px solid #04b2d9;
	border-bottom: 1px solid ;
	padding: 5px;
}
.regular-sidecat_ttl {
	background-color: #048abf;
    color: white;
    border-left: 4px solid #04b2d9;
	padding: 5px;
}
.kyokaishi-left_box .info-arrow,.info-left_box .info-arrow {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}
.info-left_box ul {
    padding: 20px!important;
    background-color: #ebf5fc;
	font-size: 1.8rem;
	line-height: 0;
}
.kyokaishi-left_box ul {
	padding: 0 0 10px 15px!important;
    background-color: #048abf;
	font-size: 1.8rem;
	border-left: 4px solid #04b2d9;
	color: white
}
.info-left_box ul li {
    margin-bottom: 15px;
	line-height:1.5;
}
.info-left_box ul li:last-of-type {
    margin-bottom: 0px!important;
}
.info-sidearc_ttl {
    background-color: #04b2d9;
    color: white;
    border-left: 4px solid #048abf;
}
.kyokaishi-sidearc_ttl {
    background-color: #04b2d9;
    color: white;
    border-left: 4px solid #048abf;
}
.info-right-box_inner dt {
    padding: 0px 10px;
    background-color: #ebf5fc;
    font-size: 1.7rem;
}
.info-right-box_inner {
    padding-left: 15px;
}
.info-right-box_inner dl dd  {
    display: flex;
}
.info-right-box_inner dl dd p {
    margin-left: 10px;
	margin-top: 10px;
	width: 80%;
}
.info-right-box_inner .info-thum_box {
    width: 500px;
}
.info-right-box_inner .info-thum_box .info-thum {
    width: 100%;
	height: 225px;
    object-fit: cover;
}
.info-bt_more img {
    width: 15px;
    height: auto;
    vertical-align: middle;
    padding-bottom: 3px;
    margin-left: 5px;
}
 .info-bt_more  {
    display: block!important;
    border: 1px solid;
    float: right;
	padding: 0 10px;
    font-size: 1.7rem;
}
.info-right-box_inner dl {
	margin-bottom: 20px;
}
.pagenation {
    margin-top: 50px;
}
.pagenation ul {
    justify-content: center;
    align-items: center;
	font-size: 1.7rem;
}
.pagenation ul li {
    margin-right: 2%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagenation ul .active-page {
    color: white;
    border-radius: 100px;
    padding: 10px;
    background-color: #04b2d9;
}
.pagetop {
	margin-bottom: 0rem!important;
}
.shibu-notice {
    font-size: 1.5rem;
	line-height: 1.5;
}
.info-detail_box .info-date {
    font-size: 1.6rem;
    color: #666666;
}
.info-detail_box .info-detail_ttl {
    background-color: #04b2d9;
    padding: 20px;
    color: white;
    font-size: 2.2rem;
}
.info-detail_box p {
    font-size: 1.8rem;
    line-height: 2;
}
.info-return_bt {
    font-size: 1.7rem;
    margin-top: 50px;
}
.shoshiki-detail {
    background-color: #f7f8f8;
    padding: 20px;
    margin-top: 50px;
}
.shoshiki-detail h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
}
.shoshiki-detail ul {
    width: 90%;
}
.shoshiki-detail ul li .iin-name {
    border-bottom: 1px solid;
    font-size: 2rem;
}
.shoshiki-detail ul li {
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.blue-dot {
    color: #04b2d9;
}
.soshiki-img {
    width: 70%;
    height: auto;
}
.table-sanjo  {
	line-height: 2;
}
.table-sanjo td a{
	border-bottom:1px solid #b5b5b5;
	padding-bottom: 2px;
}
.table-sanjo .tb-bk_yellow {
    background-color: #f2cb05;
    border-bottom: none;
}
.table-notice_above {
    font-size: 1.6rem;
}
.table-sanjo th , .table-sanjo td{
    padding: 0 20px;
}
.table-sanjo .tb-bk_blue {
    background-color: #37bef0;
    border-bottom: none;
}
.table-sanjo tbody {
    font-size: 1.8rem;
    vertical-align: middle;
}
.pdf-ico {
    width: 30px;
    height: auto;
}
.list-blue li {
    border-top: 2px solid #efefef;
    position: relative;
	line-height: 3;
	display: block;
}
.list-blue li a{
    width: 100%;
    height: 100%;
	position: absolute;
}
.list-blue li:last-child {
	border-bottom: 2px solid #efefef;
}
.list-blue li:hover {
	background-color: #efefef;
	opacity: 0.8;
	transition: 0.5s;
}
.list-blue_border {
	border-left: 3px solid #37BEF0;
	width: 3px;
	padding: 15px 0;
	line-height: 3;
}
.list-gray_border {
	border-left: 3px solid #cccccc;
	width: 3px;
	padding: 15px 0;
	line-height: 3;
}
.list-blue .pdf-ico {
    position: absolute;
    right: 10px;
	padding: 10px 0;
}
.list-blue{
    width: 80%;
    margin-top: 30px;
}
.list-group {
    padding-left: 2rem!important;
}
.policy-list {
	margin-top: 30px;
	font-size: 1.8rem;
}
.kaso-content_box ol.list-group-numbered li {
    list-style-type: decimal!important;
}
.policy-box li{
	margin-top: 20px;
}
.kaicho-img {
    width: 200px;
    height: auto;
    margin-left: 3%;
}
.gr-ttl {
    margin-bottom: 50px;
}
.cap-1 {
    font-size: 1.7rem;
    line-height: 1.6;
}
.jigyo-ico {
    width: 30px;
    height: auto;
    padding-bottom: 3px;
}
.jigyo-nav {
    width: 80%;
    text-align: center;
}
.jigyo-detail_box {
    margin-top: 80px;
    width: 90%;
}
.jigyo-detail_box p {
}
.jigyo-detail {
    margin-top: 60px;
}
.jigyo-ttl {
    font-size: 2.8rem;
    align-items: flex-end;
	border-bottom: 1px solid;
	margin-bottom: 20px;
}
.mail {
    text-decoration: underline;
}
.maga-box {
    padding: 20px;
    background-color: #f2f2f2;
    width: 70%;
}
.maga-box_ttl {
    font-size: 2rem;
    padding: 5px;
    background-color: #e6e6e6;
    border-left: 3px solid #0367a6;
}
.maga-btn {
    background-color: #048abf;
    font-size: 1.7rem;
    color: white;
    display: flex;
    align-items: center;
}
.form-control-lg {
    border: #cccccc 1px solid;
	font-size: 1.7rem;
	margin-bottom: 5px;
}
.val {
    color: #c30d23;
    font-size: 1.6rem;
}
.maga-btn_cancel {
    background-color: #3e3a39;
    font-size: 1.7rem;
    color: white;
    display: flex;
    align-items: center;
}
.notice {
    font-size: 1.6rem;
	font-family: "dnp-shuei-gothic-kin-std", sans-serif;
}
.notice-mincho{
	font-size: 1.6rem;
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
.notice li ,.notice-mincho li{
    padding-bottom: 5px;
}
.solid-btn {
    border: 1px solid;
    padding: 5px 10px;
    width: fit-content;
    font-size: 1.8rem;
}
.solid-btn_ico {
    width: 20px;
    height: auto;
    padding-bottom: 4px;
    padding-left: 3px;
}
.news-box {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    background-color: #f2f2f2;
}
.news-box_year {
    padding: 0px 10px;
    background-color: #f2cb05;
}
.news-box ul {
    background-color: #f2f2f2;
    padding-top: inherit;
}
.news-box ul li {
    margin: 5px 10px 5px 10px;
    float: left;
}
.news-box ul img {
    width: 23px;
    height: auto;
	padding-bottom: 4px;
	margin-right: 5px;
}
.english-detail_box h3 {
    color: #03658c;
    border-bottom: 1px solid #03658c;
    font-size: 2.4rem;
}
.english_box h2 {
    font-size: 2.9rem;
    margin-top: 50px;
}
.eng-add span {
    color: white;
    background: #000;
}
.eng-add {
    border: 1px solid;
    font-size: 1.7rem;
    padding: 5px;
    line-height: 1.5;
}
.eng-add ul{
	padding-left: unset;
}
.eng-add_ttl {
    font-size: 2rem;
    font-weight: 100;
    margin: 0 5px;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.fl-left li {
    float: left;
    margin-right: 3px;
}
.fl-left {
    margin-bottom: 0px!important;
}
.award-appli_ttl img {
    width: 30px;
    height: auto;
}
.ttldeco_left {
    margin-right: 20px;
}
.ttldeco_right {
    margin-left: 20px;
}
.award-appli_ttl {
    font-size: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.award-appli-btn_box {
}
.award-appli-btn_box02 img {
    width: 25px;
    height: auto;
    padding-bottom: 4px;
}
.award-appli_ttl::before, .award-appli_ttl::after {
  content: "";
  width: 30%;
  border-top: 3px double #333;
}
.award-appli_ttl::before {
  margin-right: 1em;
}
.award-appli_ttl::after {
  margin-left: 1em;
}
.solid-btn-lg {
    padding: 15px 25px;
    border: 1px solid;
    width: fit-content;
    font-weight: bold;
    font-size: 2.3rem;
}
.solid-btn_text {
    font-size: 1.6rem;
    font-weight: normal;
}
.arrow-plain {
    width: 25px;
    height: auto;
}
.trophy-ico {
    width: 30px;
    height: auto;
    padding-bottom: 15px;
}
.aw-past_ttl {
    border-bottom: 1px solid #0367a6;
    font-size: 2.4rem;
}
.aw-past .arrow-aw {
    width: 20px;
    height: inherit;
    padding-bottom: 5px;
}
.aw-past ul li {
    color: #048abf;
    padding-top: 5px;
    float: left;
    margin-right: 10px;
}
.aw-past {
    clear: both;
    margin-bottom: 30px;
}
.ttl-tv {
	background-image: url("../img/common/jusho-ttl.png");
	}
.ttl-stage {
	background-image: url("../img/common/jusho-ttl02.png");
	}
.award-list_ttl {
    background-color: #048abf;
    padding: 0px 10px;
    color: white;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 30%;
    font-size: 2.3rem;
}
.award-name {
    font-size: 2.1rem;
    font-weight: bold;
}
.award-comp {
    font-weight: normal;
    font-size: 1.6rem;
}
.award-list h2 {
    font-size: 2.3rem;
    color: #0367a6;
    margin-bottom: 20px;
}
.table-th-gray th {
    background-color: #efefef;
    font-weight: normal;
    padding-left: 10px;
    width: 20%;
}
.table-th-gray td,.table-th-lightblue td{
    padding-left: 10px;
}
.award-list_detail {
    margin-bottom: 50px;
}
.notice-red {
    font-size: 1.6rem;
    color: #c30d23;
}
.stage-apply_inner ol {
    font-family: "dnp-shuei-gothic-kin-std", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
}
.apply-detail {
    font-size: 2.2rem;
    font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
.apply-detail_ttl {
    margin-top: 60px;
    font-size: 2.3rem;
}
.award-appli_ttl_right {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    font-size: 2.2rem;
}
.award-appli_ttl_right::after {
	content: "";
    width: 90%;
    border-top: 3px double #333;
	margin-left: 5px;
}
.gray-bk {
    background-color: #f7f8f8;
}
.sho-box {
	padding: 30px 30px;
}
.award-table tr {
    margin-top: 10px;
}
.apply-box_list li {
    margin-top: 20px;
}
.award-table th {
    width: 10%;
    vertical-align: baseline;
    margin-right: 5px;
}
.gray-ico {
    color: #c9caca;
    margin-right: 3px;
}
.download-file_box {
    color: #0367a6;
	font-family: "dnp-shuei-gothic-kin-std", sans-serif;
	font-size: 1.7rem;
}
.apply-ico {
    width: 20px;
    height: auto;
    padding-bottom: 4px;
    margin-left: 5px;
}
.apply-list_box .apply-list_box_ttl {
    font-size: 2.3rem;
    border-bottom: 2px solid #048abf;
    padding-bottom: 3px;
}
.apply-list_box dl {
    margin-top: 30px;
}
.notice-box {
    border: 1px solid;
    padding: 10px 20px;
    font-size: 2rem;
    width: fit-content;
}
.blue-bd-ttl {
    color: #0367a6;
    border-bottom: 1px solid #0367a6;
}
.adress-box-gray {
    padding: 10px;
    background: #f7f8f8;
}
.blue-link {
    color: #03658c;
}
.blue-link-detail {
    border: 1px solid #03658c;
    padding: 5px;
    color: #03658c;
    margin-left: 5px;
}
.circle-list li::before{
    content: "●";
    width: 15px;
    height: auto;
    font-size: 1.8rem;
    margin-right: 3px;
}
.circle-list li {
	margin-bottom: 5px;
}
.font-s {
    font-size: 1.7rem;
}
.blue-circle-ico {
    color: #048abf;
    font-size: 1.8rem;
    margin-right: 3px;
}
.blue-bk {
    background-color: #e9f3fb;
}
.box-padding {
    padding: 20px;
}
.gray-ttl-bk {
    color: white;
    padding: 0px 10px;
    border-radius: 3px;
    background-color: #898989;
}
.ttl-normal {
    font-size: 2.2rem;
}
.arrow {
    width: 20px;
    height: auto;
    padding-bottom: 4px;
    margin-left: 5px;
}
.blue-txt {
    color: #03658c;
}
.gray-form_box {
    border: 1px solid #dcdddd;
	border-bottom: none;
    overflow: hidden;
    background-color: white;
    width: 70%;
}
.gray-form_box .f_LeftBox {
    padding: 10px 20px;
    background-color: #f7f8f8;
    width: 30%;
}
.gray-form_box .f_RightBox {
    padding: 10px 20px;
}
.gray-form_box .row {
    border-bottom: 1px solid #dcdddd;
}
.select {
    width: 110%;
}
.form-btn {
    padding: 10px 20px;
    font-size: 1.8rem;
}
.blue-btn {
    color: white;
    background-color: #048abf;
}
.blue-btn:hover {
	transition: 1s;
	opacity: 0.7;
	cursor: pointer;
	color: white;
}
.gray-btn {
    background-color: #9fa0a0;
    color: white;
}
.form-notice_box {
    width: 70%;
}
.btn-box {
    text-align: center;
}
.required {
    background-color: #c30d23;
    width: fit-content;
    color: white;
    font-size: 1.6rem;
    font-family: "dnp-shuei-gothic-kin-std", sans-serif;
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 5px;
    margin-right: 8px;
    padding-bottom: 5px;
}
.vaild {
	color: #c30d23;
	font-size: 1.6rem;
	font-family: "dnp-shuei-gothic-kin-std", sans-serif;
}
.form-text_box {
    width: 70%;
}
.kyokaishi-index_ttl {
    padding: 30px;
    background-color: #04b2d9;
    color: white;
    font-size: 2.8rem;
	background-image: url("../img/common/index-ttl.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right
}
.kyokaishi-img-box img {
    width: 30%;
    border: 1px solid #efefef;
    height: auto;
}
.index-arrow {
    width: 50px;
    height: auto;
    padding-bottom: 5px;
}
.special-ttl {
    font-size: 2.6rem;
    color: #03658c;
}
.kyokaishi-index-special_box {
    padding: 20px 30px;
}
.kyokaishi-index-special_box dl dt {
	background-color: #048abf;
    color: white;
    border-left: 4px solid #04b2d9;
	padding: 0px 5px 0px 7px;
	margin-bottom: 10px;
	font-weight: normal;
	font-size: 1.8rem;
}
.kyokaishi-index-special_box dl {
}
.kyokaishi-index-special_box dl dd{
    margin-left: 5px;
    margin-bottom: 20px;
	font-size: 2.2rem;
}
.nospecial-box dt {
    color: #04b2d9;
    font-weight: normal;
	display: flex;
	align-items: center;
	
}
.nospecial-box dd  {
    margin-bottom: 20px;
	font-size: 2.2rem;
}
.nospecial-box {
    margin-top: 20px;
}
.nospecial-box dt::after {
	content: "";
	height: 1px;
	background-color: #04b2d9;
	flex-grow: 1;
	margin-left: 5px;
}
.nospecial-box .noborder::after {
    height: 0px;
    background: none;
}
.pagenation-kyokaishi ul li {
    margin-right: 20px;
    color: #03658c;
}
.pagenation-kyokaishi ul li:last-child {
    margin-right: 0px;
}
.publish-box {
    background: url(../img/common/book-dec-left.png),url(../img/common/book-dec-right.png);
    background-size: 20%, 10%;
    background-position-x: left, right;
    background-position-y: top, bottom;
    background-repeat: no-repeat, no-repeat;
    padding: 30px;
    background-color: #efefef;
    margin-bottom: 20px;
	position: relative;
}
.publish-box .book-left {
    height: auto;
    width: 200px;
    float: left;
    margin-right: 20px;
}
.publish-payment_ttl {
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.book-ico {
    width: 40px;
    padding-bottom: 4px;
    margin-right: 5px;
}
.fix-table {
    font-size: 1.7rem;
}
.publish-txt_box_ttl {
    color: #03658c;
    border-bottom: 1px solid #03658c;
    font-size: 2.5rem;
}
.publish-size {
    font-size: 1.7rem;
}
.publish-price {
    font-size: 1.8rem;
}
.publish-buy_btn {
    font-size: 1.7rem;
    padding: 5px 20px;
    border-radius: 5px;
	position: absolute;
	right: 30px;
    bottom: 30px;
}
.publish-payment_box  {
    font-size: 1.8rem;
}
.bank-box, .address-box{
    padding: 10px;
}
.adress-box_inner {
    font-size: 1.7rem;
}
.kyokaishi-box .kyokaishi-box_year {
    background-color: #048abf;
	background-image: url("../img/common/kyokaishi_backnum_ttl.png");
    color: white;
	padding: 0px 10px;
	background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 50%;
	font-size: 2.5rem;
}
.kyokaishi-box ul li {
    background: #04b2d9;
    color: white;
    font-size: 2.5rem;
    padding: 5px 20px 8px 20px;
    letter-spacing: 0.2em;
	background-image: url("../img/common/kyokaishi_backnum_year.png");
	background-repeat: no-repeat;
    background-position: right;
	background-size: 40%;
	float: left;
	margin-right: 40px;
	margin-top: 20px;
	width: 250px;
	height: auto;
}
.kyokaishi-box{
	padding-bottom: 5px;
	margin-bottom: 50px;

}
.kyokaishi-box ul li a{
	border-bottom: 1px solid white; 
	padding-right: 50px;
	padding-bottom: 3px;
	overflow: hidden;
}
.kyokaishi-bucknum_ttl {
	color: #03658c;
	font-size: 2.7rem;
}
.kyokaishi-mag-box .kyokaishi-index li {
    margin-bottom: 20px;
}
.kyokaishi-year_box li img {
    width: 200px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    display: block;
}
.kyokaishi-year {
    font-size: 3rem;
    border-bottom: 1px solid;
}
.kyokaishi-year_box .mag-ttl {
    color: white;
    background-color: #04b2d9;
    padding: 0 10px;
    font-size: 1.8rem;
}
.mokuji-detail_bt {
    font-size: 1.7rem;
    color: #048abf;
    text-align: center;
    margin-top: 5px;
}
.nenkan-apply-btn {
    color: white;
    padding: 20px 30px;
    background-color: #0367a6;
    border-radius: 5px;
    width: max-content;
}
.youtube-detail_box {
    border: #d8e2f5 2px solid;
	background: url("../img/common/youtube-line.png");
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 50%; 
}
.parallax-box {
	height: 150px;
	overflow: hidden;
	position: relative;
}
.par-thumbnail {
	position: absolute;
}.essay-banner img {
    float: left;
    width: 300px;
    height: auto;
}
.essay-auther {
    color: white;
    background-color: #04b2d9;
    width: max-content;
    padding: 0 10px;
    height: auto;
}
.book-table {
	background-color: #e6f3fb;
    padding: 10px;
    border-left: 3px solid #0367a6;
    font-size: 1.8rem;
}
.book-table th {
    color: #0367a6;
    padding-left: 10px;
    width: 20%;
}
.foreign-book_box {
}
.bn-publish {
    width: 350px;
    height: auto;
}
.bn-publish_box {
    margin-bottom: 40px;
}
.border-left_bl {
    border-left: 5px #0367a6 solid;
    margin-right: 5px;
}
.location {
}
.hall-local_box ul {
    padding-left: 0px;
}
.hall_list_inner {
    width: 70%;
}
.hall-local_box ul li {
    background-color: #ebf5fc;
    color: #0367a6;
    width: max-content;
    padding-top: 0;
    padding-right: 10px;
    padding-left: 10px;
    height: auto;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}
.hall-local_box {
    border-bottom: 1px dotted #b5b5b6;
    margin-bottom: 30px;
}
#contents {
    margin: 0 auto;
    width: max-content;
}
.localdetail-name {
    padding: 0 10px;
    background-color: #ebf5fc;
    font-size: 2.3rem;
    margin-bottom: 10px;
}
.hall-localdetail_box {
    border-bottom: 1px dotted #b5b5b6;
    margin-bottom: 30px;
}
.location-address {
    line-height: 1.5;
}
.hall_list_detail_inner {
    width: 70%;
}
.links-ttl_deco {
    color: #ebf5fc;
    margin-right: 5px;
}
.link-box {
    margin-bottom: 60px;
}
.links-detail {
    line-height: 1.5;
    padding-top: 10px;
}
.link-name {
    font-size: 2.3rem;
    color: #0367a6;
    border-bottom: 1px solid #0367a6;
}
.gray-dot {
	color: #c9caca;
	margin-right: 3px;
}
.bd-bottom {
    border-bottom: 1px solid;
    width: 100%;
}
.geijutsu-box h2 {
    font-size: 2.3rem;
}
.geijutsu-box h3 {
    font-size: 2.1rem;
}
.geijutsu-box .blue-link {
    border-bottom: 1px solid #0367a6;
    width: max-content;
}
.border-left {
    border-left: 5px solid #0367a6;
    height: 25px;
    display: flex;
    align-items: center;
    padding-left: 5px;
	line-height: 1.3;
}
.login-box {
    display: flex;
    justify-content: center;
    padding: 50px;
    width: 70%;
    flex-direction: column;
}
.login-box .table {
    width: 100%;
}
.forget-pass {
    font-size: 1.7rem;
}
.login-box tr {
    margin-bottom: 20px;
}
.check-text {
    font-size: 1.7rem;
    width: max-content;
}
.auther {
    font-size: 1.8rem;
    display: block;
	margin-top: 8px;
	color: #595757;
}
.insurance-box_detail {
    border-radius: 10px;
    padding: 15px 20px;
    border: 2px solid #048abf;
    margin-bottom: 20px;
}
.insurance-ttl {
    color: #048abf;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.insurance-box_detail ul li {
    margin-bottom: 5px;
}
.insurance-box_detail ul {
    padding-left: 0px;
}
.border-bottom-blue {
    border-bottom: 1px solid;
    padding-bottom: 3px;
    width: max-content;
}
.size-18 {
    font-size: 1.8rem;
}
.insurance-table th {
    width: 30%;
}
.vector-box_detail dt {
}
.vector-ttl {
    background-color: #f2cb05;
    padding: 0 5px;
}
.vector-box_detail {
    border-bottom: 1px dotted;
    margin-bottom: 20px;
}
.table-th-lightblue th {
    background-color: #e6f3fb;
	font-weight: normal;
	padding-left: 10px;
    width: 30%;
}
.table-th-lightblue,.member-detail_inner p{
	width: 70%;
}
.change-acc_box {
    padding: 20px;
}
.insurance-table {
	margin-top: -30px;
}
.blue-form_box {
    border: 1px solid #dcdddd;
	border-bottom: none;
    overflow: hidden;
    background-color: white;
    width: 70%;
}
.blue-form_box .f_LeftBox {
    padding: 10px 20px;
	border-right: 1px solid #dcdddd;
}
.blue-form_box .f_RightBox {
    padding: 10px 20px;
}
.blue-form_box .row {
    border-bottom: 1px solid #dcdddd;
}
label {
    display: block;
}
.darkblue-bk {
	background-color:#048abf;
}
.publish-form .f_LeftBox {
	width: 40%;
}
.publish-form textarea {
	width: 150%;
} .copy {
    font-size: 1.7rem;
}
.kyokaishi-stories_inner  .blue-bk_list  {
    background-color: #00b1d5;
    font-size: 2.3rem;
    padding: 10px 20px;
    color: white;
    position: relative;
    background-image: url("../img/common/stories-ttl_deco.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    margin-bottom: 10px;
}
.blue-bk_list_btn  {
    position: absolute;
    right: 20px;
}
.stories_ttl {
	background-color:#04b2d9;
	background: url("../img/common/more-bk3.png");
	background-size: 50%;
	color: white;
	padding: 0px 10px;
	font-size: 2.5rem;
	letter-spacing: 0.5px;
}
.shibu-news {
    border-top: 2px solid #048abf;
    padding: 20px 0;
    border-bottom: 2px solid #048abf;
}
.iinkai-news {
    border-top: 2px solid #f2cb05;
    padding: 20px 0;
    border-bottom: 2px solid #f2cb05;
}
.shibu-news_ttl {
    display: flex;
    background: none;
    font-weight: normal;
    font-size: 1.8rem;
    align-items: center;
    line-height: 1.8;
    margin-bottom: 0px!important;
}
.info-right-box_inner  .shibu-news_ttl dt {
    background-color: unset
!important;
    font-weight: normal;
    width: 20%;
}
.shibu-news_ttl dd {
    width: 80%;
}
.shibu-news_ttl dd a {
    border-bottom: 1px solid #999999;
}
.shibu-iin-content_ttl {
    padding: 0 10px;
    background-color: #f2f2f2;
    color: #3e3a39;
}
.shibu-iin-content {
    font-size: 1.8rem;
}
.iin-member {
    width: 50%;
}
.iin-member th {
    font-weight: normal;
    width: 40%;
}
.shibu-ttl-col {
    background-color: #048abf!important;
}
.info-detail_box {
    font-size: 1.8rem;
}
.iinkai-ttl-col {
    background-color: #f2cb05!important;
    color: #000000!important;
}
.ref-btn {
    position: absolute;
    border: 1px solid;
    right: 15px;
    padding: 0px 5px;
    font-size: 1.6rem;
    line-height: 2;
    transform: translateY(13px);
}
.arrow-ref {
    width: 20px;
	height: auto;
	padding-bottom: 4px;
}
.handbook-txt {
	margin-top: 10px;
}
.handbook-bk {
    background-image: url("../img/common/handbook-bk.png");
    background-repeat: no-repeat;
    padding: 25px;
    background-size: cover;
}
.hb-ttl {
    border-bottom: 1px solid;
}
.hb-list span {
    text-align: right;
    display: block;
	position: absolute;
    right: 0;
}
.hb-pdf_box {
    border: 1px solid;
}
.hb-pdf_ico {
    width: 20px;
    height: auto;
	padding-bottom: 5px;
}
.handbook_inner {
    margin: 0 auto;
    width: 70%;
    height: auto;
}
.hb-list ul li {
    position: relative;
    display: flex;
}
.hb-list ul {
    padding-left: 0px;
}
.hb-list {
    margin-bottom: 20px;
}
.arrow-form {
    width: 20px;
    height: auto;
    padding-bottom: 4px;
}
.table-award-db_result th {
    background-color: #efefef;
    font-weight: normal;
    vertical-align: middle;
}
.num, .group, .aw-name  {
    width: 10%;
}
.name {
    width: 20%;
}
.db-terms {
    font-size: 2.3rem;
}
.result-list dt {
    font-weight: nomal;
}
.result-list {
    position: relative;
    border-bottom: 1px dotted;
    padding-bottom: 42.5px;
}
.result-list .result-bt   {
    position: absolute;
    right: 0px;
    font-size: 1.6rem;
    height: 42.5px;
    width: auto;
}
.inin-name {
    line-height: 1.8;
}
.gian {
}
.inin-table td {
    padding-top: 10px;
    line-height: 1.5;
}
.inin-attend_box {
    margin-top: 100px;
}
.w-80 {
    width: 80%;
}
.doc-box_ttl {
    color: #048abf;
    font-size: 2rem;
}
.doc-table th {
	background-color: #ebf5fc;
}
.table-w_70 {
    width: 70%;
}
.kyokaishi-box_year {
    padding: 0px 10px;
    background-color: #048abf;
    color: white;
}
.leftbox_bn {
    color: white;
    background-color: #048abf;
    padding: 2px 7px;
    font-size: 1.5rem;
    line-height: 1.5;
	border-left: solid #04b2d9 4px;
	letter-spacing: -0.5px;
}
.contact-list_other ul li {
    font-size: 1.7rem;
    margin-right: 20px;
}
.contact-list_other ul {
    display: flex;
    width: fit-content;
}
.bn-txt {
    font-size: 2rem;
}
.seminor-list_btn {
    font-size: 2.3rem;
    position: relative;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    border: 1px solid;
    line-height: 1.5;
    width: fit-content;
}
.seminor-list_btn .arrow-form {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    right: 10px;
}
.more-box_inner li {
	margin-right: 20px;
}