@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600&family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Roboto:wght@400;500;700&display=swap');
/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 160%;
    -webkit-text-size-adjust: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
h1 {}
/* Header内で設定 */
h2 {}
h3 {}
h4 {}
a {
    color: var(--green);
}
a:hover, a:active {
    text-decoration: none;
}
a:visited {}
ul {}
li {}
dl {}
dt {}
dd {}
table {
    width: 100%
}
th, td {}
th {}
td {}
p {
    margin-bottom: 2em;
}
p:last-child {
    margin-bottom: 0;
}
p, dt, dd, td, th, li {
    line-height: 1.8em;
    letter-spacing: 0;
}
/* BACK TO TOP */
#toTop {
    border: none;
    bottom: 25px;
    cursor: pointer;
    display: none;
    overflow: hidden;
    position: fixed;
    right: 10px;
    margin: 0;
    z-index: 5;
}
#toTop a {
    background: url("../images/totop.svg") center center no-repeat #ffffff;
    background-size: 18px auto;
    text-decoration: none;
    width: 70px;
    height: 70px;
    display: block;
    border: var(--orange) 3px solid;
    border-radius: 50%;
    transition: 0.3s all;
}
/* Box sizing rules */
*, *::before, *::after {
    box-sizing: border-box;
    outline: none;
}
:root {
    --green: #4fa285;
    --orange: #FB6211;
    --red: #ff0000;
    --yellow: #FFE817;
      --nts: 'Noto Sans JP', sans-serif;
  /*--caveat: 'Caveat', sans-serif;*/
}
.under * {
  box-sizing: border-box;
}
.green {
    color: var(--green);
}
.orange {
    color: var(--orange);
}
.red {
    color: var(--red);
}
.yellow {
    color: var(--yellow);
}
.f_caveat {
    font-family: var(--caveat);
}
/* add
------------------------------------------------------------------------*/
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
    background: none;
}
body {
    color: #232323;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    min-width: 320px;
}
body.acti_fixed {
    height: 100%;
    overflow: hidden;
}
#wrapper {
    max-width: 1920px;
    min-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-family: var(--nts);
    font-weight: 500;
	background: #55B6E8;
}
.inner {
    width: 1700px;
    margin: 0 auto;
}
.flex {
    display: flex
}
.flex_wrap {
    display: flex;
    flex-wrap: wrap
}
.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}
.flex_align {
    display: flex;
    align-items: center;
    justify-content: space-between
}
.flex_col {
    display: flex;
    flex-direction: column;
}
.flex_col_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.txt_center {
    text-align: center
}
.txt_left {
    text-align: left
}
.txt_right {
    text-align: right
}
.auto {
    margin-left: auto;
    margin-right: auto;
}

.btn a {
    width: 300px;
	height: 60px;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    background: #0B2E72;
    border-radius: 10px;
    text-align: center;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: 0.5s all;
    padding: 0 34px 0 38px;
    line-height: 1.4em;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0;
}
.btn01 {
	width: 300px;
	height: 60px;
}
.btn01 a {
	width: 100%;
	height: 100%;
}
.btn.white a {
    width: 240px;
    color: #007BD9;
    background: #ffffff;
    border: #007BD9 3px solid;
    font-weight: 700;
}
#content .btn a {
    font-size: 16px;
}
.btn.left a {
    margin-right: auto;
    margin-left: 0;
}
.btn.right a {
    margin-left: auto;
    margin-right: 0;
}
.btn a:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    content: '';
    display: block;
    background: url("../images/arrow_w.svg") center center no-repeat;
    background-size: 100% auto;
    width: 8px;
    height: 14px;
    transition: 0.3s all;
}
.btn02 a {
	background: #0B2E72;
}
.btn.white a:before {
    background: url("../images/arrow_o.svg") center center no-repeat;
    background-size: 100% auto;
}
.txt_spec {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}
/*==========================================================================*/
/*                               Header                                     */
/*==========================================================================*/
main {}
#content {
    position: relative;
}
header {
    position: relative;
}

header #top_info {
	position: relative;
	margin-top: 110px;
	padding: 75px 0 135px;
}
#index header #top_info {
    height: 820px;
}
header #top_info:after {
	position: absolute;
	content: '';
	background:url("../images/img01.png") no-repeat right 0 ;
	height: 790px;
  width: 960px;
  bottom: 0;
  right: 0;
}
header #top_info .inner {
    align-items: flex-start;
    height: 100%;
	background: #1C7FD1;
	border-radius: 20px;
}
header #top_info .main_left {
    padding-left: 150px;
	color: #fff;
	position: relative;
	width: 52%;
	z-index: 1;
}
#index header #top_info .main_left {
  top: 50%;
  transform: translateY(-50%);
}
.main_left h2 {
	font-size: 44px;
	font-weight: bold;
}
#index .main_left h2 {
    margin-bottom: 30px;
}
.main_left h2 span {
	font-size: 70px;
}
.main_tit01 {
    line-height: 1.2em;
    font-weight: 900;
    margin-bottom: 30px;
	font-size: 43px;
}
.main_tit01 .main_tit01_sm{
    font-size: 36px;
}

.main_left .main_list01 {
    display: flex;
    justify-content: center;
}

.main_left .main_list01 li span {
    display: inline-block;
    line-height: 1.7em;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}
.main_left .main_txt {
	font-size: 18px;
}
.btn_ct {
  width: 330px;
margin-bottom: 0;
}
.btn_ct a {
  height: 80px;
  background: rgb(251, 98, 17);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: 0.3s;
	font-size: 20px;
}
.btn_ct a:hover {
    background: #bc300f;
  }
header #top_info .main_right {
    position: absolute;
  right: 0;
  bottom: -50px;
}
.main_right a:hover {
    opacity: 0.8;
}
header #head_top {
    position: absolute;
    width: 100%;
    bottom: -30px;
    left: 0;
    transition: 0.3s all;
}
header #head_info {
    display: flex;
    align-items: center;
	gap: 10px;
    background: #ffffff;
    border-radius: 10px;
    /*overflow: hidden;*/
    transition: 0.3s all;
}
/*header.active #head_info {
    top: -200px;
    right: 0;
    border-radius: 0;
}
header.show #head_info {
    position: fixed;
    top: 0;
    z-index: 5;
}
header.active #head_info .info_tel {
    width: 350px;
}*/
.info_tel {
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.035em;
    margin: 0 20px 0 0;
    line-height: 1.6em;
	border: 1px solid #DCDCDC;
  border-radius: 10px;
  position: relative;
  padding-top: 22px;
  margin-top: 11px;
	background: #fff;
}
.info_tel a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    line-height: 1.6em;
    display: inline-block;
}
.info_tel a .time {
    display: none;
}
header.show .info_tel a {
    font-size: 11px;
}
header.show .info_tel a .txt_r {
    text-align: center;
}
.info_tel a .num {
    display: inline-block;
    font-family: Arial, 'sans-serif';
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.05em;
    background: url("../images/icon_tel.png") left center no-repeat;
    background-size: 19px auto;
    padding-left: 25px;
}
.info_contact {
    width: 260px;
}
.info_contact a {
    height: 70px;
    background: #FB6211;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding-right: 10px;
    transition: 0.3s all;
}
.info_contact01 {
    width: 350px;
}
.info_contact01 a {
	background: #007BD9;
	width: 100%;
	height: 80px;
}
.info_contact a .en {
    color: var(--yellow);
    font-size: 21px;
    font-family: 'Caveat', cursive;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: absolute;
    top: 4px;
    left: 13px;
    transform: rotate(-5deg);
    display: block;
    line-height: 1;
}
.info_contact a .jp {
    font-size: 16px;
    padding-left: 30px;
    line-height: 1em;
    display: block;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}
.info_contact01 a .jp {
  padding-left: 0;
	font-size: 20px;
}
.info_contact a .jp:after, .info_contact a .jp:before {
    position: absolute;
    top: calc(50% - 6px);
    right: -20px;
    content: '';
    display: block;
    background: url("../images/arrow_w.svg") center center no-repeat;
    background-size: 100% auto;
    width: 7px;
    height: 13px;
}
.info_contact a .jp:before {
    background: url("../images/icon_mail.png") center center no-repeat;
    background-size: 100% auto;
    left: 0;
    right: auto;
    width: 21px;
    height: 20px;
    top: calc(50% - 8px);
}
.info_contact01 a .jp:before {
    display: none;
}
.info_contact01 a .jp::after {
  right: -40px;
}
#head_info .info_contact {
    width: 220px;
	
}
#head_info .info_contact a {
    height: 70px;
    padding: 0 0 10px 10px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
header #head_info .info_contact a {
    padding-bottom: 0;
}
#head_info .info_contact a .en {
    font-size: 30px;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 5px;
}
#head_info .info_contact a .jp {
    font-size: 18px;
	font-weight: bold;
}
#head_info .info_contact a .jp:after {
    display: none;
}
#head_info .info_tel {
    width: 280px;
	height: 60px;
    margin: 0;
    text-align: center;
	border: 1px solid #DCDCDC;
	border-radius: 10px;
	position: relative;
  padding-top: 22px;
  margin-top: 11px;
}
#head_top h1 {
    display: none;
}
header #head_top h1 {
    display: block;
    width: 294px;
    margin-right: 80px;
}
header #head_top {
    position: fixed;
    display: flex;
	justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 20px;
    top: -200px;
    background: #fff;
    height: 110px;
    z-index: 5;
}
header #head_top {
    animation: head_fix 0.3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes head_fix {
    0% {
        top: -100px;
    }
    100% {
        top: 0;
    }
}
@-webkit-keyframes head_fix {
    0% {
        top: -100px;
    }
    100% {
        top: 0;
    }
}
.head_left{
  display: flex;
  align-items: center;
}

.sup_head {
	position: absolute;
	top: -13px;
	line-height: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	padding: 5px;
	font-size: 14px;
	text-align: center;
	margin-bottom: 0;
	background: #0B2E72;
	border-radius: 3px;
	color: #fff;
	font-weight: 600;
}
.sup_head span {
	color: #FFC400;
	font-size: 20px;
	font-weight: bold;
}


/*--- gnavi ---*/
#gnavi {}
#gnavi .menu_main {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    background: url("../images/dot_h.png") left top repeat-y;
}
#gnavi .menu_main > li {
    width: calc(100% / 6);
    text-align: center;
    display: flex;
    align-items: center;
    height: 84px;
    position: relative;
    z-index: 1;
}

#gnavi .menu_main > li > a, #gnavi .menu_main > li.sub > span {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    line-height: 1.4em;
    font-size: 13px;
    color: #333333;
    font-weight: 700;
    transition: 0.3s all;
    position: relative;
    z-index: 1;
}
#gnavi .menu_main > li > a > span {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
}

#gnavi .menu_main li.sub > span {
    padding: 0 20px 0 10px;
    cursor: pointer;
}
#gnavi .menu_main li.sub > span::before {
    position: absolute;
    right: calc(50% - 4px);
    bottom: 3px;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: linear 0.2s;
}

#gnavi .menu_main .menu_sub {
    display: none;
    position: absolute;
    z-index: 10;
    width: 640px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}
#gnavi .menu_main .menu_sub .inn {
    width: 100%;
    background: #55b6e8;
    display: flex;
    align-items: center;
    padding: 0;
    color: #fff;
}
#gnavi .menu_main .menu_sub .ttl {
    width: 120px;
    height: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#gnavi .menu_main .menu_sub .sub_list{
    padding: 15px 20px;
    border-left: 1px solid #fff;
}
#gnavi .menu_main .menu_sub .sub_list a {
    width: 100%;
    text-align: left;
    text-decoration: none;
    box-sizing: border-box;
    color: #fff;
    font-weight: 700;
    display: block;
    line-height: 1.4em;
    position: relative;
    padding: 10px 10px 10px 20px; 
}
#gnavi .menu_main .menu_sub .sub_list a:after {
    position: absolute;
    left: 0;
    top: 20px;
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: #fff;
    transition: 0.5s all;
}

header #gnavi .menu_main {
    width: 100%;
    justify-content: flex-start;
    background: none;
}
header #gnavi .menu_main > li:last-child:after {
    display: none;
}
header #gnavi .menu_main > li {
    width: auto;
    height: 60px;
}
header #gnavi .menu_main > li > a, header #gnavi .menu_main > li.sub span {
    padding: 0 20px;
    font-size: 18px;
    font-weight: bold;
}
@media screen and (min-width: 751px) {
#gnavi .menu_main li.sub:hover > span {
    color: #fff;
}
#gnavi .menu_main li.sub:hover > span::before {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
   /* transform: rotate(-135deg)*/
}
header #gnavi .menu_main > li.sub:hover span {
    background: #55b6e8;
    border-radius: 8px 8px 0 0;
    transition: ease 0.3s;
}
}
/*==========================================================================*/
/*                               Content                                     */
/*==========================================================================*/
.center {
	text-align: center;
}

.h3_style01, .h3_style02 {
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}
.h3_style01 {
	font-size: 38px;
    
    padding-bottom: 28px;
    margin-bottom: 0;
	line-height: 1.5em;
}
.h3_style01 span {
	font-size: 56px;
    position: relative;
    display: inline-block;
	line-height: 1.5em;
}
.h3_style01 img {
	margin-bottom: 10px;
}


.h3_style02 {
    font-size: 50px;
    margin-bottom: 110px;
	color: #fff;
}
.h3_style02 span {
    position: relative;
    z-index: 1;
    display: inline-block;
	padding-bottom: 20px;
}
.h3_style02 span::before {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  left: calc(50% - 50px);
  bottom: -10px;
	background: #0B2E72;
}

/*--- 01 ---*/
.txt_des {
	font-size: 18px;
}
.sec01 {
    background: #fff;
    padding: 78px 0 18px;
	border-radius: 60px;
	margin-top: -60px;
  z-index: 2;
  position: relative;
}

.sec01 .inner {
    position: relative;
    z-index: 1;
}
.problem_ct {
  position: relative;
	margin-top: 80px;
}
.problem__center {
  position: relative;
  max-width: 498px;
  height: auto;
  margin: 0px auto;
  padding: 70px 0 0 0;
  z-index: 1;
}
.list_bubble {
  position: relative;
}

.bubble {
  position: absolute;
  background: #fff;
  padding: 18px 20px 18px 14px;
  width: 570px;
  height: 230px;
  font-size: 16px;
  line-height: 1.7;
  box-sizing: border-box;
	border: 6px solid #172A55;
  border-radius: 30px;
	display: flex;
  justify-content: center;
  align-items: center;
	gap:20px;
}
.bubble p {
	font-size: 16px;
}
.bubble_img {
	width: 240px;
	position: relative;
	top: -20px;
	margin-bottom: 0;
}
.bubble_ct {
	width: calc(100% - 260px);
}
.bubble p.bubble_tit {
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 10px;
}
.bubble.top-left {
  top: 0px;
  left: 55px;
}
.bubble.top-right {
  top: 0px;
  right: 55px;
}
.bubble.bottom-left {
  top: 280px;
  left: 0px;
}
.bubble.bottom-right {
  top: 280px;
  right: 0px;
}


#sec01 .btn a {
    width: 240px;
}
/*--- 02 ---*/
.sec02 {
	padding: 150px 0;
}

.sec_reason_h3 {
	background: url("../images/sec02_h3_bg.png") center top no-repeat;
	min-height: 302px;
	display: flex;
  align-items: center;
  justify-content: center;
	margin-bottom: 70px;
}
.sec_reason_h3 .h3_style01 span.h3_style01_01{
	font-size: 68px;
}
.sec_reason {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.sec_reason li {
  position: relative;
  width: calc((100% - 52px)/ 3);
  border: 6px solid #DEDEDE;
	border-radius: 30px;
}
.reason_ttl {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #232323;
  margin-bottom: 10px;
}
.reason_content {
  padding: 32px 45px 45px;
}
.reason_img {
	display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 450px;
	border-radius: 15px;
  margin: -40px auto 0;
	overflow: hidden;
}
.reason_img span{
  position: absolute;
  top: 0;
  left: 0;
	background: #2A2A2A;
	color: #fff;
	text-align: center;
	border-radius: 20px 0 5px 0;
	padding: 2px 22px 3px;
	font-size: 16px;
}
.sec02_box02 {
	display: flex;
  align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 30px 0 50px;
}
.sec02_box02_txt {
	font-size: 39px;
	font-weight: bold;
	color: #232323;
	margin-bottom: 0;
	line-height: 1.5em;
}
.sec02_box02_txt01 {
	color: #007BD9;
}
.sec02_box02_txt02 {
	color: #E3631F;
	font-size: 49px;
}
.sec02_box02_txt03 {
	font-size: 47px;
	line-height: 1.5em;
}
.sec2_box01 {
	display: flex;
	gap:40px;
}
.sec02_dl01 {
    display: flex;
    position: relative;
	background: #fff;
    z-index: 1;
	width: 960px;
	border-radius: 20px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

.sec02_dl01 dd {
    background: #ffffff;
    padding: 62px 50px 30px 50px;
    position: relative;
    z-index: 1;
	border-radius: 0px 20px 20px 0;
	width: calc(100% - 450px);
}

.sec02_dl01 h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.8em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.sec02_dl02 {
    display: flex;
    position: relative;
	background: #fff;
    z-index: 1;
	border-radius: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

.sec02_dl02 dd {
    background: #ffffff;
    padding: 30px 35px 20px;
    position: relative;
    z-index: 1;
	border-radius: 0px 20px 20px 0;
	width: calc(100% - 220px);
}
h4.h4_tit02 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.sec2_box01_r {
    width: 700px;
  }
.sec02_dl03 {
    position: relative;
	background: #ffffff;
    z-index: 1;
	border-radius: 20px;
	padding: 23px 35px 23px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.btn_link {
	text-align: right;
}
.btn_link a {
	text-decoration: none;
	color: #0B2E72;
	font-weight: bold;
	display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.btn_link a:hover {
	color: #FB6211;
	opacity: 0.8;
}

.list_btn01 {
	display: flex;
	gap:10px;
}
.list_btn01.center {
	justify-content: center;
}
.list_btn01 li {
	width: 200px;
	height: 50px;
}
.s02_txt01 {
    text-align: justify;
	margin-bottom: 60px;
}
.s02_txt02 {
    text-align: justify;
	margin-bottom: 20px;
}
.s02_txt03 {
    text-align: justify;
	margin-bottom: 10px;
}
/*--- 03 ---*/
.sec03 {
	background: rgba(255,255,255,50%);
	padding: 100px 0;
}
.h3_style03 {
	font-size: 39px;
	font-weight: bold;
  text-align: center;
	line-height: 1.5em;
	margin-bottom: 40px;
}
.h3_style03 span {
	display: block;
	font-size: 16px;
	font-weight: 500;
}

.sec03_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
	margin-bottom: 50px;
}
.sec03_list .sec03_list_item {
  position: relative;
  width: calc((100% - 60px)/4);
  background: #fff;
  padding: 0px;
	border-radius: 10px;
	overflow: hidden;
}
.sec03_list_ct {
	padding: 15px 25px 25px 30px;
}
.sec03_tit {
  margin: 0;
  font-size: 26px;
	font-weight: bold;
}
.sec03_img {
	position: relative;
	margin-bottom: 0;
	max-height: 240px;
  overflow: hidden;
}
.sec03_tag {
	position: absolute;
  top: 20px;
  left: 20px;
  background: #3B3B3B;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 0px 10px 0px;
  font-size: 16px;
	width: 150px;
}
.sec03_txt {
	margin-bottom: 14px;
}
.sec03_txt {
  background: url("../images/icon_map.png") left center no-repeat;
  background-size: 14px auto;
  padding-left: 20px;
}
/*--- 04 ---*/

.sec04 {
	background: #fff;
    margin-top: 0;
    padding: 90px 0 80px;
}

#infobox {
	width: 1200px;
	margin-top: 0px;
	display: flex;
}
#infobox h3 {
    font-size: 39px;
    margin-bottom: 30px;
	font-weight: bold;
}
.infobox_tit {
	width: 300px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.infobox_txt {
	margin-bottom: 100px;
}
/*table*/
.infobox-tbl {
	width: calc(100% - 300px);
}
#infobox table {
    border-radius: 30px;
    border-spacing: 0;
    border-collapse: separate;
    overflow: hidden;
	background: #F1F1F1;
	padding: 20px 40px 20px 50px;
}
#infobox table.mb05 {
    margin-bottom: 5px;
}
#infobox table th, #infobox table td {  
	border-top: none;
	border-left: none;
	border-right: none;
}
#infobox table th, #infobox table  td {  
	border-bottom: 1px solid #CECECE;
}
#infobox table tr:last-child th, #infobox table tr:last-child td {  
	border-bottom: none;
}
#infobox table td.center {
    text-align: center;
}
#infobox table th {
    font-size: 18px;
    font-weight: 600;
	text-align: left;
	padding: 30px 15px 30px 30px; 
}
#infobox table td {
	padding: 30px 25px 30px 20px; 
}
#infobox main table.tb_block tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
    display: table-cell;
}
#infobox main .table02 tr th {
    border-top-color: var(--orange);
    border-bottom-color: var(--orange);
}
#infobox main .table02 tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
    display: table-cell;
}
#infobox main .table02 tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
    display: table-cell;
}
#infobox main .table02 tr + tr th:first-child {
    border-top: #fff 2px solid;
}
#infobox table.td_top td {
    vertical-align: top;
}
#infobox table.td_center td {
    text-align: center;
}
#infobox table.td_middle td {
    vertical-align: middle;
}
#infobox table.td_right td {
    text-align: right;
}
#infobox table.td_right td.center {
    text-align: center;
}
#infobox h4.h3_style01 {
    margin-top: 70px;
}
.qa_map-box {
    margin-bottom: 30px;
}
.link_box {
    margin-bottom: 50px;
}
.link_box p {
    background: #f5f5f5;
    padding: 10px 15px;
    line-height: 3.0;
    border-radius: 5px;
}

/* common */
.sec01_box dd a:last-child, .s02_list01 dd ul li:last-child {
    margin-bottom: 0;
}

/* IE CSS */
@media screen\0 {}
/* MOZZILLA CSS */
@-moz-document url-prefix() {}
/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {}
.under .inner {
  width: 1400px;
}
.under header #top_info .inner {
  align-items: flex-start;
  height: 100%;
  background: #1C7FD1;
  border-radius: 20px;
	padding: 70px 0 75px;
}
.under .main_left h2 {
	font-size: 55px;
	font-weight: bold;
	text-align: center;
}
.under header #top_info::after {
  position: absolute;
  content: '';
  background: url("../images/ud_main.png") no-repeat right top;
  background-size: contain;
  width: 543px;
  height: 424px;
  bottom: 0;
  right: 0;
  
}
.under header #top_info .main_left {
	width: 100%;
  padding-left: 0;
  text-align: center;
}
.under header #top_info {
  position: relative;
  margin-top: 110px;
  padding: 70px 0 130px;
}
.under main {
  background: #fff;
  margin-top: -60px;
  z-index: 2;
  position: relative;
	padding: 120px 0;
	border-radius: 20px 20px 0 0;
}
.under section {
	margin-bottom: 80px;
}
.under section:last-child {
	margin-bottom: 0px;
}
.h3_tit01 {
	position: relative;
	font-size: 40px;
	font-weight: bold;
  padding-top: 50px;
	margin-bottom: 40px;
	line-height: 1.5em;
}
.h3_tit01:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 150px;
	height: 10px;
	background: #1C7FD1;
	border-radius: 3px;
}
.h3_tit01.h3_cen{
	text-align: center;
}
.h3_tit01.h3_cen::before {
  left: 50%;
	transform: translateX(-50%);
}
.under #content .image_r {
  float: right;
  margin: 0 0 10px 90px;
}
.h4_tit01 {
	position: relative;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 40px;
	color: #fff;
	padding: 20px 10px 20px 0;
	line-height: 1.5em;
	width: 50%;
}
.h4_tit01:before {
	position: absolute;
	content: '';
	left: -50%;
  top: 0;
  width: 150%;
  height: 100%;
  background: #1C7FD1;
  border-radius: 3px;
  z-index: -1;
}
.list01 li{
	position: relative;
	padding: 5px 0 5px 15px;
}
.list01 li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #1C7FD1;
	border-radius: 50%;
}
.under h5 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.5em;
}
.under h6 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.3em;
	color: #1C7FD1;
}
.frame01 {
	background: #AADAF3;
	border-radius: 20px;
	padding: 60px;
	color: #232323;
}
.frame01 .h4_tit02 {
	color: #fff;
	padding: 20px;
}
.frame01 .h4_tit02:before {
	position: absolute;
	content: '';
	left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1C7FD1;
  border-radius: 3px;
  z-index: -1;
}

.step_row {
  display: flex;
  align-items: stretch;
  position: relative;
  margin-bottom: 100px;
}
.step_row::before {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  background: url("../images/arrow_down.svg") no-repeat;
    background-size: auto;
  background-size: 100% auto;
  width: 50px;
  height: 40px;
}
.step_row.last {
	margin-bottom: 10px;
}
.step_row.last:before {
  display: none;
}
.step_box {
  width: 200px;
  min-height: 108px;
  background: #1C7FD1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
	font-size: 20px;
}
.no_minheight .step_box {
  min-height: unset;
}
.step_content {
  flex: 1;
  background: #F2F2F2;
  padding: 10px 20px 10px 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.step_tit {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 15px;
}

/*========table==========*/

.under .border_tbl {}

.under table {
  margin-bottom: 30px;
  border-radius: 10px;
  border-spacing: 0;
  border-collapse: separate;
  border: #fff 2px solid;
  overflow: hidden;
}

.under table.mb05 {
  margin-bottom: 5px;
}

.under table th,
.under table td {
  padding: 21px 20px 21px;
  border: #fff 3px solid;
  background: #F2F2F2;
	border-radius: 10px;
}

.under table td.center {
  text-align: center;
}

.under table th {
  background: #1C7FD1;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.under table th.th_bg01 {
  background: #AADAF3;
	color: #000;
}

.under main table.tb_block th {
  border-color: #fff;
  border-bottom: #fff 3px solid;
}

.under main table tr th:first-child {
  border-left-color: #fff;
}

.under main table tr th:last-child {
  border-right-color: #fff;
}

.under main table.mailform th,
.under main table.tb_block th {
  border-color: #fff;
}

/*========waterproof menu list==========*/

.wp_list {
  margin-bottom: 30px;
}
.wp_item_row {
  padding: 40px 0;
  border-top: 2px solid #1C7FD1;
}
.wp_item_row:first-child {
  padding-top: 0;
  border-top: none;
}
.wp_item_tit {
  font-size: 28px;
  font-weight: bold;
  color: #232323;
  line-height: 1.4em;
  margin-bottom: 25px;
}
.wp_item_sub {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #1C7FD1;
  margin-top: 5px;
}
.wp_item_body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.wp_item_img {
  flex: none;
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.wp_item_img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.wp_item_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wp_info_row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f5f9fd;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
}
.wp_info_ico {
  flex: none;
  width: 50px;
  height: 50px;
  color: #1C7FD1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp_info_ico svg {
  display: block;
  width: 32px;
  height: 32px;
}
.wp_info_txt {
  flex: 1;
  border-left: 1px solid #1C7FD1;
  padding-left: 15px;
}
.wp_info_lbl {
  font-size: 20px;
  font-weight: bold;
  color: #1C7FD1;
  line-height: 1.4em;
  margin-bottom: 5px;
}
.wp_info_des {
  font-size: 16px;
  color: #333333;
  line-height: 1.7em;
  margin-bottom: 0;
}

.box_anc {
	background: #EBEBEB;
	border-radius: 20px;
	padding: 50px;
	max-width: 1000px;
	margin: 0 auto 50px;
}
.anc_tit {
	color: #007BD9;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}
.list_anc {
	display: flex;
  flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
 .list_anc li {
    width: calc(50% - 20px);
  }
 .list_anc li a {
  font-weight: 500;
  font-size: 16px;
  color: #232323;
  background: #fff;
  width: 100%;
  height: 60px;
  border-radius: 99px;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: 0.5s all;
  padding: 0 30px 0 20px ;
  line-height: 1.4em;
}
 .list_anc li a::before {
  position: absolute;
  top: 0;
  right: 20px;
  content: '';
  display: block;
  background: url("../images/arr_arc.png") top center no-repeat;
  background-size: 100% auto;
  width: 26px;
  height: 44px;
  transition: 0.3s all;
}

/*==========case===============*/

.under #content .anchor_link {
  display: flex;
  flex-wrap: wrap;
  padding: 0 100px;
  max-width: 973px;
  width: auto;
  margin: 0 auto 90px;
}

#case #content .anchor_link {
  justify-content: center;
	gap:10px;
  padding: 0;
  max-width: 100%;
}

.under #content .anchor_link li {
  width: 360px;
  margin-right: 50px;
}


.under #content .anchor_link li a {
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  background: #1C7FD1;
  width: 100%;
  height: 60px;
  border-radius: 99px;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: 0.5s all;
  padding: 0 35px;
  line-height: 1.4em;
}

.under #content .anchor_link li a:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  content: '';
  display: block;
  background: url("../images/arrow_w.svg") center center no-repeat;
  background-size: 100% auto;
  width: 6.4px;
  height: 12px;
  transition: 0.3s all;
}

.under #content .tb_news {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.under #content .tb_news dl {
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.under #content .tb_news dl:nth-child(n + 4) {
  margin-top: 25px;
}

.under #content .tb_news dl dt {
  background: #F1F1F1;
  text-align: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.under #content .tb_news dl dt img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}
/*.under #content .tb_news dl dt .twentytwenty-container{
    height: 250px !important;
    position: relative;
    z-index: 1;    
    margin: 0 auto;
    display: block;
    text-align: center;
}
.under #content .tb_news dl dt img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}*/
.under #content .tb_news dl dd {
  padding: 20px 20px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.under #content .tb_news dl dd .btn {
  margin-top: auto;
}

.tb_news dl .cate {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.tb_news dl .cate span {
  line-height: 1;
  min-width: 100px;
  height: 40px;
  border-radius: 99px;
  margin-right: 10px;
  background: #55B6E8;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  padding: 0 10px 2px;
}

.tb_news dl .date {
  margin-bottom: 5px;
  color: #999999;
  font-weight: 700;
}

.tb_news dl .title {
  line-height: 1.6em;
}

.tb_news dl .btn a {
  width: 240px;
}

.tb_news dl .btn a {
  height: 48px;
  width: 200px;
  font-size: 16px;
}

.tb_news dl .btn a:before {
  right: 16px;
}

.under .info_list01 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.under .info_list01 li {
  width: calc(50% - 30px);
	border: 1px solid #EBEBEB;
	border-radius: 10px 10px 0 0;
}

.under .info_list01 li .title {
  font-size: 18px;
  margin-bottom: 0;
  display: block;
  text-align: left;
  color: #fff;
  background: #1C7FD1;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
}

.under .info_list01 li .img {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EBEBEB;
}

.under .info_list01 li .img img {
  max-height: 100%;
  max-width: 100%;
}

.under .info_list01 li+li {
  position: relative;
  z-index: 1;
  margin-left: 60px;
}

.under .info_list01 li+li:after {
  position: absolute;
  top: 45%;
  left: -40px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #1C7FD1;
}

.ovn_cont main .frame01,
.ovn_cont main .frame01 p {
  font-size: 17px;
}

.under main .post-button {
  display: flex;
  justify-content: center;
  align-items: flex-end;
	flex-wrap: wrap;
  position: relative;
  width: 100%;
  margin: 30px auto 0;
}

.under main .post-button li {
  width: 160px;
  margin: 10px !important;
}

.under main .post-button li span {
  font-size: 12px;
  display: block;
  line-height: 1.2em;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}

.under main .post-button a {
  font-weight: 500;
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  background: var(--orange);
  position: relative;
  z-index: 1;
  transition: 0.3s all;
  text-decoration: none;
  line-height: 1.4em;
  padding: 0 20px;
  border-radius: 99px;
  text-align: center;
  align-items: center;
}

.under main .post-button .centerPage a {}

.under main .post-button .prevPage a {}

.under main .pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 auto;
}

.under main .pagination li {
  margin: 2px;
}

.under main .pagination li a {
  width: 34px;
  height: 34px;
  text-align: center;
  background: #007BD9;
  display: flex;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
  font-size: 16px;
  border-radius: 5px;
}

.under main .pagination li:hover a,
.under main .pagination li.active a {
  background: #55B6E8;
}

.under main .pagination li.disabled {
  display: none
}

.ovn_cont .img_center {
  text-align: center;
  margin-bottom: 30px;
}

.ovn_cont .img_center img {
  max-height: 400px;
}

.ovn_cont #content .img_center:before {
  display: none;
}
@media screen and (min-width: 751px) {
  #case #content .anchor_link li {
    width: 32%;
    margin-bottom: 2%;
    margin-right: 0;
  }
	.under #content .tb_news dl:nth-child(3n+3) {
    margin-right: 0px;
  }
}
/*==========================================================================*/
/*                               Footer                                     */
/*==========================================================================*/
footer {
    /*background: url("../images/s07_bg_bot.png") center top no-repeat, url("../images/repeat01.png") repeat;*/
    background: #1E1E1E url("../images/ft_bg.jpg") top no-repeat;
}
.footer01, .under .footer01{
	
    padding: 370px 0 90px;
	margin: 0;
}
.footer01 .info_contact a .jp::after {
	display:none; 
}
.footer01 .info_contact {
  width: 480px;
	height: 140px;
}
.footer01 .info_contact a {
	padding-right: 0;
	height: 140px;
	border-radius: 30px;
}
.footer01 .info_contact a .jp {
	font-size: 34px;
	padding-left: 50px;
}
.footer01 .info_contact a .jp::before {
  background: url("../images/icon_f_mail.png") center center no-repeat;
  left: 0;
  right: auto;
  width: 39px;
  height: 38px;
  top: calc(50% - 18px);
}
.footer01 .inner, .under .footer01 .inner {width: 1700px;}
.fbox_tit {
	margin-bottom: 80px;
}
.f_tit {
	font-size: 60px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 30px;
	color: #fff;
}
.f_des {
	text-align: center;
	color: #fff;
}
.footer01 .footer_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	background: linear-gradient(to right, #0B2863, #1D79C5);
	border-radius: 30px;
	padding: 120px 30px;
}
.footer_info_ct {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer01 .footer_info {
    position: relative;
    z-index: 1;
}
.footer01 .info_tel {
    width: 523px;
	  height: 112px;
  }
.footer01 .info_tel a .num {
	font-size: 63px;
	background-size: 35px auto;
  padding-left: 45px;
}
.footer01 .info_tel a {
	padding-top: 20px;
  color: #000;
}
.footer01 .info_tel {
	position: relative
}
.footer01 .sup_head {
  position: absolute;
  top: -28px;
  line-height: 18px;
  padding: 17px 22px;
  font-size: 25px;
  margin-bottom: 0;
  background: #2A2A2A;
	/*height: 56px;*/
}
 .footer01 .sup_head span {
    font-size: 37px;
  }

.footer_add {
  margin: 0px auto;
	color: #fff;
	background: #1E1E1E;
}
.footer_add .inner{
	display: flex;
  justify-content: space-between;
	align-items: center;
  margin: 0px auto 100px;
	color: #fff;
	background: #1E1E1E;
	max-width: 1200px;
}
.footer_add_l {
	font-size: 18px;
}
.footer_tit {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 0;
}
address {
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: auto;
    padding: 15px 0;
	color: #fff;
}
.f_link {
	display: flex;
	justify-content: flex-end;
	gap:30px;
}
.f_link a{
	text-decoration: none;
	color: #fff;
}
.f_link a:hover{
	color: #1D79C5;
}
.list_box01{
  display: flex;
  gap: 40px;
}
.list_box01_item {
  flex: 1;
}
.list_box01_item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.h5_tit01 {
  border-bottom: 2px solid #1C7FD1;
}
.h5_tit02 {
  color: #0B2E72;
  display: flex;
  align-items: center;
}
.reno_sec01_ct {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  margin-bottom: 20px;
}
.reno_sec01_ct:last-child{
  margin-bottom: 0;
}
.under #content .reno_sec01_ct .image_r{
  margin-bottom: 0;
  margin-top: 0;
}
.h5_tit02 .num{
  background: #0B2E72;
  padding: 3px;
  color: #fff;
border-radius: 5px;
width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-align: center;
}
.work_step {
    margin: 0;
}

.work_step_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.work_step_item {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.work_icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 5px;
}

.work_icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.work_step_item p {
    margin: 0;
    font-size: 14px;
}
.frame02 {
  background: #f5f9fd;
  padding: 15px 30px;
  border-radius: 10px;
  width: fit-content;
}
.repair_method {
    margin: 0;
}

.repair_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.repair_item {
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.repair_head {
    background: #003B99;
    color: #fff;
    /*font-size: 13px;*/
    text-align: center;
    line-height: 1.4;
    padding: 12px 7px;
    margin: 0;;
}

.repair_img {
    aspect-ratio: 420 / 170;
    overflow: hidden;
}

.repair_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.process-wrap {
  
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #eef3fb;
  border-radius: 10px;
  padding: 10px;
}
.step {
  flex: 1;
  max-width: 260px;
}
.step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 15px;
  color: #0B2E72;
}
.step-number {
  background-color: #1f3864;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.step-sub {
  font-size: 12px;
  font-weight: normal;
}
.step-photo {
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  border-radius: 4px;
  /* object-fit: cover; */
  display: block;
  background-color: #ccc; /* thay bằng ảnh thật */
}
.arrow {
  width: 18px;
  height: 26px;
  background-color: #1f3864;
  clip-path: polygon(0% 15%, 60% 15%, 60% 0%, 100% 50%, 60% 100%, 60% 85%, 0% 85%);
  flex-shrink: 0;
}
.work_step_list02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.work_step_item02 {
  background: #eef3fb;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B2E72;
  font-size: 15px;
}
.work_icon01 {
  width: 50px;
  height: 50px;
  margin-right: 5px;
}
.list_img {
  display: flex;
}
.list_img li {
  width: 40%;
}
.list_img li:first-child {
  width: 60%;
}
/* Tablet */
@media (max-width: 900px) {
    .work_step_list {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

	.list_box01 {
		flex-direction: column;
		gap: 20px;
	}
	.list_box01_item img {
		height: 200px;
	}

	.sup_head {
		padding: 0;
	}
	
	#head_info .info_tel {
		padding-top: 0;
	}
	
	#head_info .info_contact a {
		padding-bottom: 0;
		padding-left: 0;
	}
.work_step_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .work_step_item {
        padding: 16px 10px;
        border-radius: 12px;
    }

    .work_icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .work_step_item p {
        font-size: 14px;
    }
	.repair_list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .repair_head {
        font-size: 16px;
        padding: 10px 12px;
    }
    .under #content .reno_sec01_ct .image_r {
  margin-bottom: 20px;
  margin-top: 0;
}
.work_step_item02 {
  flex-wrap: wrap;
}
.work_icon01 {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
.work_step_item02 {
  display: block;
  width: 100%;
}

}

@media (max-width: 560px) {
  .process-steps {
    flex-direction: column;
  }
  .step {
    max-width: 100%;
    width: 100%;
  }
  .arrow {
    transform: rotate(90deg);
    width: 30px;
  height: 42px;
  }
  .list_img {
  flex-wrap: wrap;
}
  .list_img li, .list_img li:first-child {
  width: 100%;
}
}









