@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap");
/*english*/
/*.en{ font-family: 'Noto Sans JP', sans-serif; font-weight:700; letter-spacing:-.03em; line-height:1;}*/
/*marker*/
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #ffff11));
  background: linear-gradient(transparent 65%, #ffff11 65%);
  padding: 0 0 4px;
}

/*※注釈*/
.ast {
  padding-left: 1.2em;
  text-indent: -1.2em;
  font-size: 90%;
  margin: 10px 0;
  line-height: 1.5;
}

/*リスト*/
ul.disc,
ul.decimal,
ul.square {
  line-height: 1.3;
  margin: 10px 0;
}
ul.disc > li,
ul.decimal > li,
ul.square > li {
  padding: 0 0 0 1em;
  margin: 0 0 6px;
  position: relative;
}
ul.disc > li::before,
ul.decimal > li::before,
ul.square > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}

/*黒丸*/
ul.disc > li::before {
  width: 9px;
  height: 9px;
  background: #00bbf3;
  border-radius: 50px;
  top: 5px;
}

/*数字*/
ol.decimal {
  margin: 10px 0 10px 1.5em;
}

ol.decimal > li {
  display: list-item;
  list-style: decimal;
  padding: 3px 0;
}

/*四角*/
ul.square > li::before {
  width: 6px;
  height: 6px;
  background: #00bbf3;
  top: 9px;
}

/*column*/
.clm2,
.clm3,
.clm4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .clm2,
.clm3,
.clm4 {
    display: block;
  }
}

.clm2 > * {
  width: 48%;
  margin: 0 1% 3%;
}

.clm3 > * {
  width: 31%;
  margin: 0 1.166% 3.5%;
}

.clm4 > * {
  width: 24.4%;
  margin: 0 0.3% 0.6%;
}

@media (max-width: 1024px) {
  .clm2 > *,
.clm3 > *,
.clm4 > * {
    width: auto !important;
    margin: 0 0 5%;
  }
}
/*flex*/
@media (min-width: 1025px) {
  .flexBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .flexBox > * {
    width: auto !important;
  }
}

/*TITLE*/
.md-title {
  margin: 0 0 2.5%;
  font-size: 260%;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 739px) {
  .md-title {
    font-size: 5.3vw;
  }
}

.md-lead {
  margin: 0 0 3%;
  font-size: 200%;
  font-weight: bold;
}
@media (max-width: 739px) {
  .md-lead {
    font-size: 4vw;
  }
}

.md-copy {
  margin: 0 0 3%;
  font-size: 7vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
  font-weight: 900;
  line-height: 1.05;
}

/*SECTION*/
section {
  position: relative;
}
section > .inner {
  width: 80%;
  margin: 0 auto;
  padding: 4% 0 7% 4.5%;
}
@media (max-width: 739px) {
  section > .inner {
    padding: 10% 0;
  }
}

/*BUTTON*/
.btn {
  width: 100%;
  font-weight: bold;
}
.btn a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(black), to(#191919));
  background: linear-gradient(90deg, black 0%, #191919 100%);
  color: #fff;
  text-decoration: none;
  padding: 7% 6%;
  font-size: 140%;
  position: relative;
}
.btn a::after {
  content: "";
  display: block;
  background: #fff;
  width: 50px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.btn a span {
  font-size: 80%;
  font-weight: bold;
}
.btn a span::before {
  content: attr(data-text);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: 240%;
  margin: 0 0 15px;
  letter-spacing: 0.04em;
}
.btn a:hover::after {
  width: 20%;
}
@media (max-width: 739px) {
  .btn a {
    padding: 10% 8%;
    font-size: 110%;
  }
  .btn a span::before {
    font-size: 6.5vw;
    margin: 0 0 7px;
  }
}

.btn-contact a {
  background: -webkit-gradient(linear, left top, right top, color-stop(3%, #03b8ee), color-stop(30%, #38dff9), color-stop(55%, #03b8ee), to(#0c24c3));
  background: linear-gradient(90deg, #03b8ee 3%, #38dff9 30%, #03b8ee 55%, #0c24c3 100%);
  background-size: 120%;
  background-position: right;
}
.btn-contact a:hover {
  background-size: 100%;
}

/*ページタイトル*/
.pageTitle {
  width: 80%;
  margin: 13% auto 2%;
  line-height: 1;
}
.pageTitle span.ttl {
  display: block;
  font-size: 130%;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.pageTitle span.ttl::before {
  content: attr(data-text);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: 6.5vw;
  margin: 0 0 13px;
}
@media (max-width: 739px) {
  .pageTitle {
    margin: 25% auto 2%;
  }
  .pageTitle span.ttl {
    font-size: 110%;
  }
  .pageTitle span.ttl::before {
    margin: 0 0 10px;
    font-size: 9vw;
  }
}

/*container*/
#container {
  padding: 0 0 7%;
}

/*topcontrol*/
#topcontrol {
  z-index: 10;
}
#topcontrol img {
  width: 50px;
  height: 50px;
}

/*TABLE*/
table.info {
  margin: 3.5% 0;
  font-size: 110%;
  line-height: 1.7;
}
table.info tr {
  vertical-align: top;
}
table.info tr th {
  width: 23%;
  padding: 12px 20px 12px 0;
  font-weight: bold;
}
table.info tr td {
  padding: 12px 0;
}
table.info tr td a:not([href^="tel:"]) {
  text-decoration: underline;
}
table.info tr td a:not([href^="tel:"]):hover {
  text-decoration: none;
}
@media (max-width: 739px) {
  table.info tr th,
table.info tr td {
    display: block;
    width: 100%;
  }
  table.info tr th {
    padding: 8px 0 2px;
  }
  table.info tr td {
    padding: 2px 0 8px;
  }
}

/*HEADER*/
#header {
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 500;
}
#header .hd-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#header .hd-inner .hd-logo {
  width: 25%;
  max-width: 175px;
  margin: 0 2.5% -1%;
}
@media (max-width: 1024px) {
  #header .hd-inner .hd-logo {
    width: 35%;
  }
}
#header .hd-inner .hd-logo a {
  display: block;
}
#header .hd-inner .hd-logo a img {
  width: 100%;
}
#header .hd-inner .hd-navBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
}
#header .hd-inner .hd-navBox .btn-contact {
  width: 200px;
  height: 80px;
  text-align: center;
}
#header .hd-inner .hd-navBox .btn-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
  font-size: 140%;
  letter-spacing: 0.05em;
}
#header .hd-inner .hd-navBox .btn-contact a::after {
  display: none;
}
@media (max-width: 739px) {
  #header .hd-inner .hd-logo {
    margin: 0 5%;
  }
  #header .hd-inner .hd-navBox {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #header .hd-inner .hd-navBox > .btn-contact {
    display: none;
  }
}

/*MENU*/
#toggleBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1f20;
  color: #fff;
  z-index: 700;
  overflow: scroll;
  /*MENU OPEN*/
}
#toggleBox .inBox {
  max-width: 1100px;
  width: 80%;
  height: 100%;
  margin: 0 auto;
  padding: 5% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#toggleBox .inBox #gNav {
  width: 100%;
  opacity: 0;
}
#toggleBox .inBox #gNav .nav {
  display: block;
}
#toggleBox .inBox #gNav .nav > li {
  margin-bottom: 3.5%;
  opacity: 0;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}
#toggleBox .inBox #gNav .nav > li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#toggleBox .inBox #gNav .nav > li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#toggleBox .inBox #gNav .nav > li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#toggleBox .inBox #gNav .nav > li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
#toggleBox .inBox #gNav .nav > li a {
  font-weight: bold;
  color: #fff;
}
#toggleBox .inBox #gNav .nav > li a span {
  font-size: 105%;
}
#toggleBox .inBox #gNav .nav > li a span::before {
  content: attr(data-text);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: 330%;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
#toggleBox .inBox #gNav .nav > li.btn-contact {
  max-width: 320px;
  width: 80%;
  margin-top: 10%;
  height: auto;
}
#toggleBox .inBox #gNav .nav > li.btn-contact a {
  font-size: 170%;
  padding: 12% 0;
}
#toggleBox .inBox .txtBox {
  width: 100%;
  padding-top: 10%;
}
#toggleBox .inBox .txtBox .logo {
  max-width: 185px;
  margin: 0 0 5%;
}
#toggleBox .inBox .txtBox .logo img {
  width: 100%;
}
#toggleBox .inBox .txtBox .md-copy {
  font-size: 600%;
  line-height: 1;
}
#toggleBox.open #gNav {
  visibility: visible;
  opacity: 1;
}
#toggleBox.open #gNav .nav > li {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}
@media (max-width: 739px) {
  #toggleBox .inBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #toggleBox .txtBox {
    display: none;
  }
}

/*メニューボタン*/
#MenuBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  /*position:absolute;
  top:0;
  right:0;*/
  width: 80px;
  height: 80px;
  z-index: 800;
  cursor: pointer;
}
#MenuBtn .trigger span, #MenuBtn .trigger {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#MenuBtn.active .trigger span:nth-child(2)::after, #MenuBtn .trigger span:nth-of-type(2)::after, #MenuBtn .trigger span {
  background-color: #fff;
}
#MenuBtn .trigger {
  position: relative;
  width: 35%;
  height: 25%;
}
#MenuBtn .trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
}
#MenuBtn .trigger span:nth-of-type(1) {
  top: 0;
}
#MenuBtn .trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
#MenuBtn .trigger span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#MenuBtn .trigger span:nth-of-type(3) {
  bottom: 0;
}
#MenuBtn.active {
  position: fixed;
  top: 0;
  right: 0;
  background-color: transparent;
}
#MenuBtn.active .trigger span:nth-child(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
#MenuBtn.active .trigger span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#MenuBtn.active .trigger span:nth-child(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 1;
}
#MenuBtn.active .trigger span:nth-child(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}
@media (max-width: 739px) {
  #MenuBtn {
    width: 60px;
    height: 60px;
  }
}

/*HEADER固定*/
#header:not(.fixed) {
  top: 0 !important;
}

#header.fixed {
  width: auto;
  position: fixed;
  right: 0;
  top: 0;
}
#header.fixed .hd-logo {
  display: none;
}
/*=========================================
	 タブレット
=========================================*/
#footer {
  padding: 2.8% 6%;
}
@media (min-width: 1025px) {
  #footer .ft-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
#footer .ft-inner .ft-logo {
  max-width: 165px;
}
#footer .ft-inner .ft-logo img {
  width: 100%;
}
#footer .ft-copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 900;
}
@media (min-width: 1025px) {
  #footer .ft-copyright {
    position: fixed;
    left: 50px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    /*transform:rotate(90deg);
    transform-origin:0 0;*/
    z-index: 500;
  }
}
@media (max-width: 1024px) {
  #footer {
    padding: 5% 0;
    text-align: center;
  }
  #footer .ft-inner .ft-logo {
    margin: 0 auto 1.5%;
  }
  #footer .ft-copyright {
    font-size: 80%;
    padding: 5% 0 0;
  }
}
@media (max-width: 1024px) {
  #footer .ft-inner .ft-logo {
    max-width: 120px;
    margin: 0 auto 2.5%;
  }
  #footer .ft-copyright {
    font-size: 80%;
    padding: 5% 0 0;
  }
}

/*タブレット*/
/*スマートフォン*/
/*# sourceMappingURL=base.css.map */