@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background-color: #fff;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

.l-inner {
  width: 1140px;
  margin: 0 auto;
}
@media only screen and (max-width: 1400px) {
  .l-inner {
    width: 1000px;
  }
}
@media only screen and (max-width: 1280px) {
  .l-inner {
    width: 100%;
    padding: 0 100px;
  }
}
@media only screen and (max-width: 768px) {
  .l-inner {
    max-width: 600px;
    padding: 0 10px;
  }
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-upper {
  text-transform: uppercase;
}

.t-fontMt {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.cl_blue {
  color: #3C85F6;
}

.cl_orange {
  color: #E83526;
}

@media only screen and (min-width: 1025px) {
  .tb {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/*===============================
         bl-lowSec_ttl
===============================*/
.bl-lowSec_ttl {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.bl-lowSec_ttl::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -16px;
  left: 50%;
  height: 2px;
  width: 72px;
  transform: translateX(-50%);
}
.bl-lowSec_ttl._blue::after {
  background-color: #3C85F6;
}
.bl-lowSec_ttl._orange::after {
  background-color: #E83526;
}
.bl-lowSec_ttl._left {
  text-align: left;
  line-height: 1.1;
  font-size: 36px;
}
.bl-lowSec_ttl._left::after {
  left: 0;
  transform: none;
  bottom: -24px;
}

@media only screen and (max-width: 1024px) {
  .bl-lowSec_ttl {
    font-size: 42px;
  }
  .bl-lowSec_ttl._left {
    font-size: 38px;
    text-align: center;
  }
  .bl-lowSec_ttl._left br {
    display: none;
  }
  .bl-lowSec_ttl._left::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
  .bl-lowSec_ttl {
    font-size: 30px;
  }
  .bl-lowSec_ttl._left {
    font-size: 26px;
    text-align: center;
  }
  .bl-lowSec_ttl._left br {
    display: block;
  }
}
/*===============================
         md-head
===============================*/
.md-headWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-head_logoWrap {
  width: 276px;
  margin-right: 120px;
}

.md-head_navWrap {
  max-width: 816px;
  flex: 1;
  display: flex;
}

.md-head_navList {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-head_navItem {
  font-size: 16px;
  letter-spacing: 0;
}
@media only screen and (min-width: 1025px) {
  .md-head_navItem {
    position: relative;
  }
  .md-head_navItem::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    bottom: -4px;
    left: 0;
    transform: scale(0);
    transition: 0.2s;
  }
  .md-head_navItem:hover::after {
    transform: scale(1);
  }
}

.md-head_btn {
  margin-left: 58px;
  width: 182px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 24px;
}
@media only screen and (min-width: 1025px) {
  .md-head_btn {
    transition: 0.2s;
  }
  .md-head_btn:hover {
    background-color: #424242;
    color: #fff;
    border: none;
  }
}

@media only screen and (min-width: 1025px) {
  .md-head_menuBtn {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .md-headWrap {
    display: block;
  }
  .md-head_logoWrap {
    z-index: 2;
  }
  .md-head_logoWrap {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
  }
  .md-head_navWrap {
    position: fixed;
    z-index: 1;
    max-width: none;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #fff;
    display: block;
    padding-top: 120px;
  }
  .md-head_navList {
    flex-direction: column;
    justify-content: center;
  }
  .md-head_navItem + .md-head_navItem {
    margin-top: 20px;
  }
  .md-head_btn {
    margin: 50px auto 0 auto;
  }
  .md-head_menuBtn {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
    width: 40px;
  }
  .md-head_menuBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .md-head_menuBtn span + span {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .md-head_logoWrap {
    width: 160px;
    left: 20px;
  }
  .md-head_menuBtn {
    right: 20px;
  }
  .md-head_menuBtn span + span {
    margin-top: 8px;
  }
  .md-head_navItem {
    font-size: 18px;
  }
}
/*===============================
         md-topSec
===============================*/
.md-topSec_mvWrap {
  margin: 0 auto;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.md-topSec_mvWrap video {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.md-topSec_btnWrap {
  position: absolute;
  bottom: 12.9%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.md-topSec_btn {
  width: 350px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3em;
  border-radius: 40px;
}
.md-topSec_btn span {
  padding-left: 0.3em;
}
.md-topSec_btn._blue {
  background-color: #DFEAFC;
  color: #3C85F6;
}
@media only screen and (min-width: 1025px) {
  .md-topSec_btn._blue {
    transition: 0.2s;
  }
  .md-topSec_btn._blue:hover {
    background-color: #3C85F6;
    color: #fff;
  }
}
.md-topSec_btn._red {
  background-color: #FFEDED;
  color: #E83526;
}
@media only screen and (min-width: 1025px) {
  .md-topSec_btn._red {
    transition: 0.2s;
  }
  .md-topSec_btn._red:hover {
    background-color: #E83526;
    color: #fff;
  }
}
.md-topSec_btn + .md-topSec_btn {
  margin-left: 60px;
}

@media only screen and (max-width: 1024px) {
  .md-topSec_btnWrap {
    flex-direction: column;
    bottom: 8%;
  }
  .md-topSec_btn + .md-topSec_btn {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .md-topSec_btn {
    width: 200px;
    height: 60px;
    font-size: 18px;
  }
}
/*===============================
         md-foot
===============================*/
.md-foot_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-foot_logoWrap {
  width: 28.5%;
  max-width: 410px;
}
.md-foot_logoWrap img {
  width: 100%;
}

.md-foot_navWrap {
  max-width: 754px;
  flex: 1;
  margin-left: 50px;
}

.md-foot_navList {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-foot_navItem {
  font-size: 16px;
  letter-spacing: 0;
  color: #000;
}
@media only screen and (min-width: 1025px) {
  .md-foot_navItem {
    position: relative;
  }
  .md-foot_navItem::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    left: 0;
    bottom: -4px;
    transform: scale(0);
    transition: 0.2s;
  }
  .md-foot_navItem:hover::after {
    transform: scale(1);
  }
}

.md-foot_sTxt {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  font-family: "Montserrat", sans-serif;
  margin-top: 54px;
}

@media only screen and (max-width: 1024px) {
  .md-foot_logoWrap {
    width: 380px;
    margin-bottom: 50px;
  }
  .md-foot_wrap {
    flex-direction: column;
  }
  .md-foot_navWrap {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
  }
  .md-foot_sTxt {
    text-align: center;
    padding-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .md-foot_navList {
    flex-direction: column;
  }
  .md-foot_navList li + li {
    margin-top: 10px;
  }
  .md-foot_logoWrap {
    max-width: 300px;
    width: 100%;
  }
  .md-foot_navItem {
    font-size: 18px;
  }
}
/*===============================
         md-abTtl
===============================*/
.md-abtTtl_wrap {
  position: relative;
  padding: 82px 0 94px 0;
}

.md-abtTtl {
  font-size: 54px;
  font-weight: 900;
}

.md-abtTtl_linkWrap {
  position: absolute;
  bottom: 10px;
  right: 96px;
  display: flex;
}

.md-abtTtl_link {
  font-size: 16px;
  letter-spacing: 0;
}
.md-abtTtl_link + .md-abtTtl_link {
  position: relative;
  margin-left: 92px;
}
.md-abtTtl_link + .md-abtTtl_link::before {
  position: absolute;
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  background-color: #808080;
  top: 50%;
  left: -14px;
  transform: translateX(-100%);
}
.md-abtTtl_link._gray {
  color: #808080;
}

@media only screen and (min-width: 1025px) {
  a.md-abtTtl_link {
    transition: 0.2s;
  }
  a.md-abtTtl_link:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1024px) {
  .md-abtTtl {
    font-size: 30px;
  }
  .md-abtTtl_linkWrap {
    right: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .md-abtTtl_linkWrap {
    right: 0;
  }
}
/*===============================
         md-abtOf
===============================*/
.md-abtOf_wrap {
  max-width: 670px;
  margin: 0 auto;
}

.md-abtOf_tbl {
  display: flex;
  align-items: center;
  padding: 26px 0;
  font-size: 16px;
  border-top: 1px solid #808080;
}
.md-abtOf_tbl dt {
  font-weight: 700;
  min-width: 192px;
}
.md-abtOf_tbl dd {
  flex: 1;
}
.md-abtOf_tbl:last-child {
  border-bottom: 1px solid #808080;
}

@media only screen and (max-width: 768px) {
  .md-abtOf_wrap {
    max-width: 600px;
  }
  .md-abtOf_tbl {
    flex-direction: column;
    align-items: start;
    padding: 18px 0;
  }
  .md-abtOf_tbl dt {
    margin-bottom: 10px;
  }
}
/*===============================
         md-abtMap_wrap
===============================*/
.md-abtMap_wrap {
  width: 100%;
  height: 100%;
}
.md-abtMap_wrap iframe {
  width: 100%;
  height: 100%;
}

/*===============================
         md-coatTop
===============================*/
.md-coatTop_bg {
  display: block;
  width: 100%;
  height: 100%;
}
.md-coatTop_bg img, .md-coatTop_bg source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-coatTop_txtWrap {
  position: absolute;
  top: 265px;
  right: 110px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}

.md-coatTop_lTxt {
  font-size: 84px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 0.1em;
}

.md-coatTop_sTxt {
  font-family: "Montserrat", sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 55px;
  color: #fff;
}

.md-coatTop_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 382px;
  height: 58px;
  border-radius: 40px;
  font-size: 26px;
  background-color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin: 0 auto;
}
@media only screen and (min-width: 1025px) {
  .md-coatTop_btn {
    transition: 0.2s;
  }
  .md-coatTop_btn:hover {
    background-color: #c1c1c1;
    color: #fff;
  }
}

@media only screen and (max-width: 1280px) {
  .md-coatTop_txtWrap {
    top: 24vh;
  }
}
@media only screen and (max-width: 1024px) {
  .md-coatTop_txtWrap {
    top: 19vh;
    right: 50%;
    transform: translateX(50%);
  }
  .md-coatTop_lTxt {
    font-size: 70px;
  }
  .md-coatTop_sTxt {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .md-coatTop_txtWrap {
    top: 30vh;
  }
  .md-coatTop_lTxt {
    font-size: 10vw;
    text-shadow: 1px 2px 3px #808080;
  }
  .md-coatTop_sTxt {
    font-size: 22px;
    text-shadow: 1px 2px 3px #808080;
  }
  .md-coatTop_btn {
    width: 200px;
    font-size: 18px;
  }
  .md-coatTop_bg source, .md-coatTop_bg img {
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
}
/*===============================
         md-coatCont
===============================*/
.md-coatCont_box {
  margin-top: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.md-coatCont_box + .md-coatCont_box {
  margin-top: 174px;
}
.md-coatCont_box._reverse {
  flex-direction: row-reverse;
}

.md-coatCont_txtWrap {
  width: 50%;
}

.md-coatCont_picWrap {
  width: 43.9%;
  height: 340px;
}
.md-coatCont_picWrap picture {
  width: 100%;
  height: 100%;
}
.md-coatCont_picWrap img, .md-coatCont_picWrap source, .md-coatCont_picWrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-coatCont_lTxt {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 32px;
}

.md-coatCont_sTxt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

@media only screen and (max-width: 1024px) {
  .md-coatCont_box {
    flex-direction: column;
  }
  .md-coatCont_box._reverse {
    flex-direction: column;
  }
  .md-coatCont_txtWrap {
    width: 100%;
  }
  .md-coatCont_picWrap {
    width: 100%;
    margin-top: 40px;
  }
  .md-coatCont_lTxt {
    font-size: 36px;
  }
  .md-coatCont_sTxt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .md-coatCont_lTxt {
    font-size: 24px;
  }
  .md-coatCont_sTxt {
    font-size: 16px;
  }
  .md-coatCont_box + .md-coatCont_box {
    margin-top: 80px;
  }
  .md-coatCont_picWrap {
    height: 220px;
  }
}
/*===============================
         md-coatEx
===============================*/
.md-coatEx_slideWrap {
  margin-top: 54px;
}

.md-coatEx_slideItem {
  padding: 24px 70px 84px;
  border: 3px solid #000000;
  border-radius: 10px;
}

.md-coatEx_lTxt {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}

.md-coatEx_picFlex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-coatEx_arrow {
  width: 34px;
  margin: 0 20px;
}

.md-coatEx_TxtWrap {
  position: absolute;
  left: 0;
  top: 24px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 28px;
  padding: 5px 20px 5px 25px;
  color: #fff;
}
.md-coatEx_TxtWrap._before {
  background-color: #525252;
}
.md-coatEx_TxtWrap._after {
  background-color: #3C85F6;
}

.md-coatEx_picWrap {
  position: relative;
  flex: 1;
  max-width: 348px;
}
.md-coatEx_picWrap picture {
  display: block;
  width: 100%;
  height: 420px;
}
.md-coatEx_picWrap picture img, .md-coatEx_picWrap picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-coatEx_picWrap._2 picture {
  width: 100%;
  height: 210px;
}

.md-coatEx_slideNext.swiper-button-next::after,
.md-coatEx_slidePrev.swiper-button-prev::after {
  display: none;
}

.swiper-button-next.md-coatEx_slideNext,
.swiper-button-prev.md-coatEx_slidePrev {
  width: 80px;
  height: 80px;
}
@media only screen and (min-width: 1025px) {
  .swiper-button-next.md-coatEx_slideNext,
  .swiper-button-prev.md-coatEx_slidePrev {
    transition: 0.2s;
  }
  .swiper-button-next.md-coatEx_slideNext:hover,
  .swiper-button-prev.md-coatEx_slidePrev:hover {
    opacity: 0.7;
  }
}

.swiper-button-next.md-coatEx_slideNext {
  right: calc(var(--slide-width) / 2.9 - 40px);
  transform: rotate(180deg);
}

.swiper-button-prev.md-coatEx_slidePrev {
  left: calc(var(--slide-width) / 2.9 - 40px);
}

@media only screen and (max-width: 1280px) {
  .md-coatEx_slideItem {
    padding: 24px 60px 40px;
  }
  .swiper-button-next.md-coatEx_slideNext {
    right: calc(var(--slide-width) / 4.1 - 40px);
  }
  .swiper-button-prev.md-coatEx_slidePrev {
    left: calc(var(--slide-width) / 4.1 - 40px);
  }
}
@media only screen and (max-width: 1024px) {
  .swiper-button-next.md-coatEx_slideNext {
    right: calc(var(--slide-width) / 4 - 40px);
  }
  .swiper-button-prev.md-coatEx_slidePrev {
    left: calc(var(--slide-width) / 4 - 40px);
  }
  .md-coatEx_lTxt {
    font-size: 34px;
  }
  .md-coatEx_TxtWrap {
    top: 10px;
    font-size: 16px;
    line-height: 20px;
    padding: 5px 10px 5px 15px;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .md-coatEx_lTxt {
    font-size: 24px;
  }
  .md-coatEx_slideItem {
    padding: 24px 20px 20px;
  }
  .md-coatEx_picFlex {
    display: flex;
    flex-direction: column;
  }
  .md-coatEx_picWrap._2 {
    display: flex;
  }
  .md-coatEx_arrow {
    width: 20px;
    margin: 6px 0;
    transform: rotate(90deg);
  }
  .md-coatEx_picWrap {
    width: 100%;
    height: 240px;
    flex: auto;
  }
  .md-coatEx_picWrap picture {
    height: 100%;
    width: 100%;
  }
  .md-coatEx_picWrap picture img, .md-coatEx_picWrap picture source {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .md-coatEx_picWrap._2 picture {
    width: 50%;
    height: 100%;
  }
  .swiper-button-next.md-coatEx_slideNext,
  .swiper-button-prev.md-coatEx_slidePrev {
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 0;
  }
  .swiper-button-next.md-coatEx_slideNext {
    right: auto;
    left: 50%;
    transform: translate(130%) rotate(180deg);
  }
  .swiper-button-prev.md-coatEx_slidePrev {
    left: auto;
    right: 50%;
    transform: translate(-130%);
  }
  .js-coatEx_slider.swiper {
    padding-bottom: 70px;
  }
}
/*===============================
         md-contact
===============================*/
.md-contact_sTxt {
  margin-top: 44px;
  text-align: right;
  font-size: 15px;
  color: #9A9A9A;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.6;
}

.md-contactInner {
  max-width: 826px;
  margin: 0 auto;
}

.md-contact_formWrap {
  width: 100%;
  margin-top: 10px;
  background-color: #EFEFEF;
  padding: 66px 54px 66px 60px;
}

.md-contact_formTbl {
  display: flex;
  font-size: 14px;
  line-height: 2;
}
.md-contact_formTbl dt {
  min-width: 176px;
  font-weight: 700;
}
.md-contact_formTbl dt span {
  margin-left: 6px;
}
.md-contact_formTbl dd {
  flex: 1;
  font-weight: 500;
}
.md-contact_formTbl dd label + label {
  margin-left: 30px;
}
.md-contact_formTbl dd input[type=text],
.md-contact_formTbl dd input[type=email],
.md-contact_formTbl dd input[type=tel],
.md-contact_formTbl dd textarea {
  background-color: transparent;
  border-bottom: 1px solid #A5A5A5;
  width: 100%;
  line-height: 2;
  padding-left: 10px;
  padding-right: 10px;
}
.md-contact_formTbl dd textarea {
  min-height: 110px;
}
.md-contact_formTbl dd input[type=radio] {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 10px 3px 0;
}
.md-contact_formTbl dd input[type=radio]::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  opacity: 0;
}
.md-contact_formTbl dd input[type=radio]:checked::before {
  opacity: 1;
}
.md-contact_formTbl dd input[type=radio]._blue::before {
  background: #3C85F6;
}
.md-contact_formTbl dd input[type=radio]._orange::before {
  background: #E83526;
}
.md-contact_formTbl + .md-contact_formTbl {
  margin-top: 50px;
}

input[type=checkbox] {
  position: relative;
  cursor: pointer;
  width: 14px;
  height: 14px;
  border: 2px solid #707070;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  margin-top: 0;
}

input[type=checkbox]:checked::before {
  position: absolute;
  top: 0;
  left: 3px;
  transform: rotate(50deg);
  width: 3px;
  height: 7px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}

.md-contact_formPolicy {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 34px 50px;
  height: 266px;
  overflow-y: scroll;
  border: 1px solid #C7C7C7;
  background-color: #fff;
}

.md-contact_formPolicy_lTxt {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 26px;
}

.md-contact_formPolicy_sTxt {
  font-size: 12px;
  line-height: 20px;
}

.md-contact_formCheck {
  text-align: center;
}
.md-contact_formCheck._confirm {
  margin-top: 80px;
}

.md-contact_formSubmit {
  margin: 36px auto 0 auto;
  width: 168px;
  height: 38px;
  background-color: #3C85F6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 20px;
  transition: 0.2s;
  cursor: pointer;
}
.md-contact_formSubmit._orange {
  background-color: #E83526;
}
@media only screen and (min-width: 1025px) {
  .md-contact_formSubmit:hover {
    background-color: #668867;
  }
}

.md-contact_formBack {
  margin: 36px auto 0 auto;
  width: 168px;
  height: 38px;
  background-color: #424242;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 20px;
  transition: 0.2s;
  cursor: pointer;
}
@media only screen and (min-width: 1025px) {
  .md-contact_formBack:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 1024px) {
  .md-contactInner {
    width: 100%;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .md-contact_formTbl dd.md-contact_flexSp {
    display: flex;
    flex-direction: column;
  }
  .md-contact_formTbl dd.md-contact_flexSp label + label {
    margin-top: 8px;
    margin-left: 0;
  }
  .md-contactInner {
    padding: 0 20px;
  }
  .md-contact_formWrap {
    padding: 40px 20px;
  }
  .md-contact_formTbl {
    display: block;
  }
  .md-contact_formTbl dd {
    margin-top: 8px;
  }
  .md-contact_sTxt {
    margin-top: 40px;
    line-height: 1.2;
    font-size: 12px;
  }
  .md-contact_formPolicy {
    padding: 34px 20px;
  }
}
/*===============================
         md-ledTop
===============================*/
.md-ledTop_video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================
         md-ledAbt
===============================*/
.md-ledAbt_wrap {
  max-width: 904px;
  margin: 0 auto;
}

.md-ledAbt_flex {
  display: flex;
}

.md-ledAbt_mvWrap {
  width: 328px;
  margin-right: 78px;
}
.md-ledAbt_mvWrap video {
  width: 100%;
  height: 100%;
}

.md-ledAbt_txtWrap {
  flex: 1;
}

.md-ledAbt_sTxt {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.md-ledAbt_price {
  position: relative;
  max-width: 868px;
  background-color: #5C5C5C;
  margin: 74px auto 0 auto;
  padding: 16px 104px 50px 124px;
  padding-top: 16px;
  padding-bottom: 50px;
}
.md-ledAbt_price::before {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #5C5C5C;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.md-ledAbt_priceTtl {
  position: relative;
  text-align: center;
  font-size: 45px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}
.md-ledAbt_priceTtl::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -16px;
  left: 50%;
  height: 2px;
  width: 72px;
  transform: translateX(-50%);
  background-color: #E83526;
}

.md-ledAbt_price_mTxt {
  margin-top: 34px;
  color: #fff;
  font-size: 25px;
  line-height: 1.6;
  font-weight: 700;
}

.md-ledAbt_priceFlex {
  position: relative;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}
.md-ledAbt_priceFlex::before, .md-ledAbt_priceFlex::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
}
.md-ledAbt_priceFlex::before {
  bottom: -30px;
}
.md-ledAbt_priceFlex::after {
  bottom: -42px;
}

.md-ledAbt_verticalTxt {
  font-size: 45px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
}

.md-ledAbt_price_lTxt {
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #E8E836;
}

.md-ledAbt_price_unitWrap {
  color: #E8E836;
  font-weight: 700;
}
.md-ledAbt_price_unitWrap span:first-child {
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0;
}
.md-ledAbt_price_unitWrap span:last-child {
  font-size: 55px;
  line-height: 1;
}

.md-ledAbt_price_sTxt {
  font-size: 15px;
  line-height: 2.3;
  color: #fff;
  font-weight: 700;
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .md-ledAbt_flex {
    flex-direction: column-reverse;
  }
  .md-ledAbt_mvWrap {
    margin: 40px auto 0 auto;
  }
  .md-ledAbt_sTxt {
    font-size: 17px;
  }
  .md-ledAbt_price {
    padding: 16px 40px 30px 40px;
    max-width: 686px;
  }
  .md-ledAbt_price_lTxt {
    font-size: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .md-ledAbt_price {
    padding: 16px 20px 24px 20px;
  }
  .md-ledAbt_priceFlex {
    margin-top: 10px;
  }
  .md-ledAbt_price_lTxt {
    font-size: 16vw;
  }
  .md-ledAbt_priceTtl {
    font-size: 8.5vw;
  }
  .md-ledAbt_priceTtl::after {
    bottom: -10px;
  }
  .md-ledAbt_price_mTxt {
    margin-top: 20px;
    font-size: 4.8vw;
  }
  .md-ledAbt_verticalTxt {
    font-size: 6.4vw;
  }
  .md-ledAbt_price_unitWrap span:first-child {
    font-size: 4vw;
  }
  .md-ledAbt_price_unitWrap span:last-child {
    font-size: 9.6vw;
  }
  .md-ledAbt_price_sTxt {
    font-size: 3.2vw;
    line-height: 1.5;
  }
  .md-ledAbt_priceFlex::before {
    bottom: -36%;
  }
  .md-ledAbt_priceFlex::after {
    bottom: -47%;
  }
}
/*===============================
         md-ledEx
===============================*/
.md-ledEx_flexWrap {
  max-width: 1100px;
  margin: 66px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md-ledEx_box {
  width: 24.6%;
  border: 1px solid #707070;
  padding: 30px 46px 40px 46px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.md-ledEx_lTxt {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #E83526;
  text-align: center;
}

.md-ledEx_sTxt {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 1024px) {
  .md-ledEx_flexWrap {
    padding: 0 60px;
    flex-wrap: wrap;
    max-width: 806px;
  }
  .md-ledEx_box {
    width: 48%;
    height: 162px;
  }
  .md-ledEx_box:nth-child(3), .md-ledEx_box:nth-child(4) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .md-ledEx_flexWrap {
    max-width: 500px;
    padding: 0 20px;
  }
  .md-ledEx_box {
    padding: 20px 10px;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .md-ledEx_box + .md-ledEx_box {
    margin-top: 10px;
  }
}
/*===============================
         md-ledEx2
===============================*/
.md-ledEx2_boxWrap {
  margin: 66px auto 0 auto;
  max-width: 850px;
}

.md-ledEx2_box {
  display: flex;
  justify-content: space-between;
  padding-left: 34px;
  padding-right: 34px;
}
.md-ledEx2_box:first-child {
  padding-bottom: 32px;
  border-bottom: 1px solid #808080;
}
.md-ledEx2_box:last-child {
  padding-top: 30px;
}

.md-ledEx2_txtWrap {
  width: 46%;
}

.md-ledWx2_mvWrap {
  width: 45%;
}
.md-ledWx2_mvWrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-ledEx2_lTxt {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
}

.md-ledEx2_sTxt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.md-ledEx2_mTxt {
  margin-top: 24px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.md-ledEx2_size {
  margin-top: 50px;
  width: 100%;
  height: 45px;
  border: 1px solid #707070;
  display: flex;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.md-ledEx2_size div {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.md-ledEx2_size div:first-child {
  width: 102px;
  background-color: #E83526;
  color: #fff;
  font-size: 18px;
}
.md-ledEx2_size div:last-child {
  font-size: 16px;
  flex: 1;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .md-ledEx2_boxWrap {
    padding: 0 60px;
  }
  .md-ledEx2_box {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }
  .md-ledEx2_txtWrap {
    position: relative;
    width: 100%;
  }
  .md-ledWx2_mvWrap {
    margin-top: 10px;
    width: 100%;
  }
  .md-ledEx2_size {
    width: 360px;
    margin-top: 30px;
    float: right;
  }
  .md-ledEx2_lTxt {
    font-size: 34px;
  }
  .md-ledEx2_sTxt {
    font-size: 16px;
  }
  .md-ledEx2_mTxt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .md-ledEx2_boxWrap {
    padding: 0 20px;
  }
  .md-ledEx2_lTxt {
    font-size: 24px;
  }
  .md-ledEx2_mTxt {
    font-size: 16px;
  }
  .md-ledEx2_sTxt {
    font-size: 14px;
  }
  .md-ledEx2_size {
    max-width: 360px;
    width: 100%;
    height: 32px;
  }
  .md-ledEx2_size div:first-child {
    font-size: 16px;
    width: 80px;
  }
  .md-ledEx2_size div:last-child {
    font-size: 15px;
  }
}
/*===============================
         md-ledAchv
===============================*/
.md-ledAchv_slideWrap {
  margin-top: 64px;
}

.md-ledAchv_slideItem {
  border: 3px solid #000;
  border-radius: 10px;
  padding: 26px 60px 56px 60px;
}

.md-ledAchv_lTxt {
  font-size: min(1.8vw, 34px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
}

.md-ledAchv_picWrap {
  display: block;
  width: 100%;
}

.md-ledAchv_slideNext.swiper-button-next::after,
.md-ledAchv_slidePrev.swiper-button-prev::after {
  display: none;
}

.swiper-button-next.md-ledAchv_slideNext,
.swiper-button-prev.md-ledAchv_slidePrev {
  width: 80px;
  height: 80px;
}
@media only screen and (min-width: 1025px) {
  .swiper-button-next.md-ledAchv_slideNext,
  .swiper-button-prev.md-ledAchv_slidePrev {
    transition: 0.2s;
  }
  .swiper-button-next.md-ledAchv_slideNext:hover,
  .swiper-button-prev.md-ledAchv_slidePrev:hover {
    opacity: 0.7;
  }
}

.swiper-button-next.md-ledAchv_slideNext {
  right: calc(var(--slide-width2) + var(--slide-width2) / 5 - 40px);
  transform: rotate(180deg);
}

.swiper-button-prev.md-ledAchv_slidePrev {
  left: calc(var(--slide-width2) + var(--slide-width2) / 5 - 40px);
}

@media only screen and (max-width: 1280px) {
  .md-ledAchv_lTxt {
    font-size: 30px;
  }
  .md-ledAchv_slideItem {
    padding: 26px 30px 40px 30px;
  }
  .swiper-button-next.md-ledAchv_slideNext {
    right: calc(var(--slide-width2) / 1.3 - 40px);
  }
  .swiper-button-prev.md-ledAchv_slidePrev {
    left: calc(var(--slide-width2) / 1.3 - 40px);
  }
}
@media only screen and (max-width: 1024px) {
  .swiper-button-next.md-ledAchv_slideNext {
    right: calc(var(--slide-width2) / 2 - 40px);
  }
  .swiper-button-prev.md-ledAchv_slidePrev {
    left: calc(var(--slide-width2) / 2 - 40px);
  }
}
@media only screen and (max-width: 768px) {
  .swiper-button-next.md-ledAchv_slideNext,
  .swiper-button-prev.md-ledAchv_slidePrev {
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 0;
  }
  .swiper-button-next.md-ledAchv_slideNext {
    right: auto;
    left: 50%;
    transform: translate(130%) rotate(180deg);
  }
  .swiper-button-prev.md-ledAchv_slidePrev {
    left: auto;
    right: 50%;
    transform: translate(-130%);
  }
  .swiper.js-ledAchv_slider {
    padding-bottom: 70px;
  }
  .md-ledAchv_lTxt {
    font-size: 24px;
  }
}
/*===============================
         php工房確認画面
===============================*/
#formWrap {
  padding-top: 180px;
  max-width: 826px;
  margin: 0 auto;
}
#formWrap > p {
  margin-top: 40px;
}
#formWrap tr {
  width: 100%;
  display: flex;
}
#formWrap tr + tr {
  margin-top: 50px;
}
#formWrap tr:last-of-type {
  display: none;
}
#formWrap th {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  min-width: 176px;
}
#formWrap td {
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  flex: 1;
  overflow-wrap: anywhere;
}

.md-contact_formWrap.md-contact_confirmWrap {
  margin-top: 60px;
}

.md-confirm_btnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.md-confirm_btnWrap input {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  #formWrap tr {
    flex-direction: column;
  }
  #formWrap td {
    margin-top: 8px;
  }
}
/*===============================
         thanks
===============================*/
.md-thanks_txtWrap {
  max-width: 826px;
  margin: 80px auto 0 auto;
  padding: 38px 20px 34px 20px;
  background-color: #EFEFEF;
}

.md-thanks_txt {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

.md-thanks_btn {
  margin: 36px auto 0 auto;
  width: 168px;
  height: 38px;
  background-color: #3C85F6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 20px;
  transition: 0.2s;
}
@media only screen and (min-width: 1025px) {
  .md-thanks_btn:hover {
    background-color: #668867;
  }
}

/*===============================
          l-head
===============================*/
.l-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  padding: 0 36px 0 26px;
  z-index: 9;
}
.l-head._lower {
  border-bottom: 1px solid #707070;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .l-head {
    height: 60px;
  }
}
/*===============================
          l-topSec
===============================*/
.l-topSec {
  position: relative;
  width: 100%;
  height: 100vh;
}

/*===============================
          l-foot
===============================*/
.l-foot {
  position: relative;
  width: 100%;
  padding: 80px 132px 26px 57px;
  background-color: #D1D1D1;
}

@media only screen and (max-width: 1024px) {
  .l-foot {
    padding: 80px 20px 26px 20px;
  }
}
/*===============================
          l-lowerInner
===============================*/
.l-lowerInner {
  max-width: 1140px;
  margin: 0 auto;
}
.l-lowerInner._topSec {
  padding-top: 85px;
}

@media only screen and (max-width: 1280px) {
  .l-lowerInner {
    max-width: none;
    padding: 0 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-lowerInner {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  .l-lowerInner {
    padding: 0 20px;
  }
}
/*===============================
          l-abt
===============================*/
.l-abtTtl {
  border-bottom: 1px solid #808080;
}

.l-abtOf {
  padding-top: 112px;
  padding-bottom: 180px;
}

.l-abtMap {
  width: 100%;
  height: 438px;
}

@media only screen and (max-width: 768px) {
  .l-abtOf {
    padding: 112px 20px 180px 20px;
  }
  .l-abtMap {
    height: 280px;
  }
}
/*===============================
          l-coat
===============================*/
.l-coatTop {
  position: relative;
  padding-top: 85px;
  height: 50vw;
  width: 100%;
  max-height: 100vh;
}

.l-coatCont {
  padding-top: 104px;
}

.l-coatEx {
  padding-top: 172px;
}

@media only screen and (max-width: 1280px) {
  .l-coatTop {
    min-height: 420px;
  }
}
@media only screen and (max-width: 768px) {
  .l-coatTop {
    padding-top: 60px;
    height: 80vh;
  }
}
/*===============================
          l-contact
===============================*/
.l-contact {
  padding-top: 148px;
  padding-bottom: 134px;
}
.l-contact._top {
  padding-top: 194px;
}

.l-confirm {
  padding-bottom: 120px;
}

.l-thanks {
  padding-top: 180px;
  padding-bottom: 80px;
}

/*===============================
          	l-led
===============================*/
.l-ledTop {
  padding-top: 85px;
  width: 100%;
  height: 100vh;
}

.l-ledAbt {
  padding-top: 120px;
}

.l-ledEx {
  padding-top: 94px;
}

.l-ledEx2 {
  padding-top: 110px;
}

.l-ledAchv {
  padding-top: 130px;
}

@media only screen and (max-width: 1024px) {
  .l-ledAbt {
    padding: 120px 60px 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  .l-ledTop {
    padding-top: 60px;
  }
  .l-ledAbt {
    padding: 120px 20px 0 20px;
    margin: 0 auto;
  }
}
/*===============================
         js-menu
===============================*/
.js-menu_icon span {
  transition: 0.3s;
}
.js-menu_icon.js-menu_open span:first-child {
  transform: translateY(13px) rotate(135deg);
}
.js-menu_icon.js-menu_open span:nth-child(2) {
  transform: translateX(-50%) scale(0);
}
.js-menu_icon.js-menu_open span:nth-child(3) {
  transform: translateY(-14px) rotate(-135deg);
}

@media only screen and (max-width: 1024px) {
  .js-nav {
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.5s ease-out;
  }
  .js-nav.js-menu_open {
    opacity: 1;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  .js-menu_icon span {
    transition: 0.3s;
  }
  .js-menu_icon.js-menu_open span:first-child {
    transform: translateY(9px) rotate(135deg);
  }
  .js-menu_icon.js-menu_open span:nth-child(3) {
    transform: translateY(-10px) rotate(-135deg);
  }
}
/*===============================
         js-scroll
===============================*/
.js-load_up {
  transform: translateY(20%);
  opacity: 0;
  transition: 0.8s;
}
.js-load_up.js-active {
  opacity: 1;
  transform: none;
}

.js-scroll_up {
  transform: translateY(50px);
  opacity: 0;
  transition: 0.8s;
}
.js-scroll_up.js-active {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=style.css.map */