@charset "UTF-8";
/*標準ボタン
---------------------------------------------------------------*/
/*鍵フックボタン
---------------------------------------------------------------*/
/*カーテンボタン
---------------------------------------------------------------*/
/*ラインダッシュボタン
---------------------------------------------------------------*/
/*IE対応のグラデーション
========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/*変数指定
=======================================================*/
/*メインカラー
--------------------------------------------*/
/*フォント
--------------------------------------------*/
/*body以下
=======================================================*/
body {
  margin: auto;
  padding: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
  color: #001c2f;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-l {
  text-align: left;
}

.text-c {
  text-align: center;
}

.text-r {
  text-align: right;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/*display flexキッド 
=================================================*/
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/*コンポーネント
=================================================*/
/*更新イメージ
----------------------------------------------- */
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../img/common/no-img.jpg) no-repeat center/cover;
}
.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/*テキスト
----------------------------------------------- */
.com-txt p {
  margin-bottom: 25px;
  line-height: 2;
}
.com-txt p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .com-txt p br {
    display: none;
  }
}

.com-tel-bx {
  line-height: 1.2;
}
.com-tel-bx .com-tel {
  font-size: 6.5vw;
  font-weight: 600;
}
.com-tel-bx small {
  font-size: 4.5vw;
}

.vtcl-txt {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*アイコン
----------------------------------------------- */
.triangle-icon {
  position: relative;
}
.triangle-icon:before {
  box-sizing: border-box;
  border: solid 20px transparent;
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: -18px;
  bottom: -18px;
  left: auto;
  width: 0;
  height: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.red-triangle:before {
  border-left: solid 20px #d90000;
}

/*ボタン
----------------------------------------------- */
.more-btn {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 4vw 2vw;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  transition: 0.2s all ease;
  background: #fff;
  width: 80%;
}

.red-line-btn {
  border: solid 1px #d90000;
  box-sizing: border-box;
}
.red-line-btn:hover {
  background: rgba(217, 0, 0, 0.1);
}
.red-line-btn span {
  color: #d90000;
  font-size: 3.6vw;
}

/* 追加 2025/10/09 ▼ */
.blue-line-btn {
  border: solid 1px #006eba;
  box-sizing: border-box;
}
.blue-line-btn:hover {
  background: rgba(0, 110, 186, 0.1);
}
.blue-line-btn span {
  color: #006eba;
  font-size: 3.6vw;
}

.window-icon {
  position: relative;
}
.window-icon::after {
  content: "";
  width: 12px;
  height: 100%;
  background: url(../img/common/window-icon.png) no-repeat center / contain;
  position: absolute;
  top: 0;
  right: 10px;
}
/* 追加 2025/10/09 ▲ */

.round-btn {
  border-radius: 6px;
}

.arw-icon {
  position: relative;
}
.arw-icon:before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 10px;
  bottom: auto;
  left: auto;
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.arw-icon-l {
  padding: 0 0 0 20px;
}
.arw-icon-l:before {
  background-position: left center;
  left: 0;
  right: auto;
}

.inline-arw-icon {
  position: relative;
  padding-right: 20px;
  transition: 0.1s all ease;
}
.inline-arw-icon:before {
  transition: 0.1s all ease;
  box-sizing: border-box;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.red-arw:before {
  border-top: 1px #d90000 solid;
  border-right: 1px #d90000 solid;
}

.wht-arw:before {
  border-top: 1px #fff solid;
  border-right: 1px #fff solid;
}

.main-arw:before {
  border-top: 1px #001c2f solid;
  border-right: 1px #001c2f solid;
}

.round-arw-icon {
  padding-right: 10vw;
  position: relative;
}
.round-arw-icon:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 8vw;
  height: 8vw;
}

.wht-round-arw:before {
  background: url("../img/common/wht-round-arw.png") no-repeat center/contain;
}

.text-more-btn {
  min-width: initial;
  position: relative;
  padding: 20px 35px;
  box-sizing: border-box;
  border-radius: 6px;
  display: block;
}
.text-more-btn .sub {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  background: #fff;
  color: #0094d0;
  border: solid 1px #0094d0;
  padding: 2px 10px;
  border-radius: 5px;
  left: 20px;
  top: -15px;
}

.blue-btn {
  background: #006eba;
}
.blue-btn .txt {
  color: #fff;
}

.mail-btn {
  display: block;
  background: transparent;
  border: solid 1px #fff;
  text-align: center;
  width: 180px;
  padding: 10px 0;
  transition: 0.3s all ease;
}
.mail-btn span {
  position: relative;
  padding-left: 35px;
  color: #fff;
}
.mail-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 14px;
  background: url("../img/common/mail-icon.png") no-repeat center/contain;
  margin-top: -7px;
}
.mail-btn:hover {
  background: #0094d0;
}
.mail-btn:hover span {
  color: #fff;
}

/*フレーム
----------------------------------------------- */
.com-lotus-bg {
  box-sizing: border-box;
  background: url(../img/common/com-lotus-bg.png) no-repeat right top/30%;
}

.l-blue-bg {
  background: #e9f9ff;
}

.com-pdg {
  padding: 16vw 0;
}

.band-bg {
  padding-top: 30vw;
}

.com-sky-bg {
  position: relative;
}
.com-sky-bg .com-sky-bx {
  position: relative;
  z-index: 100;
}
.com-sky-bg .com-sky-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 50%;
  background: url(../img/common/com-sky-bg.png) no-repeat center bottom/cover;
  z-index: 10;
}

.com-address .in-dl {
  margin-bottom: 3vw;
  line-height: 1.2;
}
.com-address .in-dl dt,
.com-address .in-dl dd {
  font-size: 3.2vw;
  box-sizing: border-box;
}
.com-address .in-dl:last-of-type {
  margin-bottom: 0;
}
.com-address dt {
  width: 30%;
  text-align: center;
  padding: 0 10px;
  border-left: solid 1px #001c2f;
  border-right: solid 1px #001c2f;
}
.com-address dd {
  width: 70%;
  padding-left: 3%;
}

.com-sns {
  -webkit-justify-content: center;
  justify-content: center;
  gap: 15px;
}
.com-sns li {
  width: 30px;
  transition: 0.1s all ease-in;
}
.com-sns li:hover {
  transform: scale(1.02);
}

.com-contact-topic .com-contact-topic-title {
  background: #001c2f;
  font-size: 4vw;
  border-radius: 10px;
  color: #fff;
  padding: 3vw;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 4vw;
}
.com-contact-topic .com-contact-topic-title:before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: solid 10px transparent;
  border-top: 10px solid #001c2f;
}
.com-contact-topic .com-contact-topic-list {
  gap: 7vw 0;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.com-contact-topic .com-contact-topic-list-item a {
  width: 100%;
}
.com-contact-topic .com-contact-form {
  width: 100%;
  box-sizing: border-box;
}

.tag-btn-list {
  gap: 2vw 4%;
}
.tag-btn-list li {
  width: 48%;
}
.tag-btn-list li a {
  width: 100%;
  min-width: initial;
}

.com-img-contents-rl .com-img-contents-item {
  margin-bottom: 10vw;
  display: block;
}
.com-img-contents-rl .com-img-contents-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.com-img-contents-rl .com-img-contents-item:last-of-type {
  margin-bottom: 0;
}
.com-img-contents-rl .com-img-contents-image {
  margin-bottom: 6vw;
}

.com-num-list {
  margin: 0 auto;
  border: solid 1px #001c2f;
  box-sizing: border-box;
  padding: 8vw 6vw;
  font-family: "Shippori Mincho", serif;
  background: #fff;
}
.com-num-list .com-num-list-item {
  font-size: 4.2vw;
  line-height: 1.5;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 4vw;
  margin-bottom: 4vw;
}
.com-num-list .com-num-list-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.com-num-list .num {
  width: 12vw;
  font-size: 8vw;
  color: #0094d0;
}
.com-num-list .txt {
  padding-top: 8px;
  width: calc(100% - 12vw);
}

.com-type-item {
  margin-bottom: 15vw;
}
.com-type-item:last-of-type {
  margin-bottom: 0;
}
.com-type-item .com-type-bx {
  display: block;
}
.com-type-item .com-type-txt {
  margin-top: 3vw;
  line-height: 2.2;
}

.com-type-gallery {
  gap: 5vw 4%;
}
.com-type-gallery .com-type-gallery-item {
  width: 48%;
}
.com-type-gallery .com-img {
  padding-top: 70%;
}

.com-type-gallery-txt {
  margin-top: 3vw;
  font-size: 3.8vw;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  padding-left: 3vw;
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
}
.com-type-gallery-txt:before {
  box-sizing: border-box;
  background: #006eba;
  content: "";
  position: absolute;
  display: block;
  top: 1vw;
  right: auto;
  bottom: auto;
  left: 0;
  width: 3px;
  height: 20px;
}

.type-of-item {
  margin-bottom: 15vw;
}
.type-of-item:last-of-type {
  margin-bottom: 0;
}

.type-of-gallery {
  gap: 10vw 0;
}
.type-of-gallery .type-of-gallery-item {
  width: 100%;
}
.type-of-gallery .type-of-gallery-item .com-img {
  padding-top: 70%;
}
.type-of-gallery .type-of-dl {
  margin-top: 5vw;
}
.type-of-gallery .type-of-dl .in-dl {
  margin-bottom: 4vw;
}
.type-of-gallery .type-of-dl .in-dl:last-of-type {
  margin-bottom: 0;
}
.type-of-gallery .type-of-dl dt {
  background: #0094d0;
  color: #fff;
  padding: 2vw 3vw;
  margin-bottom: 2vw;
}

/*タイトル
=========================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3rem;
  font-family: "Shippori Mincho", serif;
}

.title01 {
  font-size: 6vw;
  font-weight: 700;
  margin-bottom: 10vw;
}

.title02 {
  background: #006eba;
  color: #fff;
  padding: 2vw 3vw;
  font-size: 5vw;
  box-sizing: border-box;
  margin-bottom: 8vw;
}

.bd-l-title {
  padding-left: 3vw;
  font-weight: 700;
  box-sizing: border-box;
  font-size: 6vw;
  margin-bottom: 8vw;
}

.bdl-blue {
  border-left: 3px solid #006eba;
}

/*=========================================================
	header
=========================================================*/
#header {
  height: 70px;
  position: relative;
  z-index: 100;
  padding: 0 5%;
  box-sizing: border-box;
}
#header .hd-wrp {
  height: 100%;
}
#header .hd-l {
  width: 30%;
  /* 追加 2025/07/10 ▼ */
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  /* 追加 2025/07/10 ▲ */
}
#header .hd-r {
  display: none;
}

.com-contact-topic-list {
  gap: 20px 30px;
}

/*ナビゲーション
=========================================================*/
#nav {
  display: none;
}

/*Mainvisual
=========================================================*/
#mv {
  height: 65vw;
  background: url(../img/mv/mv-img.png) no-repeat center bottom/90%, url(../img/mv/mv-bg.png) no-repeat center/cover;
}
#mv .catch {
  width: 80%;
  position: relative;
}
#mv .catch .mv-icon {
  width: 20%;
  position: absolute;
  left: -3vw;
  bottom: -5vw;
}

/*=========================================================
	トップページ
=========================================================*/
/*top-about
=========================================================*/
#top-about .inbox {
  padding: 16vw 0;
  background: url(../img/top/top-about-icon.png) no-repeat right top 5vw/30%;
}
#top-about .top-about-title {
  text-align: center;
  font-size: 6vw;
  margin-bottom: 10vw;
}
#top-about .top-about-title em {
  color: #0094d0;
}
#top-about .top-about-container {
  display: block;
}
#top-about .top-about-container .top-about-img {
  text-align: center;
  margin-bottom: 10vw;
}
#top-about .top-about-container .top-about-txt {
  box-sizing: border-box;
}
#top-about .top-about-container .top-about-txt p {
  margin-bottom: 5vw;
}
#top-about .top-about-container .top-about-txt p:last-of-type {
  margin-bottom: 0;
}
#top-about .btn-wrp {
  margin-top: 10vw;
}
/* 追加 2025/10/09 ▼ */
#top-about .btn-wrp > * {
  margin-bottom: 5vw;
}
#top-about .btn-wrp > *:last-child {
  margin-bottom: 0;
}
/* 追加 2025/10/09 ▲ */

/*top-tombstone-container
=========================================================*/
.top-tombstone-container {
  padding: 16vw 0;
}
.top-tombstone-container .top-tombstone-topic {
  margin-bottom: 10vw;
  display: block;
}
.top-tombstone-container .top-tombstone-topic:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.top-tombstone-container .top-tombstone-topic:last-of-type {
  margin-bottom: 0;
}
.top-tombstone-container .top-tombstone-txtbx {
  position: relative;
  padding-bottom: 10vw;
}
.top-tombstone-container .top-tombstone-img {
  margin-bottom: 8vw;
}
.top-tombstone-container .top-tombstone-title {
  line-height: 1.2;
}
.top-tombstone-container .btn-wrp {
  text-align: center;
  margin-top: 10vw;
}

/*top-others
=========================================================*/
#top-others {
  position: relative;
  padding: 16vw 0;
  overflow-x: hidden;
}
#top-others .top-others-title {
  font-size: 5.5vw;
  color: #fff;
  margin-bottom: 15vw;
}
#top-others .top-others-container {
  gap: 15vw 0;
}
#top-others .top-others-item {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}
#top-others .top-others-topic-title {
  background: #fff;
  position: absolute;
  right: 5vw;
  top: -10vw;
  padding: 5px;
  box-sizing: border-box;
}
#top-others .top-others-topic-title span {
  padding: 10vw 2vw;
  height: 100%;
  font-size: 6vw;
  box-sizing: border-box;
  border: solid 1px #001c2f;
}
#top-others .top-others-txt {
  padding: 4vw 3vw;
  box-sizing: border-box;
}

/*top-constructions-company
=========================================================*/
.top-constructions-company {
  display: block;
}
.top-constructions-company .top-constructions-company-item {
  padding: 3vw;
  box-sizing: border-box;
  transition: 0.1s all ease-in;
}
.top-constructions-company a {
  display: block;
  height: 100%;
  font-size: 6vw;
  padding: 10vw 5vw;
  color: #fff;
  box-sizing: border-box;
  border: solid 1px rgba(255, 255, 255, 0.9);
}

#top-constructions {
  background: url(../img/top/top-constructions-bg.jpg) no-repeat center/cover;
}

#top-company {
  background: url(../img/top/top-company-bg.jpg) no-repeat center/cover;
}

/*top-news
=========================================================*/
#top-news {
  background: url(../img/common/blue-bg.jpg);
  padding: 15vw 0;
}

.top-news-container {
  margin: 0 auto;
  background: #fff;
  padding: 10vw 5vw;
  box-sizing: border-box;
  display: block;
}

.top-news-title-bx {
  position: relative;
}
.top-news-title-bx .top-news-title {
  font-size: 5.5vw;
  font-weight: 700;
}
.top-news-title-bx .btn-wrp {
  position: absolute;
  right: 0;
  bottom: 0;
}
.top-news-title-bx .btn-wrp .inline-arw-icon:hover {
  border-bottom: 1px solid #0094d0;
  color: #0094d0;
}

.top-news-post-item {
  border-bottom: 1px solid #d7d7d7;
  box-sizing: border-box;
  transition: 0.1s all ease-in;
}
.top-news-post-item:hover {
  background: rgba(0, 110, 186, 0.1);
  padding-left: 10px;
}
.top-news-post-item:last-of-type {
  border-bottom: none;
}
.top-news-post-item a {
  display: block;
  font-weight: 500;
  padding: 5vw 0;
  font-size: 3.2vw;
}
.top-news-post-item .tag-time {
  line-height: 1.5;
  margin-bottom: 3vw;
}
.top-news-post-item time {
  width: 25vw;
}
.top-news-post-item .tag-list {
  width: calc(100% - 25vw);
  gap: 1vw 2vw;
}
.top-news-post-item .tag-list li {
  border: solid 1px #001c2f;
  padding: 2px 5px;
  border-radius: 5px;
}

.top-news-post-item-title {
  font-family: "Noto Sans JP", sans-serif;
}

/*top-
=========================================================*/
/*=========================================================
	footer
=========================================================*/
#footer {
  padding: 16vw 0 10vw;
}

.ft-wrp {
  display: block;
}

.ft-l .com-contact-topic {
  margin-top: 35px;
}

.ft-logo {
  width: 50%;
  margin: 0 auto 10vw;
}

.ft-r .com-sns {
  margin-bottom: 3vw;
}

.ft-nav {
  margin: 10vw 0;
  flex-wrap: wrap;
}

.ft-nav-list {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.ft-nav-list li {
  width: 50%;
  font-size: 3.5vw;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  margin-bottom: 3vw;
}
.ft-nav-list li:last-of-type {
  margin-bottom: 0;
}
.ft-nav-list .current a {
  color: #0094d0;
  border-bottom: 1px solid #0094d0;
}

.ft-sub-nav {
  margin-top: 10vw;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 5vw;
}
.ft-sub-nav a {
  font-size: 3.3vw;
}
.ft-sub-nav .current a {
  color: #0094d0;
  border-bottom: 1px solid #0094d0;
}

#copyright {
  text-align: center;
  margin-top: 10vw;
}
#copyright small {
  color: #bebebe;
  font-size: 3vw;
}
#copyright small a {
  color: #bebebe;
}

/*=========================================================
	下層ページ
=========================================================*/
#contents-u {
  padding: 16vw 0;
}

/*下層サブビジュアル
=========================================================*/
#sv {
  height: 30vw;
  text-align: center;
}
#sv .sv-title-bx {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  padding: 5px;
  box-sizing: border-box;
  min-width: 60%;
  max-width: 90%;
}
#sv .sv-title {
  font-size: 5vw;
  padding: 3vw;
  border: solid 1px #7d8a92;
  box-sizing: border-box;
}
#sv .sv-titlte-icon {
  position: absolute;
  left: -5vw;
  bottom: -2vw;
  width: 10vw;
}

#sv.sv-news-bg {
  background: url(../img/news/sv-news-bg.jpg) no-repeat center/cover;
}

#sv.sv-contact-bg {
  background: url(../img/contact/sv-contact-bg.jpg) no-repeat center/cover;
}

#sv.sv-complete-bg {
  background: url(../img/complete/sv-complete-bg.jpg) no-repeat center/cover;
}

#sv.sv-site-bg {
  background: url(../img/site/sv-site-bg.jpg) no-repeat center/cover;
}

#sv.sv-privacy-bg {
  background: url(../img/privacy/sv-privacy-bg.jpg) no-repeat center/cover;
}

#sv.sv-notfound-bg {
  background: url(../img/notfound/sv-notfound-bg.jpg) no-repeat center/cover;
}

/*パンくず
=========================================================*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 10px 0 50px;
}
#bread-clumb li {
  position: relative;
  color: #001c2f;
  font-size: 14px;
  float: left;
  margin-right: 20px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}
#bread-clumb li:last-child {
  margin-right: 0;
}
#bread-clumb li:last-child:after {
  display: none;
}
#bread-clumb li a {
  color: #001c2f;
}

/*共通テーブル
=========================================================*/
.com-dl {
  background: #fff;
}
.com-dl > .in-dl {
  border-bottom: 1px solid #fff;
}
.com-dl > .in-dl:last-child {
  border-bottom: none;
}
.com-dl > .in-dl dt,
.com-dl > .in-dl dd {
  padding: 3vw 4vw;
}
.com-dl > .in-dl > dt {
  background: #006eba;
  color: #fff;
}
.com-dl > .in-dl > dd {
  vertical-align: top;
}
.com-dl > .in-dl > dd a {
  color: #001c2f;
}

/*株式会社森本重石材店について
=========================================================*/
.sv-about-bg {
  background: url(../img/about/sv-about-bg.jpg) no-repeat center/cover;
}

#about-greeting .greeting-txtbx {
  display: block;
}
#about-greeting .com-type-gallery {
  margin-top: 10vw;
}
#about-greeting .about-greeting-txt {
  text-align: left;
}

/*現代墓石
=========================================================*/
.sv-tombstone-bg {
  background: url(../img/tombstone/sv-tombstone-bg.jpg) no-repeat center/cover;
}

#tombstone-type .com-type-gallery {
  margin-top: 30px;
}

/*未来墓
=========================================================*/
.sv-grave-bg {
  background: url(../img/grave/sv-grave-bg.jpg) no-repeat center/cover;
}

/*墓じまい/永代管理墓/納骨墓/合祀墓
=========================================================*/
.sv-cemetery-bg {
  background: url(../img/cemetery/sv-cemetery-bg.jpg) no-repeat center/cover;
}

.cemetery-item {
  margin-bottom: 15vw;
  display: block;
}
.cemetery-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.cemetery-item:last-of-type {
  margin-bottom: 0;
}
.cemetery-item .cemetery-item-img {
  margin-bottom: 8vw;
  /* 追加 2025/07/10 ▼ */
  text-align: center;
  /* 追加 2025/07/10 ▲ */
}
.cemetery-item .cemetery-item-bx {
  line-height: 2;
}
.cemetery-item .cemetery-item-title {
  line-height: 1.2;
  margin-bottom: 4vw;
}
.cemetery-item .cemetery-item-title span {
  font-size: 5.5vw;
}
/* 追加 2025/07/10 ▼ */
.cemetery-item .cemetery-item-comic {
  text-align: center;
  padding-top: 10vw;
}
/* 追加 2025/07/10 ▲ */

/*施工の流れ/施工実績
=========================================================*/
.sv-constructions-bg {
  background: url(../img/constructions/sv-constructions-bg.jpg) no-repeat center/cover;
}

/* 追加 2025/09/16 ▼ */
.constructions-flow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8vw 4%;
  counter-reset: num 0;
  padding-top: 4vw;
}
.constructions-flow-item {
  position: relative;
}
.constructions-flow-item::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero);
  font-size: 8vw;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  color: #0094d0;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke;
  position: absolute;
  top: -5.5vw;
  left: 0;
  z-index: 3;
}
.constructions-flow-item::after {
  content: "";
  width: 8vw;
  aspect-ratio: 1;
  background: url(../img/constructions/flow-arrow.png) no-repeat center / contain;
  position: absolute;
  top: 17vw;
  right: -6vw;
  z-index: 3;
}
.constructions-flow-item:nth-of-type(2n)::after,
.constructions-flow-item:last-of-type::after {
  display: none;
}
.constructions-flow-item .com-img {
  padding-top: 100%;
}
.constructions-flow-txt {
  margin-top: 3vw;
  font-size: 3.8vw;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.25;
}
/* 追加 2025/09/16 ▲ */

#constructions-case .tag-btn-list {
  margin-bottom: 10vw;
}

.com-constructions-item {
  margin-bottom: 15vw;
}
.com-constructions-item:last-of-type {
  margin-bottom: 0;
}

.constructions-case-list {
  gap: 4vw 4%;
}
.constructions-case-list li {
  width: 48%;
}
.constructions-case-list li a {
  display: block;
  padding-top: 100%;
}

/*会社概要
=========================================================*/
.sv-company-bg {
  background: url(../img/company/sv-company-bg.jpg) no-repeat center/cover;
}

#greeting .greeting-txtbx {
  display: block;
}
#greeting .greeting-img {
  /* 追加 2025/10/01 ▼ */
  text-align: center;
  /* 追加 2025/10/01 ▲ */
  margin-bottom: 8vw;
}
#greeting .ceo-name {
  text-align: right;
}

#company-info {
  padding-top: 16vw;
}
#company-info .company-dl {
  display: block;
  margin-bottom: 10vw;
}

.map-iframe {
  padding-top: 50vw;
  background: #ccc;
  position: relative;
}
.map-iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*お知らせ一覧
=========================================================*/
/*タグ一覧
----------------------------------------------------*/
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}
.tag-select-box:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #001c2f;
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-bottom: 2px solid #333;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #333;
  font-weight: 700;
  -webkit-appearance: none;
  appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

.post-wrp .tag-change li a {
  border: solid 1px #0094d0;
  color: #0094d0;
  background: #fff;
}
.post-wrp .tag-change .current a {
  background: #0094d0;
}
.post-wrp .tag-change .current a span {
  color: #fff;
}
.post-wrp .all-post-list article {
  border-bottom: 1px solid #0094d0;
}
.post-wrp .all-post-list article a {
  color: #001c2f;
}
.post-wrp .all-post-list article a .tag-name {
  margin: 3px 5px 0 0;
  border: solid 1px #0094d0;
}
.post-wrp .all-post-list article a .tag-name span {
  color: #0094d0;
}
.post-wrp .all-post-list article a time span {
  color: #0094d0;
}

/*お知らせ個別
=========================================================*/
#contents-u.s-post .sb_style h1 {
  border-bottom: 1px solid #0094d0;
}
#contents-u.s-post .sb_style h2 {
  border-left: 5px solid #0094d0;
}
#contents-u.s-post .sb_style h3 {
  background: #0094d0;
  color: #fff;
}
#contents-u.s-post .sb_style h4:before {
  background: #0094d0;
}
#contents-u.s-post .sb_style h5 {
  background: #f2f2f2;
}
#contents-u.s-post .sb_style h6 {
  color: #0094d0;
}
#contents-u.s-post .sb_style ul li:before {
  background: #0094d0;
}
#contents-u.s-post .sb_style ol li:before {
  color: #fff;
  background: #0094d0;
}
#contents-u.s-post .sb_style a {
  color: #0094d0;
}
#contents-u.s-post .s-time-tag {
  text-align: right;
  margin-top: 100px;
  padding-top: 10px;
  border-top: 1px solid #0094d0;
}
#contents-u.s-post .s-time-tag time {
  color: #0094d0;
  font-weight: bold;
}
#contents-u.s-post .tag-name {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 20px;
  box-sizing: border-box;
  border: solid 1px #0094d0;
  line-height: 1;
  color: #0094d0;
}
#contents-u.s-post .tag-name span {
  color: #0094d0;
}

/*お問い合わせ
=========================================================*/
.cont-dl .in-dl dt .hissu {
  border-radius: 5px;
  background: #d90000;
  right: 5px;
}
.cont-dl .in-dl dd a {
  color: #0094d0;
  border-bottom: 1px solid #0094d0;
}
.cont-dl .in-dl dd .select-wrap {
  position: relative;
  width: 300px;
}
.cont-dl .in-dl dd .select-wrap:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
.cont-dl .in-dl dd select {
  position: relative;
  width: 100%;
  appearance: none;
  background: #fff;
}
.cont-dl .in-dl dd input[type="text"],
.cont-dl .in-dl dd input[type="num"] {
  border: solid #ccc 1px;
  background: #fff;
}
.cont-dl .in-dl dd textarea {
  border: solid #ccc 1px;
  background: #fff;
}

.contact-btn ul li #form-btn {
  font-family: "Noto Sans JP", sans-serif;
  border: solid 1px #d90000;
  background-color: #d90000;
  border-radius: 10px;
}
.contact-btn ul li:hover #form-btn {
  color: #d90000;
  background: #fff;
}

/*pagenation
--------------------------------------------*/
ul.pagenation li a {
  color: #38322d;
}
ul.pagenation li.current {
  color: #fff;
  background: #0094d0;
}

/*page-btn
--------------------------------------------*/
.page-btn .left a:before {
  border-right: solid #0094d0 5px;
}
.page-btn .right a:before {
  border-left: solid #0094d0 5px;
}

/*サイトマップ
=========================================================*/
#site-map ul li {
  border-bottom: 1px solid #0094d0;
}
#site-map ul li a {
  color: #001c2f;
}
#site-map ul li a:before {
  border-left: 8px solid #0094d0;
}
#site-map ul li a:hover {
  color: #0094d0;
}
#site-map ul li a:hover:before {
  left: 10px;
}

/*404
=========================================================*/
.not-found-txt p a {
  color: #0094d0;
}

/*リキャプチャ---------------*/
.recap-inwrap {
  width: 300px;
  margin: 0 auto 50px;
}

/*送信完了---------------*/
.send-comp {
  text-align: center;
}
.send-comp p {
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}
