@charset "utf-8";

/*==================================================
---COMMON
====================================================*/
body {
  line-height: 28px;
  animation-duration: 1.5s;
  overflow: auto;
  position: relative;
  z-index: -2;
  font-feature-settings: "palt";
  letter-spacing: .02em;
  color: #373B3C;
  word-break: break-all;
  font-weight: 700;
  font-style: normal;
  animation-name: opacity;
  font-family: YakuHanJPs_Noto, "Montserrat", "source-han-sans-japanese", sans-serif;
}

body a {
  color: #373B3C;
}

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

@keyframes opacity {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

.spheader {
  display: none;
}
.bodyWrap {
  position: relative;
  z-index: -1;
}
.sameFade {
  opacity: 0;
  transform: translate(0, 10px);
  transition: 1.5s cubic-bezier(0.36, 0.14, 0, 1) 0s;
}
.sameFade.scrollin {
  opacity: 1;
  transform: translate(0);
}

.pcHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: 0.3s;
  display: flex;
  padding: 30px 54px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background: #fff;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.pcHeader .logoBox {
  display: flex;
  column-gap: 26px;
}
.spheader {
  display: none;
}
.pcHeader .navBox {
  display: flex;
  align-items: center;
}
.pcHeader .navBox nav {
  margin-right: 32px;
}
.pcHeader .navBox ul {
  display: flex;
  align-items: center;
  column-gap: 26px;
}
.pcHeader .navBox ul a{
  transition: .4s;
}
.pcHeader .navBox ul a:hover{
  color: #0779C3;
}
.pcHeader .BtnBox {
  display: flex;
  column-gap: 10px;
}
.pcHeader .BtnBox a {
  display: block;
  border-radius: 100vw;
  color: #fff;
  width: 181px;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 25px;
}
.pcHeader .BtnBox .contact {
  background: #6B5FFF;
  box-shadow: 0 8px 20px rgba(107, 95, 255, 0.40);
}
.pcHeader .BtnBox .document {
  background-image: linear-gradient(150deg, rgba(4, 116, 193, 1) 10%, rgba(55, 168, 209, 1) 90%);
  box-shadow: 0 8px 20px rgba(43, 158, 206, 0.40);
}

.firstView {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url(../img/firstimg.jpg);
  margin-top: 109px;
  overflow: hidden;
  margin-bottom: 48px;
}
.firstView .comonBtn a {
  color: #fff;
  width: 100%;
  height: 78px;
  font-size: 18px;
}
.comonBtn br{
  display: none;
}
.firstView .freeP {
  font-size: 14px;
  text-align: center;
  margin-bottom: 9px;
  color: #299BCE;
}
.firstView .freeP span {
  display: inline-block;
  position: relative;
  padding: 0 14px;
}
.firstView .freeP span::after{
  content: "";
  position: absolute;
  background-image: url(../img/freeleft.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 17px;
  left: 0;
  top: 4px;
}
.firstView .freeP span::before {
  content: "";
  position: absolute;
  background-image: url(../img/freeright.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 17px;
  right: 0;
  top: 4px;
}
.firstViewInner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  height: 575px;
  padding: 0 80px;
  align-items: center;
}
.srBox .inFlex ul li br{
  display: none;
}
.firstViewInner>div{
  margin-top: 66px;
}
.srBox .topFlex >p{
  display: none;
}
.firstViewInner::after {
  content: "";
  position: absolute;
  background-image: url(../img/mockupimg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 870px;
  height: 489px;
  right: -36%;
  top: 60px;
}
.firstView .textBox .lead{
  font-size: 22px;
  margin-bottom: 11px;
}
.firstView h1 {
  font-size: 62px;
  line-height: 85px;
  letter-spacing: .1em;
  margin-bottom: 25px;
}

.loopintrcompanyWrap{
  overflow: hidden;
}
.loopintrcompany {
  position: relative;
  display: flex;
  width: 113vw;
  overflow: hidden;
}
.loopintrcompany ul {
  padding: 0;
  width: 118vw;
  display: flex;
  flex-shrink: 0;
}
.loopintrcompany ul:first-child {
  animation: slide1 240s -120s linear infinite;
}
.loopintrcompany ul:last-child {
  animation: slide2 240s linear infinite;
}
.loopintrcompany ul li {
  display: inline-block;
  width: 100%;
  margin-right: 20px;
  list-style: none;
  text-align: center;
}
.loopintrcompany ul li img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

#about {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  margin-bottom: 84px;
  margin-top: 90px;
}
#about .aboutInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
#about .aboutInner h2 {
  font-size: 25px;
  line-height: 46px;
  margin-bottom: 23px;
}
#about .aboutInner .des {
  max-width: 965px;
  line-height: 34px;
  font-weight: 500;
}
#about .loopSlide {
  display: flex;
  width: 100vw;
  height: 186px;
  position: relative;
}
#about .loopSlide::after {
  position: absolute;
  content: "";
  height: 1px;
  background: #fff;
  width: 100%;
  top: -40px;
}
#about .loopSlide::before {
  position: absolute;
  content: "";
  height: 1px;
  background: #fff;
  width: 100%;
  bottom: -40px;
}
#about .loopSlideWrap {
  overflow: hidden;
}
#about .loopSlide img {
  width: auto;
  height: 100%;
}
#about .loopSlideWrap {
  overflow: hidden;
  position: absolute;
  top: 185px;
}
#about .loopSlide img:first-child {
  animation: slide1 160s -80s linear infinite;
}
#about .loopSlide img:last-child {
  animation: slide2 160s linear infinite;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

#Message {
  background: #F2F4F5;
}
#Message .MessageBg img {
  width: 100%;
}
#Message .Wboard {
  position: relative;
  max-width: 1280px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 72px 143px;
  background: #fff;
  border-radius: 10px;
  z-index: 2;
}
#Message .handBg {
  margin-bottom: 78px;
}
#Message .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#Message .BolBox {
  position: absolute;
  width: 18px;
  background: #0779C3;
  border-radius: 100vw;
  height: 18px;
}
#Message .leftTBol {
  left: 30px;
  top: 29px;
}
#Message .leftBBol {
  left: 30px;
  bottom: 29px;
}
#Message .rightTBol {
  right: 30px;
  top: 29px;
}
#Message .rightBBol {
  right: 30px;
  bottom: 29px;
}
#Message .MessageInner {
  position: relative;
  margin-top: -80px;
  padding: 0 80px;
}
#Message .MessageInner::after {
  content: "";
  position: absolute;
  background: #F2F4F5;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: -103px;
  left: 140px;
  bottom: 0;
}
#Message .flex .des {
  font-size: 17px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 31px;
}
#Message .flex .des span {
  display: inline-block;
  color: #0779C3;
}
#Message .subTitle {
  font-size: 15px;
  background: #0779C3;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  position: relative;
  margin-bottom: 26px;
  padding: 15px 15px 12px 15px;
}
#Message .subTitle::after {
  content: "";
  position: absolute;
  background-image: url(../img/grArrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
#Message .aten {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
#Message .graphBox {
  text-align: center;
}

#feature {
  background: #F2F4F5;
  padding: 120px 80px;
}
#feature .featureInner {
  max-width: 1280px;
  margin: 0 auto;
}
#feature .commonTitleBox {
  text-align: center;
}
#feature .commonTitleBox .enTItle {
  display: inline-block;
}
#feature .flex {
  display: flex;
  margin-top: 100px;
  column-gap: 27px;
  justify-content: space-between;
}
#feature .flex img {
  width: 100%;
}
#feature .flex .imgBox {
  overflow: hidden;
  border-radius: 0 6px 0 0;
}
#feature .flex .nam {
  display: inline-block;
  border-radius: 6px 6px 0 0;
  color: #fff;
  background: #0779C3;
  padding: 0 13px;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: -28px;
}
#feature .flex > div {
  background: #fff;
  border-radius: 0 0 10px 10px;
  position: relative;
}
#feature .flex > div a{
  display: block;
  transition: .4s;
}
#feature .flex > div a:hover{
  opacity: .8;
}
#feature .titleBox {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
#feature .flex h3 {
  font-size: 22px;
  text-align: center;
  line-height: 33px;
}
#feature .flex h3 span {
  color: #0779C3;
}

.sphero{
  display: none;
}

.commonMainTitleBox {
  padding: 180px 80px 110px 80px;
  background-image: linear-gradient(129deg, rgba(9, 121, 194, 1) 10%, rgba(50, 164, 208, 1) 90%);
  position: relative;
}
.commonMainTitleBox .flex::after {
  content: "Feature01";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: -80px;
  top: -21px;
  font-size: 133px;
  color: #fff;
  opacity: .07;
}
.commonMainTitleBox .flex {
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
  display: flex;
  color: #fff;
}
.commonMainTitleBox h3 {
  font-size: 37px;
  width: 595px;
  line-height: 49px;
  box-sizing: border-box;
  padding-left: 120px;
  position: relative;
}
.commonMainTitleBox h3::after {
  content: "";
  position: absolute;
  background-image: url(../img/ficon01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 108px;
  height: 108px;
  top: 50%;
  left: 48px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
#feature01 .commonMainTitleBox h3::after {
  background-image: url(../img/ficon01.png);  
}
#feature02 .commonMainTitleBox h3::after {
  background-image: url(../img/ficon02.png);  
}
#feature03 .commonMainTitleBox h3::after {
  background-image: url(../img/ficon03.png);  
}
#feature04 .commonMainTitleBox h3::after {
  background-image: url(../img/ficon04.png);  
}
.commonMainTitleBox h4 {
  font-size: 19px;
  margin-bottom: 23px;
  line-height: 35px;
  letter-spacing: .06em;
}
.commonMainTitleBox .des {
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
}

#feature01 .customizeFlex {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: content-box;
  margin-top: 93px;
  text-align: center;
  margin-bottom: 147px;
}
#feature01 .customizeFlex .center {
  position: relative;
}
#feature01 .customizeFlex > div {
  width: 30%;
}
#feature01 .customizeFlex .center::after {
  content: "+";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  color: #0779C3;
  top: 42%;
  left: -34px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 36px;
}
#feature01 .customizeFlex .center::before {
  content: "=";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  color: #0779C3;
  top: 42%;
  right: -52px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 36px;
}
#feature01 .customizeFlex img {
  width: 100%;
}
#feature01 .customizeFlex h5 {
  margin-top: 21px;
  font-size: 24px;
  color: #0779C3;
  margin-bottom: 10px;
}

.subConTitle {
  text-align: center;
  margin-bottom: 54px;
}
.subConTitle .EnTItle {
  font-size: 15px;
  color: #0779C3;
  margin-bottom: 6px;
}
.subConTitle .JaTItle {
  font-size: 32px;
}

.TabChanBox {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: content-box;
  margin-bottom: 39px;
}
.TabChanBox ul {
  list-style: none;
}
.TabChanBox .tab-area {
  display: flex;
  background: #F2F4F5;
  border: solid 1px #E6E6E6;
  border-radius: 100vw;
  cursor: pointer;
  padding: 7px 12px;
  margin-bottom: 24px;
}
.TabChanBox .tab {
  width: 100%;
  padding: 16px 0;
  text-align: center;
}
.TabChanBox .tab.active {
  /* background-image: linear-gradient(129deg, rgba(9, 121, 194, 1) 10%, rgba(50, 164, 208, 1) 90%); */
  background: #1989c7;
  color: #fff;
  border-radius: 100vw;
  transition: .4s;
}
.TabChanBox .panel {
  display: none;
  max-width: 980px;
  transition: .4s;
  margin: 0 auto;
}
.TabChanBox .panel .flex {
  display: flex;
  column-gap: 132px;
  margin-bottom: 55px;
}
.TabChanBox .panel .TitleBox {
  width: 312px;
}
.TabChanBox .imgBox img {
  width: 100%;
}
.TabChanBox .panel .enTItle {
  font-size: 43px;
  margin-bottom: 8px;
}
.TabChanBox .panel .jaTItle {
  font-size: 20px;
}
.TabChanBox .panel .des {
  font-size: 17px;
  letter-spacing: .06em;
  line-height: 30px;
}
.TabChanBox .panel-area {
  padding: 76px 25px;
}
.TabChanBox .panel .aten {
  font-size: 14px;
  font-weight: 500;
}
.TabChanBox .panel .textBox {
  width: 100%;
}

.toggle_contents {
  border-top: solid 2px #0779C3;
  border-bottom: solid 2px #0779C3;
  padding: 0 80px;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 120px;
}
.toggle_title {
  position: relative;
  padding: 27px 0;
  cursor: pointer;
  font-size: 22px;
  text-align: center;
  color: #0779C3;
  line-height: 1.4;
}
.toggle_title span {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  font-size: 29px;
  top: 2px;
}
.toggle_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #0052a4;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.toggle_btn:before,
.toggle_btn:after {
  display: block;
  content: '';
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle_btn:before {
  width: 2px;
  height: 10px;
}
.toggle_title.selected .toggle_btn:before {
  content: normal;
}
.toggle_contents dd {
  display: none;
}
.toggle_contents dd .flex{
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 30px 0;
  flex-wrap: wrap;
}
.toggle_contents dd .flex img{
  max-width: 100%;
  margin-bottom: 20px;
}
.toggle_contents dd .flex>div{
  width: 31%;
  margin-bottom: 35px;
}
.toggle_contents dd .title{
  font-size: 20px;
  color: #0779C3;
  margin-bottom: 10px;
}
.toggle_contents dd .des{
  font-weight: 500;
  text-align: left;
}

.introductionBox {
  padding: 0 80px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 93px;
}
.introductionBox .titleBox .enTitle {
  font-size: 32px;
  margin-bottom: 24px;
}
.introductionBox .titleBox .subTitle {
  font-size: 24px;
  color: #0779C3;
  margin-bottom: 23px;
}
.introductionBox .speechBox {
  max-width: 720px;
  margin: 0 auto;
}
.introductionBox .subDes {
  font-size: 20px;
}
.introductionBox .aten {
  font-size: 15px;
}
.introductionBox .speech {
  background: #0779C3;
  position: relative;
  border-radius: 100vw;
  color: #fff;
  padding: 14px 0;
  margin-bottom: 14px;
}
.introductionBox .speech::after {
  content: "";
  position: absolute;
  background-image: url(../img/plugArrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 14px;
  bottom: -13px;
  left: 97px;
}
.introductionBox .imgBox img {
  max-width: 100%;
}
.introductionBox .small {
  font-size: 14px;
  margin-bottom: 28px;
  margin-top: -20px;
  letter-spacing: .06em;
}
.dodLine {
  width: 100%;
  height: 1px;
  margin: 60px 0;
  border-bottom: dashed 2px #A2B0B5;
}

.TabChanBox .panel.active {
  display: block;
  transition: .4s;
}
.TabChanBox .panel-area {
  transition: .4s;
  background-image: linear-gradient(129deg, rgba(9, 121, 194, 1) 10%, rgba(50, 164, 208, 1) 90%);
  border-radius: 10px;
  color: #fff;
  transition: .4s;
}
.srBox {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: content-box;
  margin-top: 93px;
}
.srBox .subConTitle {
  text-align: left;
}
.srBox .topFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 137px;
}
.srBox .inFlex {
  display: flex;
  column-gap: 33px;
  margin-bottom: 35px;
  align-items: center;
  width: 48%;
}
.srBox .inFlex ul {
  list-style-position: inside;
}
.srBox .title {
  font-size: 22px;
  margin-bottom: 23px;
}
.srBox .inFlex ul li {
  margin-left: 1rem;
  text-indent: -1rem;
  letter-spacing: .06em;
  font-weight: 500;
}
.srBox .bottomFlex .imgBox img {
  width: 100%;
}
.srBox .bottomFlex {
  display: flex;
  align-items: flex-end;
  margin-bottom: 93px;
  justify-content: space-between;
}
.srBox .bottomFlex .textBox {
  position: relative;
}
.srBox .bottomFlex .textBox::after {
  content: " ” ";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 197px;
  color: #0779C3;
  opacity: .15;
  right: -25px;
  font-weight: 500;
  bottom: -44px;
}
.srBox .bottomFlex .des {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: .06em;
}
.srBox .bottomFlex > div {
  width: 40%;
}
.srBox .bottomFlex .imgBox {
  width: 53%;
}
.srBox .bottomFlex .voiceEn {
  font-size: 15px;
  margin-bottom: 12px;
  color: #0779C3;
}
.srBox .bottomFlex .voiceJa {
  font-size: 22px;
  margin-bottom: 32px;
}

.btnFlex {
  display: flex;
  justify-content: center;
  column-gap: 29px;
  margin-bottom: 132px;
}
.btnFlex .comonBtn a {
  width: 442px;
  font-size: 20px;
  height: 84px;
}
.btnFlex .comonBtnPurple a:before {
  background: #6B5FFF;
}
.btnFlex .comonBtnPurple a {
  box-shadow: 0 8px 20px rgba(107, 95, 255, 0.4);
}

.osare3-table {
  width: 1095px;
  border-collapse: separate;
  border: none;
  /*    border-spacing: 0px 10px;*/
  margin: 0 auto;
}
.osare3-table tbody td,
.osare3-table tfoot td {
  text-align: center;
}
/* 上部ヘッダー（背景：パステルカラー） */
.osare3-table thead th {
  color: #FFF;
  font-weight: bold;
  background: #00375C;
}
/* 上部ヘッダーの丸み */
.osare3-table thead th:nth-child(1) {
  border-radius: 20px 0 0 0;
}
.osare3-table thead th:last-child {
  border-radius: 0 20px 0 0;
  padding: 24px 0;
}
.osare3-table thead th:nth-child(2) {
  width: 334px;
}
.osare3-table thead th:nth-child(3) {
  width: 365px;
}
.osare3-table td:nth-child(1) {
  border-radius: 0 0 0 20px;
}
.osare3-table td:nth-child(2) {
  text-align: left;
}
.osare3-table td:last-child {
  border-radius: 0 0 20px 0;
}
.osare3-table td {
  font-size: 17px;
  border-right: 1px solid #F2F4F5;
}
.osare3-table th {
  font-size: 18px;
  border-right: 1px solid #F2F4F5;
}
.osare3-table tr:nth-child(even) td {
  background: #f5f5f5;
}
.osare3-table tr:nth-child(odd) td {
  background: #FDFDFD;
  margin: 0 auto;
  vertical-align: middle;
  padding: 45px 26px 28px 26px;
}

#feature02 .commonMainTitleBox .flex::after {
  content: "Feature02";
}
#feature03 .commonMainTitleBox .flex::after {
  content: "Feature03";
}
#feature04 .commonMainTitleBox .flex::after {
  content: "Feature04";
}
#feature03 .pricebox {
  background: #F2F4F5;
  padding: 85px 80px;
  padding-bottom: 69px;
}
#feature03 .colorB {
  color: #0E7EC4;
  font-size: 19px;
}
#feature03 .colorB .pointcf {
  font-size: 88px;
}
#feature03 .colorB.title {
  font-size: 20px;
  margin-bottom: 10px;
}
#feature03 .colorB .en {
  font-size: 43px;
}
#feature03 .aten {
  font-size: 14px;
}
#feature03 .mainAten {
  text-align: center;
  font-size: 22px;
  color: #1384C6;
  line-height: 39px;
  margin-top: 30px;
  margin-bottom: 83px;
}

#feature04 .maflexWrap {
  padding: 0 80px;
  margin-bottom: 133px;
}
#feature04 .maflex {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  column-gap: 62px;
  padding: 50px 0;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  border-bottom: dashed 1px #A2B0B5;
}
#feature04 .maflex h5 {
  font-size: 24px;
  color: #1384C6;
  margin-bottom: 13px;
}
#feature04 .maflexL {
  border: none;
}
#feature04 .maflex .imgBox {
  width: 45%;
}
#feature04 .maflex .textBox {
  width: 45%;
}
#feature04 .maflex .imgBox img {
  width: 100%;
  border-radius: 10px;
}
#feature04 .pmark {
  position: absolute;
  right: 0;
  bottom: 38px;
}
#feature04 .pmark img {
  width: 75px;
}

#case {
  background: #F2F4F5;
  padding: 100px 80px;
}
.caseInner {
  max-width: 1070px;
  margin: 0 auto;
}
.commonTitleBox {
  margin-bottom: 36px;
}
.commonTitleBox .enTItle {
  font-size: 22px;
  position: relative;
  margin-bottom: 17px;
  color: #0779C3;
  padding-left: 20px;
}
.commonTitleBox .enTItle::after {
  content: "";
  position: absolute;
  background: #0779C3;
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  left: 0;
  border-radius: 100vw;
  top: 9px;
}
.commonTitleBox h2 {
  font-size: 34px;
}

#case .des {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 54px;
}
#case .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#case .flex > div {
  width: 31%;
  margin-bottom: 75px;
}
#case .flex a{
  display: block;
  transition: .4s;
}
#case .flex a:hover {
  opacity: .7;
}
#case .flex a:hover img{
  transform: scale(1.1);
  /* opacity: .7; */
}
#case .flex img {
  width: 100%;
  border-radius: 10px;
  transition: .4s;
}
#case .flex .imgBox{
  overflow: hidden;
    border-radius: 10px;
}
#case .flex h3 {
  font-size: 18px;
  color: #1384C6;
  margin: 12px 0 0;
}
#case .flex .inDes {
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}

.comonBtn img {
  margin-left: 20px;
}
.comonBtn a {
  position: relative;
  z-index: 0;
  color: #fff;
  width: 300px;
  padding-left: 15px;
  height: 68px;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 100vw;
  box-shadow: 0 8px 20px rgba(43, 158, 206, 0.40);
}
.comonBtn a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: rgb(0, 119, 255);
  background: linear-gradient(90deg, #0878C2 0%, #32A4D0 100%);
}
.comonBtn a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: rgb(255, 0, 0);
  background: linear-gradient(90deg, #6B5FFF 0%, #4539e3 100%);
}
.comonBtn a:hover:before {
  opacity: 0;
}

.comonBtn a:hover {
  box-shadow: none;
}

#case .comonBtn a {
  margin: 0 auto;
}

#News {
  max-width: 1070px;
  margin: 0 auto;
  padding: 150px 80px;
}
#News .flex {
  display: flex;
  column-gap: 15%;
  justify-content: space-between;
}
#News .flex>p{
  display: none;
}
#News .inFlex {
  display: flex;
  column-gap: 21px;
  margin-bottom: 11px;
  align-items: center;
}
#News .day {
  font-size: 12px;
  color: #A5BDC3;
}
#News .cat {
  font-size: 12px;
  color: #0779C3;
  border-radius: 100vw;
  margin-top: -4px;
  line-height: 100%;
  border: solid 1px #0779C3;
  padding: 5px 12px 4px 12px;
}
#News .postBox > a {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 23px;
  border-bottom: solid 1px #A5BDC3;
  transition: .4s;
}
#News .postBox > a:hover h3{
  color: #0779C3;
}
#News .postBox h3{
  transition: .4s;
}
#News .postBox {
  width: 100%;
}
#News .tBox > div {
  position: sticky;
  top: 59%;
  padding-bottom: 20px;
}

footer .footerBottom .inFlex a{
  transition: .4s; 
}
footer .footerBottom .inFlex a:hover{
  color: #0779C3;
}
#footerLink {
  margin-bottom: 72px;
  position: relative;
  padding-top: 80px;
}
#footerLink::after {
  content: "";
  position: absolute;
  background: #F2F4F5;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  left: 0;
  bottom: -346px;
  z-index: -1;
}
.footerLinkInner {
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .footerTop {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/footerBg.png);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 63px 40px 100px 40px;
}
footer .footerTopWrap {
  padding: 0 80px;
  margin-bottom: 55px;
}
footer .footerTop::after {
  content: "";
  position: absolute;
  background: rgba(55, 65, 72, 0.94);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
footer .footerTopInner {
  position: relative;
  z-index: 3;
  max-width: 1070px;
  margin: 0 auto;
}
footer .footerTopInner .des {
  font-size: 26px;
  color: #fff;
  margin-bottom: 57px;
  text-align: center;
  line-height: 42px;
  letter-spacing: .1em;
}
footer .commonTitleBox {
  text-align: center;
}
footer .commonTitleBox .enTItle {
  display: inline-block;
  color: #fff;
}
footer .footerTopInner .flex {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
footer .fBtn a {
  border: solid 1px #fff;
  border-radius: 100vw;
  width: 316px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  box-sizing: border-box;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
}
footer .fBtn a img {
  margin-left: 20px;
}
footer .fBtn.contact a {
  background: #fff;
  color: #373B3C;
}
footer .aten {
  text-align: center;
  color: #fff;
  font-size: 13px;
  margin-left: 14px;
  margin-top: 3px;
  letter-spacing: .15em;
}
footer .nam {
  font-size: 36px;
  padding-left: 39px;
  position: relative;
  color: #fff;
}
footer .nam::after {
  content: "";
  position: absolute;
  background-image: url(../img/tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 27px;
  height: 27px;
  left: 0;
  top: 1px;
}
footer .fBtn.contact {
  position: relative;
}
footer .fBtn.contact::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.31);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1px;
  height: 89px;
  right: -42px;
  top: -12px;
}
footer .fBtn.contact::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.31);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1px;
  height: 89px;
  left: -42px;
  top: -12px;
}
footer .footerBottom {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 80px;
  margin-bottom: 55px;
}
footer .footerBottom .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footerBottom .inFlex {
  display: flex;
  font-size: 13px;
  align-items: center;
  column-gap: 33px;
}
footer small {
  display: block;
  text-align: center;
  background: #8C5CFF;
  font-size: 10px;
  color: #fff;
  padding: 20px 0 15px 0;
}

.speechBox .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  margin-top: 28px;
}
.speechBox .flex a{
  display: block;
}
.speechBox .flex a img{
  max-width: 100%;
}
.voiceTitle {
  font-size: 23px;
  margin-bottom: 16px;
  text-align: left;
  color: #0779c3;
}

@media screen and (max-width:1920px) {
  .firstViewInner::after {
    width: 710px;
    height: 454px;
    right: -216px;
    top: 128px;
  }
}

@media screen and (max-width:1550px) {
  .loopintrcompany ul {
    width: 154vw;
  }
  .firstViewInner::after {
    width: 710px;
    height: 454px;
    right: -131px;
    top: 128px;
  }
  .firstViewInner {
    height: 547px;
  }
  #about {
    margin-bottom: 27px;
    margin-top: 50px;
  }
  #Message .MessageInner::after {
    top: -50px;
    left: 35px;
    bottom: 0;
  }
}

@media screen and (max-width:1450px) {
  .firstViewInner::after {
    width: 710px;
    height: 454px;
    right: -175px;
    top: 128px;
  }
}

@media screen and (max-width:1350px) {
  #Message .Wboard {
    padding: 72px 83px;
  }
  footer .footerTopWrap {
    padding: 0 30px;
  }
  footer .footerTopInner .flex {
    column-gap: 30px;
  }
  footer .fBtn.contact::before {
    left: -16px;
  }
  footer .fBtn.contact::after {
    right: -16px;
  } 
  footer .nam {
    font-size: 29px;
  }
}

@media screen and (max-width:1276px) {
  .pcHeader .navBox ul {
    font-size: 14px;
    column-gap: 19px;
  }
  .pcHeader {
    padding: 30px 25px;
  }
}

@media screen and (max-width:1201px) {
  .firstViewInner::after {
    width: 710px;
    height: 454px;
    right: -259px;
    top: 128px;
  }
  header .btnFlex {
    margin-bottom: 52px;
    position: absolute;
    box-sizing: border-box;
    left: 0;
    margin: 0 auto;
    width: 90%;
    right: 0;
    bottom: 10%;
  }
  .TabChanBox .panel .enTItle {
    font-size: 35px;
  }
  .toggle_contents {
    padding: 0 30px;
  }
  .firstViewInner {
    padding: 0 30px;
  }
  #about .aboutInner {
    padding: 0 30px;
  }
  #Message .MessageInner::after {
    top: -36px;
    left: 11px;
  }
  #feature {
    padding: 90px 30px;
  }
  #Message .MessageInner {
      padding: 0 30px;
  }  
  .commonMainTitleBox {
    padding: 120px 30px 80px 30px;
  }  
  .commonMainTitleBox .flex::after {
    left: 0;
    top: -21px;
    font-size: 90px;
  }
  .commonMainTitleBox h3 {
    font-size: 26px;
    width: 452px;
    line-height: 38px;
    padding-left: 117px;
  }
  .commonMainTitleBox h4 {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 32px;
  } 
  #feature01 .customizeFlex {
    margin: 0 auto;
    padding: 0 30px;
    margin-top: 93px;
    margin-bottom: 107px;
  }
  .commonMainTitleBox .des {
    font-size: 15px;
    line-height: 30px;
  }  
  .TabChanBox {
    padding: 0 30px;
  }
  .introductionBox {
    padding: 0 30px;
  }
  .srBox {
    padding: 0 30px;
  }
  .osare3-table {
    width: auto;
  }
  #feature03 .pricebox {
    padding: 61px 30px;
    padding-bottom: 5px;
  }  
  #feature04 .maflexWrap {
    padding: 0 30px;
    margin-bottom: 83px;
  }
  #case {
    padding: 80px 30px;
  }
  #News {
    padding: 100px 30px;
  }
  .pcHeader{
    display: none;
  }
  .spheader {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 25px;
    z-index: 99;
    box-shadow: 0 0 20px 0 #0000002e;
    background: #fff;
    box-sizing: border-box;
  }
  .logoBox {
    display: flex;
    column-gap: 20px;
    align-items: center;
    position: relative;
    width: 90%;
    z-index: 999;
  }
  .firstView {
    margin-top: 83px;
  }
  #footerLink {
    padding: 0 30px;
    padding-top: 80px;
  }
  #Message .flex {
    column-gap: 25px;
  }
  #Message .subTitle br{
    display: none;
  }
  .menu {
    right: 26px;
    top: 34px;
  }
  .menu_box {
    right: 0;
    top: 0;
    position: absolute;
    cursor: pointer;
    background: linear-gradient(90deg, #0878C2 0%, #32A4D0 100%);
    height: 83px;
    z-index: 99;
    width: 90px;
  }
  #feature01 .customizeFlex .center::after {
    left: -27px;
  }
  #feature01 .customizeFlex .center::before {
    right: -49px;
  }
  .srBox .title {
    font-size: 19px;
    margin-bottom: 13px;
  } 
  footer .footerBottom {
    padding: 0 30px;
  }
}

@media screen and (max-width:1090px) {
  #feature03 .colorB .pointcf {
    font-size: 70px;
  }
  #feature03 .colorB .en {
    font-size: 28px;
  }
  .osare3-table td {
    font-size: 15px;
  }
  .osare3-table thead th:nth-child(3) {
    width: 340px;
  }  
  .osare3-table th {
    font-size: 16px;
  } 
}

@media screen and (max-width:1074px) {
  .firstViewInner {
    height: 477px;
  }
  .footerLinkInner{
    column-gap: 25px;
  }
  .footerLinkInner>div{
    width: 100%;
  }
  .footerLinkInner .comonBtn a {
    width: auto;
  }
  .firstViewInner::after {
    width: 510px;
    right: -182px;
  } 
  .loopintrcompany ul {
    width: 191vw;
  }
  .firstView .comonBtn a {
    height: 75px;
    font-size: 15px;
  }
  .firstView h1 {
    font-size: 50px;
    line-height: 68px;
  }
  .firstView .textBox .lead {
    font-size: 19px;
    margin-bottom: 11px;
  }
  footer .footerTopInner .flex {
    display: block;
  }
  footer .fBtn a {
    margin: 0 auto;
  }
  footer .footerTopInner .flex>div{
    margin-bottom: 14px;
  }
  footer .nam {
    display: inline-block;
  }
  footer .footerTop {
    padding: 63px 30px 39px 30px;
  }
  footer .fBtn.contact::before {
    display: none;
  } 
  .TabChanBox .panel .enTItle {
    font-size: 31px;
  }
  .commonMainTitleBox .flex {
    display: block;
  }
  .commonMainTitleBox h3 {
    font-size: 23px;
    width: auto;
    line-height: 35px;
    margin-bottom: 30px;
  }
  #feature {
    padding: 72px 30px;
    padding-bottom: 12px;
  }
  
  .TabChanBox .panel-area {
    padding: 49px 25px;
  }
  .TabChanBox .panel-area {
    padding: 49px 25px;
  }
  .TabChanBox .panel .des {
    font-size: 15px;
    letter-spacing: .06em;
    line-height: 28px;
  }
  .TabChanBox .panel .flex {
    margin-bottom: 27px;
  }
  .TabChanBox .panel .TitleBox {
    width: auto;
    margin-bottom: 13px;
  }
  footer .footerTopInner .des {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .TabChanBox .panel .jaTItle {
    font-size: 16px;
  }
  .commonTitleBox {
    margin-bottom: 18px;
  }
  .TabChanBox .panel .TitleBox {
    width: auto;
  }
  .subConTitle {
    margin-bottom: 37px;
  }
  .TabChanBox .panel .flex {
    display: block;
  }
  .subConTitle .JaTItle {
    font-size: 25px;
  }
  footer .fBtn.contact::after {
    display: none;
  }     
  #feature01 .customizeFlex h5 {
    margin-top: 10px;
  }
  footer .ftelBox {
    text-align: center;
    margin-top: 24px;
  }
  #Message .handBg img{
    width: 100%
  }
  #Message .flex .des {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  #Message .flex .des br{
    display: none;
  }
  #Message .flex >div {
    width: 100%
  }
  #Message .flex .graphBox {
    width: 60%;
  }
  #Message .flex .des span {
    display: inline;
  }
  #feature .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #feature .flex > div {
    width: 48%;
    margin-bottom: 60px;
  }
  
  .btnFlex .comonBtn a {
    width: auto;
  } 
  .btnFlex>div{
    width: 100%;
  } 
  .srBox .topFlex {
    display: flex;
  }
  .srBox .inFlex {
    display: block;
  }
  .srBox .imgBox{
    text-align: center;
  }
  .srBox .title {
    text-align: center;
    margin-top: 20px;
  }  
}

@media screen and (max-width:1028px) {
  .osare3Wrap {
    overflow: scroll;
  }
  #feature03 .pricebox {
    overflow: hidden;
  }
  .osare3-table {
    width: 1028px;
  }
  #News .flex {
    display: block;
  }
  #News .flex .tBox{
    margin-bottom: 35px;
  }
  .srBox .bottomFlex .des br{
    display: none;
  }
  .voiceTitle {
    font-size: 16px;
    margin-bottom: 6px;
  } 
}

@media screen and (max-width:768px) {
  .firstView h1 {
    font-size: 42px;
    line-height: 56px;
  }
  .firstView .textBox .lead {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #Message .flex {
    display: block;
  }
  .firstViewInner {
    height: 401px;
  }
  #feature01 .customizeFlex .center::before {
    right: -40px;
    top: 31%;
    font-size: 28px;
  }
  #feature01 .customizeFlex .center::after {
    left: -17px;
    font-size: 28px;
    top: 31%;
  }
  #feature01 .customizeFlex h5 {
    margin-top: 21px;
    font-size: 18px;
    margin-bottom: 7px;
  } 
  #Message .flex .graphBox {
    width: 67%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .firstViewInner::after {
    width: 410px;
    right: -148px;
    top: 112px;
  }
  .firstView .comonBtn a {
    height: 64px;
    font-size: 15px;
  }
  .commonTitleBox h2 {
    font-size: 25px;
  }
  .commonTitleBox .enTItle::after {
    top: 11px;
  }
  .commonTitleBox .enTItle {
    font-size: 20px;
    margin-bottom: 6px;
    padding-left: 14px;
  }
  #feature04 .maflex h5 {
    font-size: 19px;
    margin-bottom: 8px;
  }
  #feature04 .maflex {
    column-gap: 28px;
  }
  #feature04 .pmark {
    position: absolute;
    right: 0;
    bottom: -1px;
  }
  #feature03 .mainAten {
    font-size: 19px;
    line-height: 32px;
    margin-top: 30px;
    margin-bottom: 45px;
  }
  .btnFlex .comonBtn a {
    font-size: 15px;
    height: 74px;
  }
  .srBox .bottomFlex {
    margin-bottom: 43px;
  }
  .osare3-table thead th:nth-child(2) {
    width: 281px;
  }
  .btnFlex {
    justify-content: center;
    column-gap: 29px;
    margin-bottom: 82px;
  }
  .srBox .title {
    text-align: left;
    margin-top: 0;
  }
  .srBox .bottomFlex .imgBox {
    width: auto;
    margin-bottom: 30px;
  }
  .srBox .topFlex {
    margin-bottom: 67px;
  }
  .srBox .bottomFlex {
    display: block;
  }
  .srBox .bottomFlex > div {
    width: auto;
  }
  .firstView h1 {
    margin-bottom: 9px;
  }
  .loopintrcompany ul {
    width: 262vw;
  }
  .srBox .inFlex {
    width: auto;
  }
  .introductionBox {
    text-align: left;
  }
  #case .flex > div {
    width: 48%;
    margin-bottom: 51px;
  }
  .srBox .inFlex {
    display: flex;
  }
  .introductionBox .subDes {
    font-size: 18px;
  }
  .introductionBox .titleBox .subTitle {
    font-size: 22px;
    line-height: 30px;
  }
  .introductionBox .speech {
    border-radius: 16px;
    padding: 14px 14px
  }
  .toggle_contents dd .flex>div {
    width: 48%;
    margin-bottom: 27px;
  }
  #feature .flex > div {
    width: 47%;
  }
  .footerLinkInner>div {
    margin-bottom: 16px;
  }
  .srBox .topFlex {
    display: block;
  }
  .footerLinkInner {
    display: block;
  }
}

@media screen and (max-width:700px) {
  footer .footerBottom .flex {
    display: block;
  }
  .firstView {
    margin-bottom: 10px;
  }
  .firstViewInner {
    display: flex;
    justify-content: center;
  }
  .firstViewInner {
    height: auto;
  }
  .firstViewInner>div {
    margin-top: 28px;
  }
  .firstView {
    background: none;
    padding-bottom: 23px;
  }
  header .logoBox img{
    width: 100%;
  }
  #about .aboutInner .des {
    line-height: 29px;
    font-size: 14px;
  }
  .rightBBol {
    right: 14px;
    bottom: 16px;
  }
  .rightTBol {
    right: 14px;
    top: 16px;
  }
  .leftTBol {
    left: 14px;
    top: 16px;
  }
  .leftBBol {
    left: 14px;
    bottom: 16px;
  }
  #about {
    margin-bottom: 0;
  }
  #Message .flex .des {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  #Message .handBg {
    margin-bottom: 38px;
  }
  #Message .Wboard {
    padding: 47px 19px;
    padding-bottom: 23px;
  }
  #Message .flex .graphBox {
    width: 92%;
    margin-bottom: 10px;
  }
  #Message .MessageInner::after {
    top: -24px;
    left: 11px;
  }
  #Message .BolBox {
    width: 10px;
    height: 10px;
  }
  #Message .MessageBg img {
    height: 179px;
    object-fit: cover;
  }
  #about .aboutInner {
    padding: 0 25px;
  }
  .commonMainTitleBox h3::after {
    width: 98px;
    height: 98px;
  }

  #feature01 .customizeFlex > div {
    width: auto;
    margin-bottom: 25px;
  }
  #feature01 .customizeFlex {
    display: block;
  }
  .commonMainTitleBox h3 {
    padding-left: 104px;
  }
  .commonMainTitleBox .flex::after {
    font-size: 53px;
  }
  #Message .MessageInner {
    margin-top: -48px;
    padding: 0 25px;
  }
  #feature .flex > div {
    width: 46%;
  }
  #feature01 .customizeFlex h5 {
    margin-top: 15px;
    font-size: 17px;
    margin-bottom: -1px;
  }
  .toggle_contents dd .des {
    font-size: 13px;
    line-height: 25px;
  }
  .osare3-table td {
    font-size: 14px;
  }
  footer small {
    padding: 9px 0 6px 0;
  }
  footer .footerTop {
    padding: 40px 25px 21px 25px;
  }
  footer .footerTopInner .des {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 21px;
  }
  footer .footerBottom .inFlex {
    display: block;
    font-size: 13px;
  }
  footer .footerBottom {
    padding: 0 25px;
    margin-bottom: 30px;
  }
  footer .footerBottom .inFlex a{
    display: block;
    margin-bottom: 15px;
  }
  footer .aten {
    font-size: 11px;
    margin-top: -6px;
  }
  footer .nam {
    font-size: 25px;
  }
  footer .fBtn a {
    width: auto;
    font-size: 14px;
  }
  footer .footerTopWrap {
    padding: 0 25px;
  }
  #footerLink {
    padding: 0 25px;
    padding-top: 43px;
  }
  #footerLink {
    margin-bottom: 41px;
  }
  #News {
    padding: 50px 25px;
    padding-bottom: 20px;
  }
  .comonBtn a {
    font-size: 14px;
  }
  #feature03 .colorB {
  font-size: 16px;
  }
  #News h3 {
    font-size: 14px;
    line-height: 25px;
  }
  .osare3-table {
    width: 689px;
  }

  #case .flex .inDes {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 8px;
  }
  #case .flex h3 {
    font-size: 16px;
    color: #1384C6;
    margin: 2px 0 0;
  }
  #case .flex > div {
    margin-bottom: 26px;
  }
  #case .des {
    margin-bottom: 29px;
  }
  #case {
    padding: 43px 25px;
  }
  #feature04 .pmark {
    bottom: -28px;
  }
  #feature04 .maflex {
    padding: 39px 0;
  }
  #feature04 .maflexWrap {
    padding: 0 25px;
    margin-bottom: 53px;
  }
  #feature04 .maflex .des{
    font-size: 14px;
    line-height: 25px;
  }
  #feature04 .maflex h5 {
    font-size: 17px;
    margin-bottom: 3px;
  }
  #feature04 .maflex {
    display: block;
  }
  #feature04 .maflex .imgBox {
    width: auto;
    margin-bottom: 14px;
  }
  #feature04 .maflex .textBox {
    width: auto;
  }
  #feature03 .aten {
    font-size: 12px;
  }
  .osare3-table thead th {
    width: 25px;
  }
  .osare3-table thead th:nth-child(2) {
    width: 20px;
  }
  .osare3-table th {
    font-size: 15px;
  }
  .osare3-table thead th:nth-child(3) {
    width: 30px;
  }
  .srBox .bottomFlex .voiceEn {
    font-size: 14px;
    margin-bottom: -1px;
  }
  #feature03 .colorB.title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .osare3-table tr:nth-child(odd) td {
    padding: 20px 11px 28px 11px;
  }
  #feature03 .colorB .en {
    font-size: 21px;
  }
  #feature03 .colorB .pointcf {
    font-size: 50px;
  }
  #feature03 .mainAten  br{
    display: none;
  }
  #feature03 .pricebox {
    padding: 50px 25px;
    padding-bottom: 5px;
  }
  #feature03 .mainAten {
    font-size: 16px;
    line-height: 29px;
    margin-top: 25px;
    margin-bottom: 24px;
  }
  .srBox .bottomFlex {
    margin-bottom: 20px;
  }
  .btnFlex {
    display: block;
    margin-bottom: 52px;
  }
  .srBox .bottomFlex .voiceJa {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .srBox .bottomFlex .des {
    font-size: 14px;
    line-height: 27px;
  }
  .srBox .imgBox {
    text-align: center;
    margin-bottom: 11px;
  }
  .srBox .title {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .btnFlex>div {
    margin-bottom: 16px;
  }
  .srBox .inFlex ul {
    font-size: 13px;
  }
  .TabChanBox .panel .des {
    font-size: 14px;
    line-height: 26px;
  }
  .srBox .inFlex {
    display: block;
  }
  .subConTitle .JaTItle {
    font-size: 18px;
  }
  .subConTitle .EnTItle {
    font-size: 13px;
    margin-bottom: -2px;
  }
  .srBox {
    margin-top: 43px;
  }
  .introductionBox {
    margin-bottom: 43px;
  }
  .introductionBox .titleBox .subTitle {
    margin-bottom: 15px;
  }
  .dodLine {
    margin: 30px 0;
  }
  .introductionBox .speech::after {
    left: 52px;
  }
  .introductionBox .subDes {
    font-size: 16px;
  }
  .TabChanBox .panel .flex {
    margin-bottom: 14px;
  }
  .introductionBox .aten {
    font-size: 12px;
    line-height: 23px;
  }
  .introductionBox .titleBox .enTitle {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .introductionBox .titleBox .subTitle {
    font-size: 16px;
    line-height: 26px;
  }
  .toggle_contents {
    padding: 0 25px;
  }
  .toggle_contents {
    margin-bottom: 60px;
  }
  .subConTitle {
    margin-bottom: 21px;
  }
  .toggle_title span {
    top: 4px;
  }
  .toggle_contents dd .title {
    font-size: 18px;
    margin-bottom: 3px;
  }
  .toggle_title {
    padding: 18px 0;
    font-size: 17px;
  }
  .TabChanBox .panel-area {
    padding: 31px 25px;
  }
  .TabChanBox .panel .enTItle {
    font-size: 26px;
  }
  #feature01 .customizeFlex p{
    font-size: 14px;
  }
  .TabChanBox .panel .jaTItle {
    font-size: 14px;
  }
  .TabChanBox .panel .enTItle {
    margin-bottom: -2px;
  }
  #feature01 .customizeFlex {
    padding: 0 25px;
    margin-top: 40px;
    margin-bottom: 61px;
  }
  .TabChanBox .tab-area {
    display: block;
  }
  .TabChanBox .tab-area {
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .TabChanBox .tab {
    padding: 13px 0;
    font-size: 15px;
  }
  #feature01 .customizeFlex .center::before {
    display: none;
  }
  #feature01 .customizeFlex .center::after {
    display: none;
  }
  #about .loopSlide {
    height: 97px;
  }
  .commonMainTitleBox {
    padding: 91px 25px 42px 25px;
  }
  .commonTitleBox h2 {
    font-size: 19px;
  }
  .commonMainTitleBox .des {
    font-size: 14px;
    line-height: 28px;
  }
  .commonMainTitleBox h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 30px;
  }
  .commonMainTitleBox h4 br{
    display: none;
  }
  .commonMainTitleBox h3 {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 28px;
  }
  .commonTitleBox .enTItle::after {
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .commonTitleBox .enTItle {
    font-size: 15px;
    margin-bottom: 1px;
    padding-left: 10px;
  }
  #feature {
    padding: 52px 25px;
    padding-bottom: 12px;
  }
  #feature .flex {
    margin-top: 58px;
    column-gap: 10px;
  }
  #Message .MessageInner::after {
    top: -22px;
    left: 11px;
  }
  #feature .flex > div {
    margin-bottom: 42px;
  }
  #feature .flex .nam {
    border-radius: 3px 3px 0 0;
    line-height: 100%;
    padding: 7px 10px;
    font-size: 10px;
    top: -24px;
  }
  #feature .flex h3 {
    font-size: 14px;
    text-align: left;
    line-height: 22px;
  }
  #about {
    margin-top: 0;
  }
  header .logoBox a img{
    max-width: 150px;
  }
  header .logoBox p img{
    max-width: 65px;
  }
  .firstViewInner::after {
    display: none;
  }
  #about .aboutInner h2 br{
    display: none;
  }
  #about .aboutInner h2 {
    font-size: 17px;
    line-height: 37px;
    margin-bottom: 16px;
  }
  .menu_box {
    height: 68px;
    width: 75px;
  }
  .firstView {
    margin-top: 68px;
  }
  .menu {
    right: 19px;
    top: 28px;
  }
  .spheader {
    padding: 20px 20px;
  }
  footer .footerBottom .imgBox{
    margin-bottom: 35px;
  }
  .sphero{
    display: block;
  }
  .firstView .textBox .lead {
    font-size: 14px;
  }
  .loopintrcompany ul {
    width: 408vw;
  }
  .firstView .freeP {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .sphero img{
    width: 100%;
  }
  .firstView .comonBtn a {
    font-size: 13px;
  }
  .firstView h1 {
    font-size: 38px;
    line-height: 50px;
  }
  .commonMainTitleBox h3:after {
    width: 78px;
    height: 78px;
  }
  .gnav__menu__item a {
    font-size: 14px;
    padding: 18px 0;
  }
  #feature .flex>div {
    width: 47%;
  }
  .gnav__menu {
    margin-top: -140px;
  }
  .speechBox .flex {
    column-gap: 13px;
    margin-top: 19px;
  }
}