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

〇 SERVICE > CONTENT 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#service .content {
  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;
}
#service .content .box-wrapper {
  max-width: 1920px;
  margin: 0 auto 0;
  padding: 0 2% 0 2%;
}
#service .content .box-wrapper .box {
  background: #fff;
  box-shadow: rgba(150, 150, 150, 0.25) 0 7px 29px 0;
  display: flex;
  align-items: stretch;
  position: relative;
  margin: 4rem 0 0 0;
  overflow: hidden;
}
#service .content .box-wrapper .box .number {
  line-height: 1;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: inline-block;
  background: linear-gradient(45deg, #1c9f85 0%, #1a6dbb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  font-family: "Jost";
  font-weight: 300;
  font-size: 100px;
}
#service .content .box-wrapper .box::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #1c9f85 10%, #1a6dbb 100%);
  opacity: 0.5;
  width: 100px;
  height: 40px;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
}
#service .content .box-wrapper .box .sub {
  position: relative;
  z-index: 3;
  width: 40px;
  background: linear-gradient(45deg, #59c09f 10%, #4ea6c3 100%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#service .content .box-wrapper .box .sub span {
  color: #fff;
  writing-mode: vertical-lr;
  font-family: "Antonio";
  letter-spacing: 3px;
  font-size: 16px;
}
#service .content .box-wrapper .box .main {
  position: relative;
  z-index: 2;
  width: calc(100% - 5rem);
  display: flex;
  align-items: center;
  padding: 4rem 5rem;
  flex-direction: row-reverse;
}
#service .content .box-wrapper .box .main .thumb {
  width: 55rem;
  height: 300px;
}
#service .content .box-wrapper .box .main .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .content .box-wrapper .box .main .text {
  width: calc(100% - 55rem);
  padding: 0 45px 0 0;
}
#service .content .box-wrapper .box .main .text h2 {
  font-weight: 500;
}
#service .content .box-wrapper .box .main .text h2 span {
  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: 2px;
  font-size: 32px;
}
#service .content .box-wrapper .box .main .text h3 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0 0 0;
}
#service .content .box-wrapper .box .main .text ul {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0 0 0;
}
#service .content .box-wrapper .box .main .text ul li {
  position: relative;
  color: #399baa;
  font-size: 1.8rem;
  padding: 1rem 3rem 1rem;
  margin: 1rem 1rem 0 0;
}
#service .content .box-wrapper .box .main .text ul li::before {
  position: absolute;
  z-index: 2;
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 2px;
  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);
}
#service .content .box-wrapper .box .main .text ul li:last-child {
  margin: 1rem 0 0 0;
}
#service .content .box-wrapper .box .main .text .sentence {
  margin: 2rem 0 0 0;
}
#service .content .box-wrapper .box .main .text .sentence p {
  color: #222222;
  line-height: 1.8;
  font-size: 1.8rem;
  padding: 10px 0 10px 0;
}

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

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #service .content .box-wrapper {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 1.5% 0 1.5%;
  }
  #service .content .box-wrapper .box {
    margin: 40px 0 0 0;
  }
  #service .content .box-wrapper .box .number {
    line-height: 1;
    top: 0;
    right: 0;
    opacity: 0.15;
    font-size: 100px;
  }
  #service .content .box-wrapper .box::before {
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 100px;
    height: 40px;
    clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  }
  #service .content .box-wrapper .box .sub {
    z-index: 3;
    width: 30px;
  }
  #service .content .box-wrapper .box .sub span {
    letter-spacing: 3px;
    font-size: 14px;
  }
  #service .content .box-wrapper .box .main {
    width: calc(100% - 30px);
    padding: 40px 40px 40px 40px;
  }
  #service .content .box-wrapper .box .main .thumb {
    width: 45%;
    height: 280px;
  }
  #service .content .box-wrapper .box .main .thumb img {
    width: 100%;
    height: 100%;
  }
  #service .content .box-wrapper .box .main .text {
    width: 55%;
    padding: 0 40px 0 0;
  }
  #service .content .box-wrapper .box .main .text h2 span {
    letter-spacing: 2px;
    font-size: 30px;
  }
  #service .content .box-wrapper .box .main .text h3 {
    font-size: 17px;
    margin: 15px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text ul {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text ul li {
    font-size: 1.65rem;
    padding: 1rem 2rem 1rem;
    margin: 1rem 1rem 0 0;
  }
  #service .content .box-wrapper .box .main .text ul li:last-child {
    margin: 1rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text .sentence {
    margin: 10px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text .sentence p {
    line-height: 1.8;
    font-size: 15px;
    padding: 10px 0 10px 0;
  }
} /* 1024px～1280px responsive-close */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

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

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #service .content .box-wrapper {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 2.5% 0 2.5%;
  }
  #service .content .box-wrapper .box {
    margin: 40px 0 0 0;
  }
  #service .content .box-wrapper .box .number {
    line-height: 1;
    top: 0;
    right: 0;
    opacity: 0.15;
    font-size: 100px;
  }
  #service .content .box-wrapper .box::before {
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 100px;
    height: 40px;
    clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  }
  #service .content .box-wrapper .box .sub {
    z-index: 3;
    width: 30px;
  }
  #service .content .box-wrapper .box .sub span {
    letter-spacing: 3px;
    font-size: 14px;
  }
  #service .content .box-wrapper .box .main {
    width: calc(100% - 30px);
    padding: 40px 40px 40px 40px;
    display: block;
  }
  #service .content .box-wrapper .box .main .thumb {
    width: 100%;
    height: 350px;
  }
  #service .content .box-wrapper .box .main .thumb img {
    width: 100%;
    height: 100%;
  }
  #service .content .box-wrapper .box .main .text {
    width: 100%;
    padding: 30px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text h2 span {
    letter-spacing: 2px;
    font-size: 30px;
  }
  #service .content .box-wrapper .box .main .text h3 {
    font-size: 17px;
    margin: 15px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text ul {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text ul li {
    font-size: 1.65rem;
    padding: 1rem 2rem 1rem;
    margin: 1rem 1rem 0 0;
  }
  #service .content .box-wrapper .box .main .text ul li:last-child {
    margin: 1rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text .sentence {
    margin: 10px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text .sentence p {
    line-height: 1.8;
    font-size: 15px;
    padding: 10px 0 10px 0;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

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

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #service .content .title {
    padding: 50px 0 20px 0;
  }
  #service .content .title .en .line {
    padding: 4px 80px 4px 80px;
    transform: skew(-30deg);
  }
  #service .content .title .en .line::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 2px;
    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);
  }
  #service .content .title .en .line .grade {
    letter-spacing: 5px;
    font-size: 4vw;
    transform: skew(30deg);
  }
  #service .content .title h2 {
    margin: 15px 0 0 0;
  }
  #service .content .title h2 .main {
    letter-spacing: 3px;
    font-size: 7vw;
  }
  #service .content .title h2 .main .inner {
    padding: 0 5px 0 5px;
  }
  #service .content .title h2 .main .inner::before {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 10px);
    height: 3px;
  }
  #service .content .title h2 .sub {
    letter-spacing: 2px;
    font-size: 5.5vw;
  }
  #service .content .box-wrapper {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 2.5% 0 2.5%;
  }
  #service .content .box-wrapper .box {
    margin: 40px 0 0 0;
  }
  #service .content .box-wrapper .box .number {
    line-height: 1;
    top: 0;
    right: 0;
    opacity: 0.15;
    font-size: 100px;
  }
  #service .content .box-wrapper .box::before {
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 100px;
    height: 40px;
    clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  }
  #service .content .box-wrapper .box .sub {
    z-index: 3;
    width: 24px;
  }
  #service .content .box-wrapper .box .sub span {
    letter-spacing: 3px;
    font-size: 12px;
  }
  #service .content .box-wrapper .box .main {
    width: calc(100% - 24px);
    padding: 3rem 2.5rem 5rem;
    display: block;
  }
  #service .content .box-wrapper .box .main .thumb {
    width: 100%;
    height: 250px;
  }
  #service .content .box-wrapper .box .main .thumb img {
    width: 100%;
    height: 100%;
  }
  #service .content .box-wrapper .box .main .text {
    width: 100%;
    padding: 30px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text h3 span {
    letter-spacing: 1px;
    font-size: 6vw;
  }
  #service .content .box-wrapper .box .main .text h4 {
    font-size: 4vw;
    margin: 15px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text h4 br {
    display: none;
  }
  #service .content .box-wrapper .box .main .text ul {
    display: block;
    margin: 2rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text ul li {
    text-align: center;
    font-size: 4vw;
    padding: 1rem 2rem 1rem;
    margin: 1rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text ul li:last-child {
    margin: 1rem 0 0 0;
  }
  #service .content .box-wrapper .box .main .text .sentence {
    margin: 10px 0 0 0;
  }
  #service .content .box-wrapper .box .main .text .sentence p {
    line-height: 1.8;
    font-size: 3.75vw;
    padding: 10px 0 10px 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=service.css.map */