/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
:root {
  --main: #08984e;
  --sub01: #f5a133;
  --accent: #ffff01;
  /* --light: #e1eee7;
    --text: #333333;
    --white: #ffffff;
    --sub02: #075749; */
}

/*=====================================
*
*header
*
=======================================*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  transition: .3s;
  height: 100px;
  border-bottom: 1px solid #fff;
}

.header_content {
  display: flex;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
  align-items: center;
  transition: .3s;
}

header .header_content::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 60px;
  left: 0;
  background: rgb(0 0 0 / 50%);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

header.active .header_content::before {
  opacity: 1;
  visibility: visible;
}

.header_content .cta_box {
  width: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.header_content .cta_box .mail_box01 a {
  background: var(--main);
  font-size: 16px;
  border: 1px solid var(--main);
  position: relative;
  width: 210px;
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  transition: .3s;
  font-weight: 500;
  border-radius: 10px;
  gap: 10px;
}

.header_content .cta_box .mail_box01 a .icon {
  border: 1px solid;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_content .cta_box .RequestCatalog01 a {
  background: var(--sub01);
  font-size: 16px;
  border: 1px solid var(--sub01);
  position: relative;
  width: 210px;
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: .3s;
  font-weight: 500;
  border-radius: 10px;
  gap: 5px;
  pointer-events: none;
}

.header_content .cta_box .RequestCatalog01 a span.rowflex {
  display: flex;
  flex-direction: column;
}

.header_content .cta_box .RequestCatalog01 a span.rowflex span.texts {
  font-size: 14px;
}

.header_content .cta_box .RequestCatalog01 a span.rowflex span.num {
  font-size: 22px;
  margin-top: -10px;
}

.header_content .cta_box .RequestCatalog01 a .icon {
  border: 1px solid;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_content .cta_box .mail_box01 a:hover {
  background-color: #fff;
  color: var(--main);
}

.header_content .cta_box .RequestCatalog01 a:hover {
  background-color: #fff;
  color: var(--sub01);
}

.header_content .logo {
  display: block;
  text-align: left;
  width: 180px;
}

.header_content .logo a {
  height: 100%;
  text-align: left;
  display: block;
  transition: .3s;
}

.header_content .logo a:hover {
  opacity: .7;
}

.header_content .logo a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* pc */
@media only screen and (min-width: 1025px) {
  .header_content .menu {
    width: initial;
    margin-left: auto;
    margin-right: 15px;
  }

  .header_content .menu .Gmenu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .header_content .menu ul li {
    position: relative;
    padding: 14px 15px 10px;
  }

  .header_content .menu ul li a {
    font-size: 16px;
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    transition: .3s;
    justify-content: center;
    background: #fff;
    padding: 14px 12.5px 10px;
    font-weight: 500;
    position: relative;
    padding: 0;
    font-weight: 500;
  }

  .header_content .menu ul li a::after {
    content: "";
    border-radius: 2px;
    bottom: -2px;
    display: inline-block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    background: var(--main);
    opacity: 0;
    transition: .3s;
    width: 0;
  }

  .header_content .menu ul li a:hover::after {
    opacity: 1;
    width: 100%;
  }

  .header__hamburger {
    display: none;
  }

  /*ドロップダウンメニュ*/
  li.menu-item-has-children {
    position: relative;
  }

  .Gmenu>li.menu-item-has-children>a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    transition: .3s;
    margin-left: 5px;
  }

  li.menu-item-has-children.active a::after {
    transform: rotate(-180deg);
  }

  .Gmenu>li.menu-item-has-children:hover>a::after {
    transform: rotate(-180deg);
  }

  .header_content .menu .Gmenu>li>ul {
    position: absolute;
    background-color: #fff;
    width: 430px;
    display: flex;
    flex-direction: row;
    padding: 20px 20px 10px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
  }

  .header_content .menu .Gmenu>li:hover>ul {
    visibility: visible;
    opacity: 1;
  }

  .header_content .menu .Gmenu>li>ul.active {
    display: flex;
  }

  .header_content .menu ul li ul li {
    width: 100%;
  }

  .header_content .menu .Gmenu>li>ul>li>a {
    border-bottom: 1px solid #c73527;
    pointer-events: none;
    font-size: 16px;
    justify-content: flex-start;
    padding: 0;
    width: fit-content;
    padding-bottom: 10px;
  }

  .header_content .menu .Gmenu>li>ul>li>ul {
    margin-top: 10px;
  }

  .header_content .menu .Gmenu>li>ul>li>ul>li>a {
    padding: 0;
    margin: 0px 0 10px;
    justify-content: flex-start;
  }
}

/*ドロップダウンメニュend sp*/
@media only screen and (max-width: 1024px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }

  /*ドロップダウンメニュ*/
  li.menu-item-has-children>a::after {
    right: 20px;
    top: 20px;
    font-size: 16px;
    transition: .3s;
    position: absolute;
    pointer-events: none;
    display: none;
  }

  .header_content .menu ul li ul {
    position: relative;
    margin-top: 0;
  }

  .Gmenu>li.menu-item-has-children::before {
    position: absolute;
    top: 0;
    right: 0;
    background: #efefef;
    width: 60px;
    height: 64px;
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*ドロップダウンメニュend*/

  .sec09_content {
    padding: 0px !important;
  }

  .mv_area {
    margin-top: 60px !important;
  }

  .header_content .menu {
    position: fixed;
    right: 0px;
    top: 60px;
    width: 100%;
    background-color: rgb(0 163 175 / 95%);
    transition: ease .3s;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    max-width: 300px;
    left: initial;
    transform: translate(100%, 0%);
    background: #fff;
    height: 100%;
    padding: 20px 30px 20px;
    border-top: 1px solid #efefef;
  }

  .header_content h1 {
    width: 230px;
  }

  .header__hamburger {
    width: 30px;
    height: 100%;
    display: block;
  }

  .header_content .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 20px;
  }

  .header_content .menu ul li {
    width: 100%;
    position: relative;
  }

  .header_content .menu ul li a {
    width: 100%;
    display: flex;
    padding: 5px 0px 5px;
    font-size: 14px;
    color: #333333;
    text-align: left;
    width: fit-content;
    margin-top: 10px;
  }

  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }

  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: var(--main);
    position: relative;
    transition: ease .3s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }

  /* ハンバーガーメニュークリック後のスタイル */
  .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
  }

  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }

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

  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  }

  .header_content {
    padding: 0 20px;
    height: 60px;
    align-items: center;
  }

  .header_content .cta_box.sp_tb {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    margin-top: 30px;
  }

  .header_content .cta_box .RequestCatalog01,
  .header_content .cta_box .mail_box01 {
    width: 50%;
    justify-content: center;
    display: flex;
  }

  .header_content .menu .Gmenu>li>ul {
    width: 100%;
    flex-direction: column;
    position: relative;
    border-bottom: 1px solid #cccccc;
    display: none;
    opacity: 0;
    height: 0;
    transition: .3s;
    padding: 0 20px;
    display: flex;
    transform: scaleY(0);
    transform-origin: center top;
  }

  .header_content .menu .Gmenu>li>ul.active {
    opacity: 1;
    height: 100%;
    padding: 20px 20px 10px;
    visibility: visible;
    transform: scaleY(1);
  }

  .header_content .menu .Gmenu>li>ul>li>ul>li>a {
    justify-content: flex-start;
    padding: 10px 0;
    margin: 0;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
  }

  .header_content .menu .Gmenu>li>ul>li {
    margin-bottom: 20px;
  }

  .header_content .cta_box .RequestCatalog01,
  .header_content .cta_box .mail_box01 {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .header_content .cta_box a {
    width: 100% !important;
  }

  header {
    height: 60px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1250px) {
  .header_content .menu ul li a {
    font-size: 12px;
  }

  .header_content .menu ul li {
    padding: 14px 5px 10px;
  }
}

/*=====================================
*
*front
*
=======================================*/
body {
  margin-top: 100px;
}

.mv_area {
  position: relative;
  background-image: url(../images/mv_back.jpg);
  padding: 50px 0px;
  min-height: 700px;
  background-size: cover;
}

.mv_area .w126 {
  height: 100%;
}

.mv_area .flex_content {
  display: flex;
  gap: 40px;
  height: 100%;
}

.mv_area .flex_content .text_col {
  background: rgb(255 255 255 / 70%);
  position: relative;
  padding: 30px 20px 50px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: calc(60.3% - 40px);
}

.mv_area .flex_content .text_col p.subtitle {
  background: #e2eae5;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  border-radius: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.mv_area .flex_content .text_col h1.title {
  font-size: 60px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New";
  letter-spacing: .05em;
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 20px;
  animation: .6s ease-in-out titleani01 forwards;
  animation-delay: .0s;
  opacity: 0;
}

@keyframes titleani01 {
  0% {
    transform: translateY(-100px);
  }

  50% {
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.mv_area .flex_content .text_col h1.title span.big_text {
  position: relative;
  color: var(--main);
  line-height: 1;
  z-index: 1;
  display: inline-block;
  font-size: 80px;
  animation: .6s ease-in-out titleani04 forwards;
  animation-delay: .3s;
  opacity: 0;
}

@keyframes titleani04 {
  0% {
    transform: translateY(-100px);
  }

  50% {
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.mv_area .flex_content .text_col h1.title span.big_text::before {
  content: "";
  background: var(--accent);
  width: 0;
  height: 30px;
  position: absolute;
  bottom: 16px;
  z-index: -1;
  animation: .6s ease-in-out titleani02 forwards;
  animation-delay: .6s;
  opacity: 0;
}

@keyframes titleani02 {
  0% {
    opacity: 0;
  }

  50% {
    width: 0%;
  }

  100% {
    opacity: 1;
    width: 100%;
  }
}

.mv_area .flex_content .text_col h1.title span.big_text span.surcle_text {
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  /* min-width: 109px; */
  position: relative;
  z-index: 1;
  padding: 8px 13px 21px;
  border: 2px solid #000;
  transform: rotate(15deg);
  transform: rotate(0deg);
  margin-left: 0em;
  margin-right: 0.1em;
  width: 1.4em;
  height: 1.4em;
  animation: .3s ease-in-out titleani03 forwards;
  animation-delay: 1.5s;
}

@keyframes titleani03 {
  0% {}

  50% {
    transform: rotate(25deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

.mv_area .flex_content .text_col h1.title span.big_text span.surcle_text::after {
  content: "";
  background: #000;
  width: 0.6rem;
  position: absolute;
  top: -0.6em;
  right: 0.05em;
  transform: rotate(30deg);
  height: 3.7rem;
  width: 0.15em;
  height: 0.75em;
}

.mv_area .flex_content .text_col .bottom_text {
  font-size: 18px;
  margin-top: auto;
  display: flex;
}

.mv_area .flex_content .text_col .right_arrow {
  width: 0%;
  height: 2px;
  background: #000;
  margin-top: 24px;
  position: relative;
}

.mv_area .flex_content .text_col .right_arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  right: -1px;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
}

.mv_area .flex_content .form_col {
  width: 39.7%;
  background: rgb(0 0 0 / 50%);
  border-radius: 10px;
}


.normalform {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 20px 20px 30px;
}

.normalform p.p-country-name {
  display: none;
}

.normalform .cp_iptxt {
  padding: 10px 0;
}

.normalform .cp_iptxt.flex {
  display: flex;
  gap: 20px;
}

.normalform h2 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.normalform .cp_iptxt input:focus,
.normalform .cp_iptxt textarea:focus {
  outline: #666666 1px solid;
}

.normalform .cp_iptxt textarea {
  width: 100%;
  border: 1px solid #efefef;
  font-size: 16px;
  resize: vertical;
  padding: 10px 5px;
  border-radius: 3px;
}

.normalform .sub {
  text-align: center;
  margin-top: 20px;
}

.normalform .sub input {
  background: var(--main);
  color: #fff;
  border: 1px solid var(--main);
  padding: 18px 20px;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: .3s;
  pointer-events: all;
  cursor: pointer;
  border-radius: 10px;
  transform: rotate(0.06deg);
  font-family: "ZenMaruGothic";
  width: 300px;
  height: 60px;
  font-weight: 500;
  -moz-appearance: none;
  /* Firefox のデフォルト外観を無効化 */
  appearance: none;
  font-family: inherit;
}

.normalform .sub input:hover {
  background: #fff;
  color: var(--main);
}

.normalform .cp_iptxt .text {
  font-size: 16px;
  display: flex;
  color: #fff;
  min-width: 130px;
  padding-top: 4px;
}

.normalform .cp_iptxt .text span.required {
  background: #fb657f;
  padding: 2px 10px 3px;
  font-size: 12px;
  color: #fff;
  margin-left: 10px;
  display: block;
  width: fit-content;
  font-weight: 400;
  border-radius: 5px;
}

.normalform .cp_iptxt .place input[type="text"] {
  width: 100%;
  font-size: 16px;
  padding: 10px 5px;
  border: none;
  border-radius: 3px;
}

.normalform .cp_iptxt .place select {
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #efefef;
  border-radius: 3px;
  -webkit-appearance: none;
  /* Safari/Chrome */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  /* 標準 */
  color: #333;
  background: #fff;
}

.normalform .cp_iptxt .place select option {
  color: #333;
  background: #fff;
}

.normalform .cp_iptxt .place input[type="email"] {
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  border: 1px solid #efefef;
  border-radius: 3px;
}

/* .cp_iptxt02{
  margin-top: 30px;
} */
.cp_iptxt02 span.mwform-checkbox-field-text {
  cursor: pointer;
  color: #fff;
}

.cp_iptxt02 input[type="checkbox"] {
  cursor: pointer;
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid #cccccc;
  vertical-align: -1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
}

.cp_iptxt02 input[type="checkbox"]:checked::before {
  position: absolute;
  top: -1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: '';
}

.normalform .cp_iptxt .place input[type="radio"] {
  cursor: pointer;
}

.normalform .cp_iptxt .place span.mwform-radio-field-text {
  cursor: pointer;
}

.mw_wp_form .error {
  color: #ffc2c2 !important;
}

.phone_btn {
  position: relative;
  margin-top: 20px;
}

.phone_btn a {
  display: flex;
  color: #fff;
  width: fit-content;
  height: 60px;
  margin: 0 auto;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: .3s;
  font-weight: 500;
  pointer-events: none;
}

.phone_btn a span.rowflex {
  display: flex;
  flex-direction: column;
}

.phone_btn a span.rowflex span.texts {
  font-size: 19px;
}

.phone_btn a span.rowflex span.num {
  font-size: 30px;
  margin-top: -10px;
}

.phone_btn a:hover {
  opacity: .7;
}

.phone_btn a .icon {
  width: 60px;
  height: 60px;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone_btn a .icon i {
  font-size: 20px;
}

.backcurcle_yellow {
  aspect-ratio: 100 / 100;
  position: absolute;
  background: rgb(255 255 1 / 10%);
  border-radius: 50%;
  width: 26.25%;
}

.backcurcle_yellow.lefts {
  left: 0;
  top: 0;
}

.backcurcle_gray.rights {
  bottom: 0;
  right: 0;
}

.backcurcle_yellow.rights {
  right: 0;
  top: 0;
}

.backcurcle_gray.lefts {
  bottom: 0;
  left: 0;
}

.backcurcle_gray {
  background: rgb(226 234 229 / 30%);
  position: absolute;
  aspect-ratio: 100 / 100;
  width: 21%;
  border-radius: 50%;
}

.title_box {
  position: relative;
}

.title_box h2 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New";
  letter-spacing: .05em;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.title_box h2 span.green {
  color: var(--main);
}

.title_box h2::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: -20px;
  top: 50%;
  background: var(--main);
  border-radius: 50%;
  transform: translate(-100%, -40%);
}

.title_box h2::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: -20px;
  top: 50%;
  background: var(--main);
  border-radius: 50%;
  transform: translate(100%, -40%);
}

.title_box p.subtext {
  margin-top: 10px;
  text-align: center;
}

.purchasedProperty_sec {
  background: #f5f5f5;
  position: relative;
}

.purchasedProperty_sec .purchasedProperty_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.purchasedProperty_sec .purchasedProperty_row .purchasedProperty_col {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 20px 30px;
}

.purchasedProperty_sec .purchasedProperty_row .purchasedProperty_col .img_box {
  width: calc(100% + 40px);
  transform: translate(-20px, 0px);
}

.purchasedProperty_sec .purchasedProperty_row .purchasedProperty_col h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  letter-spacing: .05em;
  margin-top: 22px;
  margin-bottom: 16px;
  font-family: "Zen Kaku Gothic New";
}

.directPurchase_sec {
  position: relative;
}

.directPurchase_sec .directPurchase_row {
  display: flex;
  gap: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.directPurchase_sec .directPurchase_row .directPurchase_col {
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 20px 30px;
  width: 100%;
}

.directPurchase_sec .directPurchase_row .directPurchase_col p.num {
  /* background: var(--main); */
  background: var(--main);
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 20.5px 20px;
  width: calc(100% + 40px);
  transform: translate(-20px, 0px);
}

.directPurchase_sec .directPurchase_row .directPurchase_col .img_box {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 24px;
}

.directPurchase_sec .directPurchase_row .directPurchase_col h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

span.bordermark {
  background: linear-gradient(transparent 60%, var(--accent) 60%);
}

.more_btn_row .more_btn {
  position: relative;
}

.more_btn_row .more_btn a {
  background: var(--main);
  color: #fff;
  width: 300px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.more_btn_row .more_btn a::after {
  content: "\f054";
  font: var(--fa-font-solid);
  position: absolute;
  right: 20px;
}

.more_btn_row .more_btn a::before {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  background: #07823f;
  left: 0;
  top: 0;
  transition: .3s;
  z-index: -1;
}

.more_btn_row .more_btn a:hover::before {
  width: 100%;
}

.strong_sec {
  position: relative;
  background: #e2eae5;
}

.strong_sec .strong_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.strong_sec .strong_row .strong_col {
  background: #fff;
  border-radius: 10px;
  padding: 26px 20px 46px;
}

.strong_sec .strong_row .strong_col .title_flex {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.strong_sec .strong_row .strong_col .title_flex p.num {
  font-size: 50px;
  font-weight: bold;
  color: var(--main);
  line-height: 0.8;
}

.strong_sec .strong_row .strong_col .title_flex h3 {
  font-size: 30px;
  font-weight: bold;
  color: var(--sub01);
}

.strong_sec .strong_row .strong_col p.text {
  font-weight: 500;
  font-family: "Zen Kaku Gothic New";
}

.BusinessContent_sec {
  position: relative;
  background: #f5f5f5;
}

.BusinessContent_sec .BusinessContent_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.BusinessContent_sec .BusinessContent_row .BusinessContent_col {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #000000;
  padding: 0px 20px 30px;
  max-width: 400px;
  width: 100%;
  background: #fff;
}

.BusinessContent_sec .BusinessContent_row .BusinessContent_col .img_box {
  width: calc(100% + 41px);
  transform: translate(-20px, 0px);
}

.BusinessContent_sec .BusinessContent_row .BusinessContent_col h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .05em;
  margin-top: 20px;
}

.BusinessContent_sec .BusinessContent_row .BusinessContent_col h3 span.greentext {
  color: var(--main);
}

.column_sec {
  position: relative;
}

.column_sec .column_row {
  position: relative;
  border: 1px solid;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.column_sec .column_row ul {
  overflow: auto;
  padding: 10px;
  max-height: 400px;
}

.column_sec .column_row ul li {
  position: relative;
  border-bottom: 1px solid #ccc;
}

.column_sec .column_row ul li a {
  color: #333;
  padding: 18px 10px;
  display: flex;
  gap: 40px;
  letter-spacing: .05em;
  transition: .3s;
}

.column_sec .column_row ul li a:hover {
  opacity: .7;
}

.column_sec .column_row ul li:last-of-type {
  border-bottom: none;
}

.fadeswhich {
  transform: scale(0);
  transition: .3s;
}

.fadeswhich.fadeIn {
  transform: scale(1);
}

.fadeswhich02 {
  transform: translate(0px, 100px);
  transition: .3s;
  opacity: 0;
}

.fadeswhich02.fadeIn {
  transform: translate(0px, 0px);
  opacity: 1;
}

.normalform h2 span {
  line-height: 1;
  font-size: 13px;
  margin-bottom: 0px;
  display: block;
  position: relative;
}

.normalform h2 span::before {
  content: "\\";
  margin-right: 8px;
}

.normalform h2 span::after {
  content: "/";
  margin-left: 8px;
}

.banner_fixed {
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.banner_fixed.active {
  display: none !important;
}

.banner_fixed .img_box .closepoint {
  position: absolute;
  background: #fff;
  width: 21px;
  height: 21px;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
}

.banner_fixed .img_box .closepoint::after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 11px;
  line-height: 1;
  color: #000000;
}

.normalform .cp_iptxt.flex .place {
  width: 100%;
}

.normalform .cp_iptxt.flex .place.select {
  position: relative;
}

.normalform .cp_iptxt.flex .place.select::after {
  content: "";
  position: absolute;
  right: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
}

/*=====================================
*section1
=======================================*/

/*=====================================
*section2
=======================================*/

/*=====================================
*section3
=======================================*/

/*=====================================
*section4
=======================================*/

/*=====================================
*section5
=======================================*/

/*=====================================
*section6
=======================================*/

/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/

/*=====================================
*
*page
*
=======================================*/

/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
/*=====================================
*
*footer
*
=======================================*/
footer .flex_content {
  display: flex;
  padding: 50px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

footer .flex_content .left_col {
  text-align: center;
}

footer .flex_content .left_col .subtext {
  margin-top: 40px;
  margin-bottom: 20px;
}

footer .flex_content .left_col .tel_box a {
  color: #333;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotate(0.03deg);
  font-size: 18px;
  font-weight: 500;
  transition: .3s;
  pointer-events: none;
}

footer .flex_content .left_col .tel_box a:hover {
  color: #6bb52e;
}

footer .flex_content .left_col .tel_box a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
}

footer .flex_content .right_col {
  width: 100%;
}

footer .right_col ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  justify-content: center;
}

footer .right_col ul a {
  margin-right: 40px;
  color: #333;
  font-weight: 500;
  transition: .3s;
}

footer .right_col ul a:hover {
  color: var(--main);
}

.copyright {
  text-align: center;
  font-size: 10px;
  color: #333;
  padding-bottom: 20px;
}

footer {
  background: #eff2f0;
}

footer .flex_content .left_col .logo a.custom-logo-link {
  background: #fff;
  padding: 20px 30px;
  display: block;
  transition: .3s;
}

footer .flex_content .left_col .logo a.custom-logo-link:hover {
  opacity: .7;
}

footer .flex_content .left_col .logo a {
  font-size: 90px;
  color: #231f20;
  font-weight: 500;
  transition: .3s;
  line-height: 1;
  display: block;
}

footer .flex_content .left_col .logo a:hover {
  opacity: .7;
}

footer .flex_content .left_col .sub_texts {
  margin-top: 30px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New";
}

/*=====================================
*
*sidenav
*
=======================================*/


/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
div#re404 h1.h1 {
  font-size: 45px;
  font-weight: bold;
  border-bottom: 2px solid #efefef;
  margin-bottom: 50px;
  padding-bottom: 30px;
  position: relative;
  font-family: "Zen Kaku Gothic New";
}

div#re404 h1.h1::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 150px;
  background: var(--main);
  height: 2px;
}

.pancu {
  padding-top: 10px;
}

.pancu .breadcrumb {
  display: flex;
}

.pancu .breadcrumb ul {
  display: flex;
  overflow: auto;
  white-space: nowrap;
}

.pancu .breadcrumb ul li a {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
}

.pancu .breadcrumb ul li:not(:last-of-type)::after {
  font-family: "Font Awesome 5 Free";
  content: "\>";
  font-weight: 400;
  color: #666;
  font-size: 10px;
  margin: 0 5px;
}

.pancu {
  padding-top: 10px;
}

.pancu .breadcrumb {
  display: flex;
}

.pancu .breadcrumb ul {
  display: flex;
  overflow: auto;
  white-space: nowrap;
}

.pancu .breadcrumb ul li a {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
}

.pancu .breadcrumb ul li:not(:last-of-type)::after {
  font-family: "Font Awesome 5 Free";
  content: "\>";
  font-weight: 400;
  color: #666;
  font-size: 10px;
  margin: 0 5px;
}

.mvarea_page {
  height: 250px;
  position: relative;
  background: #e2eae5;
}

.mvarea_page .mv_text {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.mvarea_page .mv_text h1.h1 {
  font-size: 30px;
  font-weight: 500;
  width: fit-content;
  letter-spacing: .05em;
  transform: rotate(.03deg);
  color: #333;
  position: relative;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New";
}

#single h1 {
  font-size: 36px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 50px;
}

#single .contents time {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #666;
}

#single .contents time::before {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5em;
}



#single .contents h2 {
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding-bottom: 10px;
  margin-top: 50px;
  position: relative;
}

#single .contents h2::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -1px;
  left: 0;
}

#single .contents p {
  margin: 30px 0;
}

#single .contents h3 {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  margin-top: 40px;
}

#single .contents h3::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 6px;
  background: #666;
}

#single .contents>ul {
  background: #fff;
  border: none;
  padding: 0;
  margin: 30px 0;
}

#single .contents>ul li {
  list-style: none;
  position: relative;
  display: flex;
  gap: 10px;
  line-height: 2;
  padding-left: 0.4em;
}

#single .contents>ul li::before {
  content: "";
  background: #333;
  color: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .05em;
  line-height: 1;
  min-width: 5px;
  min-height: 5px;
  top: 14px;
  position: relative;
  margin-right: 0;
}

#single .contents>ol {
  margin: 30px 0;
  counter-reset: number 0;
  background: #fff;
  border: none;
  padding: 0;
}

#single .contents>ol li {
  list-style: none;
  position: relative;
  display: flex;
  gap: 10px;
  line-height: 2;
  margin: 0;
}

#single .contents>ol li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  top: 16px;
  padding: 1px 0px 1px 6px;
  width: 0;
  height: 0;
  min-width: 0;
  min-height: 0;
  background: none;
}

#single .contents>ol li:not(:last-of-type) {
  margin-bottom: 25px;
}

#single .contents .wp-block-table table tr td {
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  min-width: 150px;
}

#single .contents .wp-block-table table tr td:first-of-type {
  background: #efefef;
  width: 200px;
}

#single .contents a {
  color: #E4B200;
  transition: .3s;
}

#single .contents a:hover {
  opacity: .7;
}

.pagination ul {
  margin-top: 50px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination ul li .current {
  color: var(--main);
  border: 1px solid var(--main);
  padding: 5px 10px;
  display: block;
  font-size: 14px;
  border-radius: 5px;
}

.pagination ul li .dots {
  color: var(--main);
  padding: 5px 0;
  display: block;
  font-size: 14px;
}

.pagination ul li a {
  color: #333;
  border: 1px solid #333;
  padding: 5px 10px;
  transition: .3s;
  display: block;
  font-size: 14px;
  border-radius: 5px;
}

.pagination ul li a:hover {
  color: var(--main);
  border: 1px solid var(--main);
}

.news_sec {
  margin-top: 50px;
  margin-bottom: 120px;
}

.news_sec .news_row ul {
  display: flex;
  flex-direction: column;
}

.news_sec .news_row ul li a {
  color: #333;
  display: flex;
  transition: .3s;
  border-bottom: 1px solid #ccc;
  padding: 30px 20px;
  gap: 40px;
}

.news_sec .news_row ul li a:hover {
  opacity: .7;
}

.news_sec .news_row ul li:first-of-type a {
  border-top: 1px solid #ccc;
}


.companyTable_row {
  position: relative;
}

.companyTable_row tr td {
  border: none;
  margin-bottom: -1px;
  padding: 30px 0px;
  color: #555;
}

.companyTable_row tr {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.companyTable_row tr td:nth-of-type(1) {
  border-bottom: 1px solid var(--main);
  font-weight: bold;
  min-width: 200px;
}

.title_box03 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  letter-spacing: .05em;
  position: relative;
  z-index: 0;
  display: block;
  line-height: 2;
}

.title_box03 h2::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  background: #CCCCCC;
  z-index: -1;
}

.title_box03 h2 span {
  background: #fff;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.title_box03 h2.bg-gray span {
  background-color: #f9f9f9;
}

.normalform.addpage {
  background: #e2eae5;
}

.normalform.addpage .text {
  color: #333;
  font-weight: 500;
}

/* ---------------------------他ページlast ---------------------------*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px) {
  .pcnone {
    display: none;
  }
}

/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px) {
  .tabnone {
    display: none;
  }
}

/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px) {
  .spnone {
    display: none;
  }
}

/*==========================================================================
*
*pcパソコン
*
============================================================================*/
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .mv_area .flex_content .text_col h1.title {
    font-size: 50px;
  }

  .mv_area .flex_content .text_col h1.title span.big_text {
    font-size: 66px;
  }
}

@media only screen and (min-width: 768px) {
  .mv_area .flex_content .text_col .right_arrow {
    animation: .9s ease-in-out right_arrow_ani forwards;
    animation-delay: 2s;
    opacity: 0;
  }

  @keyframes right_arrow_ani {
    0% {
      opacity: 0;
    }

    50% {
      width: 0%;
      width: 100%;
    }

    100% {
      width: 100%;
      opacity: 1;
    }
  }
}

@media only screen and (min-width: 768px) {
  .wp-block-columns.is-style-default.is-layout-flex.wp-block-columns-is-layout-flex {
    flex-wrap: nowrap !important;
  }
}

/*==========================================================================
*
*tbタブレット
*
============================================================================*/

@media only screen and (max-width: 1660px) {
  .banner_fixed {
    display: none;
  }
}

@media only screen and (max-width: 1300px) {
  .w126 {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1024px) {
  body {
    margin-top: 60px;
  }

  .header_content .logo {
    width: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .normalform .sub input {
    width: 250px;
  }

  .phone_btn a {
    width: 250px;
  }

  .normalform .cp_iptxt.flex {
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
  }

  .mv_area .flex_content {
    gap: 20px;
  }

  .mv_area .flex_content .text_col {
    width: calc(60.3% - 20px);
  }

  .mv_area .flex_content .text_col h1.title {
    font-size: max(5.2vw, 40px);
  }

  .mv_area .flex_content .text_col h1.title span.big_text {
    font-size: max(6.5vw, 50px);
  }

  .normalform .cp_iptxt .place input[type="text"] {
    padding: 5px 5px;
  }

  .mv_area .flex_content .text_col h1.title span.big_text span.surcle_text {
    padding: 4px 10px 21px;
  }

  .purchasedProperty_sec .purchasedProperty_row {
    gap: 20px;
  }

  .directPurchase_sec .directPurchase_row {
    gap: 20px;
  }

  .directPurchase_sec .directPurchase_row .directPurchase_col h3 {
    font-size: 18px;
  }

  .strong_sec .strong_row {
    gap: 20px;
  }

  .BusinessContent_sec .BusinessContent_row {
    gap: 20px;
  }

  .BusinessContent_sec .BusinessContent_row .BusinessContent_col h3 {
    font-size: 18px;
  }
}

/* ---------------------------タブレットonlylast ---------------------------*/
/*==========================================================================
*
*sp
*
============================================================================*/
@media only screen and (max-width: 767px) {
  .mv_area .flex_content {
    flex-direction: column;
    gap: 30px;
  }

  .title_box h2 {
    font-size: 24px;
  }

  .mv_area .flex_content .text_col {
    width: 100%;
    padding: 30px 20px 40px;
  }

  .mv_area .flex_content .text_col p.subtitle {
    font-size: 16px;
    text-align: center;
  }

  .mv_area .flex_content .text_col h1.title {
    /* font-size: 34px; */
    margin-top: 30px;
    margin-bottom: 30px;
    /* font-size: 9vw; */
    font-size: min(9vw, 40px);
  }

  .mv_area .flex_content .text_col h1.title span.big_text {
    /* font-size: 37px; */
    /* font-size: 9.8vw; */
    font-size: min(9.8vw, 50px);
  }

  .mv_area .flex_content .text_col h1.title span.big_text span.surcle_text {
    padding: 8px 10px 20px;
    width: 1.6em;
    height: 1.6em;
  }

  .mv_area .flex_content .text_col h1.title span.big_text::before {
    height: 18px;
    bottom: 10px;
  }

  .mv_area .flex_content .text_col .bottom_text {
    font-size: 14px;
  }

  .mv_area .flex_content .text_col .right_arrow::after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid black;
    left: 50%;
    bottom: -30px;
    top: initial;
    transform: translate(-50%, 0%);
  }

  .mv_area .flex_content .text_col .right_arrow {
    width: 10px;
    height: 20px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin: 0;
    transform: translate(-50%, 0px);
  }

  .mv_area {
    padding: 20px 0px;
  }

  .mv_area .flex_content .form_col {
    width: 100%;
  }

  .normalform .cp_iptxt.flex {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 0;
  }

  .purchasedProperty_sec .purchasedProperty_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .title_box p.subtext {
    font-size: 14px;
  }

  .title_box h2::before {
    left: -10px;
  }

  .title_box h2::after {
    right: -10px;
  }

  .purchasedProperty_sec .purchasedProperty_row .purchasedProperty_col h3 {
    font-size: 18px;
    margin-bottom: 6px;
    margin-top: 20px;
  }

  .purchasedProperty_sec .purchasedProperty_row .purchasedProperty_col p {
    font-size: 14px;
  }

  .backcurcle_yellow {
    width: 40%;
  }

  .backcurcle_gray {
    width: 30%;
  }

  .directPurchase_sec .directPurchase_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .directPurchase_sec .directPurchase_row .directPurchase_col p.num {
    font-size: 18px;
    padding: 15px 20px;
  }

  .directPurchase_sec .directPurchase_row .directPurchase_col h3 {
    font-size: 18px;
  }

  .strong_sec .strong_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strong_sec .strong_row .strong_col .title_flex h3 {
    font-size: 18px;
  }

  .strong_sec .strong_row .strong_col .title_flex p.num {
    font-size: 26px;
    line-height: 1.1;
  }

  .strong_sec .strong_row .strong_col .title_flex {
    gap: 6px;
  }

  .strong_sec .strong_row .strong_col p.text {
    font-size: 14px;
  }

  .strong_sec .strong_row .strong_col {
    padding: 26px 20px 26px;
  }

  .BusinessContent_sec .BusinessContent_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .BusinessContent_sec .BusinessContent_row .BusinessContent_col h3 {
    font-size: 18px;
  }

  .BusinessContent_sec .BusinessContent_row .BusinessContent_col {
    padding: 0 20px 20px;
  }

  .column_sec .column_row ul li a {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  footer .right_col ul {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  footer .right_col ul a {
    margin: 0;
    font-size: 14px;
  }

  .header_content .cta_box .RequestCatalog01 a {
    pointer-events: all;
  }

  .phone_btn a {
    pointer-events: all;
  }

  div#re404 h1.h1 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  div#re404 p {
    font-size: 14px;
  }

  .mvarea_page .mv_text h1.h1 {
    font-size: 26px;
  }

  .mvarea_page {
    height: 150px;
  }

  .mw_wp_form_complete p:not(:first-of-type) {
    text-align: left !important;
  }

  footer .flex_content .left_col .logo a {
    font-size: 60px;
  }

  footer .flex_content .left_col .sub_texts {
    font-size: 14px;
  }

  #single h1 {
    font-size: 24px;
  }

  #single .contents h2 {
    font-size: 20px;
  }

  #single .contents p {
    font-size: 14px;
  }

  #single .contents h3 {
    font-size: 16px;
    padding-left: 24px;
  }

  #single .contents h3::after {
    top: 5px;
    width: 16px;
    height: 16px;
  }

  #single .contents>ul li {
    font-size: 14px;
  }

  #single .contents>ol li {
    font-size: 14px;
    margin: 0 !important;
    margin-bottom: 10px !important;
  }

  #single .contents .wp-block-table table tr td {
    font-size: 14px;
  }

  #single .contents>ul li::before {
    top: 12px;
  }

  .news_sec .news_row ul li a {
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px;
    font-size: 14px;
  }

  .news_sec {
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .companyTable_row tr td {
    font-size: 14px;
    padding: 20px 0;
  }

  .companyTable_row tr td:nth-of-type(1) {
    min-width: 100px;
    max-width: 100px;
    padding-right: 15px;
  }

  .title_box03 h2 {
    font-size: 20px;
  }

  .title_box03 h2 span {
    padding: 0 20px;
  }

  .map_row iframe {
    height: 250px;
  }

  /* ---------------------------携帯last ---------------------------*/
}