@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=M+PLUS+1:wght@100..900&display=swap");
/*
Theme Name:クローバー技建株式会社 | 福岡市 リフォーム 注文住宅 内装工事 軽天工事
Description:クローバー技建株式会社
Version: 1.0
License:クローバー技建株式会社
License URI:https://www.clovergiken.co.jp/
*/
/****************************************

リセットCSSここから

*****************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  background: url(images/) no-repeat center top;
  background-size: cover;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
picture,
menu,
nav,
section,
main {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/****************************************

メディアクエリ/レスポンシブ用mixin

*****************************************/
/****************************************

body設定(主に書式)

*****************************************/
body {
  color: #222;
  background: #fff;
  font-weight: normal;
  min-width: 1240px;
  font-family: "M PLUS 1", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  float: none;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
    min-height: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}
/****************************************

フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

h1 {
  line-height: 1.4;
  font-size: 5.8rem;
  letter-spacing: 0.1em;
}

h2 {
  line-height: 1.4;
  font-size: 3rem;
  letter-spacing: 0.1em;
}

h3 {
  line-height: 1.4;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
}

h4 {
  line-height: 1.4;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.7rem;
  }
  h4 {
    font-size: 1.5rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link,
a:visited {
  color: #a1c46f;
  text-decoration: underline;
  transition: 0.3s linear;
  position: relative;
}
a:link.a_txt,
a:visited.a_txt {
  display: inline-block;
}
a:link.a_txt::after,
a:visited.a_txt::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #a1c46f;
  bottom: -1px;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
a:link.a_txt:hover::after,
a:visited.a_txt:hover::after {
  transform: scale(0, 1);
  transform-origin: left top;
}

a:hover,
a:active {
  transition: 0.3s linear;
  color: #f5f5f5;
  text-decoration: underline;
}

a:hover img.img_opacity {
  opacity: 0.75;
  transition: 0.2s linear;
}

a img.img_opacity {
  transition: 0.2s linear;
}

a:hover img.img_up {
  transform: translateY(-5px);
  transition: 0.3s linear;
}

a img.img_up {
  transition: 0.3s linear;
}

.btn a {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #222;
  box-sizing: border-box;
  background: none;
  border: 1px solid #222;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #222;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
  background: #222;
}
.btn a:hover {
  color: #fff;
  background: #222;
}
.btn a:hover::before, .btn a:hover::after {
  background: #fff;
}

.btn02 a {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  background: none;
  border: 1px solid #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .btn02 a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn02 a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #fff;
}
.btn02 a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
  background: #fff;
}
.btn02 a:hover {
  color: #222;
  background: #fff;
}
.btn02 a:hover::before, .btn02 a:hover::after {
  background: #222;
}

.btn03 a {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 34px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  background: #b53222;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .btn03 a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn03 a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #fff;
}
.btn03 a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
  background: #fff;
}
.btn03 a:hover {
  background: #333;
}
.btn03 a img {
  width: auto;
  margin-right: 20px;
}

.btn04 {
  width: 200px;
  margin-left: auto;
}
.btn04 a {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #222;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .btn04 a {
    font-size: 1.5rem;
    padding: 17px;
  }
}
.btn04 a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #222;
}
.btn04 a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
  background: #222;
}
.btn04 a:hover {
  color: #a1c46f;
}
.btn04 a:hover::before, .btn04 a:hover::after {
  background: #a1c46f;
}

.btn05 a {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #222;
  box-sizing: border-box;
  background: none;
  border: 1px solid #222;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  text-align: center;
}
.btn05 a:hover {
  background: #ccc;
}
.btn05 a img {
  width: auto;
  margin-right: 10px;
}

a.deconone:link,
a.deconone:visited,
a.deconone:hover,
a.deconone:active {
  text-decoration: none;
}

/****************************************

ヘッダー　共通

*****************************************/
header {
  width: 100%;
  position: relative;
  z-index: 0;
}
header .header_box {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 92px 0 30px;
  border-left: 20px solid #333;
}
@media screen and (max-width: 767px) {
  header .header_box {
    padding: 9px 20px;
    height: auto;
    justify-content: flex-start;
    border-left: 10px solid #333;
  }
}
header .header_box .h_logo {
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  header .header_box .h_logo {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  header .header_box .h_logo {
    width: 180px;
  }
}
header .header_box .h_logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  header .top_recruit {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 100;
  }
}
@media screen and (max-width: 767px) {
  header .top_recruit {
    width: 80%;
    margin: 20px auto 0;
  }
}
header .scroll {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  writing-mode: vertical-lr;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  header .scroll {
    display: none;
  }
}
header .scroll::before {
  animation: scroll 3.2s infinite;
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media screen and (max-width: 767px) {
  header .scroll {
    display: none;
  }
}
header .scroll a {
  text-decoration: none;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1500px) {
  header .scroll a {
    font-size: 1rem;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/****************************************

PCヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_header {
    display: none;
  }
  .header_box-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .header_box-right {
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .header_box-right .h_btn {
    width: 92px;
    aspect-ratio: 1/1;
  }
  .header_box-right .h_btn a {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 11px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    background: #a1c46f;
    text-align: center;
  }
  .header_box-right .h_btn a:hover {
    background: #8cb157;
  }
  .header_box-right .h_btn img {
    margin-bottom: 10px;
  }
}
/****************************************

トグル

*****************************************/
#toggle {
  background: #333;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  #toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 92px;
    aspect-ratio: 1/1;
    cursor: pointer;
    z-index: 9999;
    padding: 25px 30px 35px;
  }
}
@media screen and (max-width: 767px) {
  #toggle {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    padding: 14px;
  }
}
#toggle:hover {
  background: #000;
}

#toggle div {
  position: relative;
}

#toggle span {
  display: block;
  position: absolute;
  /*#navToggledivに対して*/
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.35s ease-in-out;
}

#toggle span:nth-child(1) {
  top: 0;
}

#toggle span:nth-child(2) {
  top: 11px;
}

#toggle span:nth-child(3) {
  top: 22px;
}

#toggle p {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 30px;
}
@media screen and (max-width: 767px) {
  #toggle p {
    display: none;
  }
}

.open_navi #toggle span {
  background: #fff;
}

/*spanの絶対位置指定の親にします*/
.open_navi #toggle {
  position: fixed;
}

.open_navi #toggle span:nth-of-type(1) {
  transform: translateY(11px) rotate(-315deg);
}

.open_navi #toggle span:nth-of-type(2) {
  opacity: 0;
}

.open_navi #toggle span:nth-of-type(3) {
  transform: translateY(-11px) rotate(315deg);
}

#sp_navi {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  overflow-y: scroll;
  text-align: left;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
  transform: translateX(100%);
  transition: 0.7s ease-in-out;
}
@media screen and (min-width: 768px) {
  #sp_navi {
    width: 460px;
  }
}

.open_navi #sp_navi {
  transform: translateX(0);
  transition: 0.7s ease-in-out;
}

.open_navi #wrapper {
  transform-origin: left center;
  filter: blur(3px);
  transition: 0.7s ease-in-out;
}

#sp_navi .menu {
  padding: 140px 20px 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sp_navi .menu {
    padding: 80px 20px 20px;
  }
}

#sp_navi .menu .menu-item {
  width: 100%;
  text-align: center;
  border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
  cursor: pointer;
  color: #fff;
  margin: 0 auto;
  font-size: 1.4rem;
  box-sizing: border-box;
}

#sp_navi .menu-item a,
#sp_navi .menu-item span {
  display: block;
  padding: 15px 0 14px;
}

#sp_navi .menu-item a:link,
#sp_navi .menu-item a:visited,
#sp_navi .menu-item a:hover,
#sp_navi .menu-item a:active {
  text-decoration: none;
  color: #fff;
}

#sp_navi .sub-menu {
  width: 100%;
  text-align: center;
  display: none;
}

#sp_navi .sub-menu li {
  width: 100%;
  text-align: center;
}

#sp_navi .sub-menu li a {
  display: block;
  padding: 11px 0 10px;
  background: rgba(255, 255, 255, 0.85);
  background: #a1c46f;
  color: #fff !important;
}

#sp_navi .sub-menu li a:link,
#sp_navi .sub-menu li a:visited,
#sp_navi .sub-menu li a:hover,
#sp_navi .sub-menu li a:active {
  color: #fff;
  text-decoration: none;
}

#sp_navi .sub-menu li a:hover {
  color: #ccc;
  background: #8cb157;
}

#sp_navi .menu-item-has-children {
  position: relative;
}

#sp_navi .menu-item-has-children::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(135deg);
  transition: 0.2s ease-in-out;
  position: absolute;
  top: 14px;
  right: 20px;
}

#sp_navi .menu-item-has-children.menu_open::before {
  transform: rotate(-45deg);
  transition: 0.2s ease-in-out;
  top: 22px;
}

/****************************************

SPヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  .header_box-right,
  .h_btn,
  .h_tel {
    display: none;
  }
}
/****************************************

pc用 ナビ

*****************************************/
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
}
#g_navi .menu {
  width: auto;
  margin: auto;
  *zoom: 1;
  list-style-type: none;
  display: flex;
  justify-content: center;
}
#g_navi .menu:before {
  content: "";
  display: table;
}
#g_navi .menu:after {
  content: "";
  display: table;
  clear: both;
}
#g_navi .menu > li {
  position: relative;
  cursor: pointer;
  margin-left: 40px;
}
@media screen and (max-width: 1500px) {
  #g_navi .menu > li {
    margin-left: 20px;
  }
}
#g_navi .menu li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #222;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  #g_navi .menu li a {
    font-size: 1.5rem;
  }
}
#g_navi .menu li ul {
  min-width: 180px;
  width: 100%;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
#g_navi .menu li ul li {
  width: 100%;
  border-right: none;
  padding: 0;
}
#g_navi .menu li ul li a {
  width: 100%;
  padding: 15px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  background: #a1c46f;
}
#g_navi .menu li ul li a:hover {
  background: #fff;
  color: #a1c46f;
  opacity: 0.8;
  transition: 0.2s linear;
}
#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.9;
}
#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  #g_navi .menu > li > a {
    position: relative;
    display: inline-block;
    transition: 0.6s;
  }
  #g_navi .menu > li > a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #a1c46f;
    transition: 0.6s;
    transform: translateX(0%);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  #g_navi .menu > li > a:after {
    bottom: 0;
  }
  #g_navi .menu > li > a:hover:after {
    width: 100%;
    opacity: 1;
    filter: alpha(opacity=90);
  }
}
/****************************************

メインビジュアル

*****************************************/
#mv_top {
  width: calc(100% - 20px);
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #mv_top {
    width: calc(100% - 10px);
    height: 64vw;
  }
}
#mv_top .mv_img img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center left;
  object-position: center left;
}
@media screen and (max-width: 767px) {
  #mv_top .mv_img img {
    width: 100%;
    height: 70vw;
  }
}

.mv_txt {
  background: #fff;
  border-left: 20px solid #333;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .mv_txt {
    position: absolute;
    z-index: 100;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv_txt {
    border-left: 10px solid #333;
    padding: 14px;
  }
}
.mv_txt p {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .mv_txt p {
    font-size: 1.4rem;
  }
}

#mv_page {
  width: calc(100% - 20px);
  height: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #mv_page {
    width: calc(100% - 10px);
  }
}
#mv_page .mv_img img {
  width: 100% !important;
  height: 380px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center left;
  object-position: center left;
}
@media screen and (max-width: 767px) {
  #mv_page .mv_img img {
    width: 100%;
    height: 38vw;
  }
}

.metaslider .flex-control-nav {
  bottom: 0 !important;
  z-index: 10;
}

.metaslider .flexslider {
  margin: 0 !important;
}

/****************************************

content 共通設定

*****************************************/
.img_round img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .img_round img {
    border-radius: 6px;
  }
}

.img_shadow {
  filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.1));
}

.youtube-ratio {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube-ratio iframe {
  width: 100%;
  height: 100%;
}

.breadcrumb {
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    bottom: 10px;
    right: 10px;
  }
}
.breadcrumb p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .breadcrumb p {
    font-size: 1rem;
  }
}
.breadcrumb a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.breadcrumb a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #a1c46f;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.breadcrumb a:hover {
  color: #a1c46f;
}
.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

main#top_main {
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  main#top_main {
    margin: 40px auto 0;
  }
}

main#page_main {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
  .pc_mb40 {
    margin-bottom: 40px;
  }
  .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flex_str {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .flex_r {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flex_r_center {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .sp_img {
    text-align: center;
  }
  .sp_img img {
    width: auto;
  }
  .sp_none {
    display: none !important;
  }
  .sp_mb10 {
    margin-bottom: 10px;
  }
  .sp_mb20 {
    margin-bottom: 20px;
  }
  .sp_mb25 {
    margin-bottom: 25px;
  }
  .sp_mb30 {
    margin-bottom: 30px;
  }
  a[href^="tel:"] {
    text-decoration: none;
  }
  .tel_none {
    pointer-events: none;
    text-decoration: none;
  }
}
/****************************************

contentトップ用

*****************************************/
.top_box01 {
  width: 100%;
  position: relative;
  z-index: 0;
  padding: 40px 0 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top_box01 {
    margin-bottom: 60px;
  }
}
.top_box01::before {
  content: "";
  width: 81.25%;
  height: calc(100% - 40px);
  background: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top_box01 h2 {
  padding: 0 0 0 8.4%;
  margin-bottom: 80px;
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .top_box01 h2 {
    margin-bottom: 40px;
  }
}
.top_box01 .inner {
  width: 57.8%;
  background: url(images/bg01.jpg) no-repeat center/cover;
  padding: 60px 9.4% 120px 8.4%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_box01 .inner {
    width: 100%;
    padding: 40px 8.4%;
  }
}
.top_box01 .inner h3 {
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-size: clamp(2rem, 1.354vw, 2.8rem);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top_box01 .inner h3 {
    margin-bottom: 20px;
  }
}
.top_box01 .inner .btn_wrap {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top_box01 .inner .btn_wrap {
    gap: 10px;
    margin-top: 30px;
  }
}
.top_box01 .inner .btn_wrap .btn02 {
  width: 250px;
}
@media screen and (min-width: 768px) {
  .top_box01 .top_box01_img {
    position: absolute;
    top: 30px;
    right: 0;
    width: 48.4%;
  }
  .top_box01 .top_box01_img img {
    width: 100%;
    height: auto;
  }
}

.top_box02 {
  width: 100%;
  padding: 0 40px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .top_box02 {
    padding: 0 calc(10px + 3%);
    margin-bottom: 60px;
  }
}
.top_box02 h2 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_box02 h2 {
    margin-bottom: 30px;
  }
}
.top_box02 .inner {
  display: flex;
  justify-content: center;
  gap: 1.1%;
}
@media screen and (max-width: 767px) {
  .top_box02 .inner {
    flex-direction: column;
    gap: 15px;
  }
}
.top_box02 .inner a {
  width: 32.6%;
}
@media screen and (max-width: 767px) {
  .top_box02 .inner a {
    width: 100%;
  }
}
.top_box02 .inner a img {
  width: 100%;
  height: auto;
}

.top_box03 {
  width: 100%;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .top_box03 {
    padding: 0 10px;
    margin-bottom: 60px;
  }
}
.top_box03 h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_box03 h2 {
    width: 90%;
    max-width: 572px;
    margin: 0 auto 30px;
  }
}
.top_box03 .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .top_box03 .list {
    gap: 30px 2%;
  }
}
.top_box03 .list li {
  width: 250px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_box03 .list li {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .top_box03 .list li img {
    width: 80%;
  }
}
.top_box03 .list li h3 {
  text-align: center;
  font-size: 2.8rem;
  margin: 10px 0 5px;
}
@media screen and (max-width: 767px) {
  .top_box03 .list li h3 {
    font-size: 2rem;
  }
}
.top_box03 .list li p {
  text-align: left;
}

.top_box04 {
  width: 100%;
  padding: 0 15px 0 8.4%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .top_box04 {
    padding: 0 10px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top_box04 h2 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .top_box04 .btn {
    position: absolute;
    left: 8.4%;
    bottom: 60px;
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .top_box04 .btn {
    width: 94%;
    margin: 30px auto 0;
  }
}

.top_box05 {
  width: 100%;
  position: relative;
  z-index: 0;
  padding: 0 0 150px 0;
}
@media screen and (max-width: 767px) {
  .top_box05 {
    padding: 0;
  }
}
.top_box05::before {
  content: "";
  width: 100%;
  height: 78.5%;
  background: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top_box05::after {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top_box05::after {
    content: none;
  }
}
.top_box05 h2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .top_box05 h2 {
    margin-bottom: 30px;
  }
}
.top_box05 .inner {
  width: 50%;
  margin-left: auto;
  padding: 0 16.666% 0 60px;
}
@media screen and (max-width: 1500px) {
  .top_box05 .inner {
    padding: 0 12% 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .top_box05 .inner {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .top_box05 .top_box05_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 46.8%;
  }
  .top_box05 .top_box05_img img {
    width: 100%;
    height: auto;
  }
}
.top_box05 .btn_wrap {
  display: flex;
  gap: 30px;
  margin: 40px 0 55px;
}
@media screen and (max-width: 767px) {
  .top_box05 .btn_wrap {
    width: 94%;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 20px;
  }
}
.top_box05 .btn_wrap .btn {
  width: 250px;
}
.top_box05 .btn03 {
  width: 415px;
}
@media screen and (max-width: 767px) {
  .top_box05 .btn03 {
    width: 94%;
    margin: auto;
  }
}

.top_box06 {
  width: 100%;
  padding: 160px 8.4% 110px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top_box06 {
    padding: 60px 10px;
  }
}
.top_box06::before {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_box06::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .top_box06 h2 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .top_box06 .btn04 {
    position: absolute;
    right: 8.4%;
    bottom: 60px;
  }
}

.top_box07 {
  width: 100%;
  background: #f5f5f5;
  padding: 100px calc((100% - 1200px) / 2) 80px;
}
@media screen and (max-width: 767px) {
  .top_box07 {
    padding: 60px 10px;
  }
}
.top_box07 h2 {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.top_box07 h2 img {
  width: auto;
  margin-right: 20px;
}
.top_box07 .btn05 {
  width: 255px;
  margin: 50px auto 0;
}

/****************************************

Works トップ用

*****************************************/
.works-top_post a:link,
.works-top_post a:visited,
.works-top_post a:hover,
.works-top_post a:active {
  text-decoration: none;
}

.works-top_post {
  width: 74%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.86666%;
}
@media screen and (min-width: 768px) {
  .works-top_post {
    min-height: 346px;
  }
}
@media screen and (max-width: 767px) {
  .works-top_post {
    width: 100%;
    gap: 30px 2%;
  }
}
.works-top_post article {
  width: 23.38%;
}
@media screen and (max-width: 767px) {
  .works-top_post article {
    width: 49%;
  }
}
.works-top_post article a {
  text-decoration: none;
}
.works-top_post article a figure {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .works-top_post article a figure {
    margin-bottom: 10px;
  }
}
.works-top_post article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s;
}
.works-top_post article a figure .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.works-top_post article a figure .mask .caption {
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .works-top_post article a figure .mask .caption {
    font-size: 1.2rem;
  }
}
.works-top_post article a figure .cate {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding: 5px 15px;
  margin-bottom: 5px;
  display: inline-block;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .works-top_post article a figure .cate {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
.works-top_post article a figure .cate.new {
  background: #b53222;
}
.works-top_post article a figure .cate.reform {
  background: #a1c46f;
}
.works-top_post article a h3 {
  font-size: 1.7rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .works-top_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.works-top_post article a:hover img {
  filter: blur(4px);
}
.works-top_post article a:hover .mask {
  opacity: 1;
}

/****************************************

news トップ用

*****************************************/
.news_post a:link,
.news_post a:visited,
.news_post a:hover,
.news_post a:active {
  text-decoration: none;
}

.news_post {
  width: 65.625%;
  border-top: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .news_post {
    width: 100%;
  }
}
.news_post article {
  width: 100%;
  border-bottom: 1px solid #333;
}
.news_post article a {
  display: flex;
  align-items: flex-start;
  padding: 37px 60px 37px 20px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news_post article a {
    flex-direction: column;
    padding: 20px 30px 20px 0;
  }
}
.news_post article a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #222;
}
.news_post article a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
  background: #222;
}
.news_post article a .date {
  width: 150px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #a1c46f;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news_post article a .date {
    width: calc(100% - 150px);
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
.news_post article a h3 {
  font-size: 1.7rem;
  color: #222;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.news_post article a p {
  font-size: 1.4rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .news_post article a p {
    font-size: 1.2rem;
  }
}
.news_post article a:hover {
  background: rgba(161, 196, 111, 0.25);
}

/****************************************

content下層用

*****************************************/
.line_left {
  position: relative;
  z-index: 0;
}
.line_left::before {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .line_left::before {
    content: none;
  }
}

.line_right {
  position: relative;
  z-index: 0;
}
.line_right::before {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .line_right::before {
    content: none;
  }
}

.page_box {
  width: 100%;
  position: relative;
  z-index: 0;
}
.page_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#fff 150px, #f5f5f5 150px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page_box::before {
    background-image: linear-gradient(#fff 85px, #f5f5f5 85px);
  }
}
.page_box h2 {
  color: #a1c46f;
  margin-bottom: 160px;
  font-size: clamp(3.6rem, 2.9vw, 5.6rem);
}
@media screen and (max-width: 767px) {
  .page_box h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
.page_box .inner {
  width: 50%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page_box .inner {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page_box .inner .txt {
  max-width: 560px;
  width: 100%;
}
.page_box.page_box-left {
  padding: 0 0 150px 0;
}
@media screen and (max-width: 767px) {
  .page_box.page_box-left {
    padding: 0;
  }
}
.page_box.page_box-left::after {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_box.page_box-left::after {
    content: none;
  }
}
.page_box.page_box-left.pt140::after {
  height: calc(100% + 140px);
  top: -140px;
}
.page_box.page_box-left .inner {
  padding: 40px 60px 0 12.5%;
}
@media screen and (max-width: 767px) {
  .page_box.page_box-left .inner {
    width: 100%;
    padding: 40px 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .page_box.page_box-left .page_box-left_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 46.8%;
  }
  .page_box.page_box-left .page_box-left_img img {
    width: 100%;
    height: auto;
  }
}
.page_box.page_box-right {
  padding: 0 0 150px 0;
}
@media screen and (max-width: 767px) {
  .page_box.page_box-right {
    padding: 0;
  }
}
.page_box.page_box-right::after {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page_box.page_box-right::after {
    content: none;
  }
}
.page_box.page_box-right.pt140::after {
  height: calc(100% + 140px);
  top: -140px;
}
.page_box.page_box-right .inner {
  margin-left: auto;
  padding: 40px 12.5% 0 60px;
}
@media screen and (max-width: 767px) {
  .page_box.page_box-right .inner {
    width: 100%;
    padding: 40px 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .page_box.page_box-right .page_box-right_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 46.8%;
  }
  .page_box.page_box-right .page_box-right_img img {
    width: 100%;
    height: auto;
  }
}
.page_box .number01 {
  width: 237px;
  aspect-ratio: 237/182;
  background: url(images/number01.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 8.3%;
}
@media screen and (max-width: 767px) {
  .page_box .number01 {
    left: -30px;
  }
}
.page_box .number02 {
  width: 257px;
  aspect-ratio: 257/182;
  background: url(images/number02.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_box .number02 {
    left: -30px;
  }
}
.page_box .number03 {
  width: 255px;
  aspect-ratio: 255/182;
  background: url(images/number03.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 8.3%;
}
@media screen and (max-width: 767px) {
  .page_box .number03 {
    left: -30px;
  }
}

@media screen and (min-width: 768px) {
  .interior_box01 .w540 {
    padding-top: 20px;
  }
}

.check li {
  font-size: 2rem;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .check li {
    font-size: 1.6rem;
  }
}
.check li:not(:last-child) {
  margin-bottom: 15px;
}
.check li::before {
  content: "";
  width: 22px;
  aspect-ratio: 1/1;
  background: url(images/chek.png) no-repeat center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .check li::before {
    width: 16px;
    top: 6px;
  }
}
.check.check_orange li::before {
  background: url(images/check_orange.png) no-repeat center/contain;
}

.interior_box02,
.interior_box03 {
  background: #f3f7ed;
  padding: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .interior_box02,
  .interior_box03 {
    padding: 40px 20px 20px;
  }
}
.interior_box02 .sub_txt,
.interior_box03 .sub_txt {
  position: absolute;
  top: -16px;
  left: 0;
  background: #9dc06c;
  color: #fff;
  padding: 7px 22px;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .interior_box02 .sub_txt,
  .interior_box03 .sub_txt {
    font-size: 1.6rem;
  }
}
.interior_box02 p,
.interior_box03 p {
  line-height: 1.6;
}

.interior_box04 {
  background: #f3f7ed;
  padding: 50px 80px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .interior_box04 {
    padding: 40px 20px 20px;
  }
}
.interior_box04 .sub_txt {
  position: absolute;
  top: -16px;
  left: 0;
  background: #9dc06c;
  color: #fff;
  padding: 7px 22px;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .interior_box04 .sub_txt {
    font-size: 1.6rem;
  }
}
.interior_box04 h2 {
  text-align: center;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .interior_box04 h2 {
    font-size: 2rem;
  }
}
.interior_box04 h2 span {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .interior_box04 h2 span {
    font-size: 3rem;
  }
}
.interior_box04 .interior_box03_img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 30px 0 35px;
}
@media screen and (max-width: 767px) {
  .interior_box04 .interior_box03_img {
    flex-wrap: wrap;
    gap: 10px;
    max-width: 326px;
    width: 84%;
    margin: 20px auto 25px;
  }
}
.interior_box04 strong {
  background: #efa11b;
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  font-size: 2.3rem;
  display: block;
  padding: 10px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .interior_box04 strong {
    font-size: 2rem;
  }
}
.interior_box04 strong span {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .interior_box04 strong span {
    font-size: 2.4rem;
  }
}

#service_area .top_box02 {
  background: #f5f5f5;
  padding: 80px 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #service_area .top_box02 {
    padding: 40px calc(10px + 3%) 60px;
  }
}

.construction_box01 {
  padding: 100px 0 40px;
}
@media screen and (max-width: 767px) {
  .construction_box01 {
    padding: 60px 0;
  }
}
.construction_box01 h2 {
  text-align: center;
}
.construction_box01 .construction_box01_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .construction_box01 .construction_box01_list {
    gap: 40px;
    margin-top: 30px;
  }
}
.construction_box01 .construction_box01_list li {
  width: 350px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .construction_box01 .construction_box01_list li {
    width: 100%;
  }
}
.construction_box01 .construction_box01_list li h3 {
  margin: 30px 0 20px;
  font-size: 2.9rem;
  letter-spacing: 0em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .construction_box01 .construction_box01_list li h3 {
    font-size: 2rem;
    margin: 20px 0 10px;
  }
}
.construction_box01 .construction_box01_list li h3 span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .construction_box01 .construction_box01_list li h3 span {
    font-size: 1.3rem;
  }
}
.construction_box01 .construction_box01_list li p {
  text-align: left;
}

.construction_box02 {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .construction_box02 {
    padding: 0 10px 60px 10px;
  }
}
.construction_box02 h2 {
  text-align: center;
}
.construction_box02 .construction_box02_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1640px;
  width: 100%;
  padding: 0 40px;
  margin: 40px auto 0;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .construction_box02 .construction_box02_list {
    gap: 30px 2%;
    margin: auto;
    padding: 0;
  }
}
.construction_box02 .construction_box02_list li {
  width: 22%;
}
@media screen and (max-width: 767px) {
  .construction_box02 .construction_box02_list li {
    width: 49%;
  }
}
.construction_box02 .construction_box02_list li img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .construction_box02 .construction_box02_list li img {
    margin-bottom: 10px;
  }
}
.construction_box02 .construction_box02_list li p {
  line-height: 1.6;
}

.construction_box03 {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .construction_box03 {
    padding: 60px 10px 0;
  }
}
.construction_box03 h2 {
  text-align: center;
}
.construction_box03 .construction_box03_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1640px;
  width: 100%;
  padding: 0 40px;
  margin: 60px auto 0;
  gap: 2.125%;
}
@media screen and (max-width: 767px) {
  .construction_box03 .construction_box03_list {
    gap: 30px 2%;
    padding: 0;
    margin: 30px 0 0;
  }
}
.construction_box03 .construction_box03_list li {
  width: 18.3%;
}
@media screen and (max-width: 767px) {
  .construction_box03 .construction_box03_list li {
    width: 49%;
  }
}
.construction_box03 .construction_box03_list li img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.construction_box03 .construction_box03_list li p {
  line-height: 1.6;
}

.estate_box01 {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .estate_box01 {
    padding-bottom: 60px;
  }
}

.works_post {
  max-width: 1460px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 1.86666%;
}
@media screen and (max-width: 767px) {
  .works_post {
    width: 100%;
    gap: 30px 2%;
    padding: 0 10px;
  }
}
.works_post article {
  width: 23.38%;
}
@media screen and (max-width: 767px) {
  .works_post article {
    width: 49%;
  }
}
.works_post article a {
  text-decoration: none;
}
.works_post article a figure {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .works_post article a figure {
    margin-bottom: 10px;
  }
}
.works_post article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s;
}
.works_post article a figure .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.works_post article a figure .mask .caption {
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .works_post article a figure .mask .caption {
    font-size: 1.2rem;
  }
}
.works_post article a figure .cate {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding: 5px 15px;
  margin-bottom: 5px;
  z-index: 10;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .works_post article a figure .cate {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
.works_post article a figure .cate.new {
  background: #b53222;
}
.works_post article a figure .cate.reform {
  background: #a1c46f;
}
.works_post article a h3 {
  font-size: 1.7rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .works_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.works_post article a:hover img {
  filter: blur(4px);
}
.works_post article a:hover .mask {
  opacity: 1;
}

.applicants_box01 {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .applicants_box01 {
    margin-bottom: 60px;
  }
}
.applicants_box01 section {
  border: 1px solid #ccc;
  padding: 50px 80px;
}
@media screen and (max-width: 767px) {
  .applicants_box01 section {
    padding: 25px;
  }
}
.applicants_box01 section h2 {
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .applicants_box01 section h2 {
    font-size: 2rem;
  }
}
.applicants_box01 section h2::before, .applicants_box01 section h2::after {
  width: 2px;
  height: 28px;
  content: "";
}
@media screen and (max-width: 767px) {
  .applicants_box01 section h2::before, .applicants_box01 section h2::after {
    height: 24px;
  }
}
.applicants_box01 section h2::before {
  margin-right: 20px;
  transform: rotate(-30deg);
}
.applicants_box01 section h2::after {
  margin-left: 20px;
  transform: rotate(30deg);
}
.applicants_box01 section h2.green::before, .applicants_box01 section h2.green::after {
  background-color: #a1c46f;
}
.applicants_box01 section h2.orange::before, .applicants_box01 section h2.orange::after {
  background-color: #efa11b;
}

.faq_box dl {
  border: 1px solid #a1c46f;
}
.faq_box dl:not(:last-child) {
  margin-bottom: 20px;
}
.faq_box dl dt {
  background: #e9f1df;
  font-size: 2.2rem;
  line-height: 1.6;
  padding: 12px 20px 12px 80px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .faq_box dl dt {
    font-size: 1.6rem;
    padding: 12px 12px 12px 60px;
  }
}
.faq_box dl dt::before {
  content: "Q";
  color: #fff;
  background: #9dc06c;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq_box dl dt::before {
    font-size: 2.2rem;
    width: 45px;
  }
}
.faq_box dl dd {
  line-height: 1.6;
  padding: 24px 20px 24px 80px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .faq_box dl dd {
    font-size: 1.6rem;
    padding: 12px 12px 12px 60px;
  }
}
.faq_box dl dd::before {
  content: "A";
  color: #9dc06c;
  background: #fff;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq_box dl dd::before {
    font-size: 2.2rem;
    width: 45px;
  }
}

.fap_txt p {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .fap_txt p {
    font-size: 1.8rem;
  }
}

.recruitment_box01 {
  text-align: center;
}
.recruitment_box01 p {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .recruitment_box01 p {
    font-size: 1.8rem;
  }
}
.recruitment_box01 p .green {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .recruitment_box01 p .green {
    font-size: 2.2rem;
  }
}

.recruitment_box03 .btn03 {
  width: 415px;
  margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
  .recruitment_box03 .btn03 {
    width: 94%;
    margin: 40px auto 0;
  }
}

.greeting_box01 {
  padding: 0 0 120px;
}
@media screen and (max-width: 767px) {
  .greeting_box01 {
    padding: 0 0 60px;
  }
}
.greeting_box01 .name {
  text-align: right;
  font-size: 1.7rem;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .greeting_box01 .name {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}
.greeting_box01 .name span {
  font-size: 3rem;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .greeting_box01 .name span {
    font-size: 2rem;
  }
}

.greeting_box02 {
  padding: 120px 0;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .greeting_box02 {
    padding: 60px 10px;
  }
}
@media screen and (min-width: 768px) {
  .greeting_box02 .greeting_box02_list {
    width: 840px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .greeting_box02 .greeting_box02_list {
    max-width: 360px;
    width: 100%;
    margin: auto;
  }
}
.greeting_box02 .greeting_box02_list li {
  display: flex;
  align-items: center;
}
.greeting_box02 .greeting_box02_list li:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .greeting_box02 .greeting_box02_list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.greeting_box02 .greeting_box02_list li p {
  width: calc(100% - 100px);
  font-size: 2.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .greeting_box02 .greeting_box02_list li p {
    width: calc(100% - 70px);
    font-size: 1.6rem;
  }
}
.greeting_box02 .greeting_box02_list li span {
  font-size: 4.8rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  border-right: 1px solid #000;
  width: 100px;
  margin-right: 40px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .greeting_box02 .greeting_box02_list li span {
    width: 70px;
    font-size: 3rem;
    margin-right: 20px;
  }
}

.table01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.table01 tr:first-child th {
  border-top: 1px solid #a1c46f;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .table01 tr:first-child th::after {
    content: "";
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    top: -1px;
    z-index: 1;
  }
}
.table01 tr:first-child td {
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table01 tr:first-child td {
    border-top: none;
  }
}
.table01 th,
.table01 td {
  text-align: left;
  padding: 16px 20px;
}
.table01 th {
  width: 22%;
  border-bottom: 1px solid #a1c46f;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .table01 th::before {
    content: "";
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: -1px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .table01 th {
    width: 100%;
    display: block;
    padding: 20px 20px 0 20px;
    border-bottom: none;
  }
}
.table01 td {
  width: 78%;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .table01 td {
    width: 100%;
    display: block;
    padding: 0 20px 20px 20px;
  }
}

.blog_post {
  width: 100%;
  border-top: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .blog_post {
    width: 100%;
  }
}
.blog_post article {
  width: 100%;
  border-bottom: 1px solid #333;
}
.blog_post article a {
  display: flex;
  align-items: flex-start;
  padding: 37px 60px 37px 20px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .blog_post article a {
    flex-direction: column;
    padding: 20px 30px 20px 0;
  }
}
.blog_post article a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #222;
}
.blog_post article a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 1px;
  transition: all 0.3s;
  background: #222;
}
.blog_post article a .date {
  width: 150px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #a1c46f;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .blog_post article a .date {
    width: calc(100% - 150px);
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
.blog_post article a h3 {
  font-size: 1.7rem;
  color: #222;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .blog_post article a h3 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.blog_post article a p {
  font-size: 1.4rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blog_post article a p {
    font-size: 1.2rem;
  }
}
.blog_post article a:hover {
  background: rgba(161, 196, 111, 0.25);
}

.contact_tel {
  width: 420px;
  background: #fff;
  border: 1px solid #222;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .contact_tel {
    width: 94%;
    margin: 0 auto 40px;
  }
}
.contact_tel a {
  width: 100%;
  text-decoration: none;
  color: #222;
  text-align: center;
  display: inline-block;
}
.contact_tel .tel {
  background: url(images/tel_icon.png) no-repeat left center;
  background-size: 26px;
  padding-left: 30px;
  font-size: 3rem;
  line-height: 1;
  color: #222;
}
.contact_tel .txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contact_tel .txt {
    font-size: 1.4rem;
  }
}
.contact_tel .detail {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact_tel .detail {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .table_scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .table_scroll::before {
    content: "※横にスクロールしてご覧ください";
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: inline-block;
    position: sticky;
    top: 0;
    left: 0;
  }
}

.policy {
  padding: 40px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .policy {
    padding: 25px;
  }
}
.policy span {
  display: block;
  margin-bottom: 20px;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .policy span {
    font-size: 1.6rem;
    text-align: center;
  }
}
.policy p {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .policy p {
    font-size: 1.2rem;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 360px;
  filter: saturate(50%);
}
@media screen and (max-width: 767px) {
  .map {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/****************************************

aside

*****************************************/
#bottom_area {
  width: 100%;
  background: url(images/bg02.jpg) no-repeat center/cover;
  padding: 100px 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #bottom_area {
    padding: 60px 10px;
  }
}
#bottom_area::before {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #bottom_area::before {
    content: none;
  }
}
#bottom_area .contact_box {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box h2 {
    margin-bottom: 30px;
  }
}
#bottom_area .contact_box .contact_box_inner {
  max-width: 890px;
  width: 100%;
}
#bottom_area .contact_box_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box_btn {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}
#bottom_area .contact_box_btn .tel_btn {
  width: 420px;
  background: #fff;
  border: 1px solid #222;
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box_btn .tel_btn {
    width: 94%;
  }
}
#bottom_area .contact_box_btn .tel_btn a {
  width: 100%;
  text-decoration: none;
  color: #222;
  text-align: center;
  display: inline-block;
}
#bottom_area .contact_box_btn .tel_btn .tel {
  background: url(images/tel_icon.png) no-repeat left center;
  background-size: 26px;
  padding-left: 30px;
  font-size: 3rem;
  line-height: 1;
  color: #222;
}
#bottom_area .contact_box_btn .tel_btn .txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box_btn .tel_btn .txt {
    font-size: 1.4rem;
  }
}
#bottom_area .contact_box_btn .tel_btn .detail {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box_btn .tel_btn .detail {
    font-size: 1.1rem;
  }
}
#bottom_area .contact_box_btn .mail_btn {
  width: 420px;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box_btn .mail_btn {
    width: 94%;
  }
}
#bottom_area .contact_box_btn .mail_btn a {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 45px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  background: #a1c46f;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #bottom_area .contact_box_btn .mail_btn a {
    font-size: 1.7rem;
  }
}
#bottom_area .contact_box_btn .mail_btn a:hover {
  background: #8cb157;
}
#bottom_area .contact_box_btn .mail_btn img {
  width: 21px;
  margin-right: 10px;
}

/****************************************

single.php

*****************************************/
#single_box {
  width: 900px;
  margin: 80px auto 140px;
}
@media screen and (max-width: 767px) {
  #single_box {
    width: 100%;
    margin: 40px auto 60px;
    padding: 0 10px;
  }
}
#single_box h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #single_box h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
#single_box .single_text {
  width: 100%;
}
#single_box .single_text img {
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}
#single_box .single_img {
  width: 100%;
  margin-bottom: 40px;
}
#single_box .single_img img {
  width: 100%;
  height: auto;
}
#single_box .date {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #a1c46f;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #single_box .date {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
#single_box.single_box_works {
  position: relative;
  z-index: 0;
  margin: 140px auto;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works {
    margin: 60px auto;
  }
}
#single_box.single_box_works .single_img-before {
  width: 320px;
  aspect-ratio: 3/2;
  position: relative;
}
@media screen and (min-width: 768px) {
  #single_box.single_box_works .single_img-before {
    border: 10px solid #fff;
    box-sizing: border-box;
    position: absolute;
    top: -60px;
    left: -90px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before {
    width: 100%;
    aspect-ratio: 900/540;
    margin-bottom: 20px;
  }
}
#single_box.single_box_works .single_img-before::before {
  content: "";
  width: 74px;
  height: 70px;
  background: url(images/arr.png) no-repeat center/contain;
  position: absolute;
  left: 50px;
  bottom: -75px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before::before {
    left: 10px;
    bottom: -55px;
  }
}
#single_box.single_box_works .single_img-before img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#single_box.single_box_works .single_img-before .img_cate {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #222;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
  line-height: 1;
  text-align: center;
  padding: 5px 20px;
  z-index: 10;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before .img_cate {
    font-size: 1.3rem;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-before .img_cate {
    width: 80px;
    padding: 8px 0;
    left: auto;
    right: 15px;
  }
}
#single_box.single_box_works .single_img-after {
  width: 100%;
  aspect-ratio: 900/540;
  position: relative;
  margin-bottom: 40px;
}
#single_box.single_box_works .single_img-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#single_box.single_box_works .single_img-after .img_cate {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  padding: 5px 25px;
  z-index: 10;
  background: #a71f24;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-after .img_cate {
    font-size: 1.3rem;
    padding: 5px 10px;
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .single_img-after .img_cate {
    width: 80px;
    padding: 8px 0;
  }
}
#single_box.single_box_works .cate {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding: 5px 15px;
  margin-bottom: 5px;
  display: inline-block;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works .cate {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
#single_box.single_box_works .cate.new {
  background: #b53222;
}
#single_box.single_box_works .cate.reform {
  background: #a1c46f;
}
#single_box.single_box_works h1 {
  font-size: 3.4rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #single_box.single_box_works h1 {
    font-size: 1.8rem;
  }
}

.aligncenter {
  display: block;
}

.pager {
  clear: both;
  text-align: center;
  margin: 40px auto 0px;
}

a.page-numbers {
  border: solid 1px #666;
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  color: #666;
  background: #fff;
}
@media screen and (max-width: 767px) {
  a.page-numbers {
    font-size: 1.3rem;
  }
}
a.page-numbers:hover {
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.pager .current {
  border-radius: 3px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: #666;
  border: solid 1px #666;
  color: white;
}
@media screen and (max-width: 767px) {
  .pager .current {
    font-size: 1.3rem;
  }
}

.nav-below {
  width: 100%;
  margin: 60px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  border-top: 1px solid #a1c46f;
  border-bottom: 1px solid #a1c46f;
  text-decoration: none;
  color: #a1c46f;
}
@media screen and (max-width: 767px) {
  .nav-below {
    margin: 40px 0 0;
  }
}
.nav-below a {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: all 0.3s;
  color: #a1c46f;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .nav-below a {
    padding: 20px 10px;
    font-size: 1.4rem;
  }
}
.nav-below a:hover {
  background: #a1c46f;
  color: #fff;
}
.nav-below .next {
  width: 25%;
  border-right: 1px solid #a1c46f;
}
.nav-below .back {
  width: 50%;
}
.nav-below .prev {
  width: 25%;
  border-left: 1px solid #a1c46f;
}

/****************************************

P

*****************************************/
.bg_beige {
  background: #F2EADC;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .bg_beige {
    padding: 25px;
  }
}

/* 改行 */
.line_break {
  padding-top: 25px;
}

/* 文字 */
.sans {
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}

.serif {
  font-family: "NotoSerifJP", "EB Garamond", "游明朝", YuMincho, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}

.red {
  color: #b53222;
}

.green {
  color: #a1c46f;
}

.orange {
  color: #efa11b;
}

.size14 {
  font-size: 1.4rem;
}

.size18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .size18 {
    font-size: 1.6rem;
  }
}

.size24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .size24 {
    font-size: 1.8rem;
  }
}

/* 強調 */
.marker {
  background: linear-gradient(transparent 70%, #FFDD53 30%);
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

.tr {
  text-align: right;
}

.db {
  display: block;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb140 {
  margin-bottom: 140px;
}

.pt140 {
  padding-top: 140px;
}

@media print, screen and (min-width: 768px) {
  .tc {
    text-align: center;
  }
  .w540 {
    width: 540px;
  }
  .w580 {
    width: 580px;
  }
  .w640 {
    width: 640px;
  }
  .w700 {
    width: 700px;
  }
  .w810 {
    width: 810px;
  }
  .page_w1200 {
    width: 100%;
    padding: 0 calc((100% - 1200px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .mb50,
  .mb60 {
    margin-bottom: 40px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb90,
  .mb100 {
    margin-bottom: 60px;
  }
  .mb120,
  .mb140 {
    margin-bottom: 60px;
  }
  .pt140 {
    padding-top: 60px;
  }
  .page_w1200 {
    padding: 0 10px;
  }
}
/****************************************

タイトル

*****************************************/
.block {
  display: block;
}

.top_tit {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 5.8rem;
}
@media screen and (max-width: 767px) {
  .top_tit {
    font-size: 4.8rem;
  }
}
.top_tit span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 5px;
}

.headline {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 5.8rem;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .headline {
    font-size: 3.6rem;
    padding: 40px 0;
  }
}
.headline::before {
  content: "";
  width: 20px;
  height: 100%;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .headline::before {
    width: 10px;
  }
}
.headline span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 5px;
}

.subhead01 {
  color: #a1c46f;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .subhead01 {
    margin-bottom: 15px;
  }
}

.subhead02 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 5.8rem;
  text-align: center;
  position: relative;
  z-index: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .subhead02 {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
}
.subhead02 span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 5px;
}

/****************************************

footer-PC

*****************************************/
footer {
  background: #222;
}
footer p,
footer a {
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  footer #sp_footer {
    display: none;
  }
  footer #pc_footer {
    width: 100%;
  }
  footer #pc_footer .copyright {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #a1c46f;
    text-align: center;
    background: #444;
    padding: 20px;
  }
  footer #pc_footer .footer_box {
    width: 100%;
    margin: auto;
    padding: 80px 8.4%;
  }
  footer #pc_footer .footer_box .f_logo {
    margin-bottom: 20px;
  }
  footer #pc_footer .footer_box .f_logo a {
    display: inline-block;
  }
  footer #pc_footer .footer_box .f_sns {
    margin-top: 40px;
    display: block;
  }
  footer #pc_footer .footer_box .sitemap {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li {
    position: relative;
    padding-left: 30px;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
    background: #a1c46f;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 1px;
    transition: all 0.3s;
    background: #a1c46f;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a {
    text-decoration: none;
    color: #aaa;
    letter-spacing: 0.2em;
    font-size: 1.7rem;
    line-height: 2.8;
    display: inline-block;
    position: relative;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #a1c46f;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a:hover {
    color: #a1c46f;
  }
  footer #pc_footer .footer_box .sitemap li > ul > li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  footer #pc_footer .footer_box .sitemap li dl dt {
    position: relative;
    color: #a1c46f;
    letter-spacing: 0.1em;
    font-size: 2rem;
    margin-bottom: 5px;
    position: relative;
  }
  footer #pc_footer .footer_box .sitemap li dl dd {
    position: relative;
    line-height: 1.5;
    padding-left: 30px;
  }
  footer #pc_footer .footer_box .sitemap li dl dd::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
    background: #a1c46f;
  }
  footer #pc_footer .footer_box .sitemap li dl dd::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 1px;
    transition: all 0.3s;
    background: #a1c46f;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a {
    color: #aaa;
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    line-height: 2.8;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #a1c46f;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a:hover {
    color: #a1c46f;
  }
  footer #pc_footer .footer_box .sitemap li dl dd a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  footer .pagetop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
  }
}
/****************************************

footer-SP

*****************************************/
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    padding: 60px 10px 20px;
  }
  footer p {
    font-size: 1.3rem;
    text-align: center;
  }
  footer .pagetop {
    width: 30px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  footer #pc_footer,
  footer .sitemap {
    display: none;
  }
  footer #sp_footer {
    width: 100%;
  }
  footer .f_sns {
    margin: 20px auto 0;
    display: block;
    width: 30px;
  }
  footer .copyright {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #a1c46f;
    text-align: center;
    margin: 40px 0 20px;
  }
}
/****************************************

Contact Form7

*****************************************/
.wpcf7 {
  width: 100%;
}

.form_row {
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #AAA;
}

.last_row {
  margin-bottom: 30px;
  padding: 0 20px;
  border-bottom: none;
}

.form_row .form_label {
  width: 330px;
}

.form_row .form_label .required {
  display: inline-block;
  color: #FFF;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #CC0000;
  margin-right: 10px;
  border-radius: 3px;
}

.form_row .form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #D7D7D7;
  margin-right: 10px;
  border-radius: 3px;
}

.form_row .form_input {
  width: calc(100% - 330px);
}

.wpcf7-form-control {
  width: 100%;
}

select.wpcf7-form-control {
  width: auto;
}

.wpcf7-form input {
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
}

.wpcf7-form textarea {
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
}

.form_row .form_input_post {
  width: 180px;
}

.form_row .form_input_post_txt {
  color: #B20000;
  font-weight: normal;
  font-size: 1.3rem;
}

.tc input[type=submit] {
  cursor: pointer;
  width: 360px;
  max-width: 100%;
  padding: 18px;
  border: 1px solid #a1c46f;
  background-color: #a1c46f;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin: 10px auto 0;
  font-family: "NotoSansJP", "メイリオ", "Meiryo", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
}

.wpcf7 .tc input[type=submit]:hover {
  background-color: #fff;
  color: #a1c46f;
  transition: all 0.25s;
}

.wpcf7-response-output {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .form_row {
    flex-direction: column;
    padding: 0 0 20px 0;
  }
  .last_row {
    margin-bottom: 0;
  }
  .form_row .form_label {
    width: 100%;
    margin-bottom: 5px;
  }
  .form_row .form_input {
    width: 100%;
  }
  .ajax-loader {
    width: auto;
  }
  span.wpcf7-list-item {
    display: block;
  }
  .tc input[type=submit] {
    font-size: 1.4rem;
    padding: 10px;
    display: inherit;
    height: 50px;
  }
}
/****************************************

clearfix

*****************************************/
.clearfix {
  display: inline-block;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */