/* 記事リスト */
.post_items {
 padding: 0 0;
}
.post_items .item {
 /*background: #f0f0f0;*/
 padding: 10px;
 border-top: 1px solid #ccc;
 display: flex;
 align-items: center;
 position: relative;
}
.post_items .item:last-child {
 border-bottom: 1px solid #ccc;
}
.post_items .item .img {
}
.post_items .item .date {
 width: 130px;
 font-size: 15px;
 color: #5a5a5a;
}
.post_items .item .category {
 width: 150px;
 padding: 0 10px;
}
.post_items .item .category span {
 display: block;
 background: #f3fafd;
 color: #6c6969;
 padding: 3px;
 margin: 2px;
}
.post_items .item .title {
 font-weight: 500;
 width: calc(100% - 130px - 150px);
 /*width: -moz-available;
    width: -webkit-fill-available;
    width: available;*/
}
.post_items .item .title a {
 display: block;
 position: relative;
 padding-right: 1em;
}
.post_items .item:after {
 content: "\f054";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 position: absolute;
 right: 5px;
 top: 50%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}

.post_items .item.single_item {
 display: flex;
 flex-wrap: wrap;
 border: none;
 border-top: 15px solid #d3d3d3;
 /*    border-bottom: 1px solid #d3d3d3;
        border-left: 1px solid #d3d3d3;
        border-right: 1px solid #d3d3d3;*/
}
.post_items .item.single_item:after {
 display: none;
}
.post_items .item.single_item .meta {
 display: block;
 /*    display: flex;
        align-items: center;
        width: 100%;*/
}
.post_items .item.single_item .title {
 width: 100%;
 font-size: 20px;
 font-weight: 500;
 font-family: "Kiwi Maru";
 letter-spacing: 0.075em;
 padding-bottom: 20px;
 border-bottom: 2px solid #eb5f2a;
}
.post_items .item.single_item .content {
 width: 100%;
 margin-top: 20px;
 padding-bottom: 20px;
}
.post_items .item.single_item .content * {
 margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6 {
 margin-bottom: 0.5em;
}
.post_items .item.single_item .content a {
 color: #2196f3;
}

.post_items .post_content {
 margin-top: 30px;
 margin-top: 27px;
 margin-inline: 7px;
}

/* ページ送り(一覧) */
.pagination {
 text-align: center;
 margin-top: 30px;
}
.pagination .nav-links {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}
.pagination .page-numbers {
 align-self: stretch;
 border: 1px solid #c0c0c0;
 padding: 4px 13px;
 margin: 4px 4px;
 color: #1e1e1e;
 text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
 background: #e5e5e5;
}
.pagination .page-numbers.next:after {
 content: "\f101";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 margin-left: 10px;
}
.pagination .page-numbers.prev:before {
 content: "\f100";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts {
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev {
 min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a {
 display: block;
 border: 1px solid #c0c0c0;
 padding: 10px 50px;
 position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after,
.pagination .nav-posts .page-archive a:after {
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 position: absolute;
 top: 50%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before {
 content: "\f053";
 left: 10px;
}
.pagination .nav-posts .page-prev a:after {
 content: "\f054";
 right: 10px;
}
.pagination .nav-posts .page-archive a {
 position: relative;
 display: block;
 height: 47px;
 background: #fbca07;
 color: #000;
 font-size: 18px;
 font-weight: 500;
 font-family: "Kiwi Maru";
 line-height: 1;
 letter-spacing: 0.075em;
 border-radius: 23.5px;
 padding: 10px 100px;
}
.pagination .nav-posts .page-archive a:after {
 content: "\f054";
 right: 10px;
}

/* 検索 */
.search_list {
 background: #eee;
 padding: 15px;
}
.search_list .item {
}
.search_list .item + .item {
}

/* ページTOPに戻る */
/* .pagetop {
 display: none;
 position: fixed;
 right: 10px;
 bottom: 60px;
}
.pagetop a {
 display: block;
 font-size: 0;
 width: 42px;
 height: 42px;
 text-align: center;
}
.pagetop a i {
 font-size: 40px;
} */

.breadcrumb {
 display: flex;
 list-style: none;
 margin-bottom: 20px;
 font-size: 14px;
 overflow-x: auto;
 overflow-y: hidden;
}
.breadcrumb li {
 display: inline;
 white-space: nowrap;
}
.breadcrumb li + li {
 margin-left: 10px;
}
.breadcrumb li:last-child {
 font-weight: 500;
}
.breadcrumb li a {
 position: relative;
 padding-right: 15px;
}
.breadcrumb li a:after {
 content: "\f054";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 font-size: 12px;
 position: absolute;
 top: 50%;
 right: 0;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}

.pg_header .container {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 height: 500px;
}
.pg_header_title {
 display: flex;
 justify-content: center;
 align-items: center;
 height: 260px;
 width: 100vw;
}
.pg_header .tt1 {
 color: #181818;
 font-size: 34px;
 font-weight: 100;
 letter-spacing: 0.075em;
 line-height: 1.117;
 font-family: "Noto Serif JP", sans-serif;
}

.main {
 margin-bottom: 0px;
}

/*******************************
*　共通
********************************/
.container {
 width: 1130px;
 max-width: 100%;
 padding: 0 10px;
 margin: 0 auto;
}

.pg_header {
 margin-bottom: 150px;
 margin-bottom: 134px;
}

.pg_header_bg {
 /* padding: 15px 0; */
 background-color: #ccc;
 background-repeat: no-repeat;
 background-position: center center;
 background-size: cover;
 width: 100vw;
 height: 330px;
}

.h2_title {
 position: relative;
}
.h2_title_ja {
 font-size: 38px;
 font-weight: 100;
 text-align: center;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 margin-bottom: 22px;
}
.h2_title_en {
 font-size: 16px;
 font-weight: 100;
 text-align: center;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
}
.h2_title::after {
 position: absolute;
 content: "";
 width: 126px;
 height: 1px;
 top: 70px;
 left: 50%;
 transform: translateX(-50%);
 background-color: #94b644;
}

@media (max-width: 767px) {
 .pg_header {
  margin-bottom: 100px;
 }
 .pg_header .container {
  height: 300px;
 }
 .pg_header_title {
  height: 150px;
 }
 .pg_header_bg {
  height: 150px;
 }
 .pg_header .tt1 {
  font-size: 20px;
 }
}

/*******************************
*　その他業務案内
********************************/
.pg_other {
}
.pg_other .other_box1 {
 display: flex;
 gap: 70px;
}
.pg_other .other_box2 {
 display: flex;
 gap: 70px;
 margin-top: 152px;
}
.pg_other .other_box3 {
 display: flex;
 justify-content: center;
 margin-top: 90px;
}
.pg_other .other_box4 {
 display: flex;
 justify-content: center;
 margin-top: 50px;
}
.pg_other .other_item1 {
 width: 690px;
}
.pg_other .other_item1 .tt2 {
 display: inline-block;
 font-size: 20px;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 background: #dee7cc;
 padding: 3px 27px;
 margin-bottom: 20px;
}
.pg_other .other_item1 .text {
 font-size: 16px;
 line-height: 2.25em;
 letter-spacing: 0.075em;
}
.pg_other .other_item1 .text span {
 display: inline-block;
 text-indent: -1em;
 padding-left: 1em;
}
.pg_other .other_item1 .other_text {
 background: #f7f3f2;
 margin-top: 25px;
 padding: 10px;
}
.pg_other .other_item1 .other_text_tt2 {
 display: inline-block;
 font-size: 16px;
 font-weight: 600;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 background: #dee7cc;
 padding: 10px 30px;
 margin-bottom: 30px;
 padding: 3px 2px 3px 10px;
 margin: 7px 0px 10px;
}

.pg_other .other_text .title {
 font-size: 16px;
 line-height: 2.25em;
 letter-spacing: 0.075em;
 margin-bottom: 5px;
 margin-left: -10px;
}
.pg_other .other_text .text {
 font-size: 16px;
 line-height: 2.25em;
 letter-spacing: 0.075em;
 margin-bottom: 9px;
}
.pg_other .other_text_inner {
 border: 1px solid #94b644;
 padding: 20px;
 padding: 7px 7px 7px 23px;
}
.pg_other .other_item2 img {
 width: 350px;
 height: 730px;
}
.pg_other .other_btn {
}
.pg_other .other_btn a {
 position: relative;
 display: flex;
 justify-content: center;
 align-content: center;
 flex-wrap: wrap;
 color: #fff;
 font-size: 18px;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", serif;
 width: 410px;
 height: 70px;
 background: #0a2a14;
 transition: 0.3s;
}
.pg_other .other_btn a:hover {
 opacity: 0.8;
 text-decoration: none;
}
.pg_other .other_btn a::after {
 position: absolute;
 content: "";
 top: 50%;
 right: 0px;
 transform: translateX(50%);
 width: 65px;
 height: 2px;
 background: linear-gradient(to right, #fff 50%, #0a2a14 50% 100%);
 transition: 0.3s;
}

.pg_other .section#sec2 {
 margin-top: 92px;
}

/* コピー用 */
@media (max-width: 374px) {
}
@media (min-width: 375px) {
}
@media (max-width: 767px) {
 .pg_other .other_box1,
 .pg_other .other_box2 {
  flex-direction: column;
  margin-top: 100px;
 }
 .pg_other .other_item1 {
  width: 100%;
 }
 .pg_other .other_text_inner {
  padding: 7px 13px;
 }
 .pg_other .other_item1 .text span {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
 }
 .pg_other .other_btn a {
  font-size: 16px;
  width: 280px;
  /* height: 60px; */
 }
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
 .pg_header {
  margin-bottom: 150px;
 }
}

/*******************************
*　手続きの流れ・報酬表 Procedural Flow
********************************/
.pg_flow .flow_box {
 margin-top: 90px;
}
.pg_flow .flow_item {
 position: relative;
 padding: 17px 84px 66px 94px;
 background-color: #f6f6f6;
 border: 1px solid #bfbfbf;
}
.pg_flow .flow_item::after {
 position: absolute;
 content: "";
 width: 50px;
 height: 20px;
 bottom: 0;
 left: 50%;
 transform: translate(-50%, 50%);
 background-image: url(/img/arrow.png);
 background-repeat: no-repeat;
 background-size: contain;
 background-position: center;
 z-index: 1;
}
.pg_flow .flow_item:last-child::after {
 content: none;
}
.pg_flow .flow_item:nth-child(n + 2) {
 border-top: none;
}
.pg_flow .flow_item:first-child {
 border-radius: 10px 10px 0px 0px;
}
.pg_flow .flow_item:last-child {
 border-radius: 0px 0px 10px 10px;
}

.pg_flow .flow_step {
 text-align: center;
 letter-spacing: 0.075em;
}
.pg_flow .flow_step_en {
 position: relative;
 font-size: 18px;
 line-height: 2;
 margin-bottom: 16px;
 font-family: "Outfit", sans-serif;
}
.pg_flow .flow_step_en::after {
 position: absolute;
 content: "";
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 30px;
 height: 3px;
 background-color: #000;
}
.pg_flow .flow_step_en span {
 font-size: 28px;
}
.pg_flow .flow_step_ja {
 font-size: 16px;
 line-height: 1.625;
}

.pg_flow .flow_item_area {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 123px;
 margin-top: 23px;
}
.pg_flow .flow_item:nth-child(4) .flow_item_area img {
 width: 106px;
}
.pg_flow .flow_item:nth-child(5) .flow_item_area img {
 /* width: 65px; */
}

.pg_flow .flow_text {
 position: relative;
 display: block;
 font-size: 16px;
 letter-spacing: 0.075em;
}
.pg_flow .flow_text::before {
 position: absolute;
 content: "";
 height: 100%;
 width: 1px;
 background-color: #4c4c4c;
 left: -60px;
 top: 0;
}
.pg_flow .flow_text_title {
 color: #94b644;
}

.pg_flow #sec2 {
 margin-top: 88px;
}
.pg_flow .section#sec2 {
 padding-top: 50px;
 margin-top: 100px;
}
.pg_flow #sec3 {
 margin-top: 150px;
}

.pg_flow .flow_table {
 margin-top: 53px;
}
.pg_flow .flow_table table {
 width: 100%;
 height: 412px;
 border-left: 1px solid #bfbfbf;
 border-top: 1px solid #bfbfbf;
}
.pg_flow .flow_table tr {
 width: 100%;
}
.pg_flow .flow_table th,
.pg_flow .flow_table td {
 height: 59px;
 font-size: 18px;
 line-height: 2;
 letter-spacing: 0.075em;
 text-align: center;
 border-right: 1px solid #bfbfbf;
 border-bottom: 1px solid #bfbfbf;
}
.pg_flow .flow_table th {
 font-size: 16px;
 font-weight: 400;
 text-align: left;
 width: 730px;
 padding-left: 90px;
 background-color: #f6f6f6;
}
.pg_flow .flow_table tr:first-child th {
 font-size: 18px;
 text-align: center;
 padding: 0;
 background-color: #dee7cc;
}
.pg_flow .flow_table td {
}

.pg_flow .flow_table .flow_table_text {
 text-align: right;
 letter-spacing: 0.075em;
 padding-right: 5px;
 margin-top: 11px;
}

@media (max-width: 374px) {
}
@media (min-width: 375px) {
}
@media (max-width: 767px) {
 .pg_flow .section#sec2 {
  padding-top: 0px;
  margin-top: 100px;
 }
 .pg_flow .flow_box {
  margin-top: 40px;
 }
 .pg_flow .flow_item {
  padding: 20px 20px 40px;
 }
 .pg_flow .flow_item_area {
  flex-direction: column;
  gap: 50px;
 }
 .pg_flow .flow_text::before {
  height: 1px;
  width: 100%;
  background-color: #4c4c4c;
  left: 0px;
  top: -20px;
 }
 .pg_flow .flow_table tr {
  display: flex;
  flex-direction: column;
 }
 .pg_flow .flow_table th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding-left: 10px;
 }
 .ftr_other_wrap {
  padding: 0px 0 70px;
  margin-top: 100px;
 }
}
@media (min-width: 768px) {
 .pg_flow .flow_table th {
  width: auto;
  padding-left: 10px;
 }
}
@media (min-width: 1024px) {
 .pg_flow .flow_table th {
  width: 730px;
  padding-left: 90px;
 }
}

/*******************************
*　経営理念 Management Philosophy
********************************/
.about_philosophy_wrap {
 padding: 20px;
 margin-top: 80px;
 background-color: #f7f3f2;
}
.about_philosophy_item {
 display: flex;
 justify-content: space-between;
 padding: 35px 46px 36px 74px;
 border: 1px solid #2f1609;
}
.about_philosophy_word {
 color: #181818;
 font-size: 180px;
 font-weight: 500;
 line-height: 1;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 margin-top: 9px;
}
.about_philosophy_line {
 content: "";
 width: 1px;
 background-color: #2f1609;
 margin: 0px 50px;
}
.about_philosophy_text {
 color: #181818;
 font-size: 16px;
 font-weight: 500;
 line-height: 2.25;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 padding-left: 1.6em;
 text-indent: -1.6em;
}
.about_philosophy_text p:not(:first-child) {
 margin-top: 36px;
}

.about_greeting_wrap {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 50px;
 margin-top: 120px;
}
.about_greeting_right {
}
.about_greeting_title {
 font-size: 20px;
 line-height: 1;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 margin-bottom: 11px;
}
.about_greeting_text {
 font-size: 16px;
 line-height: 2;
 letter-spacing: 0.075em;
}

.about_greeting_left {
}
.about_greeting_img {
 width: 350px;
}
.about_greeting_img_text {
 font-size: 16px;
 font-weight: 600;
 text-align: right;
 line-height: 2;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 margin-top: 9px;
}

.pg_about .section#sec2 {
 margin-top: 178px;
}
.about_table {
 margin-top: 53px;
}
.about_table table {
 width: 100%;
 height: 590px;
 border-left: 1px solid #bfbfbf;
 border-top: 1px solid #bfbfbf;
}
.about_table tr {
 width: 100%;
}
.about_table th,
.about_table td {
 height: 59px;
 font-size: 18px;
 line-height: 2;
 letter-spacing: 0.075em;
 border-bottom: 1px solid #bfbfbf;
}
.about_table th {
 font-size: 16px;
 font-weight: 400;
 text-align-last: left;
 width: 250px;
 padding-left: 65px;
 background-color: #f6f6f6;
}
.about_table td {
 padding-left: 60px;
 border-right: 1px solid #bfbfbf;
}

.pg_about .section#sec3 {
 margin-top: 146px;
}
.about_profile_wrap {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 98px;
 margin-top: 42px;
}
.about_profile_right {
 margin-top: 11px;
}
.about_profile_img {
 width: 350px;
}
.about_profile_left {
}
.about_profile_title {
 font-size: 18px;
 font-weight: 600;
 line-height: 2;
 letter-spacing: 0.075em;
 font-family: "Noto Serif JP", sans-serif;
 margin-bottom: 16px;
}
.about_profile_text {
 font-size: 16px;
 line-height: 2.25;
 letter-spacing: 0.075em;
}

.pg_about .section#sec4 {
 margin-top: 178px;
}

@media (max-width: 374px) {
}
@media (min-width: 375px) {
}
@media (max-width: 767px) {
 .pg_about .section {
  margin-top: 100px;
 }
 .pg_about .section#sec2 {
  margin-top: 100px;
 }
 .pg_about .section#sec3 {
  margin-top: 100px;
 }
 .pg_about .section#sec4 {
  margin-top: 100px;
 }
 .h2_title_ja {
  font-size: 28px;
 }
 .about_philosophy_wrap {
  margin-top: 40px;
 }
 .about_philosophy_word {
  font-size: 30vw;
 }
 .about_philosophy_item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
 }
 .about_philosophy_line {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #2f1609;
  margin: 10px 0px;
 }
 .about_philosophy_text {
  padding-left: 1em;
  text-indent: -1em;
 }
 .about_greeting_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
  gap: 20px;
  margin-top: 100px;
 }
 .about_greeting_title {
  text-align: center;
 }
 .about_greeting_left {
  margin: 0 auto;
 }
 .about_greeting_img {
  width: 70vw;
  margin: 0 auto;
 }
 .about_greeting_img img {
  width: 100%;
 }
 .about_greeting_img_text {
  text-align: center;
 }
 .about_table {
  margin-top: 40px;
 }
 .about_table th {
  padding-left: 10px;
  width: 100px;
 }
 .about_table td {
  font-size: 15px;
  padding-left: 10px;
 }
 .h2_title::after {
  position: absolute;
  content: "";
  width: 126px;
  height: 1px;
  top: unset;
  bottom: 40px;
 }
 .about_profile_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
 }
 .about_profile_img {
  width: 70vw;
 }
 .about_profile_img img {
  width: 100%;
 }
 .about_profile_title {
  text-align: center;
 }
}
@media (min-width: 768px) {
 .about_philosophy_word {
  font-size: 15vw;
  margin: auto 0px;
 }
 .about_philosophy_text {
  padding-left: 1em;
  text-indent: -1em;
 }
 .about_greeting_img {
  width: 32vw;
 }
 .about_profile_wrap {
  gap: 50px;
 }
 .about_profile_img {
  width: 20vw;
 }
}
@media (min-width: 1024px) {
 .about_philosophy_word {
  margin: 9px 0px 0px;
 }
 .about_philosophy_word {
  font-size: 180px;
 }
 .about_philosophy_text {
  padding-left: 1.6em;
  text-indent: -1.6em;
 }
 .about_greeting_img {
  width: 350px;
 }
 .about_profile_wrap {
  gap: 58px;
 }
 .about_profile_img {
  width: 20vw;
 }
}
@media (max-width: 1024px) {
}

/*******************************
*　
********************************/
.pg_xxx {
}
.pg_xxx .section#sec1 {
}
.pg_xxx .section#sec2 {
}
.pg_xxx .section#sec3 {
}

@media (max-width: 374px) {
}
@media (min-width: 375px) {
}
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}

/*******************************
*　CONTACT ご相談・お問い合わせ
********************************/

.contact_ttl {
 display: flex;
 align-items: center;
 color: #181818;
 font-family: "Noto Serif JP", sans-serif;
 line-height: 1.75em;
}
.contact_ttl::before,
.contact_ttl::after {
 content: "";
 flex-grow: 1;
 height: 1px;
 background: #94b644;
}
.contact_ttl::before {
 margin-right: 20px;
}
.contact_ttl::after {
 margin-left: 20px;
}
.contact_ttl_en {
 font-size: 28px;
 text-align: center;
 letter-spacing: 0.2em;
}
.contact_ttl_ja {
 display: block;
 font-size: 15px;
 text-align: center;
 letter-spacing: 0.075em;
}
.contact_text_center {
 font-size: 16px;
 letter-spacing: 0.075em;
 text-align: center;
 margin-top: 21px;
 line-height: 2.15em;
}
.contact_box {
 display: flex;
 justify-content: center;
 gap: 65px;
 margin-top: 47px;
}

.contact_btn {
 display: block;
 width: 410px;
 height: 70px;
}
.contact_btn a {
 position: relative;
 display: flex;
 justify-content: center;
 align-content: center;
 flex-wrap: wrap;
 color: #fff;
 font-size: 20px;
 font-weight: 600;
 letter-spacing: 0.2em;
 font-family: "Noto Serif JP", sans-serif;
 width: 410px;
 height: 70px;
 background: #0a2a14;
 transition: 0.3s;
}
.contact_btn a:hover {
 opacity: 0.8;
 text-decoration: none;
}
.contact_btn a::after {
 position: absolute;
 content: "";
 top: 50%;
 right: 0px;
 transform: translateX(50%);
 width: 65px;
 height: 2px;
 background: linear-gradient(to right, #fff 50%, #0a2a14 50% 100%);
 transition: 0.3s;
}

@media (max-width: 374px) {
}
@media (min-width: 375px) {
}
@media (max-width: 767px) {
 .contact_box {
  flex-direction: column;
  gap: 20px;
 }
 .contact_btn a {
  font-size: 15px;
  width: 280px;
  height: 60px;
 }
}
@media (min-width: 768px) {
 .contact_btn a {
  width: 300px;
  height: 60px;
 }
}
@media (min-width: 1024px) {
 .contact_btn a {
  width: 410px;
  height: 70px;
 }
}
