@charset "utf-8";

/*
color
rgba(51, 51, 51, 1);
link
rgba(0, 115, 170, 1);

*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 175%;
  color: rgba(51, 51, 51, 1);
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  margin-bottom: 1rem;
}

#mainContentsBox img {
  max-width: 100%;
}

a {
  color: rgba(0, 115, 170, 1);
  transition: 0.3s;
  text-decoration: none;
}

a img {
  border: none;
}

a.noevent {
  pointer-events: none;
  cursor: default;
}

li {
  list-style: none;
}

p:not(:last-child) {
  margin-bottom: 1em;
}

p.nomargin {
  margin-bottom: 0;
}

input,
textarea,
select {
  padding: 1em;
  background: rgba(255, 255, 255, 1);
  border: none;
  border: 1px solid rgba(100, 100, 100, 0.5);
  border-radius: 3px;
  max-width: 100%;
}

:placeholder-shown {
  color: rgba(100, 100, 100, 0.5);
}

strong.redText {
  color: rgba(183, 0, 0, 1);
  font-weight: bold;
}

/* iPhone用inputリセット */
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

.submitBtn {
  display: block;
  text-align: center;
  padding: 2em 0;
  color: rgba(255, 255, 255, 1);
  font-weight: bold;
  letter-spacing: 0.2em;
  text-decoration: none;
  background-color: rgba(50, 50, 50, 1);
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
}

.submitBtn:hover {
  background: rgba(0, 0, 0, 1);
}

.pcHide {
  display: none;
}

.spHide {
  display: block;
}

#drawerBox {
  display: none;
}

.pcBlock {
  display: block;
}

.spBlock {
  display: inline;
}

.bigText {
  font-size: 2.8rem;
}

.largerText {
  font-size: 140%;
}

.largeText {
  font-size: 2rem;
}

.smallText {
  font-size: 1.2rem;
  line-height: 150%;
}

.smallerText {
  font-size: 86%;
}

.tinyText {
  font-size: 0.8rem;
}

.leftText {
  text-align: left;
}

.centerText {
  text-align: center;
}

.rightText {
  text-align: right;
}

.modaal-content-container {
  margin: 2em 0;
}

.maxImg {
  width: 100%;
  max-width: 1280px;
}

.fixImg {
  max-width: 100%;
}


/* ==[box]=========================================  */
.configuratorBox .svgNaviBox::after,
#mainContentsBox::after,
.clearBox::after {
  content: '';
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.initBox {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}

.flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex4>* {
  width: 22%;
}

.flex3>* {
  width: 30%;
}

.flex2>* {
  width: 46%;
}

.unitBoxL {
  margin-bottom: 6rem;
}

.unitBox {
  margin-bottom: 2rem;
}

.unitBoxS {
  margin-bottom: 2rem;
}

.unitBoxHarf {
  margin-bottom: 0.5em;
}

.leftBox {
  float: left;
  margin: 0 4rem 2rem 0;
}

.rightBox {
  float: right;
  margin: 0 0 4rem 2rem;
}

.goldenBox {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.goldenBox>* {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.svgBox a,
.svgBox {
  display: inline-block;
  width: 100%;
}

.svgBox svg {
  width: 100%;
  height: auto;
  vertical-align: top;
  display: block;
}

/* ==[title]=========================================  */
.widthSubTitleH2,
.widthSubTitle {
  position: relative;
}

.widthSubTitle {
  margin-bottom: 0.5em;
}

.widthSubTitleH2::before,
.widthSubTitle::before {
  content: attr(data-title)'';
  margin-bottom: 2.5em;
  display: block;
}

.widthSubTitleH2::after,
.widthSubTitle::after {
  content: '';
  width: 2rem;
  border-bottom: 3px solid rgba(51, 51, 51, 1);
  position: absolute;
  top: 3em;
  left: 0;
  display: inline-block;
}


/* #headerBox {} =============================*/
#headerBox {
  padding: 1rem 0 0.5rem 0;
  background: rgba(255, 255, 255, 1);
  width: 100%;
}

#headerBox .initBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

#headerBox .initBox h1 {
  width: 48%;
  font-size: 1.6rem;
  font-weight: normal;
}

#headerBox .initBox h1 span {
  display: block;
  font-weight: bold;
}

#headerBox .initBox h1 img {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

#headerBox .initBox .backBtnBox {
  flex: 1;
  text-align: right;
}

#headerBox .initBox .backBtnBox a {
  color: rgba(51, 51, 51, 1);
}

#headerBox .initBox .backBtnBox a:hover {
  color: rgba(0, 115, 170, 1);
}


/* #mainContentsBox {} =============================*/
/*
#mainContentsBox { scroll-snap-type: y mandatory; }
  #mainContentsBox dl { scroll-snap-align: start; }
*/
.tabMenuNavBox {
  background: rgba(255, 255, 255, 1);
  width: 100%;
}

.configuratorBox .image {
  text-align: center;
}

.configuratorBox .image .svgBox {
  max-width: 1280px;
}

.pagenaviBox {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

.pagenaviBox a {
  width: 24rem;
  height: 6rem;
  line-height: 6rem;
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 0 3rem;
  color: rgba(0, 0, 0, 1);
  position: relative;
}

.pagenaviBox a:hover {
  color: rgba(7, 57, 126, 1);
  border-color: rgba(7, 57, 126, 1);
}

.pagenaviBox a::after {
  content: '';
  position: absolute;
  top: 2rem;
  border-right: 2px solid rgba(255, 255, 255, 1);
  border-bottom: 2px solid rgba(255, 255, 255, 1);
  display: block;
  width: 2rem;
  height: 2rem;
  transition: 0.3s;
}

.pagenaviBox a.back {
  text-align: right;
  border-left-width: 6rem;
  margin-right: 2rem;
}

.pagenaviBox a.back::after {
  transform: rotate(135deg);
  left: -4rem;
}

.pagenaviBox a.back:hover::after {
  left: -5rem;
}

.pagenaviBox a.next {
  text-align: left;
  border-right-width: 6rem;
  margin-left: 2rem;
}

.pagenaviBox a.next::after {
  transform: rotate(-45deg);
  right: -4rem;
}

.pagenaviBox a.next:hover::after {
  right: -5rem;
}

/* #footerBox {} =============================*/
#footerSnsUl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#footerSnsUl li {
  display: inline-block;
  margin: 0 1em;
  text-align: center;
}

#footerSnsUl li a {
  color: rgba(51, 51, 51, 1);
  font-size: 4rem;
}

#footerSnsUl li a:hover {
  color: rgba(0, 115, 170, 1);
}

.copyrightBox {
  text-align: center;
  margin: 6rem 0 3rem 0;
}

/* ==[btn]=========================================  */
.telBtn {
  cursor: default;
  pointer-events: none;
}

.myconfiguratorbtnBox {
  margin: 4rem 5vw;
}

.myconfiguratorbtnBox a {
  display: block;
  padding: 2rem;
  padding-bottom: 8rem;
  background: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  line-height: 100%;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.myconfiguratorbtnBox a span {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.myconfiguratorbtnBox a::before {
  content: 'configurator';
  color: rgba(0, 0, 0, 1);
  background: rgba(255, 255, 255, 1);
  padding: 0.5rem 2rem;
  font-size: 86%;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.myconfiguratorbtnBox a::after {
  content: '';
  pointer-events: none;
  width: 1px;
  height: calc(140% - 4rem);
  border-left: thin solid rgba(255, 255, 255, 1);
  transform: rotate(45deg);
  transform-origin: 0 0 0;
  position: absolute;
  top: 1.5rem;
  right: 9rem;
}

.myconfiguratorbtnBox a:hover {
  background: rgba(51, 51, 51, 0.75);
}

.contactbtnBox {
  margin: 6rem 0;
  text-align: center;
}

.contactbtnBox a {
  width: 80%;
  border: thin solid rgba(51, 51, 51, 1);
  background: rgba(218, 223, 225, 1);
  color: rgba(51, 51, 51, 1);
  line-height: 100%;
  border-radius: 1.5em;
  padding: 1em;
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.contactbtnBox a:hover {
  background: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1);
}

/* ==[table]=========================================  */
.leftThTable,
.topThTable {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid rgba(0, 115, 170, 0.5);
  border-left: 1px solid rgba(0, 115, 170, 0.5);
  margin-bottom: 0.5em;
}

.topThTable th,
.topThTable td,
.leftThTable th,
.leftThTable td {
  font-weight: normal;
  border-right: 1px solid rgba(0, 115, 170, 0.5);
  border-bottom: 1px solid rgba(0, 115, 170, 0.5);
  padding: 1em;
}

.topThTable th,
.leftThTable th {
  background: rgba(0, 115, 170, 0.1);
}

.topThTable td {
  vertical-align: top;
}

.leftThTable th {
  text-align: left;
}

.cautionUl li {
  text-indent: -1em;
  margin: 0 0 0.5em 1em;
}

.tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip .description {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  padding: 1rem;
  font-size: 1.2rem;
  line-height: 150%;
  color: rgba(255, 255, 255, 1);
  border-radius: 5px;
  background: rgba(0, 0, 0, 1);
  z-index: 300;
  text-align: left;
  width: 50vw;
}

.tooltip .description::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 32px;
  border: 15px solid transparent;
  border-top: 15px solid rgba(0, 0, 0, 1);
  margin-left: -15px;
  transform: rotateZ(180deg);
  z-index: 100;
  text-align: left;
}

/*
    .tooltip:hover .description {
      display: block;
    }
    */

/* [spp] ============================================ */
@media only screen and (max-width: 768px) {
  .initBox {
    width: 90vw;
  }

  .pcHide {
    display: block;
  }

  .spHide {
    display: none;
  }

  #drawerBox {
    display: block;
  }

  .leftBox,
  .rightBox {
    float: none !important;
    width: 100% !important;
  }

  .leftBox {
    margin-bottom: 1rem;
  }

  .rightBox {
    margin-top: 1rem;
  }

  .flex3>*,
  .flex2>* {
    width: 100%;
  }

  .telBtn {
    cursor: pointer;
    pointer-events: auto;
  }

  .contactbtnBox a {
    font-size: 1.6rem;
  }

  .spTable tr,
  .spTable th,
  .spTable td {
    float: left;
    width: 100% !important;
    box-sizing: border-box;
  }

  .spTable thead {
    display: none;
  }

  .spTable td {
    padding: 0.25em 1em;
  }

  .spTable td:not(:last-child) {
    border-bottom-style: dotted;
  }

  .spTable tbody td::before {
    content: attr(data-name)' ';
  }

  .backBtn,
  .submitBtn,
  /*  input, textarea, select, */
  textarea,
  select,
  .spTable {
    width: 100%;
  }

  .notMaxwidth {
    width: auto;
  }

  .backBtn,
  .submitBtn {
    margin-bottom: 1rem;
  }

  .mwform-tel-field input {
    width: auto !important;
  }

  .fixHeader {
    padding-left: 10vw;
  }

  .tabMenuNavBox .tabMenuNavUl {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}


/* [1280over] ============================================ */
@media only screen and (min-width: 1280px) {
  .myconfiguratorbtnBox {
    margin: 8rem calc(50vw - 640px);
  }
}

.mw_wp_form_input input[type="text"],
.mw_wp_form_input input[type="email"] {
  font-size: 16px !important;
}