@charset "UTF-8";
/* 基本設定 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/Poppins-Regular.woff2") format("woff2"), url("../webfonts/Poppins-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  font-style: normal;
  font-weight: 100;
  src: url("../webfonts/Antonio-Thin.woff2") format("woff2"), url("../webfonts/Antonio-Thin.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/Inter-Regular.woff2") format("woff2"), url("../webfonts/Inter-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/Inter-Bold.woff2") format("woff2"), url("../webfonts/Inter-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/CormorantGaramond-Light.woff2") format("woff2"), url("../webfonts/CormorantGaramond-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/NotoSansJP-Light.woff2") format("woff2"), url("../webfonts/NotoSansJP-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/NotoSansJP-Regular.woff2") format("woff2"), url("../webfonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/NotoSansJP-Medium.woff2") format("woff2"), url("../webfonts/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
/*============================================
	― 変数設定
=============================================*/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 GLOBAL 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
html {
  font-size: 62.5%;
}

@media screen and (width >= 1024px) and (width <= 1280px) {
  html {
    font-size: 60%;
  }
}
@media screen and (width >= 768px) and (width <= 1023px) {
  html {
    font-size: 56%;
  }
}
@media screen and (width <= 767px) {
  html {
    font-size: 53%;
  }
}
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
      ― スマホ表示切り替え
  =============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 1px;
}

.toppage h2 .catch {
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  letter-spacing: 0.3rem;
  font-size: 4.5rem;
}
.toppage .sentence p {
  color: #565656;
  font-weight: 400;
  line-height: 2;
  font-size: 1.9rem;
}
.toppage .button.grade a {
  position: relative;
  color: #fff;
  background: linear-gradient(45deg, #2192d9 0%, #21c0d8 55%, #52cca3 100%);
  border-radius: 10rem;
  box-shadow: rgba(99, 145, 144, 0.2) 0px 7px 29px 0px;
  text-align: center;
  padding: 3rem 7.25rem 2rem 6rem;
}
.toppage .button.grade a .catch {
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #ffffff 0%, #def5f9 55%, #ecfff9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
}
.toppage .button.grade a .arrow {
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 3rem;
  height: 3rem;
}
.toppage .button.grade a .arrow img {
  width: 60%;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .toppage h2 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3rem;
    font-size: 4.5rem;
  }
  .toppage .sentence p {
    line-height: 1.8;
    font-size: 1.75rem;
  }
  .toppage .button.grade a {
    border-radius: 10rem;
    text-align: center;
    padding: 3rem 7rem 2rem 5.75rem;
  }
  .toppage .button.grade a .catch {
    line-height: 1;
    font-size: 2.45rem;
  }
  .toppage .button.grade a .arrow {
    border-radius: 50%;
    right: 1.5rem;
    top: 50%;
    transform: translate(0, -50%);
    width: 2.75rem;
    height: 2.75rem;
  }
  .toppage .button.grade a .arrow img {
    width: 60%;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .toppage h2 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3rem;
    font-size: 4rem;
  }
  .toppage .sentence p {
    line-height: 1.8;
    font-size: 1.6rem;
  }
  .toppage .button.grade a {
    border-radius: 10rem;
    text-align: center;
    padding: 3rem 6rem 2rem 4.75rem;
  }
  .toppage .button.grade a .catch {
    line-height: 1;
    font-size: 2.45rem;
  }
  .toppage .button.grade a .arrow {
    border-radius: 50%;
    right: 1.5rem;
    top: 50%;
    transform: translate(0, -50%);
    width: 2.75rem;
    height: 2.75rem;
  }
  .toppage .button.grade a .arrow img {
    width: 60%;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .toppage h2 .catch {
    letter-spacing: 0.3rem;
    font-size: 5.25vw;
  }
  .toppage .sentence p {
    line-height: 1.8;
    font-size: 3.75vw;
  }
  .toppage .button.grade a {
    border-radius: 10rem;
    text-align: center;
    padding: 3rem 6rem 2.5rem 4.75rem;
  }
  .toppage .button.grade a .catch {
    line-height: 1;
    font-size: 4.5vw;
  }
  .toppage .button.grade a .arrow {
    border-radius: 50%;
    right: 1.5rem;
    top: 50%;
    transform: translate(0, -50%);
    width: 3.75vw;
    height: 3.75vw;
  }
  .toppage .button.grade a .arrow img {
    width: 60%;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* modules */
/* =========================================================

ABOUT LIGHTSUN

========================================================= */
.about-lightsun {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  padding: 3rem 2% 3rem 2%;
  margin: 0 auto 0;
}
.about-lightsun .visual {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.35;
}
.about-lightsun .visual img {
  width: 100%;
  height: auto;
}
.about-lightsun .container {
  position: relative;
  z-index: 1;
  padding: 5rem 0 5rem 0;
}
.about-lightsun .container .en-back {
  font-family: "Poppins";
  font-weight: 400;
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  font-size: 14rem;
  letter-spacing: 1rem;
  opacity: 0.8;
  margin: 0 0 0 -1rem;
}
.about-lightsun .container h2 {
  margin: -1rem 0 0 0;
  display: flex;
  align-items: center;
}
.about-lightsun .container h2::before {
  content: "";
  background: linear-gradient(45deg, #2192d9 0%, #21c0d8 55%, #52cca3 100%);
  height: 2px;
  width: 11rem;
  margin: 0 1rem 0 0;
}
.about-lightsun .container .sentence {
  padding: 6rem 10rem 6rem 13rem;
}
.about-lightsun .container .button {
  text-align: right;
  padding: 0 10rem 0;
}
.about-lightsun .container .visual {
  width: 100%;
  opacity: 0.7;
}
.about-lightsun .container .visual img {
  width: 100%;
  height: auto;
}

/* -----------------------------------
Responsive: 1281–1440 (Middle PC)
----------------------------------- */
/* 1281px～1440px responsive-close */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .about-lightsun {
    max-width: 1920px;
    padding: 3rem 2% 3rem 2%;
    margin: 0 auto 0;
  }
  .about-lightsun .visual {
    top: 0;
    left: 0;
    width: 100%;
  }
  .about-lightsun .visual img {
    width: 100%;
    height: auto;
  }
  .about-lightsun .container {
    padding: 5rem 0 5rem 0;
  }
  .about-lightsun .container .en-back {
    line-height: 1.3;
    font-size: 11rem;
    letter-spacing: 0.75rem;
    opacity: 0.8;
    margin: -1rem 0 0 -1rem;
  }
  .about-lightsun .container h2 {
    margin: 3rem 0 0 0;
  }
  .about-lightsun .container h2::before {
    content: "";
    height: 2px;
    width: 11rem;
    margin: 0 1rem 0 0;
  }
  .about-lightsun .container .sentence {
    padding: 6rem 10rem 6rem 10rem;
  }
  .about-lightsun .container .button {
    text-align: right;
    padding: 0 10rem 0;
  }
  .about-lightsun .container .visual {
    width: 100%;
    opacity: 0.7;
  }
  .about-lightsun .container .visual img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-lightsun {
    max-width: 1920px;
    padding: 3rem 3% 3rem 3%;
    margin: 0 auto 0;
  }
  .about-lightsun .visual {
    top: 0;
    left: 0;
    width: 100%;
  }
  .about-lightsun .visual img {
    width: 100%;
    height: auto;
  }
  .about-lightsun .container {
    padding: 5rem 0 5rem 0;
  }
  .about-lightsun .container .en-back {
    line-height: 1.3;
    font-size: 7.7rem;
    letter-spacing: 0.7rem;
    opacity: 0.8;
    margin: -1rem 0 0 -1rem;
  }
  .about-lightsun .container h2 {
    margin: 3rem 0 0 0;
  }
  .about-lightsun .container h2::before {
    content: "";
    height: 2px;
    width: 11rem;
    margin: 0 1rem 0 0;
  }
  .about-lightsun .container .sentence {
    padding: 6rem 0rem 6rem 20%;
  }
  .about-lightsun .container .button {
    text-align: right;
    padding: 0 10rem 0;
  }
  .about-lightsun .container .visual {
    width: 100%;
    opacity: 0.7;
  }
  .about-lightsun .container .visual img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .about-lightsun {
    max-width: 1920px;
    padding: 3rem 3% 3rem 3%;
    margin: 0 auto 0;
  }
  .about-lightsun .visual {
    top: 0;
    left: 0;
    width: 100%;
  }
  .about-lightsun .visual img {
    width: 100%;
    height: auto;
  }
  .about-lightsun .container {
    padding: 5rem 0 5rem 0;
  }
  .about-lightsun .container .en-back {
    line-height: 1.3;
    font-size: 7.7rem;
    letter-spacing: 0.7rem;
    opacity: 0.8;
    margin: -1rem 0 0 -1rem;
  }
  .about-lightsun .container h2 {
    margin: 3rem 0 0 0;
  }
  .about-lightsun .container h2::before {
    content: "";
    height: 2px;
    width: 11rem;
    margin: 0 1rem 0 0;
  }
  .about-lightsun .container .sentence {
    padding: 6rem 0rem 6rem 20%;
  }
  .about-lightsun .container .button {
    text-align: right;
    padding: 0 0 0;
  }
  .about-lightsun .container .visual {
    width: 100%;
    opacity: 0.7;
  }
  .about-lightsun .container .visual img {
    width: 100%;
    height: auto;
  }
}
/* =========================================================

SERVICE

========================================================= */
.service {
  margin: 8rem 0 0 0;
}
.service .title {
  background: linear-gradient(45deg, #0155c3 0%, #15bca0 50%, #dcdc15 100%);
  padding: 12rem 0 12rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.service .title .en-back {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins";
  font-weight: 400;
  background: linear-gradient(90deg, #ffffff 0%, #def5f9 55%, #d0eb9b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  line-height: 1.3;
  font-size: 14rem;
  letter-spacing: 1.5rem;
  opacity: 0.3;
  margin: 0 0 0 0;
}
.service .title h2 {
  color: #fff;
  font-weight: 500;
  font-size: 4.75rem;
  opacity: 0.9;
}
.service .title .sentence p {
  color: #fff;
}
.service .container {
  position: relative;
  z-index: 3;
  max-width: 1920px;
  margin: -3rem auto 0;
  padding: 0 2% 0 2%;
}
.service .container ul.service-list {
  list-style-type: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.service .container ul.service-list li {
  position: relative;
  background: rgb(255, 255, 255);
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
  width: 49%;
  padding: 4rem 6rem;
}
.service .container ul.service-list li::before {
  position: absolute;
  z-index: 2;
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
  -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
  border-image-slice: 1;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.service .container ul.service-list li h3 {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 3.6rem;
}
.service .container ul.service-list li h3 .catch {
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service .container ul.service-list li:nth-child(1) {
  margin: 0 2% 0 0;
}
.service .container ul.service-list li:nth-child(2) {
  margin: 0 0 0 0;
}
.service .container ul.service-list li:nth-child(3) {
  margin: 1.5rem 2% 0 0;
}
.service .container ul.service-list li:nth-child(4) {
  margin: 1.5rem 0 0 0;
}
.service .container ul.service-list li ul.tag-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  margin: 2rem 0 0 0;
}
.service .container ul.service-list li ul.tag-list li {
  color: #399baa;
  border: solid 2px #399baa;
  font-weight: 500;
  margin: 1rem 2% 0 0;
  text-align: center;
  padding: 0.5rem 0 0.5rem 0;
  font-size: 1.5rem;
  width: 32%;
}
.service .container ul.service-list li ul.tag-list li:nth-child(3n) {
  margin: 1rem 0 0 0;
}
.service .container ul.service-list li ul.tag-list li::before {
  display: none;
}
.service .container ul.service-list li .sentence {
  position: relative;
  z-index: 2;
  margin: 1.5rem 0 0 0;
}
.service .container .button {
  margin: 8rem 0 0;
  text-align: center;
}

/*　==============================================
― 段落上-01コメント
==============================================　*/
/*-----　段落上-02コメント ---- */
/*　プロパティ横コメント  */
/* -----------------------------------
Responsive: 1281–1440 (Middle PC)
----------------------------------- */
/* 1281px～1440px responsive-close */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .service {
    margin: 8rem 0 0 0;
  }
  .service .title {
    padding: 12rem 0 12rem 0;
    text-align: center;
  }
  .service .title .en-back {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.3;
    font-size: 11rem;
    letter-spacing: 1.5rem;
    opacity: 0.3;
    margin: 0 0 0 0;
  }
  .service .title h2 {
    font-size: 4.5rem;
    opacity: 0.9;
  }
  .service .title .sentence p {
    font-size: 1.6rem;
  }
  .service .container {
    max-width: 1920px;
    margin: -3rem auto 0;
    padding: 0 2% 0 2%;
  }
  .service .container ul.service-list {
    list-style-type: none;
    flex-wrap: wrap;
  }
  .service .container ul.service-list li {
    width: 49%;
    padding: 4rem 4.5rem;
  }
  .service .container ul.service-list li::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  .service .container ul.service-list li h3 {
    font-size: 3.2rem;
  }
  .service .container ul.service-list li h3 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .service .container ul.service-list li:nth-child(1) {
    margin: 0 2% 0 0;
  }
  .service .container ul.service-list li:nth-child(2) {
    margin: 0 0 0 0;
  }
  .service .container ul.service-list li:nth-child(3) {
    margin: 1.5rem 2% 0 0;
  }
  .service .container ul.service-list li:nth-child(4) {
    margin: 1.5rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list {
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list li {
    margin: 1rem 2% 0 0;
    text-align: center;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1.5rem;
    width: 49%;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(3n) {
    margin: 1rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(2n+1) {
    margin: 1rem 2% 0 0;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(2n) {
    margin: 1rem 0% 0 0;
  }
  .service .container ul.service-list li .sentence {
    margin: 1.5rem 0 0 0;
  }
  .service .container .button {
    margin: 8rem 0 0;
    text-align: center;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .service {
    margin: 8rem 0 0 0;
  }
  .service .title {
    padding: 12rem 0 12rem 0;
    text-align: center;
  }
  .service .title .en-back {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.3;
    font-size: 11rem;
    letter-spacing: 1.5rem;
    opacity: 0.3;
    margin: 0 0 0 0;
  }
  .service .title h2 {
    font-size: 4.5rem;
    opacity: 0.9;
  }
  .service .title .sentence p {
    font-size: 1.6rem;
  }
  .service .container {
    max-width: 1920px;
    margin: -3rem auto 0;
    padding: 0 2% 0 2%;
  }
  .service .container ul.service-list {
    list-style-type: none;
    flex-wrap: wrap;
  }
  .service .container ul.service-list li {
    width: 49%;
    padding: 4rem 3rem;
  }
  .service .container ul.service-list li::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  .service .container ul.service-list li h3 {
    font-size: 2.5rem;
  }
  .service .container ul.service-list li h3 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .service .container ul.service-list li:nth-child(1) {
    margin: 0 2% 0 0;
  }
  .service .container ul.service-list li:nth-child(2) {
    margin: 0 0 0 0;
  }
  .service .container ul.service-list li:nth-child(3) {
    margin: 1.5rem 2% 0 0;
  }
  .service .container ul.service-list li:nth-child(4) {
    margin: 1.5rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list {
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list li {
    margin: 1rem 2% 0 0;
    text-align: center;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1.5rem;
    width: 49%;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(3n) {
    margin: 1rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(2n+1) {
    margin: 1rem 2% 0 0;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(2n) {
    margin: 1rem 0% 0 0;
  }
  .service .container ul.service-list li .sentence {
    margin: 1.5rem 0 0 0;
  }
  .service .container .button {
    margin: 8rem 0 0;
    text-align: center;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .service {
    margin: 4rem 0 0 0;
  }
  .service .title {
    padding: 8rem 0 8rem 0;
    text-align: center;
  }
  .service .title .en-back {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.3;
    font-size: 13vw;
    letter-spacing: 1vw;
    opacity: 0.2;
    margin: 0 0 0 0;
  }
  .service .title h2 {
    font-size: 9.15vw;
    opacity: 0.9;
  }
  .service .title .sentence {
    padding: 0 4%;
  }
  .service .title .sentence p {
    font-size: 3.75vw;
  }
  .service .container {
    max-width: 1920px;
    margin: -3rem auto 0;
    padding: 0 4% 0 4%;
  }
  .service .container ul.service-list {
    list-style-type: none;
    flex-wrap: wrap;
    padding: 0 0%;
  }
  .service .container ul.service-list li {
    width: 100%;
    padding: 4rem 3rem;
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  .service .container ul.service-list li h3 {
    font-size: 2.5rem;
  }
  .service .container ul.service-list li h3 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .service .container ul.service-list li:nth-child(1) {
    margin: 0 0 0 0;
  }
  .service .container ul.service-list li:nth-child(2) {
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li:nth-child(3) {
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li:nth-child(4) {
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list {
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin: 2rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list li {
    margin: 1rem 2% 0 0;
    text-align: center;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1.5rem;
    width: 49%;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(3n) {
    margin: 1rem 0 0 0;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(2n+1) {
    margin: 1rem 2% 0 0;
  }
  .service .container ul.service-list li ul.tag-list li:nth-child(2n) {
    margin: 1rem 0% 0 0;
  }
  .service .container ul.service-list li .sentence {
    margin: 1.5rem 0 0 0;
  }
  .service .container .button {
    margin: 8rem 0 0;
    text-align: center;
  }
}
/* =========================================================

FACILITY

========================================================= */
.facility .container {
  background: linear-gradient(90deg, #f5fffc 10%, #e3f8ff 100%);
  position: relative;
  padding: 12rem 0 12rem 0;
  margin: 8rem 0 0 0;
}
.facility .container .bg {
  position: absolute;
}
.facility .container .bg.bg-01 {
  left: 0;
  top: 0;
  transform-origin: left top;
  background: radial-gradient(at 20% 20%, rgb(133, 255, 231) 0px, transparent 50%);
  width: 30vw;
  height: 30vw;
  opacity: 0.5;
}
.facility .container .bg.bg-02 {
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  background: radial-gradient(at 100% 100%, rgb(121, 222, 255) 0px, transparent 50%);
  width: 45vw;
  height: 45vw;
  opacity: 0.9;
}
.facility .container .content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1920px;
  margin: 0 auto 0;
  padding: 0 2%;
}
.facility .container .content .title {
  text-align: center;
  padding: 0 6rem;
}
.facility .container .content .title .en-back {
  font-family: "Antonio";
  font-weight: 100;
  background: linear-gradient(90deg, #37c094 0%, #bfe6da 55%, #1492ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  font-size: 9rem;
  letter-spacing: 1rem;
  opacity: 1;
  margin: 0 0 0 -1rem;
}
.facility .container .content .title h2 {
  font-weight: 300;
}
.facility .container .content .title h2 .catch {
  position: relative;
  background-clip: initial;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: initial;
  display: inline-block;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
  color: #fff;
  background: linear-gradient(45deg, rgb(21, 142, 103) 0%, rgb(66, 209, 185) 55%, #0f5abc 100%);
  line-height: 1.1;
  font-size: 4.5rem;
  padding: 1rem 6rem;
}
.facility .container .content .title h2 .catch::before, .facility .container .content .title h2 .catch::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgb(21, 142, 103) 0%, rgb(98, 211, 192) 55%, #0f5abc 100%);
  left: 0;
  width: 100%;
  height: 2px;
}
.facility .container .content .title h2 .catch::before {
  top: -6px;
}
.facility .container .content .title h2 .catch::after {
  bottom: -6px;
}
.facility .container .content .title .sentence {
  margin: 3rem 0 0 0;
}
.facility .container .content ul.facility-list {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.facility .container .content ul.facility-list li.facility-item {
  text-align: center;
  background: #fff;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
  border: solid 3px #80c8d8;
  width: 49%;
  margin: 6rem 0 0 0;
  padding: 0 0 4rem 0;
}
.facility .container .content ul.facility-list li.facility-item:nth-child(1), .facility .container .content ul.facility-list li.facility-item:nth-child(2) {
  margin: 0 0 0 0;
}
.facility .container .content ul.facility-list li.facility-item h3 {
  display: inline-block;
  background: #fff;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
  font-weight: 500;
  font-size: 2.7rem;
  transform: skew(-15deg);
  padding: 1rem 3rem;
  margin: -3rem 0 0 0;
}
.facility .container .content ul.facility-list li.facility-item h3::before {
  position: absolute;
  z-index: 2;
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
  -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
  border-image-slice: 1;
  content: "";
  width: calc(100% - 3px);
  height: calc(100% - 3px);
}
.facility .container .content ul.facility-list li.facility-item h3 .catch {
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  transform: skew(15deg);
}
.facility .container .content ul.facility-list li.facility-item ul.tag-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem 0 0 0;
  padding: 0 3rem;
}
.facility .container .content ul.facility-list li.facility-item ul.tag-list li {
  width: 49%;
  background: linear-gradient(45deg, #e9f6ff 0%, #defbff 55%, #d7fff2 100%);
  color: #399baa;
  font-weight: 500;
  margin: 1rem 0 0 0;
  padding: 1rem 0 1rem 0;
  font-size: 1.7rem;
}
.facility .button {
  margin: -2.5rem 0 0 0;
  text-align: center;
}

/* -----------------------------------
Responsive: 1281–1440 (Middle PC)
----------------------------------- */
/* 1281px～1440px responsive-close */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .facility .container {
    padding: 12rem 0 12rem 0;
    margin: 8rem 0 0 0;
  }
  .facility .container .bg.bg-01 {
    left: 0;
    top: 0;
    transform-origin: left top;
    width: 30vw;
    height: 30vw;
    opacity: 0.5;
  }
  .facility .container .bg.bg-02 {
    right: 0;
    bottom: 0;
    transform-origin: right bottom;
    width: 45vw;
    height: 45vw;
    opacity: 0.9;
  }
  .facility .container .content {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 1%;
  }
  .facility .container .content .title {
    text-align: center;
    padding: 0 3rem 0 0;
  }
  .facility .container .content .title .en-back {
    line-height: 1.3;
    font-size: 7.77rem;
    letter-spacing: 1rem;
    opacity: 1;
    margin: 0 0 0 -1rem;
  }
  .facility .container .content .title h2 .catch {
    line-height: 1.1;
    font-size: 4rem;
    padding: 1rem 5rem;
  }
  .facility .container .content .title h2 .catch::before, .facility .container .content .title h2 .catch::after {
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
  }
  .facility .container .content .title h2 .catch::before {
    top: -6px;
  }
  .facility .container .content .title h2 .catch::after {
    bottom: -6px;
  }
  .facility .container .content .title .sentence {
    margin: 3rem 0 0 0;
  }
  .facility .container .content .title .sentence p .sp-disblock {
    display: block;
  }
  .facility .container .content ul.facility-list {
    width: 55%;
    flex-wrap: wrap;
  }
  .facility .container .content ul.facility-list li.facility-item {
    text-align: center;
    width: 49%;
    margin: 6rem 0 0 0;
    padding: 0 0 2rem 0;
  }
  .facility .container .content ul.facility-list li.facility-item:nth-child(1), .facility .container .content ul.facility-list li.facility-item:nth-child(2) {
    margin: 0 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item h3 {
    font-size: 2.2rem;
    transform: skew(-15deg);
    padding: 1rem 2.5rem;
    margin: -3rem 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item h3::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 3px);
    height: calc(100% - 3px);
  }
  .facility .container .content ul.facility-list li.facility-item h3 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: skew(15deg);
  }
  .facility .container .content ul.facility-list li.facility-item ul.tag-list {
    display: block;
    margin: 2rem 0 0 0;
    padding: 0 2rem;
  }
  .facility .container .content ul.facility-list li.facility-item ul.tag-list li {
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.75rem 0 0.75rem 0;
    font-size: 1.7rem;
  }
  .facility .button {
    margin: -2.5rem 0 0 0;
    text-align: center;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .facility .container {
    padding: 12rem 0 12rem 0;
    margin: 8rem 0 0 0;
  }
  .facility .container .bg.bg-01 {
    left: 0;
    top: 0;
    transform-origin: left top;
    width: 30vw;
    height: 30vw;
    opacity: 0.5;
  }
  .facility .container .bg.bg-02 {
    right: 0;
    bottom: 0;
    transform-origin: right bottom;
    width: 45vw;
    height: 45vw;
    opacity: 0.9;
  }
  .facility .container .content {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 3%;
    display: block;
  }
  .facility .container .content .title {
    text-align: center;
    padding: 0 3rem 0 0;
  }
  .facility .container .content .title .en-back {
    line-height: 1.3;
    font-size: 7.77rem;
    letter-spacing: 1rem;
    opacity: 1;
    margin: 0 0 0 -1rem;
  }
  .facility .container .content .title h2 .catch {
    line-height: 1.1;
    font-size: 4rem;
    padding: 1rem 5rem;
  }
  .facility .container .content .title h2 .catch::before, .facility .container .content .title h2 .catch::after {
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
  }
  .facility .container .content .title h2 .catch::before {
    top: -6px;
  }
  .facility .container .content .title h2 .catch::after {
    bottom: -6px;
  }
  .facility .container .content .title .sentence {
    margin: 3rem 0 0 0;
  }
  .facility .container .content .title .sentence p .sp-disblock {
    display: block;
  }
  .facility .container .content ul.facility-list {
    width: 100%;
    flex-wrap: wrap;
    padding: 6rem 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item {
    text-align: center;
    width: 49%;
    margin: 6rem 0 0 0;
    padding: 0 0 2rem 0;
  }
  .facility .container .content ul.facility-list li.facility-item:nth-child(1), .facility .container .content ul.facility-list li.facility-item:nth-child(2) {
    margin: 0 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item h3 {
    font-size: 2.2rem;
    transform: skew(-15deg);
    padding: 1rem 2.5rem;
    margin: -3rem 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item h3::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 3px);
    height: calc(100% - 3px);
  }
  .facility .container .content ul.facility-list li.facility-item h3 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: skew(15deg);
  }
  .facility .container .content ul.facility-list li.facility-item ul.tag-list {
    display: block;
    margin: 2rem 0 0 0;
    padding: 0 2rem;
  }
  .facility .container .content ul.facility-list li.facility-item ul.tag-list li {
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.75rem 0 0.75rem 0;
    font-size: 1.7rem;
  }
  .facility .button {
    margin: -2.5rem 0 0 0;
    text-align: center;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .facility .container {
    padding: 8rem 0 8rem 0;
    margin: 4rem 0 0 0;
  }
  .facility .container .bg.bg-01 {
    left: 0;
    top: 0;
    transform-origin: left top;
    width: 30vw;
    height: 30vw;
    opacity: 0.5;
  }
  .facility .container .bg.bg-02 {
    right: 0;
    bottom: 0;
    transform-origin: right bottom;
    width: 45vw;
    height: 45vw;
    opacity: 0.9;
  }
  .facility .container .content {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 4%;
    display: block;
  }
  .facility .container .content .title {
    text-align: center;
    padding: 0 0 0 0;
  }
  .facility .container .content .title .en-back {
    line-height: 1.3;
    font-size: 14vw;
    letter-spacing: 1rem;
    opacity: 1;
    margin: 0 0 0 0;
  }
  .facility .container .content .title h2 .catch {
    line-height: 1.1;
    font-size: 8vw;
    padding: 1rem 12vw;
  }
  .facility .container .content .title h2 .catch::before, .facility .container .content .title h2 .catch::after {
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
  }
  .facility .container .content .title h2 .catch::before {
    top: -6px;
  }
  .facility .container .content .title h2 .catch::after {
    bottom: -6px;
  }
  .facility .container .content .title .sentence {
    margin: 3rem 0 0 0;
  }
  .facility .container .content .title .sentence p .sp-disblock {
    display: block;
  }
  .facility .container .content ul.facility-list {
    width: 100%;
    flex-wrap: wrap;
    padding: 2rem 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item {
    text-align: center;
    width: 100%;
    margin: 4rem 0 0 0;
    padding: 0 0 2rem 0;
  }
  .facility .container .content ul.facility-list li.facility-item:nth-child(1), .facility .container .content ul.facility-list li.facility-item:nth-child(2) {
    margin: 4rem 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item h3 {
    font-size: 5.75vw;
    transform: skew(-15deg);
    padding: 1rem 10vw;
    margin: -3rem 0 0 0;
  }
  .facility .container .content ul.facility-list li.facility-item h3::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    -o-border-image: linear-gradient(90deg, #58ceba 0%, #c4f5d4 45%, #369dcd 70%, #c4f5d4 85%, #58ceba 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 3px);
    height: calc(100% - 3px);
  }
  .facility .container .content ul.facility-list li.facility-item h3 .catch {
    display: inline-block;
    background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: skew(15deg);
  }
  .facility .container .content ul.facility-list li.facility-item ul.tag-list {
    display: block;
    margin: 2rem 0 0 0;
    padding: 0 2rem;
  }
  .facility .container .content ul.facility-list li.facility-item ul.tag-list li {
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.75rem 0 0.75rem 0;
    font-size: 4vw;
  }
  .facility .button {
    margin: -2.5rem 0 0 0;
    text-align: center;
  }
}
/* =========================================================

WORKS

========================================================= */
.works {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  padding: 3rem 2% 3rem 2%;
  margin: 6rem auto 0;
}
.works .visual {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 90%;
  margin: 0 auto 0;
  opacity: 0.2;
}
.works .visual img {
  width: 100%;
  height: auto;
}
.works .title {
  position: relative;
  z-index: 2;
}
.works .title .en-back {
  font-family: "Poppins";
  font-weight: 400;
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  font-size: 14rem;
  letter-spacing: 1rem;
  opacity: 0.8;
  margin: 0 0 0 -1rem;
}
.works .title h2 {
  margin: -1rem 0 0 0;
  display: flex;
  align-items: center;
}
.works .title h2::before {
  content: "";
  background: linear-gradient(45deg, #2192d9 0%, #21c0d8 55%, #52cca3 100%);
  height: 2px;
  width: 11rem;
  margin: 0 1rem 0 0;
}
.works .title .sentence {
  padding: 2rem 10rem 6rem 13rem;
}
.works .content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 5rem 0;
}
.works .content ul.works-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works .content ul.works-list li {
  width: 32%;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
  background: #fff;
}
.works .content ul.works-list li .thumb {
  width: 100%;
  height: 350px;
}
.works .content ul.works-list li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .content ul.works-list li .text {
  padding: 1px 4rem 3rem;
}
.works .content ul.works-list li .text h3 {
  font-weight: 500;
  font-size: 24px;
  margin: -1.5rem 0 0 0;
}
.works .content ul.works-list li .text h3 .catch {
  display: inline-block;
  background: #fff;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
  color: #399baa;
  border: solid 3px #399baa;
  font-size: 20px;
  margin: 0 10px 0 0;
  padding: 0 20px 0 20px;
}
.works .content ul.works-list li .text h4 {
  font-weight: 500;
  margin: 3rem 0 0 0;
}
.works .content ul.works-list li .text h4 .catch {
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
}
.works .content ul.works-list li .text h4 .catch .en {
  font-family: "Inter";
  font-weight: 400;
}
.works .content ul.works-list li .text h4 .catch .sama {
  font-size: 0.7em;
}
.works .content ul.works-list li .text .sentence {
  text-align: left;
  margin: 2rem 0 0 0;
}
.works .content .sentence {
  text-align: center;
  margin: 5rem 0 0 0;
}
.works .content .button {
  text-align: center;
  margin: 5rem 0 0 0;
}

/* -----------------------------------
Responsive: 1281–1440 (Middle PC)
----------------------------------- */
/* 1281px～1440px responsive-close */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .works {
    max-width: 1920px;
    padding: 3rem 1% 3rem 1%;
    margin: 6rem auto 0;
  }
  .works .visual {
    top: 0;
    left: 0;
    width: 90%;
    margin: 0 auto 0;
    opacity: 0.2;
  }
  .works .visual img {
    width: 100%;
    height: auto;
  }
  .works .title .en-back {
    line-height: 1.3;
    font-size: 10rem;
    letter-spacing: 0.65rem;
    opacity: 0.8;
    margin: 0 0 0 -1rem;
  }
  .works .title h2 {
    margin: 4rem 0 0 0;
  }
  .works .title h2::before {
    content: "";
    height: 2px;
    width: 11rem;
    margin: 0 1rem 0 0;
  }
  .works .title .sentence {
    padding: 2rem 0 6rem 22.5%;
  }
  .works .content {
    padding: 5rem 0 5rem 0;
  }
  .works .content ul.works-list li {
    width: 32.5%;
  }
  .works .content ul.works-list li .thumb {
    width: 100%;
    height: 350px;
  }
  .works .content ul.works-list li .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .works .content ul.works-list li .text {
    padding: 1px 3rem 3rem;
  }
  .works .content ul.works-list li .text h3 {
    font-size: 24px;
    margin: -1.5rem 0 0 0;
  }
  .works .content ul.works-list li .text h3 .catch {
    font-size: 2rem;
    margin: 0 10px 0 0;
    padding: 0 20px 0 20px;
  }
  .works .content ul.works-list li .text h4 {
    margin: 3rem 0 0 0;
  }
  .works .content ul.works-list li .text h4 .catch {
    font-size: 2.2rem;
  }
  .works .content ul.works-list li .text h4 .catch .sama {
    font-size: 0.7em;
  }
  .works .content ul.works-list li .text .sentence {
    margin: 2rem 0 0 0;
    font-size: 1.75rem;
  }
  .works .content .sentence {
    text-align: center;
    margin: 5rem 0 0 0;
  }
  .works .content .button {
    text-align: center;
    margin: 5rem 0 0 0;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .works {
    max-width: 1920px;
    padding: 3rem 3% 3rem 3%;
    margin: 6rem auto 0;
  }
  .works .visual {
    top: 0;
    left: 0;
    width: 90%;
    margin: 0 auto 0;
    opacity: 0.2;
  }
  .works .visual img {
    width: 100%;
    height: auto;
  }
  .works .title .en-back {
    line-height: 1.3;
    font-size: 8rem;
    letter-spacing: 0.65rem;
    opacity: 0.8;
    margin: 0 0 0 -1rem;
  }
  .works .title h2 {
    margin: 4rem 0 0 0;
  }
  .works .title h2::before {
    content: "";
    height: 2px;
    width: 11rem;
    margin: 0 1rem 0 0;
  }
  .works .title .sentence {
    padding: 2rem 0 6rem 22.5%;
  }
  .works .content {
    padding: 1rem 0 5rem 0;
  }
  .works .content ul.works-list {
    justify-content: center;
  }
  .works .content ul.works-list li {
    width: 48.5%;
    margin: 2rem 3% 0 0;
  }
  .works .content ul.works-list li:nth-child(2n), .works .content ul.works-list li:last-child {
    margin: 2rem 0 0 0;
  }
  .works .content ul.works-list li .thumb {
    width: 100%;
    height: 300px;
  }
  .works .content ul.works-list li .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .works .content ul.works-list li .text {
    padding: 1px 3rem 3rem;
  }
  .works .content ul.works-list li .text h3 {
    font-size: 24px;
    margin: -1.5rem 0 0 0;
  }
  .works .content ul.works-list li .text h3 .catch {
    font-size: 2rem;
    margin: 0 10px 0 0;
    padding: 0 20px 0 20px;
  }
  .works .content ul.works-list li .text h4 {
    margin: 3rem 0 0 0;
  }
  .works .content ul.works-list li .text h4 .catch {
    font-size: 2.2rem;
  }
  .works .content ul.works-list li .text h4 .catch .sama {
    font-size: 0.7em;
  }
  .works .content ul.works-list li .text .sentence {
    margin: 2rem 0 0 0;
    font-size: 1.75rem;
  }
  .works .content .sentence {
    text-align: center;
    margin: 5rem 0 0 0;
  }
  .works .content .button {
    text-align: center;
    margin: 5rem 0 0 0;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .works {
    max-width: 1920px;
    padding: 3rem 4% 3rem 4%;
    margin: 6rem auto 0;
  }
  .works .visual {
    top: 0;
    left: 0;
    width: 90%;
    margin: 0 auto 0;
    opacity: 0.2;
  }
  .works .visual img {
    width: 100%;
    height: auto;
  }
  .works .title .en-back {
    line-height: 1.3;
    font-size: 12vw;
    letter-spacing: 0.65rem;
    opacity: 0.8;
    margin: 0 0 0 -1rem;
  }
  .works .title h2 {
    margin: 4rem 0 0 0;
  }
  .works .title h2::before {
    content: "";
    height: 2px;
    width: 11rem;
    margin: 0 1rem 0 0;
  }
  .works .title .sentence {
    padding: 2rem 0 2rem 0%;
  }
  .works .content {
    padding: 1rem 0 5rem 0;
  }
  .works .content ul.works-list {
    justify-content: center;
  }
  .works .content ul.works-list li {
    width: 100%;
    margin: 2.5rem 0 0 0;
  }
  .works .content ul.works-list li:nth-child(2n), .works .content ul.works-list li:last-child {
    margin: 2rem 0 0 0;
  }
  .works .content ul.works-list li .thumb {
    width: 100%;
    height: 300px;
  }
  .works .content ul.works-list li .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .works .content ul.works-list li .text {
    padding: 1px 3rem 3rem;
  }
  .works .content ul.works-list li .text h3 {
    font-size: 24px;
    margin: -1.5rem 0 0 0;
  }
  .works .content ul.works-list li .text h3 .catch {
    font-size: 2rem;
    margin: 0 10px 0 0;
    padding: 0 20px 0 20px;
  }
  .works .content ul.works-list li .text h4 {
    margin: 3rem 0 0 0;
  }
  .works .content ul.works-list li .text h4 .catch {
    font-size: 2.2rem;
  }
  .works .content ul.works-list li .text h4 .catch .sama {
    font-size: 0.7em;
  }
  .works .content ul.works-list li .text .sentence {
    margin: 2rem 0 0 0;
    font-size: 1.75rem;
  }
  .works .content .sentence {
    text-align: center;
    margin: 5rem 0 0 0;
  }
  .works .content .button {
    text-align: center;
    margin: 5rem 0 0 0;
  }
}
/* =========================================================

GUIDE LINKS

========================================================= */
.guide-links {
  overflow: hidden;
  padding: 1rem 0 6rem;
}
.guide-links .title {
  text-align: center;
}
.guide-links .title .top {
  position: relative;
}
.guide-links .title .top .en-back {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins";
  font-weight: 400;
  -webkit-text-stroke: 2px #399baa;
  text-stroke: 2px #399baa;
  color: transparent;
  white-space: nowrap;
  line-height: 1.3;
  font-size: 11rem;
  letter-spacing: 1rem;
  opacity: 0.3;
}
.guide-links .title .top h2 {
  position: relative;
  z-index: 2;
}
.guide-links .title .top h2 .catch {
  display: inline-block;
  background: linear-gradient(45deg, #2192d9 0%, #21c0d8 55%, #52cca3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.guide-links .title .sentence {
  margin: 1.5rem auto 0;
}
.guide-links .content {
  max-width: 1920px;
  margin: 6rem auto 0;
}
.guide-links .content ul.guide-links-list {
  display: flex;
  align-items: stretch;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
}
.guide-links .content ul.guide-links-list li {
  width: 33.3333333333;
}
.guide-links .content ul.guide-links-list li a {
  position: relative;
}
.guide-links .content ul.guide-links-list li a .en-back {
  font-family: "Antonio";
  font-weight: 100;
  color: #ffffff;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  line-height: 1.1;
  font-size: 10rem;
  opacity: 0.2;
}
.guide-links .content ul.guide-links-list li a .text {
  position: relative;
  z-index: 2;
  padding: 12rem 5rem 12rem;
}
.guide-links .content ul.guide-links-list li a .text h3 {
  color: #fff;
  font-weight: 500;
  font-size: 2.85rem;
}
.guide-links .content ul.guide-links-list li a .text .sentence {
  margin: 1rem 0 0 0;
}
.guide-links .content ul.guide-links-list li a .text .sentence p {
  opacity: 0.7;
}
.guide-links .content ul.guide-links-list li a .text .link-button {
  text-align: right;
}
.guide-links .content ul.guide-links-list li a .text .link-button .inset {
  display: inline-flex;
  align-items: center;
  margin: 3rem 0 0 0;
  border: solid 3px #fff;
  padding: 1rem 4rem;
  border-radius: 10rem;
}
.guide-links .content ul.guide-links-list li a .text .link-button .inset .catch {
  color: #fff;
  font-size: 2rem;
  padding: 0 1rem 0 0;
}
.guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow {
  width: 3rem;
}
.guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow img {
  width: 100%;
  height: auto;
}
.guide-links .content ul.guide-links-list li:nth-child(1) {
  background-color: rgb(54, 192, 153);
  background-image: radial-gradient(at 85% 46%, hsl(148, 81%, 76%) 0px, transparent 50%), radial-gradient(at 99% 25%, hsl(193, 81%, 59%) 0px, transparent 50%), radial-gradient(at 19% 91%, hsl(84, 83%, 71%) 0px, transparent 50%);
}
.guide-links .content ul.guide-links-list li:nth-child(1) .sentence p {
  color: #0b5a32;
}
.guide-links .content ul.guide-links-list li:nth-child(2) {
  background-color: hsl(206, 63%, 54%);
  background-image: radial-gradient(at 85% 46%, hsl(195, 71%, 51%) 0px, transparent 50%), radial-gradient(at 99% 25%, hsl(225, 100%, 44%) 0px, transparent 50%), radial-gradient(at 19% 91%, hsl(183, 93%, 71%) 0px, transparent 50%);
}
.guide-links .content ul.guide-links-list li:nth-child(2) .sentence p {
  color: #04142f;
}
.guide-links .content ul.guide-links-list li:nth-child(3) {
  background-color: hsl(190, 100%, 38%);
  background-image: radial-gradient(at 85% 46%, hsl(178, 100%, 69%) 0px, transparent 50%), radial-gradient(at 99% 25%, hsl(176, 98%, 39%) 0px, transparent 50%), radial-gradient(at 19% 91%, hsl(180, 100%, 75%) 0px, transparent 50%);
}
.guide-links .content ul.guide-links-list li:nth-child(3) .sentence p {
  color: #00354c;
}

/* -----------------------------------
Responsive: 1281–1440 (Middle PC)
----------------------------------- */
/* 1281px～1440px responsive-close */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .guide-links {
    padding: 1rem 0 3rem;
  }
  .guide-links .title {
    text-align: center;
  }
  .guide-links .title .top .en-back {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.3;
    font-size: 8rem;
    letter-spacing: 1rem;
    opacity: 0.2;
  }
  .guide-links .title .top h2 .catch {
    font-size: 4rem;
  }
  .guide-links .title .sentence {
    margin: 3.5rem auto 0;
    font-size: 1.75rem;
  }
  .guide-links .content {
    max-width: 1920px;
    margin: 6rem auto 0;
  }
  .guide-links .content ul.guide-links-list li {
    width: 33.3333333333;
  }
  .guide-links .content ul.guide-links-list li a .en-back {
    left: 0;
    top: 0;
    line-height: 1.1;
    font-size: 10rem;
    opacity: 0.2;
  }
  .guide-links .content ul.guide-links-list li a .text {
    padding: 10rem 5rem 10rem;
  }
  .guide-links .content ul.guide-links-list li a .text h3 {
    font-size: 2.85rem;
  }
  .guide-links .content ul.guide-links-list li a .text .sentence {
    margin: 1rem 0 0 0;
  }
  .guide-links .content ul.guide-links-list li a .text .sentence p {
    opacity: 0.7;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button {
    text-align: right;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset {
    margin: 3rem 0 0 0;
    padding: 1rem 4rem;
    border-radius: 10rem;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .catch {
    font-size: 2rem;
    padding: 0 1rem 0 0;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow {
    width: 3rem;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .guide-links {
    padding: 1rem 0 3rem;
  }
  .guide-links .title {
    text-align: center;
  }
  .guide-links .title .top .en-back {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.3;
    font-size: 8rem;
    letter-spacing: 1rem;
    opacity: 0.2;
  }
  .guide-links .title .top h2 .catch {
    font-size: 4rem;
  }
  .guide-links .title .sentence {
    margin: 3.5rem auto 0;
    font-size: 1.75rem;
  }
  .guide-links .content {
    max-width: 1920px;
    margin: 6rem auto 0;
  }
  .guide-links .content ul.guide-links-list li {
    width: 33.3333333333;
  }
  .guide-links .content ul.guide-links-list li a .en-back {
    left: 0;
    top: 0;
    line-height: 1.1;
    font-size: 7rem;
    opacity: 0.2;
  }
  .guide-links .content ul.guide-links-list li a .text {
    padding: 10rem 3rem 10rem;
  }
  .guide-links .content ul.guide-links-list li a .text h3 {
    font-size: 2.5rem;
  }
  .guide-links .content ul.guide-links-list li a .text .sentence {
    margin: 1rem 0 0 0;
  }
  .guide-links .content ul.guide-links-list li a .text .sentence p {
    opacity: 0.7;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button {
    text-align: right;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset {
    margin: 3rem 0 0 0;
    padding: 1rem 2.5rem;
    border-radius: 10rem;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .catch {
    font-size: 1.8rem;
    padding: 0 1rem 0 0;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow {
    width: 2rem;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .guide-links {
    padding: 1rem 0 3rem;
  }
  .guide-links .title {
    text-align: center;
  }
  .guide-links .title .top .en-back {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.3;
    font-size: 10vw;
    letter-spacing: 0.5vw;
    opacity: 0.2;
    -webkit-text-stroke: 1px #399baa;
    text-stroke: 1px #399baa;
  }
  .guide-links .title .top h2 .catch {
    font-size: 4rem;
  }
  .guide-links .title .sentence {
    margin: 3.5rem auto 0;
    font-size: 3.75vw;
    padding: 0 4%;
  }
  .guide-links .title .sentence p br {
    display: none;
  }
  .guide-links .content {
    max-width: 1920px;
    margin: 6rem auto 0;
  }
  .guide-links .content ul.guide-links-list {
    display: block;
  }
  .guide-links .content ul.guide-links-list li {
    width: 100%;
  }
  .guide-links .content ul.guide-links-list li a .en-back {
    left: 0;
    top: 0;
    line-height: 1.1;
    font-size: 17vw;
    opacity: 0.2;
  }
  .guide-links .content ul.guide-links-list li a .text {
    padding: 10rem 3rem 10rem;
  }
  .guide-links .content ul.guide-links-list li a .text h3 {
    font-size: 6.5vw;
  }
  .guide-links .content ul.guide-links-list li a .text .sentence {
    margin: 1rem 0 0 0;
  }
  .guide-links .content ul.guide-links-list li a .text .sentence p {
    opacity: 0.7;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button {
    text-align: right;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset {
    margin: 3rem 0 0 0;
    padding: 1rem 2.5rem;
    border-radius: 10rem;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .catch {
    font-size: 4.5vw;
    padding: 0 1rem 0 0;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow {
    width: 3.75vw;
  }
  .guide-links .content ul.guide-links-list li a .text .link-button .inset .arrow img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=top.css.map */