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

#wrap {
    background-color: #FFFFFF;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    overflow: hidden;
}
#head {
    clear: both;
    margin-right: auto;
    margin-left: auto;
}
#headwrap {
    clear: both;
    background-color: rgba(255,255,255,0.00);
    height: 90px;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
}

#logo {
    float: left;
    width: 146px;
    padding-left: 25px;
    padding-top: 30px;
}
#logo  img  {
    width: 116px;
    height: auto;
    padding-top: 0px;
}

#telwrap {
    text-align: right;
    float: right;
    padding-right: 90px;
    padding-top: 20px;
}
#telwrap p{
    width: 190px;
    height: 46px;
    border-radius: 50px;
    padding: 0;
    background-color: #0064AC;
    overflow: hidden;
}
#telwrap a  {
    display: block;
    line-height: 46px;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    width: 190px;
    border-radius: 50px;
    text-align: center;
    transition: 0.2s;
  transition: .3s;
  position: relative;
  background: transparent;
    z-index: 5;
}
#telwrap a:hover {
}

#telwrap a:after {
    content: " ";
    visibility: visible;
    background-image: url(../img/arrow01.png);
    background-size: 13px auto;
    background-repeat: no-repeat;
    width: 13px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    margin-bottom: 2px;
}
#telwrap a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
    background-color: #1E293B;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;;
    border-radius: 50px;
}
#telwrap a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.telnum {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
}
.navToggle {
    display: block;
    position: fixed;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 5000;
    text-align: center;
    right: 26px;
    top: 21px;
    font-size: medium;
    border-radius: 80px;
    border: 1px solid #1E293B;
}
.navToggle span {
 display: block;
 position: absolute;    /* .navToggleに対して */
 width: 14px;
 border-bottom: 1px solid #1E293B;
 -webkit-transition: .35s ease-in-out;
 -moz-transition: .35s ease-in-out;
 transition: .35s ease-in-out;
 left: 15px;
 font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
}
 
.navToggle span:nth-child(1) {
 top: 20px;
}
 
.navToggle span:nth-child(2) {
 top: 26px;
}
.navToggle.active{    
    border: 1px solid #FFF;
}
.navToggle.active span{    
 border-bottom: 1px solid #FFF;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 24px;
    left: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
 /* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%)!important;
}
nav.globalMenuSp {
 position: fixed;
 z-index: 4000;
 top: 0;
 text-align: center;
 transform: translateX(120%);
 transition: all 0.6s;
 width: 100%;
 height: 100%;
}

nav.globalMenuSp .naviblock {
 width: 24%;
 min-width: 300px;
 height: 100vh;
 overflow-y: auto;
 margin-left: auto;
 margin-right: 0;
 font-size: 0;
 display: block;
 margin-top: 0px;
 margin-bottom: 0px;
 text-align: left;
 color: #ffffff;
 background-color: #0064AC;
 border-top-left-radius: 90px;
 position: relative;
}
.naviblockbox{
    display: block;
    vertical-align: middle;
    font-size: 15px;
    margin: 0 auto 0;
    width: 66%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.naviblockbox .box{
    vertical-align: top;
}
.naviblockbox .box01{
    vertical-align: top;
    position: relative;
    width: 100%;
}
.naviblockbox h4 {
    font-size: 22px;
    line-height: 1.6em;
    font-weight: bold;
    padding-bottom: 15px;
    color: #333;
    padding-top: 15px;
    border-top: 1px solid #666;
    padding-left: 15px;
    padding-right: 15px;
}

.naviblockbox a {
    color: #FFFFFF;
    text-decoration: none;
}
.naviblockbox ul {
    width: 100%;
    float: none;
}

.naviblockbox .box .headnav {
}
.naviblockbox ul li {
    padding-bottom: 15px;
    font-size: 16px;
}
.naviblock .entry{
    margin-top: 20px;
    margin-bottom: 30px;
}
.naviblock .entry a{
    display: inline-block;
    background-color: #fff;
    color: #0064AC;
    line-height: 46px;
    padding: 0 15px;
    border-radius: 50px;
    font-size: 13px;
}
.naviblock .entry a:after{
    content: " ";
    visibility: visible;
    background-image: url("../img/arrow01_b.png");
    background-size: 13px auto;
    background-repeat: no-repeat;
    width: 13px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    margin-bottom: 2px;
    
}
.naviblock .entry a:hover {
    background-color: #1E293B;
    color: #fff;;
}
.naviblock .entry a:hover:after {
    background-image: url("../img/arrow01.png")}
#flash {
	clear: both;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
    position: relative;
    padding-top: 230px;
}
#flash .but {
    position: absolute;
    top: 170px;
    right: 70px;
    z-index: 20;
}
#flash .but img {
    width: 110px;
    height: auto;
}


.bx-wrapper {
    width: 92%;
    margin-right: 0px!important;
    margin-left: auto!important;
    position: relative;
    z-index: 0;
}
#flash .box{
    width: 92%;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
#flash .box h3{
    padding-top: 30px;
    font-size: 32px;
    line-height: 1.6em;
    letter-spacing: 0.2em;
    font-weight: 600;
}

#mainimg {
    position: relative;
    margin-top: 90px;
    margin-bottom: 80px;
}
#mainimg h2{
    font-size: 22px;
}
#mainimg .photo{
    width: 62%;
    height: 340px;
    overflow: hidden;
    position: relative;
    margin: 0 0 0 auto;
    border-bottom-left-radius: 20px;
    z-index: 0;
}
#mainimg .photo img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center top;
}
#mainimg .box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1146px;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
}
#mainimg .box p img {
    height: 80px;
    width: auto;
}
#mainint{
    position: relative;
    margin-top: 90px;
    margin-bottom: 80px;
}
#mainint .photo  {
    width: 96%;
    height: 630px;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-bottom: 0px;
    position: relative;
}
#mainint .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
#mainint .box{
    position: absolute;
    z-index: 10;
    padding-left: 6%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}
#mainint .come strong{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    background-color: #1E293B;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 15px;
}
#mainint .come{
    font-size: 32px;
    line-height: 1.6em;
    bottom: 30px;
    padding-bottom: 0;
}
ul.bxslider {
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	width: 100%;
	display: block;
	clear: both;
}
ul.bxslider li img {
    height: auto;
    padding-right: 0px;
    width: 100%;
    border-top-left-radius: 60px;
}
ul.bxslider li {
	list-style-type: none;
	padding: 0px;
	width: 100%;
	text-align: center;
	position: relative;
}
#cont {
 clear: both;
 width: 1000px;
 margin-right: auto;
 margin-left: auto;
 padding-top: 20px;
 position: relative;
}
#footwrap {
    background-color: #0064AC;
    clear: both;
    overflow: hidden;
    color: #FFFFFF;
}
#foot {
    text-align: left;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 100px;
    max-width: 1146px;
    font-size: 14px;
    line-height: 2em;
}
#foot a {
    color: #FFFFFF;
    text-decoration: none;
}
#foot a:hover {
    color: #9CCDF1;
}

#footad {
    float: left;
    width: 26%;
}


#footad h5 {
    width: 193px;
    padding-bottom: 40px;
}
#footad h5 img {
    width: 100%;
    height: auto;
}


#footmenu {
    font-size: 14px;
    line-height: 1.6em;
    width: 50%;
    float: right;
    padding-bottom: 70px;
}
.fnav {
    float: left;
    width: 33%;
}
.fnav li {
    padding-bottom: 20px;
}
.icon {
    width: calc(100% - 66%);
    float: right;
}
.icon li{
    width: 45%;
    float: left;
    padding-left: 5%;
}
.icon li img{
    width: 100%;
    height: auto;
}


#cr {
    font-size: 12px;
    line-height: 1.6em;
    clear: both;
    padding: 25px 0;
    border-top: 1px solid #007CD6;
}
#cr a {
    color: #FFFFFF;
    text-decoration: none;
}
#cr a:hover {
    color: #9CCDF1;
}


#cr ul {
    margin: 0 auto;
    width: 90%;
    max-width: 1146px;
}
#cr ul li {
    float: left;
    text-align: left;
}
/*#cr ul li:last-of-type {
    float: right;
}*/




#news {
	margin-bottom: 30px;
}
#news table {
	border-collapse: collapse;
	width: 100%;
}
#news th {
	text-align: left;
	vertical-align: top;
	padding-right: 5px;
	background-image: url(../img/list.gif);
	background-repeat: no-repeat;
	background-position: 0 16px;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666;
	width: 30%;
}
#news td {
	padding-top: 10px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666;
}
#news .box01 {
	clear: both;
	overflow: auto;
	height: 240px;
	padding-right: 20px;
}

#sub h6 {
	text-align: center;
	font-size: 16px;
	line-height: 1.6em;
	border-bottom: 1px solid #575757;
	margin-bottom: 15px;
}

.list {
	padding-bottom: 20px;
}
.list li {
	padding-bottom: 10px;
	line-height: 20px;
	background-image: url(../img/list.gif);
	background-repeat: no-repeat;
	background-position: 0px 2px;
	padding-left: 20px;
}
.list a {
	color: #2E2E2E;
	text-decoration: none;
}
.title {
    position: relative;
    padding-bottom: 30px;
}
.title h3 {
    font-size: 28px;
    line-height: 1.6em;
    color: #1E293B;
    font-weight: bold;
    position: relative;
}

.title .poppins-extralight {
    font-size: 70px;
    line-height: 0.6em;
    color: rgba(186,194,209,0.30);
    position: relative;
    padding-bottom: 0px;
}



.midashi {
    clear: both;
    font-size: 28px;
    line-height: 1.6em;
    margin-bottom: 30px;
    border-bottom: 1px solid #BAC2D1;
}
.midashib {
	margin-bottom: 20px;
	text-align: center;
	font-size: 24px;
	line-height: 1.6em;
	font-weight: bold;
}
.midashib h4 {
 font-size: 26px;


 line-height: 1.em;
 line-height: 61.em;
 padding-bottom: 0px;
}

.midashi02 {
	font-size: 20px;
	line-height: 1.6em;
	clear: both;
	margin-bottom: 10px;
	padding-bottom: 4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.komidashi {
    line-height: 1.6em;
    background-image: url(../img/list04.gif);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    font-size: 20px;
    font-weight: bold;
}
.txtbox {
 clear: both;
 margin-right: auto;
 margin-left: auto;
 padding-bottom: 80px;
}
.txtbox02 {
 clear: both;
 margin-right: auto;
 margin-left: auto;
    padding: 0 10px 80px;
}
.txtbox03 {
 clear: both;
 margin-right: auto;
 margin-left: auto;
 padding-bottom: 30px;
}
.txtbox li {
	list-style-position: inside;
	list-style-type: disc!important;
}

.linebox {
	clear: both;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 50px;
	border: 1px solid #BAC2D1;
	margin-bottom: 30px;
}
.linebox .doui{
	width: calc(100% - 10px);
	height: 312px;
	overflow: auto;
	padding-right: 10px;
}
.centerphoto {
	text-align: center;
	clear: both;
	padding-bottom: 30px;
}
.centertxt {
	text-align: center;
	clear: both;
}
.tbl {
    width: 100%;
    margin-bottom: 10px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #999999;
    clear: both;
}
.tbl td {
	padding: 30px 0;
	text-align: left;
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	position: relative;
}
.tbl th {
    padding: 30px 0;
    text-align: left;
    vertical-align: middle;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #999999;
    font-weight: bold;
    width: 15%;
}
.tbl th.time {
    background-image: url(../img/list.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px auto;
    padding-left: 20px;
}

form .tbl th.hissu{
	width: auto;
}
form .tbl th.hissu p{
	background-color: #0064AC;
	color: #FFF;
	width: 40px;
	text-align: center;
	font-size: 13px;
	line-height: 24px;
	border-radius: 3px;
	padding: 0;
	margin-right: 10px;
}
form .tbl tr:last-of-type th,form .tbl tr:last-of-type td{
	border-bottom: none;
}

.tbl02 {
    width: 100%;
    margin-bottom: 10px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #999999;
    clear: both;
    background-color: #FFFFFF;
}
.tbl02 td {
	padding: 30px 40px;
	text-align: left;
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
.tbl02 tbody th {
    padding: 30px 40px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #999999;
    border-right: 1px solid #999999;
    font-weight: bold;
    width: 20%;
}
.tbl02 thead th {
    padding: 30px 40px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #999999;
    border-right: 1px solid #999999;
    font-weight: bold;
    background-color: #1E293B;
    color: #FFF;
}
.tbl03 {
    width: 100%;
    margin-bottom: 10px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #999999;
    clear: both;
    background-color: #FFFFFF;
}
.tbl03 td {
    padding: 30px 40px;
    text-align: center;
    vertical-align: top;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #999999;
    width: 230px;
}
.tbl03 tbody th {
    padding: 30px 40px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #999999;
    border-right: 1px solid #999999;
    font-weight: bold;
}
.tbl03 thead th {
    padding: 30px 40px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #999999;
    border-right: 1px solid #999999;
    font-weight: bold;
    background-color: #1E293B;
    color: #FFF;
}
.tbl03 thead th:nth-of-type(2n){
    text-align: center;
}
.pagetop {
	text-align: right;
	clear: both;
	padding-bottom: 50px;
	font-size: 12px;
	line-height: 20px;
	color: #F15A24;
}
.pagetop a {
	background-color: #CFC1A9;
	padding: 10px;
	display: inline-block;
	color: #001226;
	text-decoration: none;
}
.pc-none{
	display: none!important;
}
.sp-none{
	display: block!important;
}
.pc-none02{
	display: none!important;
}
.sp-none02{
	display: inline-block!important;
}
.telbox {
	background-position: 10px 10px;
	background-repeat: no-repeat;
	text-align: center;
	background-color: #001226;
	border-radius: 10px;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	color: #FFFFFF;
}
.link {
    width: 300px;
    height: 76px;
    border-radius: 50px;
    padding: 0;
    background-color: #0064AC;
    overflow: hidden;
    margin: 0 auto;
}
.link a {
    line-height: 76px;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #0064AC;
    width: 210px;
    border-radius: 50px;
    text-align: left;
    transition: 0.2s;
	padding: 0 60px 0 30px;
	position: relative;
    
    display: block;
  background: transparent;
    z-index: 5;
}
.link a:hover {
}
.link a:after {
    content: " ";
    visibility: visible;
    background-image: url(../img/arrow01.png);
    background-size: 15px auto;
    background-repeat: no-repeat;
    width: 15px;
    height: 12px;
    display: block;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.link a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
    background-color: #1E293B;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
    border-radius: 50px;
}
.link a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
ul.mojilist li {
	margin:0 0 0 20px!important;
	text-indent: -20px;
	padding-bottom: 0px!important;
 width: 100%!important;
 display: block!important;
 text-align: left!important;
}
ul.mojilist li:before {
	content: "・";
	padding-right: 5px;
}
.faqbox{
	padding-bottom: 30px;
}
.faqbox h5 {
	font-size: 16px;
	line-height: 1.6em;
	text-indent: -33px;
	padding: 20px 63px;
	border-radius: 5px;
	background-color: #EAEDF1;
	position: relative;
    cursor: pointer;
}
.faqbox h5:before {
	content: "Q.";
	padding-right: 10px;
	font-size: 24px;
	font-weight: 600;
	color: #1E293B;
	font-family: "Poppins", sans-serif;
	line-height: 1em;
}
.faqbox h5:after{
	content: "+";
	font-size: 18px;
	line-height: 18px;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	font-family: "Poppins", sans-serif;
}
.faqbox h5.opened:after{
	content: "-";
	font-size: 22px;}
.faqbox p {
	text-indent: -34px;
	padding: 20px 36px 0;
	margin-left: 33px;
}

.faqbox p:before {
	content: "A.";
	padding-right: 10px;
	font-size: 24px;
	font-weight: 600;
	color: #1E293B;
	font-family: "Poppins", sans-serif;
	line-height: 1em;
}
.pname  {
    text-align: right;
    padding-top: 10px;
    
}
.pname strong {
    font-size: 22px;
    line-height: 1.6em;
}

.caption {
	color: hsla(359,100%,39%,1.00);
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.drop {
	padding-bottom: 30px;
}

.drop dt {
	background-color: #44B0FF;
	padding: 10px;
	color: #FFFFFF;
	margin-bottom: 10px;
	position: relative;
}
.drop dt:after {
	visibility: visible;
	content:'+';
	top: 50%;
	right: 20px;
	font-weight: bold;
	transform:translateY(-50%);
	position: absolute;
}
.drop dt.opened:after {	content:'－';
}
.drop dd{
	padding: 0 10px 20px;
}
.anq {
	margin-top: -90px;
	padding-top: 90px;
}

/*タブ切り替え全体のスタイル*/
.tabs {
	padding-bottom: 40px;
	background-color: #fff;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
 display: none;
 padding-top: 40px;
 padding-bottom: 0;
 clear: both;
 overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #59b057;
  color: #fff;
}

.tabs input:checked + .tab_item:nth-of-type(2n) {
  background-color: #69c7f1;
  color: #fff;
}

.tabs input:checked + .tab_item:nth-of-type(3n) {
  background-color: #f5a4c0;
  color: #fff;
}
.photo_fit img {
    width: 100%;
    height: auto;
}
.corner20 img {
    border-radius: 20px;
}


.cont01  {
    width: 100%;
    position: relative;
    padding-top: 80px;
    padding-bottom: 90px;
}
.cont02  {
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}
.inner1146 {
    width: 90%;
    margin: 0 auto;
    max-width: 1146px;
    position: relative;
    z-index: 10;
}
.message {
    position: relative;
    padding-bottom: 30px;
    line-height: 2em;
}
.message .photo {
    width: 39%;
    float: left;
}
.message .box {
    width: 50%;
    float: right;
}
.message .box h3 {
    font-size: 28px;
    line-height: 1.6em;
    font-weight: bold;
    padding-bottom: 50px;
}
.catch   {
    text-align: center;
    font-size: 18px;
    line-height: 2em;
}
.rinen {
    width: 90%;
    max-width: 690px;
    margin:0 auto 50px;
    text-align: center;
    letter-spacing: -1em;
    position: relative;
    padding-bottom: 60px;
}
.rinen ul {
    position: relative;
    z-index: 10;
}
.rinen .img {
    position: absolute;
    top: calc(50% - 30px);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
    border-radius: 50%;
    width: 33%;
    padding-bottom: 0px;
}

.rinen li {
    width: 48.7%;
    padding-bottom: 16px;
    float: left;
    padding-right: 2.6%;
}
.rinen li:nth-of-type(2n) {
    padding-right: 0px;
}

.rinen img {
    width: 100%;
    height: auto;
    display: block;
}

.rinen .img img {
    border-radius: 50%;
    -webkit-box-shadow: 0px 30px 30px rgba(0,0,0,0.30);
    box-shadow: 0px 30px 30px rgba(0,0,0,0.30);
}
.inner_grayw{
    position: relative;
}
.inner_grayw:after{
    content: " ";
    visibility: visible;
    position: absolute;
    width: 100%;
    height: calc(100% - 150px);
    background-color: #F7F8FA;
    bottom: 0;
    left: 0;
}
.company {
    width: 79%;
    margin-left: auto;
    margin-right: 0px;
    padding-bottom: 20px;
}
.company iframe {
    width: 100%;
}
.apbox {
    background-color: #F7F8FA;
    border-top-left-radius: 20px;
    position: relative;
    margin-bottom: 100px;
    letter-spacing: -1em;
    padding-top: 80px;
    padding-bottom: 70px;
    z-index: 10;
}
.apbox:nth-of-type(2n) {
    background-color: #F7F8FA;
    border-top-left-radius: 0px;
    border-top-right-radius: 20px;
}
.apbox:after {
    content: " ";
    visibility: visible;
    width: 50vw;
    height: 100%;
    background-color: #F7F8FA;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
}
.apbox:nth-of-type(2n):after {
    content: " ";
    visibility: visible;
    width: 50vw;
    height: 100%;
    background-color: #F7F8FA;
    position: absolute;
    top: 0;
    left: auto;
    right: 50%;
    z-index: -1;
}
.apbox .photo {
    width: 48%;
    letter-spacing: 0em;
    display: inline-block;
    vertical-align: middle;
}
.apbox .photo img {
    width: 100%;
    height: auto;
}
.apbox .box {
    display: inline-block;
    padding-left: 7%;
    padding-right: 4%;
    width: 39%;
    letter-spacing: 0px;
    vertical-align: middle;
}
.apbox:nth-of-type(2n) .box {
    display: inline-block;
    padding-left: 4%;
    padding-right: 7%;
}
.apbox:nth-of-type(3n) .box {
    padding-bottom: 80px;
}
.apbox .box h3 {
    font-size: 24px;
    line-height: 1.6em;
    padding-bottom: 30px;
}
.apbox .num {
    letter-spacing: 0px;
    padding-bottom: 0px;
    position: absolute;
    left: -10px;
    bottom: 0px;
    font-size: 180px;
    line-height: 130px;
    color: rgba(186,194,209,0.20);
    vertical-align: baseline;
}
.apbox:nth-of-type(2n) .num {
    left: auto;
    right: -10px;
    bottom: 0px;
}
.interview {
    position: relative;
    margin: 0 auto 100px;
    max-width: 910px;
    width: 90%;
}
.interview .box {
    width: 44%;
    float: left;
    margin-right: 8%;
}
.interview .box:nth-of-type(2n){
    margin-right: 0;
}
.interview a{
    color: #1E293B;
    text-decoration: none;
}
.interview .photo {
    position: relative;
    margin-bottom: 20px;
}
.interview .photo .img {
    width: 100%;
    height: 462px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.interview .photo .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: 0.2s;
}
.interview a:hover .photo .img img{
    width: 108%;
    height: 108%;
    object-fit: cover;
}
.interview a .come strong{
    color: #fff;
    text-decoration: none;
    background-color: #1E293B;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 6px;
}
.interview .come{
    position: absolute;
    left: 0;
    bottom: 30px;
    padding-bottom: 0;
}
.interviewblock {
    margin-bottom: 90px;
}
.interviewblock .komidashi {
    padding-bottom: 30px;
}

.interviewblock .box {
    width: 45%;
    float: left;
}
.interviewblock .photo {
    width: 48%;
    float: right;
    padding-top: 30px;
}
.interviewblock .photo_full{
    padding-top: 30px;
}
.interviewblock .photo img,.interviewblock .photo_full img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.schedule {
    display: flex;
    position: relative;
    z-index: 10;
    margin-bottom: 100px;
    flex-wrap: wrap;
}
.schedule .full {
    width: 100%;
    padding-top: 10px;
    text-align: right;
}

.schedule .box{
    width: calc((100% - 12% - 200px) / 5);
    margin-right: 3%;
    background-color: #EAEDF1;
    border-radius: 10px;
    padding: 30px 20px 20px;
    font-size: 14px;
    line-height: 1.6em;
}
.schedule .box:last-of-type
{
    margin-right: 0;
}
.schedule .box h4 {
    text-align: center;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: bold;
}
.schedule:after{
    content: " ";
    visibility: visible;
    width: 76%;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: -webkit-linear-gradient(0deg,rgba(186,194,209,1.00) 0%,rgba(0,100,172,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(186,194,209,1.00) 0%,rgba(0,100,172,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(186,194,209,1.00) 0%,rgba(0,100,172,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(186,194,209,1.00) 0%,rgba(0,100,172,1.00) 100%);
    z-index: -1;
}
.recruit{
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	padding-bottom: 100px;
	position: relative;
}
.recruit .tbl th{
	width: 30%;
}
.recruit .link{
	margin-top: 60px;
}
.rec_link{
	width: 100%;
	max-width: 940px;
	margin: 0 auto 40px;
	display: flex;
	flex-wrap: wrap;
}
.rec_link li{
	width: calc((100% - 6%) / 4);
	padding-right: 2%;
	padding-bottom: 18px;
	text-align: center;
}
.rec_link li:nth-of-type(4n){
	padding-right: 0;
}
.rec_link li a{
	background-color: #7C90A7;
	color: #fff;
	display: block;
	text-decoration: none;
	font-size: 20px;
	line-height: 60px;
	border-radius: 5px;
}
.rec_link li a:hover,.rec_link li.checked a,.rec_link.rec_top li:first-of-type a{
	background-color: #0064AC;
}
.faq_link{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 90px;
}
.faq_link li{
	width: calc((100% - 12%) / 4);
	padding-right: 4%;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 10px;
	position: relative;
}
.faq_link li:nth-of-type(4n){
	padding-right: 0;
}
.faq_link a{
	display: block;
	background-color: #EAEDF1;
	position: relative;
	border-radius: 5px;
	padding: 28px 0 48px;
	color: #1E293B;
	text-decoration: none;
	font-size: 18px;
	line-height: 1.6em;
	font-weight: 600;
	transition: 0.2s;
}
.faq_link a:hover{
	background-color: #1E293B;
	color: #fff;
}
.faq_link a:after{
	content: " ";
	visibility: visible;
	width: 47px;
	height: 47px;
	background-image: url(../img/arrow03.png);
	position: absolute;
	background-size: 47px auto;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	transition: 0.2s;
}
.faq_link a:hover:after{	
	bottom: -12px;
}
.douicheck {
position:relative;
	text-align: center;
	padding-top: 50px;
}
.douicheck .ssl {
	display: inline-block;
	padding: 10px 30px;
	background-color: #EAEDF1;
}
.douicheck .ssl img {
	display: inline-block;
	vertical-align: middle;
	padding-right: 10px;
}
.work {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 60px;
}
.work .box .img {
	text-align: center;
	padding-bottom: 20px;
}
.work .box h5 {
	font-size: 20px;
	text-align: center;
	padding-bottom: 20px;
}


.work .box{
	background-color: #EAEDF1;
	border-radius: 20px;
	margin-right: 3%;
	width: calc((100% - 6% - 240px) / 3);
	padding: 40px;
	margin-bottom: 30px;
}
.work .box:nth-of-type(3n){
	margin-right: 0;
}
.career {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 90px;
}
.career .box {
    width: 48%;
    background-color: #FFFFFF;
    border-top: 1px solid #BAC2D1;
    border-bottom: 1px solid #BAC2D1;
    margin-right: 4%;
    letter-spacing: -1em;
    padding: 35px 0;
    margin-bottom: 10px;
}
.career .box:nth-of-type(2n){
    margin-right: 0;
}
.career .box .img{
    padding-left: 9%;
    width: 25%;
    display: inline-block;
    vertical-align: middle;
}
.career .box .img img{
    width: 100%;
    height: auto;
}
.career .box .come{
    width: 50%;
    padding-right: 9%;
    padding-left: 7%;
    letter-spacing: 0;
    display: inline-block;
    vertical-align: middle;
}
.career02 {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 90px;
}
.career02 .box {
    width: 48%;
    background-color: #FFFFFF;
    border-top: 1px solid #BAC2D1;
    border-bottom: 1px solid #BAC2D1;
    margin-right: 4%;
    letter-spacing: -1em;
    padding: 35px 0 5px;
    margin-bottom: 10px;
    position: relative;
    margin-top: 56px;
}
.career02 .box h5{
    letter-spacing: 0;
    width: 300px;
    line-height: 56px;
    padding-bottom: 0;
    padding-left: 24px;
    position: absolute;
    top: -56px;
    font-size: 20px;
    background-color: #1E293B;
    color: #fff;
    clip-path: polygon(0 0,
95% 0,100% 100%,0 100%);
}
.career02 .box:nth-of-type(2n){
    margin-right: 0;
}
.career02 .box01{
    padding-bottom: 30px;
}
.career02 .box01 .img{
    padding-left: 9%;
    width: 23%;
    display: inline-block;
    vertical-align: middle;
}
.career02 .box01 .img img{
    width: 100%;
    height: auto;
}
.career02 .box01 .come{
    width: 52%;
    padding-right: 9%;
    padding-left: 7%;
    letter-spacing: 0;
    display: inline-block;
    vertical-align: middle;
}
.career02 .box02{
    margin: 0 9% 30px;
    background-color: #EAEDF1;
    border-radius: 10px;
    letter-spacing: 0;
    text-align: center;
    padding: 46px 0 36px;
}
.career02 ul{
    width: 86%;
    margin: 0 auto;
    padding-bottom: 30px;
}
.career02 ul li{
    width: 50%;
    text-align: center;
    display: inline-block;
    letter-spacing: 0;
    padding-bottom: 40px;
}.career02 ul li:nth-of-type(5), .career02 ul li:nth-of-type(6) {
    padding-bottom: 0px;
}
.career02 ul .img {
    width: 136px;
    margin-left: auto;
    margin-right: auto;

}
.career02 ul .img img {
    width: 100%;
    height: auto;
}
.career03 {
    margin: 0 auto;
    width: 90%;
    max-width: 890px;
    padding-bottom: 90px;
}
.career04 {
    padding-bottom: 80px;
}
.career04 li {
    float: left;
    width: calc(100% / 3);
}
.career04 li img{
    width: 100%;
    height: auto;
}
.business {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}
.business .box .img {
	text-align: center;
	padding-bottom: 20px;
}
.business .box h5 {
    font-size: 20px;
    text-align: center;
    padding-bottom: 40px;
}


.business .box{
    background-color: #EAEDF1;
    border-radius: 20px;
    margin-right: 3%;
    width: calc((100% - 3% - 160px) / 2);
    padding: 50px 40px 30px;
    margin-bottom: 50px;
}
.business .box:nth-of-type(2n){
	margin-right: 0;
}
.business .box02{
    background-color: #EAEDF1;
    border-radius: 20px;
    margin-right: 0;
    width: calc(100% - 240px);
    padding: 50px 120px 30px;
    margin-bottom: 50px;
    letter-spacing: -1em;
}

.business .box02 .img {
    width: 28%;
    display: inline-block;
    vertical-align: middle;
}
.business .box02 .img img{
    width: 100%;
    height: auto;
}
.business .box02 .come{
    width: 66%;
    letter-spacing: 0;
    display: inline-block;
    vertical-align: middle;
    padding-left: 6%;
    font-size: 20px;
    line-height: 1.8em;
}
.business .box02 .come strong{
    color: #0064AC;
    font-weight: 600;
}
.business .arrow{
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translateX(-50%) translateY(-50%);
}
.inner_grayw02{
    position: relative;
    z-index: 5;
    line-height: 2em;
}
.inner_grayw02:after{
    content: " ";
    visibility: visible;
    width: 100%;
    height: calc(100% + 140px);
    background-color: #F7F8FA;
    top: -140px;
    left: 0;
    z-index: -1;
    position: absolute;
}
.familiar {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1366px;
}
.familiar .photo {
    position: relative;
    padding-bottom: 0px;
    z-index: 0;
}

.familiar .photo img {
    width: 100%;
    height: auto;
}
.baloon{
    position: absolute;
    width: 142px;
    background: #FFFFFF;
    padding: 0;
    text-align: center;
    border: 2px solid #0064AC;
    color: #0064AC;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    font-size: 20px;
    line-height: 1em;
    font-weight: 600;
    transition: 0.2s;
}
.baloon a{
    text-decoration: none;
    color: #0064AC;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 0;
}
.baloon::after,.baloon::before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:100%;
    left:50%;
}
.baloon::after{
    visibility: visible;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:8px;
    border-bottom-width:8px;
    border-left-width:6px;
    border-right-width:6px;
    margin-left: -6px;
    border-top-color:#FFFFFF;
    transition: 0.2s;
}
.baloon::before{
    border-color: rgba(0, 100, 172, 0);
    border-top-width:9px;
    border-bottom-width:9px;
    border-left-width:7px;
    border-right-width:7px;
    margin-left: -7px;
    margin-top: 2px;
    border-top-color:#0064AC;
}
.baloon:hover{
    color:#FFF;
    background-color: #0064AC;
}
.baloon:hover a{
    color:#FFF;
}

.baloon:hover::after{
    border-top-color:#0064AC;
}
.baloon.fam01{
    top: 15%;
    left: 15%;
}
.baloon.fam02{
    top: 7%;
    left: 42%;
}
.baloon.fam03{
    top: 33%;
    right: 6%;
}
.baloon.fam04{
    bottom: 29%;
    left: 13%;
}
.baloon.fam05{
    bottom: 41%;
    right: 34%;
}
.baloon.fam06{
    top: 10%;
    right: 16%;
}
.familiarcont {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 80px;
}
.familiarcont .box{
    position: relative;
    width: calc((100% - 6% - 240px) / 3);
    padding: 40px 40px 20px;
    margin-right: 3%;
    background-color: #F7F8FA;
    border-radius: 20px;
    margin-bottom: 30px;
}.familiarcont .box:nth-of-type(3n) {
    margin-right: 0px;
}
.familiarcont .box .anc {
  position: absolute;
  height: 90px;
  top: -90px;
  visibility: hidden;
}
.familiarcont .img{
    text-align: center;
}
.familiarcont h4{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.familiarcont h5{
    color: #0064AC;
    font-size: 18px;
    font-weight: 600;
}
.familiarcont .come{
    padding-bottom: 20px;
}
#message {
    background-image: url(../../img/bg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-top: 150px;
    padding-bottom: 270px;
}
#message .box {
    float: left;
}
#message .photo {
    width: 49%;
    float: right;
}
#message .photo img {
    width: 100%;
    border-radius: 20px;
    height: auto;
}
#about {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 110px;
}
#about:after {
    content: " ";
    visibility: visible;
    position: absolute;
    width: 100%;
    height: calc(100% + 60px);
    top: -60px;
    background-color: #F7F8FA;
    z-index: -1;
    border-radius: 30px;
}
#about  .title {
    text-align: right;
    position: absolute;
    z-index: 0;
    right: 0px;
    top: 110px;
}
#about .box {
    width: 30%;
    float: left;
    padding-right: 5%;
}
#about .box a {
    color: #1E293B;
    text-decoration: none;
}

#about .box:nth-of-type(2n) {
    padding-top: 80px;
}

#about .box:nth-of-type(3n) {
    padding-right: 0px;
    padding-top: 160px;
}

#about .box .photo img {
    width: 100%;
    border-radius: 20px;
    height: auto;
}
#about .box .photo {
    padding-bottom: 0px;
    position: relative;
    margin-bottom: 20px;
}
#about .box .photo:after {
    content: " ";
    visibility: visible;
    position: absolute;
    background-image: url(../img/arrow04.png);
    background-size: cover;
    width: 80px;
    height: 80px;
    right: 25px;
    bottom: 25px;
    z-index: 10;
    transition: 0.2s;
}
#about .box .photo:hover:after{
    
    background-image: url(../img/arrow04_over.png);
}

#about .box h4 {
    font-size: 22px;
    line-height: 1.6em;
    font-weight: 600;
}
#appeal {
    padding-top: 120px;
    position: relative;
    padding-bottom: 160px;
}
#appeal .inner1146 .box {
    background-color: #FFFFFF;
    padding-top: 60px;
    width: 45%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-top-right-radius: 20px;
    z-index: 10;
}
#appeal .inner1146 .box {
    background-color: #FFFFFF;
    padding-top: 60px;
    width: 45%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-top-right-radius: 20px;
}
#appeal .photo  {
    position: relative;
    padding-bottom: 70px;
}
#appeal .photo img  {
    width: 100%;
    border-radius: 20px;
    height: auto;
    position: relative;
}

#environment {
    padding-top: 150px;
    padding-bottom: 150px;
}
#environment .box {
    float: left;
}
#environment .photo {
    width: 49%;
    float: right;
}
#environment .photo img {
    width: 100%;
    border-radius: 20px;
    height:auto;
}
    
#recruit {
    position: relative;
    margin-bottom: 120px;
}
#recruit .box {
    background-color: #FFFFFF;
    padding-top: 60px;
    width: 87%;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    z-index: 10;
}
#recruit .photo  {
    position: relative;
    padding-bottom: 130px;
}
#recruit .photo img  {
    width: 100%;
    height: auto;
    position: relative;
}
#recruit .title{
    padding-left: 6%;
    float: left;
}
#recruit .come{
    width: 45%;
    padding-right: 6%;
    float: right;
}#interview {
    position: relative;
}
#interview:after{
    content: " ";
    visibility: visible;
    background-color: #F7F8FA;
    width: 84%;
    height: calc(100% - 30px);
    bottom: 0px;
    right: 0;
    position: absolute;
    border-top-left-radius: 90px;
}
#interview .interview {
    width: 80%;
    margin-right: 0px;
    margin-left: auto;
}
.tech01 {
    background-color: #F7F8FA;
    padding-bottom: 60px;
    padding-top: 20px;
}
.tech01 .inner {
    margin: 0 auto;
	width: 90%;
    max-width: 860px;
    padding-top: 120px;
    position: relative;
}
.tech01 .inner .photo {
	position: relative;
}

.tech01 .inner .photo img {
	width: 100%;
	height: auto;
}


.tech01 .box {
    width: 76%;
    padding-bottom: 15px;
    position: relative;
    z-index: 10;
}
.tech01 h4 {
    color: #009CD6;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6em;
    padding-bottom: 0px;
}
.tech01 .box:nth-of-type(2) h4{
    color: #00AFD0;
}
.tech01 .box:nth-of-type(3) h4{
    color: #0064AC;
}
.tech01 .box:nth-of-type(4) h4{
    color: #67788B;
}
.tech01 .hr {
    position: relative;
    border-style: none;
    width: 100%;
    height: 1px;
    background-color: #BAC2D1;
    margin: 2px 0;
}
.tech01 .hr:after {
    content: " ";
    visibility: visible;
    background-image: url(../../img/technology/dot.png);
    width: 8px;
    height: 8px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 8px auto;
    top: -4px;
    right: 0;
}
.tech01 .img{
	width: 47%;
    position: absolute;
    right: 0;
    top: 120px;
}
.tech01 .img .tri {
    position: relative;
}
@keyframes blinking {
   0% {
   opacity: 0.4;
   }
   100% {
   opacity: 1;
   }
}
.tech01 .img .grow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: blinking 1s ease-in-out infinite alternate;
	width: 43%;
}
.tech01 .img .grow img{
	width: 100%;
	height: auto;
}
.techlist table {
    width: 100%;
    border-bottom-color: #7C90A7;
    border-top-color: #7C90A7;
    border-bottom-style: solid;
    border-top-style: solid;
    border-bottom-width: 1px;
    border-top-width: 1px;
}
.techlist th {
    background-color: #F7F8FA;
    padding: 20px 40px;
    border-bottom: 6px solid #FFFFFF;
    width: 120px;
}
.techlist td {
    background-color: #F7F8FA;
    padding: 20px 0 10px;
    border-bottom: 6px solid #FFFFFF;
}
.techlist tr:last-of-type td ,.techlist tr:last-of-type th{
    border-bottom-style: none;
}
.cat1 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    border-radius: 16px;
    background-color: #7C90A7;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 70px;
    padding-bottom: 0pt;
    margin-bottom: 10px;
    font-size: 24px;
    min-width: 120px;
    padding-left: 25px;
    padding-right: 25px;
}

.cat2 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    border-radius: 14px;
    background-color: #7C90A7;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 60px;
    padding-bottom: 0pt;
    margin-bottom: 10px;
    font-size: 22px;
    padding-left: 25px;
    padding-right: 25px;
    min-width: 100px;
}
.cat3 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 12px;
    background-color: #7C90A7;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 50px;
    padding-bottom: 0pt;
    margin-bottom: 10px;
    font-size: 18px;
    padding-left: 25px;
    padding-right: 25px;
    min-width: 70px;
}
.cat4 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 8px;
    background-color: #7C90A7;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 40px;
    padding-bottom: 0pt;
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 70px;
}
.catwrap {
    display: inline-block;
    vertical-align: middle;
}
.catbox {
    display: block;
}
.lbl .cat1,.lbl .cat2,.lbl .cat3,.lbl .cat4{
    background-color: #009CD6;
}
.bl .cat1,.bl .cat2,.bl .cat3,.bl .cat4{
    background-color: #0064AC;
}
.photo2line {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
}
.photo2line .box{
    width: 47%;
    padding-right: 6%;
}
.photo2line .box:nth-of-type(2n) {
    padding-right: 0px;
}
.photo2line .photo{
    padding-bottom: 40px;
}
.photo2line .photo img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.tech03 {
    margin: 0 auto;
    width: 90%;
    max-width: 892px;
    padding-bottom: 110px;

}
.voice {
    position: relative;
    padding-bottom: 60px;
    letter-spacing: -1em;
}
.voice .img {
    width: 18%;
    padding-right: 6%;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0;
}
.voice .img img {
    width: 100%;
    height: auto;
}
.voice:nth-of-type(2n) .img {
    padding-right: 0%;
    padding-left: 6%;
    
}
.baloon02{
    position:relative;
    width:54%;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0;
    background:#EAEDF1;
    padding:70px 11% 50px;
    border-radius:25px;
    -webkit-border-radius:25px;
    -moz-border-radius:25px;
}
.baloon02 .photo {
    padding-top: 30px;
}

.baloon02 .photo img {
    width: 100%;
    height: auto;
}

.baloon02::after{
    visibility: visible;
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(234, 237, 241, 0);
    border-top-width:17px;
    border-bottom-width:17px;
    border-left-width:56px;
    border-right-width:56px;
    border-right-color:#EAEDF1;
    right:100%;
    top:50%;
    transform: translateY(-50%);
}
.baloon03{
    position:relative;
    width:54%;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0;
    background:#EAEDF1;
    padding:70px 11% 50px;
    border-radius:25px;
    -webkit-border-radius:25px;
    -moz-border-radius:25px;
}
.baloon03::after{
    visibility: visible;
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(234, 237, 241, 0);
    border-top-width:17px;
    border-bottom-width:17px;
    border-left-width:56px;
    border-right-width:56px;
    transform: translateY(-50%);
    border-left-color:#EAEDF1;
    left:100%;
    top:50%;
}
.voice  .komidashi  {
    padding-bottom: 20px;
}

.more{
    display:inline-block;
    width: 100px;
    padding:0 60px 0 0;
    text-align:center;
    color:#0064AC;
    text-decoration: none;
    margin:5px;
    cursor:pointer;
    position: relative;
    font-size: 18px;
    line-height: 1em;
}
.more a{    
    text-decoration: none;
    color:#0064AC;
    font-size: 18px;
    line-height: 1em;
}
.more:hover a{    
    color: #1E293B;
}
.more::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 25px;
    height: 1px;
    background: #0064AC;
    transition: .3s;
}
.more::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-left: 1px solid #0064AC;
    border-bottom: 1px solid #0064AC;
    transform: rotate(-135deg);
    transition: .3s;
}
.more:hover::before{
    right: 0px;
    width: 40px;
    background: #1E293B;
}
.more:hover::after{
    right: 0px;
    border-color: #1E293B;
}

.error_msg {
    background: #fff;
    border: 1px solid #333;
    padding: 15px 15px 15px 40px;
    position: absolute;
	top:66px;
	left:0;
	border-radius: 5px;
			box-shadow: 3px 3px 5px 0 #666;			

    /* 以下は不要です */
	background-image: url("../img/error-icon.png");
	background-position: 10px center;
	background-repeat: no-repeat;
	background-size: 25px 25px;
    width: 80%;
    margin: 25px auto;
}
.error_msg.txt{
	top:70px;
}
.error_msg::before,
.error_msg::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 16px 10px;
    position: absolute;
    left: calc(10% - 5px);
}
.error_msg::before {
    border-color: transparent transparent #333 transparent;
    top: -16px;
}
.error_msg::after {
    border-color: transparent transparent #fff transparent;
    top: -12px;
}


.error_msg_yubin {
    background: #fff;
    border: 1px solid #333;
    padding: 15px 15px 15px 40px;
    position: relative;
    top: 0px;
    left: 0;
    border-radius: 5px;
    box-shadow: 3px 3px 5px 0 #666;
    background-image: url(../img/error-icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    width: 80%;
margin:0;
}
.error_msg_yubin.txt{
	top:70px;
}
.error_msg_yubin::before,
.error_msg::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 16px 10px;
    position: absolute;
    left: calc(10% - 5px);
}
.error_msg_yubin::before {
    border-color: transparent transparent #333 transparent;
    top: -16px;
}
.error_msg_yubin::after {
    border-color: transparent transparent #fff transparent;
    top: -12px;
}



.error_msg_yubin2 {
    background: #fff;
    border: 1px solid #333;
    padding: 15px 15px 15px 40px;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 5px;
    box-shadow: 3px 3px 5px 0 #666;
    background-image: url(../img/error-icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    width: 80%;
margin:0;
}
.error_msg_yubin2.txt{
	top:70px;
}
.error_msg_yubin2::before,
.error_msg2::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 16px 10px;
    position: absolute;
    left: calc(10% - 5px);
}
.error_msg_yubin2::before {
    border-color: transparent transparent #333 transparent;
    top: -16px;
}
.error_msg_yubin2::after {
    border-color: transparent transparent #fff transparent;
    top: -12px;
}



.error_msg_agree {
    background: #fff;
    border: 1px solid #333;
    padding: 15px 15px 15px 40px;
    position: relative;
    top: 0;
    left: 0;
	right:0;
    border-radius: 5px;
    box-shadow: 3px 3px 5px 0 #666;
    background-image: url(../img/error-icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    width: 55%;
margin:0 auto;
}
.error_msg_agree.txt{
	top:70px;
}
.error_msg_agree::before,
.error_msg2::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 16px 10px;
    position: absolute;
    left: calc(50% - 5px);
}
.error_msg_agree::before {
    border-color: transparent transparent #333 transparent;
    top: -16px;
}
.error_msg_agree::after {
    border-color: transparent transparent #fff transparent;
    top: -12px;
}






.error_msg2 {
    background: #fff;
    border: 1px solid #333;
    padding: 15px 15px 15px 40px;
    position: absolute;
	top:70px;
	left:0;
	border-radius: 5px;
			box-shadow: 3px 3px 5px 0 #666;			

    /* 以下は不要です */
	background-image: url("../img/error-icon.png");
	background-position: 10px center;
	background-repeat: no-repeat;
	background-size: 25px 25px;
    width: 80%;
    margin: 25px auto;
}
.error_msg2::before,
.error_msg2::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 16px 10px;
    position: absolute;
    left: calc(10% - 5px);
}
.error_msg2::before {
    border-color: transparent transparent #333 transparent;
    top: -16px;
}
.error_msg2::after {
    border-color: transparent transparent #fff transparent;
    top: -12px;
}


