@charset "utf-8";

/* -----------------------------------------
   kanri-pc.css
   Lastupdate: 2025/08/21
   Author: KAZUMI SONOBE
------------------------------------------*/

body {
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
}
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;
}
.cont_inner {
	width: 1280px;
	margin: 0 auto;
}
.sp_only {
	display: none;
}
.tab_only {
	display: none;
}


/* -----------------------------------------
   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: 11em;
	height: 11em;
	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 .5s, transform .5s;
}
.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .3s;
}


/* -----------------------------------------
   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;
  }
}


/* -----------------------------------------
   #wrapper
------------------------------------------*/

#wrapper {
	position: relative;
}


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

#global_header {
	position: relative;
	width: 100%;
	height: 100px;
	padding: 15px 60px;
	background-color: #FFFFFF;
	box-sizing: border-box;
	z-index: 1000;
}
#global_header h1 {
	position: absolute;
	width: 1000px;
	font-size: 12px;
	letter-spacing: 1px;
}
#global_header .header_logo {
	float: left;
}
#global_header .header_logo .site_logo a {
	display: block;
	width: 460px;
	height: 34px;
	margin: 30px 0 0 0;
	background-image: url(../imgs/site_logo.png);
	background-repeat: no-repeat;
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden; 
}
#global_header .header_info {
	float: right;
	color: #003366;
	letter-spacing: 1px;
	text-align: center;
}
#global_header .header_info .tel {
	margin: 0 0 8px 0;
	padding: 8px 0 0 76px;
	background-image: url(../imgs/freedial.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 70px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 56px;
}
#global_header .header_info .caption {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
}
#global_header .for_broker {
	float: right;
}
#global_header .for_broker a:after {
	content: "→";
	margin: 0 0 0 6px;
}
#global_header .for_broker a {
	display: block;
	width: 136px;
	margin: 30px 30px 0 0;
	padding: 15px;
	background-color: #003366;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 1px;
	text-decoration: none;
}


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

#global_nav {
	width: 100%;
	height: 76px;
	background-color: rgba(255,255,255,0.95);
	box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
	box-sizing: border-box;
	z-index: 1000;
}
#global_nav.fixed {
	position: fixed !important;
	top: 100px;
	width: 100%;
}
#global_nav ul {
	display: flex;
	position: relative;
	width: 100%;
	flex-wrap: wrap;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 2px;
	justify-content: center;
}
#global_nav ul li {
	height: 76px;
	padding: 30px 0 0 0;
	box-sizing: border-box;
	text-align: center;
}
#global_nav ul li+li::before{
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    height: 1em;
    border-left: 1px solid #999999;
    margin: auto;
}
#global_nav ul li a,
#global_nav ul li span.gnavi_toplayer {
	padding: 0 20px;
	text-decoration: none;
}
#global_nav ul li span.gnavi_toplayer:hover {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-webkit-opacity: 0.5;	
}
#global_nav ul li ul {
    display: none;
	position: absolute;
	top: 76px;
	left: 200px;
    width: 300px;
    z-index: 99;
}
#global_nav ul li ul  li {
	height: 60px;
	padding: 0;
}
#global_nav ul li ul li+li::before {
	border: none;
}
#global_nav ul li ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px 0 0 0;
    background-color: #E6F0F7;
	box-sizing: border-box;
	-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;
}
#global_nav ul li ul li a:hover {
	background-color: #003366;
	color: #FFFFFF;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
}
#main_cont {
	position: relative;
}


/* -----------------------------------------
   #top_sideFix_banner
------------------------------------------*/

#top_sideFix_banner {
	position: fixed;
	top: 180px;
	right: 0;
	z-index: 10000;
}
#top_sideFix_banner li a {
	display: block;
	width: 130px;
	height: 120px;
	background-repeat: no-repeat;
	background-size: 130px 120px;
	border-top: 1px solid #EEEEEE;
	border-left: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	border-radius: 9px 0 0 9px;
	box-shadow: 6px 6px 6px rgba(0,0,0,0.3);  
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden;
}
#top_sideFix_banner li:first-child a {
	margin: 0 0 10px 0;
	background-image: url(../imgs/top_side_contact_btn.png);
}
#top_sideFix_banner li:last-child a {
	background-image: url(../imgs/top_side_supportsite_btn.png);
}

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

#top_mainVisual {
	position: relative;
	width: 100%;
	height: 480px;
	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: 130px;
	left: 60px;
	width: 776px;
	height: 127px;
	background-image: url(../imgs/mainVisual_txt_01.png);
	background-repeat: no-repeat;
	text-indent: 100%; 
	white-space: nowrap;
	overflow: hidden; 
}
#top_mainVisual .txt_02 {
	display: block;
	position: absolute;
	top: 300px;
	left: 60px;
	width: 707px;
	height: 28px;
	background-image: url(../imgs/mainVisual_txt_02.png);
	background-repeat: no-repeat;
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden; 
}
#top_mainVisual #nyukyoritsu {
	position: absolute;
	top: 90px;
	right: 60px;
	width: 309px;
	height: 309px;
	background: url(../imgs/nyukyoritsu_bgver2.png) top left no-repeat;
	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: 60px;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #774B1C;
	font-size: 22px;
	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: 105px;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #00008C;
	font-size: 68px;
	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: 36px;
}
#top_mainVisual #nyukyoritsu #nyukyo p {
	position: absolute;
	top: 125px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	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: 167px;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #774B1C;	
	font-size: 20px;
	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: 208px;
	left: 50%;
	width: 212px;
	transform: translate(-50%, -50%);
	color: #D80000;
	font-size: 60px;
	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: 260px;
	left: 52%;
	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: 640px;
	height: 101px;
	margin: 20px auto 0 auto;
	padding: 50px 0 0 0;
	background: url(../imgs/top_for_owners_01.png) right bottom no-repeat;
	box-sizing: border-box;
	color: #003366;
	font-size: 28px;
	font-weight: 600;
}
#top_for_owners p:last-child {
	width: 860px;
	height: 97px;
	margin: 20px auto 0 auto;
	padding: 30px 0 0 130px;
	background: url(../imgs/top_for_owners_02.png) left bottom no-repeat;
	box-sizing: border-box;
	color: #3399FF;
	font-size: 36px;
	font-weight: 600;
}
#top_for_owners ul {
	display: flex;
	margin: 10px 0 0 0;
	flex-wrap: wrap;
	justify-content: space-between;
}
#top_for_owners ul li {
	display: table;
	width: 200px;
	height: 200px;
	margin: 0 15px 0 0;
	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 h3 {
    margin: 40px auto 30px auto;
}
#award .cont_inner h3 img {
	width: 1009px;
}
#award .caption {
    margin: 0 0 30px 0;
    color: #393939;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.6;
}
#award .note {
	width: 600px;
	margin: 60px auto;
	padding: 30px;
	background-color: #F2F2F2;
	font-size: 16px;
	text-align: left;
}
#award .note p:nth-child(2) {
	margin: 26px 0 0 0;
}

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

.top_section {
	display: flex;
	position: relative;
	width: 100%;
	height: 650px;
	margin: 40px 0 0 0;
	align-items: flex-start;
}
.top_section_img {
	position: absolute;
	top: 0;
	width: 1170px;
	height: 600px;
	z-index: 20;
}
.top_section_img img {
	max-width: 100%;
	height: 100%;
}
.gray_box {
	position: absolute;
	top: 40px;
	width: 60%;
	height: 600px;
	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: 120px;
	width: 40%;
	min-width: 670px;
	padding: 40px 60px 60px 60px;
	background-color: rgb(255,255,255,0.90);
	box-sizing: border-box;
	z-index: 30;
}
.top_section_inner h2 {
	margin: 0 0 20px 0;
	color: #93934A;
	font-size: 30px;
	letter-spacing: 2px;
	line-height: 1.2;
}
.top_section_inner h3 {
	margin: 0 0 30px 0;
	color: #393939;
	font-size: 34px;
	letter-spacing: 2px;
	line-height: 1.2;
}
.top_section_inner .caption {
	margin: 0 0 30px 0;
	color: #393939;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1.6;
}
.top_section_inner .link_btn {
	width: 330px;
	height: 38px;
}
.top_section_inner .link_btn a {
	display: inline-block;
	width: 100%;
	height: 37px;
	padding: 13px 0 4px 0;
	background-color: #0F276F;
	border-radius: 27px;
	color: #FFFFFF;
	font-size: 24px;
	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_optionkanri .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 .link_btn {
	float: right;
}


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

#top_serviceArea {
	margin: 40px 0 0 0;
	padding: 40px 0;
	background-color: #F2F2F2;
}
#top_serviceArea .cont_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#top_serviceArea .cont_inner .left {
	margin: 0 60px 0 0;
}
#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: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}
#top_serviceArea .cont_inner .right dl dd {
	font-size: 22px;
}
#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 0 0 0;
}
#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: 60px 0;
}
#top_bannerArea ul {
	display: flex;
	justify-content: space-between;
}


/* -----------------------------------------
   #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;
	background-color: #0F276F;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 1px;
}
#global_footer .left {
	float: left;
	margin: 0 0 0 60px;
}
#global_footer .footer_logo {
	width: 460px;
	height: 34px;
	margin: 0 0 0 0;
}
#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 40px;
	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
------------------------------------------*/

 /* common */

.page-cont #page_title {
	width: 100%;
	height: 160px;
	background-image: url(../imgs/page_h2_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.page-cont #page_title h2 {
	padding: 55px 0 0 0;
	color: #003366;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 2px;
}
.page-cont #breadcrumb {
	margin: 40px 0;
	font-size: 16px;
	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 60px 0;
	line-height: 1.6;
    letter-spacing: 1px;
}
.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 {
	margin: 0 0 60px 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 20px 0;
	color: #003366;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
}
.page-cont #page_footer_contact {
	padding: 60px 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 40px 0;
	font-size: 32px;
	font-weight: 600;
}
.page-cont #page_footer_contact ul {
	display: flex;
	width: 960px;
	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: 290px;
	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: 28px;
}


/* company.html */

.page-company table {
	border: 1px solid #CCCCCC;
	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 {
	width: 803px;
	height: 75px;
	margin: 0 auto 60px auto !important;
	background-image: url(../imgs/5strength_h3.png);
	background-repeat: no-repeat;
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden; 
}
.page-5strength .section_wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 80px 0 0 0;
	justify-content: space-between;
}
.page-5strength .section_wrap section {
	position: relative;
	width: 620px;
	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 .reason_num {
	position: absolute;
	top: 410px;
	left: 10px;
	width: 100px;
	height: 100px;
	padding: 5px 0 0 10px;
	color: #FFFFFF;
	font-size: 12px;
	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: 0;
	right: 10px;
	font-size: 80px;
	font-family: 'Bebas Neue', sans-serif;
}
.page-5strength .section_wrap section dl {
	padding: 40px;
}
.page-5strength section dl dt {
	margin: 20px 0 10px 0;
	color: #003366;
	font-size: 36px;
	font-weight: 600;
}
.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 {
}
.page-service-plan .intro_caption {
	text-align: center;
}
.page-service-plan ul.subNavi {
	display: flex;
	width: 1024px;
	margin: 0 auto 80px auto;
}
.page-service-plan ul.subNavi li {
	width: calc(1024px / 2);
	height: 174px;
	text-align: center;
	letter-spacing: 2px;
}
.page-service-plan ul.subNavi li a {
	display: block;
	width: 100%;
	padding: 15px 0 20px 0;
	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: 100px;
	margin: 0 auto 5px auto;
}
.page-service-plan ul.subNavi li span:after {
	display: block;
	content: " ";
	width: 18px;
	height: 10px;
	margin: 10px 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 {
	padding: 0 0 80px 0;
	border-bottom: 1px solid #DDDDDD;
}
.page-service-plan #shukinkanri,
.page-service-plan #yachinhosho,
.page-service-plan #sublease {
	margin-top: -180px !important;
	padding-top: 180px !important;
}
.page-service-plan .plan_box .left {
	float: left;
	width: 653px;
}
.page-service-plan .plan_box .left p {
	margin: 0 0 20px 0;
}
.page-service-plan .plan_box .left span {
	font-size: 16px;
}
.page-service-plan .plan_box .right {
	float: right;
	width: 587px;
}
.page-service-plan .plan_box dl {
	display: flex;
	margin: 30px 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: 14px;
	letter-spacing: 4px;
}
.page-service-plan .note {
	margin: 40px 0 0 0;
	padding: 40px;
	background-color: #E6F0F7;
	box-sizing: border-box;
	font-size: 15px;
}
.page-service-plan .note p {
	margin: 0 0 20px 0 !important;
	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: 0 0 80px 0;
	border-bottom: 1px solid #DDDDDD;
}
.page-service-plan #service_plan＿cont dl {
	margin: 0 0 30px 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: 24px;
	font-weight: bold;
	letter-spacing: 2px;
}
.page-service-plan #service_plan＿compare table {
	width: 1200px;
	margin: 30px auto 0 auto;
	letter-spacing: 1px;
}
.page-service-plan #service_plan＿compare table th {
	padding: 25px 30px;
	background-color: #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
}
.page-service-plan #service_plan＿compare table thead th img {
	width: 420px;
}
.page-service-plan #service_plan＿compare table tbody th {
	width: 180px;
}
.page-service-plan #service_plan＿compare table td {
	padding: 25px;
	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: 14px;
}
.page-service-plan #service_plan＿compare .table_caption {
	margin: 20px 0 0 0;
	text-align: right;
}
.page-service-plan #service_plan＿compare .link_btn {
	width: 460px;
	height: 60px;
	margin: 40px auto;
}
.page-service-plan #service_plan＿compare .link_btn a {
	display: inline-block;
	width: 100%;
	height: 60px;
	padding: 10px 0 13px 0;
	background-color: #0F276F;
	border-radius: 30px;
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 22px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
}


/* page-service-option.html */

.page-service-option .caption {
	margin: 0 0 30px 0;
}
.page-service-option .caption p {
	margin: 0 !important;
}
.page-service-option table {
	margin: 30px 0 40px 0;
	border: 1px solid #CCCCCC;
	letter-spacing: 1px;
}
.page-service-option table th {
	padding: 25px 30px;
	background-color: #E6F0F7;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.page-service-option table td {
	padding: 25px 30px;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	text-align: center;
	vertical-align: middle;
}
.page-service-option table th span {
	font-size: 16px;
}
.page-service-option table td dl {
	margin: 15px 0 0 0;
	font-size: 16px;
}
.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: 14px;
}


/* service-compare.html */

.page-service-compare table {
	table-layout: fixed;
	border: 1px solid #CCCCCC;
	letter-spacing: 1px;
	width:1280px;
}
.page-service-compare table th {
	padding: 25px 30px;
	background-color: #E6F0F7;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.page-service-compare table thead th {
	width: 280px !important;
	color: #FFFFFF;
}
.page-service-compare table thead th span {
	font-size: 16px;
}
.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: 25px 30px;
	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: 16px;
}
.page-service-compare .table_caption {
	margin: 20px 0 0 0;
	text-align: right;
}


/* broker.html */

.page-broker .broker_link {
	margin: 30px 0 0 0 !important;
	font-size: 20px;
}
.page-broker .caption span {
	font-weight: 600;
}
.page-broker .note {
	width: 800px;
	margin: 60px 0 0 0 !important;
	padding: 30px;
	background-color: #E6F0F7;
	border: 1px solid #CCCCCC;
	font-size: 14px;
}


/* voice.html */

.page-voice .section_wrap {
	display: flex;
	margin: 40px 0 0 0;
	flex-wrap: wrap;
	justify-content: space-between;
}
.page-voice .section_wrap section {
	width: calc(calc(100% - 20px) / 2);
	margin: 0 0 20px 0 !important;
	padding: 16px 20px 20px 20px;
	background-color: #E6F0F7;
    border: 1px solid #CCCCCC;
	box-sizing: border-box;
}
.page-voice .section_wrap section:nth-child(21),
.page-voice .section_wrap section:nth-child(22) {
	margin: 0 !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 {
	height: 155px;
	margin: 12px 0 0 0;
	background-color: #FFFFFF;
}
.page-voice .section_wrap section p img {
	width: 100%;
}


/* virusguard.html */

.page-virusguard section {
	margin: 60px 0 !important;
	padding: 0 0 60px 0;
	border-bottom: 1px solid #CCCCCC;
}
.page-virusguard section:last-child {
	margin: 60px 0 !important;
	padding: 0 0 0 0;
	border-bottom: none;
}
.page-virusguard .intro_caption .left {
	float: left;
	width: 600px;
}
.page-virusguard .intro_caption .left dl:first-child {
	margin: 0 0 40px 0;
}
.page-virusguard .intro_caption .left dl dt {
	margin: 0 0 15px 0;
	color: #003366;
	font-size: 36px;
	font-weight: 700;
}
.page-virusguard .intro_caption .left dl dd {
	font-size: 22px;
}
.page-virusguard .intro_caption .note {
	margin: 10px 0 0 0;
	font-size: 14px;
}
.page-virusguard .intro_caption .right {
	float: right;
	text-align: right;
}
.page-virusguard #vg_point #vg_point1 {
	margin: 0 0 40px 0;
}
.page-virusguard #vg_point .left {
	float: left;
	width: 940px;
}
.page-virusguard #vg_point .left h3 {
	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 40px 0;
}
.page-virusguard #vg_point .left dl dt {
	margin: 0 0 15px 0;
	color: #00ABA9;
	font-size: 20px;
	font-weight: 700;
}
.page-virusguard #vg_point .left dl dd span {
	font-weight: 700;
}
.page-virusguard #vg_point .right {
	float: right;
}
.page-virusguard #vg_table {
	display: flex;
	flex-wrap: wrap;
	margin: 40px 0 0 0;
}
.page-virusguard #vg_table table {
	width: 460px;
}
.page-virusguard #vg_table table:first-child {
	margin: 0 30px 0 0;
}
.page-virusguard #vg_table table th {
	padding: 0 0 20px 0;
}
.page-virusguard #vg_table table td.vg_price {
	height: 120px;
	border-top: 2px solid #FFFFFF;
	font-size: 62px;
	font-weight: 700;
	letter-spacing: 0;
}
.page-virusguard #vg_table table:first-child 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: 32px;
}
.page-virusguard #vg_table table td.vg_price .tax {
	font-size: 19px;
}
.page-virusguard #vg_table table:nth-child(2) {
	margin: 0 60px 0 0;
}
.page-virusguard #vg_table table td {
	background-color: #EBEFF1;
	text-align: center;
	vertical-align: middle;
}
.page-virusguard #vg_download {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.page-virusguard #vg_download .left {
	margin: 0 60px 0 0;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
.page-virusguard #vg_download .left .link_btn {
	width: 400px;
	height: 50px;
	margin: 40px auto 0 auto;
}
.page-virusguard #vg_download .left .link_btn a {
	display: inline-block;
	width: 100%;
	height: 50px;
	padding: 10px 0;
	background-color: #0F276F;
	border-radius: 35px;
	color: #FFFFFF;
	font-size: 32px;
	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: 860px;
	margin: 40px 0 0 0;
	padding: 30px;
	background-color: #E6F0F7;
	border: 1px solid #CCCCCC;
	font-size: 14px;
}
.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 10px 0;
}
.page-contact .intro_caption dl dd p:last-child {
	margin: 0 0 0 0;
}
.page-contact #contact_form {
	width: 720px;
}


/* page-contact.html */

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


/* campaign */

#campaign_banner_202309 {
	width: 1280px;
	margin: 40px auto 0 auto;
}


/* column */

.page-column #page_title .cont_inner {
	padding: 55px 0 0 0;
	color: #003366;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 2px;
}
#column_lists {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; 
}
#column_lists li {
    width: 400px;
}
#column_lists li img {
    width: 100%;
}
#column_lists li .column_date {
    margin: 20px 0 0 0;
    font-size: 16px;
}
#column_lists li h3 {
    margin: 5px 0 0 0;
}
.column_header .main_img {
    width: 1000px;
    margin: 0 0 30px 0;
}
.column_header .main_img img {
    width: 100%;
}
.column_header h2 {
    width: 1000px;    
    margin: 0 0 10px 0;
    color: #000D1A;
    font-size: 36px;
    font-weight: bold;
}
.column_cont {
    width: 1000px;
    margin: 50px 0 0 0;
}
.column_cont h3 {
    position: relative;
    padding: 0 0 8px 0;
    border-bottom: solid 3px #CCE4FF;
    color: #000D1A !important;
    font-size: 28px !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: 26px; 
    font-weight: bold;    
}
.column_cont h4 .marker {
    background: linear-gradient(transparent 60%, #FFFF66 60%);    
}
.column_cont p {
    margin: 0 0 30px 0;
    line-height: 2.0;
}
.column_cont p:last-child {
    margin: 0 0 0 0 !important;
}
.column_cont .bold {
    font-weight: bold;
}
.column_cont .list {
    width: 900px;
    margin: 30px 0 0 0;
    padding: 30px 30px 30px 30px;
    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: 20px; 
    font-weight: bold;    
}
.column_cont .checklist dl {
    margin: 30px 0 0 0;
}
.column_cont .checklist dl dt {
    margin: 0 0 10px 0;
    padding: 0 0 0 38px;
    background: url("../imgs/checkbox_icon.svg") top left no-repeat;
    background-size: 32px 32px;
    font-size: 20px; 
    font-weight: bold;
}
.column_cont .checklist li {
    margin: 0 0 15px 0;
    padding: 0 0 0 38px;
    background: url("../imgs/checkbox_icon.svg") top left no-repeat;
    background-size: 32px 32px; 
}
.column_cont .checklist li span {
    font-size: 20px;
}
.column_cont .h4_dl {
    margin: 0 0 60px 0;
}
.column_cont .h4_dl:last-child {
    margin: 0 0 0 0;
}
.column_cont .h4_dl dt {
    margin: 0 0 30px 0;
    color: #003366;
    font-size: 24px; 
    font-weight: bold;    
}
.column_cont .h4_dl .checklist {
    width: 900px;
    margin: 30px 0 0 0;
    padding: 30px 30px 30px 20px;
    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: 20px;
}
.column_cont .h4_dl dl .checklist {
    width: auto;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border: none;
}