@charset "UTF-8";
.c-section__title {
  text-align: center;
}
.c-section__title h2 {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px auto;
  border-bottom: red solid 5px;
}

/* アコーディオン全体 */
.c-accordion {
  max-width: 1200px;
  margin: 0 auto;
  /* アコーディオンのタイトル */
  /* アコーディオン */
  /* アコーディオンのコンテンツ */
}
.c-accordion__title {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  padding: 15px 60px 15px 20px;
  font-weight: bold;
  cursor: pointer;
  /* (+)アイコン */
}
.c-accordion__title--lightRed {
  background-color: #E87E74;
}
.c-accordion__title--lightOrange {
  background-color: #F5C27B;
}
.c-accordion__title--lightBlue {
  background-color: #AFDCDE;
}
.c-accordion__title--lightYellow {
  background-color: #FFF6B8;
}
.c-accordion__title::before, .c-accordion__title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #222;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
}
.c-accordion__title::after {
  transform: rotate(90deg);
}
.c-accordion__item {
  border: 1px solid #ccc;
  margin-top: 10px;
  cursor: pointer;
  /* アコーディオン展開時の(-)アイコン */
}
.c-accordion__item.is-active .c-accordion__title::before {
  transform: rotate(180deg);
}
.c-accordion__item.is-active .c-accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
}
.c-accordion__content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
  /*コンテンツの見出し*/
}
.c-accordion__content.is-open {
  display: block;
}
.c-accordion__content--title {
  margin: 20px 0;
}
.c-accordion__content--title h2 {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  padding: 0.5em;
  /*文字周りの余白*/
  color: #494949;
  /*文字色*/
  background: #fffaf4;
  /*背景色*/
  border-left: solid 5px #ffaf58;
  /*左線（実線 太さ 色）*/
}

.swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  text-align: left;
}
.swiper-slide li {
  margin: 10px 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  visibility: hidden;
}

.swiper-button-prev {
  left: 50px;
}

.swiper-button-next {
  right: 50px;
}

.swiper-pagination {
  padding-top: 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    text-align: left;
  }
  .swiper-button-next,
.swiper-button-prev {
    display: none;
    visibility: hidden;
  }
}
/* 三角右向き */
.sankaku_migi {
  position: relative;
  padding: 0 0 0 22px;
  font-size: 1.2rem;
}
.sankaku_migi::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  border: 6px solid transparent;
  border-left: 8px solid gold;
}

/*スクロールダウン全体の場所*/
.scrolldown2 {
  opacity: 0.5;
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  /*Scrollテキストの描写*/
}
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  transform: translate(-50%, -50%);
  bottom: 0px;
  /*テキストの形状*/
  color: #555;
  font-size: 1rem;
  letter-spacing: 0.05em;
  -webkit-animation: cirlemovehide 1s ease-out infinite;
          animation: cirlemovehide 1s ease-out infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  /* アニメーション開始を1秒遅らせる */
}

/* 矢印の描写 */
.scrolldown2:before {
  content: "";
  display: inline-block;
  width: 50px;
  /* アイコンの幅を指定 */
  height: 50px;
  /* アイコンの高さを指定 */
  background-image: url("../img/sam.svg");
  /* アイコン画像のパスを指定 */
  background-repeat: no-repeat;
  /* アイコン画像を繰り返さない */
  background-position: center bottom;
  /* アイコン画像を中央に配置 */
  transform: rotate(-90deg);
  /*描画位置*/
  position: absolute;
  padding: 0px;
  border-radius: 25px;
  bottom: -50px;
  left: 5px;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    left: -45px;
  }
  100% {
    left: 5px;
  }
}
@keyframes circlemove {
  0% {
    left: -45px;
  }
  100% {
    left: 5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.flex {
  display: flex;
  justify-content: center;
}

.price_container {
  max-width: 1200px;
  margin: 0 auto;
}
.price_red {
  color: #E83B2B;
  font-weight: bold;
}

.p-priceContactBtn {
  margin: 30px auto;
  display: block;
  text-align: center;
}
.p-priceContactBtn:nth-child(1) {
  margin-bottom: 60px;
}
.p-priceContactBtn i {
  position: absolute;
  top: 30%;
  left: 10%;
}
.p-priceContactBtn a {
  margin: 30px auto;
  position: relative;
  display: block;
  width: 500px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 10px 25px;
  transition: 0.3s;
}
.p-priceContactBtn a:hover {
  transition: 0.3s;
}

.fa-circle-play {
  display: table-cell;
}

.c-btn {
  margin: 0 10px;
  padding: 5px 15px;
  font-weight: bold;
}
.c-btn--main {
  background-color: #AFDCDE;
  color: #111;
  border: #719092 1px solid;
}
.c-btn--main:hover {
  transition: 0.3s;
  background-color: white;
  color: #E83B2B;
  border: #E83B2B 1px solid;
}
.c-btn--sub {
  background-color: #FFF6B8;
  color: #111;
  border: #FED600 1px solid;
}
.c-btn--sub:hover {
  transition: 0.3s;
  background-color: white;
  color: #E83B2B;
  border: red 1px solid;
}
.c-btn--red {
  background-color: #e74030;
  color: #eee;
  border: #a1291e 1px solid;
}
.c-btn--red:hover {
  transition: 0.3s;
  background-color: white;
  color: #E83B2B;
  border: #E83B2B 1px solid;
}
.c-btn--black {
  background-color: #222;
  color: #ddd;
  border: #222 1px solid;
}
.c-btn--black:hover {
  transition: 0.3s;
  background-color: white;
  color: #E83B2B;
  border: #E83B2B 1px solid;
}
.c-btn--lightOrange {
  background-color: #F5C27B;
  color: #222;
  border: #f5aa41 1px solid;
}
.c-btn--lightOrange:hover {
  transition: 0.3s;
  background-color: white;
  color: #E83B2B;
  border: #E83B2B 1px solid;
}

.to-top_btn a {
  margin: 10px 10px;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.table {
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #ddd;
  border-collapse: collapse;
  border-spacing: 0;
}
.table thead {
  font-weight: bold;
  height: 50px;
}
.table th,
.table td {
  white-space: nowrap;
  /* 要素を折り返さないようにする */
  padding: 10px;
  margin: 0;
}
.table tr {
  border: 1px solid #ddd;
  height: 50px;
  text-align: center;
}
.table tr:nth-child(odd) td {
  background-color: #eee;
}
.table tr :nth-child(4) {
  border: solid 1px black;
}
.table tr :nth-child(5) {
  border: solid 1px black;
}

@media screen and (max-width: 768px) {
  .p-priceContactBtn a {
    font-size: 1rem;
    width: 90%;
  }
  .to-top_btn {
    margin: 15px 0;
  }
  .to-top_btn a {
    font-size: 0.8rem;
    padding: 3px 6px;
    white-space: nowrap;
  }
  /* 768pxまでの幅の場合に適応される */
  .table {
    width: 100%;
  }
  .table thead {
    display: none;
  }
  .table tr {
    width: 100%;
  }
  .table tr :nth-child(4) {
    border: none;
    border-bottom: 2px dotted #ddd;
  }
  .table tr :nth-child(5) {
    border: none;
    border-bottom: 2px dotted #ddd;
  }
  .table td {
    display: block;
    text-align: right;
    width: 100%;
    border-bottom: 2px dotted #ddd;
  }
  .table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  .table td:last-child {
    border-bottom: #ccc 2px solid;
  }
}
#ipad-series__list {
  /* ==========================
    アコーディオンメニュー
  ========================== */
}
#ipad-series__list .bl_accordion {
  margin: auto;
}
#ipad-series__list .bl_accordionTitle {
  width: 100%;
  height: 80px;
  line-height: 60px;
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #AFDCDE;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  padding: 10px 20px 10px 80px;
}
#ipad-series__list .bl_accordionTitle::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0fe";
  position: absolute;
  top: 50%;
  left: 30px;
  color: #000;
  transform: translate(-50%, -50%);
  transition: 1s;
}
#ipad-series__list .bl_accordionTitle.active::before {
  font-family: "Font Awesome 5 Free";
  content: "\f146";
}
#ipad-series__list .bl_accordionContent {
  padding: 0 40px;
  opacity: 0;
  height: 0;
  line-height: 0;
  transition: 0.3s;
}
#ipad-series__list .bl_accordionContent ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
#ipad-series__list .bl_accordionContent ul a {
  width: 20%;
  border: #ccc solid 2px;
  background-color: #eee;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 15px;
  transition: 0.2s;
}
#ipad-series__list .bl_accordionContent ul a:hover {
  transition: 0.2s;
  background-color: #FFF6B8;
  border-color: #FED600;
}
#ipad-series__list .bl_accordionContent ul a li {
  text-align: center;
}
#ipad-series__list .bl_accordionContent ul a li span {
  font-size: 1.1rem;
  font-weight: bold;
}
#ipad-series__list .bl_accordionContent.open {
  padding: 40px;
  opacity: 1;
  line-height: normal;
  height: auto;
}
#ipad-series__list .bl_accordionTitle__ipadPro {
  background-image: url(/img/ipad.png);
  background-position-x: 95%;
  background-repeat: no-repeat;
}
#ipad-series__list .bl_accordionTitle__ipadAir {
  background-image: url(/img/images.jpg);
  background-position-x: 95%;
  background-repeat: no-repeat;
}
#ipad-series__list .bl_accordionTitle__ipadMini {
  background-image: url(/img/images.jpg);
  background-position-x: 95%;
  background-repeat: no-repeat;
}
#ipad-series__list .bl_accordionTitle__ipad {
  background-image: url(/img/images.jpg);
  background-position-x: 95%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #ipad-series__list .bl_accordionTitle span {
    color: #000;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
  #ipad-series__list .bl_accordionContent ul {
    flex-direction: column;
  }
  #ipad-series__list .bl_accordionContent ul a {
    width: 100%;
  }
}
/*# sourceMappingURL=koyake.css.map */