﻿@charset "UTF-8";
@import url("style_bs.css");
@import url("style_etc.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Arial&family=Helvetica&family=Open+Sans&family=Spartan:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Arial&family=Helvetica&family=Open+Sans&family=Spartan:wght@100&display=swap');


/* setting:color */
:root {
  --blue: #186bd5;
  --green: #13925e;
  --darkgreen:#060;
  --primary: #587f44;
  --secondary: #999;
  --point: #853BBE;
  --accent: #f66;
  --text: #333;
  --white: #fff;
  --dark: #555;
  --gray: #aaa;
  --attention: #dc3545;
}
/* setting:size */
:root {
  --size1-half: calc(var(--size1) / 2);
  --size1: 5vw;
  --size2: calc(var(--size1) * 2);
  --size3: calc(var(--size1) * 3);
  --size4: calc(var(--size1) * 4);
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/* Layout ----------------- */
/* Clamp */
*,
*::before,
*::after {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  /* 最小サイズ、最大サイズ、最小画面幅、最大画面幅 */
  --min-size: 55;
  --max-size: 150;
  --min-viewport: 375;
  --max-viewport: 1440;

  /* a 傾き */
  --slope: calc(
    (var(--max-size) - var(--min-size)) /
      (var(--max-viewport) - var(--min-viewport))
  );
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b 可変サイズ */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);

  /* clamp(最小サイズ, 可変サイズ, 最大サイズ) */
  --clamp-size: clamp(
    var(--min-size) / 16 * 1rem,
    var(--fluid-size),
    var(--max-size) / 16 * 1rem
  );
}


/* setting:font size */
html {
 font-size: 62.5%; /* -> 10px */
}

/* setting:page contents */
body {
  font-family: 'Noto Sans JP','Open Sans', Helvetica, Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
small,
ul,
figure,
table {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1{
  font-size: clamp(2rem, 1.429rem + 2.86vw, 4rem) !important;
  font-family: "Noto Serif JP", serif !important;
  text-transform :uppercase;
  letter-spacing: 0.2rem;
  color: #333;
  text-align: start;
}

h2,
.subtitle {
  --min-size: 40;
  --max-size: 55;
  font-size: var(--clamp-size);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
h3 {
  --min-size: 30;
  --max-size: 38;
  font-size: var(--clamp-size);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
h4 {
  --min-size: 20;
  --max-size: 28;
  font-size: var(--clamp-size);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
h5 {
  --min-size: 30;
  --max-size: 35;
  font-size: var(--clamp-size);
  font-weight: 600;
  line-height: 1.5;
}
h6 {
  --min-size: 20;
  --max-size: 25;
  font-size: var(--clamp-size);
  font-weight: 600;
  line-height: 1.5;
}

/* h:deco */
.h-deco-1 {
  font-family: 'Parisienne', sans-serif;
  font-size: 1.5em;
  padding: 0;
  margin: 0;
}
.h-deco-2 {
  font-family: 'Source Serif 4', sans-serif;
  padding: 0;
  margin: 0;
}

p ,
table {
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem) ;
}
.ex-txt {
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem) !important;
  text-indent: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.ex-txt-s {
  text-indent: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.ex-txt-l {
  font-size: clamp(1.7rem, 1.643rem + 0.4vw, 2rem) !important;
  text-indent: clamp(1.7rem, 1.643rem + 0.4vw, 2rem);
    line-height: 1.8;
}

small {
  font-size: clamp(1rem, 0.914rem + 0.43vw, 1.3rem) !important;
  opacity: 0.8;
}

/* section space */
section + section {
  --min-size: 150;
  --max-size: 300;
  margin-block-start: var(--clamp-size);
}
section[class*="intro"] + section[class*="intro"] {
  --min-size: 150;
  --max-size: 450;
  margin-block-start: var(--clamp-size);
}
/* article space */
article:first-child {
  --min-size: 100;
  --max-size: 150;
  margin-block-start: var(--clamp-size);
}
article + article {
  --min-size: 100;
  --max-size: 150;
  margin-block-start: var(--clamp-size);
}

/* grid col:7 */
.container {
  display: grid;
  grid-template-columns: repeat(3, var(--size1)) auto repeat(3, var(--size1));
  row-gap: 45px;
}
.container > * {
  grid-column: 2 / -2;
}

a {
  color: inherit;
  text-decoration: none;
  transition : all 0.25s ease-out;
}
a:hover {
  color: inherit;
  opacity: 0.8 !important;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*img link:hover*/
.img-link {
  overflow: hidden;
  opacity: 1 !important;
}
.img-link img , .img-link p {
  transition: all 0.5s ease-in-out;
}
.img-link img:hover , .img-link p:hover{
  transform: scale(1.05);
}

/* 縦横中央 */
.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* screen reader */
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}


/* header ----------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--size1);
  padding-block-start:1rem;
  position: sticky;
  top:0;
  z-index: 1000;
}
.header-logo {
  width: max(220px, var(--size2));
}

/* menu btn */
.navbtn {
  all: unset;
  outline: revert;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  width: max(46px, var(--size1));
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  color: var(--primary);
}
.navbtn:hover {
  color: var(--green);
}

.navbtn-bar,
.navbtn::before,
.navbtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  grid-area: 1 / 1;
  transition: transform 0.5s;
}
.navbtn::before {
  transform: translateY(-12px);
}
.navbtn::after {
  transform: translateY(12px);
}

.open .navbtn-bar {
  transform: scale(0);
}
.open .navbtn::before {
  transform: translateY(0) rotate(45deg);
}
.open .navbtn::after {
  transform: translateY(0) rotate(-45deg);
}

.open .navbtn {
  color: var(--white);
  z-index: 200;
}

/* nav */
.nav {
  gap: 45px;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  color: var(--white);
  transition: transform 0.5s;
}

.open .nav {
  transform: translate(-100%, 0);
}

.open {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

/* pc menu */
.header .menu-pc {
  --min-size: 16;
  --max-size: 25;
  font-size: var(--clamp-size);
  display: flex;
  gap :2rem;
  font-weight: 600;
}
.header .menu-pc a:hover {
  color: var(--green);
}
@media (max-width:980px) {
    .header .menu-pc {
      display: none;
    }
}
.header .nav-menu-sp {
  --min-size: 20;
  --max-size: 25;
  font-size: var(--clamp-size);
  gap: 5rem;
}
@media (min-width:767px) {
    .header .nav-menu-sp {
      display: none;
    }
}
.header .nav-menu-sp h3 {
    margin-block-end: 20px;
}
.header .nav-menu-sp h3:last-child {
    margin-block-end: 0;
}


.header .nav-menu-pc {
  --min-size: 20;
  --max-size: 25;
  font-size: var(--clamp-size);
  display: flex;
  gap: 5rem;
}
@media (max-width:768px) {
    .header .nav-menu-pc {
      display: none;
    }
}
.header .nav-menu-pc h3 {
  position: relative;
}
.header .nav-menu-pc h3:before {
  content: "";
  position: absolute;
  top: 20%;
  left: -15px;
  height: 65%;
  width: 0;
  border-left: 5px solid #fff;
  opacity: 0.3;
}
.header .nav-menu-pc ul {
  margin-block-start: 5px;
  margin-block-end: 20px;
  opacity: 0.7;
}
.header .nav-menu-pc li {
  margin-block-end: 5px;
}
@media (min-width:980px){
    .header .nav-menu-pc .nav-col-2{
      column-count: 2;
    }
}

/* hero Carousel */
.hero {
    position: relative;
  --min-size: 10;
  --max-size: 20;
  margin-block-start: clamp(10px, var(--fluid-size), 20px);
}
.hero-carousel{
  width: 100%;
}
.hero-carousel .carousel {
  margin: 0 auto;
}
.hero-carousel .img-hero {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 80vh;
}
.hero-carousel .carousel-control-prev-icon , .hero-carousel .carousel-control-next-icon {
  width: clamp(3rem, 2.429rem + 2.86vw, 5rem);
  height: clamp(3rem, 2.429rem + 2.86vw, 5rem);
}
.hero-carousel .carousel-indicators{
  transform: translateY(40px);
}
.hero-carousel .carousel-indicators .thumb{
  max-width: 100px;
  width: 100%;
  height: 50px;
  background-size: cover;
  background-position: center center;
}
.thumb-hero-00 {
  background-image: url(../img/hero_fg-aira_0101.jpg);
}

.hero-carousel .carousel-heading {
  background: linear-gradient(
      -140deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 80%);
  position: absolute;
  display: block;
  padding-block: 1.5rem;
  padding-inline: 3rem;
  top: 0;
  right: 0;
  text-shadow: var(--text) 0 0 5px;
  color: var(--white) !important;
}
.hero-carousel .carousel-caption {
  display: block;
  text-shadow: var(--text) 0 0 5px;
  position: absolute;
  right: 0;
  bottom: 3.5rem;
  left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--white);
  text-align: center;
}
@media (min-width:768px){
    .hero-carousel .carousel-caption {
      bottom: 4rem;
    }
}
.hero-carousel .caption-bg-green {
  background: linear-gradient(
      -90deg,
      rgba(88, 127, 68, 0) 0%,
      rgba(88, 127, 68, 0.5) 50%,
      rgba(88, 127, 68, 0) 100%);
}
.hero-carousel .caption-bg-white {
  background: linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
}
.hero-carousel .caption-bg-red {
  background: linear-gradient(
      -90deg,
      rgba(255, 102, 102, 0) 0%,
      rgba(255, 102, 102, 0.5) 50%,
      rgba(255, 102, 102, 0) 100%);
}
.hero-carousel .caption-cmt:after {
  display: block;
  content: attr(data-text);
  font-size: 1.2rem;
  opacity: 0.8;
}


.breadcrumb .active {
  color: var(--darkgreen);
}

/* section(sec):mobile */
.sec .container {
  row-gap: 20px;
}
.sec .heading {
  grid-column: 2 / -2;
  color: var(--white);
}
.sec h2 {
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 10px;
}
.sec h2:before {
  position: absolute;
  bottom: -28px;
  left: 0;
  content: attr(data-en);
  display: block;
  font-size: clamp(1rem, 0.914rem + 0.43vw, 1.3rem) !important;
  opacity: 0.5;
  letter-spacing: 0.2rem;
}
.sec h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--white);
}
.sec .body {
  grid-column: 2 / -2;
}
.sec .photo01 {
  grid-column: 4 / -1;
  height: 400px;
}

.sec02 .container {
  row-gap: 20px;
}
.sec02 .heading {
  grid-column: 2 / -2;
  color: var(--white);
  text-align: end;
}
.sec02 h2 {
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 10px;
}
.sec02 h2:before {
  position: absolute;
  bottom: -28px;
  right: 0;
  content: attr(data-en);
  display: block;
  font-size: clamp(1rem, 0.914rem + 0.43vw, 1.3rem) !important;
  opacity: 0.5;
  letter-spacing: 0.2rem;
}
.sec02 h2:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--white);
}
.sec02 .body {
  grid-column: 2 / -2;
}
.sec02 .photo01 {
  grid-column: 1 / -4;
  height: 400px;
}

.sec03 .container {
  row-gap: 20px;
}
.sec03 .heading {
  grid-column: 2 / -2;
  color: var(--text);
}
.sec03 h2 {
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 10px;
}
.sec03 h2:before {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  content: attr(data-en);
  display: block;
  font-size: clamp(1rem, 0.914rem + 0.43vw, 1.3rem) !important;
  opacity: 0.5;
  letter-spacing: 0.2rem;
}
.sec03 h2:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--text);
}
.sec03 .body {
  grid-column: 2 / -2;
}

.sec04 .container {
  row-gap: 20px;
}
.sec04 .heading {
  grid-column: 2 / -2;
  color: var(--text);
}
.sec04 h1 {
  margin-block-end: 10px;
}
.sec04 h2 {
  margin-block-end: 10px;
}
.sec04 .body {
  grid-column: 2 / -2;
}

.sec05 .container {
  row-gap: 20px;
}
.sec05 .heading {
  grid-column: 2 / -2;
  color: var(--text);
}
.sec05 h2 {
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 10px;
}
.sec05 h2:before {
  position: absolute;
  bottom: -28px;
  left: 0;
  content: attr(data-en);
  display: block;
  font-size: clamp(1rem, 0.914rem + 0.43vw, 1.3rem) !important;
  opacity: 0.5;
  letter-spacing: 0.2rem;
}
.sec05 h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--text);
}
.sec05 .body {
  grid-column: 2 / -2;
}



/* more */
.more {
  display: block;
  --min-size: 25;
  --max-size: 45;
  margin-block-start: var(--clamp-size);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 1.414rem + 0.43vw, 1.8rem) !important;
    text-align: end;
}
.more:after {
  content: url(../img/arrow_01.svg);
  margin-inline-start: 1rem;
}





/* news */
.news {
}
.news .body {
  background: var(--white);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.news .body ul {
}
.news .body li{
  border-bottom:1px dotted #bbb;
  padding-block: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.news .body a{
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
/* news:PC */
@media (min-width: 768px) {
  .news .container {
    grid-template-columns: 404fr 1000fr;
    grid-template-rows: 1;
    grid-template-areas:
      "heading body";
    gap: var(--size1-half);
    }
  .news .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
    position: relative;
    text-align: start;
  }
  .news .body {
    grid-area: body;
    height: auto;
    width: 100%;
    margin-block-start: var(--size1-half);
    padding-inline:20px;
  }
}
/* message */
.message {
}
.message .body {
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.message .body a{
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
/* message:PC */
@media (min-width: 768px) {
  .message .container {
    grid-template-columns: 404fr 1000fr;
    grid-template-rows: 1;
    grid-template-areas:
      "heading body";
    gap: var(--size1-half);
    }
  .message .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
    position: relative;
    text-align: start;
  }
  .message .body {
    grid-area: body;
    height: auto;
    width: 100%;
    padding-inline:20px;
  }
}

/* tag */
.tag:before {
  display:inline-block;
  margin-inline-end:10px;
  padding:5px 8px;
  min-width: 95px;
  height: 30px;
}
#news .tag:before {
  border-radius:3px;
  color: var(--white);
  font-size: 1.1rem;
  text-align: center;
}
.tag-info:before {
  content: "お知らせ";
  background-color: var(--dark);
}
.tag-attention:before {
  content: "お知らせ";
  background-color: var(--accent);
}
.tag-fgarden:before {
  content: "住宅";
  background-color: var(--primary);
}
.tag-fstage:before {
  content: "マンション";
  background-color: var(--primary);
}
.tag-hotels:before {
  content: "ホテル";
  background-color: var(--primary);
}
.tag-date:before {
  content: attr(data-date);
  font-size: 1.3rem;
  border-right: 3px solid var(--primary);
}
.tag-item:before {
  content: attr(data-item);
  font-size: 1.25rem;
  border-right: 3px solid var(--primary);
}
.arrow::before {
  font-family: 'FontAwesome';
  content: '\f0da';
  padding-inline-end: 5px;
  color: var(--primary);
}
.pdf::after {
  font-family: 'FontAwesome';
  content: '\f1c1';
  padding-inline-start: 5px;
  color: #CA3A28;
}
.report::after {
  font-family: 'FontAwesome';
  content: '\f1ea';
  padding-inline-start: 5px;
  color: var(--blue);
}
.website::after {
  font-family: 'Material Icons';
  content: '\e88a';
  padding-inline: 5px;
  font-size: 2.5rem;
  color: var(--primary);
}
.website:hover::after {
  color: var(--green);
}


/* list-style */
.num li {
  list-style: decimal;
}
.latin li {
  list-style: lower-latin !important;
}
.none li {
  list-style: none !important;
}
/* remarks */
.remarks {
  font-size: clamp(1.2rem, 1.143rem + 0.4vw, 1.5rem) !important;
  opacity: 0.8;
}
/* attention */
.att ,
.att-border {
  color: var(--accent);
  font-size: clamp(1.2rem, 1.143rem + 0.4vw, 1.5rem) !important;
}
.att-border {
  border: 1px solid var(--accent);
  padding: 1.25rem !important;
  margin: 1.25rem !important;
  border-radius: 10px !important;
}

/* intro-01 */
.intro-01 .body {
  background: var(--white);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  padding-inline:20px;
  padding-block: 20px;
  order: 1;
  transform: translateY(-50px);
}
/* intro-01:PC */
@media (min-width: 768px) {
  .intro-01 .container {
    grid-template-columns: 404fr 1000fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "heading photo01"
      "body body";
    gap: var(--size1-half);
  }
  .intro-01 .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
    position: relative;
  }
  .intro-01 .body {
    grid-area: body;
    position: absolute;
    left: 10%;
    transform: translateY(-200px);
    max-width: 500px;
    width: 60%;
    top: 400px;
}
  .intro-01 .photo01 {
    grid-area: photo01;
    aspect-ratio: 1000/700;
    height: auto;
  }
}

/* intro-02 */
.intro-02 .heading {
    text-align: end;
  }
.intro-02 .body {
  background: var(--white);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  padding-inline:20px;
  padding-block: 20px;
  order: 1;
  transform: translateY(-50px);
}
/* intro-02:PC */
@media (min-width: 768px) {
  .intro-02 .container {
    grid-template-columns: 1000fr 404fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "photo01 heading"
      "body body";
    gap: var(--size1-half);
  }
  .intro-02 .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
    position: relative;
  }
  .intro-02 .body  {
    grid-area: body;
    position: absolute;
    right: 10%;
    transform: translateY(-200px);
    max-width: 500px;
    width: 60%;
    top: 400px;
}
  .intro-02 .photo01 {
    grid-area: photo01;
    aspect-ratio: 1000/700;
    height: auto;
  }
}

/* intro-01-2 */
.intro-01-2 .body {
  background: var(--white);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  padding: 20px;
    margin-block-start: var(--size1-half);
    margin-block-end: var(--size2);
}
.intro-01-2 h3 {
  margin-bottom: var(--size1-half);
  color: var(--primary);
}
/* intro-01-2:PC */
@media (min-width: 768px) {
  .intro-01-2 .container {
    grid-template-columns: 404fr 1000fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "heading heading"
      "body body";
    gap: var(--size1-half);
  }
  .intro-01-2 .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
  }
  .intro-01-2 .body {
    grid-area: body;
    transform: translateX(8%);
    max-width: 85%;
    width: 100%;
    }
}

/* intro-02-2 */
.intro-02-2 .heading {
    text-align: end;
  }
.intro-02-2 .body {
  background: var(--white);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  padding: 20px;
    margin-block-start: var(--size1-half);
    margin-block-end: var(--size2);
}
.intro-02-2 h3 {
  margin-bottom: var(--size1-half);
  color: var(--primary);
}
/* intro-02-2:PC */
@media (min-width: 768px) {
  .intro-02-2 .container {
    grid-template-columns: 1000fr 404fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "heading heading"
      "body body";
    gap: var(--size1-half);
  }
  .intro-02-2 .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
  }
  .intro-02-2 .body {
    grid-area: body;
    transform: translateX(10%);
    max-width: 85%;
    width: 100%;
    }
}



/* company-nav / constr-nav */
.company-nav ,
.constr-nav {
  background: var(--gray);
}
.company-nav .container ,
.constr-nav .container {
  padding-block-start: var(--size1);
  padding-block-end: var(--size1);
}
.company-nav .heading ,
.constr-nav .heading {
}
.company-nav .body ,
.constr-nav .body {
  margin-block-start: var(--size1-half);
  padding-block-end: 10px;
  width: 100%;
  margin: 0 auto;
}
.company-nav .body-inner ,
.constr-nav .body-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
}
.company-nav .body p ,
.constr-nav .body p {
}
.company-nav a ,
.constr-nav a {
  position: relative;
  width: 100%;
  background: var(--white);
  display: block;
  padding: 10px 15px;
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.company-nav a:hover ,
.constr-nav a:hover {
  color: var(--white);
  background: var(--green);
}
.company-nav a:after ,
.constr-nav a:after {
  font-family: 'Material Icons';
  content: '\e409';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
/* company-nav:PC */
@media (min-width: 768px) {
  .company-nav .container ,
  .constr-nav .container {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
      "body";
    gap: var(--size1-half);
  }
  .company-nav .heading ,
  .constr-nav .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
  }
  .company-nav .body ,
  .constr-nav .body {
    margin-block-start: var(--size1-half);
    grid-area: body;
    width: 100%;
    }
  .company-nav .body-inner ,
  .constr-nav .body-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .company-nav a ,
  .constr-nav a {
    width: 32%;
  }
}
/* page-mokuji */
.mkj {
  width: 100%;
  max-width: 800px;
  color: var(--primary);
  border: 2px solid var(--primary);
  margin: 5rem auto 0;
  border-radius: 2rem;
  padding: 20px;
}
.mkj a {
  color: var(--primary);
}
.mkj h3 {
  border: initial !important;
  margin-inline-start: 20px;
  font-weight: 600;
}
.mkj-l li {
  list-style: none;
}
.mkj-l li:before {
  content: "";
  border-left: 5px solid var(--primary);
  margin-inline-end: 1rem;
}
.mkj-m li {
  list-style: disc;
  padding-block: 0.3rem !important;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem) !important;
}
.mkj-m li:before {
  border: initial;
  margin: initial;
}
/* company:profile / history */
.company-profile ,
.company-history {
}
.company-profile .body ,
.company-history .body {
  background: var(--white);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.company-profile .body ul ,
.company-history .body ul {
}
.company-profile .body li ,
.company-history .body li {
  border-bottom:1px dotted #bbb;
  padding-block: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.company-profile .body a ,
.company-history .body a {
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
/* company:profile / history :PC */
@media (min-width: 768px) {
  .company-profile .container ,
  .company-history .container {
    grid-template-columns: 404fr 1000fr;
    grid-template-rows: 1;
    grid-template-areas:
      "heading body";
    gap: var(--size1-half);
    }
  .company-profile .heading ,
  .company-history .heading {
    margin-block-start: var(--size1-half);
    grid-area: heading;
    position: relative;
    text-align: start;
  }
  .company-profile .body ,
  .company-history .body {
    grid-area: body;
    height: auto;
    width: 100%;
    margin-block-start: var(--size1-half);
    padding-inline:20px;
  }
}

/* company:recruit / partner */
.recruit ,
.partner {
  position: relative;
}
.recruit .body ,
.partner .body {
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.recruit .body ul ,
.partner .body ul {
}
.recruit .body li ,
.partner .body li {
  border-bottom:1px dotted #bbb;
  padding-block: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.recruit .body p ,
.partner .body p {
  padding-inline:10px;
}
.recruit .body a ,
.partner .body a {
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.recruit h3 ,
.partner h3 {
  color: var(--primary);
  padding-inline:10px;
  margin-block-end: var(--size1-half);
  padding-block-end: 1rem;
  border-bottom: 2px solid var(--primary);
}

/* company:recruit / partner :PC */
@media (min-width: 768px) {
  .recruit .container ,
  .partner .container {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
        "body";
    gap: var(--size1-half);
    }
  .recruit .heading ,
  .partner .heading {
    margin-block-start: var(--size1-half);
    position: relative;
    text-align: start;
  }
  .recruit .body ,
  .partner .body {
    height: auto;
    width: 100%;
    margin-block-start: var(--size1-half);
    padding-inline:20px;
  }
}

.property-data {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin: 0 auto;
}
.property-data li {
  position: relative;
  width: 100%;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
  display: block;
  padding-inline: 15px;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
/* owner-data:PC */
@media (min-width: 768px) {
  .property-data {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
  .property-data li {
    width: 30%;
  }
}


/* link */
.link {
}
.link .body {
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.link .body ul {
  list-style: disc;
  padding-inline-start:35px;
  padding-inline-end: 10px;
}
.link .body li {
  padding-block: 0.8rem;
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.link .body p {
  padding-inline:10px;
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.link .body a {
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.link h3 {
  color: var(--primary);
  padding-inline:10px;
  margin-block-end: var(--size1-half);
  padding-block-end: 1rem;
  border-bottom: 2px solid var(--primary);
}
.link h3:after {
  content: attr(data-ruby);
  font-size: 1.25rem;
  opacity: 0.8;
  padding-inline-start: 1rem;
}
@media (max-width: 767px) {
  .link h3 {
    position: relative;
  }
  .link h3:after {
    position: absolute;
    top: -15px;
    left: 0;
  }
}

/* link:PC */
@media (min-width: 768px) {
  .link .container {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
        "body";
    gap: var(--size1-half);
  }
  .link .heading {
    margin-block-start: var(--size1-half);
    position: relative;
    text-align: start;
  }
  .link .body {
    height: auto;
    width: 100%;
    margin-block-start: var(--size1-half);
    padding-inline:20px;
  }
  .link .arrow:before {
    transform: rotate(0deg) translate(70% ,-50%);
  }
}

#link h3 {
  position: relative;
  border: initial;
  color: var(--dark);
  font-weight: 600;
}
#link h3:before {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: -1;
  font-size: 7rem;
  font-family: 'FontAwesome';
  content: '\e4e2';
  padding-inline-start: 5px;
  color: rgba(133 , 200 , 139 , 0.5);
}

.architecture-link {
  margin-block-end: var(--size2);
}
.architecture-link:last-child {
  margin-block-end: 0;
}
.link-list li {
  list-style-type: none;
  position: relative;
  padding-inline-start: 2rem;
  color: #777;
  font-size: clamp(1.1rem, 1.024rem + 0.53vw, 1.5rem) !important;
}
.link-list li:before {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 1.8rem;
  content: "";
  background: #ccc;
}
.link-list li a {
  color: var(--primary);
  font-size: initial;
  font-weight: 600;
}


/* constr */
.constr {
}
.constr .body {
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.constr .body ul {
  list-style: none;
  padding-inline-start:35px;
  padding-inline-end: 10px;
}
.constr .body li {
  border-bottom:1px dotted #bbb;
  padding-block: 0.8rem;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.constr .body p {
  padding-inline:10px;
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.constr .body a {
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.constr h3 {
  position: relative;
  color: var(--primary);
  padding-inline:10px;
  margin-block-end: var(--size1);
  padding-block-end: 1rem;
  border-bottom: 2px solid var(--primary);
}
.constr h3:after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  content: attr(data-total);
  font-size: 1.3rem;
  opacity: 0.8;
  padding-inline-start: 1rem;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.area-list li {
  list-style: none;
  border-bottom: none !important;
}
.area-list-item.is-active {
  background-color: var(--point) !important;
  border-color: var(--point) !important;
}
.entry-list-item.is-hide {
  display: none;
}
.entry-item + .entry-item {
  --min-size: 100;
  --max-size: 200;
  margin-block-start: var(--clamp-size);
}
.entry-item h5 {
  position: relative;
}
.entry-item h5:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.3) 0%,
    rgba(88, 127, 68, 0.3) 100%
  );
  left: -20px;
  top: -10px;
  width: 50px;
  height: 50px;
}
.entry-item-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.entry-item-body img {
  flex: 1 1 30%;
  object-fit: cover;
  object-position: center;
  width: 70%;
  max-height: 400px;
  height: 100%;
  align-self: center;
  margin-block: var(--size1-half);
}
.entry-item-body ul {
  flex: 1 1 70%;
}

.constr .body-inner.inner-cat {
  margin-block-start: var(--size2);
}
.inner-cat {
  display: grid;
  grid-template-columns: 5% 90% 5%;
  grid-template-rows: 350px 350px 350px 350px;
  grid-template-areas:
    ". cat-1 cat-1"
    "cat-2 cat-2 ."
    ". cat-3 cat-3"
    "cat-4 cat-4 .";
  gap: var(--size1);
}
.inner-cat .cat {
  position: relative;
  display: inline flow-root;
  content: "";
  background-size: cover;
  background-position: center;
  width: 95%;
  height: 100%;
}
.inner-cat .cat-1 {
  grid-area: cat-1;
  background-image: url(../design/img/bg_condominium.jpg);
  border-radius: 0 0 0 100px;
}
.inner-cat .cat-1:before {
  position: absolute;
  bottom: 15%;
  right: 10px;
  content: "マンション";
  font-size: 4rem;
  color: var(--white);
  padding: 1rem;
  z-index: 1;
}
.inner-cat .cat-1:after {
  position: absolute;
  top: 72%;
  bottom: 18%;
  left: -10px;
  right: 15px;
  content:"";
  font-size: 3rem;
  background-color: var(--white);
  opacity: 0.2;
}
.inner-cat .cat-2 {
  grid-area: cat-2;
  background-image: url(../design/img/bg_house.jpg);
  border-radius: 0 100px 0 0;
}
.inner-cat .cat-2:before {
  position: absolute;
  bottom: 15%;
  left: 10px;
  content: "戸建住宅";
  font-size: 4rem;
  color: var(--white);
  padding: 1rem;
  z-index: 1;
}
.inner-cat .cat-2:after {
  position: absolute;
  top: 72%;
  bottom: 18%;
  left: 15px;
  right: -10px;
  content:"";
  font-size: 3rem;
  background-color: var(--white);
  opacity: 0.2;
}
.inner-cat .cat-3 {
  grid-area: cat-3;
  background-image: url(../design/img/bg_hotels.jpg);
  border-radius: 0 0 0 100px;
}
.inner-cat .cat-3:before {
  position: absolute;
  bottom: 15%;
  right: 10px;
  content: "ホテル・寮";
  font-size: 4rem;
  color: var(--white);
  padding: 1rem;
  z-index: 1;
}
.inner-cat .cat-3:after {
  position: absolute;
  top: 72%;
  bottom: 18%;
  left: -10px;
  right: 15px;
  content:"";
  font-size: 3rem;
  background-color: var(--white);
  opacity: 0.2;
}
.inner-cat .cat-4 {
  grid-area: cat-4;
  background-image: url(../design/img/bg_reform.jpg);
  border-radius: 0 100px 0 0;
}
.inner-cat .cat-4:before {
  position: absolute;
  bottom: 15%;
  left: 10px;
  content: "リフォーム";
  font-size: 4rem;
  color: var(--white);
  padding: 1rem;
  z-index: 1;
}
.inner-cat .cat-4:after {
  position: absolute;
  top: 72%;
  bottom: 18%;
  left: 15px;
  right: -10px;
  content:"";
  font-size: 3rem;
  background-color: var(--white);
  opacity: 0.2;
}

/* constr:PC */
@media (min-width: 768px) {
  .constr .container {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
        "body";
    gap: var(--size1-half);
  }
  .constr .heading {
    margin-block-start: var(--size1-half);
    position: relative;
    text-align: start;
  }
  .constr .body {
    height: auto;
    width: 100%;
    margin-block-start: var(--size1-half);
    padding-inline:20px;
  }
  .entry-item-body {
    flex-direction: row-reverse;
  }
  .entry-item-body img {
    width: 100%;
    max-width: 30%;
    margin-block: 0;
  }
  .inner-cat {
    grid-template-columns: auto;
    grid-template-rows: 175px 175px 175px 175px 175px;
    grid-template-areas:
      ". cat-1"
      "cat-2 cat-1"
      "cat-2 cat-3"
      "cat-4 cat-3"
      "cat-4 .";
    gap: var(--size1-half);
  }
  .inner-cat .cat {
    width: 100%;
  }
}

/* biz */
.biz {
}
.biz .body {
  margin-block-start: var(--size1-half);
  padding-inline:10px;
  padding-block-end: 10px;
}
.biz .body ul {
  list-style: none;
  padding-inline-start:35px;
  padding-inline-end: 10px;
}
.biz .body li {
  border-bottom:1px dotted #bbb;
  padding-block: 0.8rem;
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.biz .body p {
  padding-inline:10px;
  font-size: clamp(1.5rem, 1.443rem + 0.4vw, 1.8rem);
}
.biz .body a {
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
}
.biz h3 {
  position: relative;
  color: var(--primary);
  padding-inline:10px;
  margin-block-end: var(--size1-half);
  padding-block-end: 1rem;
  border-bottom: 2px solid var(--primary);
}
.biz h3:after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  content: attr(data-total);
  font-size: 1.3rem;
  opacity: 0.8;
  padding-inline-start: 1rem;
}
#flow h3 {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 100px;
  border: 2px solid var(--primary);
}
#flow h3:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 185px;
  height: 300%;
  content: '';
  transform: rotate(25deg);
  background: var(--primary);
}
#flow h3 span {
  font-size: 4rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10px;
  transform: translateY(-55%);
  display: block;
  color: #fff;
}
.flow-item + .flow-item {
  --min-size: 100;
  --max-size: 200;
  margin-block-start: var(--clamp-size);
}
.flow-item-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.flow-item-body img {
  flex: 1 1 30%;
  object-fit: contain;
  object-position: center;
  max-width: 100px;
  width: 100%;
  align-self: center;
}
.flow-item-body p {
  flex: 1 1 70%;
}
/* biz:PC */
@media (min-width: 768px) {
  .biz .container {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
        "body";
    gap: var(--size1-half);
  }
  .biz .heading {
    margin-block-start: var(--size1-half);
    position: relative;
    text-align: start;
  }
  .biz .body {
    height: auto;
    width: 100%;
    margin-block-start: var(--size1-half);
    padding-inline:20px;
  }
}


/* note */
.note .container {
  padding-block-start:  var(--size1);
  padding-block-end:  var(--size1);
}
.note p{
  font-size: 1.2rem ;
  opacity: 0.8;
}


/* deco */
.deco-h1 {
  position: relative;
}
.deco-h1:before{
  content: '';
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px #bbb;
  transform: translateX(0%);
  animation: border_anim 0.5s linear forwards;
}
@keyframes border_anim {
  0%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
}

.decor {
  position: relative;
}
.decor::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.news.decor::before ,
.company-profile.decor::before ,
.company-history.decor::before {
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  left: 0;
  right: 0;
  top: -20px;
  bottom: 30%;
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .news.decor::before ,
  .company-profile.decor::before ,
  .company-history.decor::before {
    background: linear-gradient(
      0deg,
      rgba(0, 102, 0, 0.95) 0%,
      rgba(88, 127, 68, 0.95) 100%
    );
    left: 0%;
    right: 50%;
    top: -20px;
    bottom: -30px;
    border-radius: 0 0 0 0;
  }
}
.intro-01.decor::before {
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  left: 0;
  right: 50%;
  top: -30px;
  bottom: 0%;
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .intro-01.decor::before {
    background: linear-gradient(
      0deg,
      rgba(0, 102, 0, 0.95) 0%,
      rgba(88, 127, 68, 0.95) 100%
    );
    left: 0;
    right: 30%;
    top: -30px;
    bottom: 40%;
    border-radius: 0 0 0 0;
  }
}
.intro-01-2.decor::before {
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  left: 0;
  right: 30%;
  top: -30px;
  bottom: 60%;
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .intro-01-2.decor::before {
    background: linear-gradient(
      0deg,
      rgba(0, 102, 0, 0.95) 0%,
      rgba(88, 127, 68, 0.95) 100%
    );
    left: 0;
    right: 30%;
    top: -30px;
    bottom: 40%;
    border-radius: 0 0 0 0;
  }
}
.intro-02.decor::before {
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  left: 50%;
  right: 0;
  top: -30px;
  bottom: 0%;
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .intro-02.decor::before {
    background: linear-gradient(
      0deg,
      rgba(0, 102, 0, 0.95) 0%,
      rgba(88, 127, 68, 0.95) 100%
    );
    left: 30;
    right: 0;
    top: -30px;
    bottom: 40%;
    border-radius: 0 0 0 0;
  }
}
.intro-02-2.decor::before {
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  left: 30%;
  right: 0;
  top: -30px;
  bottom: 60%;
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .intro-02-2.decor::before {
    background: linear-gradient(
      0deg,
      rgba(0, 102, 0, 0.95) 0%,
      rgba(88, 127, 68, 0.95) 100%
    );
    left: 30;
    right: 0;
    top: -30px;
    bottom: 40%;
    border-radius: 0 0 0 0;
  }
}

.company-message.decor::before ,
.constr.decor::before ,
.biz.decor::before {
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.3) 0%,
    rgba(88, 127, 68, 0.3) 100%
  );
  left: 0;
  right: 50%;
  top: -20px;
  height: 160px;
  border-radius: 0 0 0 0;
}
@media (min-width: 768px) {
  .company-message.decor::before ,
  .constr.decor::before ,
  .biz.decor::before {
    background: linear-gradient(
      0deg,
      rgba(0, 102, 0, 0.3) 0%,
      rgba(88, 127, 68, 0.3) 100%
      );
    left: 0;
    right: 70%;
    top: -20px;
    height: 180px;
    border-radius: 0 0 0 0;
  }
}


/* footer */
.footer {
  align-items: center;
  padding-inline: var(--size1);
  padding-block: var(--size1-half);
  background: linear-gradient(
    0deg,
    rgba(0, 102, 0, 0.95) 0%,
    rgba(88, 127, 68, 0.95) 100%
  );
  color: var(--white);
}
@media (min-width: 980px) {
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1440px;
    margin:0 auto;
  }
  .footer .info {
    flex: 0 0 30%;
  }
  .footer .nav-menu-pc {
    flex: 0 0 70%;
  }
  .ft-link {
    flex: 0 0 100%;
  }
  .ft-cr {
    flex: 0 0 100%;
  }
}
/* footer:info */
.footer .info {
}
footer .info p {
  --min-size: 16;
  --max-size: 20;
  font-size: var(--clamp-size);
    margin-block:10px;
}
.footer .info a {
  text-decoration: none;
}
.footer-logo {
  width: max(180px, var(--size2));
}

/* footer:SNS */
.footer .ft-sns ul{
  display: flex;
  list-style: none;
}
.footer .ft-sns a {
  display: block;
  color: var(--white);
  font-size: 3rem;
  text-decoration: none;
  width: 1.5em;
  line-height: 1.5em;
  text-align: center;
}
/* contact */
.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  text-align: center;
}
.contact-btn {
  width: 100%;
  color: var(--primary);
  background: var(--white);
  border-radius: 10px;
  display: block;
  padding: 10px;
}
.contact-btn:hover {
  color: var(--white);
  background: var(--darkgreen);
}
.btn-inquiry {
  position: relative;
    margin-inline-start:2rem;
}
.btn-inquiry:before {
  font-family: 'Material Icons';
  content: '\e158';
  font-size: clamp(1.8rem, 1.705rem + 0.66vw, 2.3rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-330%, -50%);
}


/* footer:nav */
.footer .nav-menu-pc {
  display: flex;
}
.footer .nav-menu-pc div {
  flex: 1;
}
.footer .nav-menu-pc div:not(:last-child) {
  margin-inline-end: 20px;
}
.footer .nav-menu-pc h4 {
  position: relative;
}
.footer .nav-menu-pc h4:before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10px;
  height: 65%;
  width: 0;
  border-left: 5px solid #fff;
  opacity: 0.3;
}
.footer .nav-menu-pc ul {
  --min-size: 16;
  --max-size: 23;
  font-size: var(--clamp-size);
  margin-block-start: 5px;
  margin-block-end: 20px;
  opacity: 0.7;
  list-style: none;
}
.footer .nav-menu-pc li {
  margin-block-end: 5px;
}
@media (max-width:980px){
  .footer .nav-menu-pc{
    display: none;
  }
}

/* footer:link */
.footer .ft-link {
  --min-size: 20;
  --max-size: 24;
  font-size: var(--clamp-size);
}
.footer .ft-link ul {
  display: flex;
  flex-wrap: wrap;
    gap:1rem;
}
.footer .ft-link li {
    padding-block: 1rem;
}
.footer .ft-link .ft-bn {
    padding: 1rem;
    background-color:  rgba(255, 255, 255, 0.2);
    border-radius: 5px;
  text-align: center;
}

/* footer:copyrigths */
.footer .ft-cr {
  --min-size: 16;
  --max-size: 20;
  font-size: var(--clamp-size);
  opacity: 0.5;
}
.footer .ft-cr ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .ft-cr li {
  position: relative;
  flex:auto;
  text-align: center;
}
.footer .ft-cr li:after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  height: 65%;
  width: 0;
  border-left: 2px solid #fff;
  opacity: 0.8;
}
.footer .ft-cr li:last-child:after {
  content:none;
}


.sns-fb:hover{
  color: #1877f2;
}
.sns-ig:hover{
  color: #e1306c;
}
.sns-ln:hover{
  color: #06C755;
}
.sns-tw:hover{
  color: #55acee;
}
.sns-yt:hover{
  color: #ff0000;
}

/* ページトップ */
.page_top{
  width: 45px;
  height: 45px;
  position: fixed;
  margin-bottom: 10px;
  right: 5%;
  bottom: 5%;
  opacity: 0.8;
  z-index: 1000;
}
.page_top a{
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  text-decoration: none;
}
.page_top a:before{
  font-family: 'Material Icons';
  content: '\e316';
  font-size: clamp(3rem, 2.429rem + 2.86vw, 5rem);
  color: var(--green);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  align-content: center;
}

/*NEW・UPマーク*/
.new-mark{
  position: relative;
}
.new-mark::before{
  content: 'NEW';
  position: absolute;
  color: #fff;
  color: var(--text-bright-color);
  background-color: #f66;
  background-color: var(--info1-color);
  display: inline-block;
  padding: 0 5px;
  top: -5px;
  left: 10px;
  font-size:10px;
  font-weight: 900;
}
.up-mark{
  position: relative;
}
.up-mark::before{
  content: 'UP';
  position: absolute;
  color: #fff;
  color: var(--text-bright-color);
  background-color: #f66;
  background-color: var(--info1-color);
  display: inline-block;
  padding: 0 5px;
  top: -5px;
  left: 10px;
  font-size:10px;
  font-weight: 900;
}
.new-mark2{
}
.new-mark2::after{
  content: 'NEW';
  color: #fff;
  color: var(--text-bright-color);
  background-color: #f66;
  background-color: var(--info1-color);
  padding: 0 5px;
  font-size:10px;
  font-weight: 900;
  vertical-align: middle;
  margin: 0 5px;
}
.up-mark2{
}
.up-mark2::after{
  content: 'UP';
  color: #fff;
  color: var(--text-bright-color);
  background-color: #f66;
  background-color: var(--info1-color);
  display: inline-block;
  padding: 0 5px;
  font-size:10px;
  font-weight: 900;
  vertical-align: middle;
  margin: 0 5px;
}

/*scroll_up*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/* fade in bottom*/
.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

