/* styles.css */
/*
* {
  outline: 1px solid #ff0000;
}
*/
html {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: メイリオ, Meiryo, verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

body {
  /*margin: 0;*/
  width: 100%;
  margin: 0 auto;
  padding: 0;
  /*font-family: Arial, sans-serif;*/
  /*max-width: 1200px;*/
}

section {
  padding-top:30px;
}

footer {
  /*background-color: #8b0000;*/
  background-color: #4169e1;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}

/* トップイメージ */
.top {
  /*height: 530px;*/
  text-align: center;
  padding-top: 45px;
}

/* 問合せボタン */
.info {
  text-align: center;
  font-size: 12pt;
  margin-top: 15px;
}
.cta_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 250px; /* ボタン幅 */
  font-weight: bold; /* ボタンの太さ */
  margin-top: 0px;
  padding: 0.7em 1em;
  color: #fff;
  border-radius: 100vh;
  background: #014E22; /* ボタン背景色 */
  background: linear-gradient(0deg, #ed6d35 50%, #ffaf60 100%); /* ボタン背景色（グラデーション） */
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
/* マウスオーバーした際のデザイン */
.cta_btn01:hover {
  background: linear-gradient(0deg, #ffc14d 20%, #ed6d35 100%);
  -webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 10%);
  box-shadow: 0 2px 3px rgb(0 0 0 / 10%);
}
.cta_btn07 {
  display: inline-block;
  width: 100%;
  max-width: 250px; /* ボタン幅 */
  font-weight: bold; /* ボタンの太さ */
  margin-top: 5px;
  padding: 0.7em 1em;
  color: #fff;
  border-radius: 100vh;
  background: #014E22; /* ボタン背景色 */
  /*background: linear-gradient(0deg, #014E22 50%, #45B173 100%);*/ /* ボタン背景色（グラデーション） */
  background: linear-gradient(0deg, #ed6d35 50%, #ffaf60 100%); /* ボタン背景色（グラデーション） */
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
/* マウスオーバーした際のデザイン */
.cta_btn07:hover {
  /*background: linear-gradient(0deg, #249455 20%, #014E22 100%);*/
  background: linear-gradient(0deg, #ffc14d 20%, #ed6d35 100%);
  -webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 10%);
  box-shadow: 0 2px 3px rgb(0 0 0 / 10%);
}

/* メニュー */
#menu {
  margin-top: 12px;
  text-align: center;
  font-size: 1.4rem;
  /*font-weight: bold;*/
}

#menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#menu ul li {
  display: inline;
}

#menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

#menu ul li a:hover {
  background-color: #555;
}

/*最小値:1.1rem → 可変（0.9rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.6rem*/
.font-size-S {
  font-size: clamp(1.3rem, calc(1.1rem + 0.625vw), 1.6rem);
}
/*最小値:1.2rem → 可変（1rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.7rem*/
.font-size-M {
  font-size: clamp(1.6rem, calc(1.5rem + 0.625vw), 2.0rem);
}
/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.font-size-L {
  font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
}
/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.font-size-LL {
  font-size: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.9rem);
}

p {
  font-size: clamp(1.6rem, calc(1.5rem + 0.625vw), 2.0rem);
}


/* スマートフォン用のスタイル ----------------------------------------------------------*/
@media (max-width: 600px) {
  .mbtopimg {
    margin-top: 18px;
    max-width:100%;
    height:auto;
  }
  .topimg { display: none !important; }
  #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:0;
    left: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#4169e1;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive{
      left: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width:100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:30%;
    left:50%;
    transform: translate(-50%,-50%);
    width:80%;
  }
  /*リストのレイアウト設定*/
  #g-nav li{
    list-style: none;
    text-align: center;
  }
  #g-nav li a{
    color: #fff;
    text-decoration: none;
    padding:10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
  }
  /*三本バーアイコン*/
  .openbtn{
    position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
    background:#4169e1;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px;
  }
  /*ボタン内側*/
  .openbtn .openbtn-area{
    transition: all .6s;/*アニメーションの設定*/
    width:50px;
    height:50px;
  }
  .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top:15px;
  }
  .openbtn span:nth-of-type(2) {
    top:23px;
  }
  .openbtn span:nth-of-type(3) {
    top:31px;
  }
  /*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
  .openbtn.active .openbtn-area{
    transform: rotate(360deg);
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  header {display: none;}
  /* メインコンテンツ */
  .content {
    margin-left: 10px;
    margin-right: 10px;
    /*font-size: 16pt;*/
  }

  .pr1 {
    color: #fff;
    background: #1e90ff;
    border-bottom: 1px solid;
    border-color: #fff;
    width: 40%;
    padding: 30px;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
    font-weight: bold;
  }
  .pr2 {
    color: #000;
    background: #fff;
    border: 2px solid;
    /*border-color: #fa4141;*/
    border-color: #1e90ff;
    width: 40%;
    padding: 30px;
  }
  .fs1 {
    font-size: 2rem;
  }
  .op1 {
    color: #fff;
    /*background: #fa4141;*/
    background: #1e90ff;
    border-bottom: 1px solid;
    border-color: #fff;
    width: 40%;
    padding: 5px 30px;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
    font-weight: bold;
  }
  .op2 {
    color: #000;
    background: #fff;
    border: 2px solid;
    /*border-color: #fa4141;*/
    border-color: #1e90ff;
    width: 40%;
    padding: 5px 30px;
  }
  .op3 {
    color: #000;
    width: 90%;
    
  }
  
  /* 管理システム枠 */
  .system-item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .expimg {
    display:none
  }
  h5 {
    width: 50%;
    float: left;
  }
  h6 {
    width: 50%;
    float: right;
  }
  /* 機能説明文 */
  .exp {
    margin-top: 10px;
    margin-left: 0px;
    /*font-size: 1.8rem;*/
  }
  .accordion-area{
    list-style: none;
    width: 80%;
    max-width: 600px;
    margin:0 5px;
  }
  
}

/* タブレット用のスタイル ----------------------------------------------------------*/
@media (min-width: 601px) and (max-width: 1200px) {
  header {
    z-index: 10;
    /*background-color: #8b0000;*/
    background-color: #4169e1;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px;;
  }
  .topimg {
    margin-top: 18px;
    max-width:100%;
    height:auto;
  }
  .mbtopimg { display: none !important; }
  #g-nav {display: none;}
  /* メインコンテンツ */
  .content {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16pt;
  }

  .pr1 {
    color: #fff;
    background: #1e90ff;
    border-bottom: 1px solid;
    border-color: #fff;
    width: 40%;
    padding: 30px;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
    font-weight: bold;
  }
  .pr2 {
    color: #000;
    background: #fff;
    border: 2px solid;
    /*border-color: #fa4141;*/
    border-color: #1e90ff;
    width: 40%;
    padding: 30px;
  }
  .fs1 {
    font-size: 2rem;
  }
  .op1 {
    color: #fff;
    /*background: #fa4141;*/
    background: #1e90ff;
    border-bottom: 1px solid;
    border-color: #fff;
    width: 40%;
    padding: 5px 30px;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
    font-weight: bold;
  }
  .op2 {
    color: #000;
    background: #fff;
    border: 2px solid;
    /*border-color: #fa4141;*/
    border-color: #1e90ff;
    width: 40%;
    padding: 5px 30px;
  }
  .op3 {
    color: #000;
    width: 90%;
    
  }
  
  /* 管理システム枠 */
  .system-item {
    width: 45%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  /* 機能説明文 */
  .exp {
    margin-top: 10px;
    margin-left: 160px;
    font-size: 1.8rem;
  }
  .accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
  }
  
}


/* デスクトップ用のスタイル ----------------------------------------------------------*/
@media (min-width: 1201px) {
  header {
    z-index: 10;
    /*background-color: #8b0000;*/
    background-color: #4169e1;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px;;
  }
  .topimg {
    margin-top: 18px;
    max-width:100%;
    height:auto;
  }
  .mbtopimg { display: none !important; }
  #g-nav {display: none;}
  /* メインコンテンツ */
  .content {
    margin-left: 120px;
    margin-right: 120px;
    /*font-size: 16pt;*/
  }

  .pr1 {
    color: #fff;
    background: #1e90ff;
    border-bottom: 1px solid;
    border-color: #fff;
    width: 40%;
    padding: 30px;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
    font-weight: bold;
  }
  .pr2 {
    color: #000;
    background: #fff;
    border: 2px solid;
    /*border-color: #fa4141;*/
    border-color: #1e90ff;
    width: 40%;
    padding: 30px;
  }
  .fs1 {
    font-size: 2rem;
  }
  .op1 {
    color: #fff;
    /*background: #fa4141;*/
    background: #1e90ff;
    border-bottom: 1px solid;
    border-color: #fff;
    width: 40%;
    padding: 5px 30px;
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
    font-weight: bold;
  }
  .op2 {
    color: #000;
    background: #fff;
    border: 2px solid;
    /*border-color: #fa4141;*/
    border-color: #1e90ff;
    width: 40%;
    padding: 5px 30px;
  }
  .op3 {
    color: #000;
    width: 90%;
    
  }
  
  /* 機能説明文 */
  .exp {
    margin-top: 10px;
    margin-left: 160px;
    /*font-size: 1.8rem;*/
  }
  /* 管理システム枠 */
  .system-item {
    width: 45%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  .accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
  }
  
}
/* デスクトップ用のスタイル END----------------------------------------------------------*/

/* 見出し */
h3,h4,h5,h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* メニュー見出し */
h2 {
  font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
  color: #191970;
  position: relative;
  padding: 1rem .5rem;
  text-align: center;
  margin-top: 20px;
}

h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';

  background-image: -webkit-gradient(linear, left top, right top, from(#090979), to(#00d4ff));
  background-image: -webkit-linear-gradient(left, #090979 0%, #00d4ff 100%);
  background-image: linear-gradient(to right, #090979 0%, #00d4ff 100%);
}

/* メリット見出し */
h3 {
  position: relative;
  display: inline-block;
  padding: 0.3rem 1.5rem 0.3rem 3.2rem;
  color: #fff;
  font-size: clamp(1.6rem, calc(1.5rem + 0.625vw), 2.0rem);
  border-radius: 100vh 0 0 100vh;
  background: #1e90ff;
}

h3:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 12px;
  height: 12px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

/* 料金プラン小見出し */
h4 {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem 1rem 2rem;
  color: #fff;
  font-size: clamp(1.6rem, calc(1.5rem + 0.625vw), 2.0rem);
  color: #191970;
}
.field {
  display: flex;
  justify-content: center;
  margin-top: 0px;
}

/* 管理システムヘッダー */
.intro {
  text-align: center;
  margin: 10px 0;
}
.highlight {
  background-color: #1e90ff;
  display: inline-block;
  padding: 10px 25px;
  color: white;
  font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.4rem);
  font-weight: bold;
  border-radius: 15px;
}

/* 管理システム大枠 */
.system-overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px;
}
.system-item img {
  max-width: 100px;
  margin-right: 20px;
}
.point {
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.point h5 {
  color: #1e90ff;
  margin: 0;
}
.point h6 {
  margin: 5px 0;
  color: #0000ff;
  font-size: 2.5rem;
}
.point p {
  margin: 0;
}

/*アコーディオン全体*/
.accordion-area li{
  margin: 10px 0;
}
.accordion-area .fadeUpTrigger {
border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  /*font-size:2rem;*/
  font-weight: bold;
  color: #1e90ff;
  padding: 0% 3% 0% 50px;
  transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;
  
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.title::after{
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  margin:0 3% 3% 3%;
  padding: 1%;
}

/*お問合せフォーム*/
#tbl {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  list-style: none;
}
#tbl th {
  width: 20%;
  text-align: left;
  padding-right: 20px;
  white-space: nowrap;
  vertical-align: middle;
  background: none;
  border: none;
}
#tbl td {
  padding: 10px;
  background: none;
  border: none;
  padding: 10px;
}

/* fadeUp */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
  
/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.fadeUpTrigger{
    opacity: 0;
}

.details {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  &:last-of-type {
    border-bottom: 1px solid #ccc;
  }
}
.details-summary {
  position: relative;
  display: block;
  padding: 20px;
  color: #1e90ff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  &:hover {
    cursor: pointer;
    opacity: 0.8;
  }
  .btn {
    position: absolute;
    top: 37%;
    left: 10%;
    width: 18px;
    height: 18px;
    transform-origin: center center;
    transition-duration: 0.2s;

    &:before,
    &:after {
      content: "";
      background-color: #fff;
      border-radius: 10px;
      width: 18px;
      height: 4px;
      position: absolute;
      top: 7px;
      left: 0;
      transform-origin: center center;
    }
    &:before {
      width: 4px;
      height: 18px;
      top: 0;
      left: 7px;
    }
  }
  &.is-active {
    .btn {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
      &:before {
        content: none;
      }
    }
  }
}

.details-summary::-webkit-details-marker {
  display: none;
}

.details-content {
  padding: 20px;
  p {
    margin: 0 0 20px;
    color: #000;
    font-size: 18px;
    text-align: left;
    &:last-of-type {
      margin: 0 0 0;
    }
  }
}

/* 納品までの流れ */
.flow_design01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design01 ul {
  padding: 0;
}

.flow_design01 li {
  list-style-type: none;
}

.flow_design01 dd {
  margin-top: 5px;
  margin-left: 0;
  font-size: clamp(1.6rem, calc(1.5rem + 0.625vw), 2.0rem);
}

.flow01 > li {
  position: relative;
  list-style: none;
}

.flow01 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow01 > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #1e90ff;
  border-radius: 10px;
  position: relative;
}

.flow01 > li:not(:last-child) dl::before,
.flow01 > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow01 > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #1e90ff;
}

.flow01 > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.flow01 > li dl dt {
  font-size: 1.8em;
  font-weight: 600;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}

.flow01 > li dl dt .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: #1e90ff;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

@media(max-width: 650px) {
  .flow01 > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow01 > li dl {
    display: block;
    padding: 10px 15px;
  }

  .flow01 > li dl dt {
    margin-right: 0;
  }

  .flow01 > li dl dt .icon01 {
    font-size: .7em;
  }
}
