@charset "UTF-8";
/* ==========================================================================//
//
// 事業を知る
//
// ========================================================================== */
body {
  --page_color: #D9BA4C;
}

.page_body {
  position: relative;
  background-color: #D9BA4C;
  overflow: hidden;
}
.page_body::before {
  position: absolute;
  content: "";
  top: 332px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/service/bg_deco_sp.svg);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
@media all and (min-width: 751px) {
  .page_body::before {
    top: 62px;
    background-image: url(../../images/service/bg_deco_pc.svg);
  }
}

/* intro
---------------------------------------------------------- */
.intro {
  padding-top: 56px;
}
@media all and (min-width: 751px) {
  .intro {
    padding-top: 100px;
  }
}
.intro .lead {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
}
@media all and (max-width: 750px) {
  .intro .lead {
    letter-spacing: -0.04em;
  }
}
@media all and (min-width: 751px) {
  .intro .lead {
    text-align: center;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .intro .lead {
    font-size: 18px;
  }
}
.intro .link_list {
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
  margin-top: 67px;
}
@media all and (min-width: 751px) {
  .intro .link_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
    margin-top: 87px;
  }
}
.intro .link_list > li {
  counter-increment: number 1;
  text-align: center;
}
@media all and (max-width: 750px) {
  .intro .link_list > li {
    width: min(400px, 100%);
  }
}
@media all and (min-width: 751px) {
  .intro .link_list > li {
    width: 31.2%;
  }
}
.intro .link_list > li a {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 6px;
  padding: 50px 40px 40px;
}
.intro .link_list > li a::before {
  position: absolute;
  content: counter(number, decimal-leading-zero);
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  color: #F7AD00;
  font-size: 24px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  aspect-ratio: 1;
  width: 55px;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.intro .link_list > li a::after {
  position: absolute;
  content: "";
  background-image: url(../../images/common/icon/arrow_orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 250/143;
  width: 16px;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (hover: hover) {
  .intro .link_list > li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .intro .link_list > li a:hover {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.intro .link_list > li .ttl {
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  margin-top: 1em;
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .intro .link_list > li .ttl {
    font-size: 18px;
  }
}
.intro .tx {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.69;
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .intro .tx {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 32px;
  }
}

/* section共通
---------------------------------------------------------- */
section {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}
@media all and (min-width: 751px) {
  section {
    padding: 100px 0;
  }
}
section::before {
  position: absolute;
  content: "";
  background-color: #222222;
  opacity: 0.1;
  top: 186px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media all and (min-width: 751px) {
  section::before {
    top: 450px;
  }
}
@media all and (min-width: 751px) {
  section .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 751px) {
  section .main_image {
    width: 57.14vw;
  }
}
section .sec_ttl {
  color: #fff;
  background-color: #222222;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  letter-spacing: -0.01em;
  padding: 12px 32px;
}
@media all and (min-width: 751px) {
  section .sec_ttl {
    font-size: 32px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  section .sec_ttl {
    font-size: 26px;
  }
}
section .texts {
  position: relative;
  margin-top: -26px;
}
@media all and (min-width: 751px) {
  section .texts {
    width: 50%;
    margin-top: 53px;
  }
}
section .texts .text {
  text-shadow: 1px 1px 0 #D9BA4C, -1px -1px 0 #D9BA4C, -1px 1px 0 #D9BA4C, 1px -1px 0 #D9BA4C, 0px 1px 0 #D9BA4C, 0 -1px 0 #D9BA4C, -1px 0 0 #D9BA4C, 1px 0 0 #D9BA4C;
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  section .texts .text {
    margin-top: 32px;
  }
}
section .texts .text .bold {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  section .texts .text .bold {
    font-size: 20px;
  }
}
section .texts .text .tx {
  font-size: 13px;
  line-height: 1.69;
  letter-spacing: -0.02em;
}
@media all and (min-width: 751px) {
  section .texts .text .tx {
    font-size: 16px;
  }
}
section .description {
  background-color: #fff;
  border-radius: 3px;
  padding: 20px;
  margin-top: 16px;
}
@media all and (min-width: 751px) {
  section .description {
    border-radius: 6px;
    padding: 40px;
    margin-top: 32px;
  }
}
section .description .heading {
  text-align: center;
  color: #F7AD00;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  section .description .heading {
    font-size: 20px;
  }
}
section .description ul {
  margin-top: 4px;
}
@media all and (min-width: 751px) {
  section .description ul {
    margin-top: 14px;
  }
}
section .description ul > li {
  border-bottom: 1px solid rgba(247, 173, 0, 0.5);
  padding: 6px 0;
  text-indent: -1em;
  padding-left: 1em;
}
section .description ul > li::before {
  content: "・";
  color: #F7AD00;
}
section:nth-of-type(odd) .main_image {
  margin-left: calc(50% - 50vw);
}
@media all and (min-width: 751px) {
  section:nth-of-type(odd) .main_image {
    margin-right: -7.14vw;
  }
}
section:nth-of-type(odd) .main_image img {
  border-radius: 0 50px 0 0;
}
@media all and (min-width: 751px) {
  section:nth-of-type(odd) .main_image img {
    border-radius: 0 100px 0 0;
  }
}
@media all and (min-width: 751px) {
  section:nth-of-type(even) .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
section:nth-of-type(even) .main_image {
  margin-right: calc(50% - 50vw);
}
@media all and (min-width: 751px) {
  section:nth-of-type(even) .main_image {
    margin-left: -7.14vw;
  }
}
section:nth-of-type(even) .main_image img {
  border-radius: 50px 0 0 0;
}
@media all and (min-width: 751px) {
  section:nth-of-type(even) .main_image img {
    border-radius: 100px 0 0 0;
  }
}

/* concept
---------------------------------------------------------- */
.concept {
  margin-top: 34px;
}
@media all and (min-width: 751px) {
  .concept {
    margin-top: 80px;
  }
}
.concept .concept_ttl {
  text-align: center;
  color: #fff;
  background-color: #222222;
  margin-inline: auto;
  font-size: 19px;
  line-height: 1.57;
  letter-spacing: -0.01em;
  padding: 12px;
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .concept .concept_ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 32px;
    padding: 12px 32px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .concept .concept_ttl {
    font-size: 26px;
  }
}
.concept .link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media all and (min-width: 751px) {
  .concept .link_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
  }
}
@media all and (max-width: 750px) {
  .concept .link_list > li {
    width: min(400px, 100%);
  }
}
@media all and (min-width: 751px) {
  .concept .link_list > li {
    width: 22.6%;
  }
}
.concept .link_list > li a {
  display: block;
}
@media (hover: hover) {
  .concept .link_list > li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .concept .link_list > li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.concept .concept_item {
  border-radius: 6px;
  padding: 20px;
  margin-top: 90px;
}
@media all and (min-width: 751px) {
  .concept .concept_item {
    padding: 60px;
    margin-top: 40px;
  }
}
.concept .concept_item .concept_cont {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 15px;
}
@media all and (min-width: 751px) {
  .concept .concept_item .concept_cont {
    padding: 40px;
  }
}
.concept .concept_item .logo {
  width: min(220px, 87.7%);
  margin-inline: auto;
  margin-bottom: 20px;
}
@media all and (max-width: 750px) {
  .concept .concept_item .logo {
    margin-top: -76px;
  }
}
@media all and (min-width: 751px) {
  .concept .concept_item .logo {
    width: 75%;
    margin-bottom: 40px;
  }
}
.concept .concept_item .tx {
  line-height: 1.69;
}
@media all and (min-width: 751px) {
  .concept .concept_item .tx {
    line-height: 1.875;
  }
}
.concept .concept_item .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 15px;
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .concept .concept_item .list {
    gap: 20px;
  }
}
.concept .concept_item .list > li {
  width: calc((100% - 15px) / 2);
}
@media all and (min-width: 751px) {
  .concept .concept_item .list > li {
    width: calc((100% - 60px) / 4);
  }
}
.concept .concept_item .list > li p {
  font-size: 12px;
  line-height: 1.66;
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .concept .concept_item .list > li p {
    margin-top: 12px;
  }
}
.concept .concept_item .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.concept .concept_item .bg_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.concept .concept_item.tottekiya {
  background-color: #4065a5;
  background-image: url(../../images/service/tottekiya_bg_deco.svg);
  background-size: 80px 138px;
}
@media all and (min-width: 751px) {
  .concept .concept_item.tottekiya {
    background-size: 128px 222px;
  }
}
@media all and (min-width: 751px) {
  .concept .concept_item.tottekiya .logo {
    width: 84.6%;
  }
}
.concept .concept_item.ufo {
  background-color: #faea2d;
  background-image: url(../../images/service/ufo_bgdeco_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (min-width: 751px) {
  .concept .concept_item.ufo {
    background-image: url(../../images/service/ufo_bgdeco_pc.webp);
  }
}
.concept .concept_item.toretoreya {
  background-color: #d93545;
  background-image: url(../../images/service/toretoreya_bgdeco_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (min-width: 751px) {
  .concept .concept_item.toretoreya {
    background-image: url(../../images/service/toretoreya_bgdeco_pc.webp);
  }
}
.concept .concept_item.tamanokuni {
  background-color: #6f8d59;
  background-image: url(../../images/service/tamanokuni_bgdeco_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (min-width: 751px) {
  .concept .concept_item.tamanokuni {
    background-image: url(../../images/service/tamanokuni_bgdeco_pc.webp);
  }
}