@charset "UTF-8";
body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #0B0F14;
  background-color: #fff;
  line-height: 1.75;
  overflow-x: hidden;
  letter-spacing: 0.5px;
}

a:link {
  color: #092A44;
}
a:visited {
  color: #092A44;
}
a:hover {
  color: #092A44;
}

a {
  color: #092A44;
  text-decoration: none;
  cursor: pointer;
}


figure {
  margin: 0;
  padding: 0;
}

img {
display: block; 
width:100%;
max-width: 100%;
height: auto;
}

ul {
  list-style: none;
}

li a {
  text-decoration: none;
}

h1,
h2,
h3,
h4{
  letter-spacing: 1px;
}




/*==================================================

commoon

====================================================*/

/* 背景なし ボタン */
:root{
  --btn-color:#092A44;
  --btn-color__r: #2EA6D9;
  --ico-d:20px;      /* 丸の直径 */
  --ico-gap:12px;    /* テキストと丸の距離 */
  --arr:6px;         /* くの字の一辺 */
  --bd:2px;          /* 線の太さ（丸＆くの字） */
  --nudge-x:-3px;    /* 視覚ズレ微調整（横） */
  --nudge-y:0px;     /* 視覚ズレ微調整（縦） */
}

.btn-base a{
  position: relative;
  display: inline-block;
  color: var(--btn-color);
  font-weight: 700;
  padding: 4px 10px;
   line-height: 1.5;
  /* 右に丸のスペースを常に確保 */
  padding-right: calc(var(--ico-d) + var(--ico-gap));
  border-bottom: 1px dashed var(--btn-color);
  transition:
    color 0.3s ease,
    border-bottom-color 0.3s ease;
}

/* 丸 */
.btn-base a::after{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  width:var(--ico-d);
  height:var(--ico-d);
  border-radius:50%;
  border: var(--bd) solid var(--btn-color);
  transform: translateY(-50%);
  z-index:1;

  /* 丸の線と塗りをふわっと */
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

/* くの字（丸の中心に固定） */
.btn-base a::before{
  content:"";
  position:absolute;
  top: calc(50% + var(--nudge-y));
  /* 丸の中心 = 100% - 直径/2 */
  left: calc(100% - (var(--ico-d) / 2) + var(--nudge-x));
  width:var(--arr);
  height:var(--arr);
  border-top: var(--bd) solid var(--btn-color);
  border-right: var(--bd) solid var(--btn-color);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index:2;

  /* くの字の線色もふわっと */
  transition: border-color 0.3s ease;
}

/* hover時の見た目変化 */
.btn-base a:hover {
  border-bottom: solid 2px #092A44;
}

.btn-base a:hover::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn-base a:hover::after {
  background: #092A44;
}

.btn-base__adj01{
  margin: 1em 0 0 auto;
  width: fit-content;
}

/* 背景あり ボタン */

.btn-cta__bg{
  max-width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  color: #2EA6D9;
  font-weight: 700;
  line-height: 1;
}

/* 点線（通常）→ 実線（hover） */
.btn-cta__text{
  display: inline-block;
  padding-bottom: 10px;
  padding: 8px;
  color: #2EA6D9;
  border-bottom: 2px dashed #2EA6D9;
  transition: border-bottom-style .2s ease, border-bottom-color .2s ease;
}

/* 右の丸 */
.btn-cta__icon{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #2EA6D9;
  position: relative;
  flex: 0 0 24px;
  margin-top: 4px;
  transition: background-color .2s ease, border-color .2s ease;
}

/* くの字（右向き矢印） */
.btn-cta__icon::before{
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  width:var(--arr);
  height:var(--arr);
  border-top: var(--bd) solid var(--btn-color__r);
  border-right: var(--bd) solid var(--btn-color__r);
  transform: translate(-55%,-50%) rotate(45deg);
  transition: border-color .2s ease;
}

/* hover*/
.btn-cta__bg:hover .btn-cta__text{
  border-bottom-style: solid;
}

.btn-cta__bg:hover .btn-cta__icon{
  background: #2EA6D9;
}

.btn-cta__bg:hover .btn-cta__icon::before{
  border-top-color: #fff;
  border-right-color: #fff;
}

/* キーボード操作の見やすさ（任意） */
.btn-cta:focus-visible{
  outline: 3px solid rgba(46,166,217,.35);
  outline-offset: 4px;
}



/* テキスト */
.text{
  margin-top: 1em;
}

.text:first-child{
  margin-top: 0;
}

/* 改行 */

.kaidanraku{
  white-space: pre-line;
}

.br-nlc{
  display: block;
}

.br-nlc02{
  display: none;
}



a.link-i {
  color: #2EA6D9;
  border-bottom: dashed 1px;
  padding: 2px;
}



/* ヘッダー
======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 100vh;
  z-index: 100;
 background-color: #E4F4F9;
  font-size: 13px;
}


.header-contact {
  text-align: center;
  margin: 25vh auto 0 auto;
}

.header-contact li,
.header-tel {
  display: block;
}

.header-contact li {
  position: relative;
  margin-bottom: 80px;
}

.header-contact li:first-child a:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/wp-content/uploads//tel-icon.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -30px;
  left: 47px;
}

.header-contact li:nth-child(2) a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 21px;
  background: url(/wp-content/uploads//header-contact.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -24px;
  left: 48px;
}

.header-contact li:nth-child(3) a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/wp-content/uploads//header-recruit.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -24px;
  left: 48px;
}

.header-contact li:last-child a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 21px;
  background: url(/wp-content/uploads//search-icon.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -24px;
  left: 48px;
}


.pagetop {
  width: fit-content;
  position: absolute;
  bottom: 2vh;
  left: 28px;
}

.pagetop li:first-child a {
  color: #092A44;
}

.pagetop li:last-child a {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  transform: rotate(-90deg);
  margin: 28px auto;
}

.pagetop li:last-child a::before,
.pagetop li:last-child a::after {
  position: absolute;
  top: 22px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}

.pagetop li:last-child a::before {
  width: 32px;
  height: 32px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #000;
}

.pagetop li:last-child a::after {
  left: 7px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.for-sp {
  display: none;
}

/* ham */
.header-ham__wrap{
  background-color: #2EA6D9;
  height: 120px;
  cursor: pointer;
  position: relative;
  z-index: 200;
}

.header-ham__wrap.clicked {
  background-color: #E3F4F9;
}

#header__ham {
  width: 52px;
  height: 38px;
  margin: 0 auto;
}

#header__ham {
  position: relative;
}

.header-ham__line {
  position: absolute;
  width: 52px;
  height: 2px;
  background-color: #fff;
  z-index: 150;
  transition: all 0.5s;
}

.line1 {
  top: 40px;
}
.line2 {
  top: 50px;
}

.line2::after {
  content: "MENU";
  position: absolute;
  top: 8px;
  left: 5px;
  font-size: 13px;
  color: #FFF;
}

.clicked .line1 {
  transform: rotate(45deg);
  top: 40px;
  background-color: #092A44;
}
.clicked .line2 {
  transform: rotate(-45deg);
  top: 40px;
  background-color: #092A44;
}

.clicked .line2::after {
  content: "CLOSE";
  transform: translateY(0) rotate(45deg);
  top: 20px;
  left: -25px;
  color: #092A44;
}

/* menu cover */
.header__wrap {
  width: 100%;
}



.header-nav__list02 {
  width: 100%;
  padding: 80px;
}

#header__nav02 {
  display: block;
  background: #E4F4F9;
  font-family: "Noto Sans JP", sans-serif;
}

.header__nav02 {
  position: fixed;
  top: -120%;
  right: auto;
  left: 120px;
  width: calc(100vw - 120px);
  height: 100vh;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  z-index: 9;
  overflow: auto;
}

.clicked .header__nav02 {
  top: 0;
}

.header02-logo {
  position: absolute;
  top: 25px;
  left: 16px;
}

/***　サイドメニュー　***/
.header-nav__list02 li {
  border-top: solid 2px #9EDCF2;
  position: relative;
  font-size: 18px;
}

.header-nav__list02 li a {
  display: block;
  padding: 20px 40px;
  transition: 0.3s;
}

.header-nav__list02 li a:hover{
  opacity: 0.8;
}

.header-tel:before {
  margin-left: 40px;
  margin-right: -10px;
}

/***　ハンバーガーメニュー　***/
.search-btn{
  display: none;
}

.child-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.child-menu li a {
  padding: 0.5em 3em;
  font-size: 16px;
  color: #2EA6D9;
}

/* 子メニューのリストは border を消す */
.child-menu li {
  border-top: none !important;
}

.child-menu li:last-child{
  padding-bottom: 1em;
}

.menu-parent-row{
  display: flex;
  align-items: stretch;
  position: relative;
}

.menu-parent-row .menu-parent{
  flex: 1;
  display: block;
  position: relative;
  z-index: 1;
}

.menu-parent-row .menu-toggle{
  position: relative;
  z-index: 9999;
}

/* トグルボタン */
.menu-toggle{
  flex: 0 0 60px;
  width: 60px;
  height: auto;              
  min-height: 64px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;/* かぶり対策 */
  pointer-events: auto;
}

/* ＋/−（疑似要素がクリックを邪魔しないように） */
.menu-toggle::before,
.menu-toggle::after{
  pointer-events: none;
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:16px;
  height:2px;
  background:#092A44;
  transform: translate(-50%,-50%);
  transition: .3s cubic-bezier(0.33,1,0.68,1);
}
.menu-toggle::before{
  transform: translate(-50%,-50%) rotate(90deg);
  opacity: 1;
}
.has-child02.open .menu-toggle::before{
  opacity: 0;
  transform: translate(-50%,-50%) rotate(0deg);
}

/* 開いているとき */
.has-child02.open .child-menu {
  max-height: 500px;
  opacity: 1;
}

/***　FVメニュー　***/
.header__nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  margin: 0;
}

.header-nav__list01,
.header-nav__list03 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  font-weight: bold;
  letter-spacing: 1.2px;
}

.header-nav__list01 {
  margin: 1em 2vw 0 0;
}

.header-nav__list01 a{
  transition: 0.3s ease;
}

.header-nav__list01 a:hover{
opacity: 0.5;
}

.header-nav__list03 {
  gap: 0;
  width: 400px;
  margin: 0 0 0 auto;
}

.header-nav__list03 li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  width: 200px;
  padding: 1em 0;
  text-align: center;
  transition: 0.3s ease;
}

.header-nav__list03 li a:hover{
  opacity: 0.8;
}


.header-nav__list03 li:first-child a {
   background: #092A44;
}

.header-nav__list03 li:first-child a::before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads//fv-recruit.png) no-repeat;
  background-size: contain;
}

.header-nav__list03 li:last-child a {
   background: #2EA6D9;
  position: relative;
}

.header-nav__list03 li:last-child a::before{
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(/wp-content/uploads//fv-contact.png) no-repeat;
  background-size: contain;
}

/* メニューのドロップダウン */
.brand-menu__fv {
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 1em;
  background: #fff;
  /* border: solid 1px #d9d9d9; */
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.has-child:hover > .brand-menu__fv {
  visibility: visible;
  opacity: 1;
}

.brand-menu__items li a {
  display: inline-block;
  padding-left: 0;
  padding-bottom: 0.5em;
  white-space: nowrap;
  color: #2EA6D9;
}

.has-child {
  position: relative;
}


.has-child:hover:after {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

/* 検索パネル */
.search-panel{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-110%);
  transition: transform .35s ease;
  z-index: 300; /* メニュー等より上に */
  background: #E4F4F9;
}

.search-panel.open{
  transform: translateY(0);
}

.search-panel__inner{
  padding: 20px;
}

.search-form{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.search-form input{
  width: 100%;
  height: 50px;
  padding: 0 12px;
  border: 1px solid #FFF;
  border-radius: 8px;
  background: #fff;
}

.search-form button{
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.search-close{
  background: transparent;
  font-size: 22px;
  line-height: 1;
}

/* ラベルを見えなくする（必要なら） */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

button.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: none;
}


.search-icon {
  width: 20px;   /* お好みで */
  height: 20px;
  display: block;
}


/* footer
======================================== */
.footer-wrap {
  width: calc(100vw - 120px);
  margin: 0 0 0 auto;
  padding: 40px;
 background:linear-gradient(315deg, rgba(46, 166, 217, 0.35) 0%, rgba(46, 166, 217, 0.35) 15%, #7ED6E8 45%, #E4F4F9 100%);
position: relative;
}

.footer-unit {
  display: flex;
  width: 1080px;
  margin: 0 auto;
  justify-content: space-around;
}

.footer-adress {
  margin: 24px 0;
}

a.footer-tel {
  position: relative;
  font-weight: bold;
  padding-left: 3em;
}

a.footer-tel::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  margin-right: 1em;
  position: absolute;
  left: 0;
}

a.footer-tel::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/wp-content/uploads//tel-icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 1px;
  left: 7px;
}

.footer-nav__unit {
  display: flex;
  gap: 40px;
  margin-top: 40px;  
}

.footer-nav__list li {
  font-size: 14px;
}



.footer-nav__list li {
  padding-bottom: 1.2em;
}

.footer-nav__list li:last-child {
  padding-bottom: 0;
}

.footer-nav__list02 li:not(:first-child) a {
  font-size: 13px;
}

.footer-nav__list02 li:not(:first-child) a::before {
  content: "ー";
padding-right: 4px;
}

.footer-nav__list li a{
  transition: 0.3s ease;
}

.footer-nav__list li a:hover{
  /* color: #2EA6D9; */
  opacity: 0.5;
}

.copyright {
  font-size: 14px;
  margin-top: 80px;
  position: absolute;
  bottom: 20px;
}

.footer-logo{
  color: #092A44;
  font-size: 24px;
  letter-spacing: 3px;
}


/* 誘導
======================================== */
.induce-sec{
  width: min(90%,1080px);
  margin: 80px auto;
}

.induce-sec__works {
  padding: 48px 0;
}

/* 施工事例 */
.induce-case__wrap{
  background-image: url(/wp-content/uploads//top-works__bg.jpg);
  padding: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: min(90%,1080px);
  border-radius: 10px;
  margin: 0 auto;
}

.btn-case__bg{
  padding: 1em;
  text-align: center;
  width: fit-content;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

.btn-base__case a::before {
  right: -18%;
}

.btn-base__case:hover a{
  border-bottom: solid 2px #092A44;
}

.btn-base__case:hover a::before{
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn-base__case:hover a::after{
  background: #092A44;
}

.induce-case__aligned{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.induce-case__img{
  max-width: 400px;
  border-radius: 10px;
}

/* リクルート */
.top-sec__recruit{
  background-image: url(/wp-content/uploads//induce-recruit.jpg);
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 0;
  border-radius: 20px;
}

.top-heading__recruit


.top-recruit__aligned{
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
}

.top-recruit__desc{
  margin: 1em 0;
  white-space: pre-line;
  text-align: center;
}

/* リクルート誘導ボタン */

.btn-base__saiyou{
  width: 300px;
}

.top-recruit__btn--unit{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
 margin-top: 48px;
}


/* contact */
.induce-contact__wrap {
  background: #2EA6D9;
  padding: 48px;
  margin: 0 auto;
  border-radius: 10px;
}

.top-heading__contact h2{
font-size: 38px;
color: #fff;
letter-spacing: 1px;
line-height: 1.2;
}

.top-heading__contact .top-heading__EN{
  color: #fff;
}

.induce-contact__line {
  display: block;
  width: 100%;
  border-bottom: solid 1px #fff;
  padding-top: 1em;
}

.induce-contact__unit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
}

.induce-contact__group {
  text-align: center;
  line-height: 1;
}

a.induce-tel {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.induce-tel__notes {
  display: block;
  color: #fff;
  margin-top: 10px;
}


/* お問い合わせ誘導ボタン */
.btn-cta__contact{
  width: 288px;
  margin-top: 4px;
}

.btn-cta__contact .btn-cta__text{
  color: #092A44;
  border-bottom: dashed 2px #092A44;
}

.btn-cta__contact .btn-cta__icon{
border-color: #092A44;
}

.btn-cta__contact .btn-cta__icon::before{
  border-color: #092A44;
}

.btn-cta__contact:hover .btn-cta__icon{
  background: #092A44;
}

/* page 
======================================== */
.pagetop-menu{
  position: relative;
}

.top-image{
  height: 400px;
  object-fit: cover;
}

.top-image__wrap{
position: relative;
}

.page-ttl__unit{
position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%,-50%);
  letter-spacing: 2px;
  text-align: center;
}

.page-ttl{
  font-size: 65px;
  color: #092A44;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}

.page-ttl__EN{
  font-size: 18px;
  color: #2EA6D9;
  font-weight: bold;
}

.page-sec__wrap{
  margin: 120px auto;
}

.page-sec__wrap02{
  margin: 180px auto;
  width: min(90%,900px);
}

.page-sec__wrap03{
  margin: 180px auto;
  width: min(90%,1080px);
}

.contents-wrap {
  margin-bottom: 120px;
}

.contents-wrap02{
  margin: 64px auto;
}


.text-wrap {
  margin: 40px auto;
}

/* 見出し */

.page-heading{
  font-size: 42px;
  font-weight: bold;
  position: relative;
  padding-left: 24px;
  letter-spacing: 2px;
  margin-bottom: 48px;
  font-feature-settings: "palt";
  line-height: 1.2;
}

.page-heading:before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #2EA6D9;
    border-radius: 5px 0 5px 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-subheading{
  font-size: 28px;
  color: #092A44;
  font-weight: bold;
  position: relative;
  margin-left: 1em;
  font-feature-settings: "palt";
  margin-bottom: 24px;
}

.page-subheading:before{
  content: '';
    display: block;
    position: absolute;
    top: 16px;
    left: -1em;
    width: 14px;
    height: 14px;
    background-color: #F1FDFA;
    border-radius: 50%;
    border: solid 4px #2EA6D9;
}

/* パンくずリスト */
.breadcrumbs {
  margin: 40px 0 80px 40px;
}

.breadcrumbs span{
	padding: 0 0.5em;
  font-size: 15px;
}

.page-top__desc{
  width: min(90%,1080px);
}

.page-desc__text{
  line-height: 2;
  letter-spacing: 1px;
  white-space: pre-line;
}

.page-desc__wrap .page-desc__text{
margin-bottom: 1.5em;
}


/*==================================================

top

====================================================*/

.top-heading__wrap{
  text-align: center;
  font-weight: bold;
}

.top-heading__EN {
  font-size: 18px;
  color: #2EA6D9;
  margin-left: 4px;
}

.top-heading {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  color: #092A44;
  font-feature-settings: "palt";
}

/* FV
======================================== */
.pagetop-wrap {
  width: calc(100% - 120px);
  margin: 0 0 0 auto;
}

.top-sec__wrap {
  width: min(90%,1080px);
  margin: 160px auto;
  position: relative;
}

.top-sec__fv {
  position: relative;
}

.top-logo {
  position: absolute;
  top: 18px;
  left: 3vw;
  z-index: 10;
  color: #092A44;
  font-size: 24px;
  letter-spacing: 3px;
}

/* video */

.video-inner { 
  position: relative;
  z-index:1; 
  overflow:hidden;
  width:calc(100vw - 120px);
  height:100vh;
  margin:0 0 0 auto; 
}

.hero-video  { 
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  object-position: center center;
}


/* copy */
.top-sec__fv,
.video-inner {
  position: relative;
}

.top-copy__wrap {
  padding: 1em;
  background: #FFF;
  width: fit-content;
  position: absolute;
  z-index: 10;
  bottom: 10dvh;
  left: 60px;
}

.top-copy {
font-size: clamp(26px, 4.2vw, 64px);
  font-weight: bold;
  letter-spacing: 2px;
  color: #2EA6D9;
}

.effect-fade01 {
  margin-top: 100px;
}

.effect-scroll01 {
  animation: img-opacity01 2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: absolute;
}

.effect-scroll01:before {
  animation: img-animation01 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #E4F4F9;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity01 {
  100% {
    opacity: 1;
  }
}
@keyframes img-animation01 {
  100% {
    transform: translateX(100%);
  }
}

/* intro
======================================== */
.top-sec__intro{
  margin-top: 120px;
}

.top-heading__intro{
  font-size: 28px;
  font-weight: bold;
  color: #2EA6D9;
  line-height: 1.2;
}

.intro-unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro-img {
  box-shadow: 24px 24px 0 #E4F4F9;
  width: 500px;
  margin-top: 20px;
  border-radius: 5px;
}

.intro-contents02 {
  width: calc(48% - 20px);
}

.intro-text {
  padding-top: 1em;
  line-height: 2em;
}


/* features
======================================== */
.top-sec__features{
  margin-top: calc(160px + 24px);
  margin-bottom: calc(160px + 48px);
}

.top-heading__features{
display: block;  
font-size: 18px;
}

.features-list{
  display: flex;
  justify-content: space-around;
  margin-top: 48px;
  flex-wrap: wrap;
}

.features-list li{
 position: relative;
 padding-top: 64px;
}

.features-list li::before {
 content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 330px;
  /* aspect-ratio: 1 / 1.4; */
  background-image: url("/wp-content/uploads//top-drop.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.features-subheading{
  font-size: 24px;
  font-weight: bold;
  color: #092A44;
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 2px;
}

.features-list li .text{
  width: 240px;
  line-height: 2;
  letter-spacing: 1px;
}

/* service
======================================== */

  .top-service__aligned{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 80px;
    margin-top: 40px;
  }

.top-service__unit{
  width: calc(50% - 40px);
}

.top-service__ttl{
  font-size: 32px;
  font-weight: bold;
  margin: 10px;
  color: #2EA6D9;
  letter-spacing: 1px;
}

.top-solution__wrap{
  background: #E4F4F9;
  border-radius: 5px; 
}

.top-solution__ttl{
  font-size: 18px;
  background-color: #2EA6D9;
  padding: 0.5em 12px;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-weight: bold;
}

.top-service__text{
  margin: 0 8px 1em 8px;
}

.top-service__text__adj{
  margin-bottom: 44px;
}

.top-solution__list{
  padding: 1em 2em 1em 3em;
  height: 180px;
}

.top-solution__list li{
  position: relative;
  padding-bottom: 0.5em;
}

.top-solution__list li::before{
  content: "";
  position: absolute;
  left: -16px;
  top: 11px;
  width: 8px;
  height: 8px;
  background-color: #2EA6D9;
  border-radius: 50%; /* 丸くする */
}

.top-service__img{
  border-radius: 5px;
}


/* 事例
======================================== */
.top-sec__works {
  padding: 48px 0;
}

.top-works__bg {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 420px;
  border-radius: 10px;
  background-image: url(/wp-content/uploads//top-works__bg.jpg);
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 0;
}

.top-heading__case{
  text-align: left;
  margin-left: 40px;
  margin-top: 1em;
}

.top-works__desc{
  margin-left: 40px;
  padding: 1em 0;
}

.btn-base__works {
  margin-left: 40px;
  margin-top: 48px;
}


/* slider */

.slider-wrap {
  position: relative;
}

/* ここでサイズ調整 */
.top-sec__works .slider {
	max-width: 450px;
width: 100%;
}

.slider-image{
  border-radius: 10px;
  width: 450px;
  height: 100%;
}

.page-slider {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 45%;
}

.page-slider .slider {
  overflow: visible; /* ドットのスライダーのはみ出しを許容する */
}

.page-slider .slider__item {
  height: 100%;
}

.page-slider .add-animation {
  animation: none;
}

/* スライダードット */
.custom-dots-area{
    height: 30px;
    width: 400px;
    position: absolute;
    top: 350px;
    left: 40px;
    z-index: 9999;
}
.slide-dots {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.slide-dots li {
  display: inline-block;
  margin: 10px;
}

.slide-dots li:first-child {
  margin-left: 0;
}

.slide-dots li button::before {
  content: "";
  cursor: pointer;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
}

.slide-dots li button {
  position: relative;
  text-indent: -9999px;
  background: #fff;
  border: none;
  outline: none;
  width: 60px;
  height: 6px;
  cursor: pointer;
}

.slide-dots li.slick-active button {
  background: #2EA6D9;
}



/* NEWS
======================================== */
.top-sec__news{
  padding: 80px ;
}

.top-heading__news {
   text-align: left;
}

.btn-base__news__top {
  margin-top: 40px;
}

.top-news__unit {
  display: flex;
  align-items: center;
  gap: 80px;
  width: fit-content;
  margin: 0 auto;
}

.top-sec__news .getPostDispArea {
  width: 700px;
}

.top-sec__news .getPost {
  padding: 2em 1em;
  border-bottom: solid 1px #999;
}

.top-sec__news .getPostTitle {
  position: relative;
  margin-top: 1em;
}

.top-sec__news .getPostTitle::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 13px;
  width: 6px;
  height: 6px;
  border-top: solid 2px #282828;
  border-right: solid 2px #282828;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.top-sec__news .getPostTitle::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 1;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #282828;
  transition: all 0.3s;
}

/* 日付（通常時） */
.top-sec__news .getPostStringArea__date {
  transition: color 0.3s ease;
}

/* タイトルリンク（通常時） */
.top-sec__news .getPostTitle a {
  transition: color 0.3s ease;
}

/* 矢印（通常時） */
.top-sec__news .getPostTitle::before {
  transition: border-color 0.3s ease;
}

/* 丸（通常時） */
.top-sec__news .getPostTitle::after {
  transition: border-color 0.3s ease;
}

/* hoverで文字色変更 */
.top-sec__news .getPostStringArea:hover .getPostStringArea__date,
.top-sec__news .getPostStringArea:hover .getPostTitle a {
  color: #2EA6D9;
}

/* hoverで疑似要素（矢印アイコン）も色変更 */
.top-sec__news .getPostStringArea:hover .getPostTitle::before,
.top-sec__news .getPostStringArea:hover .getPostTitle::after {
  border-color: #2EA6D9;
}
/*==================================================

サービス

====================================================*/
.service-wrap{
  margin-bottom: 120px;
}

/* 左：画像側 */
.top-service__aligned figure{
  flex: 0 1 540px;        /* 540pxを基準に縮めてOK */
  margin: 0;
  min-width: 0;
}

.service-img{
  width: 100%;            /* 親幅に合わせて縮む */
  max-width: 540px;       /* PCでは最大540px */
  height: auto;
  border-radius: 10px;
  display: block;
}


/* 右：テキスト＆ボタン側 */
.service-unit{
  flex: 1 1 480px;        /* 480pxを基準に縮めてOK */
  min-width: 0;           /* これが無いと縮まずに折れやすいです */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
}

/* 右カラム内の固定幅をやめて、親に追従させる */
.service-solution__wrap,
.btn-base__service{
  width: 100%;
  /* max-width: 480px; */
}


/* 2カラムの親 */
.top-service__aligned.service-aligned{
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: nowrap;      /* 折り返しさせない */
}

.service-solution__wrap .top-solution__list{
  height: auto;
  padding: 1em 1em 1em 2em; 
}



/* 事業案内ボタン */
.btn-cta__service{
  background-color: #092A44;
  padding: 10px;
}

.btn-cta__service .btn-cta__text{
  color: #fff;
  border-bottom: dashed 2px #fff;
}

.btn-cta__service .btn-cta__icon{
border-color: #fff;
}

.btn-cta__service .btn-cta__icon::before{
  border-color: #fff;
}

.btn-cta__service:hover .btn-cta__icon{
  background: #fff;
}

.btn-cta__service:hover .btn-cta__icon::before{
  border-top-color: #092A44;
  border-right-color: #092A44;
}





/* こんなお悩み、こんな依頼
======================================== */
.page-trouble__wrap{
  width: 1080px;
  margin: 0 auto;
}

.page-trouble__contents{
  width: calc(33.33% - 24px);
  max-width: 335px;
}

.page-trouble__rokaido{
  width: calc(50% - 24px);
  max-width: 390px;
}

.page-heading__trouble{
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 24px;
}

.page-trouble__aligned{
  display: flex;
  justify-content: space-between;
}

.page-trouble__aligned__adj{
flex-wrap: wrap;
justify-content: center;
gap: 48px;
}

.page-trouble__contents .heading{
  background-color: #2EA6D9;
  color: #fff;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

.page-trouble__contents .heading-adj__tank{
  padding: 1em 0;
}

.page-trouble__contents .arrow{
    position:relative;
    height:12px;
    width:16px;
    background-color:#092A44;
    transform: rotate(90deg);
    margin: 0.5em auto;
}
 
.page-trouble__contents .arrow::before {
    position:absolute;
    content:"";
    border:solid 16px transparent;
    border-left:solid 16px #092A44;
    top: -10px;
    left: 12px;
}

.trouble-solution__list{
  padding: 1em 0.5em;
  border: dashed 2px #2EA6D9;
  margin-top: 24px;
  height: 150px;
  border-radius: 5px;
}

.trouble-solution__list li{
  /* font-weight: bold; */
  padding-left: 12px;
  padding-bottom: 1em;
  position: relative;
  margin-left: 1.5em;
  line-height: 1.5;
}

.trouble-solution__list li:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 22px;
  background: url(/wp-content/uploads//mark-drop.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: -16px;
}

.trouble-solution__list li:last-child{
  padding-bottom: 0;
}

.page-request__wrap{
  background-color: #E4F4F9;
  margin: 80px auto;
  padding: 64px 0;
}

.page-request__aligned{
  display: flex;
  justify-content: center;
  gap: 40px;
}

.page-request__contents{
  background-color: #fff;
  box-shadow: 0 0 8px #999;
  padding: 2em;
  max-width: 420px;
  width: 45%;
  border-radius: 10px;
}

.page-request__contents .heading{
color: #092A44;
font-weight: bold;
font-size: 18px;
line-height: 1.5;
position: relative;
}

.page-request__contents .heading .HL{
  font-size: 28px;
  color: #2EA6D9;
}

.request-heading__unit{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.request-icon01{
  width: 53px;
  flex-shrink: 0;
}

.request-icon02{
  width: 65px;
}

.request-list{
  list-style: disc;
  width: fit-content;
  margin: 24px auto 0 auto;
   padding-left: 1em;
}

.request-list li{
  font-size: 18px;
  font-weight: bold;
  color: #092A44;
  padding-bottom: 1em;
  line-height: 1.5;
}

.request-list li:last-child{
  padding-bottom: 0;
}

.request-list02{
  display: flex;
  flex-wrap: wrap;
}

.request-list02 li:nth-child(3){
  width: 8em;
}

.request-line{
  border: none;
  border-top: 2px solid #2ea6d9;
  margin: 10px auto;
}

/*==================================================

ろ過・井水設備

====================================================*/

.rokasetsubi-aligned{
  display: flex;
  justify-content:  center;
  gap: 40px;
  /* margin: 24px 0; */
}

/* .rokasetsubi-text{
width: 62%;
} */

.rokasetsubi-img{
  width: 340px;
  object-fit: cover;
}


/* ろ過
======================================== */
.fukidashi-aligned{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

.fukidashi-unit .text{
  font-size: 20px;
  font-weight: bold;
  color: #092A44;
  margin-top: 0.5em;
}

.fukidashi-unit .text-fukidashi{
  font-size: 16px;
}

.fukidashi-person__img{
  width: 175px;
}

/* 井戸
======================================== */
.service-image__aligned{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 32px 48px;
  margin-top: 48px;
}

.ido-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-image__aligned .text{
  margin-top: 4px;
  text-align: center;
  font-size: 18px;
}


/*==================================================

電解設備

====================================================*/
.page-request__contents .denkai-heading{
  font-size: 28px;
  color: #2EA6D9;
}

.request-icon03{
  width: 80px;
}

.request-icon04{
  width: 56px;
}

.text-wrap__denkai{
  margin-top: 2em;
  width: fit-content;
}

.text-wrap__denkai .btn-base a{
  margin: 1em 0 0 auto;
}

/* メーカーボタン */
.btn-cta__denkai {
  margin: 24px 0 0 0;
  width: fit-content;
padding: 0.5em 1.5em 0.8em 1.5em;
background-color: #2EA6D9;
}

.btn-cta__denkai .btn-cta__text{
  color: #fff;
   border-bottom: dashed 2px #fff;
}

.btn-cta__denkai .btn-cta__icon{
border-color: #fff;
}

.btn-cta__denkai .btn-cta__icon::before{
  border-color: #fff;
}

.btn-cta__denkai:hover .btn-cta__icon{
  background: #fff;
}

.btn-cta__denkai:hover .btn-cta__icon::before{
  border-color: #2EA6D9;
}

.trouble-solution__list__denkai{
  height: 170px;
}

/*==================================================

貯水槽

====================================================*/
.water-tank__img{
  object-fit: cover;
}

/*==================================================

薬品

====================================================*/

.chemical-contents__aligned{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 48px; /* 画像同士の余白 */
margin-top: 48px;
}

.chemical-contents__aligned:first-of-type{
  margin-top: 0;
}

.chemical-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.chemical-ttl{
  font-size: 24px;
}

.chemical-unit{
 padding-left: 0.5em;
}

.chemical-sup{
  font-size: 16px;
}
.chemical-sup sub

.chemical-text{
  font-size: 18px;
  font-weight: bold;
  color: #092A44;
}

.chemical-list{
  margin-left: 2em;
  margin-top: 48px;
}

.chemical-list li{
  display: flex;
  align-items: baseline;
  gap: 0 1em;
  position: relative;
  margin-bottom: 1em;
flex-wrap: wrap;
}

.chemical-list li::before{
  content: "";
  position: absolute;
  left: -24px;
  top: 17px;
  width: 12px;
  height: 12px;
  background-color: #2EA6D9;
  border-radius: 50%; /* 丸くする */
}

.chemical-list .chemical-text{
  font-size: 16px;
}

.chemical-company{
  display: flex;
  align-items: flex-end;
  margin-bottom: 1em;
  gap: 2em;
}

.chemical-company dt{
  width: 185px;
  border-bottom: dashed 1px #092A44;
  padding: 2px 8px;
  font-weight: bold;
  transition: border-bottom-style .2s ease, border-bottom-color .2s ease;  
}

.chemical-company dt:hover{
border-bottom-style: solid;
opacity: 0.8;
}

.chemical-sup sub {
  font-size: 0.7em;
  vertical-align: baseline;
  position: relative;
  bottom: -0.2em;
}

/*==================================================

会社案内

====================================================*/
.company-gaiyou__unit{
  display: flex;
  align-items: center;
border-bottom: solid 1px #2EA6D9;
padding: 2em 4em;
}

.company-gaiyou__unit dt{
  width: 200px;
}

.company-enkaku__unit{
display: flex;
padding: 2em;
gap: 24px;
}

/* 奇数 */
.company-enkaku__unit:nth-of-type(odd) {
  background-color: #E4F4F9;
}

/* 偶数 */
.company-enkaku__unit:nth-of-type(even) {
  background-color: #fafafa;
}

.company-enkaku__unit dt{
  width: 200px;
}

/* 登録許可 */
.company-kyoka__unit{
  display: flex;
  align-items: center;
border-bottom: solid 1px #d9d9d9;
margin-bottom: 1em;
padding: 1em 2em;
}

.company-kyoka__unit dt{
  width: 300px;
}

.company-kyoka__unit dd{
  font-weight: bold;
}


.google-map{
    width: 1080px;
    height: 550px;
    margin: 56px auto 24px auto;
    text-align: center;
    display: block;
}

.company-adress{
font-size: 18px;
margin-left: 0.5em;
}

/*==================================================

採用情報

====================================================*/
.page-recruit__wrap{
  width: 1080px;
  margin: 40px auto;
}

.page-recruit__list{
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.page-sec__message{
background-color: #E4F4F9;
padding: 80px 0;
}

.page-recruit__inner{
  width: 1080px;
  margin: 0 auto;
}

.message-ttl{
  font-size: 32px;
  color: #092A44;
  font-weight: bold;
}

.president-name{
margin-left: 18px;
}

.message-wrap__aligned{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.message-wrap__aligned .text{
  line-height: 2;
  max-width: 627px;
}   

.president-img{
  width: 413px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* インタビュー */
.works-int__wrap{
  background-color: #fff;
  padding: 3em;
  margin-top: 48px;
  border-radius: 10px;
}

.works-int__wrap dt{
  font-size: 18px;
  color: #092A44;
  font-weight: bold;
  margin-bottom: 1em;
}

.gallery-wrap {
  display: grid;
  gap: 16px; /* 余白は自由に */
  margin-bottom: 20px;
}

/* 1段目（左小×右大） */
.gallery-wrap__aligned01 {
  grid-template-columns: 1fr 2fr;
  height: 468px;
}

/* 2段目（左大×右2枚） */
.gallery-wrap__aligned02 {
  grid-template-columns: 2fr 1fr 1fr;
  height: 265px;
}

/* 全画像共通：高さ揃えに必須 */
.gallery-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← これで高さ揃う */
  border-radius: 10px;
}

/*** 募集要項 ***/
.youkou-unit{
  width: min(90%,900px);;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 20px 20px;
  border-bottom: solid 1px #7ED6E8;
}

.youkou-unit:first-of-type{
  border-top: solid 1px #7ED6E8;
}

.youkou-unit dt{
  width: 25%;
  border-right: solid 1px #7ED6E8;
  padding: 8px 0;
  font-weight: bold;
  display: flex;
  align-items: center; 
}

.youkou-unit dd{
  margin-left: 20px;
  flex: 1;
}

.youkou-unit:nth-of-type(3) dt{
  align-items: flex-start;   /* dt を上揃え */
  padding-top: 8px;          /* 微調整（必要なら） */
}

.youkou-unit:nth-of-type(3) dd{
  margin-top: 8px;
  margin-left: 28px;
}

.youkou-list{
  margin-top: 1em;
}

.youkou-list li{
  position: relative;
  margin-bottom: 0.5em;
  text-indent: -1em;
  padding-left: 1em;
}



.youkou-list__mark li{
position: relative;
}

.youkou-list__mark li::before{
  content: "";
  position: absolute;
  left: -12px;
  top: 14px;
  width: 4px;
  height: 4px;
  background-color: #0B0F14;
  border-radius: 50%; /* 丸くする */
}

.youkou-list02{
  display: flex;
  gap: 0.25em 3em;
  flex-wrap: wrap;
  margin: 1em;
}

.youkou-hosoku{
  display: inline-block;
  margin-left: 1.5em;
  font-size: 14px;
}

.youkou-text{
  white-space: pre-line;
}

/*エントリーの誘導ボタン */

/* ボタンの箱 */
.btn-cta__recruit{
  background-color: #092A44;
  width: min(100%,900px);
  padding: 1em;
  margin: 40px auto;
  border-radius: 5px;
}

.btn-cta__recruit .btn-cta__text{
  color: #FFF;
  border-bottom: dashed 2px #FFF;
}

.btn-cta__recruit .btn-cta__icon{
border-color: #fff;
}

.btn-cta__recruit .btn-cta__icon::before{
  border-color: #fff;
}

.btn-cta__recruit:hover .btn-cta__icon{
  background: #fff;
}

.btn-cta__recruit:hover .btn-cta__icon::before{
  border-color: #092A44;
}


.recruit-part__wrap {
  background: #E4F4F9; 
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin: 96px auto;
  width: min(100%,900px);;
}

.recruit-part__ttl {
  font-size: 28px;
  color: #092A44;
  margin-bottom: 1em;
  letter-spacing: 2px;
}

.recruit-part__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1em;
}

.btn-base__recruit02{
  width: 300px;
  margin: 0 auto;
  padding: 0.5em;
  padding-bottom: 12px;
}


/*==================================================

お問い合わせ

====================================================*/
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[valu="url"],
textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 16px;
	 font-family: YuGothic, 游ゴシック, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
	padding-left:10px;
	padding-right:10px;
}

select{
	border-radius: 0;
  font-size: 16px;
	 font-family: YuGothic, 游ゴシック, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
}


textarea::placeholder {
 font-family: YuGothic, 游ゴシック, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
    color: #afafaf;
}

input::placeholder {
 font-family: YuGothic, 游ゴシック, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
    color: #afafaf;
}

      /* お問い合わせフロー */

      .contact-flow {
        display: flex;
        gap: 24px;
        justify-content: center;
        margin-bottom: 80px;
      }

      .contact-flow__item {
        width: 80px;
        height: 80px;
        line-height: 74px;
        text-align: center;
        border-radius: 50%;
        background: #7ED6E8;
        border: #2EA6D9 solid 4px;
        font-weight: bold;
        color: #fff;
      }

      .contact-flow .current {
        background: #2EA6D9;
        /* color: #092A44; */
      }

      .contact-flow__line {
        width: 40px;
        height: 4px;
        margin-top: 40px;
        background: #2EA6D9;
      }

      /* フォーム */
      .contact-text__wrap{
        margin: 40px 0;
      }

      .contact-tel__wrap{
        margin: 24px 0;
        padding: 24px 80px;
        background-color: #E4F4F9;
        width: fit-content;
      }

      .contact-tel_number{
        font-size: 32px;
        font-weight: bold;
        color: #092A44;
      }

      .contact-tel__h{
        text-align: center;
      }

      .contact-text{
        white-space: pre-line;
      }


      form {
        margin: 40px auto;
      }

      .contact-text {
        margin-top: 40px;
      }

      .form-wrap {
        margin: 40px 0;
        border-top: solid #d9d9d9 2px;
        border-right: solid #d9d9d9 2px;
        border-left: solid #d9d9d9 2px;
      }

      .form-box {
        display: flex;
        align-items: stretch;
        border-bottom: solid #d9d9d9 2px;
        border-right: solid #d9d9d9 2px;
        border-left: solid #d9d9d9 2px;
      }

      .form-box:first-of-type{
        border-top: solid #d9d9d9 2px;
      }

      .radiobtn {
        margin-right: 2em;
      }

      form .must::after {
        content: "必須";
        display: inline-block;
        font-size: 12px;
        color: red;
        padding: 0 2px;
        margin-left: 1em;
        font-weight: normal;
      }

      /* .form-box dt {
        width: 45%;
        margin-right: 48px;
        height: 120px;
        background-color: #E4F4F9;
        padding-top: 45px;
        padding-left: 1em;
        color: #092A44;
        font-weight: bold;
      } */

      .form-box dt{
  width: 45%;
  margin-right: 48px;
  background-color: #E4F4F9;
  color: #092A44;
  font-weight: bold;
  /* いったん固定をやめる */
  height: auto;
  padding: 0 16px;          /* 上paddingは使わない */
  display: flex;
  align-items: center;       /* 文字を縦中央 */
  /* これが効きます */
  align-self: stretch;       /* 念のため：行いっぱいに伸ばす */
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

      .form-box dd {
        width: 100%;
        padding: 24px 0;
        margin-right: 48px;
      }

      .form-box02 dd{
        margin-right: 0;
      }



      input {
        outline: none;
      }

      .form-input {
        box-sizing: border-box;
        border: solid 1px #999;
        width: 100%;
        background: #fff;
        height: 3em;
        padding-left: 0.5em;
      }

      .form-select {
        box-sizing: border-box;
         border: solid 1px #999;
        width: 90%;
        background: #fff;
        height: 3.2em;
      }

      select > option:first-of-type {
        color: #999;
      }

      .form-box__select dd {
        position: relative;
      }

      .form-box__select dd:after {
        content: "";
        position: absolute;
        right: 13%;
        top: 20px;
        width: 8px;
        height: 8px;
        border-top: 2px solid #999;
        border-left: 2px solid #999;
        transform: translateY(-50%) rotate(-135deg);
        font-size: 20px;
        pointer-events: none;
      }

      select {
        position: relative;
        padding: 10px;
        width: 100%;
      }

      #form-comment {
        width: 45%;
        height: 280px;
        background-color: #E4F4F9;
      }

      .comment {
        width: 100%;
        height: 200px;
        padding: 0.5em;
         border: solid 1px #999;
      }

      .rest-text__contact{
        font-size:14px;    
        color: #afafaf;
        margin-left: 0.5em;
        width: fit-content;
  }

      /* プライバシーポリシーに同意 */
      .agree-unit {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .agree-link {
        width: fit-content;
        font-size: 14px;
        border-bottom: solid 1px;
        margin: 0.5em auto;
      }

      .agree-link a:hover {
        opacity: 0.8;
      }

      #agree {
        width: 20px;
        height: 20px;
        margin-right: 8px;
      }

      /* 確認ボタン */
      .form-btn__wrap {
        margin-top: 40px;
        text-align: center;
      }

      .confirm-btn {
        width: 280px;
        height: 50px;
        border: 0;
        background-color: #282828;
        color: #fff;
        transition: 0.3s;
      }

      .confirm-btn:hover {
        opacity: 0.7;
      }

      /* 戻る・送信ボタン */

      .form-btn02__wrap {
        display: flex;
        justify-content: space-between;
        margin: 40px auto;
        width: 280px;
        height: 50px;
      }

      .back-btn {
        border: solid 1px#282828;
        width: 50px;
        background: #fff;
        transition: 0.3s;
      }

      .submit-btn {
        width: 200px;
        border: 0;
        background-color: #282828;
        color: #fff;
        transition: 0.3s;
      }

      .back-btn:hover,
      .submit-btn:hover {
        opacity: 0.7;
      }

      .to-top {
        display: block;
        margin: 40px 0;
      }

      .to-top::after {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 4px;
        border-left: 4px solid #000;
        border-bottom: 4px solid #000;
        transform: rotate(230deg);
      }

      .to-top:hover::after,
      .to-top:hover {
        opacity: 0.7;
      }

/*==================================================

採用フォーム

====================================================*/
.entry-text{
  margin-top: 80px;
  white-space: pre-line;
}

.works-data__wrap{
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 4px;
}

.form-input--small {
  width: 80px;
  display: inline-block;
}

.unit {
  margin-right: 8px;
}

/* ご質問など用に少し高さを下げたtextarea */
.textarea-sub {
  width: 90%;
  height: 140px;
  padding: 0.5em;
  box-sizing: border-box;
}

.form-btn02__wrap {
  margin-top: 24px;
  text-align: center;
}

.back-btn,
.submit-btn {
  width: 180px;
  height: 46px;
  border: 0;
  margin: 0 8px;
  cursor: pointer;
}

.back-btn {
  background-color: #ccc;
  color: #333;
}

.submit-btn {
  background-color: #282828;
  color: #fff;
}

.back-btn:hover,
.submit-btn:hover {
  opacity: 0.7;
}

/* .form-box__address dt,
.form-box__gakureki dt{
  height: 160px;
  padding-top: 64px;
} */

.address-unit .form-input:first-child{
margin-bottom: 12px;
}

.gakureki-unit .form-input:first-child{
margin-bottom: 12px;
}

.works-data__wrap .form-input {
width: 186px;
}

.form-box02{
  display: flex;
}

.form-box dd dl.form-box02 dt {
  background-color: #fff;
  /* padding: 10px 0 0 0; */
  width: 28%;
  font-weight: normal;
}

/* .form-box dd dl.form-box02 dd{
width: 538px;
} */



.works-data__wrap{
  display: flex;
align-items: center;
flex-wrap: wrap;
gap: 4px;
}

.works-data__wrap .form-input{
  width: 100px;
}

/* .form-box__working dt{
height: 450px;
padding-top: 202px;
} */

/* .employment-status,
.working-inner {
  margin-top: 16px;
} */

.form-box__gakureki .works-data__wrap .form-input{
width: 280px;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
}

input[type="radio"] {
  margin: 0 6px;
}

/*==================================================

お知らせ

====================================================*/
.info-sec__wrap{
  display: grid;
  grid-template-columns: 1fr 200px;
  margin: 0 auto;
  justify-content: space-around;
  width: 90%;
  max-width: 1280px;
}

 /* サイドバー
      ======================================== */
      .sidebar {
        width: 100%;
      }

      .recent-wrap,
      .cat-wrap {
        margin-bottom: 32px;
      }

      .recent-wrap::before {
        content: "recent";
        background: #d9d9d9;
        padding: 0.5em;
        display: block;
        width: 100%;
      }

      .recent-wrap > .recent-contents:first-of-type {
        padding-top: 24px;
      }

      .recent-contents {
        border-bottom: solid 1px #999;
        padding: 0.5em 0 1em 1em;
      }

      .recent-date {
        display: flex;
        align-items: center;
        gap: 1em;
      }

      .recent-contents .post-categories {
        width: fit-content;
      }

      .recent-contents .post-categories li a {
        color: #007bbb;
        font-size: 12px;
      }

      .cat-list {
        flex-direction: column;
        gap: 24px;
      }

      .cat-all a {
        margin-top: 2em;
      }

      .cat-all a,
      .cat-list li a {
        display: inline-block;
        margin-bottom: 1em;
        padding: 8px 16px;
        background-color: #2EA6D9;
        border-radius: 10px;
        color: #fff;
      }

      .cat-all a:hover,
      .cat-list a:hover {
        opacity: 0.5;
        transition: 0.3s;
      }

      .sidebar-date__time {
        font-size: 13px;
      }

      /* 投稿一覧
      ======================================== */
.postlist-contents{
  width: 90%;
  max-width: 1080px;
  padding: 2em;
  border-bottom: solid 1px #d9d9d9;
  /* ここがポイント */
  display: grid;
  gap: 24px;
  /* 240px以上なら2カラム、足りなければ自動で1カラム */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* 画像リンク（1つ目の要素）をカード幅いっぱいに */
.postlist-contents > a{
  display: block;
}

/* imgは「枠いっぱいに固定」 */
.postlist-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* テキスト側（2つ目の要素） */
.postlist-group{
  min-width: 0; /* 長い文字でレイアウト崩れ防止 */
}
      .postlist-date {
        display: flex;
        align-items: center;
        gap: 1em;
        margin-top: 0.5em;
      }

      .post-time {
        font-size: 14px;
      }

      .postlist-date .post-categories {
        display: flex;
        gap: 0.5em;
      }

      .postlist-date .post-categories li {
        padding: 0.5em;
        font-size: 14px;
        color: #2EA6D9;
      }

      .postlist-ttl {
        font-size: clamp(18px, 1.5625vw, 20px);
        font-weight: bold;
        line-height: 1.3;
      }

      

      /* ページネーション
  ======================================== */

      .nav-links {
        margin-top: 40px;
        font-weight: bold;
      }

      .page-numbers {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .page-numbers li {
        display: inline-block;
        margin: 0 8px;
        padding: 6px;
        width: 40px;
        height: 40px;
        text-align: center;
        position: relative;
      }

      .page-numbers li a:hover,
      .page-numbers li a.active {
        opacity: 0.5;
      }

/*==================================================
記事投稿
====================================================*/
      .post-date {
        display: flex;
        align-items: center;
        gap: 1em;
        margin-left: 0.5em;
      }

      .post-time,
      .postlist-youyaku {
        font-size: 14px;
      }

      .post-categories li {
        padding: 0.5em;
        color: #2EA6D9;
        font-weight: bold;
      }

      .article-ttl {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 0.5em;
        font-weight: bold;
        color: #092A44;
      }

      .article-wrap {
        background-color: rgba(228,244,249,0.5);
        padding: 4em 3em;
        width: 90%;
        max-width: 1080px;
        border-radius: 10px;
      }

      .article-text .text {
        margin-top: 2.5em;
      }

      .article-text > .text:first-of-type {
        margin-top: 4em;
      }

      .article-imgf {
        margin: 24px auto;
        text-align: center;
      }

      .article-imgf img {
        object-fit: cover;
        height: 52vh;
      }
      /* シェアボタン
      ======================================== */

      .sns-share__wrap {
        display: flex;
        justify-content: space-between;
        width: 340px;
        margin: 3em auto 0 auto;
      }

      .sns-img {
        width: 25px;
      }

      .sns-share__wrap li {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25%;
        width: 45px;
        height: 45px;
      }

      .sns-share__x {
        background-color: #000;
      }

      .sns-share__fb {
        background-color: #35629a;
      }

      .sns-share__line {
        background-color: #00b903;
      }

      .sns-share__hateb {
        background-color: #00a4de;
      }

      /* ページネーション
======================================== */
      .pagena {
        display: flex;
        justify-content: space-between;
        width: 340px;
        margin: 80px auto 0 auto;
      }

      .pagena-prew a,
      .pagena-list,
      .pagena-next a {
        display: block;
        background-color: #092A44;
        padding: 0.5em 1em;
        color: #fff;
      }

      a.pagena-list {
        color: #fff;
      }

      /* 関連記事 */

      .article-r__list {
        display: flex;
        justify-content: space-between;
      }

      .article-r__list li {
        width: calc(33.33% - 20px);
      }

      .article-r__ttl {
        margin-top: 0.5em;
        margin-left: 0.5em;
        line-height: 1.3;
      }

      .article-r__date {
        display: flex;
        align-items: center;
        gap: 1em;
        margin-left: 0.5em;
      }

      .article-r__cat {
        font-size: 13px;
        padding: 0.25em;
        border: solid 1px;
        letter-spacing: 0;
        line-height: 1;
      }

      .article-r__wrap {
        margin-top: 80px;
      }
/*==================================================

事例一覧

====================================================*/
 .case-list__inner .postlist-contents{
  padding-right: 1em;
 }

.case-list__img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/*==================================================

事例投稿

====================================================*/
.case-unit{
  margin-top: 40px;
}

.case-unit .case-text{
  margin: 4px;
  font-size: 18px;
}

.case-img{
  width:  400px;
  object-fit: cover;     /* 枠いっぱいにトリミング */
  display: block;
}

/*==================================================

プライバシーポリシー

====================================================*/
.privacy-wrap {
  margin: 64px 0;
}

.privacy-wrap h2 {
  font-size: 20px;
  margin-bottom: 0.5em;
}

.privacy-wrap h3 {
  margin-top: 1em;
}

.privacy-unit {
  display: flex;
  align-items: center;
  gap: 2em;
  font-weight: 400;
}

 .privacy-adj{
  margin-top: 0;
 }

/*==================================================

検索結果

====================================================*/
.search-wrap{
  margin: 80px auto;
}

.search-result{
  font-size: 24px;
  font-weight: bold;
  color: #092A44;
  margin: 40px -0.5em;
}

.search-result__unit{
  margin-bottom: 40px;
}

.search-result__unit:last-of-type{
  margin-bottom: 0;
}

.search-result__unit  .search-ttl{
  font-size: 20px;
  color: #092A44;
  border-bottom: solid 1px #092A44;
  line-height: 1.5;
  width: fit-content;
}

a.search-link{
  display: inline-block;
  color: #2EA6D9;
  border-bottom: solid 1px #2EA6D9;
  line-height: 1.5;
  width: fit-content;
  font-size: 14px;
  margin: 0.5em 0;
}

.search-result__unit .search-text{
  font-size: 14px;
}


/*==================================================

tablet 1279px

====================================================*/

@media screen and (max-width: 1279px) {
  /* .top-copy {
    font-size: 5.647vw;
  } */

  /* .top-copy__wrap {
    left: 6%;
  } */

  .top-sec__wrap {
    width: 90%;
  }

  .top-sec__intro{
    margin-top: 80px;
  }

  .intro-unit {
    flex-direction: column;
    align-items: center;
  }

  .intro-img {
    width: 100%;
  }

  .intro-contents02 {
    width: 100%;
    margin-top: 40px;
  }

  .top-heading__intro {
    margin-left: 16px;
  }

  .top-heading__en__intro {
    top: 2.5em;
  }

  .strength-wrap {
    width: 100%;
    padding: 1em;
  }

  .top-works__unit{
  width: 40%;
}

  .top-heading__news{
    text-align: center;
  }

  .top-news__unit {
    flex-direction: column;
    width: 100%;
    gap: 48px;
  }

  .btn-base__news__top {
    margin-top: 0;
    position: absolute;
    right: 10%;
  }

  .top-heading__en__news {
    left: -1.5em;
  }
  
  .top-sec__recruit{
    padding: 40px;
  }

  .induce-contact__wrap {
    width: 100%;
  }

  .induce-contact__unit {
    flex-wrap: wrap;
    margin-top: 1em;
    row-gap: 24px;
  }

  .top-heading__en__contact {
    top: 1.5em;
  }

  .btn-base__bg {
    margin-top: 1em;
  }

  .footer-unit {
    width: 100%;
  }

/* 事業案内 （各ページ含む）
======================================== */  
.service-unit{
flex: 0 0 420px;
height: 240px;
gap: 24px;
}

.page-trouble__wrap{
  width: 95%;
}


/* 会社案内
======================================== */  

.google-map{
  width: 100%;
}


  /* 採用情報
======================================== */
.page-recruit__wrap,
.page-recruit__inner{
  width: 90%;
}

.message-wrap__aligned{
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 1em;
}

.message-wrap__aligned .text{
  flex: 1 1 60%;
  line-height: 2;
}

.president-img{
  width: clamp(260px, 35vw, 413px);
  border-radius: 10px;
  flex-shrink: 0;
}

  /* お知らせ
======================================== */
.postlist-date{
  display: block;
}

.post-categories li,
.postlist-date .post-categories li{
  padding: 0;
}

.postlist-ttl{
  margin-top: 0.5em;
}

  /* end   */
}
/*==================================================

tablet 1180px

====================================================*/

@media screen and (max-width: 1180px) {
.page-trouble__aligned__rwd .heading {
height: 88px;
padding-top: 24px;
}

.trouble-solution__list__denkai{
  height: 220px;
}

  /* end   */
}

/*==================================================

sp 839px

====================================================*/

@media screen and (max-width: 839px) {
  .br-nlc02{
  display: block;
}

/* .top-sec__wrap{
  margin: 100px;
} */

.page-sec__wrap02{
  margin: 80px auto;
}

.page-sec__wrap03{
  margin: 80px auto;
}

.contents-wrap{
  margin-bottom: 64px;
}

.page-ttl{
  /* 370px→32px、839px→48px で可変 */
  font-size: clamp(32px, calc(32px + (16 * (100vw - 370px) / 469)), 48px);
}

.top-heading{
  font-size: 32px;
  margin-bottom: 0;
}
.page-heading{
  font-size: 32px;
  margin-bottom: 24px;
}

.page-heading__trouble{
  font-size: 18px;
}

.page-subheading{
  font-size: 20px;
  margin-bottom: 12px;
}

.page-subheading:before{
  width: 10px;
  height: 10px;
  top: 10px;
  left: -24px;
}

.top-image{
  height: 280px;
}

  /* header */
  .top-logo {
    font-size: 18px;
  }

  .header {
    width: 62px;
    height: 62px;
    left: auto;
    right: 0;
    position: fixed;
  }

  .header-ham__wrap{
    height: 70px;
  }


  .header-induce,
  .header__nav {
    display: none;
  }

  .pagetop-wrap,
  .header__nav02,
  .slider,
  .footer-wrap {
    width: 100%;
    margin: 0;
  }


  /* ハンバーガーメニュー本体：左ズレをリセット */
  .header__nav02{
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 80px;
  }

  /* オーバーレイ：左ズレをリセット */
  .header__wrap.clicked .header02-cover{
    left: 0;
    width: 100%;
  }

  .header-ham__line{
    width: 40px;
  }

  .line1 {
    top: 20px;
    left: 6px;
  }

  .line2 {
    top: 30px;
    left: 6px;
  }

  .line2::after{
    left: 1px;
  }

  .header-nav__list02 {
    padding: 2% 10%;
  }

  .clicked .line1,
  .clicked .line2{
    background-color: #092A44;
  }

  .clicked .line2::after{
    color: #092A44;
  }

  .clicked .line1,
  .clicked .line2{
    top: 24px;
  }

  .clicked .line2::after{
    top: 10px;
    left: -21px;
  }

  .header-nav__list02 li a{
    padding: 1em;
  }

  /* メニュー右上の検索ボタン */
/* 右上配置（スマホメニュー内の検索ボタン） */
.header__nav02 .search-btn{
  position: absolute;
  top: 12px;
  right: 80px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  z-index: 12;
}
.header__nav02 .search-btn img{
  width: 20px;
  height: 20px;
  display: block;
}


/* パンくずリスト */
  .breadcrumbs{
    margin: 1em 0.5em;
  }

  .breadcrumbs span{
    font-size: 12px;
  }

/* トップページ
======================================== */    
  /* fv */
  
  .video-inner{
    width: 100%;
    margin: 0; /* 念のため */
  }

  .top-copy__wrap {
    bottom: 20dvh;
    left: 2%;
  }

  /* intro  */
  .top-heading__intro{
    font-size: 19px;
    margin-left: 0;
  }

  .intro-img {
    width: calc(100% - 24px);
  }

  .btn-base__intro {
    margin: 40px 0 0 0;
  }

  .top-heading__en__intro {
    top: 6em;
  }

  .video-inner {
    width: 100vw;
  }

  /* features */
  .features-list{
    flex-direction: column;
    align-items: center;
    row-gap: 120px;
  }


  /* service */
  .top-service__ttl{
    font-size: 28px;
  }
  
  .top-service__aligned{
flex-direction: column;
width: 100%;
margin-top: 24px;
  }

  .top-service__unit{
    width: 100%;
  }

  .top-solution__list{
    height: auto;
    padding-left: 2em;
  }

  .top-service__text__adj{
    margin-bottom: 1em;
  }

  /* works */  
  .top-sec__works {
    padding: 40px 0;
  }

  .top-heading__en__works {
    top: 1.25em;
  }

  .top-works__bg {
    height: 758px;
  }

  .top-works__unit {
    width: 90%;
    margin: 0 auto;
  }

  .page-slider {
    position: static;
    width: 80%;
    margin: 50px auto 0 auto;
  }

  .top-sec__works .slider {
    width: 90%;
    margin: 0 auto;
  }


  .slick-dotted.slick-slider {
    margin-bottom: 12px;
  }


  .slide-dots {
    left: 32%;
    top: -24%;
  }

  .slide-dots li button {
    width: 48px;
  }

  .custom-dots-area{
    width: 100%;
    position: static;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .slide-dots{
    justify-content: center;
    flex-wrap: wrap;
  }

  .slide-dots li{
    margin: 6px;
  }


  /* news */
.top-sec__news{
  padding: 0 1em;
}

.top-sec__news .getPostDispArea{
  width: 100%;
}
  .top-heading__en__news {
    left: -1.2em;
  }

  .top-sec__news .getPostTitle {
    padding-right: 3em;
  }

  .btn-base__news__top{
    margin-top: 24px;
  }

  /* contact */

  .top-sec__contact {
    margin-top: 120px;
  }

  .induce-contact__wrap {
    padding: 24px;
  }

  .top-heading__en__contact {
    right: -2em;
  }

  .btn-base__bg {
    width: 100%;
  }

  .btn-base__contact a {
    padding: 0;
    margin: 0 auto;
    font-size: 14px;
  }

  .btn-base__contact a::before {
left: 115%;
  }

  .btn-base__contact a::after {
left: 108%;
  } 

  .top-heading__contact h2{
    font-size: 24px;
  }

  a.induce-tel{
    font-size: 24px;
  }

  .top-recruit__btn{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 0;
  }

  /* footer */

  .footer-wrap {
    padding: 1em 1em 4em 1em;
  }

  .footer-unit {
    flex-direction: column;
  }

  .footer-nav__unit{
    flex-wrap: wrap;
    row-gap: 1em;
    margin-bottom: 24px;
  }

  .footer-adress,
  .footer-nav__list {
    font-size: 14px;
  }

  /* footer btn */

  #pagetop01 {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 0;
    margin: 10px;
  }

  #pagetop01 a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: #092A44;
    transition: opacity 0.6s ease;
    border-radius: 50%;
  }


  #pagetop01 a:hover {
    opacity: 0.8;
  }
  #pagetop01 a::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    margin: auto;
    content: "";
    transform: rotate(-45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }

/* 事業案内 （各ページ含む）
======================================== */
.top-service__aligned.service-aligned{
  gap: 0;
}
.top-service__aligned figure{
  flex: auto;
}

.service-img{
  max-width: 100%;
}

.service-wrap{
  margin-bottom: 80px;
}

.service-unit{
  height: 0;
  flex: 0;
}

.service-unit,
.service-aligned{
  display: block;
  min-width: 100%;
  margin-top: 24px;
  gap: 0;
}

.service-solution__wrap, 
.btn-base__service{
  max-width: 100%;
}

.page-trouble__aligned{
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.page-trouble__contents,
.page-trouble__rokaido{
  width: 100%;
  max-width: 100%;
}

.trouble-solution__list,
.page-trouble__aligned__rwd .heading{
  height: auto;
}

.page-request__aligned{
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.page-request__contents{
  width: 100%;
}

.fukidashi-unit .text{
  font-size: 16px;
}

.fukidashi-person__img{
  width: 90px;
}

.rokasetsubi-aligned{
  flex-direction: column;
}

.service-image__aligned{
display: flex;
flex-direction: column;
gap: 24px;
}

.service-image__aligned li{
  max-width: 400px;
  width: 100%;
}

.chemical-contents__aligned{
  display: flex;
  flex-direction: column;
}

.chemical-ttl{
  font-size: 20px;
}

.chemical-sup {
  font-size: 14px;
}

.chemical-company{
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}

/* 事例誘導 */

.induce-case__wrap{
  padding: 24px;
}

.induce-case__aligned{
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.induce-case__imgf{
  width: 320px;
  margin: 0 auto;
}

.induce-case__img{
  width: min(100%, 320px);
}


.top-heading__case{
  margin-left: 0;
}

.btn-base__case a {
    padding: 0;
    margin: 0 auto;
    font-size: 14px;
  }

  .btn-base__case a::before {
left: 110%;
  }

  .btn-base__case a::after {
left: 105%;
  }

  /* 会社案内
======================================== */  
.company-gaiyou__unit,
.company-enkaku__unit{
  padding: 1em;
  gap: 1em;
}

.company-gaiyou__unit dt {
  width: 6em;
}

.company-gaiyou__unit dd{
width: calc(100% - 6em);
}

.company-enkaku__unit dt{
  width: 7em;
  font-feature-settings: "palt";
}

.company-enkaku__unit dd{
width: calc(100% - 7em);
}

.company-enkaku__unit:first-of-type dt{
  width:  1em;
}

.company-enkaku__unit:first-of-type dd{
  width: 235px;
}

.company-kyoka__unit{
  flex-direction: column;
  align-items: baseline;
  gap: 1em;
}

  /* 採用情報
======================================== */

.page-recruit__list{
  flex-direction: column;
  margin-top: 1em;
  gap: 1em;
}

.message-wrap__aligned{
  flex-direction: column;
  align-items: flex-start;
}

.message-ttl{
  font-size: 24px;
  line-height: 1.5;
}

.president-img{
  min-width: 300px;
}

.works-int__wrap{
  padding: 2em 1em;
  margin-top: 24px;
}

.works-int__wrap dt {
  font-size: 16px;
}

.gallery-wrap__aligned01 {
  height: auto;
}

.gallery-wrap__aligned02{
  display: flex;
  flex-direction: column;
  height: auto;
}

.youkou-unit {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0 10px 10px;
}

.youkou-unit dt{
  width: 100%;
  border-right: none;
}

.youkou-unit dd{
  margin-left: 0;
}

.youkou-unit:nth-of-type(3) dd,
.youkou-hosoku{
  margin-left: 0;
}

.recruit-part__ttl{
  font-size: 20px;
}

.recruit-part__wrap{
  margin: 64px auto;
  padding: 24px;
}

  /* お問い合わせ・エントリー
======================================== */
.contact-flow__item{
  width: 50px;
  height: 50px;
  line-height: 42px;
  font-size: 14px;
}

.contact-flow__line{
  margin-top: 24px;
}

.contact-tel__wrap{
  padding: 2em;
}

.contact-tel_number{
  font-size: 28px;
}

.form-box{
  flex-direction: column;
}

.form-box dt{
  width: 100%;
  margin-right: 0;
  height: auto;
  padding: 1em;
}

  .form-box dd{
    width: 100%;
    height: auto;
    padding: 12px 0;
    margin: 0;
    text-align: center;
  }

.form-box:last-child dd{
  height: 260px;
}

.form-input{
  margin: 1em;
  width: 90%;
}

.comment{
  margin: 1em 1em 0 1em;
  width: 90%;
}

.rest-text__contact{
  margin-left: 2em;
}

.works-data__wrap .form-input{
  width: 68px;
  margin-right: 0;
}

#form-comment{
  width: 100%;
  height: auto;
}

/* .form-box__address dd,
.form-box__gakureki dd{
  height: 148px;
} */

.address-unit > .form-input:first-of-type{
  margin-bottom: 0;
}

.gakureki-unit > .form-input:first-of-type{
  margin-bottom: 0;
}

/* .form-box__working > dd:first-of-type {
  height: 470px;
} */

.form-box dd dl.form-box02 dt{
  width: 100%;
  padding: 1em 0 0 1em;
}

.form-box dd dl.form-box02 dd{
  width: 100%;
  height: auto;
  text-align: justify;
}

.form-box02{
  flex-direction: column;
  align-items: center;
}

.working-inner .form-input{
margin: 0;
}

.employment-status, .working-inner{
  margin-top: 0;
  margin-left: 24px;
}

  /* お知らせ
======================================== */
  /* 全体を縦並びにする */
  .info-sec__wrap {
    display: flex;
    flex-direction: column;
  }

  /* サイドバーを先頭に */
  .sidebar {
    order: -1;
    margin: 24px 0;
  }

  .sidebar .cat-wrap,
  .sidebar .cat-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 1em;
  }

.sidebar .cat-all a{
  margin: 0 1em 0 0;
   font-size: 14px;
  white-space: nowrap;
}

  /* カテゴリーボタンの余白調整 */
  .cat-list li a {
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  .article-wrap{
    width: 100%;
    padding: 2em 1em;
  }

  .sns-share__wrap,
  .pagena{
    width:  50%;
    min-width: 300px;
  }

  .pagena{
    margin-top: 56px;
  }



  /* end   */
}

@media screen and (max-width: 709px) {
  .top-works__bg {
    height: calc(620px + 138 * (100vw - 370px) / 340);
  }
}


/*========================================================================================================================================
  検索結果ページ (Search Result)
========================================================================================================================================*/

/* 全体のラッパー（余白調整） */
.search-wrap {
  margin: 80px auto 120px auto;
  width: min(90%, 900px); /* 記事幅に合わせる */
}

/* 検索ヒット数（例：「動画制作」の検索結果：3件） */
.search-result {
  font-size: 24px;
  font-weight: bold;
  color: #092A44; /* メインカラー(紺) */
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E4F4F9; /* 薄い水色のライン */
  font-feature-settings: "palt";
}

/* 各記事のユニット */
.search-result__unit {
  margin-bottom: 48px;
  padding-bottom: 48px;
}

.search-result__unit:last-of-type {
  border-bottom: none;
}

/* 記事タイトル */
.search-result__unit .search-ttl {
  font-size: 20px;
  line-height: 1.5;
}

.search-result__unit .search-ttl a {
  color: #092A44;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.search-result__unit .search-ttl a:hover {
  color: #2EA6D9; /* ホバー時はアクセントカラー(水色) */
  opacity: 0.8;
}

/* 記事URL表示 */
a.search-link {
  display: inline-block;
  color: #2EA6D9; /* リンク色 */
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid rgb(46, 166, 217);
  transition: border-color 0.3s;
  
  /* 長いURLがはみ出さないように強制改行 */
  word-break: break-all; 
}

/* 抜粋テキスト */
.search-result__unit .search-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}


/*==================================================
  ページネーション (Pagination)
  ※検索結果画面用の調整
====================================================*/
.search-wrap .nav-links {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.search-wrap .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.search-wrap .page-numbers li {
  margin: 0;
}

/* ページ番号の共通スタイル */
.search-wrap .page-numbers li span,
.search-wrap .page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 通常のリンク（数字・矢印） */
.search-wrap .page-numbers li a {
  background-color: #fff;
  border: 1px solid #092A44;
  color: #092A44;
}

.search-wrap .page-numbers li a:hover {
  background-color: #092A44;
  color: #fff;
  opacity: 1;
}

/* 現在のページ */
.search-wrap .page-numbers li span.current {
  background-color: #092A44;
  border: 1px solid #092A44;
  color: #fff;
  cursor: default;
}

/* 「・・・」などの省略記号 */
.search-wrap .page-numbers li span.dots {
  border: none;
  background: transparent;
  color: #092A44;
}


/*==================================================
  スマホ表示 (SP) 839px以下
====================================================*/
@media screen and (max-width: 839px) {
  
  .search-wrap {
    margin: 60px auto;
    width: 90%;
  }

  .search-result {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .search-result__unit {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .search-result__unit .search-ttl {
    font-size: 18px;
  }

  /* スマホではURLなどのフォントサイズを少し下げる */
  a.search-link,
  .search-result__unit .search-text {
    font-size: 14px;
  }

  /* ページネーションの間隔を詰める */
  .search-wrap .page-numbers {
    gap: 4px;
  }

  .search-wrap .page-numbers li span,
  .search-wrap .page-numbers li a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

