@charset "utf-8";

/* -----------------------------------------
   kanri-tab.css
   Lastupdate: 2023/09/18
   Author: KAZUMI SONOBE
------------------------------------------*/

body {
	min-width: 390px;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	font-size: 14px;
}
body.active {
	position: fixed;
	height: 100%;
}
a {
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	color: #000000;
}
a:hover {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-webkit-opacity: 0.5;
}
a:visited {
	color: #000000;
}
.cf {
	width: 100%;
}
.cf:after {
    content:".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0.1em;
}
.pc_only,
.tab_none {
	display: none;
}
.cont_inner {
	width: calc(100% - 60px);
	margin: 0 auto;
}


/* -----------------------------------------
   loader
------------------------------------------*/

.loader-bg {
	display: flex;	
	position: fixed;
	top: 0;
	left: 0;	
	width: 100vw;
	height: 100vh;
	background-color: #DDDDDD;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}
.loader {
	position: relative;
	width: 8em;
	height: 8em;
	margin: 50px auto;	
	background: #FFFFFF;
	background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	border-radius: 50%;	
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	font-size: 10px;
	text-indent: -99999;
}
.loader:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";	
	width: 50%;
	height: 50%;
	background: #FFFFFF;
	border-radius: 100% 0 0 0;
}

.loader:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;	
  content: "";	
  width: 75%;
  height: 75%;
  margin: auto;	
  background: #DDDDDD;
  border-radius: 50%;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* -----------------------------------------
   inview.js
------------------------------------------*/

.js-fadeUp {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .8s, transform .8s;
}
.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .5s;
}


/* -----------------------------------------
   fadeIn (LowerPage ONLY)
------------------------------------------*/

.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* -----------------------------------------
   #global_header
------------------------------------------*/

#global_header .sp_only {
	position: fixed;
	width: 100%;
	height: 60px;
	top: 0;
	left: 0;	
	background-color: #FFFFFF;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
	z-index: 1000;
}
#global_header .site_logo {
	display: block;
	width: 300px;
	height: 20px;
	padding: 20px 0 0 10px;
	overflow: hidden; 
}
#global_header .site_logo a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../imgs/site_logo.png);
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	text-indent: 100%; 
	white-space: nowrap; 
}
#global_header .nav_button {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background-color: #0F276F;
	cursor: pointer;
	text-align: center;
	z-index: 3;
}
#global_header .nav_button span {
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 16px;
	background-color: #BBBBBB;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#global_header .nav_button span:nth-child(1) {
	top: 13px;
}
#global_header .nav_button span:nth-child(2) {
	top: 23px;
}
#global_header .nav_button span:nth-child(3) {
	top: 33px;
}
#global_header .nav_button.active span:nth-child(1) {
	top: 23px;
	left: 16px;
	background-color: #BBBBBB;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#global_header .nav_button.active span:nth-child(2),
#global_header .nav_button.active span:nth-child(3) {
	top: 23px;
	background-color: #BBBBBB;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
#global_header .nav_button:after {
	position: relative;
	top: 34px;
	left: 0;
	content: "MENU";
	color: #BBBBBB;
	background: none;
	font-size: 10px;
	letter-spacing: 1px;
}
#global_header .nav_button.active:after {
	content: "CLOSE";
}


/* -----------------------------------------
   #global_nav
------------------------------------------*/

#global_nav {
	display: none;
	left: 0;
	width: 100%;
	padding: 10px 0;
	background-color: #0F276F;
	box-sizing: border-box;
	text-align: center;
	opacity: 0;
	transition: opacity .3s linear;
	z-index: 100;
}
#global_nav.active {
	display: block;
	position: fixed;
	top: 60px !important;
	height: 100%;
	padding: 0 0 60px 0;
	pointer-events: auto;
	opacity: 100;
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#global_nav ul {
	display: flex;
	width: 80%;
	margin: 20px auto 30px auto;
	padding: 0;
	border-top: 1px solid #DDDDDD;	
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	flex-wrap: wrap;
}
#global_nav ul li {
	width: 100%;
	padding: 0;
	border-bottom: 1px solid #DDDDDD;
	list-style-type: none;	
	transition: .4s all;
}
#global_nav ul li.navi_2column {
	width: 50%;
	box-sizing: border-box;
}
#global_nav ul li:nth-child(6) {
	border-right: 1px solid #DDDDDD;
}

#global_nav ul li:last-child {
	padding: 0;
}
#global_nav ul li a,
#global_nav ul li span.gnavi_toplayer {
	display: block;
	position: relative;
	color: #DDDDDD;
	padding: 20px 0;
	text-decoration: none;
	cursor: pointer;
}
#global_nav ul li span.gnavi_toplayer:hover {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-webkit-opacity: 0.5;	
}
#global_nav ul li span.gnavi_toplayer:after {
	position: absolute;
	content: "＋";
	top: 20px;
	right: 20px;
	color: #DDDDDD;
}
#global_nav ul li span.open:after {
	position: absolute;
	content: "ー";
	top: 20px;
	right: 20px;
	color: #DDDDDD;
}
#global_nav ul li ul.gnavi_2ndlayer {
	display: none;
	margin: 0 auto;
	border-top: none;
}
#global_nav ul li ul.gnavi_2ndlayer li {
	border: none;
}
#global_nav .sp_drawer_info .for_broker a {
	display: block;
	width: 70%;
	margin: 10px auto 0 auto;
	padding: 15px;
	background-color: #003366;
	border: 1px solid #DDDDDD;
	box-sizing: border-box;
	color: #DDDDDD;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
}
#global_nav .sp_drawer_info .for_broker a:after {
	content: "→";
	margin: 0 0 0 6px;
}
#global_nav .sp_drawer_info .header_info {
	margin: 10px 0 20px 0;
	color: #DDDDDD;
}
#global_nav .sp_drawer_info .header_info .tel {
	width: 245px;
	margin: 0 auto;
	padding: 5px 0 0 55px;
	background-image: url(../imgs/freedial.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50px;
	box-sizing: border-box;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 40px;
}
#global_nav .sp_drawer_info .header_info .tel a {
	color: #DDDDDD;
	text-decoration: none;
}
#global_nav .sp_drawer_info .header_info .caption {
	margin: 5px 0 0 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
}
#global_nav .sp_drawer_info .mail a {
	display: block;
	width: 70%;
	margin: 10px auto 20px auto;
	padding: 15px;
	background-color: #DDDDDD;
	border: 1px solid ;
	box-sizing: border-box;
	letter-spacing: 1px;
	text-decoration: none;
}
#global_nav .sp_drawer_info .mail a span {
	display: block;
	width: 150px;
	margin: 0 auto;
	background-image: url(../imgs/mail_spNavi.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px;
	color: #003366;
	font-size: 12px;
	font-weight: 700;
	text-align: right;
}


/* -----------------------------------------
   #top_sideFix_banner(TAB not display)
------------------------------------------*/

#top_sideFix_banner {
	display: none !important;
}


/* -----------------------------------------
   #main_cont
------------------------------------------*/

#main_cont {
	position: relative;
	margin: 60px 0 0 0;
}


/* -----------------------------------------
   #top_mainVisual
------------------------------------------*/

#top_mainVisual {
	position: relative;
	width: 100%;
	height: 300px;
	background: url(../imgs/main_visual.png) no-repeat top center;
	background-size: cover;
	z-index: 1;	
}
#top_mainVisual .cont_inner {
	position: relative;
}
#top_mainVisual .txt_01 {
	display: block;
	position: absolute;
	top: 80px;
	left: 20px;
	width: 466px;
	height: 76px;
	background-image: url(../imgs/mainVisual_txt_01.png);
	background-repeat: no-repeat;
	background-size: 466px 76px;
	text-indent: 100%; 
	white-space: nowrap;
	overflow: hidden; 
}
#top_mainVisual .txt_02 {
	display: block;
	position: absolute;
	top: 200px;
	left: 20px;
	width: 424px;
	height: 17px;
	background-image: url(../imgs/mainVisual_txt_02.png);
	background-repeat: no-repeat;
	background-size: 424px 17px;
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden; 
}
#top_mainVisual #nyukyoritsu {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 260px;
	height: 260px;
	background: url("../imgs/nyukyoritsu_bgver2.png") top left no-repeat;
	background-size: 260px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
#top_mainVisual #nyukyoritsu #nyukyo dl,
#top_mainVisual #nyukyoritsu #kosuu dl {
    position: relative;
}
#top_mainVisual #nyukyoritsu #nyukyo dl dt {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
	color: #774B1C;
    font-size: 18px;
    text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF,
                 -1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF,
                 0px 1px 0 #FFFFFF,  0 -1px 0 #FFFFFF,
                 -1px 0 0 #FFFFFF, 1px 0 0 #FFFFFF;	
    letter-spacing: 2px;
}
#top_mainVisual #nyukyoritsu #nyukyo dl dd {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00008C;
    font-size: 48px;
    text-shadow: 2px 2px 0 #FFFFFF, -2px -2px 0 #FFFFFF,
                 -2px 2px 0 #FFFFFF, 2px -2px 0 #FFFFFF,
                 0px 2px 0 #FFFFFF,  0 -2px 0 #FFFFFF,
                 -2px 0 0 #FFFFFF, 2px 0 0 #FFFFFF;
}
#top_mainVisual #nyukyoritsu #nyukyo dl dd span,
#top_mainVisual #nyukyoritsu #kosuu dl dd span {
    font-size: 24px;
}
#top_mainVisual #nyukyoritsu #nyukyo p {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF,
                 -1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF,
                 0px 1px 0 #FFFFFF,  0 -1px 0 #FFFFFF,
                 -1px 0 0 #FFFFFF, 1px 0 0 #FFFFFF;		
    letter-spacing: 1px;
}
#top_mainVisual #nyukyoritsu #kosuu dl dt {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, -50%);
	color: #774B1C;	
    font-size: 18px;
    text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF,
                 -1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF,
                 0px 1px 0 #FFFFFF,  0 -1px 0 #FFFFFF,
                 -1px 0 0 #FFFFFF, 1px 0 0 #FFFFFF;	
    letter-spacing: 2px;
}
#top_mainVisual #nyukyoritsu #kosuu dl dd {
    position: absolute;
    top: 166px;
    left: 50%;
    width: 146px;
    transform: translate(-50%, -50%);
    color: #D80000;
    font-size: 42px;
    text-shadow: 2px 2px 0 #FFFFFF, -2px -2px 0 #FFFFFF,
                 -2px 2px 0 #FFFFFF, 2px -2px 0 #FFFFFF,
                 0px 2px 0 #FFFFFF,  0 -2px 0 #FFFFFF,
                 -2px 0 0 #FFFFFF, 2px 0 0 #FFFFFF;
}
#top_mainVisual #nyukyoritsu #kosuu p {
    position: absolute;
    top: 206px;
    left: 50%;
    width: 110px;
    transform: translate(-50%, -50%);
	color: #774B1C;
    font-size: 14px;
    text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF,
                 -1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF,
                 0px 1px 0 #FFFFFF,  0 -1px 0 #FFFFFF,
                 -1px 0 0 #FFFFFF, 1px 0 0 #FFFFFF;		
    letter-spacing: 1px;
}


	/* -----------------------------------------
	   #top_for_owners
	------------------------------------------*/

	#top_for_owners {
		font-family: 'Noto Serif JP', serif;
		letter-spacing: 2px;
	}
	#top_for_owners p:first-child {
		width: 550px;
		height: 80px;
		margin: 20px auto 0 auto;
		padding: 30px 0 0 0;
		background: url(../imgs/top_for_owners_01.png) right bottom no-repeat;
		background-size: 77px 80px;
		box-sizing: border-box;
		color: #003366;
		font-size: 24px;
		font-weight: 600;
	}
	#top_for_owners p:last-child {
		width: 660px;
		height: 67px;
		margin: 20px auto 0 auto;
		padding: 20px 0 0 80px;
		background: url(../imgs/top_for_owners_02.png) left bottom no-repeat;
		background-size: 70px 67px;
		box-sizing: border-box;
		color: #3399FF;
		font-size: 28px;
		font-weight: 600;
	}
	#top_for_owners ul {
		display: flex;
		width: 640px;
		margin: 10px auto 0 auto;
		flex-wrap: wrap;
		gap: 20px;
	}
	#top_for_owners ul li {
		display: table;
		width: 200px;
		height: 200px;
		padding: 10px;
		background-color: #8499AA;
		box-sizing: border-box;
		color: #FFFFFF;
		font-size: 18px;
		text-align: center;
		line-height: 1.4;
		align-items: center;
		justify-content: center;
	}
	#top_for_owners ul li:last-child {
		margin: 0;
	}
	#top_for_owners ul li span {
		display: table-cell;
		border: 1px solid #FFFFFF;
		box-sizing: border-box;
		vertical-align: middle;
	}


    /* -----------------------------------------
       #award 2024/03/26update
    ------------------------------------------*/

    #award .cont_inner {
        text-align: center;
    }
    #award .cont_inner img {
        width: 100%;
    }
    #award .cont_inner h3 {
        margin: 30px auto 20px auto;
    }
    #award .cont_inner h3 img {
		width: 600px;
    }
    #award .caption {
        margin: 0 0 20px 0;
        color: #393939;
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 1.6;
    }
    #award .note {
        width: 580px;
        margin: 40px auto;
        padding: 30px;
        background-color: #F2F2F2;
        font-size: 14px;
        text-align: left;
    }
    #award .note p:nth-child(2) {
        margin: 26px 0 0 0;
    }
    #award .note p:nth-child(2) img {
        width: 80%;
		max-width: 513px;
    }


	/* -----------------------------------------
	   .top_section
	------------------------------------------*/

	.top_section {
		display: flex;
		position: relative;
		width: 100%;
		height: 500px;
		margin: 60px 0 0 0;
		align-items: flex-start;
	}
	.top_section_img {
		position: absolute;
		top: 0;
		width: 75%;
		min-width: 768px;
		min-height: 394px;
		z-index: 20;
	}
	.top_section_img img {
		width: 100%;
	}
	.gray_box {
		position: absolute;
		top: 120px;
		width: 90%;
		height: 90%;
		max-height: 400px;
		background-color: #D8DFE4;
		background-image: url(../imgs/gray_box_texture.png);
		background-repeat: no-repeat;
		background-position: top left;
		background-size:cover;
		z-index: 10;
	}
	.top_section_inner {
		position: absolute;
		top: 45%;
		width: 70%;
		min-width: 680px;
		max-height: 330px;
		padding: 30px;
		background-color: rgb(255,255,255,0.90);
		box-sizing: border-box;
		z-index: 30;
	}
	.top_section_inner h2 {
		margin: 0 0 15px 0;
		color: #93934A;
		font-size: 18px;
		font-weight: 600;
		letter-spacing: 2px;
		line-height: 1.2;
	}
	.top_section_inner h3 {
		margin: 0 0 30px 0;
		color: #393939;
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 2px;
		line-height: 1.2;
	}
	.top_section_inner .caption {
		max-width: 650px;
		margin: 0 0 30px 0;
		color: #393939;
		font-size: 16px;
		letter-spacing: 2px;
		line-height: 1.6;
	}
	.top_section_inner .link_btn {
		width: 240px;
		height: 38px;
	}
	.top_section_inner .link_btn a {
		display: inline-block;
		width: 100%;
		height: 26px;
		padding: 11px 0 4px 0;
		background-color: #0F276F;
		border-radius: 27px;
		color: #FFFFFF;
		font-size: 16px;
		text-align: center;
		text-decoration: none;
		letter-spacing: 1px;
	}
	#top_5strength .top_section_img,
	#top_option .top_section_img {
		left: 0;

	}
	#top_chintaikanri .top_section_img {
		right: 0;
	}
	#top_5strength .gray_box,
	#top_option .gray_box {
		right: 0;

	}
	#top_chintaikanri .gray_box {
		left: 0;
	}
	#top_5strength .top_section_inner,
	#top_option .top_section_inner  {
		right: 0;
	}
	#top_chintaikanri .top_section_inner {
		left: 0;
		text-align: right;
	}
	#top_chintaikanri .top_section_inner .caption,
	#top_chintaikanri .top_section_inner .link_btn {
		float: right;
	}


	/* -----------------------------------------
	   #top_contact_sp
	------------------------------------------*/

	#top_contact_sp {
		margin: 60px 0 0 0;
		padding: 30px 0;
		background-color: #0F276F;
		text-align: center;
	}
	#top_contact_sp h3 {
		margin: 0 0 20px 0;
		color :#FFFFFF;
		font-size: 18px;
		letter-spacing: 2px;
	}
	#top_contact_sp ul {
		display: flex;
		justify-content: space-between;
	}
	#top_contact_sp ul li {
		width: calc(50% - 10px);
		height: 100px;
		padding: 15px;
		background-color: #00468C;
		box-sizing: border-box;
		color: #FFFFFF;
	}
	#top_contact_sp ul li.tel {
		position: relative;
		height: 100px;
	}
	#top_contact_sp ul li.tel a {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		pointer-events: none
	}
	#top_contact_sp ul li.tel a span:first-child {
		display: block;
		position: absolute;
		top: 38px;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 210px;
		padding: 5px 0 0 56px;
		background-image: url(../imgs/freedial.png);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 52px;
		color: #FFFFFF;
		font-family: 'Bebas Neue', sans-serif;
		font-size: 46px;
		text-decoration: none;
		text-align: left;
		line-height: 1;
	}
	#top_contact_sp ul li.tel a .caption {
		position: absolute;
		top: 73px;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 300px;
		color: #FFFFFF;
		font-size: 14px;
	}
	#top_contact_sp ul li.mail {
		position: relative;
	}
	#top_contact_sp ul li.mail a {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		color: #FFFFFF;
		text-decoration: none;
	}
	#top_contact_sp ul li.mail a span {
		display: block;
		position: absolute;
		top: 50px;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 210px;
		padding: 0 0 0 30px;
		background-image: url(../imgs/mail.png);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 25px;
		font-size: 20px;
	}


/* -----------------------------------------
   #top_serviceArea
------------------------------------------*/

#top_serviceArea {
	margin: 40px 0 0 0;
	padding: 40px 0 60px 0;
	background-color: #F2F2F2;
}
#top_serviceArea .cont_inner {
	text-align: center;
}
#top_serviceArea .cont_inner .left {
}
#top_serviceArea .cont_inner .right {
	margin: 30px 0 0 0;
}
#top_serviceArea .cont_inner .right dl dt {
    margin: 0 0 20px 0;
    color: #003366;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}
#top_serviceArea .cont_inner .right dl dd {
	font-size: 18px;
}
#top_serviceArea .cont_inner .right p {
	margin: 20px 0 0 0;
	line-height: 1.4;
}
#top_serviceArea .cont_inner .right .link_btn {
	width: 280px;
	height: 38px;
	margin: 30px auto 0 auto;
}
#top_serviceArea .cont_inner .right .link_btn a {
	display: inline-block;
	width: 100%;
	height: 37px;
	padding: 8px 0;
	background-color: #0F276F;
	border-radius: 27px;
	color: #FFFFFF;
	font-size: 24px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
}


	/* -----------------------------------------
	   #top_bannerArea
	------------------------------------------*/

	#top_bannerArea {
		padding: 40px 0;
	}
	#top_bannerArea ul {
		display: flex;
		justify-content: space-between;
	}
	#top_bannerArea ul li {
		width: 32%;
	}
	#top_bannerArea ul li img {
		width: 100%;
	}


/* -----------------------------------------
   #gotoTop
------------------------------------------*/

#gotoTop {
	width: 100%;
	text-align: center;
}
#gotoTop span {
	display: block;
	width: 100%;
	padding: 20px 0;
	background-color: #E6F0F7;
	cursor: pointer;
}
#gotoTop span:hover {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-webkit-opacity: 0.5;	
}
#gotoTop span img {
	width: 20px;
	height: 20px;
}


/* -----------------------------------------
   #global_footer
------------------------------------------*/

#global_footer {
	padding: 40px 0 200px 0;
	background-color: #0F276F;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 1px;
}
#global_footer .left {
	float: left;
	margin: 0 0 0 30px;
}
#global_footer .footer_logo img {
	width: 360px;
}
#global_footer .footer_address {
	margin: 15px 0 0 0;
}
#global_footer .copyright {
	margin: 15px 0 0 0;
}
#global_footer .right {
	float: left;
	margin: 45px 0 0 20px;
	color: #FFFFFF;
}
#global_footer .right li {
	margin: 0 0 10px 0;
}
#global_footer .right li a {
	margin: 0 0 0 0;
	padding: 0 0 3px 18px;
	background: url(../imgs/footer_link_icon.svg) no-repeat left center;
	background-size: 12px 12px; 
	color: #FFFFFF;
	font-size: 13px;
	text-decoration: none;
	line-height: 1;
}


/* -----------------------------------------
   page
------------------------------------------*/

.page-cont #page_title {
	width: 100%;
	height: 120px;
	background-image: url(../imgs/page_h2_bg.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.page-cont #page_title h2 {
	padding: 40px 0 0 0;
	color: #003366;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 1px;
}
.page-cont #breadcrumb {
	margin: 20px 0;
	font-size: 14px;
	letter-spacing: 1px;
}
.page-cont #breadcrumb  ul {
	display: flex;
}
.page-cont #breadcrumb  ul li {
	margin: 0 10px 0 0;
}
.page-cont #breadcrumb  ul li:after {
	content: ">";
	margin: 0 0 0 10px;
}
.page-cont #breadcrumb  ul li:last-child {
	font-weight: 600;
}
.page-cont #breadcrumb  ul li:last-child:after {
	content: none;
}
.page-cont #page_body {
	margin: 0 0 40px 0;
	line-height: 1.6;
}
.page-cont #page_body section {
}
.page-cont #page_body .caption p {
	margin: 0 0 20px 0;
}
.page-cont #page_body .caption p:last-child {
	margin: 0;
}
.page-cont #page_body section h3 {
	margin: 0 0 30px 0;
	color: #003366;
	font-size: 36px;
	letter-spacing: 2px;
}
.page-cont #page_body section h4 {
	margin: 0 0 10px 0;
	color: #003366;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
}
.page-cont #page_footer_contact {
	padding: 30px 0;
	background: url(../imgs/page_footer_contact_bg.png) top left no-repeat;
	background-size: cover;
	text-align: center;
}
.page-cont #page_footer_contact h3 {
	margin: 0 0 20px 0;
	font-size: 20px;
	font-weight: 600;
}
.page-cont #page_footer_contact ul {
	display: flex;
	width: 100%;
	margin: 0 auto;
}
.page-cont #page_footer_contact ul li {
	position: relative;
	width: 50%;
	height: 100px;
	padding: 15px;
	box-sizing: border-box;
	color: #FFFFFF;
}
.page-cont #page_footer_contact ul li:last-child {
	margin: 0;
}
.page-cont #page_footer_contact ul li.tel a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0F276F;
	box-sizing: border-box;
}
.page-cont #page_footer_contact ul li.tel a span:first-child {
	display: block;
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 210px;
	padding: 5px 0 0 56px;
	background-image: url(../imgs/freedial.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 52px;
	color: #FFFFFF;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 46px;
	text-decoration: none;
	text-align: left;
	line-height: 1;
}
.page-cont #page_footer_contact ul li.tel a .caption {
	position: absolute;
	top: 73px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	color: #FFFFFF;
	font-size: 14px;
}
.page-cont #page_footer_contact ul li.mail a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00468C;
	box-sizing: border-box;
	color: #FFFFFF;
	text-decoration: none;
}
.page-cont #page_footer_contact ul li.mail a span {
	display: block;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	margin: 20px 0 0 0;
	padding: 0 0 0 30px;
	background-image: url(../imgs/mail.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 25px;
	font-size: 24px;
}


/* company.html */

.page-company table {
	width: 100%;
	margin: 0 0 30px 0;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	line-height: 1.4;
	letter-spacing: 1px;
}
.page-company table th {
	padding: 25px 30px;
	background-color: #E6F0F7;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.page-company table td {
	padding: 25px 30px;
	border-bottom: 1px solid #CCCCCC;
	vertical-align: middle;
}
.page-company table tr.telfax td {
	padding: 25px 30px 25px 20px;
}
.page-company table td span {
	font-size: 16px;
}
.page-company table td dl {
	margin: 0 0 15px 0;
}
.page-company table td dl:last-child {
	margin: 0;
}
.page-company table td dl dd {
	margin: 0 0 0 10px;
}


/* page-5strength.html */

.page-5strength .intro_caption h3 {
	text-align: center;
}
.page-5strength .intro_caption h3 img {
	width: 95%;
	max-width: 803px;
}
.page-5strength .intro_caption p {
	width: 80%;
	max-width: 750px;
	margin: 0 auto;
}
.page-5strength .intro_caption p img {
	width: 100%;
}
.page-5strength .section_wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0 0 0;
	justify-content: space-between;
}
.page-5strength .section_wrap section {
	position: relative;
	width: calc(calc(100% - 20px) / 2);
	max-width: 640px;
	margin: 0 0 20px 0;
	background-color: #E4EAED;
	box-sizing: border-box;
}
.page-5strength .section_wrap section:last-child {
	margin: 0 !important;
}
.page-5strength .section_wrap section:after {
	display: block;
	position: absolute;
	right: -1px;
	bottom: -1px;
	content: " ";
	width: 30px;
	height: 30px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);	
	background-color: #FFFFFF;
}
.page-5strength .section_wrap section img {
	width: 100%;
	max-width: 640px;
}
.page-5strength .reason_num {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	padding: 5px 0 0 10px;
	color: #FFFFFF;
	font-size: 11px;
	letter-spacing: 1px;
	background: url(../imgs/5strength_num_bg.png) top left no-repeat;
	box-sizing: border-box;
}
.page-5strength .reason_num span {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 50px;
	font-family: 'Bebas Neue', sans-serif;
}
.page-5strength .section_wrap section dl {
	padding: 30px;
}
.page-5strength .section_wrap section dl dt {
	margin: 0 0 20px 0;
	color: #003366;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
}
.page-5strength .section_wrap section dl dd p {
	margin: 0 0 10px 0;
}
.page-5strength .section_wrap section dl dd p:last-child {
	margin: 0;
}


/* page-service-plan.html */

.page-service-plan .intro_caption h3 img {
	width: 95%;
	max-width: 645px;
}
.page-service-plan .intro_caption {
	margin: 0 0 20px 0;
	text-align: left;
}
.page-service-plan .intro_caption p {
	margin: 0 0 5px 0;
}
.page-service-plan .intro_caption p:last-child {
	margin: 0;
}
.page-service-plan ul.subNavi {
	display: flex;
	width: 100%;
	margin: 0 auto;
}
.page-service-plan ul.subNavi li {
	width: calc(100% / 2);
	max-height: 135px;
	font-size: 12px;
	text-align: center;
	letter-spacing: 2px;
}
.page-service-plan ul.subNavi li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 10px 15px 10px;
	box-sizing: border-box;
	color: #FFFFFF;
	text-decoration: none;
}
.page-service-plan ul.subNavi li:first-child a {
	background-color: #00468C;	
}
.page-service-plan ul.subNavi li img {
	display: block;
	width: 60px;
	margin: 0 auto 5px auto;
}
.page-service-plan ul.subNavi li span:after {
	display: block;
	content: " ";
	width: 16px;
	height: 9px;
	margin: 6px auto 0 auto;
	background-image: url(../imgs/plan_subnavi_arrow_img.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.page-service-plan ul.subNavi li:nth-child(2) a {
	background-color: #0E5AA7;
}
.page-service-plan ul.subNavi li:last-child a {
	background-color: #0F276F;
}
.page-service-plan .plan_box {
	margin: 0 0 0 0 !important;
	padding: 40px 0;
	border-bottom: 1px solid #DDDDDD;
}
.page-service-plan .plan_box .left {
	margin: 0 0 30px 0;
}
.page-service-plan .plan_box .left p {
	margin: 0 0 10px 0;
}
.page-service-plan .plan_box .left span {
	font-size: 12px;
}
.page-service-plan .plan_box .right {
	width: 80% !important;
	margin: 0 auto;
}
.page-service-plan .plan_box .right img {
	width: 100%;
	max-width: 587px;
}
.page-service-plan #shukinkanri,
.page-service-plan #yachinhosho,
.page-service-plan #sublease {
	margin-top: -80px !important;
	padding-top: 80px !important;
}
.page-service-plan .plan_box dl {
	display: flex;
	margin: 20px 0;
}
.page-service-plan .plan_box dl dt {
	margin: 0 10px 0 0;
	display: inline-block;
	padding: 2px 5px 2px 8px;
	background-color: #00A9A8;
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 10px;
	letter-spacing: 4px;
}
.page-service-plan .note {
	margin: 40px 0 0 0;
	padding: 20px;
	background-color: #E6F0F7;
	box-sizing: border-box;
	font-size: 13px;
}
.page-service-plan .note p {
	margin: 0 0 10px 0;
	font-weight: 700;
}
.page-service-plan .note ul li {
	margin: 0 0 5px 20px;
	list-style-type: circle;
}
.page-service-plan #service_plan＿cont {
	padding: 40px 0;
	border-bottom: 1px solid #DDDDDD;
}
.page-service-plan #service_plan＿cont dl {
	margin: 0 0 20px 0;
}
.page-service-plan #service_plan＿cont dl:last-child {
	margin: 0;
}
.page-service-plan #service_plan＿cont dt {
	margin: 0 0 10px 0;
	color: #003366;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
}
.page-service-plan #service_plan＿compare {
	padding: 40px 0 0 0;
}
.page-service-plan #service_plan＿compare .horizontal_scroll {
	padding: 0 0 20px 0;
	overflow: auto;
	white-space: nowrap;
}
.page-service-plan #service_plan＿compare .horizontal_scroll::-webkit-scrollbar{
	height: 5px;
}
.page-service-plan #service_plan＿compare .horizontal_scroll::-webkit-scrollbar-track{
	background: #F1F1F1;
}
.page-service-plan #service_plan＿compare .horizontal_scroll::-webkit-scrollbar-thumb {
	background: #BCBCBC;
}
.page-service-plan #service_plan＿compare table {
	width: 100%;
	font-size: 12px;
	letter-spacing: 1px;
}
.page-service-plan #service_plan＿compare table th img {
	width: 240px;
}
.page-service-plan #service_plan＿compare table thead th {
	padding: 0 0 10px 0;
}
.page-service-plan #service_plan＿compare table tbody th {
	padding: 15px 20px;
	background-color: #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	vertical-align: middle;
}
.page-service-plan #service_plan＿compare table td {
	padding: 15px 20px;
	background-color: #EBEFF1;
	border-bottom: 2px solid #FFFFFF;
	text-align: center;
	vertical-align: middle;
}
.page-service-plan #service_plan＿compare table td.border_r {
	border-right: 2px solid #FFFFFF;
}
.page-service-plan #service_plan＿compare table td span {
	font-size: 12px;
}
.page-service-plan #service_plan＿compare .table_caption {
	margin: 10px 0 0 0;
	font-size: 12px;
	text-align: right;
}
.page-service-plan #service_plan＿compare .link_btn {
	width: 300px;
	height: 40px;
	margin: 40px auto 0 auto;
}
.page-service-plan #service_plan＿compare .link_btn a {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 10px 0 13px 0;
	background-color: #0F276F;
	border-radius: 30px;
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
}


/* page-service-option.html */

.page-service-option .caption {
	margin: 0 0 20px 0;
}
.page-service-option .caption p {
	margin: 0 0 5px 0 !important;
}
.page-service-option .horizontal_scroll {
}
.page-service-option table {
	width: 100%;
	margin: 0 0 40px 0;
	border: 1px solid #CCCCCC;
	font-size: 12px;
	letter-spacing: 1px;
}
.page-service-option table th {
	padding: 15px 20px;
	background-color: #E6F0F7;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.page-service-option table td {
	padding: 15px 20px;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	text-align: center;
	vertical-align: middle;
}
.page-service-option table th span {
	font-size: 10px;
}
.page-service-option table td dl {
	margin: 15px 0 0 0;
	font-size: 12px;
}
.page-service-option table td.txt_left {
	text-align: left !important;
}
.page-service-option table td .compare_caption {
	display: block;
	margin: 15px 0 0 0;
	font-size: 10px;
}
.page-service-option #elevator_option thead th:first-child {
	width: 15%;
}
.page-service-option #elevator_option thead th:nth-child(2) {
	width: 20%;
}
.page-service-plan #service_plan＿compare .link_btn {
	width: 300px;
	height: 46px;
	margin: 0 auto 0 auto;
}
.page-service-plan #service_plan＿compare .link_btn a {
	display: inline-block;
	width: 100%;
	height: 46px;
	padding: 10px 0 13px 0;
	background-color: #0F276F;
	border-radius: 30px;
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
}


/* service-compare.html */

.page-service-compare h4 {
	padding: 30px 0 0 0;
}
.page-service-compare table {
	table-layout: fixed;
	border: 1px solid #CCCCCC;
	font-size: 12px;
	letter-spacing: 1px;
}
.page-service-compare table th {
	padding: 15px 20px;
	background-color: #E6F0F7;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.page-service-compare table thead th {
	width: 280px !important;
	color: #FFFFFF;
	vertical-align: middle;
}
.page-service-compare table thead th span {
	font-size: 10px;
}
.page-service-compare table thead th:first-child {
	background-color: #FFFFFF;
	color: #000000;
}
.page-service-compare table thead th:nth-child(2) {
	background-color: #00468C;
}
.page-service-compare table thead th:nth-child(3) {
	background-color: #0E5AA7;
}
.page-service-compare table thead th:last-child {
	background-color: #0F276F !important;
}
.page-service-compare table td {
	padding: 15px 20px;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	text-align: center;
	vertical-align: middle;
}
.page-service-compare table tr:nth-child(odd) td {
	background: #E8E8E8;
}
.page-service-compare table td span {
	font-size: 10px;
}
.page-service-compare .table_caption {
	margin: 10px 0 0 0;
	font-size: 12px;
	text-align: right;
}


/* broker.html */

.page-broker .broker_link {
	margin: 30px 0 0 0 !important;
	font-size: 18px;
}
.page-broker .caption span {
	font-weight: 600;
}
.page-broker .note {
	width: 700px;
	margin: 40px 0 0 0 !important;
	padding: 20px;
	background-color: #E6F0F7;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	font-size: 12px;
	line-height: 1.6;
}


/* voice.html */

.page-voice .section_wrap {
	margin: 40px 0 0 0;
}
.page-voice .section_wrap section {
	width: 100%;
	max-width: 760px;
	margin: 0 auto 20px auto !important;
	padding: 16px 20px 20px 20px;
	background-color: #E6F0F7;
    border: 1px solid #CCCCCC;
	box-sizing: border-box;
}
.page-voice .section_wrap section:nth-child(22) {
	margin: 0 auto !important;
}
.page-voice .section_wrap section dl {
	float: left;
	height: 32px;
}
.page-voice .section_wrap section dl dt,
.page-voice .section_wrap section dl dd {
	display: inline;
}
.page-voice .section_wrap section dl dt {
	padding: 4px 8px 6px 8px;
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 12px;
}
.page-voice .section_wrap section dl:first-child {
	margin: 0 20px 0 0;
}
.page-voice .section_wrap section dl:first-child dt {
	background-color: #00A8A7;
}
.page-voice .section_wrap section dl:nth-child(2) dt {
	background-color: #E5347A;
}
.page-voice .section_wrap section dl dd {
	padding: 2px 0 0 5px;
	font-size: 14px;
}
.page-voice .section_wrap section p {
	margin: 40px 0 0 0;
	background-color: #FFFFFF;
}
.page-voice .section_wrap section p img {
	width: 100%;
}


/* virusguard.html */

.page-virusguard h2 img {
	width: 100%;
}
.page-virusguard section {
	margin: 30px 0 !important;
	padding: 0 0 30px 0;
	border-bottom: 1px solid #CCCCCC;
}
.page-virusguard section:last-child {
	margin: 30px 0 !important;
	padding: 0 0 0 0;
	border-bottom: none;
}
.page-virusguard .intro_caption .left {
	float: left;
	width: 60%;
}
.page-virusguard .intro_caption .left dl:first-child {
	margin: 0 0 20px 0;
}
.page-virusguard .intro_caption .left dl dt {
	margin: 0 0 10px 0;
	color: #003366;
	font-size: 22px;
	font-weight: 700;
}
.page-virusguard .intro_caption .left dl dd {
	font-size: 14px;
}
.page-virusguard .intro_caption .note {
	margin: 10px 0 0 0;
	font-size: 12px;
}
.page-virusguard .intro_caption .right {
	float: right;
	width: 35%;
	text-align: right;
}
.page-virusguard .intro_caption .right img {
	width: 100%;
}
.page-virusguard #vg_point #vg_point1 {
	margin: 0 0 30px 0;
}
.page-virusguard #vg_point .left {
	float: left;
	width: 60%;
}
.page-virusguard #vg_point #vg_point1 .left h3,
.page-virusguard #vg_point #vg_point1 .left h3 img {
	width: 404px !important;
	line-height: 1;
}
.page-virusguard #vg_point #vg_point2 .left h3,
.page-virusguard #vg_point #vg_point2 .left h3 img {
	width: 410px !important;
	line-height: 1;
}
.page-virusguard #vg_point .left p {
	margin: 0 0 20px 0;
}
.page-virusguard #vg_point .left p span {
	font-weight: 700;
}
.page-virusguard #vg_point .left dl {
	margin: 0 0 20px 0;
}
.page-virusguard #vg_point .left dl dt {
	margin: 0 0 15px 0;
	color: #00ABA9;
	font-size: 16px;
	font-weight: 700;
}
.page-virusguard #vg_point .left dl dd span {
	font-weight: 700;
}
.page-virusguard #vg_point .right {
	float: right;
	width: 35%;
}
.page-virusguard #vg_point .right img {
	width: 100%;
}
.page-virusguard #vg_table {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 40px 0 0 0;
}
.page-virusguard #vg_table table {
	width: 45%;
	max-width: 460px;
	box-sizing: border-box;
}
.page-virusguard #vg_table table th {
	padding: 0 0 20px 0;
}
.page-virusguard #vg_table table th img {
	width: 100%;
}
.page-virusguard #vg_table table td {
	padding: 10px;
}
.page-virusguard #vg_table table td.vg_price {
	height: 90px;
	border-top: 2px solid #FFFFFF;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0;
}
.page-virusguard #vg_table table:first-child {
	margin: 0 20px 0 0;
}

td.vg_price {
	color: #00468C;
}
.page-virusguard #vg_table table:nth-child(2) td.vg_price {
	color: #0E266E;
}
.page-virusguard #vg_table table td.vg_price .yen {
	font-size: 24px;
}
.page-virusguard #vg_table table td.vg_price .tax {
	font-size: 16px;
}
.page-virusguard #vg_table table td {
	background-color: #EBEFF1;
	text-align: center;
	vertical-align: middle;
}
.page-virusguard #vg_table p {
	display: none;
}
.page-virusguard #vg_download {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.page-virusguard #vg_download .left {
	margin: 0 60px 0 0;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
.page-virusguard #vg_download .left .link_btn {
	width: 400px;
	height: 40px;
	margin: 30px auto 0 auto;
}
.page-virusguard #vg_download .left .link_btn a {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 10px 0;
	background-color: #0F276F;
	border-radius: 35px;
	color: #FFFFFF;
	font-size: 24px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
}


/* page-contact.html */

.page-contact #page_body {
	margin: 0 0 0 0 !important;
}
.page-contact .intro_caption dl {
	width: 100%;
	margin: 30px 0;
	padding: 20px;
	background-color: #E6F0F7;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	font-size: 12px;
	line-height: 1.6;
}
.page-contact .intro_caption dl dt {
	margin: 0 0 15px 0;
	font-size: 16px;
	font-weight: 600;
}
.page-contact .intro_caption dl dd p {
	margin: 0 0 5px 0;
}
.page-contact .intro_caption dl dd p:last-child {
	margin: 0 0 0 0;
}
.page-contact #contact_form {
	width: 100%;
}


/* page-404.html */

.page-404 #breadcrumb {
	padding: 20px 0 0 0;
}
.page-404 .intro_caption p {
	margin: 0 0 10px 0;
}
.page-404 .intro_caption p:last-child {
	margin: 0 0 0 0;
}


/* campaign */

#campaign_banner_202309 {
	width: calc(100% - 40px);
	max-width: 620px;
	margin: 80px auto 0 auto;
}
#campaign_banner_202309 img {
	width: 100%;
}


/* column */

.page-column #page_title .cont_inner {
	padding: 40px 0 0 0;
	color: #003366;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 1px;
}
#column_lists {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
}
#column_lists li {
    width: 340px;
}
#column_lists li img {
    width: 100%;
}
#column_lists li .column_date {
    margin: 15px 0 0 0;
    font-size: 14px;
}
#column_lists li h3 {
    margin: 5px 0 0 0;
}
.column_header .main_img {
    width: 100%;
    margin: 0 0 25px 0;
}
.column_header .main_img img {
    width: 100%;
}
.column_header h2 {
    margin: 0 0 5px 0;
    color: #000D1A;
    font-size: 20px;
    font-weight: bold;
}
.column_cont {
    width: 100%;
    margin: 20px 0 0 0;
}
.column_cont section {
    margin: 0 0 30px 0;
}
.column_cont h3 {
    position: relative;
    padding: 0 0 8px 0;
    border-bottom: solid 3px #CCE4FF;
    color: #000D1A !important;
    font-size: 16px !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}
.column_cont h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #003366;
  bottom: -3px;
  width: 20%;
}
.column_cont h4 {
    margin: 0 0 15px 0;
    color: #003366;
    font-size: 16px; 
    font-weight: bold;    
}
.column_cont h4 .marker {
    background: linear-gradient(transparent 60%, #FFFF66 60%);    
}
.column_cont p {
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.column_cont p:last-child {
    margin: 0 0 0 0 !important;
}
.column_cont .bold {
    font-weight: bold;
}
.column_cont .list {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 15px 15px 15px 15px;
    background-color: #E8F3FF;
    border: 3px double #003366;
    box-sizing: border-box;
}
.column_cont .list li {
    margin: 0 0 15px 0;
}
.column_cont .list li:last-child {
    margin: 0 0 0 0;
}
.column_cont .list dt {
    margin: 0 0 15px 0;
    color: #003366;
    font-size: 16px; 
    font-weight: bold;    
}
.column_cont .checklist dl {
    margin: 20px 0 0 0;
}
.column_cont .checklist dl dt {
    margin: 0 0 10px 0;
    padding: 0 0 0 28px;
    background: url("../imgs/checkbox_icon.svg") top left no-repeat;
    background-size: 23px 23px;
    font-size: 16px; 
    font-weight: bold;
}
.column_cont .checklist li {
    margin: 0 0 10px 0;
    padding: 0 0 0 28px;
    background: url("../imgs/checkbox_icon.svg") top left no-repeat;
    background-size: 23px 23px;
}
.column_cont .checklist li span {
    font-size: 16px;
}
.column_cont .h4_dl {
    margin: 0 0 30px 0;
}
.column_cont .h4_dl:last-child {
    margin: 0 0 0 0;
}
.column_cont .h4_dl dt {
    margin: 0 0 15px 0;
    color: #003366;
    font-size: 16px; 
    font-weight: bold;    
}
.column_cont .h4_dl .checklist {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 15px 15px 15px 15px;
    background-color: #E8F3FF;
    border: 3px double #003366;
    box-sizing: border-box;
}
.column_cont .h4_dl .checklist li:last-child {
    margin: 0;
}
.column_cont .h4_dl dl dt {
    margin: 0 0 15px 0;    
    font-size: 16px;
}
.column_cont .h4_dl dl .checklist {
    width: auto;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border: none;
}

