@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 16px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.9;
  overflow: auto;
}
.hamopen {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
  transition: .4s;
}
a:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
button:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
ul, ol {
  list-style: none;
  padding: 0;
}
/*main section*/
main {
  display: block;
  position: relative;
  overflow: hidden;
}
main section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 550px) {
  main section {
    padding: 65px 0;
  }
}
.pdb {
  padding-bottom: 55px !important;
}
.pdb0 {
  padding-bottom: 1px !important;
}
@media (max-width: 550px) {
  .pdb {
    padding-bottom: 20px !important;
  }
}
/*img*/
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: .4s;
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.45em;
  text-decoration-color: rgba(255, 164, 99, 0.3);
  text-underline-offset: -0.05em;
  text-decoration-skip-ink: none;
}
.whitetext, .whitetext .maintitle span {
  color: #fff;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
/*01*/
.maintitle {
  margin-bottom: 60px;
  display: block;
  text-align: center;
  line-height: 0.5;
  position: relative;
  font-size: clamp(2.8rem, 1.05rem + 5.6vw, 4.2rem);
  font-weight: 400;
}
.maintitle .mf {
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #f74d07;
}
.maintitle .sf {
  font-size: 25%;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 43px !important;
}
@media (max-width: 550px) {
  .maintitle {
    margin-bottom: 40px;
  }
  .maintitle .sf {
    font-size: 30%;
  }
  .txtmgb {
    margin-bottom: 33px !important;
  }
}
/*02*/
.mtitle {
  background: linear-gradient(60deg, #de4709 0%, #de4709 90%, #f74d07 90%);
  padding: 7px 13px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: clamp(1.2rem, 0.7rem + 1.6vw, 1.6rem);
}
/*03*/
.stitle {
  font-weight: 500;
  position: relative;
  font-size: clamp(1.2rem, 0.7rem + 1.6vw, 1.6rem);
  padding-left: 2px;
  line-height: 1.65;
  padding-bottom: 12px;
  margin-bottom: 23px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 95px;
  height: 1px;
  background: #f74d07;
}
.stitle .en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #f74d07;
  text-transform: uppercase;
  margin-right: 10px;
}
@media (max-width: 550px) {
  .stitle {
    margin-bottom: 20px;
  }
  .stitle .en {
    display: block;
  }
}
/* ボタン */
.mainbtn a {
  display: block;
  position: relative;
  text-align: center;
  border: 1px solid #f74d07;
  padding: 19px 0;
  width: 260px;
  transition: all 0.3s ease-in-out;
  color: #f74d07;
  background: #fff;
}
.mainbtn a::before, .mainbtn a::after {
  content: '';
  position: absolute;
  border: solid #f74d07;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
}
.mainbtn a::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.mainbtn a::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.mainbtn a:hover {
  color: #fff;
  background: #f74d07 !important;
  border-color: transparent;
}
.mainbtn a:hover::before, .mainbtn a:hover::after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #f74d07;
}
/*white*/
.whitetext .mainbtn a {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.whitetext .mainbtn a::before, .whitetext .mainbtn a::after {
  filter: brightness(0) invert(1);
}
/**/
.tbtn {
  margin-top: 37px;
}
@media (max-width: 750px) {
  .mainbtn {
    width: 210px !important;
  }
  .mainbtn a {
    width: 100%;
    padding: 15px 0;
  }
  .tbtn {
    margin-top: 30px;
  }
  .spfitc {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
/* flex要素 */
.flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aic {
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .flexbox {
    display: block;
  }
  .flexbox img {
    width: 100%;
  }
  .flexbox div {
    width: 100%;
  }
  .spmgb {
    margin-bottom: 35px;
  }
  .spmgb02 {
    margin-bottom: 25px;
  }
  .spmgb03 {
    margin-bottom: 15px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto.w48, .mauto.w43 {
    width: 100%;
  }
}
.w65 {
  width: 65%;
}
.w52 {
  width: 52%;
}
.w49 {
  width: 49%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 32%;
}
/*background*/
.bg_gray::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f7f7f7;
  z-index: -100;
}
/* 背景装飾 */
.slash_w, .slash {
  overflow: hidden;
}
.slash_w::before {
  content: '';
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -2;
  transform: skewX(15deg) translateX(-60%);
  pointer-events: none;
}
/*斜面*/
.slash::before {
  position: absolute;
  content: "";
  width: 40%;
  max-width: 300px;
  height: 100%;
  top: 0;
  left: -80px;
  background: #c2c2c0;
  transform: skew(20deg);
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}
.slash_right::before {
  position: absolute;
  content: "";
  width: 40%;
  max-width: 300px;
  height: 100%;
  top: 0;
  right: -80px;
  background: #c2c2c0;
  transform: skew(-20deg);
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}
/*斜面 オレンジ色*/
.slash_w.orange::before, .slash.orange::before, .slash_right.orange::before {
  background: #f74d07;
}
/* 菱形 */
.decologo::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/deco.svg);
  background-repeat: no-repeat;
  background-position: center right -210%;
  z-index: -1;
  pointer-events: none;
  filter: invert(30%) sepia(85%) saturate(2603%) hue-rotate(2deg) brightness(104%) contrast(94%);
  opacity: 0;
  background-size: 70%;
  transition: 2.5s;
}
.inview.decologo::before {
  opacity: 0.2;
  background-size: 80%;
}
/*gray*/
.logogray.decologo::before {
  filter: none;
}
.inview.logogray.decologo::before {
  opacity: 0.03 !important;
}
@media (max-width: 750px) {
  .decologo::before {
    background-position: center right -300px;
    background-size: 300px;
  }
  .inview.decologo::before {
    background-size: 600px;
    opacity: 0.15;
  }
}
/* illust */
.psr {
  position: relative;
}
.bg01::before {
  background: url(../img/_illust/01.svg), url(../img/_illust/01.svg) !important;
}
.bg02::before {
  background: url(../img/_illust/02.svg), url(../img/_illust/02.svg) !important;
}
.bg03::before {
  background: url(../img/_illust/03.svg), url(../img/_illust/03.svg) !important;
}
.bg04::before {
  background: url(../img/_illust/04.svg), url(../img/_illust/04.svg) !important;
}
.bg05::before {
  background: url(../img/_illust/05.svg), url(../img/_illust/05.svg) !important;
}
.illust::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background-size: 230px !important;
  background-repeat: no-repeat !important;
  background-position: top 1% right 10px, bottom 1% left 10px !important;
  opacity: 0.2;
}
.bg_gray.illust::before, .bg_gray .illust::before {
  opacity: 0.1;
}
/*イラスト オレンジ色*/
.orange.illust::before {
  filter: invert(48%) sepia(70%) saturate(6516%) hue-rotate(2deg) brightness(103%) contrast(95%);
  opacity: 0.35;
}
.bg_gray.orange.illust::before, .bg_gray .orange.illust::before {
  opacity: 0.25;
}
@media (max-width: 750px) {
  .illust::before {
    background-size: 120px !important;
  }
}
/*反転*/
.bgx::before, .bgx::after {
  transform: scaleX(-1);
}
.bgy::before, .bgy::after {
  transform: scaleY(-1);
}
.bgxy::before, .bgxy::after {
  transform: scaleX(-1) scaleY(-1);
}
/* 背景文字 */
.flowimg::before, .flowimg::after {
  content: "KOUDAIKENSETSU.CO.,LTD.";
  position: absolute;
  bottom: 35px;
  width: 100%;
  height: auto;
  font-size: 14rem;
  line-height: 1.0;
  text-align: center;
  z-index: -10;
  white-space: nowrap;
  color: #f74d07;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  opacity: 0.15;
  pointer-events: none;
}
.flowimg::before {
  left: 0;
  animation: flowimg 35s linear infinite;
}
.flowimg::after {
  left: 3000px;
  animation: flowimg 35s linear infinite;
}
@keyframes flowimg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3000px);
  }
}
@media (max-width: 550px) {
  .flowimg::before, .flowimg::after {
    font-size: 5rem;
  }
  .flowimg::after {
    left: 1115px;
  }
  @keyframes flowimg {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1115px);
    }
  }
}
/* アニメーション ============*/
/* flowup */
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*delay*/
.delay01 {
  transition-delay: 0.45s;
}
.delay02 {
  transition-delay: 0.6s;
}
@media (max-width: 750px) {
  .delay01, .delay02 {
    transition-delay: 0.3s !important;
  }
}
/*=== 共通部分ここまで ===*/
/* header ================================================*/
.header_tel {
  display: flex;
  align-items: center;
}
.header_sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  padding: 19px 5px 22px;
  transition: .3s all;
}
.change {
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.25);
}
.header {
  transition: all .5s;
  z-index: 100;
  position: relative;
  width: calc(100% - 203px);
}
/*右端のボタン*/
.tel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 203px;
  transition: .3s;
}
.tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
  background: #f74d07;
  font-weight: 500;
}
.tel a:last-child {
  font-size: 0.8rem;
  position: relative;
  bottom: 0;
  background: #de4709;
}
.tel a:hover {
  opacity: 0.6;
  transition: .3s;
}
.tel a i {
  margin-right: 7px;
  font-size: 95%;
}
.header_inner {
  width: 99%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*logo*/
.header_title a {
  display: flex;
  align-items: center;
}
.header_logo {
  width: 365px;
  transition: 1.1s ease;
}
.header h1 {
  transition: .3s;
  z-index: 110;
}
.header_title:hover h1 {
  opacity: 0.6;
  transition: .3s;
}
/*menu*/
.header_nav {
  margin: auto;
}
.header ul {
  display: flex;
  text-align: center;
}
.header ul li {
  position: relative;
  line-height: 1.65;
}
.header ul li a {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  padding: 0 14px;
  color: #333;
  font-size: 1.15rem;
  line-height: 1.35;
  white-space: nowrap;
  font-weight: 500;
}
.header ul li a:hover {
  opacity: 0.6;
}
.header ul li a span {
  display: block;
  font-size: 80%;
  color: #f74d07;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
}
.hnav {
  margin-left: auto;
  width: fit-content;
}
.header_item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.header_item > div {
  margin: 0 8.5px;
}
.header_item .mainbtn a {
  width: 11rem;
  line-height: 1.55;
  padding: 5px;
  font-size: 0.9rem;
}
.header_item .mainbtn a:after {
  content: none;
}
/* hamburger ================================= */
.header__inner {
  display: none;
}
.hamburger {
  position: fixed;
  display: block;
  height: 40px;
  z-index: 9999;
  width: 60px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #f74d07 !important;
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #f74d07 !important;
}
/*
.hamburger.-active .hamburger__text::before {
	content: 'close';
	position: relative;
	bottom: -9px;
	color: #f74d07 !important;
}
*/
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  background-color: #f74d07;
}
.hamburger__line:before {
  top: -8.5px;
}
.hamburger__line:after {
  top: 8.5px;
}
/*
.hamburger__text {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.hamburger__text::before {
	content: "menu";
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	text-indent: 0.17em;
	margin-left: 3px;
	color: #f74d07;
}
*/
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh; /* fallback */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.header__nav-area::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/hamburger.webp);
  background-size: cover;
  background-position: 60% 50%;
  z-index: -2;
}
.header__nav-area::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  opacity: 0.7;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
}
.global-navigation {
  margin: auto;
  height: fit-content;
  width: 85%;
}
.global-navigation__list a {
  color: #333;
}
.global-navigation__list a:hover {
  opacity: 0.6;
}
.global-navigation__list > li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.global-navigation__list > li {
  margin: 3px 0;
  font-size: 1.25rem;
  line-height: 1.65;
  display: block;
}
.global-navigation__list > li a span {
  display: block;
  font-size: 75%;
  color: #f74d07;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
}
/*btn*/
.global-navigation__list {
  margin-bottom: 27px;
}
.global-navigation .mainbtn {
  margin-top: 16px;
}
.mainbtn.telbtn a {
  color: #fff;
  background: #f74d07 !important;
  border-color: transparent;
}
.mainbtn.telbtn a:hover {
  color: #f74d07;
  background: #fff !important;
  border-color: #f74d07;
}
/*accordion menu*/
.accordion__list li {
  font-size: 1rem;
}
.accordion__list li + li {
  margin-top: 11px;
}
.accordion__list li a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: bold;
  margin-right: 7px;
  font-size: 0.6rem;
  transform: translateY(-2px);
  color: #4c5434;
}
.accordion__link {
  opacity: 0.85;
}
.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.accordion.-active {
  height: auto;
  padding-top: 17px;
  visibility: visible;
}
.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  appearance: none;
  width: 100%;
  padding: 0;
  text-align: left;
  color: #fff;
}
.global-navigation__link.-accordion::after {
  content: '';
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  background-color: #4c5434;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  background-color: #4c5434;
  transform: translateY(-50%);
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
/*animation*/
.header__nav-area {
  overflow-x: hidden;
}
.header__nav-area ul li {
  transform: translateX(200px);
  opacity: 0;
}
.header__nav-area .mainbtn {
  transform: translateX(200px);
  opacity: 0;
}
.header__nav-area.-active ul li {
  transform: translateX(0);
  transition: 1.6s ease, opacity 2.6s ease;
  opacity: 1;
}
.header__nav-area.-active .mainbtn {
  transform: translateX(0);
  transition: 1.6s ease, opacity 2.6s ease;
  opacity: 1;
}
.header__nav-area.-active ul li:nth-child(2) {
  transition-delay: 0.15s;
}
.header__nav-area.-active ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.header__nav-area.-active ul li:nth-child(4) {
  transition-delay: 0.45s;
}
.header__nav-area.-active ul li:nth-child(5) {
  transition-delay: 0.6s;
}
.header__nav-area.-active .mainbtn {
  transition-delay: 0.45s;
}
@media (max-width: 1170px) {
  .header_logo {
    width: 28vw;
  }
  .header ul li a {
    font-size: 1.5vw;
  }
  .header_nav {
    margin-right: 10px;
  }
}
@media (max-width: 1065px) {
  .header_logo {
    width: 350px;
    margin-left: 0;
  }
  .header_sticky {
    padding: 17px 17px 20px;
  }
  .header {
    padding: 0;
    width: 100%;
  }
  .header__inner {
    display: block;
  }
  .header_nav {
    display: none;
  }
  .header .inner {
    display: none;
  }
  .header_inner {
    margin: 0;
  }
  .tel {
    display: none;
  }
  .hamburger {
    top: 20px;
    right: 11px;
  }
}
@media (max-width: 550px) {
  .header_logo {
    width: 240px;
  }
  .header_sticky {
    padding: 15px 10px;
  }
  .hamburger {
    top: 13px;
    right: 3px;
  }
  .global-navigation__list {
    margin-bottom: 20px;
  }
  .global-navigation__list > li a {
    font-size: 1.05rem;
    padding: 7px 0;
  }
  .global-navigation .mainbtn {
    font-size: 0.85rem;
    max-width: 190px;
  }
}
/* footer ================================================*/
/*背景アニメ*/
/* -----------------------------------------------
/* Author : Chris Smith
/* MIT license: http://opensource.org/licenses/MIT
/* CodePen : https://codepen.io/chris22smith/pen/RZogMa
/* ----------------------------------------------- */
.bg {
  animation: slide 40s infinite alternate;
  background-image: linear-gradient(-60deg, #ff7036 50%, #ff854d 50%);
  bottom: 0;
  left: -50%;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
}
.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 22s;
}
.bg3 {
  animation-duration: 23s;
}
@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
/**/
.footer_contact {
  overflow: hidden;
  position: relative;
  padding: 90px 0 100px;
}
.footer_contact .inner {
  max-width: 730px;
}
.footer_contact .maintitle {
  margin-bottom: 43px;
}
.footer_contact p, .footer_contact .maintitle span {
  color: #fff;
}
.footer_contact .fitc {
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 770px) {
  .footer_contact .fitc {
    text-align: left;
  }
}
.footer_contact .btn_wrap .btn a {
  display: block;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 25px 0;
  font-size: 1.15rem;
  white-space: nowrap;
  font-weight: 500;
}
.footer_contact .btn_wrap .btn a:hover {
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.fcon {
  width: 48.7%;
}
@media (max-width: 960px) {
  .footer_contact .btn_wrap .btn a {
    font-size: 100%;
  }
}
.cwrap {
  margin-top: 45px;
}
.ctitle {
  font-size: 1.15rem;
  position: relative;
  margin-bottom: 15px;
  margin-left: 3px;
}
.fcon {
  text-align: center;
}
@media (max-width: 750px) {
  .cwrap {
    margin-top: 55px;
  }
  .fcon {
    margin-bottom: 10px;
  }
  .fcon:last-child {
    margin-bottom: 0;
  }
  .footer_contact .maintitle {
    margin-bottom: 37px !important;
  }
  .footer_contact .btn_wrap {
    display: block;
  }
  .footer_contact .btn_wrap .btn {
    width: 100%;
    margin-bottom: 10px;
    margin: auto;
  }
  .footer_contact {
    padding: 60px 0 63px;
  }
}
@media (max-width: 550px) {
  .footer_contact .fitc {
    margin-bottom: 30px;
  }
}
/* ロゴとアドレス */
.footer_address .flexbox {
  max-width: 850px;
  margin: auto;
}
.footer_address {
  position: relative;
  text-align: center;
  padding: 43px 0;
}
.footer_address .maintitle {
  margin: 1% auto 2%;
}
.footer_address a {
  display: inline-block;
}
.flogo {
  width: 85%;
  max-width: 430px;
  margin-bottom: 17px;
}
.flogo img {
  width: 100%;
}
.footer_address p {
  margin-bottom: 3px;
  font-size: 93%;
  line-height: 1.75;
}
.footer_address p br {
  display: none;
}
.footer_address p:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 565px) {
  .footer_address p {
    font-size: 0.77rem;
    text-align: center;
  }
  .footer_address p br {
    display: block;
  }
  .flogo {
    max-width: 280px;
    margin-bottom: 15px;
  }
  .footer_address {
    padding: 35px 0;
  }
}
/* コピーライト */
.copyright {
  text-align: center;
  padding: 10px 0px 17px;
  border-top: 1px solid #dfe2eb;
  font-size: 0.85rem;
}
@media (max-width: 565px) {
  .copyright {
    font-size: 0.7rem;
    padding: 7px 0px 10px;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #f74d07;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 79;
  border-radius: 50px;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  color: #fff;
  font-size: 0.85rem;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 79;
}
@media(max-width:550px) {
  .go_top {
    width: 53px;
    height: 53px;
    right: 15px;
    bottom: 10px;
  }
  .go_top::before {
    font-size: 0.7rem;
  }
}
/* スライド ==========================================*/
.topfv {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.topfv::before {
  content: '';
  width: 40%;
  height: 500px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f74d07;
  opacity: 0.75;
  z-index: -1;
}
.topfv .flowimg::before, .topfv .flowimg::after {
  z-index: 1 !important;
  mix-blend-mode: difference;
  color: #077bf7;
  bottom: 30px;
  opacity: 0.35;
}
.topslide {
  width: 93%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}
/*img*/
.slide_items {
  width: 100%;
  background: #fff;
}
.slide_items img {
  width: 100%;
  height: calc(100vh - 165px);
  min-height: 690px;
  object-fit: cover;
}
/*text*/
.catchcopy p {
  margin-bottom: 5px;
}
.catchcopy {
  position: absolute;
  top: 50%;
  left: 3.5%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 4.5rem;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 12%), 0px -2.5px 3px rgb(0 0 0 / 7%);
}
@media (max-width: 1085px) {
  .slide_items img {
    height: 650px;
    min-height: auto;
  }
  .catchcopy {
    font-size: 3.5rem;
  }
}
@media (max-width: 750px) {
  .topfv::before {
    height: 70vw;
  }
  .topfv {
    padding-bottom: 15px;
  }
  .topfv .flowimg::before, .topfv .flowimg::after {
    bottom: 15px;
  }
  .slide_items img {
    height: 119vw;
  }
}
@media (max-width: 500px) {
  .catchcopy {
    font-size: 10vw;
  }
}
/* ごあいさつ ============*/
.welcome .inner {
  max-width: 1381px;
}
.welcome {
  position: relative;
  z-index: 1;
  background: url(../img/welcome.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .welcome {
  background-attachment: scroll;
}
.welcome::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.1;
  z-index: -2;
}
.welcome::before {
  content: '';
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff8247;
  pointer-events: none;
  z-index: -1;
  transform: skewX(-15deg) translateX(47%);
}
.welcome .slash::before {
  content: none;
}
.welcome .slash::after {
  position: absolute;
  content: "";
  width: 40%;
  max-width: 311px;
  height: 100%;
  top: 0;
  right: -75px;
  background: #f74d07;
  transform: skew(-20deg);
  z-index: -1;
  opacity: 0.15;
}
/*text*/
.wtext {
  width: 48%;
  margin-left: auto;
  padding-bottom: 6px;
}
.wtext::before {
  filter: invert(48%) sepia(70%) saturate(6516%) hue-rotate(2deg) brightness(103%) contrast(95%);
  opacity: 0.4;
}
@media(max-width:1010px) {
  .wtext {
    width: 100%;
  }
  .wtext p {
    margin-bottom: 15px;
  }
  .welcome .slash::after {
    max-width: 100%;
    transform: skew(0);
    opacity: 0.45;
    width: 100%;
    position: absolute;
    left: 0;
  }
  .welcome::after {
    opacity: 0.5;
  }
  .welcome::before {
    opacity: 0.45;
  }
  .welcome .illust {
    position: initial;
  }
  .welcome .illust::before {
    background-position: top 10px right 10px, bottom 10px left 10px !important;
    z-index: 1;
  }
  .wtext::before {
    filter: none;
    opacity: 0.13;
  }
}
@media(max-width:750px) {
  .welcome {
    background-attachment: scroll;
  }
}
/* 事業内容 ============*/
.topservices .inner {
  max-width: 1020px;
  counter-reset: number 0;
}
.topservices .tbtn {
  margin-top: 50px;
}
/*link*/
.links div {
  width: 48.5%;
}
.links a {
  display: block;
  position: relative;
  overflow: hidden;
}
.links a::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}
.links a:hover img {
  transform: scale(1.05);
}
.links a img {
  margin-bottom: 0 !important;
  transition: .6s all;
}
.links a img {
  object-fit: cover;
  width: 100%;
  height: 550px;
}
.links a h2 {
  color: #fff;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  font-size: clamp(1.3rem, 0.425rem + 2.8vw, 2rem);
  line-height: 1.4;
  white-space: nowrap;
  font-weight: 500;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 15%), 0px -2.5px 3px rgb(0 0 0 / 10%);
}
.links a h2::before {
  counter-increment: number 1;
  content: "service0"counter(number);
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 65%;
  display: block;
}
@media(max-width:1060px) {
  .links a img {
    height: 53vw;
  }
}
@media(max-width:750px) {
  .topservices .tbtn {
    margin-top: 37px;
  }
  .links div {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* 施工実績　============*/
.works {
  padding-top: 70px;
}
.works .illust {
  margin-bottom: 70px;
  padding: 40px 0 75px;
  max-width: 950px;
}
.works .maintitle {
  margin-bottom: 35px;
}
.works .fitc {
  text-align: center;
}
.works .tbtn {
  margin-top: 60px;
}
@media (max-width: 770px) {
  .works .fitc {
    text-align: left;
  }
}
@media (max-width: 550px) {
  .works {
    padding-top: 40px;
  }
  .works .illust {
    padding: 60px 0 35px;
    margin-bottom: 33px;
  }
  .works .tbtn {
    margin-top: 37px;
  }
}
.p_slider ul .slick-slide {
  margin-left: 1% !important;
  transition: .3s ease;
}
.p_slider ul li {
  overflow: hidden;
  position: relative;
}
.p_slider ul li:nth-child(2n+1) {
  margin-top: 30px;
}
.p_slider ul li::before {
  content: '';
  display: block;
  padding-top: 80%; /*高さの比率*/
}
.p_slider ul li img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: .8s;
}
.p_slider a:hover img {
  transform: scale(1.1);
  transition: .8s;
}
@media (max-width: 750px) {
  .p_slider ul .slick-slide {
    margin-left: 1.3% !important;
  }
  .p_slider ul li:nth-child(2n+1) {
    margin-top: 15px;
  }
}
/* 作業員募集中 ============*/
.recruit .inner {
  max-width: 1179px;
}
.recruit {
  position: relative;
  z-index: 1;
  background: url(../img/recruit.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 0;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .recruit {
  background-attachment: scroll;
}
.recruit::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.8;
  z-index: -2;
}
/**/
.recruit .flexbox {
  flex-wrap: nowrap;
}
.rimg {
  width: 720px;
  margin-right: -5%;
  margin-bottom: -5px;
}
/*text*/
.rtext {
  width: 52%;
  padding-bottom: 90px;
}
.rtext p {
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media (max-width: 1300px) {
  .rtext {
    padding-bottom: 6vw;
  }
  .rimg {
    width: 80vw;
    margin-bottom: -5.5vw;
  }
}
@media (max-width: 1130px) {
  .recruit .maintitle {
    text-align: center;
  }
  .recruit .tbtn {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit .flexbox {
    display: block;
  }
  .rtext {
    width: 100%;
  }
  .rimg {
    max-width: 700px;
    width: 70%;
    margin-bottom: -10px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .recruit {
    background-attachment: scroll;
  }
}
@media (max-width: 550px) {
  .rtext {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 120px 0 110px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.fv .inner {
  width: 97%;
}
.fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fv.webp);
  background-repeat: repeat !important;
  background-size: cover !important;
  background-position: 50% 60%;
  z-index: -1;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f74d07;
  opacity: 0.65;
  z-index: 1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 15px !important;
  font-size: clamp(1.7rem, 0.325rem + 4.4vw, 2.8rem);
  line-height: 1.5;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 700;
}
@media(max-width:1235px) {
  .fv {
    padding: 90px 0 70px;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 40px 0 30px;
  }
}
/* breadcrumb */
.binner {
  font-weight: 700;
  line-height: 1.4;
  width: 97%;
  font-size: 1rem;
  position: relative;
  color: #fff;
}
.breadcrumb {
  z-index: 1;
  background: transparent;
  position: relative;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  position: relative;
  top: -0.1em;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: '\f015';
  font-weight: bold;
  font-size: 90%;
  position: relative;
  top: -0.05em;
}
@media(max-width:850px) {
  .binner {
    font-size: 0.9rem;
  }
}
/* 事業内容ページ ===========================================================================================*/
.ser_conts {
  margin-bottom: 75px;
}
.ser_conts:last-of-type {
  margin-bottom: 0 !important;
}
.serlast {
  margin-top: 60px;
}
@media(max-width:750px) {
  .spmgb0 {
    margin-bottom: 0 !important;
  }
  .serlast {
    margin-top: 50px;
  }
}
@media(max-width:550px) {
  .ser_conts {
    margin-bottom: 60px;
  }
  .serlast {
    margin-top: 20px;
  }
}
/*工事の種類*/
.syurui:last-of-type {
  margin-top: 25px;
}
.syurui .stitle {
  margin-bottom: 7px;
  padding-bottom: 7px;
  font-size: clamp(1.2rem, 0.95rem + 0.8vw, 1.4rem);
}
/*施工内容*/
.miniflow .stitle {
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.1rem) !important;
}
/**/
.step {
  display: flex;
}
.step p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10px 0;
  padding: 5px 10px 7px;
  background: #f7f7f7;
  position: relative;
}
.step p::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: #f74d07;
  font-size: 80%;
}
.step p:first-of-type {
  margin-left: 0;
}
.step p:last-of-type {
  margin-right: 0;
}
.step p:last-of-type::after {
  content: none;
}
.step .sonota span {
  font-size: 90%;
}
@media (max-width: 1365px) {
  .step {
    display: block;
  }
  .step p {
    margin: 0 0 20px;
    justify-content: center;
  }
  .step p::after {
    content: "\f063";
    top: auto;
    bottom: -16px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .service_details .w32 {
    width: 43%;
  }
  .service_details .w65 {
    width: 52%;
  }
}
@media (max-width:750px) {
  .service_details .w32, .service_details .w65 {
    width: 100%;
  }
  .service_details {
    display: flex;
    flex-direction: column;
  }
  .service_details .flexbox, .SP_dc {
    display: contents;
  }
  .service_details .mtitle {
    order: -1;
    width: 100%;
  }
  .miniflow .syurui:last-of-type {
    margin-top: 37px;
  }
}
/*解体工事業*/
.demolition {
  margin-top: 50px;
}
.demolition div {
  padding: 15px 20px;
  background: #fff;
}
.demolition .stitle {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: clamp(1.2rem, 0.95rem + 0.8vw, 1.4rem);
}
@media(max-width:750px) {
  .demolition {
    margin-top: 27px;
  }
  .demolition div {
    margin-bottom: 15px;
  }
}
/* 対応エリア */
.area .inner {
  max-width: 1010px;
}
.area .flexbox {
  margin-bottom: 35px;
}
/*box*/
.area .flexbox div {
  overflow: hidden;
  padding: 20px;
  position: relative;
}
.area .flexbox div::before {
  position: absolute;
  content: "";
  width: 40%;
  max-width: 300px;
  height: 100%;
  top: 0;
  right: -100px;
  background: #c2c2c0;
  transform: skew(-20deg);
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}
.area .flexbox div::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f7f7f7;
  z-index: -100;
}
/*img*/
.area .flexbox div img {
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
}
/*title*/
.area .flexbox div h3 {
  position: relative;
  font-weight: 500;
  font-size: clamp(1.3rem, 0.925rem + 1.2vw, 1.6rem);
  margin-bottom: 10px;
  padding-left: 50px;
}
.area .flexbox div h3:before {
  background: #333;
  position: absolute;
  content: "";
  top: 0.9em;
  left: 0;
  width: 38px;
  height: 1px;
}
/*text*/
.area .flexbox div p {
  padding: 10px;
  background: #fff;
  font-size: 115%;
}
.area .flexbox div p::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  color: #f74d07;
  margin-right: 7px;
}
@media(max-width:1010px) {
  .area .flexbox div img {
    height: 30vw;
  }
}
@media(max-width:750px) {
  .area .flexbox {
    margin-bottom: 27px;
  }
  .area .flexbox div {
    margin-bottom: 17px;
  }
  .area .flexbox div:last-of-type {
    margin-bottom: 0 !important;
  }
  .area .flexbox div img {
    width: 76%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
  }
  .area .flexbox div p {
    font-size: 100%;
  }
}
/* 施工実績ページ ===========================================================================================*/
.gallerytitle {
  margin-bottom: 55px;
  font-weight: 500;
  font-size: clamp(1rem, 0.5625rem + 1.4vw, 1.35rem);
}
@media(max-width:550px) {
  .gallerytitle {
    margin-bottom: 35px;
    font-weight: 400;
  }
}
/* 工事履歴 */
.experience {
  margin-bottom: 45px;
}
.ex_name {
  width: 77% !important;
}
.ct_wrap .info_table tr td:last-of-type {
  text-align: center;
}
.ct_wrap .info_table tr:not(:first-of-type) th {
  background: #fff;
  color: #333;
  font-weight: 400;
}
/*table sp*/
.spsctext {
  display: none;
  font-size: 90%;
}
@media (max-width:935px) {
  .spsctext {
    display: block;
  }
  .ct_wrap .info_table {
    width: 965px;
  }
  .ct_wrap {
    padding-bottom: 5px;
    overflow-x: scroll;
  }
  .spnone {
    display: none;
  }
}
@media (max-width:550px) {
  .ct_wrap .info_table {
    font-size: 90%;
  }
  .ct_wrap .info_table {
    width: 740px;
  }
}
/* 採用情報ページ ===========================================================================================*/
/* 求める人材 */
.requirements {
  padding-bottom: 0;
}
.requirements .inner:last-of-type {
  max-width: 1364px;
}
@media(max-width:1380px) {
  .requirements {
    padding-bottom: 120px;
  }
}
@media(max-width:750px) {
  .requirements {
    padding-bottom: 0;
  }
}
/*行大建設ではこのような方を求めています！*/
.recinfo p {
  font-size: 145%;
  font-weight: 500;
  color: #f74d07;
}
.recinfo p::before {
  content: "＼";
  margin-right: 12px;
}
.recinfo p::after {
  content: "／";
  margin-left: 5px;
}
@media(max-width:750px) {
  .recinfo p::before, .recinfo p::after {
    content: none;
  }
}
@media(max-width:550px) {
  .recinfo p {
    font-size: 115%;
  }
}
/*チェックリスト*/
.recinfo ul {
  display: flex;
  flex-wrap: wrap;
  margin: 35px 0 45px;
}
.recinfo ul li {
  width: 32%;
  margin: 0 0.6% 10px;
  padding: 17px 10px;
  background: #fff;
  font-size: 110%;
  font-weight: 500;
}
.recinfo ul li span {
  padding-left: 23px;
  position: relative;
  display: inline-block;
}
.recinfo ul li span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #f74d07;
  font-size: .9em;
  position: absolute;
  top: 0.1em;
  left: 0;
}
@media(max-width:870px) {
  .recinfo ul li {
    font-size: 100%;
  }
}
@media(max-width:750px) {
  .recinfo ul {
    display: block;
    margin: 27px 0 33px;
  }
  .recinfo ul li {
    padding: 10px;
    width: 100%;
    margin: 0 0 10px;
  }
}
/* 応募情報 */
.information {
  margin-top: 60px;
}
@media(max-width:550px) {
  .information {
    margin-top: 45px;
  }
}
/* 会社概要ページ ===========================================================================================*/
@media (max-width:750px) {
  .SP_displayContents .inner, .SP_displayContents .inner02 {
    display: flex;
    flex-direction: column;
  }
  .SP_displayContents .flexbox, .SP_dc {
    display: contents;
  }
  .SP_displayContents h2 {
    order: -1;
  }
}
/* 理念 */
.vision .inner {
  max-width: 1588px;
}
.vision .flowimg::before, .vision .flowimg::after {
  bottom: -1%;
}
.boxes {
  justify-content: center;
}
.boxes div {
  border: 1px solid rgba(247, 77, 7, 0.45);
  margin: 0 0.6% 20px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.6);
}
.boxes div .stitle {
  text-align: center;
  padding-bottom: 0;
  border-bottom: none;
  font-size: clamp(1.2rem, 1.0125rem + 0.6vw, 1.35rem);
  margin-bottom: 13px;
}
.boxes div .stitle::after {
  content: none;
}
.boxes div .stitle span {
  display: block;
  margin-right: 0;
}
.boxes div p {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media(max-width:1100px) {
  .boxes div {
    padding: 25px 15px;
    margin-bottom: 13px;
  }
}
@media(max-width:750px) {
  .vision .flowimg::before, .vision .flowimg::after {
    bottom: 10px;
  }
  .boxes div {
    margin: 0 0 17px;
  }
  .boxes div:last-of-type {
    margin-bottom: 0 !important;
  }
}
/* 代表あいさつ */
.greeting {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../img/greeting.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .greeting {
  background-attachment: scroll;
}
.greeting::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff8247;
  opacity: 0.75;
}
.greeting::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f74d07;
  opacity: 0.5;
  z-index: -1;
}
/**/
.greeting .inner {
  max-width: 1000px;
}
.greeting p {
  margin-bottom: 15px;
}
.glast {
  text-align: right;
  margin-top: 25px;
  line-height: 1.6;
}
.glast span {
  display: block;
  font-family: "Yuji Mai", serif;
  font-weight: 400;
  font-size: 140%;
}
@media (max-width: 750px) {
  .greeting {
    background-attachment: scroll;
  }
  .greeting::after {
    opacity: 0.6;
  }
  .glast span {
    font-size: 120%;
  }
}
/* 会社概要 */
/*img*/
.twflex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}
.twflex div {
  width: 48.5%;
  position: relative;
}
.twflex div:last-child {
  top: 20px;
}
@media(max-width: 550px) {
  .twflex {
    margin-bottom: 30px;
  }
  .twflex div {
    width: 48%;
  }
  .twflex div:first-child {
    top: -7px;
  }
  .twflex div:last-child {
    top: 7px;
  }
}
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border: 2px solid #e8e8e8;
}
.info_table th, .info_table td {
  padding: 19px 10px;
}
.info_table th {
  background: #f56d2c;
  color: #fff;
  width: 35%;
  border-right: 2px solid #e8e8e8;
  font-weight: 500;
}
.info_table td {
  background: #fff;
  width: 65%;
  border-right: 2px solid #e8e8e8;
  border-left: 2px solid #e8e8e8;
}
.info_table i {
  color: #f74d07;
}
.ib {
  display: inline-block;
}
.spblock {
  display: none;
}
@media (max-width: 750px) {
  .spblock {
    display: block;
  }
  .spnone {
    display: none;
  }
  .sptable.info_table td, .sptable.info_table th {
    width: 100%;
    padding: 8px 10px;
    display: block;
    border: none;
    text-align: left;
  }
  .sptable.info_table th {
    border-bottom: 2px solid #e8e8e8;
  }
  .sptable.info_table td {
    padding-bottom: 10px !important;
  }
  .info_table th .note {
    display: inline-block;
  }
}
/*list*/
.acheck li {
  padding-left: 21px;
  position: relative;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #f74d07;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
.borderbottom li {
  border-bottom: 1px dotted #b0b0b0;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
/* アクセス */
.map iframe {
  width: 100%;
  height: 350px;
}
@media (max-width: 750px) {
  .map .flexbox div {
    margin-bottom: 40px;
  }
  .map .flexbox div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .map iframe {
    height: 280px;
  }
}
/* お問い合わせページ ===========================================================================================*/
.contact_sec {
  position: relative;
}
.contact_sec section .inner, .privacy .inner {
  max-width: 1050px;
}
/**/
.contop {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 750px) {
  .contop {
    text-align: left;
  }
}
@media (max-width: 550px) {
  .contop {
    margin-bottom: 30px;
  }
}
/* 電話・FAX */
.tels .maintitle {
  margin-bottom: 35px;
}
/*box*/
.telbox {
  background: #fff;
  padding: 30px;
}
@media (max-width:750px) {
  .telbox {
    margin-bottom: 10px;
  }
  .telbox:last-child {
    margin-bottom: 0;
  }
}
@media (max-width:550px) {
  .telbox {
    padding: 17px;
  }
}
/* 番号 */
.telbox a {
  font-size: 1.85rem;
  color: #333;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.telbox a i {
  font-size: 94%;
  color: #f74d07;
}
.telbox a:hover {
  opacity: 0.6;
}
.telbox a span {
  font-size: 60%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  top: -3px;
}
.telwrap {
  margin-top: 0 !important;
}
.telwrap p {
  margin-top: 5px;
  margin-bottom: 0;
}
@media (max-width:550px) {
  .telbox a {
    font-size: 1.55rem;
  }
}
/*fax*/
.telboxwrap {
  margin-top: 45px;
}
.telboxwrap .telbox a {
  margin-right: 40px;
}
.telboxwrap .telbox p {
  margin-bottom: 4px;
  font-size: 107%;
}
.telboxwrap .telbox {
  display: flex;
  align-items: center;
}
.fcheck {
  display: flex;
}
.fcheck li {
  padding-left: 18px;
  margin-right: 20px;
  position: relative;
}
.fcheck li:last-child {
  margin-right: 0;
}
.fcheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #f74d07;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media (max-width: 1165px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox a {
    margin-right: 0;
  }
  .telboxwrap .telbox p {
    margin-top: 7px;
  }
}
@media (max-width:550px) {
  .telboxwrap .telbox p, .fcheck li {
    font-size: 87%;
  }
}
@media (max-width: 500px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox p {
    margin-bottom: 7px;
  }
  .fcheck {
    display: block;
  }
  .fcheck li {
    margin-right: 0;
  }
}
/* メール */
.mnote {
  max-width: 905px;
  margin: auto;
  margin-top: 50px;
}
@media(max-width:550px) {
  .mnote {
    margin-top: 40px;
  }
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #333;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
  font-size: 97%;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #f74d07;
  padding: 6px 5px 5px;
  margin-right: 5px;
  font-size: 12px;
}
.mailsp {
  background: #fff !important;
  border: 1px solid #f74d07;
  color: #f74d07 !important;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform .box, .mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
}
.mailform button {
  display: block;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  width: 270px;
  padding: 23px 0;
  transition: .4s;
  border: 1px solid #f74d07;
  color: #f74d07;
  background: #fff;
}
.mailform button:hover {
  color: #fff;
  background: #f74d07;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mails {
  padding-bottom: 70px;
}
.mails .stitle {
  margin-bottom: 7px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
  display: none;
}
.mailform input[type=checkbox] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
  background: #fff;
  border: 1px solid #b5b5b5;
  content: '';
  display: block;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
  border-right: 3px solid #f74d07;
  border-bottom: 3px solid #f74d07;
  content: '';
  display: block;
  height: 13px;
  width: 7px;
  opacity: 0;
  position: absolute;
  top: 25%;
  left: 4px;
  transform: rotate(45deg);
  transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media (max-width: 550px) {
  .mailform input[type=checkbox] + label {
    display: block;
  }
}
@media (max-width: 800px) {
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .mails {
    padding-bottom: 45px;
  }
  .mailform button {
    width: 210px;
    padding: 15px 0;
  }
  .selection small {
    font-size: 0.8rem;
  }
}
/* 個人情報の取り扱いについて */
.privacy {
  padding-top: 0;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.accordion-title {
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: clamp(0.95rem, 0.325rem + 2vw, 1.45rem);
  padding: 15px 35px 15px 15px;
  transition: all .5s ease;
  background: #f74d07;
  color: #fff;
  line-height: 1.5;
}
.privacy .accordion-title {
  font-size: clamp(0.9rem, 0.275rem + 2vw, 1.4rem);
}
.privacy .accordion-title span {
  position: relative;
  padding-left: 27px;
  display: inline-block;
}
.privacy .accordion-title span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f023";
  font-weight: bold;
  margin-right: 10px;
  font-size: 80%;
  position: absolute;
  top: 0.15em;
  left: 0;
}
/*アイコンの＋と×*/
.privacy .accordion-title::before, .privacy .accordion-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.privacy .accordion-title::before {
  transform: rotate(0deg);
}
.privacy .accordion-title::after {
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.privacy .accordion-title.close::before {
  transform: rotate(45deg);
}
.privacy .accordion-title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion-text {
  display: none; /*はじめは非表示*/
  background: #fff;
  padding: 13px 25px;
  font-size: 95%;
}
.accordion-text span {
  font-size: 103%;
}
.accordion-text span::before {
  content: "■";
  display: inline-block;
  font-size: 80%;
  margin-right: 0.35em;
  transform: translateY(-1px);
  color: #f74d07;
}
@media (max-width: 550px) {
  .privacy .accordion-title::before, .privacy .accordion-title::after {
    width: 11px;
  }
  .privacy .accordion-title span {
    padding-left: 20px;
  }
  .accordion-text {
    padding: 13px;
    font-size: 90%;
  }
}