@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------- btnパーツ */
.btnBox {
  padding: 5px;
  width: 300px;
  margin: 30px auto;
  background: #222;
}
.btnBox a {
  display: block;
  padding: 15px;
  border: #a19999 1px solid;
  letter-spacing: 2px;
  color: #fff;
}

.btnBox a span {
  color: #fff;
  display: flex;
  justify-content: center;
}
.btnBox a span::after {
  font-family: 'Material Icons';
  content: '\e315';
  display: inline-block;
  font-size: 130%;
  padding: 2px 0 0;
}
.btnBox a:hover {
  opacity: 0.8;
}

.btnDL {
    padding: 5px;
    width: 300px;
    margin: 10px 0 10px;
    background: #115279;
}
.btnDL a {
  display: block;
  padding: 15px;
  border: #97a8bd 1px solid;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
}
.btnDL a:hover {
  opacity: 0.8;
}

.btnDL a::after {
    content: "DOWNLOAD";
    position: absolute;
    right: 8px;
    font-size: 50%;
    letter-spacing: 1px;
}


/*----------------------------------------------------------- pMenu */
.pMenu {
  max-width: 1200px;
  margin: auto;
  padding: 5% 0 5%;
}
.pMenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pMenu ul li {
  width: calc(100% / 3);
  padding: 5px 10px;
}
.pMenu ul li a {
    padding: 15px;
    background: #d5eef1;
    display: flex;
    width: 100%;
    height: 100%;
    line-height: 1.4em;
    justify-content: center;
    align-items: center;
}
.pMenu ul li.current a {
  background: #368d97;
  color: #fff;
}
/*----------------------------------------------------------- fade */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(.25, .8, .25, 1);
}
.fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}
/*----------------------------------------------------------- 動画 */
video {
  width: 100%;
}
.video-wrap {
  position: relative;
}
/*----------------------------------------------------------- photoName */
.phCap {
  position: relative;
  width: fit-content;
  margin: auto;
}
.phCap .name {
  position: absolute;
  /* background: #222; */
  /* background: linear-gradient(0deg, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%); */
  color: #fff;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: right;
  font-size: 70%;
  text-shadow: 1px 1px 2px #666;
}
.phCap .nameBK {
  position: absolute;
  color: #222;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: right;
  font-size: 70%;
}
.phCap .nameW {
  position: absolute;
  color: #fff;
  /* color: #222; */
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: right;
  font-size: 70%;
}
.phCap .nameEN {
  position: absolute;
  color: #222;
  padding: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-sizing: border-box;
  top: -5px;
  right: -3px;
  text-align: center;
  font-size: 100%;
  line-height: 1.4em;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 5px 15px -5px #777777;
}
/*----------------------------------------------------------- captionBox */
.captionBox {
  padding: 10px;
}
.captionBox p {
  font-size: 80%;
  text-align: left;
  padding: 0;
}
.cap {
  font-size: 80%;
  padding: 0;
}
/*----------------------------------------------------------- 枠線 */
.map img {
  border: 1px solid #333;
}
/*----------------------------------------------------------- lineBox */
.lineBox {
  padding: 50px 0;
}
/*----------------------------------------------------------- attentionBox */
.attentionBox {
  max-width: 1280px;
  margin: auto;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid #d1cfcf;
}
.attentionBox p {
  font-size: 70%;
  color: #999;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .attentionBox p {
    font-size: 70%;
    color: #999;
    text-align: left;
  }
}
/*----------------------------------------------------------- pageTop */
.pTop {
  display: none;
  position: fixed;
  bottom: 55px;
  right: 16px;
}
.pTop a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: solid 2px #FFF;
  background: rgba(0, 0, 0, 0.55);
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.45);
  transition: all 0.5s;
}
.pTop a:hover {
  background: rgba(0, 0, 0, 0.2);
}
.pTop a::after {
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 18px;
  left: 8px;
  width: 15px;
  height: 2px;
  transform: rotate(-45deg);
}
.pTop a::before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 18px;
  right: 8px;
  width: 15px;
  height: 2px;
  transform: rotate(45deg);
}
/*----------------------------------------------------------- sectionmain */
article section:nth-last-of-type(1) {
  padding: 0 0 5%;
}
main img {
  max-width: 100%;
  height: auto;
}
main h2 {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 170%;
  line-height: 1.6em;
  margin: 30px 0 15px;
  letter-spacing: 3px;
}
main h2 small {
    display: block;
    font-size: 50%;
    font-weight: 400;
    padding: 10px;
    line-height: 1.4em;
}
main h3 {
  font-weight: 600;
  font-size: 130%;
  line-height: 1.6em;
  padding: 20px;
  margin: 2%;
}
main h4 {
  font-size: 120%;
  font-weight: 500;
  padding: 1% 0 2%;
  line-height: 1.6em;
}
main h5 {
  font-size: 110%;
  font-weight: 500;
  padding: 3%;
  line-height: 1.6em;
  margin: 3% 0;
}
main h3 small, main h4 small, main h5 small, main h6 small {
  font-size: 80%;
  line-height: 1.6em;
}
main .flexBox1, main .flexBox2, main .flexBox3, main .flexBox4 {
  padding: 2% 0;
}
main .flexBox2 > ul, main .flexBox3 > ul, main .flexBox4 > ul {
  display: flex;
}
main .flexBox2 > ul > li, main .flexBox3 > ul > li, main .flexBox4 > ul > li {
  list-style-type: none;
  text-align: center;
}
main .flexBox2 > ul > li:last-child, main .flexBox3 > ul > li:last-child, main .flexBox4 > ul > li:last-child {
  margin: 0;
}
main .flexBox2 > ul > li {
  width: calc(100% / 2 - 10px);
}
main .flexBox3 > ul > li {
  width: calc(100% / 3 - 10px);
}
.detailBox {
  display: flex;
  padding: 0 0 40px;
  justify-content: center;
}
.detailBox .detail {
  padding: 30px;
}
/* tableなどの横スクロールボックス */
.scrollBox table {
  width: 100%;
}
.scrollBox {
  overflow: auto;
  white-space: nowrap;
}
.scrollBox::-webkit-scrollbar {
  height: 5px;
}
.scrollBox::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.scrollBox::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.contentsTop {
  padding: 30px 0;
}
.contentsTop p {
  font-size: 18px;
  padding: 20px;
  text-align: center;
}
.attention {
  font-size: 70%;
  color: #666666;
}
.attention_info {
  font-size: 85%;
  /*  color: #ffffff;*/
  line-height: 1.6em;
  padding-bottom: 2em;
}
.imgBox {
  padding: 2% 0 5%;
}
.imgBox img {
  max-width: 100%;
}
main .bnrBox ul {
  margin: auto;
}
main .bnrBox ul li {
  list-style-type: none;
  text-align: center;
  background: #265280;
  padding: 0;
}
main .flexBox3 ul li p, main .flexBox4 ul li p {
  padding: 0;
  line-height: 1.4em;
  text-align: center;
}
main dl {
  display: flex;
  padding: 0 10px;
  flex-wrap: nowrap;
}
main dl dt, main dl dd {
  text-align: left;
  padding: 15px;
  margin: 0 0 3px;
  line-height: 1.6em;
}
main dl dt {
    width: 35%;
    color: #fff;
    background: #92cad1;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
main dl dd {
  width: 74.5%;
  background: #f7f8f9;
  color: #333;
}

main p {
  padding: 0 0 3%;
  line-height: 1.6em;
  font-size: 100%;
  font-weight: 400;
  text-indent: 0;
}
main em {
  font-style: normal;
}
.contents ul li {
  /* list-style-type: disc; */
  list-style-position: inside;
  padding: 0 5px;
}
.contents main ol {
  padding: 15px;
  text-align: left;
}
.contents ol li {
  list-style-type: decimal;
  list-style-position: inside;
  padding: 10px 0;
}
main .centerImage {
  margin: auto;
  text-align: center;
}
main a, main a:link, main a:visited {
  text-decoration: none;
  font-weight: 400;
  word-break: break-all;
}
main table, main tr, main td {
  border-collapse: collapse;
  border: 1px solid #999;
}
main table td {
  padding: 10px;
  text-align: center;
  width: 20%;
  line-height: 1.6em;
}
main .sliderdef {
  width: 500px;
  padding: 0 0 10px;
}
main .indexList {
  padding: 20px;
  background: #e4e6ed;
}
main .indexList li {
  color: #265280;
  font-weight: 600;
  font-size: 110%;
  line-height: 1.4em;
}
main .indexList li a {
  font-weight: 600;
}
/*----------------------------------------------------------- information */
.information {
  padding: 30px 0 0;
}
.information h2 {
  padding: 10px;
  font-weight: 300;
  font-size: 120%;
  line-height: 1.6em;
}
.information .infoBox {
  /*  display: flex;*/
  justify-content: center;
  padding: 0 0 30px;
}
.additionBox .infoBox {
  /*  display: flex;*/
  justify-content: center;
  padding: 0 0 30px;
}
.information .saleBox {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 20px;
}
.additionBox .saleBox {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 20px;
}
.information .detail {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 10px;
}
.additionBox .detail {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 10px;
}
.information .sale {
  font-size: 100%;
  font-weight: 500;
  padding: 0 4px 2px 0;
}
.additionBox .sale {
  font-size: 100%;
  font-weight: 500;
  padding: 0 4px 2px 0;
}
.information .plan {
  font-size: 275%;
  font-weight: 600;
}
.additionBox .plan {
  font-size: 275%;
  font-weight: 600;
}
.information .plan small {
  font-size: 70%;
}
.additionBox .plan small {
  font-size: 70%;
}
.information .type {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 50%;
  font-weight: 700;
}
.additionBox .type {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 50%;
  font-weight: 700;
}
.information .price {
  font-size: 340%;
  font-weight: 600;
  padding: 0 0 0 10px;
}
.additionBox .price {
  font-size: 340%;
  font-weight: 600;
  padding: 0 0 0 10px;
}
.information .ex {}
.information .ex small {
  display: block;
  font-size: 80%;
  font-weight: 700;
}
.additionBox .ex small {
  display: block;
  font-size: 80%;
  font-weight: 700;
}
.information .ex span {
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 160%;
  font-weight: 700;
  padding: 0 0 3px;
}
.additionBox .ex span {
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 160%;
  font-weight: 700;
  padding: 0 0 3px;
}
.information .ex span em {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 50%;
  font-style: normal;
}
.additionBox .ex span em {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 50%;
  font-style: normal;
}
.information .tilde {
  font-size: 200%;
  font-weight: 700;
}
.additionBox .tilde {
  font-size: 200%;
  font-weight: 700;
}
.information .slash {
  font-size: 170%;
  font-weight: 700;
  padding: 0 13px 4px 0;
}
.additionBox .slash {
  font-size: 170%;
  font-weight: 700;
  padding: 0 13px 4px 0;
}
/*----------------------------------------------------------- 固定ページ用 */
#pageTitle {
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
main article section > section {
  padding: 5% 0;
}
/*----------------------------------------------------------- 冒頭テキスト */
.firstText {
  font-size: 16px;
  line-height: 2em;
}
/*----------------------------------------------------------- ページナビ */
.pageNavi {
  padding: 0 0 3vmin;
  text-align: center;
}
.pageNavi ul {
  display: flex;
  justify-content: space-between;
  border-top: 2px dotted #a9998e;
}
.pageNavi ul li {
  list-style-type: none;
  width: 50%;
}
.pageNavi ul li:first-child {
  text-align: left;
}
.pageNavi ul li:last-child {
  text-align: right;
}
.pageNavi ul li:first-child a::before {
  content: "< ";
}
.pageNavi ul li:last-child a::after {
  content: " >";
}
.pageNavi ul li a {
  display: block;
  padding: 2vmin;
}
.entry-content {
  padding: 0;
}
/*----------------------------------------------------------- 一覧ボタン */
.pageBtnBox {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.pageBtnBox p {
  font-size: 20px;
  padding: 0 0 2vmin;
}
main .pageBtnBox a {
  text-align: center;
  display: block;
  background: #8d875e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 200;
  padding: 10px 10px 13px;
  /* border: 1px solid #bbbdbc; */
  width: 360px;
  box-shadow: 2px 2px 2px 1px rgb(110 110 110 / 20%);
  cursor: pointer;
  letter-spacing: 3px;
  border-radius: 5px;
}
.pageBtnBox a span {
  color: #fff;
}
.pageBtnBox a span::after {
  content: '';
  display: inline-block;
  margin: 0 0 0 1vmin;
  width: 40px;
  height: 24px;
  background-image: url(/wp-content/themes/original-child/assets/img/ar_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -13px;
}
#sideMenu {
  border-left: 1px solid #d5dbdd;
  margin: 2vmin 0 0;
}
#sideMenu h2 {
  background: #f5f7f3;
  padding: 1.4vmin;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  margin: 0;
  border-top: none;
  border-bottom: 1px solid #d5dbdd;
}
#sideMenu ul {
  padding: 2vmin;
}
#sideMenu ul li {
  font-size: 14px;
  padding: 0 0 1vmin;
  text-indent: -2vmin;
  padding-left: 2vmin;
  line-height: 1.4em;
}
/*----------------------------------------------------------- iFrame */
.contents iframe {
  width: 420px;
  height: 314px;
}
#thumbList {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#thumbList .thumbItem {
  flex: 0 1 18.75%;
  box-sizing: border-box;
  position: relative;
  margin: 1vmin 5px 1vmin;
  list-style: none;
}
.thumbItem:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s opacity linear;
}
.thumbItem.thumbnail-current:after {
  opacity: 0;
}
.thumbItem img {
  width: 100%;
  margin: 0 auto;
  height: 100px; /*任意の高さを指定*/
  object-fit: contain;
}
/*----------------------------------------------------------- アコーディオン */
.accContainer .accTitle {
  color: #fff;
  background: #6285ab;
  cursor: pointer;
  text-align: left;
}
.accContainer .accTitle:hover, .accContainer .accTitle:active, .accContainer .content-entry.open .accTitle {
  opacity: 0.8;
  color: white;
}
.accContainer .accTitle:hover i:before, .accContainer .accTitle:hover i:active, .accContainer .content-entry.open i {
  color: white;
}
.accTitle {
  position: relative;
}
.accTitle:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accTitle.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
.accordion-content {
  display: none;
}
/*----------------------------------------------------------- ページナビ */
.wp-pagenavi { /* 全体 */
  margin: 20px 0;
  font-size: 12px;
}
.wp-pagenavi a { /* フォント色 */
  color: #4a4a4a;
}
.pages { /* 左の表記 */
  margin-right: 20px;
}
.wp-pagenavi .current, .wp-pagenavi amain {
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  background: #fff;
}
.wp-pagenavi .current {
  border: none;
  background: #265280;
  color: #fff;
}
.wp-pagenavi a.page:hover { /* マウスオーバー */
  background: #87e6e9;
  color: #fff;
}
.wp-pagenavi .first, .wp-pagenavi .extend { /* ... */
  margin-right: 10px;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink { /* 記号の削除 */
  display: none;
}
/*----------------------------------------------------------- 1280px */
@media all and (max-width:1280px) {
  main .contentsDetail {
    box-sizing: border-box;
  }
  main ul li {
    line-height: 2em;
  }
  .attentionBox {
    padding: 10px;
  }
  ul.menuFooter {
    flex-wrap: wrap;
  }
  main h2 {
    font-size: 140%;
  }
  main h3 {
    font-size: 100%;
    line-height: 1.6em;
  }
  main h4 {
    font-size: 100%;
  }
  main h5 {
    font-size: 90%;
  }
  main h3 small, main h4 small, main h5 small, main h6 small {
    font-size: 80%;
    line-height: 1.6em;
  }
}
/*----------------------------------------------------------- 1024px */
@media screen and (max-width: 1024px) {
  .newsList dl dt span {
    font-size: 12px;
  }
  .information .infoBox {
    flex-flow: column;
  }
  .additionBox .infoBox {
    flex-flow: column;
  }
  main dl dt, main dl dd {
    padding: 10px;
    font-size: 90%;
  }
}
/*----------------------------------------------------------- 840px */
@media screen and (max-width: 840px) {
  .contents iframe {
    width: 420px;
    height: 314px;
  }
  main .flexBox3 > ul > li {
    width: calc(100% / 2 - 10px);
  }
  main h2.large {
    font-size: 240%;
  }
  .pMenu ul li {
    width: calc(100% / 2);
    padding: 5px 3px;
  }
}
/*----------------------------------------------------------- 768x */
@media screen and (max-width: 820px) {
  main p {
    font-size: 90%;
  }
  main h2 {
    font-size: 100%;
  }
  main h4 {
    font-size: 90%;
    padding: 10px;
  }
  main h4 strong {
    font-size: 140%;
  }
  main p {
    line-height: 1.6em;
  }
}
/*----------------------------------------------------------- 640px */
@media screen and (max-width: 640px) {
  .information .saleBox {
    align-items: center;
    flex-flow: column;
  }
  .additionBox .saleBox {
    align-items: center;
    flex-flow: column;
  }
  .information .slash {
    display: none;
  }
  .additionBox .information .slash {
    display: none;
  }
}
/*----------------------------------------------------------- 580px */
@media screen and (max-width: 580px) {
  .information h2 {
    font-size: 140%;
  }
  .additionBox h2 {
    font-size: 140%;
  }
  .information .sale {
    font-size: 90%;
  }
  .additionBox .sale {
    font-size: 90%;
  }
  .information .plan {
    font-size: 250%;
  }
  .additionBox .plan {
    font-size: 250%;
  }
  .information .price {
    font-size: 300%;
  }
  .additionBox .price {
    font-size: 300%;
  }
}
/*----------------------------------------------------------- 480px */
@media screen and (max-width: 480px) {
  main p {
    font-size: 80%;
    text-align: left;
  }
  .contentsDetail > p {
    padding: 10px;
  }
  main ul li {
    line-height: 1.6em;
    font-size: 14px;
    /* list-style-type: disc; */
  }
  main .contentsDetail > ul li {
    padding-left: 1.25em;
    text-indent: -1.25em;
  }
  main dl dt, main dl dd {
    padding: 8px;
    font-size: 13px;
  }
  main dl dt {
    width: auto;
  }
  main dl dd {
    width: auto;
  }
  .pageNavi ul li {
    padding: 0;
    list-style-type: none;
  }
  .pageNavi ul li a {
    font-size: 14px;
    line-height: 2em;
  }
  main .flexBox1 ul, main .flexBox2 ul, main .flexBox3 ul, main .flexBox4 ul {
    flex-flow: column;
  }
  main .flexBox2 ul li, main .flexBox3 ul li, main .flexBox4 ul li {
    width: auto;
    font-size: 16px;
    padding: 10px;
    line-height: 1.6em;
    text-indent: initial;
  }
  .detailBox {
    display: flex;
    flex-flow: column;
  }
  main .indexList li {
    padding-left: 1.25em;
    text-indent: -1.25em;
    font-size: 90%;
  }
  main .indexList ol {
    padding: 0;
    text-align: left;
  }
  main .indexList li a {
    font-size: 85%;
  }
  .contentsTop {
    padding: 0px;
  }

  .imgBox {
    padding: 0;
  }
  main dl {
    flex-flow: column;
  }
  main h6 {
    padding: 10px 0;
  }
  main .sliderdef {
    width: 260px;
  }
  .pageBtnBox a {
    font-size: 4vw;
    padding: 3vmin 1vmin 1vmin;
    width: 95%;
  }
  .newsList dl dt span {
    font-size: 2vw;
    width: 100px;
    padding: 2vw;
  }
  .newsList dl dd {
    font-size: 3.2vw;
  }
  .newsList dl dd span {
    padding: 0.25em 1em 0.3em;
    font-size: 2vw;
    margin: 0 1vmin 0 0;
  }
  .newsList dl dd em {
    margin: 2vmin 0;
  }
  .contents iframe {
    width: auto;
    height: 300px;
  }
  .tableList {
    padding: 5vmin;
  }
  .tableList ul li {
    text-indent: initial;
    line-height: 4vw;
    font-size: 3.2vw;
    padding: 4vmin 2vmin;
  }
  .firstText {
    font-size: 3.2vw;
    text-align: left;
    padding: 0 2vw 5vw;
  }
  #thumbList {
    width: 300px;
  }
  #thumbList .thumbItem {
    flex: 0 1 15%;
    text-indent: 0;
  }
  .thumbItem img {
    width: 100%;
    margin: 0 auto;
    height: 20px; /*任意の高さを指定*/
    object-fit: contain;
  }
  #aDetail .flexBoxArticle ul {
    display: block;
  }
  #aDetail .flexBoxArticle ul li {
    display: block;
  }
  #aDetail .flexBoxArticle ul li {
    width: auto;
    margin: 0;
  }
}