@charset "utf-8";

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

body{
    margin: 0px;
    padding: 0px;
    line-height: 1;
    font-family: "Noto Sans JP", serif;
}
img{
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    height: auto;
    width: 100%;
}
h1,h2,h3,h4,h5,h6,p,ul {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
line-height:1;
}
ul {
	list-style-type: none;
}
.cl {
clear: both;
}
a:hover {
opacity:0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
a {
    color: inherit;
    text-decoration: none;
}
.for_pc {
    display: none;
}
.for_sp {
    display: inherit;
}


header {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
}

header.change-color {
/*    background-color: hsla(300,3%,51%,0.94);*/
}
#header_top {
    padding-left: 2.3%;
    padding-right: 2.3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 8px;
}
#header_logo {
    width: 50%;
    min-width: 280px;
    margin-right: 8px;
    transition: width 0.3s ease;
    max-width: 440px;
}
#head_logo.change-color {
	width: 160px;
	min-width: 160px;
}
#header_contact {
    display: none;
    justify-content: flex-end;
    width: 100%;
}
#header_tel {
    width: 30%;
    margin-right: 16px;
    min-width: 184px;
    height: auto;
    max-width: 272px;
}
#header_mail {
    width: 30%;
    min-width: 184px;
    max-width: 272px;
}
#header_navi {
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: #DEEEDD;
    display: none;
}
.head_navi_ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.head_navi_ul li {
    font-size: 1.2vw;
    font-weight: 600;
    border-right: 0.1em dotted #869E83;
}
.head_navi_ul li:last-child {
	border-right: 0.1em none #869E83;
}
.head_navi_ul li a {
    display: block;
    padding-top: 8px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
}
.head_navi_ul li a::after {
    content: '›';
    display: inline-block;
    margin-left: 6px;
    transform: rotate(90deg);
    font-size: 1.6em; /* 大きめでもOK */
    color: #7C7C7C;
    vertical-align: middle; /* ← これが効く！ */
    font-weight: normal;
}
.hamburger {
    position: fixed;
    top: 12px;
    right: 10px;
    width: 48px;
    height: 48px;
    z-index: 1101;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* [disabled]padding: 8px; */
    background-color: #0C843A;
    gap: 8px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
}

/* メニュー本体：フェードイン・アウト */
.sp_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #DEEEDD;
    z-index: 1100;
    padding-top: 8px;
    padding-right: 2.3%;
    padding-left: 2.3%;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOS滑らかスクロール */
}
#sp_menu_logo {
    width: 50%;
    max-width: 440px;
    min-width: 280px;
}
#sp_menu_tel {
    width: 80%;
    margin-top: 24px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}
#sp_menu_mail {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.sp_menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp_menu ul {
    list-style: none;
    padding-top: 12px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 24px;
    margin-top: 24px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    background-color: #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.sp_menu li {
    margin-right: 0;
    margin-left: 0;
    border-bottom: 1px solid #869E83;
}
.sp_menu li a {
    font-size: 18px;
    font-weight: 600;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
	position: relative;
    padding-right: 24px; /* 矢印用の余白 */
}
.sp_menu li a::after {
    content: '›';
    position: absolute;
    top: 50%;
    right: 10px; /* 右端に近い位置 */
    transform: translateY(-50%);
    font-size: 1.6em;
    color: #AD8D40;
    font-weight: normal;
    pointer-events: none;
}

#main-visual {
    margin-top: 13.84%;
}
#service-area {
    background-color: #FFFFFF;
    display: flex;
    align-items: stretch; /* これで高さを揃えられる */
}
#service-area h2 {
    min-width: 208px;
    display: flex;
    flex-direction: column; /* 子に高さ伝える */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 20px;
}
.angled-box {
    position: relative;
    background-color: #9e031b;
    color: white;
    padding-top: 20px;
    padding-right: 0.5em;
    padding-bottom: 20px;
    font-size: 1.1em;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0 100%
    );
    display: flex;
    align-items: center;
    flex: 1; /* 高さをh2に合わせて伸ばす */
    justify-content: center; /* ←横も中央にしたいなら（任意） */
}
#service-area ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: 3.84%;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: center;
}
#service-area ul li {
    margin-right: 5.38%;
    font-size: 22px;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 4px;
}
#hojokin {
    padding-top: 24px;
    padding-right: 5.38%;
    padding-left: 5.38%;
    padding-bottom: 24px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
#hojokin_l {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;


}

#hojokin_r {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#about-us {
    padding-top: 24px;
    padding-right: 5.38%;
    padding-bottom: 7.69%;
    background-image: url(../images/aboutus_bg.png);
    background-repeat: repeat-y;
    background-size: 100% auto;
}
#about-us h2 {
    margin-bottom: 24px;
}
#about-us h2 img {
    width: 100%;
}


#about-us ul {
    padding-right: 0%;
    padding-left: 0%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 5.38%;
}
#about-us ul li {
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 24px;
    background-color: #FFFFFF;
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 4%;
    -webkit-box-shadow: 0px 0px 8px #A4AEA4;
    box-shadow: 0px 0px 8px #A4AEA4;
}
#about-us ul li:nth-child(5) {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 24px;
    align-items: center;
    flex-direction: column-reverse;
}

.aboutus_features_num {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 23.07%;
}
#about-us ul li:nth-child(5) .aboutus_features_num {
    width: 23.07%;
}
.aboutus_features_img {
    margin-bottom: 16px;
}
#about-us ul li:nth-child(5) .aboutus_features_img {
    margin-bottom: 24px;
    width: 100%;
}
#about-us ul li h3 {
    font-family: "Noto Serif JP", serif;
    color: #C00A00;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 16px;
}
#about-us ul li:nth-child(5) h3 {
    margin-bottom: 16px;
}
#about-us ul li p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    padding-left: 0%;
    padding-right: 0%;
    text-align: center;
}
#about-us ul li:nth-child(5) p {
    padding-left: 0px;
    padding-right: 0px;
    line-height: 1.5em;
    text-align: left;
}
.aboutus_feature5 {
    width: 100%;
}
#reform_plan {
    padding-top: 7.69%;
    padding-right: 5.38%;
    padding-left: 5.38%;
    padding-bottom: 24px;
    background-color: #E9F9E8;
}
#reform_plan ul {
    margin-top: 7.69%;
}
#reform_plan ul li {
    margin-bottom: 5.38%;
    -webkit-box-shadow: 0px 0px 8px #A4AEA4;
    box-shadow: 0px 0px 8px #A4AEA4;
    background-color: #FFFFFF;
}
#works-befor_after {
    padding-top: 7.69%;
    padding-right: 5.38%;
    padding-left: 5.38%;
    background-image: url(../images/works_bg.png);
    background-repeat: repeat-y;
    background-size: 100% auto;
    padding-bottom: 8px;
}
#works-befor_after h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#works-befor_after ul {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#works-befor_after ul li {
    width: 100%;
    margin-bottom: 7.69%;
}
#reason {
    padding-top: 6.15%;
    padding-right: 5.38%;
    padding-bottom: 6.15%;
    background-image: url('../images/reason_person.png'),-webkit-linear-gradient(315deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-image: url('../images/reason_person.png'),-moz-linear-gradient(315deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-image: url('../images/reason_person.png'),-o-linear-gradient(315deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-image: url('../images/reason_person.png'),linear-gradient(135deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-size: 50%,cover;
    background-position: right 36.15% top 6.15%,center;
    background-repeat: no-repeat;
    position: relative;
}
#reason h2 {
    width: 100%;
}
#reason ul {
    margin-top: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 5.38%;
}
#reason ul li {
    width: 100%;
    margin-bottom: 1.53%;
    margin-left: auto;
    margin-right: auto;
}
#faq {
    padding-top: 9.23%;
}
#faq h2 {
    width: 56.15%;
    margin-left: 14.61%;
    margin-right: auto;
}
#faq_wrap {
    background-image: -webkit-linear-gradient(0deg,rgba(0,104,48,1.00) 0%,rgba(111,161,104,1.00) 46.63%,rgba(0,104,48,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(0,104,48,1.00) 0%,rgba(111,161,104,1.00) 46.63%,rgba(0,104,48,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(0,104,48,1.00) 0%,rgba(111,161,104,1.00) 46.63%,rgba(0,104,48,1.00) 100%);
    padding-top: 11.53%;
    padding-right: 6.15%;
    padding-left: 6.15%;
    padding-bottom: 6.92%;
    background-image: linear-gradient(90deg,rgba(0,104,48,1.00) 0%,rgba(111,161,104,1.00) 46.63%,rgba(0,104,48,1.00) 100%);
    margin-top: 4.61%;
    position: relative;
    z-index: 800;
}
#faq_faq {
    position: relative;
    z-index: 999;
}
#faq_person {
    position: absolute;
    top: -9.23%;
    right: 0px;
    width: 32.3%;
}
#flow {
    padding-top: 14.61%;
    padding-right: 6.15%;
    padding-left: 6.15%;
    padding-bottom: 23.84%;
    background-color: #E9F9E8;
    position: relative;
}
#flow_wrap {
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 3.07%;
    background-color: #FFFFFF;
    position: relative;
}
#flow_wrap h2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -36px;
}
#flow_contents {
}
#flow_person {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 42.3%;
}
#contact {
    padding-top: 9.23%;
    padding-right: 6.15%;
    padding-left: 6.15%;
    padding-bottom: 7.69%;
}
#contact_head_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#contact_tel {
    width: 59.23%;
}
#contact_tel a {
	pointer-events: inherit;
}
#contact_person {
    width: 39.23%;
}
#contact_form {
    padding-top: 16px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
    background-color: #E9F9E8;
}
#contact_form table{
    width: 100%;
    border-collapse: collapse;
}
#contact_form table ul{
    display: flex;
    flex-wrap: wrap;
}
#contact_form table ul li{
    margin-right: 16px;
    margin-bottom: 8px;
}
#contact_form table tr {

}
#contact_form table th {
    width: 100%;
    font-size: 17px;
    line-height: 1em;
    font-weight: 600;
    text-align: left;
    padding-top: 8px;
    padding-right: 16px;
    padding-left: 0px;
    padding-bottom: 0px;
    min-width: 208px;
    display: block;
}
#contact_form table td{
    padding-top: 8px;
    padding-bottom: 6px;
    font-size: 15px;
    line-height: 1em;
    font-weight: 400;
    width: 100%;
    display: block;
}
#contact_form table tr:first-child td{
    padding-bottom: 6px;
}
.hissu {
    display: inline-block;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 500;
    line-height: 1em;
    background-color: #A23F00;
    padding-top: 2px;
    padding-right: 2px;
    padding-left: 2px;
    padding-bottom: 3px;
    margin-left: 6px;
    vertical-align: middle;
}
.submit_btn_box {
    text-align: center;
    margin-top: 8px;
}
.sub_bt {
    border-style: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-top: 8px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 8px;
    box-sizing: border-box;
    height: 48px;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    border-radius: 32px;
    cursor: pointer;
    background-color: #7CBC2A;
}
.mfgg {
    padding-top: 4px;
    padding-right: 4px;
    padding-left: 8px;
    padding-bottom: 4px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #CBCBCB;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
.mfgg_half {
	padding: 4px;
     width: 248px;
    border-radius: 4px;
    border: 1px solid #CBCBCB;
    height: 44px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
.zip_area{
    width: 248px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 16px;
    box-sizing: border-box;
    margin-right: 1%;
    font-size: 16px;
    height: 48px;
    margin-left: 20px;
}
.mfgg_txtarea {
    width: 100%;
    height: 132px;
    padding: 12px;
    margin-left: 0;
    border: 1px solid #B4C2C5;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 4px;
    box-sizing: border-box;
}
#annotation {
    padding-top: 24px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 16px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.note-with-mark {
    position: relative;
    padding-left: 1em;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 8px;
}

.note-with-mark::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.privacy-policy-box {
    margin-top: 0px;
    padding: 16px;
    background-color: #f9f9f9;
    line-height: 1.6;
    font-size: 14px;
}
.privacy-policy-box h3 {
    font-family: "Noto Serif JP", serif;
    text-align: center;
    font-size: 15px;
    margin-bottom: 12px;
}.privacy-policy-box p {
    line-height: 1.4em;
    font-size: 14px;
}
#company {
    padding-top: 11.53%;
    padding-right: 6.15%;
    padding-left: 6.15%;
    padding-bottom: 7.69%;
    background-color: #EBF2EB;
}
#company_box {
    padding-top: 8px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 8px;
    background-color: #FFFFFF;
    position: relative;
}
#company_box h2 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -26px;
}
#company_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
#company_logo {
    width: 60%;
    margin-bottom: 16px;
}
#company_img {
    width: 100%;
}
#company_info {
    margin-top: 16px;
}

#company_info table {
    width: 100%;
    /* [disabled]border-top: 1px solid #E26924; */
    margin-top: 16px;
}
#company_info table th {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 10px;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid #62BE00;
    color: #62BE00;
    min-width: 160px;
    width: 100%;
    display: block;
}
#company_info table td {
    border-bottom: 1px none #62BE00;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 16px;
    line-height: 1.3em;
    width: 100%;
    display: block;
}
#place {
    list-style-type: square;
    padding-left: 16px;
}
#place li {
    line-height: 1.4em;
    margin-bottom: 8px;
}
#target-area {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#target-area li {
    margin-top: 6px;
    margin-bottom: 6px;
}
footer {
    background-color: #0C843A;
    padding-top: 10px;
    padding-bottom: 10px;
}
#copyright {
    color: #FFFFFF;
    font-size: 10px;
    text-align: center;
}
#pagetop {
    position: fixed;
    right: 0px;
    bottom: 48px;
    width: 72px; /* サイズは画像に合わせて調整 */
    z-index: 901;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#pagetop.show {
    opacity: 1;
    visibility: visible;
    display: flex;
}
#sp_contact {
    display: flex;
    position: fixed;
    bottom: 0px;
    z-index: 900;
}
#sp_contact a {
    position: relative;
    z-index: 1001;
	text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#sp_contact_tel a  {
    background-color: #F9DCDC;
    padding-top: 8px;
    padding-bottom: 8px;
}
#sp_contact_tel a img  {
    width: 86.15%;
}
#sp_contact_mail a {
    background-image: -webkit-linear-gradient(270deg,rgba(252,0,0,1.00) 0%,rgba(188,0,0,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(252,0,0,1.00) 0%,rgba(188,0,0,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(252,0,0,1.00) 0%,rgba(188,0,0,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(252,0,0,1.00) 0%,rgba(188,0,0,1.00) 100.00%);
}
#sp_contact_mail a img {
	width: 86.15%;
}

#pagetitle_wrap {
    padding-top: 32px;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 32px;
}
#pagetitle_wrap h2 {
    text-align: center;
    font-size: 22px;
    line-height: 1.4em;
}
#thanks {
    padding-top: 3.07%;
    padding-right: 6.15%;
    padding-left: 6.15%;
    padding-bottom: 6.15%;
	background-image: -webkit-linear-gradient(315deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-image: -moz-linear-gradient(315deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-image: -o-linear-gradient(315deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-image: linear-gradient(135deg,rgba(231,226,192,1.00) 11.85%,rgba(249,245,222,1.00) 51.67%,rgba(231,226,192,1.00) 88.45%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contents_wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
#apply_thanks {
    padding: 6.15%;
}
#thanks_txt {
    padding-top: 4.61%;
    padding-right: 4.61%;
    padding-left: 4.61%;
    padding-bottom: 2.3%;
    border: 2px solid #D55F2D;
    background-color: #FFFFFF;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
#thanks_txt h2 {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 4.61%;
}

#thanks_txt p {
    text-align: left;
    font-size: 15px;
    line-height: 1.5em;
    margin-bottom: 16px;
}



}
