html {
  font-size: 62.5%;
  height: 100%;
  font-weight: 500;
}

body {
  height: 100%;
  line-height: 1.3;
  font-size: 1.6rem;
  letter-spacing: .02em;
  font-family: YakuHanJP, "Zen Kaku Gothic New", Meiryo, sans-serif;
  font-weight:700;
  color: #222115;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

h1 {
  font-weight:600;
}

img {
  display: block;
  width: 100%;
}

/*インタラクション関連*/

.fadeInUp {
  opacity:0;
  transition: all .8s .8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(-30px);
}

.fadeInUp.is-show {
  opacity:1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity:0;
  transition: all .7s .7s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-80px);
}

.fadeInLeft.is-show {
  opacity:1;
  transform: translateY(0);
}

.anime-tt  {
  opacity: 0;
}

.anime-tt.is-show {
  opacity: 1 !important;
}

.anime-tt span {
  display: inline-block;
  opacity: 0;
/*  transition: all 2s 1s cubic-bezier(0,16,.3,1);*/
  transition: 3s 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.anime-tt span:nth-child(1) {
  transition-delay: 0s;
}
.anime-tt span:nth-child(2) {
  transition-delay: 0.02s;
}
.anime-tt span:nth-child(3) {
  transition-delay: 0.04s;
}
.anime-tt span:nth-child(4) {
  transition-delay: 0.06s;
}
.anime-tt span:nth-child(5) {
  transition-delay: 0.08s;
}
.anime-tt span:nth-child(6) {
  transition-delay: 0.1s;
}
.anime-tt span:nth-child(7) {
  transition-delay: 0.12s;
}
.anime-tt span:nth-child(8) {
  transition-delay: 0.14s;
}
.anime-tt span:nth-child(9) {
  transition-delay: 0.16s;
}
.anime-tt span:nth-child(10) {
  transition-delay: 0.18s;
}
.anime-tt span:nth-child(11) {
  transition-delay: 0.2s;
}
.anime-tt span:nth-child(12) {
  transition-delay: 0.22s;
}
.anime-tt span:nth-child(13) {
  transition-delay: 0.24s;
}
.anime-tt span:nth-child(14) {
  transition-delay: 0.26s;
}
.anime-tt span:nth-child(15) {
  transition-delay: 0.28s;
}
.anime-tt span:nth-child(16) {
  transition-delay: 0.30s;
}
.anime-tt span:nth-child(17) {
  transition-delay: 0.32s;
}
.anime-tt span:nth-child(18) {
  transition-delay: 0.34s;
}
.anime-tt span:nth-child(19) {
  transition-delay: 0.36s;
}

.anime-tt.is-show span {
  opacity: 1;
  transform: translate(0);
}

/* マーカーアニメーション前のスタイル */
.js-marker {
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, #fce665, #fce665); /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 90%; /* '30%'の部分にマーカーの太さを記入 */
  transition: all 1s ease-in-out; /* マーカーを引く速度を調整 */
  font-weight: bold; /* ついでに太字にしたい場合 */
}

/* マーカーアニメーション発火時 */
.js-marker.inview {
  background-size: 100% 90%; /* '30%'の部分は上で設定した太さに合わせる */
}


/*END  インタラクション関連*/

#header-innar {
  height: 64px;
}

.header-logo {
  z-index: 999;
  width:auto;
}

.header-logo a {
  display:block;
}

.header-logo a h1 {
  font-size:1.1rem;
  color: #222115;
}

.header-logo a h1 img {
  height: 29px;
  margin-right: 0.5rem;
  position: relative;
  left: -1vw;
}

/*ハンバーガーボタン*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 10px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #2d2d2d;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

#header.scroll-nav .hamburger {
  background:#2c4ece;
}

#header.scroll-nav .hamburger span {
  background-color: #fff;
}

/* ナビ開いてる時のボタン */
.hamburger.active span {
  background-color :#2d2d2d;
}

#header.scroll-nav .hamburger.active span {
  background-color: #fff;
}

.hamburger.active {
  z-index: 10;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(8px);
  -moz-transform   : translateY(8px);
  transform        : translateY(8px);
}

.hamburger.active span:nth-child(2){
-webkit-transform: translateY(-2px);
  -moz-transform   : translateY(-2px);
  transform        : translateY(-2px);
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-12px);
  -moz-transform   : translateY(-12px);
  transform        : translateY(-12px);
}

nav.globalMenuSp {
  position: fixed;
  top  : 0;
  left : 0;
  background-color: #f2f2f7;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  z-index: 0;
  display: none;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: inline-block;
  color: #222115;
  padding: 2rem 0;
  text-decoration :none;
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  display: block;
  opacity: 100;
  padding: 64px 0;
  height: 100%;
  z-index: 3;
}

.header-cv {
  display: flex;
  flex-wrap: row;
  justify-content: center;
  margin: 2rem 1rem 0;
}

.header-cv .document,
.header-cv .contact {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  width: 49%;
  max-width: 240px;
  height: 54px;
  line-height: 54px;
  background-color: #fff;
  border-radius: 5px;
  color: #2c4ece;
  border:2px solid #2c4ece;
  margin-right: 13px;
  letter-spacing: .05em;
  position: relative;
  text-align: center;
}

.header-cv .contact {
  background-color: #2c4ece;
  color:#fff;
  margin-right: 0;
  font-size: 1.5rem;
}


/*ファーストビュー*/

.fv-copy01 {
  height: 15vh;
  position:relative;
  margin-bottom:2vh;
  padding-top: 2vh;
}

.fv-copy01::before {
  display:block;
  content:"";
  background:url(img/fv-img02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width:auto;
  height: 100%;
}

.fv-copy01-inner {
  position:absolute;
  width:90%;
  height:60px;
  top: 2vh;
  right:0;
  bottom: 0;
  left: 2vw;
  margin:auto;
}

.fv-copy01-inner p {
  background: rgba(255,255,255,.7);
  display:inline-block;
  font-size:4.6vw;
}

.fv-copy01-inner p:first-child {
  margin-bottom:.4em;
}

.fv-copy01-inner p span {
  color:#2c4ece;
}

.fv-copy02 p {
  font-size:7.1vw;
  line-height:1.6;
  margin: 1em 0 1em 4vw;
}

.cv {
  margin-top:3vh;
}

.cv .document,
.cv .contact {
  width: 80%;
  max-width: 280px;
  height: 60px;
  line-height: 60px;
  background-color: #fff;
  border-radius: 15px;
  color: #2c4ece;
  border:2px solid #2c4ece;
  box-shadow: 0px 16px 16px -3px rgba(55,55,55,.1);
  margin-bottom: 1rem;
}

.cv .contact {
  color:#fff;
  background-color: #2c4ece;
}

.cv .document p,
.cv .contact p {
  text-align:center;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: .05em;
  margin-bottom:0;
}

.cv .contact p {
  line-height:1.3;
  position: relative;
  top: -0.05em;
}

.cv .contact p span {
  font-size:1.15rem;
  letter-spacing:.025em;
}

.fv-container {
  padding: 26vh 0 3vh;
  position:relative;
  overflow:hidden;
}

.fv-container::before {
  position:absolute;
  content:"";
  background:url(img/fv-img01.png);
  display:block;
  width: 100%;
  height: 59vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  top: -6vh;
  right: -6vw;
  z-index:-1;
}


/*フッター*/
footer {
  position:relative;
}

footer::before {
  content:"";
  background:url(img/ft-bg.svg);
  width:30vw;
  height: 100%;
  display:block;
  background-size: 290px;
  position:absolute;
  bottom:0;
  right:0;
  background-repeat:repeat;
  background-position:bottom;
  z-index:-1;
}


.ft01 {
  width:100%;
  padding:20vw 0 12vw;
  background:url(img/ft-img01.png);
  background-size:cover;
  background-position:top center;
}

.ft-container {
  width:96%;
  max-width:760px;
  margin:auto;
}

.ft-copy01 {
  text-align:center;
}

.ft-copy02 {
  margin: 7vw 0 0;
}

.ft-copy02 li {
  display: inline-block;
  width:50%;
  margin-bottom:.5em;
  text-align:center;
}

.ft-copy02 li:last-child {
  width:100%;
}

.ft-copy02 li span {
  padding-left: 2.4em;
  position:relative;
}

.ft-copy02 li span::before {
  content:url(img/ft-icon.svg);
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  position:absolute;
  top:.5vw;
  left:0;
}

.ft02 {
  width:90%;
  max-width:1366px;
  margin:auto;
  padding: 12vw 0 4vw;
}

.footer-logo a img {
    height: 29px;
    margin-right: 1rem;
    position: relative;
    left: -.5rem;
}

.footer-logo a p {
    font-size:1.1rem;
    color:#222115;
}

.footer-logo a p span a {
    color:#2c4ece;
}

.company {
  margin: 6vw 0 8vw;
}

.company p {
  font-size:1.25rem;
  margin-bottom:4.5vw;
  font-weight:500;
}

.company a {
  font-size:1.2rem;
  color:#2c4ece;
}

.company a.link {
  display: block;
  border: 1px solid #2c4ece;
  padding: .4em 1em;
  width:auto;
  border-radius:5px;
  max-width:158px;
}

.company a.link span {
  position: relative;
  margin:auto;
}

.company a.link span::after {
  content:url(img/icon-link.svg);
  width:1.1rem;
  height:1.1rem;
  background-size: contain;
  display:inline-block;
  position:relative;
  top: .1em;
  right:-.5em;
}

.copyright img {
  width:240px;
  margin-bottom:1.8rem;
}

.copyright p {
  font-size:1.15rem;
  font-weight:500;
}

/*メインコンテンツ*/
main {
  position:relative;
}

main::before {
  position:absolute;
  content:"";
  background:url(img/deco01.svg);
  background-repeat:no-repeat;
  display:block;
  width:40vw;
  height:50vw;
  top: -1vh;
  left:-10vw;
  z-index:-1;
}

h2 {
  font-size:5.6vw;
  text-align: center;
  font-weight:700;
  margin-bottom:1.5em;
  z-index:2;
  position:relative;
}

h2 span {
  color:#2c4ece;
}

/*お悩み*/
.problem-container {
  width:86%;
  max-width:740px;
  margin:auto;
}

.problem-container .item p {
  margin:1em 0 2em;
  padding-left: 2em;
  text-indent: -2em;
  font-size: 4.2vw;
  line-height:1.7;
}

.problem-container .item:last-child p {
  margin-bottom:0;
}

.problem-container .item p:before {
  position: relative;
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  margin-top: -.2em;
  margin-right: .5em;
  vertical-align: middle;
  content: "";
  background:url(img/problem-icon.svg);
  background-size:contain;
  background-repeat:no-repeat;
}

.problem-container .item p span {
  color:#2c4ece;
}

.cv-middle {
  width:100%;
  padding:2vw 0;
  background:url(img/ft-img01.png);
  background-size:cover;
  background-position:top center;
}

section {
padding: 8vh 0;
}

.feature-item {
  width: 86%;
  margin: auto;
  margin-bottom:8vh;
}

.feature-item.last {
  margin-bottom:0;
}

.feature-text {
  padding-top: 4vw;
  position:relative;
}

.feature-text::before {
    content: url(img/deco03.svg);
    position: absolute;
    display: block;
    left:-4vw;
    width: 6vw;
    height: 12vw;
    top: -7px;
    z-index: -1;
}

.feature-text h3 {
  font-size: 5.8vw;
  line-height:1.3;
  font-weight:700;
}

.feature-text h3 span {
  color:#2c4ece;
}

.feature-text p {
  padding:4vw 0;
  line-height:1.6;
  text-align:justify;
  font-weight:500;
  font-size:1.35rem;
}

.feature-text button {
  border: 1px solid #2c4ece;
  color:#2c4ece;
  display:block;
  width:100%;
  height: 52px;
  line-height: 52px;
  margin-bottom:4vw;
  padding: 0 2em;
  border-radius: 70px;
  background:#fff;
  position:relative;
  font-weight:600;
}

.feature-text button::after {
  position: absolute;
  content:"";
  background:url(img/feature-icon.svg);
  width: 1.8rem;
  height: 1.8rem;
  background-size:cover;
  right:2em;
  top:0;
  bottom:0;
  margin-top: auto;
  margin-bottom:auto;
}

/*基本機能*/
#base {
  background:#f2f2f7;
  position:relative;
}

#base::before {
  position: absolute;
  content: "";
  background: url(img/deco05.svg);
  background-repeat: no-repeat;
  display: block;
  width: 40vw;
  height: 50vw;
  top: -5vh;
  left: -10vw;
}

.base-container {
  width:96%;
  margin:auto;
}

.base-item {
  width:46%;
  text-align:center;
  position:relative;
  margin-bottom:6vw;
  margin: 4% 2%;
  box-shadow: 0px 0px 22px -14px #f2e6b1;
  border-radius: 10px;
}

.base-item::before {
  position:absolute;
  content:"";
  background:url(img/base01-count.svg);
  background-repeat:no-repeat;
  background-size:cover;
  display:block;
  width:9.5vw;
  height:9.5vw;
  top:-3.1vw;
  left:-1.8vw;
}

.base-item:nth-child(2)::before {
  background:url(img/base02-count.svg);
}

.base-item:nth-child(3)::before {
  background:url(img/base03-count.svg);
}

.base-item:nth-child(4)::before {
  background:url(img/base04-count.svg);
}

.base-item:nth-child(5)::before {
  background:url(img/base05-count.svg);
}

.base-item img {
  border-radius:1rem 1rem 0 0;
}

.base-item-text {
  background:#fff;
  padding:.9em;
  color:#1a1a1a;
  border-radius: 0 0 1rem 1rem;
}

.base-item-text h3 {
  font-weight:700;
  font-size:1.6rem;
}

.base-item-text p {
  margin-bottom:0;
  color:#2c4ece;
  font-size:1.05rem;
  margin-top: .5em;
  display:inline-block;
  border:1px solid #2c4ece;
  border-radius:30px;
  padding: .1em 1em;
}

.base-info {
  width:90%;
  max-width:780px;
  margin: 2% auto 0;
}

.base-info p {
  line-height: 1.6;
  text-align: justify;
  font-weight: 600;
  font-size:1.35rem;
}


/*機能一覧*/
#function,
#function2,
#function3 {
  background:#fffbe6;
  position:relative;
  overflow:hidden;
}

#function {
  padding-bottom:5vh;
}

#function2 {
  padding: 0;
}

#function3 {
  padding-top:0;
}

#function::before {
  position: absolute;
  content: "";
  background: url(img/deco01.svg);
  background-repeat: no-repezwat;
  display: block;
  width: 40vw;
  height: 50vw;
  top: 0;
  right: -10vw;
}

#function .base-item::before {
  background:none;
}

#function .base-item {
  margin-top: 0;
}

#function h2 span {
  font-size: 3.8vw;
}

#function2 h3 {
  font-size: 4.2vw;
  color:#2c4ece;
  font-weight:700;
  position:relative;
  line-height:2;
}

#function2 h3::after {
  content:"";
  position: absolute;
  width: calc(100% - 9em);
  display:inline-block;
  height: 1px;
  background:#2c4ece;
  top:1em;
  margin-left:1.5em;
}

#function2 h3.admin::after {
  width: calc(100% - 11.5em);
}


#function2 h3::before {
  position:absolute;
  content: "";
  background:url(img/deco02.svg);
  background-repeat:no-repeat;
  background-size:cover;
  display:block;
  width:4.8vw;
  height:4.8vw;
  top: 2vw;
  right:0;
  z-index:2;
}

.function2-container {
  width:90%;
  margin:auto;
}

.function2-list {
  padding: 2vw 0 5vh;
  margin-bottom: 0;
}

.function2-list li {
  width:48%;
  text-align:center;
  padding: 1em;
  font-size:1.35rem;
  background:#fff;
  border-radius:10px;
  margin-bottom:2%;
  box-shadow: 0px 0px 22px -14px #f2e6b1;
  font-weight:500;
}

.function3-container {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.function3-container h3 {
  color:#2c4ece;
  background:#fce665;
  display:inline-block;
  padding: 1em 2em;
  border-radius:10px;
  font-size:1.45rem;
  position:relative;
  top: 2rem;
  margin:auto;
}

.function3-list {
  background:#fff;
  padding: 2.5rem 0 2rem;
  box-shadow: 0px 0px 22px -14px #f2e6b1;
}

.function3-list li {
  padding: 1em 0 .25em 1.8em;
  font-size: 1.35rem;
/*  width:50%;*/
  list-style-type: disc;
  list-style:inside;
  font-weight:500;
}

.function3-list li {
  color:#2c4ece;
}

.function3-list li span {
  color:#1a1a1a;
}

.support-container,
.sub-title {
    width: 90%;
    margin: auto;
}

.sub-title {
  margin-bottom: 1em;
  font-size:1.35rem;
  line-height:1.6;
}

.support-item {
  margin: 4% 2%;
}

.support-item h3 {
  padding:1em 0;
  text-align:center;
  border-top: 1px solid #2c4ece;
  border-bottom: 1px solid #2c4ece;
  font-size:4.2vw;
  font-weight:700;
  color: #2c4ece;
}

.support-item img {
  width:58%;
  margin: 0 auto 1rem;
}

.support-item p {
  margin: 1em 0 0;
  text-align:justify;
  font-size:1.35rem;
  font-weight:500;
  line-height:1.7;
}

/*選ばれる理由*/
#reason {
  padding-top:0;
}
.reason-img {
  width:41%;
  max-width:267px;
}

.reason-img:first-child {
  position:relative;
  bottom: -0.1em;
}

#reason h2 {
  padding-top: 1em;
}

.reason-list {
  width:90%;
  max-width:1000px;
  margin:auto;
}

.reason-item {
  background:#fdffe9;
  border-radius:15px;
  display:flex;
  flex-direction:column;
  align-items: center;
  width:48%;
  padding:1em .5em;
  margin-bottom:2%;
  box-shadow: 0px 0px 22px -14px #f4ebbb;
}

.reason-item:last-child {
  width:100%;
  margin-bottom:0;
}

.reason-item img {
  width:3rem;
  margin-bottom:1rem;
}

.reason-item p {
  margin-bottom:0;
  font-size:1.35rem;
}

.reason-item p span {
  font-weight:700;
  color: #2c4ece;
}

/*新着お知らせ*/
#news {
  padding:2vh 0 4vh;
}

.news-container {
  width:90%;
  max-width: 1000px;
  margin:auto;
}

.news-inner h4 {
  padding:1em 0;
  border-top: 2px solid #2c4ece;
  display:inline-block;
  font-weight:700;
}

.news-inner ul li:first-child {
  margin-bottom:1em;
}

.news-inner ul li {
  padding: .5em 0;
  border-bottom: 1px solid #bbb;
  font-weight:500;
}

.news-inner ul li .date {
  font-size:1.35rem;
}

.news-inner ul li .news-text {
  font-size:1.35rem;
}

.news-container img {
  max-width: 360px;
  margin-left:auto;
}

.page-top-button a {
  display:block;
  width:45px;
  height: 45px;
  background:#c1dbf4;
  color:#fff;
  line-height:45px;
  text-align:center;
  font-size:1.35rem;
  margin-left:auto;
}



@media screen and (min-width: 576px) {


}


@media screen and (min-width: 680px) {

.ft-copy02 li,
.ft-copy02 li:last-child {
  width:32%;
  margin-bottom:0;
}


}


@media screen and (min-width: 768px) {

#wrap {
  overflow: hidden;
}

#header-cv-top {
  margin-right: 56px;
  margin-top: 0;
}

.header-logo a h1 img {
  margin-right:1.8rem;
  left:0;
}

nav.globalMenuSp.active #header-cv-top {
  margin-right:0;
  margin: 2rem 0;
}

.header-cv {
  margin: 1rem 0 0 0;
}

.header-cv .document,
.header-cv .contact {
  width: 144px;
  height: 42px;
  line-height: 38px;
  font-size:1.35rem;
  font-weight:600;
}

/*ファーストビュー*/
.fv-container {
  padding: 0 0 11vh 0;
}

.fv-container::before {
  height: 100%;
  z-index:-1;
}

.fv-copy01 {
  height: 19vw;
  margin-bottom: 2vh;
}

.fv-copy01::before {
  margin-left:1vw;
}

.fv-copy01-inner {
  left:6vw;
}


.fv-copy01-inner p {
  background: transparent;
  display:block;
}

.fv-copy01-inner p:first-child {
  margin-bottom:.2em;
}

.fv-copy01 p {
  font-size:2.7vw;
}

.fv-copy02 p {
  font-size: 4.68vw;
}

.ft-copy02 li {
  font-size:1.8rem;
}

.cv {
  margin-top:5.5vh;
  margin-left:6%;
}

/*フッター*/

.ft01 {
  padding: 10vw 0 7.5vw;
}

.ft02 {
  padding: 7.5vw 0 4.5vw;
}


footer .cv,
.cv-middle .cv {
  margin-left: 0;
}

footer .cv .document,
footer .cv .contact {
  margin: 0 2rem;
}

.ft-copy02 {
  margin: 5vw 0 0;
}

.footer-logo a p {
  font-size:1.25rem;
}

.copyright {
  width:500px;
}

.company {
  margin:3.5vw 0;
  width:500px;
}

.company p {
  font-size:1.4rem;
  margin-bottom:0;
  line-height:1.7;
}

.company a.link {
  margin-left: 6%;
  padding:.4em 2em;
  max-width:100%;
  font-size:1.45rem;
}

.copyright img {
  width:290px;
  margin-bottom:0;
}

.company a.tel {
  font-size:1.6rem;
  color: initial;
}

footer::before {
  width:28vw;
  background-size: 380px;
}

/*メインコンテンツ*/
main {
  padding: 3vh 0;
}

main::before {
  top: -8vh;
}

h2 {
  font-size:4.8vw;
}

section {
  padding: 10vh 0;
}

/*お悩み*/
#problem {
  position:relative;
}

#problem::before {
  content:url(img/deco02.svg);
  position:absolute;
  display:block;
  width: 10vw;
  height: 10vw;
  top:0;
  bottom:0;
  right: 10vw;
  margin-top:auto;
  margin-bottom: auto;
  z-index:-1;
}

.problem-container .item {
  width:46%;
}

.problem-container .item p {
  font-size:2.1rem;
  text-indent:-1.7em;
}

.problem-container .item:nth-child(2) p {
  margin-bottom:0;
}

.problem-container .item p:before {
  width: 1.25em;
  height: 1.25em;
}


/*Libraでできること*/

#feature {
  position:relative;
}

#feature::before {
  content:"";
  background:url(img/feature-bg.png);
  background-size:cover;
  background-repeat:no-repeat;
  z-index:-1;
  width:100%;
  height: 100%;
  position:absolute;
  display:block;
}


.feature-text {
  width:47%;
  padding-top: 1vw;
}

.feature-img {
  width:47%;
}

.feature-text h3 {
  font-size:3.3rem;
  position:relative;
  z-index:2;
}

.feature-item {
  width: 86%;
  margin: auto;
  max-width:1000px;
  margin-bottom:10vh;
}

.feature-text button {
  height: 50px;
  line-height:50px;
  width: 260px;
  background:#fff;
}

.feature-text p {
  padding: 2em 0;
  font-size:1.45rem;
}

.feature-text::before {
    width: 100px;
    height: 150px;
    top: -42px;
    z-index:1;
}

.feature-text.right::before {
  left: auto;
  right:-49px;
  content:url(img/deco04.svg);
}


/*基本機能*/

.base-container {
  max-width:1000px;
}

.base-item {
  width:28%;
}

.base-item::before {
    width: 80px;
    height: 80px;
    top: -30px;
    left: -14px;
}

.base-item h3,
#function2 h3 {
  font-size:1.8rem;
  margin-bottom:0;
}

#function2 h3::before {
  width:3rem;
  height: 3rem;
  top:.44rem;
}

.base-item-text {
  padding: 2.1rem;
}

.base-item-text p {
  font-size:1.25rem;
  margin-top: 1.8rem;
  padding: .3em 1.8em;
}

.base-info p {
  text-align:center;
  font-size:initial;
}

#function {
  padding-bottom:9vh;
}

#function h2 span {
  font-size: 1.8rem;
}

#function .base-item {
  margin-bottom:0;
}

.function2-container,
.function3-container {
  max-width:calc(1000px - 6%);
  margin:auto;
}

.function2-list {
  padding-bottom:7vh;
}

.function2-list::before{
  content:"";
  display: block;
  width:24%;
  order:1;
}

.function2-list::after{
  content:"";
  display: block;
  width:24%;
}

.function2-list li {
  width:24%;
  font-weight:600;
  font-size:1.5rem;
}

.function3-container h3 {
  font-size:1.6rem;
  font-weight:600;
}

.function3-container li {
  width:34%;
  font-weight:600;
  font-size:1.45rem;
}

.support-container {
    max-width: 1000px;
}

.support-item {
  width:28%;
}

.support-item h3 {
  font-size:1.8rem;
}

.support-item p {
  font-size:1.45rem;
}

/*選ばれる理由*/

.reason-img {
  width:20%;
}

.reason-img:first-child {
  top:0;
}

.reason-container {
  position:relative;
}

.reason-inner {
  position:absolute;
  top:0;
  left:0;
  right:0;
  margin: auto;
}

.reason-inner {
  width: 60%;
}

.reason-list {
  width:70%;
}

.reason-item p {
  font-size:1.8rem;
}

.reason-item img {
  width:4rem;
}


/*新着お知らせ*/
#news {
  padding: 8vh 0;
}

.news-container img {
  width:40%;
  max-width: 360px;
  position:relative;
  right:-4%;
  top: -4rem;
}

.news-inner {
  width:60%;
}

.news-inner h4 {
  font-size:1.8rem;
  border-top:3px solid #2c4ece;
}

.news-inner ul li {
  display:flex;
}

.news-inner ul li .date {
  font-size:1.45rem;
  margin-right:7%;
}

.news-inner ul li .news-text {
  font-size:1.45rem;
}

.support-item img {
  width:80%;
}

.sub-title {
  font-size:initial;
}

.footer-logo a img {
  margin-left: 1rem;
  left: -1.5rem;
}

.page-top-button a {
  width:55px;
  height: 55px;
  line-height:55px;
  font-size:1.45rem;
}

#reason {
  padding-top:6vh;
}


}





@media screen and (min-width: 992px) {

header {
  position: fixed;
  z-index: 10;
  background:#fff;
}

#header-innar {
  height: 85px;
}

.header-logo a:hover {
  opacity: .6;
}

.hamburger {
  display: none;
}

.header-menu {
  margin-left: auto;
}

nav.globalMenuSp {
  display: block;
  background-color: transparent;
  position: inherit;
  text-align: right;
}

nav.globalMenuSp ul {
  margin: 0;
}

nav.globalMenuSp ul li {
  display: inline;
}

nav.globalMenuSp ul li a {
  font-size:1.35rem;
  padding: 2rem 0.9rem;
}

nav.globalMenuSp {
  opacity: 100;
}

nav.globalMenuSp.active {
  padding: 0;
}

.header-cv {
  margin-left: 14px;
}

#header-cv-top {
  margin-right: 0;
}

.header-cv .document,
.header-cv .contact {
  height: 38px;
  line-height: 33px;
}

.header-cv .document {
  margin-bottom:2%;
}

.header-cv .document:hover,
.header-cv .contact:hover {
  opacity: .6;
  transition: .3s;
}

.fv-container {
  padding: 10vh 0 11vh 0;
}

.fv-container::before {
  top:1vh;
}

.ft01{
  padding:10vw 0 8vw;
}

.ft02 {
  padding: 8vw 0 4vw;
}

.ft-copy01 {
  font-size:2.1rem;
}

.ft-copy02 {
  margin: 3.5vw 0 0;
}

.ft-copy02 li span::before {
  top: .15em;
}


}

@media screen and (min-width: 1140px) {

.header-cv .document,
.header-cv .contact {
  width: 174px;
  font-size:1.5rem;
}

.header-cv {
  margin-left: 25px;
}

nav.globalMenuSp ul li a {
  font-size:1.45rem;
  padding: 2rem 0.9rem;
}

.header-cv .document,
.header-cv .contact {
  font-size:1.45rem;
}

.fv-container {
  max-width:1366px;
  height: calc(838px + 14vh);
  margin:auto;
}

.fv-container::before {
  top: 4rem;
  right:0;
  width:100%;
  height: 890px;
}

.fv-copy01 {
  height: 188px;
  margin-top: 4rem;
}

.fv-copy01 p {
  font-size:3rem;
}

.fv-copy01-inner {
  top: 1rem;
  left:4.4rem;
}

.fv-copy02 p {
  font-size:5.2rem;
  margin: .85em 0 .85em 6rem;
}

.cv .document,
.cv .contact {
  max-width:360px;
  height: 78px;
  line-height:78px;
}

.cv .document p,
.cv .contact p {
  font-size:1.8rem;
}

.cv .contact p span {
  font-size:1.3rem;
}

footer .cv .document,
footer .cv .contact {
  box-shadow: 0px 28px 16px -5px rgba(33,33,33,.1);
  font-size:2.1rem;
}

footer .cv .document p,
footer .cv .contact p {
  font-size:2.1rem;
}

footer .cv .contact p {
    position: relative;
    top: -0.3rem;
}

footer::before {
  width:28vw;
  background-size: 390px;
  background-repeat:no-repeat;
}

/*メインコンテンツ*/

main {
  padding:6vh 0;
}

h2 {
  font-size:5.5rem;
}

section {
padding: 9.2rem 0;
}

.feature-text h3 {
  font-size:4.2rem;
}

.feature-text::before {
  width:180px;
  height: 200px;
  top: -90px;
  left:-110px;
}

#base::before {
  top: -6vh;
}

.company a.link {
  padding: .5em 2.1em;
  font-size: 1.4rem;
}

.company a.link span::after {
  width: 1.3rem;
  height: 1.3rem;
}

.company,
.copyright {
  width:580px;
}

}


@media screen and (min-width: 1366px) {

nav.globalMenuSp ul li a {
  font-size:1.5rem;
  padding: 2rem 1.4rem;
}

.header-cv {
  flex-direction:row !important;
}

.header-cv .document,
.header-cv .contact {
  font-size:1.5rem;
  height: 49px;
  line-height: 46px;
  margin-bottom:0;
}

.header-logo a h1,
.footer-logo a p {
  font-size:1.2rem;
}

.header-logo a h1 img,
.header-logo a p img,
.footer-logo a img {
  height: 38px;
}

.ft01{
  padding: 7.5vw 0 6vw;
}

.ft02 {
  padding: 4vw 0 2vw;
}

.company {
  justify-content:space-between;
}

.company a.link {
  margin-left:0;
  padding: .4em 3.3em;
  font-size: 1.45rem;
}

#problem::before {
  width: 9.5vw;
  height: 9.5vw;
  right: 9.5vw;
}

.base-item h3,
#function2 h3 {
  font-size:2.1rem;
}

.function2-list li {
  font-size: 1.6rem;
}

.function3-container h3 {
  font-size:1.8rem;
}

.function3-container li,
.support-item p {
  font-size:1.5rem;
}

.function3-list {
  padding-top: 3rem;
}

.reason-item img {
  width:5rem;
}

.reason-item p {
  font-size:2.1rem;
}

.news-container img {
  max-width: 398px;
  right:-4%;
}

.news-inner {
  width:60%;
}

.news-inner h4 {
  font-size:2.1rem;
}

#news {
  padding-bottom:0;
}

.feature-text p {
  font-size:1.6rem;
  font-weight:600;
  line-height:1.7;
}

.base-info p {
  font-size:1.6rem;
}

.page-top-button a {
  width:65px;
  height: 65px;
  line-height:65px;
  font-size:1.5rem;
}

#base {
  padding-top: 13vh;
}

}




@media screen and (min-width: 1600px) {

nav.globalMenuSp ul li a {
  font-size:1.6rem;
  padding: 2rem 2.6rem;
}

#base::before {
  top: -22vh;
}

}