@charset "utf-8";
/*==================================================
cmn
==================================================*/
html {
  font-size: 62.5%;
}
body {
background: #f8f8f8;
font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
color: #000;
font-size: 2rem;
line-height: 2em;
position: relative;
margin: 0px;
padding: 0px;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-o-text-size-adjust: 100%;
text-size-adjust: 100%;
}
header, nav, div, h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, img, table, tr, td, th, input, textarea, select, a, figure {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
span.h1_black {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background: #FF6E00;
  display: block;
  line-height: 2.5em;
}
p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}
a, input[type="submit"] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.sp {
  display: none;
}
.col-flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-re {
  flex-direction: row-reverse;
}
.col-mid {
  align-items: center;
}


/*==================================================
head
==================================================*/
.site-header {
  text-align: center;
  font-size: 1.8rem;
  padding: 0;
  background: #00b7ce;
}
.site-header h1 {
  width: 37.5%;
  line-height: 1.5em;
  font-size: 2.2rem;
	background: #00b7ce;
}
.site-header h1 .txt {
  text-align: left;
  display: inline-block;
}
.site-header .tel {
  width: 46.25%;
	background: #5bb93b;
}
.site-header .mail {
  width: 16.25%;
	background: #b89818;
}
.site-header .site-title {
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 1em;
}

.head-box {
    background: #00b7ce;
    margin: -8% -50px 2em;
    color: #fff;
    padding: 2em;
    text-align: center;
	position: relative;
}
.head-box h2 {
	color: #fff476;
	text-align: center!important;
	font-size: 4rem!important;
	margin: 0 0 10px!important;
}
.head-box p {
	font-size: 2.1rem!important;
	font-weight: bold;
}
.head-box .img01 {
	position: absolute;
	left: 2em;
	bottom: 0;
}
.head-box .img02 {
	position: absolute;
	right: 2em;
	bottom: 0;
}
/*==================================================
foot
==================================================*/
.site-footer {
  text-align: center;
  padding: 2em 0;
}
.site-footer address {
  text-align: center;
  font-style: normal;
  font-size: 80%;
  margin-top: 1em;
}

.footImg {
	text-align: center;
}
/*==================================================
accordion
==================================================*/
.menu {
  width: 100%;
}
.menu input {
  display: none; /*チェックボックスを隠す*/
}
/*バー部分*/
.menu label {
  cursor :pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  position: relative;
  margin: 0 0 1em;
  padding: 20px;
    background: #171c60;
    font-size: 2.5rem;
    font-weight: bold;
	text-align: left;
}
/*開いたときに表示される部分*/
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1px;
	text-align: center;
}
.menu li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}
#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li{
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
}
 /*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child,
#menu_bar03:checked ~ #links03 li:last-child {
  margin-bottom: 20px;
}
/*閉じた状態の矢印描画*/
.menu label:after{
    display: flex;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    font-weight: 900;
    transition: all 0.3s;
  position:absolute;
  right: 5%;
  top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  margin: auto;
}
/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + label:after{
    display: flex;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    font-weight: 900;
    transition: all 0.3s;
	transform: rotate(180deg);
  position:absolute;
  right: 5%;
  top: 30%;
  margin: auto;
}

/*==================================================
content
==================================================*/
main {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  background: #fff;

}

.fnavi{
	position: fixed;
	bottom: 0;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	transform: translateX(-50%);
	transform: translateY(100%);
	transition: .3s;
	z-index: 999;
}
.fnavi .tel{
	width: 42.5%;
}
.fnavi .sim{
	width: 57.5%;
}
.fnavi.show{
	transform: translateX(-50%);
	    transform: translateY(0);
}
section {
  padding: 12.5% 0;
}
.wrap {
  padding: 0 6.25%;
}
.txt-center {
  text-align: center;
}
.btn-box {
  background: #fff540;
	padding: 6.25% 0;
}
.btn-box .tel {
  width: 71.428571%;
}
.btn-box .mail {
  width: 25.714286%;
}
.btn-box .sim {
  margin-top: 2.857143%;
}

.sec01{
	padding: 6.25% 0;
}
.sec02 {
  background: #485269;
  position: relative;

}
.sec02 .wrap {
  position: relative;
  z-index: 2;
}
.sec02:after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 40%, rgba(72, 82, 105, 1) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
}
.bg-blue{
	background: #dbf0ff;
}
.sec03 {

	padding-top: 6.25%;
}
.sec04, .sec05 {
  padding-top: 0;
}
.tit01 {
  text-align: center;
  font-size: 5rem;
  line-height: 1.8em;
  padding: 1em 6.25%;
  background: #004db5;
  color: #fff;
  margin-bottom: 6.25%;
}

.sec02 h2 {
    margin-bottom: 1em;
}

.sec02 li {
    background-image: url(../img/lp_saimu_kt/sec01_icon.png);
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 2em;
    border-bottom: 2px solid #7f8696;
    padding-bottom: 1em;
    margin-bottom: 1em;
    font-size: 3.7rem;
    font-weight: bold;
    line-height: 1.6;
    color: #fff;
}

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

.sec03 ul {
    background: #fff;
    padding: 2em;
}

.sec03 li {
    background-image: url(../img/lp_saimu_kt/sec02_icon.gif);
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 2.5em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.7em;
    margin-bottom: 0.7em;
    font-size: 4.3rem;
    font-weight: bold;
    line-height: 1.4;
}

.sec03 li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.sec03 li span {
    background:linear-gradient(transparent 60%, #fff540 60%);
}

.sec04 ul {
list-style:none;
}

.sec04 li {
    background-image: url(../img/lp_saimu_kt/sec04_icon.gif);
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 3em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    font-size: 3.1rem;
    font-weight: bold;
    line-height: 1.6;
}

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

.sec05{
	background: #eee;
}

.sec05 .col {
    position: relative;
    width: 100%;
    background: #fff;
    margin-bottom: 2em;
}

.sec05 .col .title {
    position: absolute;
    left: 1em;
    top: 0;
}

.sec05 .col:last-child {
    margin-bottom: 0;
}

.sec05 .col h3 {
    border-bottom: 2px solid #ddd;
    text-align: center;
    padding: 1em 0;
    color: #004db5;
    font-size: 6rem;
    font-weight: 800;
}
.sec05 .col p {
    text-align: center;
    padding: 1.2em 0 1.5em;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.6;
}

.sec06 .col {
    width: 100%;
    background: #fff;
    margin-bottom: 2em;
    padding: 2em;
}

.sec06 .col:last-child {
    margin-bottom: 0;
}

.sec06 .col h3 {
    background: #004db5;
    color: #fff;
    text-align: center;
    font-size: 4.3rem;
    line-height: 1.3;
    padding: 0.8em 0;
    margin: -40px -40px 1em;
}

.sec06 .col h3 img {
    margin-bottom: 10px;
}

.sec06 .col h4 {
    text-align: center;
    border-bottom: 2px solid #ddd;
    margin-bottom: 2em;
    padding-bottom: 1.5em;
}

.sec06 .col p {
    font-size: 2.4rem;
    line-height: 2;
    font-weight: bold;
}

.sec06 .col .red {
    color: #de0101;
    font-weight: bold;
}

.sec07 h2 {
    margin-bottom: 2em;
}

.sec07 dl {
    border-bottom: 2px solid #ddd;
    margin-bottom: 1em;
    font-size: 2.8rem;
    line-height: 1.6;
}

.sec07 dt {
    background-image: url(../img/lp_saimu_kt/sec07_q.gif);
    background-position: top left;
    background-repeat: no-repeat;
    padding: 10px 0 0.8em 3em;
    font-weight: bold;
}

.sec07 dd {
    background-image: url(../img/lp_saimu_kt/sec07_a.gif);
    background-position: top left;
    background-repeat: no-repeat;
    padding: 10px 0 0.8em 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.tit01 .num{
	font-size: 150%;
	color: #fff540;
}
.case-box {
    text-align: center;
}

.case-box h3 {
	margin: 1em 0!important;
}

.case-box li {
	margin-bottom: 1em;
}

.faq-box h3{
	margin: 2em 0 1em!important;
	text-align: center;
}


/*==================================================
contact
==================================================*/
.contact{
	padding: 6.25%;
}
.mailform {
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 15px;
    text-align: left;
}
.mailform th,
.mailform td{
    width: 100%;
    display: block;
}
.mailform th{
    font-weight: bold;
    line-height:1.2em;
    padding-bottom:0.5em;
}
.mailform tr {
    display: block;
    margin-bottom: 20px;
}
.mailform th span {
    margin-left: 10px;
    font-size: 12px;
}
.mailform th span.required {
    background: #de0101;
    color: #fff;
    padding: 1px 10px;
}
.mailform td p.notice {
padding:10px;
font-size:12px;
line-height: 1.5em;
box-shadow:inset 0 0 4px rgba(0,0,0,0.3);
}

.mailform input[type="text"],
.mailform input[type="email"]{
    width: 100%;
    padding: 1em;
}
.mailform input.short {
    width: 70%!important;
}
.contact input[type="submit"] {
    background: #5bb93b;
    color: #fff;
    width: 100%;
    padding: 1.5em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}
.contact input.back {
    background: #a5a5a5!important;
}
.contact .attention {
    font-size: 12px;
    color: #9d9d9d;
}
.contact h2 {
    text-align: center;
    font-size: 160%;
    font-weight: bold;
    margin: 20px 0 30px;
}
.contact textarea {
width:100%;
min-height:5em;
padding:1em;
}

.inputHidden {
display:none;
}


/* セレクトメニュー */
.contact select {
appearance: none;/* Safariでのスタイルリセット */
-webkit-appearance: none;
-moz-appearance: none;
padding: 1em;
width:14em;
box-sizing: border-box;
color:#000;
display:block;
background: url(../img/common/icon_arr_btm16.svg) no-repeat right 10px center #EEE;
background-size: 8px auto;
border: #CCC solid 1px;
border-radius:6px;
}


/* ラジオボタン */
input[type="radio"] {
appearance: none;/* Safariでのスタイルリセット */
-webkit-appearance: none;
-moz-appearance: none;
}
label:has(input[type="radio"]) {
display:block;
}
td .col2 {
display:flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap:10px;
padding:1rem 0;
}
td .col2 > span {
display:block;
width:calc(50% - 5px);
margin: 0 !important;
box-sizing: border-box;
}
td .col2 span label input[type="radio"] {
display:none;
}
td .col2 span label > span {
display:block;
width:100%;
box-sizing: border-box;
text-align: center;
border:#CCC solid 1px;
padding:0.5em 0.5em;
border-radius:6px;
background: #EEE;
}
td .col2 span label input[type="radio"]:checked + span {
background: #d4638a;
border:#ca1c79 solid 1px;
color:#FFF;
}




@media screen and (max-width: 600px) {
/*==================================================
cmn
==================================================*/
  body {
    font-size: 15px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .site-header h1 {
    font-size: 3vw;
}
	.tit01 {
    font-size: 6vw;
	}
  .site-footer address {
    font-size: 10px;
  }
.menu label {
    font-size: 2rem;
}

.contact input[type="submit"] {
    height: 70px;
    line-height: 70px;
    padding: 0;
}

.sec02 li {
    font-size: 2rem;
    background-size:  auto 30px;
}

.sec03 ul {
    padding: 1.5em;
}

.sec03 li {
    font-size: 2.1rem;
    background-size:  auto 30px;
}

.sec04 li {
    background-size:  auto 40px;
    font-size: 2.1rem;
}

.sec05 .col h3 {
    font-size: 4rem;
}
.sec05 .col p {
    font-size: 2rem;
}

.sec05 .col .title img {
    width: 60%;
}

.sec06 .col h3 {
    font-size: 2.3rem;
    padding: 0.8em;
    margin: -30px -30px 1em;
}

.sec06 .col h3 img {
    width: 30%;
}

.sec06 .col p {
    font-size: 1.6rem;
}

.sec07 dl {
    font-size: 1.6rem;
}

.sec07 dt {
    background-size:  auto 40px;
    padding-top: 0;
}

.sec07 dd {
    background-size:  auto 40px;
    padding-top: 0;
}
}