/*=============================================
=            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;
  }
}

/*=====  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: 3rem;
  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;
}

#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: 900px) {
  #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;
  }

  #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  ======*/

/* detailのコピペ開始 */
/*=============================================
=            PLAN            =
=============================================*/
#plan {
  padding: 5% 0 0;
}

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

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

/*----------  plan tab  ----------*/

#plan .planTab {
  padding-left: 0;
  list-style-type: none;
}

#plan .planTab > li {
  text-align: center;
  padding: 15px 0px;
  background-color: #f7f7f7;
  color: #10347e;
  margin-bottom: 10px;
}
#plan .planTab > li.active {
  color: #fff;
}

#plan .planTab > li.new.active {
  background-color: #10347e;
}

#plan .planTab > li.divert {
  color: #e64545;
}

#plan .planTab > li.divert.active {
  color: #fff;
  background-color: #e64545;
}

#plan .planTab > li .title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
}
#plan .planTab > li .title span {
  font-size: 1.4rem;
}
#plan .planTab > li .subTitle {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .planTab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  #plan .planTab > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 100%;
    margin-bottom: 0;
  }

  #plan .planTab > li .title {
    font-size: 2.4rem;
  }
  #plan .planTab > li .title span {
    font-size: 1.6rem;
  }
}

/* MEDIA QUERY EXTRA LARGE */
@media only screen and (min-width: 1200px) {
  #plan .planTab > li .subTitle {
    font-size: 1.6rem;
  }
}

/*----------  plan wrapper  ----------*/

#plan .planWrapper {
  background-color: #e6eaf2;
  padding: 30px 15px;
  display: none;
}
#plan .planWrapper.active {
  display: block;
}
#plan .planWrapper#plan_divert {
  background-color: #fff2f2;
}

#plan .planWrapper .toDetail {
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  color: #10347e;
}

#plan .planWrapper .toDetail a {
  width: 50px;
  height: 25px;
  color: #fff;
  background: #10347e;
  margin-left: 10px;
  border-radius: 3px;
  padding: 2px 6px;
}

#plan .planWrapper .planInner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#plan .planWrapper .planInner .innerNavWrapper {
  margin-bottom: 0px;
}
#plan .planWrapper .planInner .innerNavWrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#plan .planWrapper .planInner .innerNavWrapper ul a {
  text-decoration: none;
  background-color: #fff;
  color: #10347e;
  border: 1px solid #10347e;
  font-size: 1.2rem;
  padding: 5px 10px;
  display: block;
  margin: 3px;
}
#plan .planWrapper#plan_divert .planInner .innerNavWrapper ul a {
  color: #e64545;
  border-color: #e64545;
}

#plan .planWrapper .planInner .innerNavWrapper ul a i {
  margin-left: 5px;
}
#plan .planSection {
  padding-top: 30px;
  margin-bottom: 10px;
}

#plan .planSection:last-child {
  margin-bottom: 0px;
}
#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 #plan_divert .planSection h3 {
  color: #e64545;
}

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

  #plan .planWrapper .planInner .innerNavWrapper {
    margin-bottom: 30px;
  }

  #plan .planWrapper .planInner .innerNavWrapper ul a {
    font-size: 1.4rem;
    margin: 5px;
    padding: 5px 15px;
  }

  #plan .planSection h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #plan .planSection h3 .small {
    display: inline;
  }
}

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

#plan .planSection .chartWrapper {
  margin-bottom: 30px;
}

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

#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: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#plan #plan_divert .planSection .chartWrapper dl dt {
  background-color: #e64545;
}

#plan .planSection .chartWrapper dl dd {
  font-size: 1.6rem;
  padding: 10px 20px;
  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;
  justify-content: center;
}
#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 #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;
}
#plan .planSection .chartWrapper dl.cols-2 a {
  text-decoration: underline;
}

/* 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;
    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 220px;
    flex: 0 0 220px;
    max-width: 220px;
  }

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

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

  #plan .planSection .chartWrapper.options dl.cols-2 dd {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #plan .planSection .chartWrapper.options dl.cols-2 dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    max-width: 350px;
  }
}

/* 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;
  }

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

  #plan .planSection .chartWrapper.options dl.cols-2 dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
    max-width: 500px;
  }
}

/*----------  PAYMENT  ----------*/

#plan .planSection .paymentWrapper {
  background-color: #fff;
  padding: 30px 15px 0px;
  text-align: center;
}
#plan .planSection .paymentWrapper h6 {
  color: #10347e;
  font-size: 1.8rem;
  margin-bottom: 0;
}

#plan #plan_divert .planSection .paymentWrapper h6 {
  color: #e64545;
}
#plan .planSection .paymentWrapper p {
  font-size: 1.4rem;
  margin-bottom: 0;
}
/* #plan .planSection .paymentWrapper img {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
} */
.card-size img {
  width: 70%;
}
.saison img {
  width: 90%;
}
/*----------  flow  ----------*/
#plan .flowWrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

#plan .flowWrapper:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 75%;
  top: 50%;
  left: 70px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: #9ba9c6;
}

#plan .flowSubTitle {
  text-align: center;
  color: #e64545;
  font-size: 1.8rem;
  margin-top: 40px;
}
#plan .flowSubTitle span {
  font-size: 1.4rem;
}
#plan #plan_divert .flowWrapper:before {
  background-color: #ff9a9a;
}

#plan .flowWrapper .flowBox {
  color: #10347e;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
#plan .flowWrapper .flowBox img {
  margin-right: 20px;
  width: 100px;
}
#plan #plan_divert .flowWrapper .flowBox {
  color: #e64545;
}

#plan .flowWrapper .flowBox h6 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

#plan .flowWrapper .flowBox p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  .card-size_sp img {
    width: 45%;
  }
  .saison_sp img {
    width: 70%;
  }
  #plan .flowWrapper:before {
    position: absolute;
    content: "";
    width: 75%;
    height: 30px;
    top: 65px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    background-color: #9ba9c6;
  }

  #plan .flowWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #plan .flowWrapper .flowBox {
    display: block;
    margin-bottom: 0;
    text-align: center;
  }
  #plan .flowWrapper .flowBox img {
    margin-bottom: 20px;
    margin-right: 0;
    width: 130px;
  }
}

/*----------  AREA INNER  ----------*/
#plan .areaInner {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  text-align: center;
  padding: 30px 15px 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 20px rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 20px rgb(0 0 0 / 8%);
}

#plan .areaInner h5 {
  color: #10347e;
  display: inline-block;
  font-size: 2rem;
  padding: 10px 20px;
  border-bottom: 1px solid #10347e;
  margin-bottom: 30px;
}
#plan .areaInner h6 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  /* margin-top: 2em; */
}

#plan #plan_divert .areaInner h5 {
  color: #e64545;
  border-color: #e64545;
}

#plan .areaInner .btnRow .areaBtn {
  background-color: #10347e;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 8px 0px;
  width: 100%;
  max-width: 100%;
  height: 60px;
  font-weight: bold;
  font-size: 1.6rem;
}

#plan #plan_divert .areaInner .btnRow .areaBtn {
  background-color: #e64545;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .areaInner {
    padding: 35px 15px 60px;
  }
  #plan .areaInner .btnRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #plan .areaInner .btnRow .areaBtn {
    width: 390px;
    margin: 5px 10px;
    height: 90px;
    font-size: 2rem;
  }
}

/*----------  TENYOU  ----------*/

#plan #plan_divert .tenyouBox {
  padding: 25px 15px;
  text-align: left;
  background-color: #f7f7f7;
  margin-bottom: 10px;
}

#plan #plan_divert .tenyouBox h6 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0;
}
#plan #plan_divert .tenyouBox .tel {
  color: #e64545;
  font-weight: bold;
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: 5px;
}

#plan #plan_divert .tenyouBox p {
  font-size: 1.4rem;
  margin-bottom: 0px;
}
#plan #plan_divert .tenyouBox .link {
  font-size: 1.2rem;
  color: #e64545;
  text-decoration: underline;
}

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

/*----------  discount modal  ----------*/
.discountDsc {
  font-size: 1.4rem;
  margin: 0;
}
.discountDsc a {
  text-decoration: underline;
  font-weight: bold;
  color: #002f7b;
}

.modaal-wrapper .modaal-close {
  border: #10347e 2px solid;
  background: #fff;
}
.modaal-close:after,
.modaal-close:before,
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #10347e;
}
.modaal-close:after,
.modaal-close:before {
  top: 13px;
  left: 22px;
  width: 3px;
}

.modaal-content-container {
  padding: 30px 15px;
}

.modaal-wrapper .discountBox {
  padding: 0px 10px;
  margin-bottom: 50px;
}
.modaal-wrapper .discountBox:last-child {
  margin-bottom: 0px;
}

.modaal-wrapper .discountBox h3 {
  color: #10347e;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.modaal-wrapper .discountBox p {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.modaal-wrapper .discountBox ul {
  font-size: 1.2rem;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.modaal-wrapper .discountBox ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.modaal-wrapper .discountBox .priceBox {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 20px;
}
.modaal-wrapper .discountBox .priceBox dl {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 1.4rem;
}
.modaal-wrapper .discountBox .priceBox dl:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.modaal-wrapper .discountBox .priceBox dl dd {
  color: #e64545;
  font-weight: bold;
  margin-bottom: 0;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  .modaal-close {
    top: 15px;
    right: 40px;
  }
  .modaal-content-container {
    padding: 60px 50px;
  }

  .modaal-wrapper .discountBox h3 {
    font-size: 2.4rem;
  }
  .modaal-wrapper .discountBox p {
    font-size: 1.6rem;
  }
  .modaal-wrapper .discountBox ul {
    font-size: 1.4rem;
  }
  .modaal-wrapper .discountBox .priceBox {
    padding: 30px;
  }

  .modaal-wrapper .discountBox .priceBox dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
  }

  .modaal-wrapper .discountBox .priceBox dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
  }
}

/*=====  End of PLAN  ======*/

/* detailのコピペ終了 */

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

#feature .featureInner {
  padding: 40px 0 0;
}

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

.featureContainer {
  display: flex;
  padding: 0px 15px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}

.featureContainer .featureItem {
  position: relative;
  background-color: #f3f7f9;
  margin-bottom: 30px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 24%);
  padding: 0 10px 10px;
}

.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: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.featureContainer .featureItem .featureItemWrapper .textWrapper .headingArea {
  font-size: 2.3rem;
  font-weight: 900;
  color: #002f7b;
  margin-bottom: 20px;
  text-align: center;
}

.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;
}

.featureContainer .p {
  font-size: 1.4rem;
}

@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: 0px;
    margin-bottom: 0px;
    padding: 0px 95px;
  }

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

  .featureContainer .p {
    font-size: 1.4rem;
    color: #333;
  }
}

@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;
  /* padding:5% 0 0; */
  line-height: 1.5;
}

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

.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  ======*/
