@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 */
/* =========================================================

OVERVIEW > INFORMATION

========================================================= */
.information {
  position: relative;
  overflow: hidden;
  margin: 0rem 0 3rem 0;
  overflow: hidden;
  position: relative;
  margin: 0px 0 0 0;
  background: radial-gradient(circle at 12% 82%, rgba(193, 220, 240, 0.95) 0%, rgba(193, 220, 240, 0) 32%), radial-gradient(circle at 86% 12%, rgba(242, 239, 205, 0.9) 0%, rgba(242, 239, 205, 0) 28%), radial-gradient(circle at 52% 88%, rgba(182, 242, 213, 0.75) 0%, rgba(182, 242, 213, 0) 22%), radial-gradient(circle at 72% 55%, rgba(214, 241, 209, 0.55) 0%, rgba(214, 241, 209, 0) 35%), linear-gradient(135deg, #d8eee7 0%, #d9f0df 45%, #e2f1da 100%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0 10rem;
}
.information .container .box {
  max-width: 1920px;
  margin: 0 auto 0;
  padding: 0 2% 0 2%;
}
.information .container .box .semi-title {
  display: flex;
  color: #fff;
  align-items: center;
  background: linear-gradient(45deg, #1c9f85 10%, #1a6dbb 100%);
  padding: 4rem 6rem;
}
.information .container .box .semi-title h2 {
  font-weight: 500;
  font-size: 3.25rem;
  margin: 0 1rem 0 0;
}
.information .container .box .semi-title .en {
  position: relative;
  top: 0.2rem;
  font-family: "Poppins";
  font-weight: 400;
  letter-spacing: 0.5rem;
  font-size: 2rem;
  padding: 0 0 0 5rem;
}
.information .container .box .semi-title .en::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 3rem;
  background: #ffffff;
  left: 1.5rem;
  top: 50%;
  transform: translate(0, -50%) rotate(30deg);
  opacity: 0.7;
}
.information .container .box table {
  width: 100%;
  background: #fff;
  box-shadow: rgba(162, 207, 193, 0.4) 0 7px 29px 0;
}
.information .container .box table tbody tr {
  display: block;
  width: 100%;
}
.information .container .box table tbody tr th {
  font-weight: 500;
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #f7fffc, #d8ebee);
  padding: 2.5rem 4rem;
}
.information .container .box table tbody tr th .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.2rem;
}
.information .container .box table tbody tr td {
  text-align: center;
  display: block;
  color: #555;
  line-height: 2.4;
  width: 100%;
  font-size: 1.9rem;
  padding: 6rem 8rem;
}
.information .container .box table tbody tr td ul {
  list-style-type: none;
  display: inline-block;
}
.information .container .box table tbody tr td ul li {
  text-align: left;
}
.information .container .box table tbody tr td ul li::before {
  content: "";
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 10%, #1a6dbb 100%);
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1rem 0 0;
  transform: rotate(45deg);
  opacity: 0.8;
  position: relative;
  top: -1px;
}

/* -----------------------------------
Responsive: 1281–1440 (Middle PC)
----------------------------------- */
/* 1281px～1440px responsive-close */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
/* 1024px～1280px responsive-close */
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
/* 768px～1023px responsive-closed */
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media screen and (width <= 767px) {
  .information {
    margin: 0rem 0 3rem 0;
    margin: 0px 0 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10rem 0 10rem;
  }
  .information .container .box {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 2% 0 2%;
  }
  .information .container .box .semi-title {
    padding: 4rem 3rem;
    display: block;
  }
  .information .container .box .semi-title h2 {
    font-size: 3.25rem;
    margin: 0 1rem 0 0;
  }
  .information .container .box .semi-title .en {
    top: 0.2rem;
    letter-spacing: 0.35rem;
    font-size: 3.75vw;
    padding: 0.5rem 0 0 0.5rem;
    display: flex;
    align-items: center;
  }
  .information .container .box .semi-title .en::before {
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    transform: rotate(0);
    background: #fff;
    width: 3rem;
    height: 1px;
    margin: 0 1rem 0 0;
  }
  .information .container .box table {
    width: 100%;
  }
  .information .container .box table tbody tr {
    width: 100%;
  }
  .information .container .box table tbody tr th {
    width: 100%;
    padding: 2.5rem 2rem;
  }
  .information .container .box table tbody tr th .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: 4.25vw;
  }
  .information .container .box table tbody tr td {
    text-align: center;
    line-height: 2.4;
    width: 100%;
    font-size: 3.75vw;
    padding: 6rem 2rem;
  }
  .information .container .box table tbody tr td ul {
    list-style-type: none;
  }
  .information .container .box table tbody tr td ul li {
    font-size: 3.5vw;
  }
  .information .container .box table tbody tr td ul li::before {
    content: "";
    width: 1.4vw;
    height: 1.4vw;
    margin: 0 1.4vw 0 0;
    transform: rotate(45deg);
    opacity: 0.8;
    top: -2px;
  }
} /* 767px responsive-closed */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=overview.css.map */