@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: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding: 0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * 下層ビジュアル
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メインビジュアル
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower
#visual {
  background: url("../../_images/business/visual.jpg?2026") no-repeat;
  background-size: cover;
}

/* ****************************************************************************************************
   * 事業内容
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.business {
  position: relative;
  background: #f7f1ed;
  padding-top: 100px;
  padding-bottom: 100px;
}
.business .body {
  max-width: 1120px;
  padding: 0 20px;
}

.business section ~ section {
  margin-top: 100px;
}

.business .title {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--c-brown);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:820px) {
  /*ブラウザの幅が736px以下の時*/
  .business section ~ section {
    margin-top: 50px;
  }
  .business .title {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-brown);
  }
}

/* ****************************************************************************************************
   * セクション
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.business .main-section {
  position: relative;
  min-height: 550px;
}
.business .section-1 .main-section .detail {
  min-width: 540px;
  width: 50%;
  margin-right: 0;
  margin-left: auto;
}
.business .section-2 .main-section .detail {
  min-width: 540px;
  width: 50%;
  margin-right: auto;
  margin-left: 0;
}

.business .main-section .detail .title {
  text-align: left;
}
.business .main-section .detail .title span {
  color: var(--c-orange);
}

.business .main-section .detail .text {
  font-size: 1.8rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  .business .section-1 .main-section .detail,
  .business .section-2 .main-section .detail {
    min-width: 100%;
    width: 100%;
    padding-top: 1em;
  }
  .business .main-section .detail .title {
    font-size: 2.0rem;
    line-height: 1.4;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 画像：セクション1
/* ------------------------------------------------------------------------------------------------- */

.business .section-1 .main-section picture {
  position: absolute;
  top: 0;
  width: calc( 50% - 50px );
  left: 0;
  border-radius: 0px 40px 40px 0px;
}
.business .section-1 .main-section picture img {
  width: 100%;
  height: 550px;
  overflow: hidden;
  object-fit: cover;
  border-radius: 0px 40px 40px 0px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  .business .section-1 .main-section picture {
    width: 100%;
    display: block;
    padding: 0 20px;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    left: 0;
    border-radius: 40px;
  }
  .business .section-1 .main-section picture img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 40px;
    position: relative;
    left: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:820px) {
  /*ブラウザの幅が736px以下の時*/
  .business .section-1 .main-section picture img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 20px;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 画像：セクション2
/* ------------------------------------------------------------------------------------------------- */

.business .section-2 .main-section picture {
  position: absolute;
  top: 0;
  width: calc( 50% - 50px );
  right: 0;
  border-radius: 40px 0px 0px 40px;
}
.business .section-2 .main-section picture img {
  width: 100%;
  height: 550px;
  overflow: hidden;
  object-fit: cover;
  border-radius: 40px 0px 0px 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  .business .section-2 .main-section picture {
    width: 100%;
    display: block;
    padding: 0 20px;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    right: 0;
    border-radius: 40px;
  }
  .business .section-2 .main-section picture img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 40px;
    position: relative;
    right: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:820px) {
  /*ブラウザの幅が736px以下の時*/
  .business .section-2 .main-section picture img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 20px;
  }
}




