/* Scss Document */
/* transition */
/* opacity */
/* inline-block */
/* font-family */
/* font size */
.common_bt {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .common_bt {
    max-width: none;
    width: 66.66667vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .common_bt a {
    font-size: 3.2vw;
    letter-spacing: 0.1em;
  }
}

.common_bt a:before {
  position: absolute;
  content: '';
  top: -3px;
  left: -3px;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 768px) {
  .common_bt a:before {
    width: 3.33333vw;
    height: 3.33333vw;
    border-top: 1px solid #ef7a5f;
    border-left: 1px solid #ef7a5f;
  }
}

.common_bt a:after {
  position: absolute;
  content: '';
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 768px) {
  .common_bt a:after {
    width: 3.33333vw;
    height: 3.33333vw;
    border-bottom: 1px solid #ef7a5f;
    border-right: 1px solid #ef7a5f;
  }
}

.common_bt a > span {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .common_bt a > span {
    padding: 4.06667vw 0.66667vw 3.93333vw;
  }
}

.common_bt a > span:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 0;
  border-color: #fff transparent transparent transparent;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .common_bt a > span:before {
    border-width: 2.53333vw 2.53333vw 0 0;
  }
}

.common_bt a > span:after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 11px 11px;
  border-color: transparent transparent #fff transparent;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .common_bt a > span:after {
    border-width: 0 0 2.53333vw 2.53333vw;
  }
}

.common_bt a:hover {
  letter-spacing: 0.1em;
}

.common_bt a:hover:before, .common_bt a:hover:after {
  width: 100%;
  height: 100%;
}

.common_bt a:hover span:before {
  left: 0;
  top: 0;
  border-width: 340px 340px 0 0;
  border-color: #fff transparent transparent transparent;
  opacity: 0.1;
}

@media screen and (max-width: 768px) {
  .common_bt a:hover span:before {
    border-width: 84vw 84vw 0 0;
  }
}

.common_bt a:hover span:after {
  right: 0;
  bottom: 0;
  border-width: 0 0 340px 340px;
  border-color: transparent transparent #fff transparent;
  opacity: 0.1;
}

@media screen and (max-width: 768px) {
  .common_bt a:hover span:after {
    border-width: 0 0 84vw 84vw;
  }
}

.sec-shop-list .td-store-name > ul {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .sec-shop-list .td-store-name > ul {
    max-width: 58vw;
    margin-top: 0.93333vw;
  }
}

.sec-shop-list .td-store-name > ul li {
  width: 39px;
  margin-right: 5px;
  margin-top: 5px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
  .sec-shop-list .td-store-name > ul li {
    width: 7.33333vw;
    margin-right: 0.93333vw;
    margin-top: 0.93333vw;
    clip-path: polygon(1.73333vw 0, 100% 0, 100% calc(100% - 1.73333vw), calc(100% - 1.73333vw) 100%, 0 100%, 0 1.73333vw);
  }
}

.sec-shop-list .td-store-name > ul li:last-of-type {
  margin-right: 0;
}

.sec-shop-list .td-store-name > ul li:hover {
  opacity: 0.7;
}

.sec-shop-list .td-store-name > ul li img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.meister-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all .2s ease-out;
  opacity: 0;
  visibility: hidden;
}

.meister-modal.active {
  opacity: 1;
  visibility: visible;
}

.meister-modal.active .meister-modal_cont-wrap {
  opacity: 1;
}

.meister-modal_overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.meister-modal_inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.meister-modal_cont-wrap {
  min-width: 1200px;
  max-width: 1252px;
  margin: 0 auto;
  padding: 140px 26px;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
  position: relative;
  transition: opacity .4s ease-out;
  transition-delay: .1s;
  opacity: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-wrap {
    min-width: auto;
    max-width: none;
    padding: 16vw 0;
    filter: drop-shadow(0px 0px 2.66667vw rgba(0, 0, 0, 0.6));
  }
}

.meister-modal_close-btn {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 102px;
  right: -10px;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .meister-modal_close-btn {
    width: 9.33333vw;
    height: 9.33333vw;
    top: 11.73333vw;
    right: 0.66667vw;
  }
}

.meister-modal_close-btn::before, .meister-modal_close-btn::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
}

@media screen and (max-width: 768px) {
  .meister-modal_close-btn::before, .meister-modal_close-btn::after {
    width: 9.33333vw;
  }
}

.meister-modal_close-btn::before {
  transform: rotateZ(45deg);
}

.meister-modal_close-btn::after {
  transform: rotateZ(-45deg);
}

.meister-modal_cont {
  width: 100%;
  max-width: 1200px;
  min-width: 1148px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont {
    width: 92vw;
    max-width: none;
    min-width: auto;
  }
}

.meister-modal_cont::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff url("/assets/images/teaching_meister/modal-bg.png") calc(50% - 205px) -9px repeat-y;
  background-size: 2209px 1472px;
  clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 100px 100%, 0 calc(100% - 100px));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont::before {
    background: #fff url("/assets/images/teaching_meister/modal-bg.png") calc(50% - 40.8vw) -0.93333vw repeat-y;
    background-size: 458.26667vw 305.46667vw;
    clip-path: polygon(0 0, calc(100% - 10.66667vw) 0, 100% 10.66667vw, 100% 100%, 10.66667vw 100%, 0 calc(100% - 10.66667vw));
  }
}

.meister-modal_cont-inner {
  padding: 80px 0 83px;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner {
    padding: 7.46667vw 0 6.53333vw;
  }
}

.meister-modal_cont-inner .meister-info {
  position: relative;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info {
    padding-bottom: 7.2vw;
  }
}

.meister-modal_cont-inner .meister-info::before {
  content: "";
  display: block;
  background: url("/assets/images/teaching_meister/modal-en-bg.png") left top no-repeat;
  background-size: cover;
  width: 540px;
  height: 203px;
  position: absolute;
  top: -44px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info::before {
    width: 51.86667vw;
    height: 19.33333vw;
    top: 65.33333vw;
  }
}

.meister-modal_cont-inner .meister-info-inner {
  width: 86.66%;
  max-width: 1040px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-inner {
    width: 81.33333vw;
    max-width: none;
  }
}

.meister-modal_cont-inner .meister-info-head {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-head {
    display: block;
  }
}

.meister-modal_cont-inner .meister-info-img {
  width: 380px;
  margin: 0 30px;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-img {
    width: 60vw;
    margin: 0 auto;
  }
}

.meister-modal_cont-inner .meister-info-img::before {
  content: "";
  display: block;
  width: 380px;
  height: 380px;
  background-color: #ccc;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: -1;
  clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-img::before {
    width: 60vw;
    height: 60vw;
    top: 4.26667vw;
    left: 3.86667vw;
    clip-path: polygon(6.4vw 0, 100% 0, 100% calc(100% - 6.4vw), calc(100% - 6.4vw) 100%, 0 100%, 0 6.4vw);
  }
}

.meister-modal_cont-inner .meister-info-img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.meister-modal_cont-inner .meister-info-name {
  width: calc(100% - 440px);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-name {
    width: 100%;
    margin-top: 22.8vw;
  }
}

.meister-modal_cont-inner .meister-info-name span {
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #e23b1f;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-name span {
    font-size: 3.46667vw;
    line-height: 1;
  }
}

.meister-modal_cont-inner .meister-info-name p {
  font-size: 36px;
  color: #222;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-name p {
    font-size: 5.6vw;
  }
}

.meister-modal_cont-inner .meister-info-body {
  margin-top: 66px;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body {
    margin-top: 8.8vw;
  }
}

.meister-modal_cont-inner .meister-info-body dl {
  display: flex;
  flex-direction: row;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body dl {
    margin-bottom: 3.6vw;
  }
}

.meister-modal_cont-inner .meister-info-body dl:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body dl.comment {
    display: block;
  }
}

.meister-modal_cont-inner .meister-info-body dl.comment dd {
  font-size: 18px;
  font-weight: 400;
  line-height: 2.22;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body dl.comment dd {
    width: 100%;
    font-size: 3.2vw;
    line-height: 1.58;
    margin-top: 2.13333vw;
  }
}

.meister-modal_cont-inner .meister-info-body dl dt {
  width: 160px;
  font-size: 14px;
  font-weight: 700;
  color: #e23b1f;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body dl dt {
    width: 19.06667vw;
    font-size: 2.93333vw;
    line-height: 1.17;
  }
}

.meister-modal_cont-inner .meister-info-body dl dt span {
  display: block;
  font-family: 'Beleren';
  font-size: 11px;
  color: #999;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body dl dt span {
    font-size: 2.4vw;
    margin-top: 0.26667vw;
  }
}

.meister-modal_cont-inner .meister-info-body dl dd {
  max-width: 824px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-info-body dl dd {
    max-width: none;
    width: 62.53333vw;
    font-size: 3.73333vw;
    line-height: 1.36;
  }
}

.meister-modal_cont-inner .meister-staff {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 33px 0 25px;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-staff {
    padding: 5.2vw 0 4.8vw;
  }
}

.meister-modal_cont-inner .meister-staff-ttl {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-staff-ttl {
    font-size: 3.46667vw;
  }
}

.meister-modal_cont-inner .meister-staff-ttl span {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-family: 'Beleren';
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-staff-ttl span {
    font-size: 6.4vw;
    margin-top: 0.66667vw;
  }
}

.meister-modal_cont-inner .meister-staff-list {
  width: 1032px;
  margin: -5px auto 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-staff-list {
    width: 84vw;
    margin: 1.73333vw auto 0;
  }
}

.meister-modal_cont-inner .meister-staff-list li {
  width: 120px;
  margin: 26px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-staff-list li {
    width: 18.66667vw;
    margin: 2.66667vw 4.66667vw;
  }
}

.meister-modal_cont-inner .meister-staff-list li::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #ccc;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-staff-list li::before {
    width: 18.66667vw;
    height: 18.66667vw;
    top: 1.6vw;
    left: 1.6vw;
  }
}

.meister-modal_cont-inner .meister-staff-list li:hover {
  opacity: 0.7;
}

.meister-modal_cont-inner .meister-staff-list li img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.meister-modal_cont-inner .meister-close-btn {
  text-align: center;
  margin-top: 73px;
}

@media screen and (max-width: 768px) {
  .meister-modal_cont-inner .meister-close-btn {
    margin-top: 5.06667vw;
  }
}

.meister-modal_cont-inner .meister-close-btn a {
  margin: 0 auto;
}

/*# sourceMappingURL=teaching_meister-modal.css.map */