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

* {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
}

body {
  color: #111;
  background-color: #f1fdff;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  word-wrap: break-word;
  height: 100%;
}

section {
  padding: 3em 0 !important;
}

p {
  font-size: 1.1em;
  line-height: 1.5;
}

h3 {
  position: relative;
  padding: 1em 0 .5em 0;
  border-bottom: 6px solid #003466;
	font-size: 1.3em;
	margin-bottom: 1em;
}

h3:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #3B8CDB;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

li {
  list-style-type: none;
}

.d-none {
  display: none;
}

.text-center {text-align: center;}

.bg_gray {background-color: #fbf9f7 !important;}


/*margin padding */
.mt-2 {margin-top: 2em;}
.mb-2 {margin-bottom: 2em;}


/*anination */

.fadeup{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeupt{
    opacity: 0;
}

/*===========================================================*/
/*header */
/*===========================================================*/

header {
  width: 100%;
  background-color: #f1fdff;
  z-index: 999;
}
header h1 {
  font-size: .7em;
  color: #147dc4;
  padding: 0.3em;
}
header #h_contact a {
  display: block;
  text-align: center;
  position: absolute;
  text-decoration: none;
  color: #147dc4;
  letter-spacing: 1px;
  border: 1px solid #999;
}
header #h_contact a:hover {
  color: #ffffff;
  background-color: #147dc4;
  border: 1px solid #FFF;
}
header #h_tel a {
  display: block;
  text-align: center;
  position: absolute;
  text-decoration: none;
  color: #147dc4;
  letter-spacing: 1px;
  pointer-events: none;
}
header #h_contact a i,
header #h_tel a i {
  padding-left: 5px;
  padding-right: 10px;
}

#g_nav ul li a#h_contact {
  cursor: pointer;
  overflow: hidden;
}
/*===========================================================*/
/*content */
/*===========================================================*/

.content {
  width: 100%;
  background-color: #FFF;
	padding: 2em 10px;
}
.cont_wrap {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.cont_wraps {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.content h2 {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #512c14;
  text-align: center;
	padding: 15px 10px;
  clear: both;
}

.content h2 span{
  font-size: 14px;
  color: #999;
	display: block;
}

/*===========================================================*/
/*toppage */
/*===========================================================*/
/*
top_slider
-------------------------------------------*/
#top_slider {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#top_slider #top_sr_area {
  position: absolute;
  top: 50%;
  z-index: 10;
  text-align: center;
  width: 100%;
  color: #147dc4;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
             -2px 2px 0 #FFF, 2px -2px 0 #FFF,
             0px 2px 0 #FFF,  0-2px 0 #FFF,
             -2px 0 0 #FFF, 2px 0 0 #FFF;
}

#top_slider #top_sr_area h2 {
  font-size: 50px;
  letter-spacing: 2px;
}
#top_slider #top_sr_area p {
  font-size: 24px;
}

/* 黄色のライン（帯エリア）の中央寄せ設定 */
.yellow_line_banner ul {
  display: flex;
  flex-direction: column;
  align-items: center; /* 横方向の中央寄せ */
  justify-content: center; /* 縦方向の中央寄せ */
  text-align: center; /* テキストの中央寄せ */
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.yellow_line_banner li {
  margin-bottom: 10px; /* バナーとテキストの間の余白調整 */
}

.yellow_line_banner li:last-child {
  margin-bottom: 0;
}

/*
news
-------------------------------------------*/
#top_news {
  background-color: #f7f3ef;
}
#top_news .ul_news li {
  line-height: 30px;
  border-bottom: 1px dotted #CCC;
  font-size: 16px;
	padding: 0 10px;
}
#top_news .ul_news li a {
  text-decoration: none;
	color: #333;
	display: block;
	padding: 20px;
}
#top_news .ul_news li a:hover {
  color: #000;
  background-color: #ffffff;
}
#top_news .ul_news li span {
  color: #999;
  padding-right: 20px;
}

/*
btn_more
-------------------------------------------*/
.btn_more a {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 60%;
  background-color: #147dc4;
	margin: 20px auto 30px;
  line-height: 30px;
  border: 3px solid #147dc4;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  max-width: 500px;
  clear: both;
}
.btn_more a:hover {
  color: #333333;
  text-align: center;
  background-color: #ffffff;
  width: 60%;
  border: 3px solid #147dc4;
}
.btn_more a:before{
  content: "";
  position: absolute;
  top:60%;
  right:25%;
  width: 5%;
  height: 1px;
  background: #ffffff;
}

.btn_more a::after {
  content: "";
  position: absolute;
  top: 44%;
  right:25%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
}

.btn_more a:hover::before{
  background:#147dc4;
  right:20%;
  width: 10%;
}

.btn_more a:hover::after{
  border-top: 1px solid #147dc4;
  border-right: 1px solid #147dc4;
  right:20%;
}

/*
concept
-------------------------------------------*/
#concept {
  overflow: hidden;
	padding-top: 4em;
}

#concept .conc_area{
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:0 0 200px 0;
}

#concept .conc_area::after{
  content:'';
  position: absolute;
  width: 70%;
  height: 23em;
  background:#f3f3f3;
  right:10%;
  top:20%;
  z-index: -1;
}

#concept .conc_area:nth-of-type(2n+1){
  flex-direction: row-reverse;
}

#concept .conc_area .img{
  width:50%;
  max-width: 100%;
}

#concept .conc_area .conc_sub{
  width:40%;
  background:#fff;
  box-shadow: 0 0 20px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top:180px;
	left: 100px;
}

#concept .conc_area .conc_sub_area{
  padding:40px;   
}

#concept .conc_area .conc_sub_area h2{
  text-align: center;
  font-size: 2em;
  margin: 0 0 30px 0;
  line-height: 1.5;
	color: #147dc4 !important;
}

#concept .conc_area .conc_sub_area h2 span{
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 1.2rem;
}

#concept .conc_area .conc_sub_area p{
  margin:0 0 30px 0;   
}

/*
service
-------------------------------------------*/
#top_service {margin: 3em auto;}

.serv_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.serv_list .list_box {
	width: 32%;
	background-color: #f5fffd;
  position: relative;
}
.serv_list .list_box:before,.serv_list .list_box:after{ 
    content:'';
    width: 30px;
    height: 40px;
    position: absolute;
    display: inline-block;
}
.serv_list .list_box:before{
    border-left: solid 5px #4672ff;
    border-top: solid 5px #4672ff;
    top:0;
    left: 0;
}
.serv_list .list_box:after{
    border-right: solid 5px #4672ff;
    border-bottom: solid 5px #4672ff;
    bottom:0;
    right: 0;
}

.serv_list .list_box:hover {
	background-color: #fff;
  box-shadow: 0 0 20px #ccc;
}

.serv_list .list_box h2 {
  color:#512c14;
	width: 80%;
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 30px;
  padding: 1rem 2rem;
  position: relative;
  background: repeating-linear-gradient(-30deg, #ffffff, #ffffff 3px,#beffff 3px, #beffff 7px);
	border-radius: 0 20px 0 0 ;
}

.serv_list .list_box p {
	font-size: 1em;
	padding: 2em 3em;
}

.serv_list .list_box img {
	width: 94%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	margin-bottom: 15px;
	border-radius: 5px;
}

.serv_list .list_box  a{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

/*
top_solution
-------------------------------------------*/
#top_solution {
  background-color: #fcf0e2;
	margin-top: 3em;
	padding: 4em 0 !important;
}

.sol_img_box {
  display: flex;
	justify-content:space-around;
}
.sol_img_box img{
  width: 100%;
	max-width: 243px;
}
.sol_text_box p{
  color: #512c14;
	font-size: 1.8em;
	font-weight: bold;
	text-align: center;
	margin-top: 1em;
  -webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #147dc4;
}
.sol_text_box p span.sol_line{
     position: relative;
     display: inline-block;
     padding-bottom:0.5em;
     border-bottom: 2px solid #147dc4;
}
      
.sol_text_box p span.sol_line::before,
.sol_text_box p span.sol_line::after {
     position: absolute;
     top: 100%;
     left:50%;
     transform:translateX(-50%);
     content: '';
     border: 10px solid transparent;
}
 
.sol_text_box p span.sol_line::before {
     border-top: 13px solid #147dc4;
}
 
.sol_text_box p span.sol_line::after {
     margin-top: -3px;
     border-top: 13px solid #fcf0e2;
}

.sol_text_box h2{
  color: #d8431e;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	margin-top: 1em;
  -webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #d8431e;
}

.sol_warp {
  display: flex;
	justify-content: space-around;
	align-items: center;
}
.sol_box{
	margin: 2em auto;
	background-color:#fff;
	padding:2em;
	position:relative;
	border: 2px solid #666;
}
.sol_box .sol_title {
  background: #d8431e;
	font-size: 1.3em;
	font-weight:800;
	color: #fff;
	padding: 5px 10px;
	line-height: 1;
	position:absolute;
	top: -15px;
	left: 20px;
}
.sol_box .sol_text {
  font-size: 1.3em;
	font-weight: bold;
}
.sol_box .sol_text span{
  background:linear-gradient(transparent 50%, rgba(248,255,0,0.50) 50%);
}

.sol_right {text-align: center;}

/*
footer_slider
-------------------------------------------*/
#ft_example {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: url("../img/f_area.jpg") no-repeat top center;
	background-size: cover;
  background-color:rgba(255,255,255,0.3);
  background-blend-mode:color;
	padding: 2em 0;
}

#ft_slider img {
  width:100%;
  height:auto;
}

#ft_slider .slick-slide {
  margin:0 10px;
}
#ft_slider li {
	position: relative;
}

/*
フッター
-------------------------------------------*/

footer {
	background-color: #f1fdfff;
	color: #345;
	clear: both;
	width: 100%;
	display: block;
	padding-top: 40px;
}

footer .cont_wrap p {
  margin: 0;
	font-size: 13px;
	padding: 0 10px 10px;
}
footer .cont_wrap .f_nav_1,
footer .cont_wrap .f_nav_2{
	width: 50%;
	padding: 0 10px 10px;
}

footer .cont_wrap ul {
	padding: 10px;
}

footer .cont_wrap ul li a {
	display: block;
	text-decoration: none;
	font-size: 1em;
	color: #555;
	padding: 1em 0;
  border-bottom: 1px dashed #000000;
}

footer .cont_wrap ul li a:hover {
	color: #147dc4;
	background-color: rgba(217,147,102,0.20);
}
footer #f_copy {
  clear: both;
  background-color: #147dc4;
  color: #ffffff;
  padding:8px 0;
}

address {
  font-size: 12px;
  font-style: normal;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  margin: 0 auto;
}

/*
page_top
-------------------------------------------*/
#page_top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#fff9e2;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #147dc4;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page_top a:hover{
  background: #fbf9f7;
	color: #ffffff
}

#page_top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page_top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page_top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/*===========================================================*/
/*下層 */
/*===========================================================*/

#sub_top {
  background-color: #EEE;
  background-repeat: no-repeat;
  background-position: topcenter;
  height: 500px;
  line-height: 30px;
  padding-top: 300px;
  width: 100%;
  background-size: cover;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #000000;
  font-size: 2.2em;
  letter-spacing: 0.5em;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
   text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0-2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
#sub_top span {
  display: block;
	margin-top: 1em;
}
.sub_content {
  background-color: #fcf0e2;
}

.sub_title {
  font-size: 1.3em !important;
	text-align: center;
	margin: 2em auto;
	padding: 0 1em;
}

.pan {
  background-color: #e4e4e4;
  font-size: 14px;
  line-height: 30px;
  color: #555;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  border-top: 1px solid #FFF;
}

.pan ul {
  width: 96%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.pan li {
  display: inline-block;
}

.pan li a {
  text-decoration: none;
  color: #999;
}

.pan li a::after {
  content: ">";
  padding-left: 10px;
  padding-right: 10px;
}

.pan li a:hover {
  color: #111;
}

.pan li i {
  padding-right: 5px;
	color: #003466;
}

/*
サブトップ
-------------------------------------------*/
#sub_top.works {
  background-image: url(../img/sub_top_works2.jpg);
}
#sub_top.facilty {
  background-image: url(../img/sub_top_facilty.jpg);
}
#sub_top.lumber {
  background-image: url(../img/sub_top_lumber.jpg);
}
 #sub_top.neko2 {
  background-image: url(../img/neko2.jpg);
 }
 #sub_top.inutoneko001 {
  background-image: url(../img/inutoneko001.png);
}
#sub_top.hojyokin {
  background-image: url(../img/sub_top_hojyokin2.jpg);
}
#sub_top.aboutus {
  background-image: url(../img/sub_top_aboutus.jpg);
}
#sub_top.contact {
  background-image: url(../img/sub_top_contact.jpg);
}
#sub_top.recruit {
  background-image: url(../img/sub_top_recruit.jpg);
}

/*
営業エリア
-------------------------------------------*/
.area_box {
  display: flex;
	justify-content: space-between;
}

.a_box{
  width: 50%;
	text-align: center;
	padding: 0 1em;
}

.a_box:first-child {
  border-right: 2px dotted #147dc4;
}
.a_pre {
  text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 1em;
	position: relative;
  left: 0;
}
.a_pre::before {
	content: '';
	display: block;
	width: 85px;
	height: 5px;
	background: #147dc4;
	margin: 0 auto 10px;
}
.a_city {
	font-size: 1em !important;
  text-align: center;
}

/*===========================================================*/
/*事例紹介 */
/*===========================================================*/
.works_img {
  text-align: center;
}
.works_img img{
  width: 100%;
	max-width: 100%;
}

ul.works_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  padding: 0 30px;
}

ul.works_list li {
  width: 21%;
  position: relative;
  text-align: center;
}
ul.works_list li a,
ul.works_list li.active{
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px;
	color: #ffffff;
  border: 1px dotted #CCC;
	background-color: #999999;
  text-decoration: none;
}
ul.works_list li a:hover {
	background-color: #003466;
}
ul.works_list li.active {
	background-color: #003466;
}

ul.works_img_list {
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.works_img_list li {
	width: 32%;
}

.works_img_list li img {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.work_text {
  padding: .5em 1em;
}
ul.works_img_list::after {
  display: block;
  content:"";
	width: 32%;
}
/*===========================================================*/
/*iezukuri */
/*===========================================================*/
.text_box {
  background-color: #ffffff;
	padding: 3em;
	width: 100%;
	margin: 0 auto;
	line-height: 2;
}
.text_box p{
  font-size: 1.2em !important;
  text-align: justify;
  text-justify: inter-ideograph;
}

.iezukuri_box {
  display: flex;
	justify-content: space-between;
}

.i_l_box,
.i_r_box{
  width: 50%;
}

.i_l_box img,
.i_r_box img{
  width: 90%;
	max-width: 100%;
}
.i_text {
  padding: 2em;
  display: grid;
	place-items: center center;
	line-height: 2;
}
.flex_reverse {
    flex-direction: row-reverse;
}
h2.i_color1 {
  color: #512c14 !important;
	border-bottom: solid 3px #f2a326;
  display: inline-block;
}

h2.i_color2 {
  color: #512c14 !important;
	border-bottom: solid 3px #4d9bc5;
  display: inline-block;
}

h2.i_color3 {
  color: #512c14 !important;
	border-bottom: solid 3px #147dc4;
  display: inline-block;
}

.ie_title1 {
  font-size: 2em !important;
	text-align: center;
	margin: 2em auto;
	padding: 0 1em;
}

.ie_title2 {
  font-size: 1.7em !important;
	text-align: center;
	margin-bottom: 2em;
	padding: 0 1em;
}
.ie_title2 span {
  color: #d8431e;
	font-weight: bold;
}

/*******************
 aboutus
********************/

table#t_aboutus{
  width: 100%;
  border-collapse: collapse;
	margin: 0 auto;
}

table#t_aboutus tr{
  border-bottom: solid 2px white;
}

table#t_aboutus tr:last-child{
  border-bottom: none;
}

table#t_aboutus th{
  font-size: 1.2em;
	font-weight: normal;
  position: relative;
  text-align: left;
  width: 25%;
  background-color: #408ea7;
  color: white;
  padding: 15px 0 15px 30px;
}

table#t_aboutus th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #408ea7;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table#t_aboutus td{
  font-size: 1.1em;
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 15px 0 15px 30px;
}

.iframe_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******************
 contact
********************/
input,
textarea,
select{
  background-color: #ffffff;
}
input[type="text"], textarea, select {
	width:90%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:25%;
	height:40px;
	margin: 1em;
	font-weight: bold;
}

input[type="submit"]{
  background-color: #ffffff;
	color: #452619 !important;
	border: 1px solid #147dc4
}
input[type="submit"]:hover{
  background-color: #147dc4;
	color: #ffffff !important;
	border: 1px solid #147dc4
}

input[type="reset"],
input[type="button"] {
  background-color: #B1B1B1;
	color: #ffffff !important;
	border: 1px solid #B1B1B1
}
input[type="reset"]:hover,
input[type="button"]:hover {
  background-color: #ffffff;
	color: #B1B1B1 !important;
	border: 1px solid #B1B1B1
}

#t_aboutus th span{
  background-color: #ffffff;
	border-radius: 10px;
  font-size: .7em;
  color: #C10105;
	font-weight: bold;
	margin-left: .5em;
	padding: .3em .5em
}

.sel_box {
	width:100%;
  margin: 30px auto 0;
  position: relative;
}
.sel_box::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #399a59 transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    pointer-events: none;
}

.sel_item {
	  width:90%;
    padding: 10px;
    -webkit-appearance: none;
    appearance: none; 
}

.btn_contact {
  display: flex;
	justify-content: center;margin-top: 1em;
}

/*******************
 404
********************/
#err_contents {
	text-align: center;
	margin: 3em auto;
}

/*===========================================================*/
/*media */
/*===========================================================*/
header #h_logo{
  max-width: 328px;
}

@media screen and (min-width:960px){
  body {
    font-size: 16px;
  }
	
	.pc_br {display: block;}
	
  /*
  ヘッダー
  -------------------------------------------*/
  header {
    height: 180px;
    position: fixed;
  }
  header #h_logo{
    text-align: center;
    margin: 1em auto;
  }

  header #h_wrap{
    background-color: #147dc4;
    padding: 0.1em 0;
  }
  header h1 {
    font-size: 16px;
    color: #ffffff;
    padding: 0.1em;
  }

  header #h_contact a {
    width: 160px;
    top: 50px;
    right: 10px;
    line-height: 38px;
    padding-top: 2px;
    font-size: 14px;
    font-weight: bold;
  }
  header #h_tel a {
    width: 180px;
    top: 40px;
    right: 180px;
    line-height: 38px;
    padding-top: 2px;
    font-size: 14px;
  }
  header #h_tel a strong {
    font-size: 18px;
  }
	header #h_tel span.h_time {
		 width: 180px;
	  display: block;
	  font-size: 13px;
	margin-top: -1em;
	}
	
  #header.height{
  	height:70px;
  	animation: DownAnime 0.5s forwards;
  }
  
  @keyframes DownAnime{
    from {
    	opacity: 0;
  	transform: translateY(-170px);
    }
    to {
    	opacity: 1;
  	transform: translateY(0);
    }
  }
  header.height #h_contact a,
  header.height #h_tel a {
    top: 5px;
  }
	
  .openbtn {
    display: none;
  }
	
  /*
  g_nav
  -------------------------------------------*/
  #g_nav {
    width: 100%;
    display: block;
    height: 50px;
    position: absolute;
    z-index: 1000;
    left: 0px !important;
    bottom: 0px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
  }

  #g_nav ul.g_nav_ul {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  #g_nav ul li{
    display: inline;
  }

  #g_nav li a {
    width: 16%;
    padding: 15px;
    display: block;
    color: #147dc4;
    text-decoration: none;
    text-align: center;
    line-height: 20px;
    position: relative;
    float: left;
  }

  #g_nav li a:hover,
  #g_nav li a.active,
  #g_nav ul li:hover > a {
    color: #999;
  }
  
  #g_nav li a::after {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: 2px;
      background:#147dc4;
      transition: all .3s;
      transform: scale(0, 1);
      transform-origin: left top;
  }
  
  #g_nav li a:hover::after {
      transform: scale(1, 1);
  }

  #g_nav ul li:hover > a#h_contact,
  #g_nav li a#h_contact:hover {
    position: relative;
  }

  #g_nav li a#h_contact::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -15px;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #FFF;
    border-left: 15px solid transparent;
     z-index: 300;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    transition: 0.2s linear;
  }

  #g_nav ul li:hover > a#h_contact::after,
  #g_nav li a#h_contact:hover::after {
    border-bottom: 20px solid #147dc4;
  }

  #g_nav ul li div {
    position: absolute;
    z-index: 2000;
    top: 50px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    width: 100%;
    height: auto;
    background-color: #147dc4;
  }
  #g_nav ul li ul{
    width: 96%;
    padding-left: 2%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  #g_nav li ul li a {
    width: 21%;
    padding-left: 3%;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 0;
    height: 20px;
    color: #FFF;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1%;
  }
  #g_nav li ul li a::after {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: 2px;
      background:#ffffff;
      transition: all .3s;
      transform: scale(0, 1);
      transform-origin: left top;
  }
  #g_nav ul li ul li a:hover{
    color: #fff;
  }
  #g_nav li li a::before {
    display: none;
  }

  #g_nav ul li:hover div{
    visibility: visible;
    opacity: 1;
  }

  #g_nav div.g_clist {
    display: block !important;
  }

  #top_slider {
    min-height: 920px;
  }
  #top_slider #top_sr_area h2 {
    font-size: 40px;
  }

  #top_slider #top_sr_area p {
    font-size: 12px;
  }

  .btn_more a {
    font-size: 20px;
    width: 30%;
  	margin: 20px auto 30px;
    line-height: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 500px;
  }
  /*
  btn_more
  -------------------------------------------*/
  .btn_more a {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 30%;
    background-color: #147dc4;
  	margin: 20px auto 30px;
    line-height: 30px;
    border: 3px solid #147dc4;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    max-width: 500px;
    clear: both;
  }
  .btn_more a:hover {
    color: #333333;
    text-align: center;
    background-color: #ffffff;
    width: 30%;
    border: 3px solid #147dc4;
  }
  .btn_more a:before{
    content: "";
    position: absolute;
    top:50%;
    right:25%;
    width: 5%;
    height: 1px;
    background: #ffffff;
  }
  
  .btn_more a::after {
    content: "";
    position: absolute;
    top: 44%;
    right:25%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg);
  }
  
  .btn_more a:hover::before{
    background:#147dc4;
    right:20%;
    width: 10%;
  }
  
  .btn_more a:hover::after{
    border-top: 1px solid #147dc4;
    border-right: 1px solid #147dc4;
    right:20%;
  }
  
  footer .cont_wrap {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
  }
  
  footer .cont_wrap .f_logo {
  	width: 25%;
  	padding: 10px;
  }
  footer .cont_wrap .f_add {
  	width: 30%;
  	padding: 10px;
  }
  footer .cont_wrap p {
    margin: 0;
  	font-size: 13px;
  	padding: 10px 0;
  }
  footer .cont_wrap ul li a {
    font-size: 13px;
	  padding: 0 0 .6em;
    border-bottom: none;
  }
  footer .cont_wrap ul li a:hover {
	  background-color: #ffffff;
    text-decoration: underline;
  }

	footer .cont_wrap .f_nav_box {
	  display: flex;
		justify-content: space-between;
		width: 40%;
	}
  footer .cont_wrap .f_nav_1,
  footer .cont_wrap .f_nav_2{
  	width: 50%;
  	padding: 10px;
  }

} /*min-width:960px */


@media screen and (min-width:1200px){
  header #h_contact a {
    right: 50%;
    margin-right: -600px;
  }
  header #h_tel a {
    right: 50%;
    margin-right: -400px;
  }

} /*min-width:1200px */

@media screen and (max-width:960px){

  body {
    font-size: 16px;
  }

  body.fixed {
    overflow: hidden;
  }

  img {
    max-width: 100% !important;
    height: auto;
    width :auto;
    margin-left:auto;
    margin-right:auto;
  }
  /*
  ヘッダー
  -------------------------------------------*/
  header {
    height: 70px;
  }

  header #h_logo {
    padding:0 1em;
  }

  header #h_contact a {
    width: 120px;
    top: 25px;
    right: 60px;
    line-height: 29px;
    padding-top: 1px;
    font-size: 12px;
  }
  header #h_tel a {
    width: 220px;
    top: 25px;
    right: 190px;
    line-height: 29px;
    padding-top: 1px;
    font-size: 12px;
  }
  header .h_menu,
	header #info,
	header #h_tel span.h_time {
	  display: none;
  }

  /*
  グローバルナビ
  -------------------------------------------*/
  #g_nav {
    position: fixed;
    width: 80%;
    height: 100%;
    top: 0px;
    left: 100%;
    padding-top: 50px;
    overflow: auto;
    z-index: 3000;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 0px;
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #g_nav ul {
    display: block;
    margin: 0px;
    padding: 0px;
    clear: both;
  }

  #g_nav ul li:first-child {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #EEE;
  }

  #g_nav ul li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #EEE;
  }

  #g_nav ul li a {
    color: #147dc4;
    text-decoration: none;
    display: block;
    padding-top: 16px;
    padding-right: 30px;
    padding-bottom: 14px;
    padding-left: 20px;
    line-height: 22px;
    vertical-align: middle;
  }
  #g_nav ul li a:hover {
    color: #999;
  }

  /*
   drop down
  --------------------------------------------------*/

  #g_nav ul li a.g_child {
    position: relative;
    background-image: none;
  }
  #g_nav ul li a.g_child::after {
    font-size: 11px;
    display: block;
    height: 20px;
    width: 20px;
    content: "▼";
    text-align: center;
    line-height: 20px;
    position: absolute;
    top: 16px;
    right: 10px;
    color: #147dc4;
  }
  #g_nav div.g_clist {
    display: none;
  }
  #g_nav ul li ul li {
    border-bottom: none;
  }
  #g_nav ul li li:first-child {
    border-top: none;
  }
  #g_nav ul li ul li a {
    border-bottom: none;
  }
  #g_nav ul li ul li a::before {
    content: "";
    padding-right: 5px;
    color: #147dc4;
  }

  #g_nav ul li ul li a:hover {
    color: #147dc4;
  }

  /*
   openbtn
  --------------------------------------------------*/
  .openbtn{
    display: block;
    height: 30px;
    width: 40px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    z-index: 9999;
    top: 24px;
    right: 5px;
    border-radius: 3px;
    cursor: pointer;
  }
  .openbtn:hover {
    cursor: pointer;
  }
  
  .openbtn span{
    width: 28px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -14px;
    background-color: #147dc4;
    transition: all 0.3s;
    transform: rotate(0deg);
  }
  
  .openbtn span:nth-of-type(1) {
    transform: translateY(-8px);
  }
  
  .openbtn span:nth-of-type(3) {
    transform: translateY(8px);
  }
  
  .openbtn:hover span:nth-of-type(1) {
    transform: translateY(-10px);
  }
  .openbtn:hover span:nth-of-type(3) {
    transform: translateY(10px);
  }

  .openbtn.opened span:nth-of-type(2) {
    background: rgba(255, 255, 255, 0);
    transform: translateX(30px);
  }
  .openbtn.opened span:nth-of-type(1) {
    transform: rotate(-45deg) translateY(0px);
  }
  .openbtn.opened span:nth-of-type(3) {
    transform: rotate(45deg) translateY(0px);
  }

  /*
  concept
  -------------------------------------------*/
  #concept .conc_area{
      margin:0 0 200px 0;   
  }
  #concept .conc_area .conc_sub{
    width:47%;
    top:100px;
  }  
	
  /*
  top_solution
  -------------------------------------------*/
  #top_solution {
  	padding: 4em 1em !important;
  }
 
  /*
  フッター
  -------------------------------------------*/
  address {
    padding-top: 10px;
    display: block;
    clear: both;
  }

  footer .cont_wrap {
  	display: inline-block;
		text-align: center;
  }
	
	footer .cont_wrap .f_add {
  	width: 100%;
  	padding: 10px;
  }
  footer .f_nav_box {
  	display: flex;
  }
 	footer .cont_wrap #f_nav_1,
 	footer .cont_wrap #f_nav_2{
	  width: 90%;
  }
	
  .no_sp {
    display: none;
  }

  #concept .conc_area .conc_sub{
    width:40%;
    top:150px;
  	left: 100px;
  }

} /*max-width:960px */

@media screen and (max-width:640px){
  .sm_p {
    padding: 1em;
  }

  header #h_logo img{
    height: 50px;
    margin-top: -1em !important;
  }

  header #h_contact a {
    width: 50px;
    font-size: 18px;
    border-top-style: none;
    border-bottom-style: none;
  }
  header #h_tel a {
    width: 50px;
    font-size: 18px;
    right: 100px;
  }
  header #h_tel a span,
  header #h_contact a span {
    display: none;
  }
  #top_slider {
    min-height: 350px;
  }
  #top_slider #top_sr_area h2 {
    font-size: 30px;
  }

  #top_slider #top_sr_area p {
    font-size: 12px;
  }

  /*
  concept
  -------------------------------------------*/
  #concept .conc_area{
      margin:0 0 50px 0;   
  }
  #concept .conc_area .img{
      width:100%;
      z-index: 2;
  }
  #concept .conc_area .conc_sub{
    width:100%;
    top:-10px;
    animation:none;
    opacity: 1;
    z-index: 1;
  }
  #concept .conc_area .conc_sub{
    width:100%;
    top:0;
  	left: 0;
  }

  .serv_list {
  	display: inline-block;
		justify-content: center;
  }
  
  .serv_list .list_box {
  	width: 90%;
  	background-color: #fff9e2;
		margin: 0 auto;
  }
  .serv_list .list_box p {
  	padding: 2em 1em;
  }

 
  top_solution
  -------------------------------------------*/
  #top_solution {
    background-color: #fcf0e2;
  	margin-top: 0;
  }
  
  .sol_img_box img{
  	max-width: 150px !important;
  }
 
  .sol_text_box p{
    color: #512c14;
  	font-size: 1.5em;
  	font-weight: bold;
  	text-align: center;
  	margin-top: 2em;
    -webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: #147dc4;
  }
  
  .sol_text_box h2{
    color: #d8431e;
  	font-size: 3em;
  	font-weight: bold;
  	text-align: center;
  	margin-top: 1em;
    -webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: #d8431e;
  }
  
  .sol_warp {
    display: inline-block;
  }

 /*
  sub_top
  -------------------------------------------*/
  #sub_top {
    height: 300px;
    line-height: 10px;
    padding-top: 150px;
    background-position: center 50px;
  }
  #sub_top span {
    display: block;
  	margin-top: 1em;
  }
	

  err
  -------------------------------------------*/
  #err_contents h2,
  #err_contents p {
	  text-align: left;
	}

} /*max-width:640px */

@media screen and (max-width:460px){
  section {
    padding: 1em 0 !important;
  }

  .content {
  	padding: 1em 10px;
  }
	
	.sm_br {display: block;}
  #index_top #top_catch h2 {
    font-size: 30px;
  }
  header #h_tel a {
    pointer-events: auto;
  }

  #top_service {margin: 1em auto;}

  /*
  concept
  -------------------------------------------*/
  ul.works_list {
    display: inline-block;
 }
  ul.works_list li a,
	ul.works_list li,
  ul.works_list li.active{
  	width: 100% !important;
  }
  ul.works_list li.active{
	  margin: 10px auto;
		width: 94% !important;
  }

  #top_solution {
  	margin-top: 0;
  	padding: 2em 1em !important;
  }
  .sol_box{
  	margin: 1em auto;
   	padding:1em;
  }
  .sol_img_box img{
  	max-width: 110px !important;
  }
 
  .sol_text_box p{
  	font-size: 1.4em;
  }
	
  .sol_text_box h2{
  	font-size: 2em;
  }
	
  .sol_img_box img{
  	max-width: 110px !important;
  }
	.sol_right img {
	  max-width: 100px !important;
	}
  /*
  sub_top
  -------------------------------------------*/
  #sub_top {
    font-size: 1.5em;
  }

  .text_box {
   	padding: 2em;
  	width: 90%;
  	margin: 0 auto;
  	line-height: 2;
  }
  .text_box p{
    font-size: 1.1em !important;
  }
  .iezukuri_box {
    display: inline-block;
  }
  
  .i_l_box,
  .i_r_box{
    width: 100%;
  }
  
  .i_text {
    padding: 2em;
  }
  
  .ie_title1 {
  	margin: 1em auto;
    font-size: 1.3em !important;
  }
  
  .ie_title2 {
    font-size: 1.2em !important;
  }
  .ie_title2 span {
    color: #d8431e;
  	font-weight: bold;
  }
	
 
  /*
  aboutus
  -------------------------------------------*/
	#t_aboutus th,
	#t_aboutus td{
	  display: block;
		width: 100% !important;
	}
}

/*========= temporary =========*/
.staff-box{
	background-color: #58B530;
	border-radius: 20px;
	width: 18% !important;
	padding: 1em;
	text-align: center;
	position: relative;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
.staff-box-i {
  z-index: 999;
}
p.staff-text {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.2em;
	margin: 0 auto;
	text-align: center;
}
p.staff-bosyu {
  border-radius: 10px;
	text-align: center;
	margin: 0 auto;
}
p.staff-bosyu span{
 color: #333333;
 font-weight: bold;
 
}
p.staff-color-y {
  background-color: #F7FF00;
}
p.staff-color-g {
  background-color: #AFAFAF;
}
.staff-box a{
	position: absolute;
  height: 100%;
  width: 100%;
	top: 0;
	left: 0;
}
.staff-box a:hover {
	background-color: rgba(255,255,255,0.30);
	border-radius: 20px;
}

.staff {
  margin-bottom: 1.5em;
}
.staff h4 {
  position: relative;
  overflow: hidden;
  padding: .5em 0 .5em 3em;
	background-color: #FFFFF6;
  font-size: 1.4em;
}

.staff h4:before {
  position: absolute;
  top: -50%;
  left: 0;
  width: 50px;
  height: 150%;
  content: '';
  background: #58B530;
}
.staff h4 span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 8px;
  padding-left: 18px;
  color: #fff;
}
.staff {padding: 0 3em 3em;}
.staff table {
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
  border-top: 1px solid #58B530;
  border-right: 1px solid #58B530;
}
.staff table th{
  text-align: left;
  color:#333333;
  background: #EEFFE6;
  border-left: 1px solid #58B530;
  border-bottom: 1px solid #58B530;
  width: 10%;
  padding: 1em;
}
.staff table td{
  text-align: left;
  border-left: 1px solid #58B530;
  border-bottom: 1px solid #58B530;
  width: 25%;
  padding: 1em;
	background-color: #ffffff;
}
/* テーブル全体のスタイル */
  .standard-table {
    width: 100%;
    max-width: 900px;
    border-collapse: collapse; /* 隣り合う線を1本にまとめる */
    border: 2px solid #333333; /* 外枠を少し太く */
    margin: 20px 0;
    line-height: 1.5;
    font-size: 16px;
  }

  /* 見出し（曜日など）とセルの共通設定 */
  .standard-table th, 
  .standard-table td {
    border: 1px solid #333333; /* すべてのセルを線で囲む */
    padding: 12px 8px;
    text-align: center;
    vertical-align: middle;
  }

  /* 見出し行の背景色 */
  .standard-table th {
    background-color: #eeeeee;
    font-weight: bold;
  }

  /* 左端の項目列（午前・午後） */
  .standard-table .time-label {
    background-color: #f9f9f9;
    font-weight: bold;
    width: 160px;
  }

  /* 土曜・日曜・祝日の文字色（お好みで調整可） */
  .text-sat { color: #0056b3; } /* 青 */
  .text-sun, .text-hol { color: #d00000; } /* 赤 */

  /* 記号を大きく太くする */
  .symbol {
    font-size: 1.2rem;
    font-weight: bold;
  }

  /* 注釈テキスト */
  .notes {
    font-weight: bold;
    margin-top: 10px;
    font-size: 15px;
  }
/* 1. すべてのセクションやコンテナの上下の枠線・影を強制的に消去 */
main, section, div, img, a {
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* 2. 背景が透けて青い線に見えるのを防ぐため背景色を統一 */
body, main {
  background-color: #ffffff !important;
}

/* 3. 疑似要素(::after, ::before)によるデザイン用ラインを消去 */
#top_qa_section::before, #top_qa_section::after,
.content::before, .content::after,
.video_box::before, .video_box::after {
  display: none !important;
  content: none !important;
}
/* ▼ 薄い黄色のライン（帯）用スタイル ▼ */
.yellow_line_banner {
  background-color: #fffde7; /* 薄い黄色 */
  border: 1px solid #fff59d; /* 薄い黄色の境界線 */
  border-radius: 8px;        /* 角を少し丸く */
  padding: 12px 20px;       /* 上下の余白 */
  margin: 15px 0;           /* 上下のすき間 */
}

.yellow_line_banner ul {
    display: flex;
    align-items: center;
    gap: 20px;                 /* バナーとテキストの間隔 */
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.yellow_line_banner .h_line_bnr img {
  display: block;
  height: auto;
  max-width: 200px;
}

.yellow_line_banner .banner_text {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  font-weight: bold;
}

/* スマホ対応（画面が狭いときは縦並びにする場合） */
@media screen and (max-width: 768px) {
  .yellow_line_banner ul {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/*===========================================================*/
/* 返済シミュレーション (Simulation Area) */
/*===========================================================*/

.sim_wrapper {
  max-width: 1000px;
  margin: 0 auto 3em;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  box-sizing: border-box;
}

.sim_card {
  flex: 1 1 450px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1effe;
  padding: 30px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.h2_blue {
  font-size: 1.25em;
  color: #147dc4;
  border-left: 5px solid #147dc4;
  padding: 4px 0 4px 12px;
  margin-bottom: 12px;
  font-weight: bold;
}

.text_angle p {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 20px;
}

/* テーブルデザイン */
.tbl_sim {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.tbl_sim tr {
  border-bottom: 1px dashed #e0e0e0;
}

.tbl_sim th {
  text-align: left;
  font-size: 0.95em;
  color: #333;
  padding: 12px 10px 12px 0;
  width: 35%;
  font-weight: bold;
  vertical-align: middle;
}

.tbl_sim td {
  padding: 12px 0;
  font-size: 0.95em;
  color: #333;
  vertical-align: middle;
}

/* フォーム入力フィールド */
.tbl_sim input[type="number"],
.tbl_sim input[type="text"] {
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.tbl_sim input[type="number"]:focus {
  border-color: #147dc4;
  outline: none;
  box-shadow: 0 0 5px rgba(20, 125, 196, 0.3);
}

.tbl_sim input[readonly] {
  background-color: #f5f7fa;
  color: #555;
  border-color: #ddd;
}

/* 試算結果エリア */
.tbl_sim tr.result_box {
  background-color: #f0f7ff;
  border-bottom: none;
}

.tbl_sim tr.result_box th,
.tbl_sim tr.result_box td {
  padding: 15px 10px;
  color: #003466;
  font-weight: bold;
}

.tbl_sim tr.result_box input {
  background-color: #ffffff;
  color: #d8431e;
  font-size: 1.2em;
  font-weight: bold;
  border: 1px solid #b3d7ff;
}

/* ボタンエリア */
.btn_group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 10px;
}

.btn_group .submit_button {
  width: 45%;
  height: 44px;
  margin: 0;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn_group input[type="button"].submit_button {
  background-color: #147dc4;
  color: #ffffff !important;
  border: 1px solid #147dc4;
}

.btn_group input[type="button"].submit_button:hover {
  background-color: #0d5f96;
  border-color: #0d5f96;
  box-shadow: 0 4px 10px rgba(20, 125, 196, 0.3);
}

.btn_group input[type="reset"].submit_button {
  background-color: #ffffff;
  color: #666666 !important;
  border: 1px solid #ccc;
}

.btn_group input[type="reset"].submit_button:hover {
  background-color: #f0f0f0;
  color: #333333 !important;
}

/* 見出しの区切り線 */
.qa-divider {
  border: 0;
  height: 4px;
  background: #0056b3;
  width: 950px;
  margin: 10px auto 0;
}

/* レスポンシブ対応 (スマホ表示) */
@media screen and (max-width: 768px) {
  .sim_wrapper {
    flex-direction: column;
  }
  
  .sim_card {
    width: 100%;
    flex: 1 1 auto;
  }

  .tbl_sim th,
  .tbl_sim td {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

  .tbl_sim tr {
    padding: 8px 0;
    display: block;
  }
}
/* 返済シミュレーションの見出し色指定 */
#top_qa h2 {
  color: #0056b3 !important;
}