@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left: 20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 2em;
}

#main-contents div.body {
  max-width: 100%;
  padding: 0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * ニュース・トピックス
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.topics {
  position: relative;
  margin-top: 180px;
  padding-bottom: 120px;
}
.topics .body {
  max-width: 1120px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .topics {
    margin-top: 140px;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .topics {
    margin-top: 100px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#main .topics .title {
  color: var(--c-black);
}
#main .topics .title::after {
  color: var(--c-orange);
  font-size: 4.0rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .topics .title::after {
    font-size: 2.0rem;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

.topics ul.list {
  max-width: 960px;
  margin: 50px auto 0;
  border-top: 1px solid #cccccc;
}
.topics ul.list li {
  border-bottom: 1px solid #cccccc;
}
.topics ul.list li a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1em 3em 1em 1em;
  transition: 0.3s;
  color: #333333;
}
.topics ul.list li a:hover {
  background: #f7da7b;
  opacity: 1;
}
.topics ul.list li a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--c-orange);
  border-right: solid 2px var(--c-orange);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin-top: -5px;
  transition: .2s;
}
.topics ul.list li a:hover::after {
  right: 0.4em;
}

.topics ul.list li a .meta {
  display: flex;
  max-width: 210px;
  margin-right: 2em;
}
.topics ul.list li .day {
  min-width: 6em;
  margin-right: 1em;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--c-orange);
}
.topics ul.list li .category {
  min-width: 100px;
  text-align: center;
  font-weight: bold;
  border: 1px solid var(--c-orange);
  border-radius: 60px;
  padding: 0 0.5em;
  font-size: 1.4rem;
  background: #fff;
}

.topics ul.list li .text {
  font-size: 1.6rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .topics ul.list li a {
    display: block;
  }
  .topics ul.list li a > div {
    display: flex;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.topics .link-btn {}

.topics .link-btn .btn {
  margin-right: auto;
  margin-left: auto;
  width: 240px;
  font-size: 1.6rem;
  padding: 0.6em 1em 0.6em 2em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .topics .link-btn .btn {
    margin-right: auto;
    margin-left: auto;
    width: 240px;
    padding: 0.6em 1em 0.6em 2em;
  }
}


/* ****************************************************************************************************
   * 事業内容
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.service {
  position: relative;
  z-index: 3;
}
.service .inner-bg {
  position: relative;
  width: calc(100% - 120px);
  margin-left: /*120px*/auto;
  margin-right: 0;
  max-width: 1480px;
  background: url("../../_images/index/service-bg.png") no-repeat;
  background-position: left;
  background-size: cover;
  border-radius: 60px 0 0 60px;
  height: 980px;
  display: flex;
}

.service .body {
  position: relative;
  max-width: 1400px;
  padding-top: 120px;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .service {
    position: relative;
    z-index: 3;
  }
  .service .inner-bg {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    background: url("../../_images/index/service-bg.png") no-repeat;
    background-position: left;
    background-size: cover;
    border-radius: 0;
    height: auto;
    display: block;
  }
  .service .body {
    position: relative;
    max-width: 1400px;
    padding-top: 60px;
    z-index: 1;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .service {
    position: relative;
    z-index: 3;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 共通カラム
/* ------------------------------------------------------------------------------------------------- */

.service .inner-bg::after {
  content: "";
  display: block;
  background: url("../../_images/index/service-staff.png?20260309") no-repeat;
  width: 558px;
  height: 408px;
  position: absolute;
  bottom: 0;
  right: 130px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  .service .inner-bg::after {
    width: 279px;
    height: 204px;
    background-size: 279px 204px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .service .inner-bg::after {
    width: 139px;
    height: 102px;
    background-size: 139px 102px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 右写真
/* ------------------------------------------------------------------------------------------------- */

.service .photo {
  position: absolute;
  top: -30px;
  right: 70px;
  width: calc(50% - 60px);
  z-index: 0;
}
.service picture {
  position: relative;
  display: block;
}
.service picture img {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .service .photo {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
  }
  .service picture {
    position: relative;
    display: block;
    margin-top: 1em;
  }
  .service picture img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 左内容
/* ------------------------------------------------------------------------------------------------- */

.service .detail {
  min-width: 600px;
  width: 44%;
  margin-left: 0;
  margin-right: auto;
}

.service .detail .content {
  margin-top: 90px;
  max-width: 540px;
}
.service .detail .subtitle {
  font-size: 3.3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}
.service .detail .text {
  margin-top: 60px;
  color: #fff;
  font-weight: bold;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .service .detail {
    min-width: 100%;
    width: 100%;
    padding-top: 40px;
    margin-left: 0;
    margin-right: auto;
  }
  .service .detail .content {
    margin-top: 1em;
    max-width: 100%;
  }
  .service .detail .subtitle {
    font-size: 2.2rem;
  }
  .service .detail .text {
    margin-top: 1em;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.service .link-btn {
  text-align: right;
}
.service .link-btn .btn {
  margin-right: 0;
  margin-left: auto;
}
.service .link-btn .btn ~ .btn {
  margin-top: 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .service .link-btn {
    text-align: center;
  }
  .service .link-btn .btn {
    margin-right: auto;
    margin-left: auto;
  }
}


/* ****************************************************************************************************
   * 取扱メーカー
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.manufacturers {
  position: relative;
  padding-top: 180px;
  padding-bottom: 160px;
}
.manufacturers::before {
  content: "";
  display: block;
  background: url("../../_images/index/manufacturers-1.png?20260309") no-repeat;
  width: 311px;
  height: 562px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.manufacturers::after {
  content: "";
  display: block;
  background: url("../../_images/index/manufacturers-2.png?20260309") no-repeat;
  width: 313px;
  height: 543px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.manufacturers .body {
  position: relative;
  max-width: 960px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1080px) {
  /*ブラウザの幅が736px以下の時*/
  .manufacturers::before {
    width: 155px;
    height: 281px;
    background-size: 155px 281px;
  }
  .manufacturers::after {
    width: 156px;
    height: 271px;
    background-size: 156px 271px;
  }
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .manufacturers {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .manufacturers::before {
    width: 77px;
    height: 140px;
    background-size: 77px 140px;
    position: absolute;
    top: 0;
    left: 10px;
    transform: translateY(0);
  }
  .manufacturers::after {
    width: 78px;
    height: 135px;
    background-size: 78px 135px;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 10px;
    transform: translateY(0);
    z-index: -1;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#main .manufacturers .title-area {
  text-align: center;
}

#main .manufacturers .title {
  color: var(--c-black);
  text-align: center;
}
#main .manufacturers .title::after {
  color: var(--c-orange);
}

/* ----------------------------------------------------------------------------------------------------
   * リード文
/* ------------------------------------------------------------------------------------------------- */

.manufacturers .lead {
  margin-top: 90px;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .manufacturers .lead {
    margin-top: 40px;
    text-align: left;
  }
}


/* ****************************************************************************************************
   * よくあるご質問
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.faq {
  position: relative;
}
.faq .inner-bg {
  position: relative;
  width: calc(100% - 160px);
  margin-right: 160px;
  max-width: 1440px;
  background: url("../../_images/index/faq-bg.png") no-repeat;
  background-size: cover;
  border-radius: 0 60px 60px 0;
  display: flex;
}
.faq .body {
  position: relative;
  max-width: 1120px;
  padding-top: 80px;
  padding-bottom: 90px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .inner-bg {
    position: relative;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    background: url("../../_images/index/faq-bg.png") no-repeat;
    background-size: cover;
    border-radius: 0 60px 60px 0;
    display: flex;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .inner-bg {
    position: relative;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    background: url("../../_images/index/faq-bg.png") no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 0 60px 60px 0;
    display: block;
  }
  .faq .body {
    position: relative;
    max-width: 1120px;
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#main .faq .title {
  color: var(--c-black);
}
#main .faq .title::after {
  color: var(--c-orange);
}

/* ----------------------------------------------------------------------------------------------------
   * カラム
/* ------------------------------------------------------------------------------------------------- */

.faq .detail {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
}
.faq .detail::before {
  content: "";
  display: block;
  background: url("../../_images/index/qa-staff.png?20260309") no-repeat;
  width: 410px;
  height: 550px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -160px;
}

.faq .detail .content {
  max-width: 750px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .detail {
    position: relative;
    display: block;
    justify-content: space-between;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .faq .detail::before {
    content: "";
    display: block;
    background: url("../../_images/index/qa-staff.png?20260309") no-repeat;
    width: 205px;
    height: 275px;
    background-size: 205px 275px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    margin-left: 0;
  }
  .faq .detail .content {
    max-width: 100%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .detail::before {
    content: "";
    display: block;
    background: url("../../_images/index/qa-staff.png") no-repeat;
    width: 97px;
    height: 144px;
    background-size: 97px 144px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    margin-left: 0;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 質問内容
/* ------------------------------------------------------------------------------------------------- */

.faq .faq-list {
  margin-top: 50px;
}
.faq .faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.faq .faq-item ~ .faq-item {
  margin-top: 30px;
}


.faq .faq-list .faq-item .title-2 {
  position: relative;
  min-height: 80px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  padding: 12px 0;
  padding-left: 50px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.faq .faq-list .faq-item .title-2::before {
  content: "Q.";
  display: block;
  font-size: 3.0rem;
  color: var(--c-orange);
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 4px;
}

.faq .faq-list .faq-item .content {}

.faq .faq-list .faq-item .content > div { 
  position: relative;
  color: #333;
  padding-top: 20px;
  padding-left: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
  border-radius: 20px;
  font-size: 1.6rem;
}
.faq .faq-list .faq-item .content > div::before {
  content: "A.";
  display: block;
  font-size: 3.0rem;
  color: #1371b0;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 12px;
}
.faq .faq-list .faq-item .content > div p {
  margin: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .faq-list {
    margin-top: 20px;
  }
  .faq .faq-item {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  }
  .faq .faq-item ~ .faq-item {
    margin-top: 10px;
  }
  
  .faq .faq-list .faq-item .title-1 {
    position: relative;
    font-size: 1.6rem;
    padding-bottom: 20px;
    padding-left: 40px;
  }
  .faq .faq-list .faq-item .content > div {
    position: relative;
    font-size: 1.4rem;
    padding-left: 40px;
    padding-bottom: 0;
    margin: 0 auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.faq .link-btn {
  margin-top: 30px;
  text-align: right;
}
.faq .link-btn .btn {
  margin-right: 0;
  margin-left: auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .faq .link-btn {
    margin-top: 30px;
    text-align: center;
  }
  .faq .link-btn .btn {
    margin-right: auto;
    margin-left: auto;
  }
}

/* ****************************************************************************************************
   * 数字で見る
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.data {
  position: relative;
  margin-top: 130px;
  padding-bottom: 130px;
}
.data .body {
  max-width: 1120px;
}

.data .inner {
  margin-left: 0;
  margin-right: auto;
  padding-right: 60px;
  max-width: 600px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1500px) {
  /*ブラウザの幅が736px以下の時*/
  .data {
    padding-bottom: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .data {
    position: relative;
    margin-top: 0;
    padding-bottom: 60px;
  }
  .data .inner {
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    max-width: 100%;
    max-width: 750px;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.data .photo {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 50px;
  width: calc(50% - 50px);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .data .photo {
    position: relative;
    top: 0;
    right: 0;
    padding: 0 20px;
    margin: 40px auto 0;
    text-align: center;
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.data .inner .detail {
  margin-top: 40px;
  max-width: 470px;
}
.data .inner .detail .text {
  font-size: 1.6rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .data .inner .detail {
    margin-top: 20px;
    max-width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#main .data .title {
  color: var(--c-black);
}
#main .data .title::after {
  color: var(--c-orange);
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.data .link-btn {}

/* ****************************************************************************************************
   * 会社案内
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.company {
  position: relative;
  background: url("../../_images/index/company-bg.png") no-repeat;
  background-position: bottom;
  background-size: contain;
  margin-top: 130px;
  padding-bottom: 300px;
}
.company .body {
  max-width: 1120px;
}

.company .inner {
  margin-right: 0;
  margin-left: auto;
  padding-left: 60px;
  max-width: 600px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .company {
    position: relative;
    background: url("../../_images/index/company-bg.png") no-repeat;
    background-position: bottom;
    background-size: contain;
    margin-top: 0;
    padding-bottom: 7em !important;
  }
  .company .inner {
    margin-top: 1em;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    max-width: 100%;
    max-width: 750px;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.company .photo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 50px;
  width: calc(50% - 50px);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .company .photo {
    position: relative;
    top: 0;
    left: 0;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.company .inner .detail {
  margin: 40px auto 0;
  max-width: 470px;
}
.company .inner .detail .text {
  font-size: 1.6rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .company .inner .detail {
    margin: 20px auto 0;
    max-width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#main .company .title {
  color: var(--c-black);
}
#main .company .title::after {
  color: var(--c-orange);
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.company .link-btn {}

.company .link-btn .btn ~ .btn {
  margin-top: 20px;
}
.company .link-btn .btn {
  width: 100%;
  background: var(--gradient-y-left);
  padding: 0.6em 1em 0.6em 2em;
}

.company .link-btn .btn span {
  background: #fff;
}
.company .link-btn .btn span::after {
  border-color: var(--c-orange);
}

.company .link-btn .btn:hover {
  background: var(--c-black);
  color: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .company .link-btn .btn {
    width: 300px;
  }
}


/* ****************************************************************************************************
   * 採用情報
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.recruit {
  position: relative;
  margin-top: -80px;
  padding-bottom: 100px;
  z-index: 3;
}
.recruit .body {
  position: relative;
  max-width: 1440px;
  background: url("../../_images/index/recruit-bg.png") no-repeat;
  height: 1280px;
  z-index: 1;
  padding-top: 120px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1440px) {
  /*ブラウザの幅が736px以下の時*/
  .recruit {
    position: relative;
    margin-top: -60px;
    z-index: 3;
  }
  .recruit .body {
    position: relative;
    max-width: 100%;
    background: url("../../_images/index/recruit-bg.png") no-repeat;
    height: auto;
    z-index: 1;
    padding-top: 60px;
    border-radius: 60px;
  }
  .recruit .body .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

#main .recruit .title-area {
  text-align: center;
}

.recruit .lead {
  margin-top: 60px;
  text-align: center;
}
.recruit .subtitle {
  font-size: 3.3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}

.recruit picture {
  display: block;
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .recruit .lead {
    margin-top: 1em;
    text-align: center;
  }
  .recruit .subtitle {
    font-size: 2.2rem;
  } 
  .recruit picture {
    display: block;
    margin-top: 1em;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ナビエリア
/* ------------------------------------------------------------------------------------------------- */

.recruit .nav-area {
  max-width: 1080px;
  margin: 0 auto;
}
.recruit .nav-area ul {
  justify-content: center;
}
.recruit .nav-area ul li {
  width: 32%;
  padding: 0;
}
.recruit .nav-area ul li:nth-child(n+4) {
  margin-top: 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .recruit .nav-area ul {
    justify-content: center;
  }
  .recruit .nav-area ul li {
    width: 48%;
    padding: 0;
  }
  .recruit .nav-area ul li:nth-child(n+3),
  .recruit .nav-area ul li:nth-child(n+4) {
    margin-top: 20px;
  }

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .recruit .nav-area ul li {
    width: 100%;
    padding: 0;
  }
  .recruit .nav-area ul li:nth-child(n+2),
  .recruit .nav-area ul li:nth-child(n+4) {
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.recruit .nav-area .title-2 {
  font-size: 1.6rem;
}
.recruit .nav-area .title-2::after {
  content: attr(data-txt);
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  color: var(--c-orange);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .recruit .nav-area .title-2 {
    font-size: 1.4rem;
  }
  .recruit .nav-area .title-2::after {
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.recruit .nav-area .btn {
  border-radius: 20px;
  padding: 1.5em;
  width: 330px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1080px) {
  /*ブラウザの幅が736px以下の時*/
  .recruit .nav-area .btn {
    border-radius: 20px;
    padding: 1em;
    width: 100%;
    max-width: 330px;
  }
}

