@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.eye-catch {
  margin-bottom: 80px;
  width: 100%;
}
.eye-catch picture {
  width: 100%;
}
.eye-catch picture img {
  width: 100%;
  height: auto;
}

.under_black {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.under_black::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 10px;
  background-color: #474747;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
}

section[class^=con] {
  margin: 0;
  width: 100%;
  padding: 130px 0;
}

h1 {
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
}

/*-------------content 1 --------------*/
.con1 {
  position: relative;
}
.con1 .con1_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.con1 .con1_box .left_img {
  position: absolute;
  width: 1305px;
  aspect-ratio: 1305/563;
  background-image: url(../images/con1-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 50%;
  bottom: 0;
}
.con1 .con1_box div:nth-child(2) {
  width: 50%;
}
.con1 .con1_box div:nth-child(2) h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1em;
}
.con1 .con1_box div:nth-child(2) p {
  line-height: 2rem;
  font-size: 1.2rem;
}

.con2 {
  background-image: url(../images/con2_bg.jpg);
  background-size: cover;
}
.con2 .con2_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.con2 .con2_box figure {
  width: 50%;
}
.con2 .con2_box figure img {
  width: 100%;
}
.con2 .con2_box div {
  width: 40%;
}
.con2 .con2_box div h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2em;
}
.con2 .con2_box div h3 span {
  font-size: 3rem;
  margin: 0 1rem;
  position: relative;
  z-index: 2;
  display: inline;
}
.con2 .con2_box div h3 span:before {
  content: "";
  position: absolute;
  width: 110%;
  height: 1.3rem;
  background-color: #ffd2ab;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.con2 .con2_box div p {
  font-size: 1.2rem;
}

.con3 {
  background-color: #E9F4FF;
}

.con3_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.con3_box div {
  width: 40%;
}
.con3_box div h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  background-color: #0682FF;
  padding: 0 5px;
  margin-bottom: 1rem;
  display: inline;
}
.con3_box div h3 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1em;
}
.con3_box div p {
  font-size: 1.2rem;
  margin-bottom: 2em;
}
.con3_box div button {
  margin: auto;
  display: block;
  padding: 5px 0;
  width: 90%;
  max-width: 240px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  border: solid 3px #0682FF;
}
.con3_box div button a {
  color: #0682FF;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
}
.con3_box figure {
  width: 50%;
}
.con3_box figure img {
  width: 100%;
}

.con4 {
  padding-bottom: 0px !important;
}
.con4 h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
}
.con4 dl {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.con4 dl dt {
  background-color: #0682FF;
  color: #fff;
  font-size: 2rem;
  padding: 10px 0;
  font-weight: bold;
}
.con4 dl dd {
  padding: 2rem 1rem;
  background-color: #e9f4ff;
}
.con4 dl dd strong {
  font-size: 1.8rem;
  margin-bottom: 1em;
  display: block;
}
.con4 dl dd p {
  font-size: 1.3rem;
  line-height: 2rem;
  margin-bottom: 1em;
}
.con4 dl dd small {
  font-size: 90%;
}
.con4 figure img {
  display: block;
  margin: auto;
}

.con5 h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
}
.con5 figure {
  margin-bottom: 2rem;
}
.con5 figure img {
  display: block;
  margin: auto;
}
.con5 h4 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.con5 p {
  text-align: center;
  font-size: 1.2rem;
}

.con5 table {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 130px;
}
.con5 table thead {
  background-color: #F39C37;
}
.con5 table thead tr th {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
.con5 table tr td:nth-child(1) {
  text-align: center;
  background-color: #FFF3D6;
  font-size: 1.3rem;
  width: 30%;
}
.con5 table tr td:nth-child(2) {
  padding: 1em;
  font-size: 1.3rem;
  text-align: left;
  width: 70%;
}/*# sourceMappingURL=lp_service.css.map */