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

〇 REASON 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.content {
  background: linear-gradient(45deg, #b3eef7 0%, #e4f2ff 100%);
  position: relative;
}
.content .container {
  background: url(../images/feature/pattern.svg) repeat 0 0;
  background-size: 30px auto;
  padding: 65px 0 0 0;
}
.content .container .box-wrapper {
  max-width: 1920px;
  margin: 0 auto 0;
  padding: 30px 3.5% 30px 3.5%;
}
.content .container .box-wrapper .box {
  padding: 60px 0 20px 0;
}
.content .container .box-wrapper .box .top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.content .container .box-wrapper .box .top .cover {
  background: linear-gradient(45deg, #1c9f85 10%, #1a6dbb 100%);
  width: 52%;
  margin: 0 -2% 0 0;
  position: relative;
  z-index: 2;
  border: solid 3px #399baa;
  box-shadow: 0 0 15px rgba(123, 172, 252, 0.3), 0 0 0 3px #fff inset;
}
.content .container .box-wrapper .box .top .cover .semi {
  margin: -130px 0 0px 45px;
  color: #399baa;
  line-height: 0.9;
  display: inline-block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.content .container .box-wrapper .box .top .cover .semi span.big {
  font-size: 100px;
  letter-spacing: 3px;
}
.content .container .box-wrapper .box .top .cover .semi span.small {
  font-size: 50px;
  letter-spacing: 2px;
}
.content .container .box-wrapper .box .top .cover .en {
  padding: 60px 45px 10px 45px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.content .container .box-wrapper .box .top .cover h2 {
  font-weight: 500;
  padding: 0px 45px 60px 45px;
  font-size: 50px;
  color: #fff;
}
.content .container .box-wrapper .box .top .thumb {
  width: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(163, 205, 233, 0.3);
  line-height: 0;
}
.content .container .box-wrapper .box .top .thumb img {
  width: 100%;
  height: auto;
}
.content .container .box-wrapper .box:nth-child(2n) .top {
  flex-direction: row-reverse;
}
.content .container .box-wrapper .box:nth-child(2n) .top .cover {
  margin: 0 0 0 -2%;
}
.content .container .box-wrapper .box .middle {
  padding: 30px 0 30px 0;
}
.content .container .box-wrapper .box .middle .block {
  display: flex;
  justify-content: center;
}
.content .container .box-wrapper .box .middle .block .mark {
  margin: 15px 20px 0 0;
}
.content .container .box-wrapper .box .middle .block .mark p {
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  display: inline-block;
  background: #fff;
  color: #399baa;
  letter-spacing: 2px;
  border: solid 2px #399baa;
  padding: 1rem 4rem 1.2rem;
  font-size: 24px;
}
.content .container .box-wrapper .box .middle .block .mark:last-child {
  margin: 15px 0 0 0;
}
.content .container .box-wrapper .box .middle .sentence {
  margin: 25px 0 0 0;
}
.content .container .box-wrapper .box .middle .sentence p {
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2;
  color: #399baa;
  padding: 10px 0 10px 0;
  font-size: 20px;
}
.content .container .box-wrapper .box .middle .sentence p .small {
  font-size: 0.8em;
}

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

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

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .content .container {
    background-size: 30px auto;
    padding: 65px 0 0 0;
  }
  .content .container .box-wrapper {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 30px 1.5% 30px 1.5%;
  }
  .content .container .box-wrapper .box {
    padding: 60px 0 20px 0;
  }
  .content .container .box-wrapper .box .top .cover {
    width: 52%;
    margin: 0 -2% 0 0;
  }
  .content .container .box-wrapper .box .top .cover .semi {
    margin: -130px 0 0px 35px;
    line-height: 0.9;
  }
  .content .container .box-wrapper .box .top .cover .semi span.big {
    font-size: 80px;
    letter-spacing: 3px;
  }
  .content .container .box-wrapper .box .top .cover .semi span.small {
    font-size: 40px;
    letter-spacing: 2px;
  }
  .content .container .box-wrapper .box .top .cover .en {
    padding: 60px 45px 10px 45px;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1;
  }
  .content .container .box-wrapper .box .top .cover h2 {
    font-size: 34px;
    padding: 0px 45px 60px 45px;
  }
  .content .container .box-wrapper .box .top .cover h2 .sp-disblock {
    display: block;
  }
  .content .container .box-wrapper .box .top .thumb {
    width: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(163, 205, 233, 0.3);
    line-height: 0;
  }
  .content .container .box-wrapper .box .top .thumb img {
    width: 100%;
    height: auto;
  }
  .content .container .box-wrapper .box:nth-child(2n) .top {
    flex-direction: row-reverse;
  }
  .content .container .box-wrapper .box:nth-child(2n) .top .cover {
    margin: 0 0 0 -2%;
  }
  .content .container .box-wrapper .box .middle {
    padding: 30px 0 30px 0;
  }
  .content .container .box-wrapper .box .middle .block {
    display: flex;
    justify-content: center;
  }
  .content .container .box-wrapper .box .middle .block .mark {
    margin: 15px 10px 0 0;
  }
  .content .container .box-wrapper .box .middle .block .mark p {
    padding: 1rem 4rem 1.2rem;
    font-size: 1.8rem;
  }
  .content .container .box-wrapper .box .middle .block .mark p .sp-disblock {
    display: block;
  }
  .content .container .box-wrapper .box .middle .block .mark:last-child {
    margin: 15px 0 0 0;
  }
  .content .container .box-wrapper .box .middle .sentence {
    margin: 25px 0 0 0;
  }
  .content .container .box-wrapper .box .middle .sentence p {
    letter-spacing: 1px;
    line-height: 2;
    padding: 10px 0 10px 0;
    font-size: 16px;
  }
  .content .container .box-wrapper .box .middle .sentence p .small {
    font-size: 0.8em;
  }
} /* 1024px～1280px responsive-close



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

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

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .content:before {
    width: 100%;
    height: 6px;
  }
  .content .container {
    background-size: 30px auto;
    padding: 65px 0 0 0;
  }
  .content .container .box-wrapper {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 30px 1.5% 30px 1.5%;
  }
  .content .container .box-wrapper .box {
    padding: 60px 0 20px 0;
  }
  .content .container .box-wrapper .box .top .cover {
    width: 52%;
    margin: 0 -2% 0 0;
  }
  .content .container .box-wrapper .box .top .cover .semi {
    margin: -120px 0 0px 35px;
    line-height: 0.9;
  }
  .content .container .box-wrapper .box .top .cover .semi span.big {
    font-size: 8rem;
    letter-spacing: 3px;
  }
  .content .container .box-wrapper .box .top .cover .semi span.small {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  .content .container .box-wrapper .box .top .cover .en {
    padding: 50px 30px 10px 30px;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1;
  }
  .content .container .box-wrapper .box .top .cover h2 {
    padding: 0px 30px 60px 30px;
    font-size: 3rem;
  }
  .content .container .box-wrapper .box .top .cover h2 .sp-disblock {
    display: block;
  }
  .content .container .box-wrapper .box .top .thumb {
    width: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(163, 205, 233, 0.3);
    line-height: 0;
  }
  .content .container .box-wrapper .box .top .thumb img {
    width: 100%;
    height: auto;
  }
  .content .container .box-wrapper .box:nth-child(2n) .top {
    flex-direction: row-reverse;
  }
  .content .container .box-wrapper .box:nth-child(2n) .top .cover {
    margin: 0 0 0 -2%;
  }
  .content .container .box-wrapper .box .middle {
    padding: 30px 0 30px 0;
  }
  .content .container .box-wrapper .box .middle .block {
    display: flex;
    justify-content: center;
  }
  .content .container .box-wrapper .box .middle .block .mark {
    margin: 15px 1re, 0 0;
  }
  .content .container .box-wrapper .box .middle .block .mark p {
    padding: 0.75rem 2rem;
    font-size: 1.7rem;
  }
  .content .container .box-wrapper .box .middle .block .mark:last-child {
    margin: 15px 0 0 0;
  }
  .content .container .box-wrapper .box .middle .sentence {
    margin: 25px 0 0 0;
    padding: 0 2%;
  }
  .content .container .box-wrapper .box .middle .sentence p {
    letter-spacing: 1px;
    line-height: 2;
    padding: 10px 0 10px 0;
    font-size: 1.5rem;
  }
  .content .container .box-wrapper .box .middle .sentence p .small {
    font-size: 0.8em;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

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

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .content:before {
    width: 100%;
    height: 6px;
  }
  .content .container {
    padding: 65px 0 0 0;
  }
  .content .container .box-wrapper {
    max-width: 1480px;
    margin: 0 auto 0;
    padding: 30px 0% 30px 0%;
  }
  .content .container .box-wrapper .box {
    padding: 40px 0 20px 0;
  }
  .content .container .box-wrapper .box .top {
    display: block;
  }
  .content .container .box-wrapper .box .top .cover {
    background: linear-gradient(45deg, #1c9f85 10%, #1a6dbb 100%);
    width: 92%;
    margin: 0 auto 0;
    position: relative;
    z-index: 2;
  }
  .content .container .box-wrapper .box .top .cover .semi {
    margin: -130px 0 0px 25px;
  }
  .content .container .box-wrapper .box .top .cover .semi span.big {
    font-size: 15vw;
    letter-spacing: 3px;
  }
  .content .container .box-wrapper .box .top .cover .semi span.small {
    font-size: 4.25vw;
    letter-spacing: 2px;
  }
  .content .container .box-wrapper .box .top .cover .en {
    padding: 3rem 2.5rem 1rem;
    font-weight: 600;
    font-size: 4.5vw;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
  }
  .content .container .box-wrapper .box .top .cover h2 {
    padding: 2rem 2.5rem 5rem;
    font-size: 6.5vw;
  }
  .content .container .box-wrapper .box .top .thumb {
    width: 100%;
    margin: -2rem 0 0 0;
  }
  .content .container .box-wrapper .box .top .thumb img {
    width: 100%;
    height: auto;
  }
  .content .container .box-wrapper .box:nth-child(2n) .top .cover {
    margin: 0 auto 0;
  }
  .content .container .box-wrapper .box .middle {
    padding: 10px 0 0px 0;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 2;
  }
  .content .container .box-wrapper .box .middle .block {
    display: block;
  }
  .content .container .box-wrapper .box .middle .block .mark {
    margin: 10px auto 0;
    width: 90%;
    text-align: center;
  }
  .content .container .box-wrapper .box .middle .block .mark p {
    display: block;
    background: #fff;
    color: #399baa;
    letter-spacing: 2px;
    border: solid 2px #399baa;
    padding: 5px 15px 5px 15px;
    font-size: 4.25vw;
  }
  .content .container .box-wrapper .box .middle .block .mark:last-child {
    margin: 10px auto 0;
  }
  .content .container .box-wrapper .box .middle .sentence {
    margin: 15px 4% 0;
  }
  .content .container .box-wrapper .box .middle .sentence p {
    letter-spacing: 1px;
    line-height: 1.8;
    color: #399baa;
    padding: 10px 0 10px 0;
    font-size: 3.75vw;
  }
  .content .container .box-wrapper .box .middle .sentence p .small {
    font-size: 0.8em;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=feature.css.map */