@charset "UTF-8";

/* ====================================================

  Assorti Business Common PC Style

==================================================== */

/* ------------------------------------------

  Link Button 2

------------------------------------------ */
.link-btn02 {
  position: relative;
  z-index: 1;
  text-decoration: none;
  width: 380px;
  height: 70px;
  line-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-color: var(--green);
  border-style: solid;
  border-width: 2px;
  border-radius: 35px;
  background-color: var(--wht);
  /* transition: ease .2s; */
  overflow: hidden;
}
.link-btn02::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: var(--green);
  transition: all .3s;
}
.link-btn02::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--wht);
}
.link-btn02 i {
  /*
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  */
  width: 24px;
  height: 28px;
  display: inline-block;
  background-image: url(../images/icon_link.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.link-btn02:hover i { background-image: url(../images/icon_link_w.png); }
.link-btn02 span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #01746d;
  white-space: nowrap;
  display: inline-block;
}
.link-btn02:hover span { color: var(--wht); }
.link-btn02:hover::before { width: 100%; }
.link-btn02:hover { opacity: 1; }

/* ------------------------------------------

  Section

------------------------------------------ */

/* Section Common
------------------------------------------ */
section > figure { position: relative; }
section > figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 590px;
  height: 20px;
  background-color: var(--green);
  transform: skewX(15deg);
  transform-origin: 0 100%;
}
section > figure img {
  width: 100%;
  height: auto;
}
.green-line {
  position: relative;
  width: 590px;
  height: 20px;
  background-color: var(--green);
}
.green-line::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 20px 0;
  border-color: transparent #ffffff transparent transparent;
}
.intro {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: calc(90px + 20px) 0 0;
}
section:nth-of-type(even) .intro { flex-direction: row-reverse; }
.intro dl {
  width: calc(100% - calc(300 / 1200 * 100%));
  padding: 0 calc(250 / 1200 * 100%) 0 0;
}
section:nth-of-type(even) .intro dl { padding: 0 0 0 calc(150 / 1200 * 100%); }
.intro dl dt { margin: 0 0 50px; }
.sec-heading {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.sec-txt {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.075em;
  line-height: calc(40 / 18);
  white-space: pre-wrap;
}
.intro > figure { flex-shrink: 0; }

/* Section Inquiry */
.sec-inquiry {
  position: relative;
  width: 100%;
  height: calc(380 / 750 * 50vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--green);
}
.sec-inquiry ul {
  width: 50%;
  padding: 0 0 0 calc((100% - 1100px) / 2);
}
.sec-inquiry ul li p {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: calc(40 / 24);
  letter-spacing: 0.075em;
  color: var(--wht);
}
.sec-inquiry .link-btn02 { margin: 0; }
.sec-inquiry .link-btn02:hover { outline-color: var(--wht); }
.sec-inquiry > figure {
  position: relative;
  width: 50%;
  height: calc(380 / 750 * 50vw);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.sec-inquiry > figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(380 / 750 * 50vw) 0 0 calc(97 / 1500 * 100vw);
  border-color: transparent transparent transparent var(--green);
}

@media screen and (max-width:1024px) {
  section > figure::after { width: calc(590 / 1500 * 100vw); }
  .intro { margin: calc((90 + 20) / 1500 * 100%) 0 0; }
  .intro dl dt { margin: 0 0 calc(50 / 1500 * 100%); }
  .sec-heading { font-size: calc(48 / 1500 * 100vw); }
  .sec-inquiry ul { padding: 0 0 0 calc((100% - 90.666666%) / 2); }
  .sec-inquiry ul li p {
    font-size: 22px;
    font-size: 2.2rem;
  }
}