@charset "utf-8";
/*=========================================================
all
=========================================================*/
/*:::::::::::【背景】::::::::::*/
.back {
  padding: 100px 0;
}
@media (max-width:1280px) {}
@media (max-width:1024px) {}
@media (min-height:1366px) { /*ipad pro*/
  .back {
    padding: 60px 0;
  }
}
@media (max-width:900px) {
  .back {
    padding: 50px 0;
  }
}
@media (max-width:600px) {}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*:::::::::::【横幅】::::::::::*/
.width {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media (max-width:1500px) {}
@media (max-width:1400px) {}
@media (max-width:1280px) {}
@media (max-width:1024px) {}
@media (min-height:1366px) { /*ipad pro*/
}
@media (max-width:900px) {
  .width {
    max-width: 90%;
  }
}
@media (max-width:600px) {}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*:::::::::::【コンテンツ】::::::::::*/
.contents {
  position: relative;
  margin: 0 auto;
}
@media (max-width:1280px) {}
@media (max-width:1024px) {}
@media (min-height:1366px) { /*ipad pro*/
  /*  .contents {
    margin: 50px auto 0 auto;
  }*/
}
@media (max-width:900px) {
  /*  .contents {
    margin: 50px auto 0 auto;
  }*/
}
@media (max-width:600px) {}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*=========================================================
ロード画面
=========================================================*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #fff;
  background-image: url("../image/common/load-back.png");
  background-size: contain;
  background-position: right bottom;
  text-align: center;
  color: #333;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 300px;
}
/* フェードインするアイコンの動き */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 会社名*/
#splash_logo h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 1.127rem + 0.52vw, 1.75rem);
}
@media (max-width:1500px) {}
@media (max-width:1400px) {}
@media (max-width:1280px) {}
@media (min-height:1366px) { /*ipad pro*/
  #splash {
    /*fixedで全面に固定*/
    background-size: cover;
    background-position: right center;
  }
}
@media (max-width:900px) {
  #splash {
    /*fixedで全面に固定*/
    background-size: cover;
    background-position: right center;
  }
}
@media (max-width:600px) {
  #splash_logo img {
    width: 250px;
  }
}
@media (max-width:450px) {
  #splash_logo img {
    width: 200px;
  }
}
@media (max-width: 400px) {
  #splash_logo img {
    width: 180px;
  }
}
/*=========================================================
TOP
=========================================================*/
/*:::::::::::【】::::::::::*/
#slider-box {
  position: relative;
  height: calc(100vh - 100px);
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider {
  position: relative;
  width: 80%;
  height: 80%;
  margin: auto;
  overflow: hidden;
}
.slider::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.top-txt {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  font-size: 5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.top-txt p {
  display: inline;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
}
@media (max-width:1500px) {
  .top-txt {
    font-size: 4.5rem;
  }
}
@media (max-width:1400px) {
  .top-txt {
    font-size: 4rem;
  }
}
@media (max-width:1280px) {
  .top-txt {
    font-size: 3.5rem;
  }
}
@media (min-height:1366px) { /*ipad pro*/
  #slider-box {
    height: calc(50vh - 100px);
  }
  .top-txt {
    font-size: 3rem;
  }
}
@media (max-width:900px) {
  #slider-box {
    height: calc(50vh - 100px);
  }
  .top-txt {
    font-size: 2.8rem;
  }
}
@media (max-width:600px) {
  #slider-box {
    position: relative;
    height: calc(50vh - 100px);
  }
  .slider {
    width: 100%;
    height: 100%;
  }
  .top-txt {
    /*    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    font-size: 2rem;
  }
}
@media (max-width:450px) {
  .top-txt {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .top-txt {
    font-size: 1.2rem;
  }
}
/*=========================================================
【ご挨拶】
==========================================================*/
/*:::::::::::【背景】::::::::::*/
.grt-back {
  height: 100vh;
  width: 100%;
}
.grt-width {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-height:1366px) { /*ipad pro*/
  .grt-back {
    height: 60vh;
  }
}
@media (max-width:900px) {
  .grt-back {
    height: 60vh;
  }
}
@media (max-width:600px) {
  .grt-back {
    height: auto;
    padding: 100px 0;
  }
}
/*:::::::::::【パターン】::::::::::*/
.g-ptn-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: auto;
}
.g-ptn-03 {
  position: absolute;
  bottom: 0;
  right: -13%;
  width: 40%;
  height: auto;
  transform: scaleX(-1);
}
/*円*/
.g-ptn-02 {
  position: absolute;
  top: 40%;
  right: 15%;
  transform: translate(-15%, -40%);
  height: 400px;
  width: 400px;
}
@media (max-width:1500px) {}
@media (max-width:1400px) {
  .g-ptn-02 {
    top: 30%;
    right: 3%;
    transform: translate(-3%, -30%);
    height: 330px;
    width: 330px;
  }
}
@media (max-width:1280px) {}
@media (min-height:1366px) { /*ipad pro*/
  .g-ptn-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: auto;
  }
  .g-ptn-03 {
    position: absolute;
    bottom: 0;
    right: -13%;
    width: 40%;
    height: auto;
    transform: scaleX(-1);
  }
}
@media (max-width:900px) {
  .g-ptn-03 {
    right: -5%;
  }
  .g-ptn-02 {
    position: absolute;
    top: 30%;
    right: 5%;
    transform: translate(-5%, -30%);
    height: 300px;
    width: 300px;
  }
}
@media (max-width:600px) {
  .g-ptn-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
  }
  .g-ptn-03 {
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 50%;
    height: auto;
    transform: scaleX(-1);
  }
}
@media (max-width:450px) {
  .g-ptn-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: auto;
  }
  .g-ptn-03 {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 65%;
    height: auto;
    transform: scaleX(-1);
  }
}
@media (max-width: 400px) {}
/*:::::::::::【コンテンツ】::::::::::*/
.grt-cont {
  display: flex; /* 横並び */
  align-items: center; /* 中央揃え */
  gap: 30px; /* 左右の余白 */
}
@media (max-width:600px) {
  .grt-cont {
    flex-direction: column;
    gap: 100px;
  }
}
/*:::::::::::【縦書きテキスト】::::::::::*/
.grt-cont p {
  width: 15%;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: clamp(2rem, 1.679rem + 1.35vw, 3.3rem);
  writing-mode: vertical-rl; /* 右から縦書き */
  text-orientation: upright; /* 文字を縦向きにする */
  line-height: 2; /* 行間はお好みで */
}
@media (max-width:1500px) {
  .grt-cont p {
    width: 20%;
  }
}
@media (max-width:1400px) {}
@media (max-width:600px) {
  .grt-cont p {
    width: auto;
  }
}
/*:::::::::::【テキスト】::::::::::*/
.grt-text-box {
  width: 85%;
  text-align: center;
}
.grt-text-box dl {
  margin-bottom: 50px;
}
.grt-text-box dt {
  margin-bottom: 40px;
}
.grt-text-box dd {
  line-height: 2;
}
@media (max-width:1500px) {
  /*【テキスト】*/
  .grt-text-box {
    width: 80%;
  }
}
@media (max-width:1400px) {}
@media (max-width:1280px) {
  .grt-text-box {
    width: 80%;
    text-align: center;
  }
}
@media (min-height:1366px) { /*ipad pro*/
  .grt-text-box {
    width: 80%;
  }
}
@media (max-width:900px) {
  .grt-text-box {
    width: 80%;
  }
}
@media (max-width:600px) {
  .grt-text-box {
    width: 100%;
  }
  .grt-text-box dl {
    margin-bottom: 20px;
  }
  .grt-text-box dl dd {
    line-height: 2;
    text-align: justify;
  }
}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*=========================================================
【お知らせ】
=========================================================*/
/*:::::::::::【背景】::::::::::*/
.news-back {
  overflow-x: hidden;
  height: auto;
}
.news-width {}
/*:::::::::::【メインタイトル】::::::::::*/
.news-mtitle {
  margin-bottom: 80px;
}
/*:::::::::::【パターン】::::::::::*/
.n-ptn-01 {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-30%);
  transform: scaleY(-1);
  height: 200px;
}
.n-ptn-02 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: scaleX(-1);
  height: 200px;
}
@media (max-width:1280px) {}
@media (max-width:1024px) {}
@media (min-height:1366px) { /*ipad pro*/
}
@media (max-width:900px) {
  .n-ptn-01 {
    height: 150px;
  }
  .n-ptn-02 {
    height: 150px;
  }
}
@media (max-width:600px) {
  .news-back {
    padding-bottom: 0;
  }
  /*:::::::::::【メインタイトル】::::::::::*/
  .news-mtitle {
    margin-bottom: 60px;
  }
  /*:::::::::::【パターン】::::::::::*/
  .n-ptn-01 {
    top: 41%;
    transform: translateY(-41%);
    transform: scaleY(-1);
    height: 100px;
  }
  .n-ptn-02 {
    position: absolute;
    bottom: 15%;
    right: 0;
    transform: translateY(-15%);
    transform: scaleX(-1);
    height: 100px;
  }
}
@media (max-width:450px) {
  /*:::::::::::【パターン】::::::::::*/
  .n-ptn-01 {
    height: 82px;
  }
  .n-ptn-02 {
    bottom: 19%;
    transform: translateY(-19%);
    transform: scaleX(-1);
    height: 82px;
  }
}
@media (max-width: 400px) {
  /*:::::::::::【パターン】::::::::::*/
  .n-ptn-01 {
    top: 42%;
    transform: translateY(-42%);
    transform: scaleY(-1);
    height: 71px;
  }
  .n-ptn-02 {
    position: absolute;
    bottom: 20%;
    right: 0;
    transform: translateY(-20%);
    transform: scaleX(-1);
    height: 71px;
  }
}
/*:::::::::::【ニュース】::::::::::*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
  margin: 3%;
}
/* for macIE \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
.news-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.news_titl {
  width: 25%;
}
.news-box {
  width: 100%;
}
#newsWrap {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
  position: relative;
}
.back_w {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  z-index: -10;
}
#newsWrap ul#newsList { /*211029〜*/
  width: 100%;
  overflow-y: scroll;
  height: 200px;
  padding: 0 5px;
  display: block;
  border: 1px solid #534741;
  border-right: 2px solid #43cf9a;
  background-color: #fff;
}
#newsWrap ul#newsList::-webkit-scrollbar {
  width: 4px;
}
#newsWrap ul#newsList::-webkit-scrollbar-track { /*バーの色*/
  background-color: #43cf9a;
}
#newsWrap ul#newsList::-webkit-scrollbar { /*バーの色*/
  background-color: #43cf9a;
}
.news-flex {
  width: 100%;
}
ul#newsList {
  display: block;
  margin: 0 auto;
}
ul#newsList li {
  font-size: 1em;
  margin: 0;
  padding: 2% 3%;
  margin-bottom: 3px;
  list-style-type: none;
  border-bottom: 1px dashed #534741;
}
#newsWrap a { /*新着情報*/
  /*color: #fff;*/
  text-decoration: underline;
  text-decoration: none;
}
#newsWrap a:hover {
  color: #c1a223;
  text-decoration: none;
}
.up_ymd { /*日付*/
  /*color: #fff;*/
  padding: 1%;
  text-align: left;
}
.catName { /*お知らせ・施工実績などの名前*/
  display: inline-block;
  padding: 3px;
  border: 1px solid #d80000;
  border-radius: 6px;
  font-size: 0.9em;
  line-height: 100%;
  margin: 0 2px;
  color: #d80000;
}
.newMark { /*newマーク*/
  display: inline-block;
  padding: 1px 4px;
  font-size: 11px;
  line-height: 100%;
  color: #FF0000;
  border-radius: 8px;
  font-style: italic;
  font-weight: bold;
}
.comment {
  display: block;
  padding: 3px 0;
  float: left;
  overflow: hidden;
  width: 80%; /* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
}
.thumbNailWrap {
  display: block;
  width: 110px;
  float: left;
  height: 80px;
  overflow: hidden;
}
.sp {
  display: none;
}
.copyright2 a {
  /*color: #fff !important;*/
}
@media all and (max-width:1700px) {
  .back_w {
    width: 75%;
    /*      height: 500px;*/
  }
}
@media all and (max-width:1150px) {
  #newsWrap ul#newsList { /*211029〜*/
    width: 100%;
    /*	height: 100px;
*/
  }
  .text_img {
    width: 45%;
  }
}
@media all and (max-width:950px) {
  .up_ymd {
    display: block;
    /*width: 30%;*/
    margin: 1% 0;
  }
  #newsWrap ul#newsList { /*211029〜*/
    height: 250px;
  }
}
@media (max-width: 690px) {
  .text_img {
    top: 65%;
  }
  .news_titl {
    width: 40%;
    margin: 0 auto;
  }
  .news-box {
    width: 100%;
  }
  #newsWrap ul#newsList { /*211029〜*/
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }
  .up_ymd {
    display: block;
    width: 100%;
    margin: 1% 0;
    text-align: left;
  }
  #newsWrap {
    width: 100%;
    height: 200px;
  }
  .news-box1 {
    width: 100%;
  }
  .news-box2 {
    width: 100%;
    margin-top: 8% !important;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .comment {
    width: 100%; /* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
  }
  .thumbNailWrap {
    width: 100%;
    height: auto;
  }
  .detailUpfile {
    margin: 20px;
    width: 100%;
    max-width: 50%;
  }
}
/*=========================================================
【事業内容】
==========================================================*/
/*:::::::::::【背景・横幅】::::::::::*/
.biz-back {
  background-color: #c7ffe8;
  background-image: url("../image/index/b-pattern.png");
  background-repeat: repeat;
  background-size: contain;
}
/*:::::::::::【コンテンツ】::::::::::*/
.biz-cont {
  background-color: #fff;
  border: 3px solid #43cf9a;
  border-radius: 20px;
  padding: 100px 50px;
  text-align: center;
  margin-top: 100px;
}
@media (max-width:600px) {
  .biz-cont {
    padding: 50px 30px;
    margin-top: 70px;
  }
}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*:::::::::::【コメント】::::::::::*/
.b-cmt {
  line-height: 1.8;
  margin: 0 auto 50px auto;
}
.b-cmt span {
  color: #009af9;
  font-size: clamp(1.5rem, 1.13rem + 1.56vw, 3rem);
  font-weight: bold;
}
@media (max-width:600px) {
  .b-cmt {
    font-size: 16px;
  }
}
@media (max-width:450px) {
  .b-cmt {
    text-align: justify;
  }
}
@media (max-width: 400px) {}
/*:::::::::::【リスト】::::::::::*/
.biz-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-bottom: 50px;
}
.biz-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
/*画像*/
.biz-list img {}
/*テキスト*/
.biz-list dl {
  width: 100%;
  padding: 5%;
}
.biz-list dt {
  margin-bottom: 20px;
}
.biz-list dt span {
  font-size: clamp(0.875rem, 0.782rem + 0.39vw, 1.25rem);
}
.biz-list dd {
  text-align: justify;
}
@media (max-width:1500px) {}
@media (max-width:1400px) {
  .biz-list dt {
    white-space: nowrap;
  }
}
@media (max-width:1280px) {}
@media (min-height:1366px) { /*ipad pro*/
  .biz-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .biz-list dt {
    white-space: pre-wrap;
  }
}
@media (max-width:900px) {
  .biz-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .biz-list dt {
    white-space: pre-wrap;
  }
}
@media (max-width:600px) {
  .biz-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*=========================================================
【施工実績】
==========================================================*/
/*:::::::::::【背景・横幅】::::::::::*/
/*:::::::::::【パターン】::::::::::*/
.wrk-ptn-01 {
  position: absolute;
  top: 10%;
  left: 0;
}
.wrk-ptn-02 {
  position: absolute;
  top: 30%;
  right: 0;
  width: 15%;
}
.wrk-ptn-03 {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 15%;
  transform: scaleX(-1);
}
.wrk-ptn-04 {
  position: absolute;
  bottom: 10%;
  right: 0;
  transform: scaleX(-1);
}
@media (max-width:1280px) {
  .wrk-ptn-02 {
    width: 20%;
  }
  .wrk-ptn-03 {
    width: 20%;
  }
}
@media (min-height:1366px) { /*ipad pro*/
  .wrk-ptn-02 {
    width: 30%;
  }
  .wrk-ptn-03 {
    width: 30%;
  }
}
@media (max-width:900px) {
  .wrk-ptn-02 {
    width: 30%;
  }
  .wrk-ptn-03 {
    width: 30%;
  }
}
@media (max-width:600px) {
  .wrk-ptn-01 {
    width: 70%;
  }
  .wrk-ptn-02 {
    width: 40%;
  }
  .wrk-ptn-03 {
    width: 40%;
  }
  .wrk-ptn-04 {
    width: 70%;
  }
}
@media (max-width:450px) {}
@media (max-width: 400px) {}
/*:::::::::::【コンテンツ】::::::::::*/
.wrk-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*:::::::::::【テキスト】::::::::::*/
.wrk-txt {
  margin-top: 100px;
  text-align: center;
}
.wrk-txt dt {
  display: inline-block;
  color: #007545;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
}
.text-border span {
  display: inline-block; /* ボーダーを文字ごとに効かせる */
  border: 1px solid #007545;
  padding: 2px 4px; /* 文字の余白調整 */
  padding: 10px 20px;
  margin: 2px; /* 文字同士の間隔 */
  background-color: #fff;
}
.wrk-txt dd {
  line-height: 1.8;
}
@media (max-width:600px) {
  .wrk-txt {
    margin-top: 65px;
  }
  .text-border span {
    padding: 2px 8px; /* 文字の余白調整 */
  }
}
@media (max-width:450px) {
  .wrk-txt dd {
    text-align: justify;
  }
}
@media (max-width: 400px) {
  .wrk-txt {
    margin-top: 45px;
  }
}
/*:::::::::::【イメージ】::::::::::*/
.wrk-img-box {
  margin: 100px auto;
}
.wrk-img-box ul {
  display: flex;
}
.wrk-img-box ul li {
  border: 2px solid #43cf9a;
  background-color: #fff;
  padding: 50px;
}
.wrk-img-box img {
  width: 100%;
  padding: 40px;
  background-color: rgba(67, 207, 154, 0.30);
}
@media (min-height:1366px) { /*ipad pro*/
  .wrk-img-box ul li {
    padding: 20px;
  }
  .wrk-img-box img {
    padding: 25px;
  }
}
@media (max-width:900px) {
  .wrk-img-box ul li {
    padding: 20px;
  }
  .wrk-img-box img {
    padding: 25px;
  }
}
@media (max-width:600px) {
  .wrk-img-box ul {
    flex-direction: column;
  }
  .wrk-img-box {
    margin: 65px auto;
  }
}
@media (max-width: 400px) {
  .wrk-img-box {
    margin: 45px auto;
  }
}
/*=========================================================
【求人情報】
==========================================================*/
/*:::::::::::【背景・横幅】::::::::::*/
.rcrt-back {
  background-color: #d3efe1;
  background-image: url("../image/common/footer-img.jpg");
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}
/*:::::::::::【コンテンツ】::::::::::*/
.rcrt-cont {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*メインタイトル*/
.rcrt-mtitle {
  width: 20%;
}
/*テキスト*/
.rcrt-cont dl {
  width: 70%;
}
.rcrt-cont dt {
  font-style: italic;
  margin-bottom: 20px;
}
/*:::::::::::【イメージ】::::::::::*/
.rcrt-img {
  width: 60%;
}
/*:::::::::::【】::::::::::*/
@media (max-width:1500px) {
  .rcrt-cont {
    align-items: flex-start;
  }
}
@media (max-width:1400px) {}
@media (max-width:1280px) {
  .rcrt-cont dl {
    width: 73%;
  }
}
@media (min-height:1366px) { /*ipad pro*/
  .rcrt-cont {
    justify-content: space-between;
  }
  .rcrt-mtitle {
    width: 15%;
    writing-mode: vertical-rl; /* 縦書き・右から左へ進む */
    margin: 0;
  }
  .rcrt-img {
    width: 80%;
  }
  .rcrt-cont dl {
    width: 80%;
  }
}
@media (max-width:900px) {
  .rcrt-cont {
    justify-content: space-between;
  }
  .rcrt-mtitle {
    width: 15%;
    writing-mode: vertical-rl; /* 縦書き・右から左へ進む */
    margin: 0;
  }
  .rcrt-img {
    width: 85%;
  }
  .rcrt-cont dl {
    width: 75%;
  }
}
@media (max-width:600px) {
  .rcrt-cont {
    flex-direction: column;
  }
  .rcrt-mtitle {
    width: 100%;
    writing-mode: horizontal-tb; /* 横書きに戻す */
    text-orientation: mixed; /* デフォルトの文字向き */
  }
  .rcrt-cont dl {
    width: 100%;
    margin-top: 50px;
  }
  .rcrt-cont dd {
    text-align: center;
  }
  .rcrt-cont dd p {
    text-align: justify;
  }
  .rcrt-img {
    width: 100%;
  }
}
@media (max-width:450px) {}
@media (max-width: 400px) {}