/**
 * トップページ用のスタイル
 *
 * @package Type25F
 */


/* ---------------
  共通クラス
------------------ */
.visible-pc {
  display: block !important;
}
.visible-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {

  .visible-pc {
    display: none !important;
  }

  .visible-sp {
    display: block !important;
  }

}

/* ---------------
  トップイメージ
------------------ */
.top-image-container {
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: var(--bg-image,transparent);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.top-image-container .top-image-inner{
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 0;
}

/* ---------------
  セクション共通
------------------ */
/* セクション全体のコンテナスタイル */
.section-container {
  padding: 0;
  margin: 0;
  position: relative;
  background-color: var(--section-bg-color, #ffffff); /* 背景色をCSS変数で設定、デフォルトは白 */
  background-image: var(--section-bg-image, none); /* 背景画像をCSS変数で設定、デフォルトはなし */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* セクションの内容をラップするコンテナ */
.section-content {
  padding: 0 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.section-content-wrapper {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* カード */
.container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 20px 0; */
}

.container_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* ---------------
  ニュース一覧　別ファイル
------------------ */

/* ---------------
  ポイント
------------------ */
.concept-box-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 57px 0 60px;
  position: relative;
  margin: 0 auto;
}

.concept-box {
  background-color: #f8f8f8;
  border: 2px solid #ddd;
  /* position: relative; */
  padding: 40px 380px 40px 85px;
  border-radius: 10px;
  overflow: visible;
  display: flex;
  align-items: center;
  min-height: 288px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.concept-box .point-circle {
  position: absolute;
  top: 15px;
  /* left: -60px; */
  left: 0;
  width: 120px;
  height: 120px;
  background-color: #00bfa5;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-weight: bold;
  font-size: 22px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  line-height: 1.0;
  padding: 10px;
  z-index: 10;
}

.concept-box .point-circle .no {
  font-size: 42px;
  line-height: 1;
}

.concept-box .box-content {
  /* position: absolute; */
  /* top: 20px;
  left: 80px;
  right: 350px;
  bottom: 20px; */
  /* text-align: left; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* justify-content: center; */
  padding: 0;
}

.concept-box .box-content h3 {
  margin: 0 0 15px 0;
  font-weight: bold;
  color: #00bfa5;
  font-size: 2.8rem;
  line-height: 1.7;
}

.concept-box .box-content p {
  color: #666;
  font-size: 1.8rem;
  line-height: 1.9;
}

.concept-box .box-image {
  position: absolute;
  /* right: -57px; */
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 378px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

.concept-box .box-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-radius: 8px;
}

@media screen and (max-width: 992px) {

  .concept-box {
    padding: 40px 280px 40px 85px;
  }

  .concept-box .box-content h3 {
    font-size: 2.4rem;
    line-height: 1.7;
  }

  .concept-box .box-content p {
    font-size: 1.6rem;
  }

  .concept-box .box-image {
    width: 300px;
  }

}

@media screen and (max-width: 768px) {
  .concept-box-wrapper {
    flex-direction: column ;
    align-items: stretch ;
  }
  .concept-box {
    position: static ;
    flex-direction: column ;
    min-height: unset ;
    max-width: 100% ;
    width: 100% ;
    padding: 20px ;
    margin: 0 ;
    box-sizing: border-box;
  }
  
  .concept-box .point-circle {
    position: static ;
    margin: 0 auto 10px auto ;
    left: unset ;
    top: unset ;
    width: 80px ;
    height: 80px ;
    font-size: 16px ;
    gap: 3px;
  }
  .concept-box .point-circle .no {
    font-size: 32px;
  }
  .concept-box .box-content {
    position: static ;
    left: unset ;
    right: unset ;
    top: unset ;
    bottom: unset ;
    padding: 0 ;
    margin-bottom: 20px ;
    width: 100% ;
    max-width: 100% ;
  }
  .concept-box .box-content h3 {
    text-align: center;
  }
  .concept-box .box-image {
    position: static ;
    right: unset ;
    top: unset ;
    transform: none ;
    width: 100% ;
    height: auto ;
    margin: 0 auto ;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .concept-box .box-image img {
    max-width: 100% ;
    max-height: 180px ;
    object-fit: contain ;
    border-radius: 8px ;
  }
}

/* ---------------
  オールインワン施術セクション
------------------ */

/* ---------------
  TROUBLE
------------------ */
.trouble-list-wrapper {
  margin-top:40px;
}

.trouble-list {
  display:flex; 
  flex-wrap:wrap; 
  gap:24px; 
  justify-content:center;
}

.trouble-item {
  display:flex; 
  flex-direction: column;
  background:#5db4a6; 
  color:#fff; 
  border-radius:12px; 
  width:260px; 
  padding:20px;
}

.trouble-item .trouble-item-title {
  flex: 0 0 auto;
  font-weight:bold; 
  font-size:1.1em; 
  margin-bottom:12px;
}

.trouble-item .trouble-item-list {
  flex: 1 1 auto;
  background:#fff; 
  color:#736357; 
  border-radius:8px; 
  padding:12px;
}

.trouble-item ul {
  margin:0; 
  padding-left:1em;
}

/* ---------------
  予約セクション
------------------ */
.reservation-section {

}
.reservation-title {
  margin-bottom: 40px;
  position: relative;
}

.reservation-title-line {
  position: absolute;
  top: 40%; 
  width: 60px; 
  height: 2px; 
}

.reservation-title-line.reservation-title-line-left {
  left: 20%; 
  transform: rotate(45deg); 
}

.reservation-title-line.reservation-title-line-right {
  right: 20%; 
  transform: rotate(-45deg); 
}

.reservation-title-text {
  font-size: 32px; color: #5db4a6;
  font-weight: bold;
  margin: 0; 
  letter-spacing: 2px; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 1px #fff;
}

.reservation-web-button {
  margin-bottom: 10px;
}

.web-reservation-btn {
  display: inline-block;
  color: #ffffff;
  padding: 20px 80px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.web-reservation-btn:hover {
    background-color: #5db4a6;
    opacity: 0.8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
}

.reservation-phone {
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 10px;
  
}

.reservation-phone span{
  font-size: 66px;
  margin-right: 27px;
}

.reservation-phone .tel-number{
  font-size: 90px;
  color: #5db4a6;
}

.reservation-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.reservation-hours {
  border-radius: 12px;
  padding: 12px 24px;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 60px;
}

.reservation-hours h3 {
  font-size: 24px;
  font-weight: bold;
  color: #5a3b2e;
  min-width: 180px;
  margin-right: 22px;
  letter-spacing: 2px;
}

.reservation-hours .business-hour-row {
  display: flex;
  align-items: center; 
  gap: 12px;
}

.reservation-hours .business-hour-label {
  display: inline-block;
  background: #fff;
  color: #5a3b2e;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  padding: 2px 12px 2px 12px;
  margin-right: 4px;
  border: 1px solid #eee;
  width: 140px;
  box-sizing: border-box;
  text-align: center;
}

.reservation-hours .business-hour-time {
  font-size: 24px; 
  color: #5a3b2e; 
  font-weight: bold; 
  letter-spacing: 1px;
}

.reservation-character {
  margin-bottom: 40px;
}

.reservation-character img {
  max-width: 200px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .reservation-phone .tel-number{
    font-size: 70px;
  }
}


@media screen and (max-width: 768px) {

  .reservation-title-line {
      display: none;
  }
  .reservation-title-text {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 2.5px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 1px #fff;
      color: #5db4a6;
      padding: 0 8px;
  }
  .reservation-hours {
      flex-direction: column;
      min-height: unset;
      padding: 12px 8px;
  }

  .reservation-hours h3 {
    margin-right: 0;
  }
  .reservation-hours > div {
      margin-right: 0;
      min-width: unset;
      width: 100%;
      text-align: center;
      font-size: 18px;
  }
  .reservation-hours .business-hour-row {
      flex-direction: column;
      align-items: center;
      gap: 4px;
      margin-bottom: 8px;
  }
  .reservation-hours .business-hour-label {
      width: 100%;
      font-size: 16px;
      margin-bottom: 2px;
      padding: 2px 0;
  }
  .reservation-hours .business-hour-time {
      font-size: 20px;
  }
  .reservation-character img {
      max-width: 150px;
  }
  
  .web-reservation-btn {
      font-size: 18px;
      padding: 15px 50px;
  }
  
  .reservation-phone div {
      font-size: 32px;
  }
  
  .reservation-phone span {
      font-size: 28px;
      margin: 0;
  }
  .reservation-phone .tel-number{
    font-size: 42px;
  }
  .reservation-hours {
      padding: 20px;
  }
  
  .reservation-hours > div > div:first-child {
      font-size: 18px;
      min-width: auto;
      width: 100%;
      text-align: center;
      margin-bottom: 15px;
  }
  
  .reservation-hours > div > div:last-child {
      text-align: center;
  }
  
  .reservation-hours > div > div:last-child > div {
      font-size: 16px;
      margin-bottom: 10px;
  }
  
  .reservation-hours > div > div:last-child > div span:last-child {
      font-size: 18px;
  }
  
  .reservation-hours > div {
      flex-direction: column;
  }
}

@media screen and (max-width: 480px) {

  .reservation-phone .tel-number{
    font-size: 30px;
  }
}

/* ---------------
  アクセス
------------------ */
.aboutus-background {
  color: #74674b;
  max-width: 900px;
  padding: 50px 15px 20px;
  margin: 0 auto; 
}

.clinic-info {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 40px;
}

.clinic-info .clinic-header-wrapper {
  flex:0 0 auto;
  width: 100%;
  margin-bottom: 17px;
}

.clinic-info .clinic-header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.clinic-info .clinic-name {
  flex: 0 0 auto;
  font-size: 40px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 3px;
  white-space: nowrap;
}

.clinic-info .clinic-tags {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  width: auto;
  gap: 8px;
}

.clinic-info .insurance-tag,
.clinic-info .accident-tag {
  background-color: #74674b;
  color: #fff;
  font-weight: 600;
  padding: 5px 18px;
  font-size: 23px;
  line-height: 30px;
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap; /* PCなど広い画面では折り返さない */
}

.clinic-info .clinic-beds {
  font-size: 23px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ご予約・お問合せ */
.clinic-info .clinic-contact {
  flex: 0 1 auto;
  width: calc( 100% - 80px );
  display: flex;
  align-items: center;
  flex-wrap: wrap; 
  gap:20px; 
}

.clinic-info .contact-label {
  border: 2px solid #74674b;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
}

.clinic-info .contact-phone-wrap {
  flex: 0 1 auto;
  width: auto;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;

}
.clinic-info .contact-phone {
  font-size: 42px;
  line-height: 42px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 1px;
  color: #74674b;
}
.clinic-info .reservation-priority {
  font-size: 16px;
  line-height: 23px;
}

.clinic-info .icon-insta-wrapper {
  flex: 0 0 auto;
  width: 70px;
  text-align: right;
  margin: 0 0 0 auto;
}

.clinic-info .icon-insta {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  display: inline-block;
}

.clinic-info .contact-buttons-wrapper {
  flex: 0 1 auto;
  width: 100%;
  margin-top: 30px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 12px;
}


/* webyoyaku */
.contact-buttons .reservation-button2 {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 13px 40px 12px;
  border-radius: 34px;
  background-color: #3db4b5;
  color: #fff;
  font-size: 24px;
  line-height: 42px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  min-width: 314px;
  width: auto; 
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* line */
.contact-buttons .btn-line-link {
  display: block;
  width: 314px;
  height: auto;
  border-radius: 0;
  background: none;
}

.contact-buttons .btn-line-link:hover {   /*追加*/
  opacity: 0.8;
}

.contact-buttons .btn-line-img {
  /* height: 62px; */
  width: auto;
  display: block; 
}

.web-button-comment {
  font-size: 14px; 
  color: #4D4D4D;
}

.clinic-address {
  font-size: 17px;
  margin: 0;
}

.clinic-access {
  font-size: 20px;
  margin: 0 0 20px
 }

.clinic-map iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border:transparent;
}

@media screen and (max-width: 768px) {
  .aboutus-background {
    padding: 30px 30px 40px;
  }
  .clinic-info {

  }
  
  .clinic-info .clinic-header {
    display: block;
    width: 100% ;
    order: 1;
    margin-bottom: 5px;
  }

  .clinic-info .clinic-name {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .clinic-info .insurance-tag,
  .clinic-info .accident-tag {
    font-size: 16px;
  }

  .clinic-info  .clinic-beds {
    font-size: 14px;
  }

  /* ご予約・お問合せ */

  .clinic-info .clinic-contact {
    display: block;
    width: 100%;
    order: 2;
    margin-bottom: 20px;
  }

  .clinic-info .contact-label {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 10px;
  }

  .clinic-info .contact-phone-wrap {
    gap: 10px;
  }
  
  .clinic-info .reservation-priority {
    margin : 0;
    line-height: 28px;

  }

  .clinic-info .icon-insta-wrapper {
    order: 4;
    margin: 0;
    width: 60px;
  }

  .clinic-info .contact-buttons-wrapper {
    order: 3;
    width: 212px;
    max-width: calc( 100% - 70px );
    display: block;
    margin: 0 40px 0 0;
  }

  /* webyoyaku */
  .contact-buttons .reservation-button2 {
    width: 100%;
    min-width: inherit;
    font-size: 16px;
    line-height: 25px;
  }

  .web-button-comment {
    font-size: 11px;
  }
}

/* スマホ対応：ボタンを縦並びに */
@media screen and (max-width: 480px) {

  .clinic-info .clinic-name {
    font-size: 20px;
    white-space: nowrap;
  }

  .clinic-info .insurance-tag,
  .clinic-info .accident-tag {
    font-size: 12px;
  }



  .clinic-contact .reservation-priority {

  }

  .clinic-contact .reservation-priority {
    font-size: 14px;
    order: 1;
  }

  .cnt,
  .cnt iframe {
    box-sizing: border-box;
  }
  .cnt iframe {
    width: 100% !important;
    height: 260px !important;
    max-width: 100vw !important;
  }
  .cnt {
    width: 100% !important;
    overflow-x: auto;
  }

  .reservation-button {
    width: 90%;
    margin-bottom: 16px; /* ← 余白を明示的に指定 */
  }

  .accident-tag {
    white-space: normal; /* スマホなど狭い画面では折り返す */
  }

  .line-button img {
    height: 52px;
    display: block;
    margin: 0 auto;
  }

  .clinic-address {
    /* margin-top: 4em; */
    /*font-family: 'Zen Kaku Gothic', 'Helvetica Neue', Arial, sans-serif;*/
    font-weight: 500;
    font-size: 100%;
    color: #74674b;
    letter-spacing: 0.1em;
  }

  .clinic-access {
    margin-top: 1em;
    /*font-family: 'Zen Kaku Gothic', 'Helvetica Neue', Arial, sans-serif;*/
    font-weight: 500;
    font-size: 1.2em; /* = 120% */
    color: #74674b;
    letter-spacing: 0.1em;
  }

  .btn-line {
    width: 100%;
    height: auto;
  }

  .btn-line-img {
    width: 100%;
    height: auto;
  }

  .icon-insta {
    width: 96px ;
    height: 96px ;
    object-fit: contain ;
    margin-top: 0 ;
    vertical-align: middle ;
  }

 .icon-insta-wrapper {
    justify-content: center;
  }

  .reservation-button2,
  .btn-line-link {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*margin-top: -1px !important;*/
  }
}


/* ---------------
  採用情報
------------------ */
/* override */
.section-content.sc-recruit-intro {
  padding-top: 107px;
  padding-bottom: 86px;
}

.section-content.sc-recruit-intro .section-title-container{
  margin-bottom: 55px;
}

.recrui-intro-wrap {
  position: relative;
  z-index: 1;
}

.recrui-intro-wrap .intro-main-text {
  padding-right: 380px;
  font-size: 1.7rem;
  line-height: 1.65;
}

.recrui-intro-wrap .intro-massage-box {
  position: absolute;
  background-color: #fbecb9;
  top:36%;
  right: 24px;
  transform: translateY(-50%);
  width: 262px;
  height: 262px;
  border-radius: 9999px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recrui-intro-wrap .intro-massage-box p {
  font-size: 1.2rem;
  text-align: center;
}

.section-recruit-content-wrapper {
  background-color: #F0ECE7;
}

.section-recruit-content-wrapper + .section-recruit-content-wrapper {
  margin-top: 30px;
}

/* override */
.section-content.sc-recruit-list {
  padding-top: 66px;
  padding-bottom: 69px;
}

.recruit-category-title {
  background-color: transparent;
  color: #5db4a6;
  padding: 5px 20px;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  border-top: 2px solid #5db4a6;
  border-bottom: 2px solid #5db4a6;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 61px;
}

.recruit-panel-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 38px 3%;
}

.recruit-panel-wrap:not(:last-child) {
  margin-bottom: 166px;
}

.recruit-panel {
  background-color: #ffffff;
  padding: 0;
  width: 48.5%;
  box-sizing: border-box;
  font-size: 2.0rem;
  color: #000000;
  position: relative;
}

.recruit-panel:has(a):hover{
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.recruit-panel a {
  position: absolute;
  display: block;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.recruit-panel a:hover {
  opacity: 1.0;
}

.recruit-panel .recruit-panel-inner{
  display: block;
  padding: 29px 30px 20px;
  outline: 1px solid #7DB9A7;
  outline-offset: -5px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.recruit-panel .panel-row-top {
  flex: 1 1 auto;
  
}

.recruit-panel .panel-row-bottom {
  flex: 0 0 auto;
  min-height: 134px;
  margin-top: auto;
  border-top: 1px solid #7DB9A7;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

.recruit-panel .status {
  display: inline-block;
  background-color: #fbecb9;
  padding: 3px 20px;
  border-radius: 999px;
  margin:0 0 12px 0;
}

.recruit-panel .status.career {
  background-color: #85B8D0;
  color: #ffffff;
}

.recruit-panel .status.part {
  background-color: #C6B8A4;
  color: #ffffff;
}

.recruit-panel .title {
  font-weight: 700;
  padding: 0 15px;
}

.recruit-panel .description {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.6;
  padding: 0 15px;

}

.recruit-panel .salary {
  padding: 0 0 3px 35px;
  background: url(../documents/recruit_icon_salary.svg) no-repeat left top 6px;
  background-size: 23px;
}

.recruit-panel .place {
  padding: 0 0 0 35px;
  background: url(../documents/recruit_icon_place.svg) no-repeat left 2px top 4px;
  background-size: 20px 27px;
}

.recruit-panel .link {
  text-align: right;
}

.recruit-panel .view-more {
  margin-top: auto;
  color: #61A77D;
  padding: 0 33px;
  background: url(../documents/recruit_more_link_arrow.svg) no-repeat right 3px center;
  background-size: 18px;
  text-align: right;
  font-size: 1.7rem;
}

.recruit-panel .link a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 992px) {

  .recruit-panel-wrap {
    gap: 30px 3%;
  }

}

@media (max-width: 768px) {

  /* override */
  .section-content.sc-recruit-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-content.sc-recruit-intro .section-title-container{
    margin-bottom: 20px;
  }

  .recrui-intro-wrap .intro-main-text {
    padding-right: 0;
  }

  /* override */
  .section-content.sc-recruit-list {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .recruit-category-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .recrui-intro-wrap .intro-main-text {
    max-width:inherit;
    margin-bottom: 20px;
  }

  .recrui-intro-wrap .intro-massage-box {
    position: relative;
    margin: 0 auto;
    top: inherit;
    right: inherit;
    transform: inherit;
  }

  .recruit-panel-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .recruit-panel {
    width: 100%;
    font-size: 1.7rem;
  }

  .recruit-panel-wrap:not(:last-child) {
    margin-bottom: 40px;
  }

  .recruit-panel .title {
    padding: 0;
  }

  .recruit-panel .panel-row-bottom {
    min-height: inherit;
    padding-top: 10px;
  }

  .recruit-panel .description {
    padding: 0;
    margin-bottom: 10px;
  }

  .recruit-panel .salary {
    padding: 0 0 3px 30px;
    background: url(../documents/recruit_icon_salary.svg) no-repeat left top 5px;
    background-size: 20px;
  }

  .recruit-panel .place {
    padding: 0 0 0 30px;
    background: url(../documents/recruit_icon_place.svg) no-repeat left 2px top 4px;
    background-size: 17px;
  }

  .recruit-panel .link {
    text-align: right;
  }

  .recruit-panel .view-more {
    margin-top: 10px;
    padding: 0 28px;
    background: url(../documents/recruit_more_link_arrow.svg) no-repeat right 3px center;
    background-size: 18px;
    font-size: 1.7rem;

  }

}

