/*=============================================
=            COMMON            =
=============================================*/
main {
  margin-top: 80px;
  color: #333;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  main {
    margin-top: 90px;
  }

  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  #keyVisual .imgWrapper,
  #about .aboutInner,
  #plan .planWrapper,
  #feature .featureInner {
    /* width: calc(100vw - 200px); */
    width: calc(100vw - 100px);
    max-width: 1300px;
    margin: 0 auto;
  }
}

/*=====  End of COMMON  ======*/

/*=============================================
=            PAGEHEAD            =
=============================================*/
#pageHead {
  margin-top: 0px;
  padding-top: 80px;
  position: relative;
}
#pageHead .bgDots {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 100px;
  z-index: 1;
}

#pageHead .bgDots.tr {
  content: "";
  position: absolute;
  top: 1;
  left: auto;
  right: 15px;
  z-index: 1;
}

#pageHead h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 30px;
  line-height: 1.5;
}
#pageHead .annoBox {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
#pageHead .annoBox ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-size: 1.2rem;
}
#pageHead .annoBox ul li {
  padding-left: 2em;
  text-indent: -2em;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #pageHead {
    margin-top: 40px;
    padding-top: 40px;
  }

  #pageHead .bgDots {
    width: 195px;
    top: 0%;
    left: 2%;
  }
  #pageHead .bgDots.tr {
    right: 2%;
  }
  #pageHead .annoBox ul {
    font-size: 1.4rem;
  }
}

/*=====  End of PAGEHEAD  ======*/

/*=============================================
=            PAGE BOTTOM            =
=============================================*/
#pageBottom {
  position: relative;
  height: 100px;
}
#pageBottom .bgDots {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 100px;
  z-index: 1;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

#pageBottom .bgDots.br {
  content: "";
  position: absolute;
  left: auto;
  right: 15px;
  z-index: 1;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #pageBottom {
    height: 195px;
  }
  #pageBottom .bgDots {
    width: 195px;
  }

  #pageBottom .bgDots {
    left: 2%;
  }

  #pageBottom .bgDots.br {
    right: 2%;
  }
}

/*=====  End of PAGE BOTTOM  ======*/

/* takahashi insert */

/*=============================================
=            #keyVisual            =
=============================================*/
#keyVisual .imgWrapper {
  padding: 0 5%;
}

#keyVisual .imgWrapper img {
  display: block;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #keyVisual .imgWrapper {
    margin: 50px auto 0;
    padding: 0;
  }
}

/*=====  End of #keyVisual  ======*/

/*=============================================
=            #about            =
=============================================*/

#about .aboutInner {
  /* padding: 10% 5%; */
  padding: 0 5% 10%;
}

#about .introduce h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 5rem;
  line-height: 1.5;
}

#about .introduce p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #10347e;
  margin-bottom: 5rem;
}

#about .aboutWrapper {
  margin: 0 auto;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 24%);
  border-radius: 5px;
  padding: 0;
}

#about .aboutWrapper .titleWrapper {
  background: #10347e;
  border-right: 1px solid #10347e;
  border-radius: 5px 5px 0 0;
}

#about .aboutWrapper .titleWrapper h3 {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

#about .aboutWrapper .dscWrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  padding: 5%;
}

#about .aboutWrapper .dscWrapper .svgWrapper {
  margin-bottom: 20px;
}

#about .aboutWrapper .dscWrapper .svgWrapper svg {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
}

#about .aboutWrapper .dscWrapper .modalOpen {
  display: block;
  padding: 5% 10%;
  text-align: center;
  background: #10347e;
  color: #ffffff;
  font-size: 3vw;
  font-weight: bold;
  border-radius: 5px;
}

#about .aboutWrapper .dscWrapper p {
  font-size: 1.2rem;
  color: #333;
}

/* modal test */

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modalBg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modalContent {
  overflow: scroll;
  background: #fff;
  left: 50%;
  padding: 10% 5%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80vh;
}

.modalContent h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 30px;
  line-height: 1.5;
}

.modalContent dl {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
}

.modalContent dl div {
  width: 100%;
  border-bottom: 1px solid #333;
  padding: 10px 5px;
}

.modalContent dl div:first-child {
  padding: 0 5px 10px;
}

.modalContent dt,
dd {
  float: left;
  color: #002f7b;
  padding: 0;
  margin: 0;
  display: block;
}

.modalContent dt {
  width: 25%;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
}

.modalContent dd {
  width: 75%;
  font-size: 1.2rem;
  line-height: 1.5em;
  margin-bottom: 0;
}

.modalContent p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #002f7b;
  margin-bottom: 3rem;
}

.modalContent table {
  width: 100%;
  margin: 0 auto;
}
.modalContent table img {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.modalContent table tr:first-child {
  background: #002f7b;
}

.modalContent table tr:not(:first-child) {
  background: #e0e4e9;
  border-bottom: 1px solid #e6eaf2;
}

.modalContent table th {
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}

.modalContent table th:not(:last-child) {
  border-right: 1px solid #e6eaf2;
}

.modalContent table tr td:not(:last-child) {
  border-right: 1px solid #e6eaf2;
}

.modalContent table td {
  font-size: 1.2rem;
  color: #002f7b;
  padding: 10px;
  text-align: center;
}

.modalContent table img {
  max-width: 100px;
}

.modalContent a.modalClose {
  position: fixed;
  top: 0;
  right: 5%;
}

/* modal test END */

@media only screen and (min-width: 768px) {
  #about .aboutInner {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  #about .sp {
    display: block;
  }

  #about .pc {
    display: none;
  }

  #about .introduce p {
    text-align: center;
  }

  #about .aboutWrapper .titleWrapper h3 {
    font-size: 2.6rem;
    padding: 40px 0;
  }

  #about .aboutWrapper .dscWrapper p {
    font-size: 1.6rem;
  }

  #about .aboutWrapper .dscWrapper .svgWrapper {
    margin-bottom: 30px;
  }

  #about .aboutWrapper .dscWrapper .imgWrapper {
    margin-bottom: 30px;
  }

  .modalContent {
    padding: 12% 10%;
  }

  .modalContent h1 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 992px) {
  #about .sp {
    display: none;
  }

  #about .pc {
    display: block;
  }

  #about .aboutWrapper .titleWrapper h3 {
    padding: 20px 0;
  }

  #about .aboutWrapper .dscWrapper .imgWrapper {
    margin-bottom: 30px;
  }

  #about .aboutWrapper .dscWrapper .btnArea {
    margin-left: auto;
  }

  .btnArea_1 {
    margin: 0 auto;
    text-align: center;
  }

  #about .aboutWrapper .dscWrapper .modalOpen {
    font-size: 1.6rem;
    padding: 20px 50px;
  }

  #about .aboutWrapper .dscWrapper p {
    font-size: 1.2rem;
  }

  .modalContent {
    width: 80vw;
    padding: 5%;
  }
}

/*=====  End of #about  ======*/

/*=============================================
=            #plan            =
=============================================*/

/* introduce */
#plan .introduce h1 {
  text-align: center;
  font-size: 2.9rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 30px;
  line-height: 1.5;
}

#plan .introduce p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #10347e;
  margin-bottom: 5rem;
}

#plan .introduce p span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* table */

#plan .planInner {
  background: #e6eaf2;
  padding: 10% 5%;
}

#plan .planSection {
  max-width: 800px;
  margin: 0 auto;
}

#plan .planSection:first-child {
  margin-bottom: 3rem;
}

#plan .planSection h3 {
  font-size: 1.65rem;
  color: #10347e;
  margin-bottom: 13px;
  padding-left: 1em;
  text-indent: -1em;
}

#plan .planSection h3 .small {
  font-size: 1.4rem;
  color: #333;
  display: block;
}

#plan .planSection p {
  font-size: 1.2rem;
}

#plan .introduce {
  padding: 0 5%;
}

#plan .introduce p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #10347e;
  margin-bottom: 5rem;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .planSection {
    margin-bottom: 30px;
  }

  #plan .planSection p {
    font-size: 1.6rem;
  }

  #plan .introduce p {
    text-align: center;
  }

  #plan .introduce h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #10347e;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

/*----------  CHART  ----------*/

#plan .planSection .chartWrapper dl {
  border-bottom: 1px solid #e6eaf2;
  margin-bottom: 0;
  background-color: #fff;
  color: #10347e;
  margin-bottom: 15px;
}

#plan .planSection .chartWrapper dl:last-child {
  border: none;
}

#plan .planSection .chartWrapper dl dt {
  background-color: #10347e;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#plan .planSection .chartWrapper dl dt a {
  background-color: #10347e;
  color: #fff;
  /* padding: 10px 20px; */
  font-size: 1.6rem;
  line-height: 1.5em;
  display: flex;
  align-items: center;
}

#plan .planSection .chartWrapper dl dd {
  font-size: 1.6rem;
  padding: 15px 25px;
  line-height: 1.5em;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#plan .planSection .chartWrapper dl.cols-3 .discountCol {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}
#plan .planSection .chartWrapper dl.cols-3 .standardCol {
  background-color: #f9fafc;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#plan #plan_divert .planSection .chartWrapper dl.cols-3 .standardCol {
  background-color: #fcf9f9;
}

#plan .planSection .chartWrapper dl.cols-3 dd {
  text-align: center;
}

/* detail3 遷移 */
#plan .planSection .chartWrapper dl.cols-3 a {
  color: #ffff00;
  text-decoration: underline;
}
#plan .planSection .chartWrapper dl.cols-3 a:hover {
  opacity: 0.7;
}
/* detail3 遷移 */

#plan .planSection .chartWrapper dl.titleRow {
  display: none;
}
#plan .planSection .chartWrapper dl.titleRow > * {
  background-color: #333 !important;
  color: #fff;
  border-right: #e6eaf2 1px solid;
}
#plan .planSection .chartWrapper .planMoBox {
  margin-bottom: 5px;
}

#plan .planSection .chartWrapper .planMoBox:last-child {
  margin-bottom: 0px;
}
#plan .planSection .chartWrapper .planMoBox h6 {
  margin-bottom: 0;
  background-color: #10347e;
  color: #fff;
  padding: 10px 15px;
  font-size: 1.4rem;
}
#plan .planSection .chartWrapper .planMoBox a {
  margin-bottom: 0;
  background-color: #10347e;
  color: #fff;
  /* padding: 10px 15px; */
  font-size: 1.4rem;
}

/* detail3 遷移 */
#plan .planSection .chartWrapper .planMoBox h6 a {
  color: #ffff00;
  text-decoration: underline;
}
/* detail3 遷移 */

#plan #plan_divert .planSection .chartWrapper .planMoBox h6 {
  background-color: #e64545;
}
#plan .planSection .chartWrapper dl.cols-mo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

#plan .planSection .chartWrapper dl.cols-mo dt {
  background: #333;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 130px;
  font-size: 1.2rem;
  padding: 10px;
}
#plan #plan_divert .planSection .chartWrapper dl.cols-mo dt {
  background-color: #333;
}

#plan .planSection .chartWrapper dl.cols-mo dd {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
#plan .planSection .chartWrapper dl.cols-mo dd.discountCol {
  font-weight: bold;
  font-size: 1.2em;
}

#plan .planSection .annoBox ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  margin-top: 15px;
  font-size: 1.2rem;
}
#plan .planSection .annoBox ul li {
  padding-left: 1em;
  text-indent: -1em;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .planSection .chartWrapper dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
  }
  #plan .planSection .chartWrapper dl dt {
    -webkit-box-flex: 0;
    /* -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    max-width: 250px; */

    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;

    padding: 15px;
    font-size: 1.6rem;
  }

  #plan .planSection .chartWrapper dl dd {
    font-size: 1.6rem;
  }

  #plan .planSection .chartWrapper dl.cols-3 .discountCol {
    -webkit-box-flex: 0;
    /* -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    max-width: 250px; */

    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
  }

  #plan .planSection .annoBox ul {
    font-size: 1.4rem;
  }

  #plan .planSection .chartWrapper dl.titleRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* MEDIA QUERY LARGE */
@media only screen and (min-width: 992px) {
  #plan .planSection .chartWrapper dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
    padding: 20px;
    font-size: 1.8rem;
  }

  #plan .planSection .chartWrapper dl.cols-3 .discountCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
    font-size: 2.2rem;
    line-height: 1;
  }

  #plan .planSection .chartWrapper dl.cols-3 .discountCol .annotation {
    font-size: 1.2rem;
  }

  #plan .planSection .chartWrapper dl dd {
    font-size: 1.8rem;
  }
}

#plan a {
  font-size: 1.4rem;
  display: block;
  /* margin-top: 1.4rem; */
  color: #002f7b;
  border-radius: 5px;
  font-weight: bold;
}

#plan a:hover {
  opacity: 0.7;
}
/* #plan table END*/

/*=====  End of #plan  ======*/

/*=============================================
=            #feature            =
=============================================*/

#feature .featureInner {
  padding: 10% 0 0;
}

#feature h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 30px;
  line-height: 1.5;
}

.featureContainer {
  display: flex;
  padding: 5%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}

.featureContainer .featureItem {
  position: relative;
  background-color: #e6eaf2;
  margin-bottom: 30px;
  min-height: 440px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 24%);
}

.featureContainer .featureItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 93px solid #002f7b;
  border-right: 260px solid transparent;
}

.featureContainer .featureItem .featureItemWrapper {
  padding: 0 5% 5%;
}

.featureContainer .featureItem .featureItemWrapper .number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.featureContainer .featureItem .featureItemWrapper .textWrapper {
  position: relative;
}

.featureContainer .featureItem .featureItemWrapper .textWrapper .headingArea {
  font-size: 2rem;
  font-weight: bold;
  color: #002f7b;
  margin-bottom: 30px;
}

.featureContainer
  .featureItem
  .featureItemWrapper
  .textWrapper
  .headingArea
  span.annotation {
  font-size: 1.2rem;
}

.featureContainer .featureItem .featureItemWrapper .textWrapper .detailArea {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: 0.5rem;
}

.featureContainer .featureItem .featureItemWrapper .textWrapper .btnArea {
  margin: 0 auto;
  text-align: center;
}

.featureContainer .featureItem .featureItemWrapper .textWrapper .btnArea a {
  display: block;
  margin: 0 auto 30px;
  max-width: 200px;
  font-size: 1.4rem;
  background-color: #ffff00;
  color: #002f7b;
  text-align: center;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}

.featureContainer .featureItem .featureItemWrapper .textWrapper .commentArea {
  font-size: 1.2rem;
  color: #333333;
}

@media only screen and (min-width: 768px) {
  .featureContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .featureContainer .featureItem {
    width: 48%;
  }

  .featureContainer .featureItem .featureItemWrapper .textWrapper .commentArea {
    line-height: 1.2;
  }
}

@media only screen and (min-width: 992px) {
  .featureContainer .featureItem {
    width: 32%;
  }

  .featureContainer .featureItem .featureItemWrapper .textWrapper .detailArea {
    line-height: 1.5;
  }

  .featureContainer .featureItem .featureItemWrapper .textWrapper .commentArea {
    line-height: 1.5;
  }
}

/*----------  device  ----------*/

.deviceContainer {
  padding: 5% 0;
}

.deviceContainer h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 30px;
  line-height: 1.5;
}

.deviceWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 5%;
}

.deviceItem {
  width: 48%;
  margin-bottom: 20px;
  background: #e0e4e9;
  border-radius: 10px;
  padding: 3%;
}

.deviceItem img {
  display: block;
  width: 70%;
  margin: 0 auto 10px;
}

.deviceItem p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #10347e;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .deviceItem {
    width: 23%;
  }

  .deviceWrapper {
    padding: 0;
  }
}

/*=====  End of #feature  ======*/
