@charset "utf-8";

:root {
  --font-family-title: "Noto Serif", serif;
  --color-green1: #008b7f;
  --color-green2: #17a200;
  --color-orange: #ef3d12;
  --color-black1: #4d4d4d;
}

/*----------------------------------------------------------
Common
-----------------------------------------------------------*/
picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex.column2>* {
  width: 48%;
}

.flex>picture {
  display: block;
  overflow: hidden;
}

.flex>picture img {
  width: 100%;
  max-width: unset;
  height: 100%;
  object-fit: cover;
}

.flex.flex_re {
  flex-direction: row-reverse;
}

.txt_wrap {
  margin-bottom: 10px;
}

.caption {
  font-size: 80% !important;
}

.company_wrapper {
  width: 100%;
  font-feature-settings: "palt";
  line-height: 1.85;
  margin-bottom: 100px;
}

.company_wrapper p {
  line-height: 1.6;
  letter-spacing: 0.075em;
}

/* 矢印付きリンク */
.company_wrapper .btn_icon_arrow {
  display: block;
  position: relative;
  width: fit-content;
  margin-top: 10px;
  margin-left: auto;
  padding-right: 1.5em;
  font-size: 110%;
  font-weight: 600;
  color: #0080ff;
}

.company_wrapper .btn_icon_arrow::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 0em;
  transform: translate(0%, -50%);
  font-size: 1em;
  width: 1.05em;
  height: 1.05em;
  background: url(../images/icon_arrow.svg) center center no-repeat;
  background-size: contain;
}

.company_wrapper .btn_icon_arrow:hover,
.company_wrapper .btn_imgLink:hover {
  text-decoration: unset;
  opacity: 0.8;
}

.company_wrapper .btn_imgLink:hover {
  margin-top: 5px;
  padding-bottom: 5px;
  transition: 0.05s;
}

.company_wrapper .btn_imgLink:hover {
  text-decoration: unset;
  opacity: 0.8;
}

/* 画像付きリンク */
.company_wrapper .btn_imgLink {
  position: relative;
  display: block;
  overflow: visible;
  padding-bottom: 10px;
}

.company_wrapper .btn_imgLink::before {
  content: '';
  position: absolute;
  display: block;
  top: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  background: var(--color-green1);
  border-radius: 14px;
}

.company_wrapper .btn_imgLink .btn_inner {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: #e5f3f2;
  border-radius: 10px;
  overflow: hidden;
}

.company_wrapper .btn_imgLink .btn_inner::before {
  content: '';
  position: absolute;
  display: block;
  top: 1px;
  right: 1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(4deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.5) 90%);
  border-radius: 10px;
}

.company_wrapper .btn_imgLink .btn_inner::after {
  content: '';
  position: absolute;
  display: block;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(204, 232, 229, 1) 0%, rgba(204, 232, 229, 0) 35%);
  border-radius: 10px;
  mix-blend-mode: multiply;
}

.company_wrapper .btn_imgLink>* {
  width: 50%;
}

.company_wrapper .btn_imgLink>picture {
  display: block;
  overflow: hidden;
}

.company_wrapper .btn_imgLink>picture img {
  width: 100%;
  max-width: unset;
  height: 100%;
  object-fit: cover;
}

.company_wrapper .btn_imgLink .btn_icon_arrow {
  position: relative;
  margin: 20px 20px 20px auto;
  padding-left: 3em;
  font-size: 110%;
  letter-spacing: 0.12em;
  line-height: 1.25;
  z-index: 2;
}


/* 画像背景付き大見出し */
.contents_title_wrap {
  position: relative;
  margin-top: 30px;
  padding: 30px 0 20px;
  border-top: 6px solid var(--color-green1);
}

.contents_title_wrap hgroup {
  font-family: var(--font-family-title);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.contents_title_wrap hgroup .sub_title {
  display: block;
  color: var(--color-green1);
  /* letter-spacing: 0.075em; */
  margin-bottom: 6px;
  font-size: 102%;
  text-align: center;
  opacity: 0.85;
}

.contents_title_wrap hgroup .main_title {
  font-size: 180%;
  font-weight: 600;
  color: #534741;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-align: center;
}

.contents_title_wrap .txt_wrap {
  margin-top: 10px;
  padding: 26px 65px;
  font-size: 102%;
  text-align: center;
  letter-spacing: 0.075em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 1) 92%, rgba(255, 255, 255, 0) 100%);
}

.contents_title_wrap .txt_wrap p {
  text-align: center;
  line-height: 1.65;
  font-size: 100%;
}



/* 窓アイコン付きタイトルコンテンツ */
.company_wrapper .infod_con_wrap .title_txt {
  font-size: 133%;
  font-weight: 600;
  margin-bottom: 6px;
}

.company_wrapper .infod_con_wrap .box_wrap:not(:last-child) {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px dotted #a6a6a6;
}

.company_wrapper .infod_con_wrap p {
  font-size: 110%;
  letter-spacing: 0.045em;
}

.company_wrapper .infod_con_wrap p+p {
  margin-top: 14px;
}

.company_wrapper .infod_con {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1.26px solid var(--color-green1);
  padding: 0 0 4px;
  margin-top: 64px;
  margin-bottom: 15px;
}

.company_wrapper .infod_con.first {
  margin-top: 40px;
}

.company_wrapper .infod_con {
  margin-top: 64px;
}

.company_wrapper .infod_con .main_title {
  font-size: 109%;
}

.company_wrapper .infod_con .sub_title {
  font-family: var(--font-family-title);
  font-size: 87%;
  letter-spacing: 0.145em;
  color: var(--color-black1);
}

.company_wrapper .infod_con strong {
  font-weight: 500;
}

.company_wrapper .infod_con_wrap .title_txt {
  color: var(--color-green1);
}


/* スライド */
.swiper {
  position: relative;
  margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #777777;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75%;
  height: 100%;
  padding: 12px;
}

.swiper::before,
.swiper::after {
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.swiper::after {
  left: unset;
  right: 0%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: 5px;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: unset;
  border: 1.26px solid #777777;
}

.swiper-pagination-bullet-active {
  background: #777777;
}


/*-------------------------sp-------------------------------*/
@media screen and (max-width: 768px) {

  /*----------------------------------------------------------
  Common
  -----------------------------------------------------------*/
  .flex {
    flex-wrap: wrap;
  }

  .flex.column2>* {
    width: 100%;
  }

  /* .flex.flex_re {
    flex-direction: row-reverse;
  } */

  .txt_wrap {
    padding: 0;
  }

  .company_wrapper {
    margin-bottom: 70px;
  }

  .company_wrapper p {
    padding-bottom: 0;
  }

  .com_wrapper {
    padding: 0;
  }

  h2.t_left {
    margin-top: 35px;
    border-top: unset;
    letter-spacing: 0.05em;
  }

  h3::before,
  .company_wrapper .infod_con_wrap .title_txt::before,
  .contents_title_wrap hgroup .main_title::before,
  .company_wrapper .infod_con .main_title::before,
  .company_wrapper .infod_con_wrap .title_txt::after {
    content: unset;
  }


  /* 画像付きリンク */
  .company_wrapper .btn_imgLink .btn_icon_arrow {
    margin: 10px 10px 10px auto;
    letter-spacing: 0.1em;
  }


  /* 画像背景付き大見出し */
  .contents_title_wrap {
    padding: 28px 0 10px;
  }

  .contents_title_wrap hgroup .sub_title {
    font-size: 86%;
    margin: 0;
  }

  .contents_title_wrap hgroup .main_title {
    font-size: 165%;
    margin-bottom: 14px;
    padding: 6px 10px;
  }

  .contents_title_wrap .txt_wrap {
    padding: 7vw 7vw;
  }


  /* 窓アイコン付きタイトルコンテンツ */
  .company_wrapper .infod_con_wrap .title_txt {
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 8px;
  }

  .company_wrapper .infod_con {
    flex-wrap: wrap;
    border-bottom: unset !important;
  }

  .company_wrapper .infod_con:first-child {
    margin-top: 40px;
    margin-bottom: 8px;
  }

  .company_wrapper .infod_con .main_title {
    font-size: 109%;
    display: block;
    width: 100%;
    margin-bottom: 5px;
    border-bottom: 1.26px solid var(--color-green1);
  }

  .company_wrapper .infod_con .sub_title {
    padding: 0;
    font-size: 92%;
  }

  /* スライド */
  .swiper {
    position: relative;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
    width: 3%;
    padding: 0px;
  }

  .swiper::before,
  .swiper::after {
    width: 8%;
  }
}