/*
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}
.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}
.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}
.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}
.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}
.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}
.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modaal-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}
.modaal-content-container {
  padding: 30px;
}
.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}
.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}
.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}
.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}
.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}
.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}
.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}
.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}
.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}
.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}
.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}
.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}
.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}
.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}
.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}
.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}
.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}
.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}
.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}
.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}
.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
          align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
  padding-bottom: 30px;
}
.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}
.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -webkit-flex-grow: inherit;
          flex-grow: inherit;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 0;
          flex-basis: 0;
}
.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background: #2c2c2c;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
  visibility: hidden !important;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 4px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  height: 4px;
  min-height: 0;
  min-width: 10px;
  width: auto;
  border-radius: 6px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  background: #969696;
  height: 100%;
  left: 0;
  right: 0;
}
[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #000;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.md-gd-1 {
  position: relative;
}
.md-gd-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.md-gd-3_item img {
  width: 100%;
}
a {
  text-decoration: none;
}
a:link {
  color: #157072;
}
a:visited {
  color: #157072;
}
a:active {
  color: #157072;
}
.md-link1 {
  text-decoration: underline;
}
.md-title1 .md-title1_head {
  text-align: center;
}
.md-title2 {
  text-align: center;
}
.md-title2 .md-title2_head {
  position: relative;
  display: inline-block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.md-title3 {
  text-align: center;
}
.md-title3 .md-title3_head {
  text-align: center;
  position: relative;
  display: inline;
  line-height: 1.25;
}
.md-title3 .md-title3_head span {
  color: #00dcdc;
}
.md-title4 {
  text-align: center;
}
.md-title4 .md-title4_head {
  font-size: 20px;
}
.md-title5 .md-title5_head {
  font-size: 18px;
}
.md-title5 .md-title5_head span {
  color: #00dcdc;
}
.md-title6 {
  position: relative;
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}
.md-title6--gray {
  color: #646464;
}
.md-title6--black {
  color: #000;
  background: none;
  border: 1px solid #000;
}
.md-title6--pink {
  color: #ff009f;
}
.md-title7 {
  position: relative;
  text-align: center;
}
.md-title7--gray .md-title7_head {
  border-bottom: 1px solid #646464;
  color: #646464;
}
.md-title7--black .md-title7_head {
  border-bottom: 1px solid #000;
  color: #000;
}
.md-title7_head {
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  text-align: center;
  display: inline-block;
}
.md-titlePoint {
  text-align: center;
  margin-bottom: 16px;
}
.md-titlePoint .md-titlePoint_head {
  text-align: center;
  display: inline;
  border-bottom: 1px solid #d50400;
}
.md-titlePoint .md-titlePoint_head span {
  color: #d50400;
}
.md-titlePoint .md-titlePoint_head:before {
  content: "";
  display: block;
  position: absolute;
}
.md-check-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.md-check-title .md-check-title_icon {
  display: block;
}
.md-check-title .md-check-title_text {
  display: block;
  margin-left: 20px;
}
.fk-ft--xl.fk-ft--bold {
  font-weight: bold;
}
.fk-ft--xl.fk-ft--italic {
  font-style: italic;
}
.fk-ft--xl.fk-ft--error {
  color: #f00;
}
.fk-ft--l.fk-ft--bold {
  font-weight: bold;
}
.fk-ft--l.fk-ft--italic {
  font-style: italic;
}
.fk-ft--l.fk-ft--error {
  color: #f00;
}
.fk-ft--m.fk-ft--bold {
  font-weight: bold;
}
.fk-ft--m.fk-ft--italic {
  font-style: italic;
}
.fk-ft--m.fk-ft--error {
  color: #f00;
}
.fk-ft--s.fk-ft--bold {
  font-weight: bold;
}
.fk-ft--s.fk-ft--italic {
  font-style: italic;
}
.fk-ft--s.fk-ft--error {
  color: #f00;
}
.fk-ft--xs.fk-ft--bold {
  font-weight: bold;
}
.fk-ft--xs.fk-ft--italic {
  font-style: italic;
}
.fk-ft--xs.fk-ft--error {
  color: #f00;
}
.fk-ft--xxs.fk-ft--bold {
  font-weight: bold;
}
.fk-ft--xxs.fk-ft--italic {
  font-style: italic;
}
.fk-ft--xxs.fk-ft--error {
  color: #f00;
}
.md-txt1 {
  color: #fff;
  line-height: 2;
  font-size: 14px;
  margin-bottom: 15px;
}
.md-txt2 {
  color: #fff;
  line-height: 2;
  margin-bottom: 50px;
}
.md-txt3 {
  color: #fff;
}
.md-txt4 {
  color: #d20000;
  font-weight: bold;
}
.md-read1 {
  font-weight: bold;
}
.md-read2 {
  font-weight: bold;
}
.md-read--close {
  background: rgba(0,0,0,0.6);
  font-weight: bold;
  margin: 0 auto;
  box-sizing: border-box;
}
.md-txtLink1 {
  text-decoration: underline;
}
.md-txtLink2 {
  text-align: center;
}
.md-txtLink2 a {
  text-decoration: underline;
  font-weight: bold;
  position: relative;
}
.md-txtLink2 a:link,
.md-txtLink2 a:visited,
.md-txtLink2 a:hover,
.md-txtLink2 a:active {
  color: #fff;
}
.fk-list {
  list-style-type: none;
  list-style-position: inside;
  margin-bottom: 10px;
}
.fk-list li {
  padding-left: 1.5em;
  position: relative;
}
.fk-list li:before {
  position: absolute;
  left: 0;
}
.fk-list--disc li:before {
  content: "・";
}
.fk-list--num li:nth-child(1)::before {
  content: '1.';
}
.fk-list--num li.num_1::before {
  content: '1.';
}
.fk-list--num li:nth-child(2)::before {
  content: '2.';
}
.fk-list--num li.num_2::before {
  content: '2.';
}
.fk-list--num li:nth-child(3)::before {
  content: '3.';
}
.fk-list--num li.num_3::before {
  content: '3.';
}
.fk-list--num li:nth-child(4)::before {
  content: '4.';
}
.fk-list--num li.num_4::before {
  content: '4.';
}
.fk-list--num li:nth-child(5)::before {
  content: '5.';
}
.fk-list--num li.num_5::before {
  content: '5.';
}
.fk-list--num li:nth-child(6)::before {
  content: '6.';
}
.fk-list--num li.num_6::before {
  content: '6.';
}
.fk-list--num li:nth-child(7)::before {
  content: '7.';
}
.fk-list--num li.num_7::before {
  content: '7.';
}
.fk-list--num li:nth-child(8)::before {
  content: '8.';
}
.fk-list--num li.num_8::before {
  content: '8.';
}
.fk-list--num li:nth-child(9)::before {
  content: '9.';
}
.fk-list--num li.num_9::before {
  content: '9.';
}
.fk-list--num li:nth-child(10)::before {
  content: '10.';
}
.fk-list--num li.num_10::before {
  content: '10.';
}
.fk-list--num li:nth-child(11)::before {
  content: '11.';
}
.fk-list--num li.num_11::before {
  content: '11.';
}
.fk-list--num li:nth-child(12)::before {
  content: '12.';
}
.fk-list--num li.num_12::before {
  content: '12.';
}
.fk-list--num li:nth-child(13)::before {
  content: '13.';
}
.fk-list--num li.num_13::before {
  content: '13.';
}
.fk-list--num li:nth-child(14)::before {
  content: '14.';
}
.fk-list--num li.num_14::before {
  content: '14.';
}
.fk-list--num li:nth-child(15)::before {
  content: '15.';
}
.fk-list--num li.num_15::before {
  content: '15.';
}
.fk-list--attention li:before {
  content: "※";
}
.fk-list--attentionNum li {
  padding-left: 2.5em;
}
.fk-list--attentionNum li:nth-child(1)::before {
  content: '※1';
}
.fk-list--attentionNum li:nth-child(2)::before {
  content: '※2';
}
.fk-list--attentionNum li:nth-child(3)::before {
  content: '※3';
}
.fk-list--attentionNum li:nth-child(4)::before {
  content: '※4';
}
.fk-list--attentionNum li:nth-child(5)::before {
  content: '※5';
}
.fk-list--attentionNum li:nth-child(6)::before {
  content: '※6';
}
.fk-list--attentionNum li:nth-child(7)::before {
  content: '※7';
}
.fk-list--attentionNum li:nth-child(8)::before {
  content: '※8';
}
.fk-list--attentionNum li:nth-child(9)::before {
  content: '※9';
}
.fk-list--attentionNum li:nth-child(10)::before {
  content: '※10';
}
.fk-list--attentionNum li:nth-child(11)::before {
  content: '※11';
}
.fk-list--attentionNum li:nth-child(12)::before {
  content: '※12';
}
.fk-list--attentionNum li:nth-child(13)::before {
  content: '※13';
}
.fk-list--attentionNum li:nth-child(14)::before {
  content: '※14';
}
.fk-list--attentionNum li:nth-child(15)::before {
  content: '※15';
}
.fk-list--circlenumber li:nth-child(0)::before {
  content: '\2459';
}
.fk-list--circlenumber li:nth-child(1)::before {
  content: '\2460';
}
.fk-list--circlenumber li:nth-child(2)::before {
  content: '\2461';
}
.fk-list--circlenumber li:nth-child(3)::before {
  content: '\2462';
}
.fk-list--circlenumber li:nth-child(4)::before {
  content: '\2463';
}
.fk-list--circlenumber li:nth-child(5)::before {
  content: '\2464';
}
.fk-list--circlenumber li:nth-child(6)::before {
  content: '\2465';
}
.fk-list--circlenumber li:nth-child(7)::before {
  content: '\2466';
}
.fk-list--circlenumber li:nth-child(8)::before {
  content: '\2467';
}
.fk-list--circlenumber li:nth-child(9)::before {
  content: '\2468';
}
.fk-list--noPadding li {
  padding-left: 1em;
}
.md-navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.md-note1 {
  color: #ccc;
}
.md-note1 .md-note1_item {
  font-size: 12px;
}
.md-note1 .md-note1_item::before {
  content: "※";
}
.md-note2 .md-note2_item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 12px;
}
.md-note2 .md-note2_item::before {
  content: "※";
}
.md-note2_title {
  font-size: 12px;
}
.md-note3 .md-note3_item {
  font-size: 13px;
  line-height: 1.8;
}
.md-note3 .md-note3_item::before {
  content: "※";
}
.md-note4 .md-note4_item {
  font-size: 13px;
}
.md-note4 .md-note4_item::before {
  content: "※";
}
.md-note5 {
  text-align: left;
}
.md-note5 .md-note5_item {
  font-size: 13px;
}
.md-note5 .md-note5_item::before {
  content: "※";
}
.md-noteAmazon .md-noteAmazon_item {
  font-size: 13px;
}
.md-btn01 {
  display: block;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-weight: bold;
  margin: 0 auto;
  border: none;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  color: #fff;
  line-height: 1;
}
.md-btn01:link,
.md-btn01:active,
.md-btn01:visited {
  color: #fff;
}
.md-btn01-large:link,
.md-btn01-large:active,
.md-btn01-large:visited {
  color: #000;
}
.md-btnArea1 .md-btnArea1_txt,
.md-btnArea1 .md-btnArea1_arrow,
.md-btnArea1 .md-btnArea1_btn {
  text-align: center;
}
.md-btnArea1 .md-btnArea1_txt,
.md-btnArea1 .md-btnArea1_arrow {
  margin-bottom: 20px;
}
.md-btnArea1 .md-btnArea1_arrow {
  margin: 0 auto;
}
.md-btnArea1 .md-btnArea1_arrow img {
  width: 100%;
}
.md-btn02 {
  margin: 0 auto;
  background: url("/assets/img/mypage/team/img_excludeBtn.png?jraodds25sum") center center no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.md-btn02.is-disabled {
  opacity: 0.75;
  pointer-events: none;
}
.md-table1 {
  width: 100%;
  margin-bottom: 30px;
}
.md-table1 th {
  background-color: #000;
  border-bottom: 1px solid #666;
  text-align: center;
}
.md-table1 td {
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #000;
  text-align: left;
}
.md-table1 td span {
  display: inline-block;
  padding: 5px 0;
}
.md-table1 tr:last-child th,
.md-table1 tr:last-child td {
  border-bottom: none;
}
.md-table5 {
  width: 100%;
  margin-bottom: 30px;
}
.md-table5 th {
  background-color: #333;
  border-bottom: 1px solid #000;
  text-align: left;
}
.md-table5 td {
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #000;
  text-align: left;
}
.md-table5 td span {
  display: inline-block;
  padding: 5px 0;
}
.md-table5 tr:last-child th,
.md-table5 tr:last-child td {
  border-bottom: none;
}
.md-table2Block {
  width: 100%;
}
.md-table2Block .md-table2 {
  width: 100%;
}
.md-table2Block .md-table2 .md-table2_tr {
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.md-table2Block .md-table2 .md-table2_tr:nth-child(odd) {
  background-color: #cecece;
}
.md-table2Block .md-table2 .md-table2_th {
  color: #fff;
  border-right: 1px solid #333;
  background-color: #000;
  font-weight: bold;
  text-align: center;
  width: 50%;
  border-right: none;
}
.md-table2Block .md-table2 .md-table2_td {
  color: #000;
  font-weight: bold;
  border-right: 1px solid #646464;
  text-align: center;
  position: relative;
}
.md-table2Block .md-table2 .md-table2_td:last-child {
  border-right: 1px solid #000;
}
.md-table2Block .md-table2.md-table2-column3 .md-table2_th {
  width: 33%;
}
.md-table2Block--login .md-table2 {
  background-color: #cdcdcd;
}
.md-table2Block--login .md-table2_th {
  border-right: 1px solid #646464 !important;
}
.md-table2Block--login .md-table2_th:first-child {
  background-color: #646464;
}
.md-table2Block--login .md-table2_th:last-child {
  color: #fff;
  background-color: #1d3994 !important;
}
.md-table2Block--login .md-table2_td {
  color: #202124 !important;
  border-right: 1px solid #b6b6b6 !important;
}
.md-table2Block--login .md-table2_td.md-table2_arw {
  position: relative;
}
.md-table2Block--login .md-table2_td.md-table2_arw:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #1d3994;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.md-table2Block--login .md-table2_tr {
  border: none !important;
}
.md-table2Block--login .md-table2_tr:nth-child(odd) {
  background-color: #cdcdcd;
}
.md-table3 {
  width: 100%;
  margin-bottom: 30px;
}
.md-table3 th {
  background-color: #000;
  border-bottom: 1px solid #666;
  text-align: center;
  border-right: 1px solid #999;
}
.md-table3 th:last-child {
  border-right: none;
}
.md-table3 td {
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  text-align: center;
}
.md-table3 td:last-child {
  border-right: none;
}
.md-table3 td span {
  display: inline-block;
  padding: 5px 0;
}
.md-table3 tr:last-child th,
.md-table3 tr:last-child td {
  border-bottom: none;
}
.md-table-modal {
  width: 100%;
  max-width: 100%;
}
.md-table-modal th {
  background-color: #0084d0;
  text-align: center;
}
.md-table-modal td {
  color: #fff;
  vertical-align: top;
  text-align: left;
  font-weight: bold;
}
.md-table-modal td span {
  display: inline-block;
  padding: 5px 0;
}
.md-table-modal tr th,
.md-table-modal tr td {
  border-bottom: 1px solid #646464;
  border-right: 1px solid #646464;
  vertical-align: middle;
  font-weight: bold;
}
.md-table-modal tr th:nth-of-type(3),
.md-table-modal tr td:nth-of-type(3) {
  text-align: left;
  box-sizing: border-box;
}
.md-table-modal tr th:last-of-type,
.md-table-modal tr td:last-of-type {
  border-right: none;
}
.md-table-modal tr td:nth-of-type(2) {
  text-align: center;
  color: #666;
}
.md-table3 {
  width: 100%;
  margin-bottom: 30px;
}
.md-table3 th {
  background-color: #000;
  border-bottom: 1px solid #666;
  text-align: center;
}
.md-table3 td {
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  text-align: left;
}
.md-table3 td span {
  display: inline-block;
  padding: 5px 0;
}
.md-table3 tr:last-child th,
.md-table3 tr:last-child td {
  border-bottom: none;
}
.md-table4 .md-table4_th {
  background-color: #1f1f1f;
  border-bottom: 1px solid #666;
  text-align: left;
}
.md-table4 .md-table4_td {
  color: #000;
  background-color: #fff;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid #999;
}
.md-table4 .md-table4_td:last-child {
  border-right: none;
}
.md-table4 .md-table4_td span {
  display: inline-block;
  padding: 5px 0;
}
.md-table4 tr:last-child .md-table4_th,
.md-table4 tr:last-child .md-table4_td {
  border-bottom: none;
}
.md-table2Block--asymmetric {
  font-size: 0;
}
.md-table2Block--asymmetric .md-table-bg {
  position: relative;
  float: right;
  background: -webkit-linear-gradient(20deg, #270600 1%, #881b13 50%, #440b00 100%);
  background: linear-gradient(70deg, #270600 1%, #881b13 50%, #440b00 100%);
}
.md-table2Block--asymmetric .md-table-bg+.md-txt3 {
  clear: both;
}
.md-table2Block--asymmetric .md-table-left_tr,
.md-table2Block--asymmetric .md-table-right_tr {
  border-bottom: 1px solid #000;
}
.md-table2Block--asymmetric .md-table-left_tr:last-child,
.md-table2Block--asymmetric .md-table-right_tr:last-child {
  border-bottom: none;
}
.md-table2Block--asymmetric .md-table-left_th,
.md-table2Block--asymmetric .md-table-right_th {
  color: #fff;
  background-color: #1f1f1f;
  font-weight: bold;
  text-align: center;
}
.md-table2Block--asymmetric .md-table-left_td,
.md-table2Block--asymmetric .md-table-right_td {
  color: #000;
  border-right: 1px solid #999;
  text-align: center;
}
.md-table2Block--asymmetric .md-table-left_td.md-table_arw,
.md-table2Block--asymmetric .md-table-right_td.md-table_arw {
  position: relative;
}
.md-table2Block--asymmetric .md-table-left_td.md-table_arw::after,
.md-table2Block--asymmetric .md-table-right_td.md-table_arw::after {
  content: "";
  display: block;
  background-image: url("/assets/img/common/arw_table_gold.png?jraodds25sum");
  background-size: 100%;
  background-position: 0px 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
.md-table2Block--asymmetric .md-table-left {
  float: left;
}
.md-table2Block--asymmetric .md-table-left_tr {
  background-color: #ebebeb;
}
.md-table2Block--asymmetric .md-table-left_tr:nth-child(odd) {
  background-color: #fff;
}
.md-table2Block--asymmetric .md-table-right {
  font-weight: bold;
}
.md-table2Block--asymmetric .md-table-right_th {
  background-color: transparent;
}
.md-table2Block--asymmetric .md-table-right_tr {
  background-color: #ebebeb;
}
.md-table2Block--asymmetric .md-table-right_tr:nth-child(odd) {
  background-color: #fff;
}
.md-table2Block--asymmetric .md-table-right_tr:first-of-type {
  background-color: transparent;
}
.md-table2Block--asymmetric .md-txt3 {
  color: #dadada;
}
.table-title {
  clear: both;
  text-align: center;
  border-bottom: 1px solid #c6861b;
  -webkit-border-image: -webkit-linear-gradient(left, #c6861b 0%, #f4c00c 22%, #fcfcd5 50%, #d8bc0b 79%, #be811b 100%);
          border-image: linear-gradient(to right, #c6861b 0%, #f4c00c 22%, #fcfcd5 50%, #d8bc0b 79%, #be811b 100%);
  border-image-slice: 1;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font-weight: bold;
  line-height: 1.7;
}
.login-table_head {
  font-weight: bold;
  color: #000;
  text-align: center;
}
.fk-img--block {
  display: block;
}
.fk-img--fluid {
  width: 100%;
  display: block;
  height: auto;
}
.img-round {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.fk-img--circle {
  width: 100%;
  display: block;
  border-radius: 100%;
}
.md-imgPoint {
  text-align: center;
}
.md-block1 {
  background: rgba(255,255,255,0.1);
  box-sizing: border-box;
}
.md-block-scroll-y {
  overflow-y: scroll;
  max-height: 450px;
}
.md-flow .md-flowBlock {
  position: relative;
}
.md-flow .md-flowBlock .md-flowBlock_img img {
  width: 100%;
}
.md-flow .md-flowBlock .md-flowBlock_txt {
  font-size: 14px;
  line-height: 1.5;
}
.md-wrap980 {
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}
.md-wrap1016 {
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}
.md-wrap1018 {
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}
.md-bg-layout {
  background-color: #fff;
}
.md-bg-layout_heading {
  text-align: center;
}
.md-bg-layout_inner {
  box-sizing: border-box;
}
.md-flow2_item {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.md-flow2_item + .md-flow2_item::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  border-width: 15px 11px 0 11px;
  position: absolute;
  margin: auto;
}
.md-flow2_heading {
  position: absolute;
}
.md-flow2_title {
  color: #000;
  font-weight: bold;
  text-align: center;
}
.md-flow2_text {
  color: #000;
  font-weight: bold;
  text-align: center;
}
.md-triangle-box {
  position: relative;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.md-triangle-box--bg {
  border: none;
}
.md-triangle-box_heading {
  margin: 0 auto;
}
.md-triangle-box_text {
  font-weight: bold;
  color: #000;
}
.md-triangle-box_text2 {
  font-weight: bold;
  color: #000;
}
.fk-accordion__wrapper {
  -webkit-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  overflow: hidden;
}
.fk-accordion__title {
  background: #999;
}
.fk-accordion__body {
  overflow: hidden;
}
.fk-accordion--closed .fk-accordion__wrapper {
  height: 0;
}
.test.fk-accordion {
  margin-bottom: 10px;
}
.test.fk-accordion__title {
  padding: 10px;
  background: #999;
}
.test.fk-accordion__body {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #999;
}
.fk-accordion.fk-accordion--payment {
  border: 1px solid #d3e0da;
  margin-top: 20px;
}
.fk-accordion.fk-accordion--payment:first-child {
  margin-top: 0;
}
.fk-accordion.fk-accordion--payment .fk-accordion__title {
  background: #f8f8f6;
  position: relative;
}
.fk-accordion.fk-accordion--payment .fk-accordion__title::after {
  position: absolute;
  content: icon-icon_bar;
  color: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  font-size: fs18;
}
.fk-accordion.fk-accordion--payment .fk-accordion__body {
  border-top: 1px solid #d3e0da;
}
.fk-accordion.fk-accordion--payment .fk-accordion__body .box-gray {
  box-sizing: border-box;
}
.fk-accordion.fk-accordion--payment.fk-accordion--closed .fk-accordion__title::after {
  position: absolute;
  content: icon-icon_cross;
  color: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  font-size: fs18;
}
.fk-modalElement {
  overflow: hidden;
  display: none;
  z-index: 4000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.fk-modalElement__wrapper {
  width: 100%;
  height: 100%;
}
.fk-modalElement__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.fk-modalElement__closeBtn__outer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
}
.fk-modalElement__closeBtn__inner {
  margin: 0 auto;
}
.fk-modalElement__closeBtn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 20px 20px 0 0;
  position: relative;
}
.fk-modalElement__closeBtn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 40px;
  height: 4px;
  margin-top: -2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fk-modalElement__closeBtn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 40px;
  height: 4px;
  margin-top: -2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.fk-modalElement__bg {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8000;
  opacity: 0.85;
}
#fk-modalView {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9000;
  box-sizing: border-box;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
/*
  width 900px
  img
    width 100%
  */
}
#fk-modalView iframe {
  border: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.fk-modalView-movie {
  width: 90%;
  position: relative;
  z-index: 9000;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.fk-modalView-movie-wrapper {
  width: 100%;
/*横幅いっぱいにwidthを指定*/
  padding-bottom: 56.25%; /*高さをpaddingで指定(16:9)*/
  height: 0px;
/*高さはpaddingで指定するためheightは0に*/
}
.fk-modalView-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.slick-dots li {
  width: 100px;
  margin: 0 20px;
  opacity: 0.8;
  cursor: pointer;
}
.slick-dots li img {
  width: 100%;
}
.slick-dots .slick-active {
  opacity: 1;
}
.fk-modalElement {
  overflow: hidden;
  display: none;
  z-index: 4000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.fk-modalElement__wrapper {
  width: 100%;
  height: 100%;
}
.fk-modalElement__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.fk-modalElement__closeBtn__outer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
}
.fk-modalElement__closeBtn__inner {
  margin: 0 auto;
}
.fk-modalElement__closeBtn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 20px 20px 0 0;
  position: relative;
}
.fk-modalElement__closeBtn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 40px;
  height: 4px;
  margin-top: -2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fk-modalElement__closeBtn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 40px;
  height: 4px;
  margin-top: -2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.fk-modalElement__bg {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8000;
  opacity: 0.85;
}
#fk-modalView {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9000;
  box-sizing: border-box;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
/*
  width 900px
  img
    width 100%
  */
}
#fk-modalView iframe {
  border: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.fk-modalView-movie {
  width: 90%;
  position: relative;
  z-index: 9000;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.fk-modalView-movie-wrapper {
  width: 100%;
/*横幅いっぱいにwidthを指定*/
  padding-bottom: 56.25%; /*高さをpaddingで指定(16:9)*/
  height: 0px;
/*高さはpaddingで指定するためheightは0に*/
}
.fk-modalView-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.txL {
  text-align: left !important;
}
.txC {
  text-align: center !important;
}
.txR {
  text-align: right !important;
}
.txBold {
  font-weight: bold !important;
}
.txGray {
  color: #646464 !important;
}
.txGold {
  color: #be973d !important;
}
.txYellow {
  color: #ff0 !important;
}
.txPink {
  color: #ff009f !important;
}
.txGreen {
  color: #00dcdc !important;
}
.txWhite {
  color: #fff !important;
}
.txBlack {
  color: #000 !important;
}
.txYellow {
  color: #ff0 !important;
}
.txBlue {
  color: #0084d0 !important;
}
.vaT {
  vertical-align: top;
}
.vaM {
  vertical-align: middle;
}
.vaB {
  vertical-align: bottom;
}
.fLeft {
  float: left;
}
.fRight {
  float: right;
}
.fNone {
  float: none;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: "";
}
.u-mt150,
.u-mt150--pc {
  margin-top: 150px !important;
}
.u-mb150,
.u-mb150--pc {
  margin-bottom: 150px !important;
}
.u-ml150,
.u-ml150--pc {
  margin-left: 150px !important;
}
.u-mr150,
.u-mr150--pc {
  margin-right: 150px !important;
}
.u-pt150,
.u-pt150--pc {
  padding-top: 150px !important;
}
.u-pb150,
.u-pb150--pc {
  padding-bottom: 150px !important;
}
.u-pl150,
.u-pl150--pc {
  padding-left: 150px !important;
}
.u-pr150,
.u-pr150--pc {
  padding-right: 150px !important;
}
.u-mt145,
.u-mt145--pc {
  margin-top: 145px !important;
}
.u-mb145,
.u-mb145--pc {
  margin-bottom: 145px !important;
}
.u-ml145,
.u-ml145--pc {
  margin-left: 145px !important;
}
.u-mr145,
.u-mr145--pc {
  margin-right: 145px !important;
}
.u-pt145,
.u-pt145--pc {
  padding-top: 145px !important;
}
.u-pb145,
.u-pb145--pc {
  padding-bottom: 145px !important;
}
.u-pl145,
.u-pl145--pc {
  padding-left: 145px !important;
}
.u-pr145,
.u-pr145--pc {
  padding-right: 145px !important;
}
.u-mt140,
.u-mt140--pc {
  margin-top: 140px !important;
}
.u-mb140,
.u-mb140--pc {
  margin-bottom: 140px !important;
}
.u-ml140,
.u-ml140--pc {
  margin-left: 140px !important;
}
.u-mr140,
.u-mr140--pc {
  margin-right: 140px !important;
}
.u-pt140,
.u-pt140--pc {
  padding-top: 140px !important;
}
.u-pb140,
.u-pb140--pc {
  padding-bottom: 140px !important;
}
.u-pl140,
.u-pl140--pc {
  padding-left: 140px !important;
}
.u-pr140,
.u-pr140--pc {
  padding-right: 140px !important;
}
.u-mt135,
.u-mt135--pc {
  margin-top: 135px !important;
}
.u-mb135,
.u-mb135--pc {
  margin-bottom: 135px !important;
}
.u-ml135,
.u-ml135--pc {
  margin-left: 135px !important;
}
.u-mr135,
.u-mr135--pc {
  margin-right: 135px !important;
}
.u-pt135,
.u-pt135--pc {
  padding-top: 135px !important;
}
.u-pb135,
.u-pb135--pc {
  padding-bottom: 135px !important;
}
.u-pl135,
.u-pl135--pc {
  padding-left: 135px !important;
}
.u-pr135,
.u-pr135--pc {
  padding-right: 135px !important;
}
.u-mt130,
.u-mt130--pc {
  margin-top: 130px !important;
}
.u-mb130,
.u-mb130--pc {
  margin-bottom: 130px !important;
}
.u-ml130,
.u-ml130--pc {
  margin-left: 130px !important;
}
.u-mr130,
.u-mr130--pc {
  margin-right: 130px !important;
}
.u-pt130,
.u-pt130--pc {
  padding-top: 130px !important;
}
.u-pb130,
.u-pb130--pc {
  padding-bottom: 130px !important;
}
.u-pl130,
.u-pl130--pc {
  padding-left: 130px !important;
}
.u-pr130,
.u-pr130--pc {
  padding-right: 130px !important;
}
.u-mt125,
.u-mt125--pc {
  margin-top: 125px !important;
}
.u-mb125,
.u-mb125--pc {
  margin-bottom: 125px !important;
}
.u-ml125,
.u-ml125--pc {
  margin-left: 125px !important;
}
.u-mr125,
.u-mr125--pc {
  margin-right: 125px !important;
}
.u-pt125,
.u-pt125--pc {
  padding-top: 125px !important;
}
.u-pb125,
.u-pb125--pc {
  padding-bottom: 125px !important;
}
.u-pl125,
.u-pl125--pc {
  padding-left: 125px !important;
}
.u-pr125,
.u-pr125--pc {
  padding-right: 125px !important;
}
.u-mt120,
.u-mt120--pc {
  margin-top: 120px !important;
}
.u-mb120,
.u-mb120--pc {
  margin-bottom: 120px !important;
}
.u-ml120,
.u-ml120--pc {
  margin-left: 120px !important;
}
.u-mr120,
.u-mr120--pc {
  margin-right: 120px !important;
}
.u-pt120,
.u-pt120--pc {
  padding-top: 120px !important;
}
.u-pb120,
.u-pb120--pc {
  padding-bottom: 120px !important;
}
.u-pl120,
.u-pl120--pc {
  padding-left: 120px !important;
}
.u-pr120,
.u-pr120--pc {
  padding-right: 120px !important;
}
.u-mt115,
.u-mt115--pc {
  margin-top: 115px !important;
}
.u-mb115,
.u-mb115--pc {
  margin-bottom: 115px !important;
}
.u-ml115,
.u-ml115--pc {
  margin-left: 115px !important;
}
.u-mr115,
.u-mr115--pc {
  margin-right: 115px !important;
}
.u-pt115,
.u-pt115--pc {
  padding-top: 115px !important;
}
.u-pb115,
.u-pb115--pc {
  padding-bottom: 115px !important;
}
.u-pl115,
.u-pl115--pc {
  padding-left: 115px !important;
}
.u-pr115,
.u-pr115--pc {
  padding-right: 115px !important;
}
.u-mt110,
.u-mt110--pc {
  margin-top: 110px !important;
}
.u-mb110,
.u-mb110--pc {
  margin-bottom: 110px !important;
}
.u-ml110,
.u-ml110--pc {
  margin-left: 110px !important;
}
.u-mr110,
.u-mr110--pc {
  margin-right: 110px !important;
}
.u-pt110,
.u-pt110--pc {
  padding-top: 110px !important;
}
.u-pb110,
.u-pb110--pc {
  padding-bottom: 110px !important;
}
.u-pl110,
.u-pl110--pc {
  padding-left: 110px !important;
}
.u-pr110,
.u-pr110--pc {
  padding-right: 110px !important;
}
.u-mt105,
.u-mt105--pc {
  margin-top: 105px !important;
}
.u-mb105,
.u-mb105--pc {
  margin-bottom: 105px !important;
}
.u-ml105,
.u-ml105--pc {
  margin-left: 105px !important;
}
.u-mr105,
.u-mr105--pc {
  margin-right: 105px !important;
}
.u-pt105,
.u-pt105--pc {
  padding-top: 105px !important;
}
.u-pb105,
.u-pb105--pc {
  padding-bottom: 105px !important;
}
.u-pl105,
.u-pl105--pc {
  padding-left: 105px !important;
}
.u-pr105,
.u-pr105--pc {
  padding-right: 105px !important;
}
.u-mt100,
.u-mt100--pc {
  margin-top: 100px !important;
}
.u-mb100,
.u-mb100--pc {
  margin-bottom: 100px !important;
}
.u-ml100,
.u-ml100--pc {
  margin-left: 100px !important;
}
.u-mr100,
.u-mr100--pc {
  margin-right: 100px !important;
}
.u-pt100,
.u-pt100--pc {
  padding-top: 100px !important;
}
.u-pb100,
.u-pb100--pc {
  padding-bottom: 100px !important;
}
.u-pl100,
.u-pl100--pc {
  padding-left: 100px !important;
}
.u-pr100,
.u-pr100--pc {
  padding-right: 100px !important;
}
.u-mt95,
.u-mt95--pc {
  margin-top: 95px !important;
}
.u-mb95,
.u-mb95--pc {
  margin-bottom: 95px !important;
}
.u-ml95,
.u-ml95--pc {
  margin-left: 95px !important;
}
.u-mr95,
.u-mr95--pc {
  margin-right: 95px !important;
}
.u-pt95,
.u-pt95--pc {
  padding-top: 95px !important;
}
.u-pb95,
.u-pb95--pc {
  padding-bottom: 95px !important;
}
.u-pl95,
.u-pl95--pc {
  padding-left: 95px !important;
}
.u-pr95,
.u-pr95--pc {
  padding-right: 95px !important;
}
.u-mt90,
.u-mt90--pc {
  margin-top: 90px !important;
}
.u-mb90,
.u-mb90--pc {
  margin-bottom: 90px !important;
}
.u-ml90,
.u-ml90--pc {
  margin-left: 90px !important;
}
.u-mr90,
.u-mr90--pc {
  margin-right: 90px !important;
}
.u-pt90,
.u-pt90--pc {
  padding-top: 90px !important;
}
.u-pb90,
.u-pb90--pc {
  padding-bottom: 90px !important;
}
.u-pl90,
.u-pl90--pc {
  padding-left: 90px !important;
}
.u-pr90,
.u-pr90--pc {
  padding-right: 90px !important;
}
.u-mt85,
.u-mt85--pc {
  margin-top: 85px !important;
}
.u-mb85,
.u-mb85--pc {
  margin-bottom: 85px !important;
}
.u-ml85,
.u-ml85--pc {
  margin-left: 85px !important;
}
.u-mr85,
.u-mr85--pc {
  margin-right: 85px !important;
}
.u-pt85,
.u-pt85--pc {
  padding-top: 85px !important;
}
.u-pb85,
.u-pb85--pc {
  padding-bottom: 85px !important;
}
.u-pl85,
.u-pl85--pc {
  padding-left: 85px !important;
}
.u-pr85,
.u-pr85--pc {
  padding-right: 85px !important;
}
.u-mt80,
.u-mt80--pc {
  margin-top: 80px !important;
}
.u-mb80,
.u-mb80--pc {
  margin-bottom: 80px !important;
}
.u-ml80,
.u-ml80--pc {
  margin-left: 80px !important;
}
.u-mr80,
.u-mr80--pc {
  margin-right: 80px !important;
}
.u-pt80,
.u-pt80--pc {
  padding-top: 80px !important;
}
.u-pb80,
.u-pb80--pc {
  padding-bottom: 80px !important;
}
.u-pl80,
.u-pl80--pc {
  padding-left: 80px !important;
}
.u-pr80,
.u-pr80--pc {
  padding-right: 80px !important;
}
.u-mt75,
.u-mt75--pc {
  margin-top: 75px !important;
}
.u-mb75,
.u-mb75--pc {
  margin-bottom: 75px !important;
}
.u-ml75,
.u-ml75--pc {
  margin-left: 75px !important;
}
.u-mr75,
.u-mr75--pc {
  margin-right: 75px !important;
}
.u-pt75,
.u-pt75--pc {
  padding-top: 75px !important;
}
.u-pb75,
.u-pb75--pc {
  padding-bottom: 75px !important;
}
.u-pl75,
.u-pl75--pc {
  padding-left: 75px !important;
}
.u-pr75,
.u-pr75--pc {
  padding-right: 75px !important;
}
.u-mt70,
.u-mt70--pc {
  margin-top: 70px !important;
}
.u-mb70,
.u-mb70--pc {
  margin-bottom: 70px !important;
}
.u-ml70,
.u-ml70--pc {
  margin-left: 70px !important;
}
.u-mr70,
.u-mr70--pc {
  margin-right: 70px !important;
}
.u-pt70,
.u-pt70--pc {
  padding-top: 70px !important;
}
.u-pb70,
.u-pb70--pc {
  padding-bottom: 70px !important;
}
.u-pl70,
.u-pl70--pc {
  padding-left: 70px !important;
}
.u-pr70,
.u-pr70--pc {
  padding-right: 70px !important;
}
.u-mt65,
.u-mt65--pc {
  margin-top: 65px !important;
}
.u-mb65,
.u-mb65--pc {
  margin-bottom: 65px !important;
}
.u-ml65,
.u-ml65--pc {
  margin-left: 65px !important;
}
.u-mr65,
.u-mr65--pc {
  margin-right: 65px !important;
}
.u-pt65,
.u-pt65--pc {
  padding-top: 65px !important;
}
.u-pb65,
.u-pb65--pc {
  padding-bottom: 65px !important;
}
.u-pl65,
.u-pl65--pc {
  padding-left: 65px !important;
}
.u-pr65,
.u-pr65--pc {
  padding-right: 65px !important;
}
.u-mt60,
.u-mt60--pc {
  margin-top: 60px !important;
}
.u-mb60,
.u-mb60--pc {
  margin-bottom: 60px !important;
}
.u-ml60,
.u-ml60--pc {
  margin-left: 60px !important;
}
.u-mr60,
.u-mr60--pc {
  margin-right: 60px !important;
}
.u-pt60,
.u-pt60--pc {
  padding-top: 60px !important;
}
.u-pb60,
.u-pb60--pc {
  padding-bottom: 60px !important;
}
.u-pl60,
.u-pl60--pc {
  padding-left: 60px !important;
}
.u-pr60,
.u-pr60--pc {
  padding-right: 60px !important;
}
.u-mt55,
.u-mt55--pc {
  margin-top: 55px !important;
}
.u-mb55,
.u-mb55--pc {
  margin-bottom: 55px !important;
}
.u-ml55,
.u-ml55--pc {
  margin-left: 55px !important;
}
.u-mr55,
.u-mr55--pc {
  margin-right: 55px !important;
}
.u-pt55,
.u-pt55--pc {
  padding-top: 55px !important;
}
.u-pb55,
.u-pb55--pc {
  padding-bottom: 55px !important;
}
.u-pl55,
.u-pl55--pc {
  padding-left: 55px !important;
}
.u-pr55,
.u-pr55--pc {
  padding-right: 55px !important;
}
.u-mt50,
.u-mt50--pc {
  margin-top: 50px !important;
}
.u-mb50,
.u-mb50--pc {
  margin-bottom: 50px !important;
}
.u-ml50,
.u-ml50--pc {
  margin-left: 50px !important;
}
.u-mr50,
.u-mr50--pc {
  margin-right: 50px !important;
}
.u-pt50,
.u-pt50--pc {
  padding-top: 50px !important;
}
.u-pb50,
.u-pb50--pc {
  padding-bottom: 50px !important;
}
.u-pl50,
.u-pl50--pc {
  padding-left: 50px !important;
}
.u-pr50,
.u-pr50--pc {
  padding-right: 50px !important;
}
.u-mt45,
.u-mt45--pc {
  margin-top: 45px !important;
}
.u-mb45,
.u-mb45--pc {
  margin-bottom: 45px !important;
}
.u-ml45,
.u-ml45--pc {
  margin-left: 45px !important;
}
.u-mr45,
.u-mr45--pc {
  margin-right: 45px !important;
}
.u-pt45,
.u-pt45--pc {
  padding-top: 45px !important;
}
.u-pb45,
.u-pb45--pc {
  padding-bottom: 45px !important;
}
.u-pl45,
.u-pl45--pc {
  padding-left: 45px !important;
}
.u-pr45,
.u-pr45--pc {
  padding-right: 45px !important;
}
.u-mt40,
.u-mt40--pc {
  margin-top: 40px !important;
}
.u-mb40,
.u-mb40--pc {
  margin-bottom: 40px !important;
}
.u-ml40,
.u-ml40--pc {
  margin-left: 40px !important;
}
.u-mr40,
.u-mr40--pc {
  margin-right: 40px !important;
}
.u-pt40,
.u-pt40--pc {
  padding-top: 40px !important;
}
.u-pb40,
.u-pb40--pc {
  padding-bottom: 40px !important;
}
.u-pl40,
.u-pl40--pc {
  padding-left: 40px !important;
}
.u-pr40,
.u-pr40--pc {
  padding-right: 40px !important;
}
.u-mt35,
.u-mt35--pc {
  margin-top: 35px !important;
}
.u-mb35,
.u-mb35--pc {
  margin-bottom: 35px !important;
}
.u-ml35,
.u-ml35--pc {
  margin-left: 35px !important;
}
.u-mr35,
.u-mr35--pc {
  margin-right: 35px !important;
}
.u-pt35,
.u-pt35--pc {
  padding-top: 35px !important;
}
.u-pb35,
.u-pb35--pc {
  padding-bottom: 35px !important;
}
.u-pl35,
.u-pl35--pc {
  padding-left: 35px !important;
}
.u-pr35,
.u-pr35--pc {
  padding-right: 35px !important;
}
.u-mt30,
.u-mt30--pc {
  margin-top: 30px !important;
}
.u-mb30,
.u-mb30--pc {
  margin-bottom: 30px !important;
}
.u-ml30,
.u-ml30--pc {
  margin-left: 30px !important;
}
.u-mr30,
.u-mr30--pc {
  margin-right: 30px !important;
}
.u-pt30,
.u-pt30--pc {
  padding-top: 30px !important;
}
.u-pb30,
.u-pb30--pc {
  padding-bottom: 30px !important;
}
.u-pl30,
.u-pl30--pc {
  padding-left: 30px !important;
}
.u-pr30,
.u-pr30--pc {
  padding-right: 30px !important;
}
.u-mt25,
.u-mt25--pc {
  margin-top: 25px !important;
}
.u-mb25,
.u-mb25--pc {
  margin-bottom: 25px !important;
}
.u-ml25,
.u-ml25--pc {
  margin-left: 25px !important;
}
.u-mr25,
.u-mr25--pc {
  margin-right: 25px !important;
}
.u-pt25,
.u-pt25--pc {
  padding-top: 25px !important;
}
.u-pb25,
.u-pb25--pc {
  padding-bottom: 25px !important;
}
.u-pl25,
.u-pl25--pc {
  padding-left: 25px !important;
}
.u-pr25,
.u-pr25--pc {
  padding-right: 25px !important;
}
.u-mt20,
.u-mt20--pc {
  margin-top: 20px !important;
}
.u-mb20,
.u-mb20--pc {
  margin-bottom: 20px !important;
}
.u-ml20,
.u-ml20--pc {
  margin-left: 20px !important;
}
.u-mr20,
.u-mr20--pc {
  margin-right: 20px !important;
}
.u-pt20,
.u-pt20--pc {
  padding-top: 20px !important;
}
.u-pb20,
.u-pb20--pc {
  padding-bottom: 20px !important;
}
.u-pl20,
.u-pl20--pc {
  padding-left: 20px !important;
}
.u-pr20,
.u-pr20--pc {
  padding-right: 20px !important;
}
.u-mt15,
.u-mt15--pc {
  margin-top: 15px !important;
}
.u-mb15,
.u-mb15--pc {
  margin-bottom: 15px !important;
}
.u-ml15,
.u-ml15--pc {
  margin-left: 15px !important;
}
.u-mr15,
.u-mr15--pc {
  margin-right: 15px !important;
}
.u-pt15,
.u-pt15--pc {
  padding-top: 15px !important;
}
.u-pb15,
.u-pb15--pc {
  padding-bottom: 15px !important;
}
.u-pl15,
.u-pl15--pc {
  padding-left: 15px !important;
}
.u-pr15,
.u-pr15--pc {
  padding-right: 15px !important;
}
.u-mt10,
.u-mt10--pc {
  margin-top: 10px !important;
}
.u-mb10,
.u-mb10--pc {
  margin-bottom: 10px !important;
}
.u-ml10,
.u-ml10--pc {
  margin-left: 10px !important;
}
.u-mr10,
.u-mr10--pc {
  margin-right: 10px !important;
}
.u-pt10,
.u-pt10--pc {
  padding-top: 10px !important;
}
.u-pb10,
.u-pb10--pc {
  padding-bottom: 10px !important;
}
.u-pl10,
.u-pl10--pc {
  padding-left: 10px !important;
}
.u-pr10,
.u-pr10--pc {
  padding-right: 10px !important;
}
.u-mt5,
.u-mt5--pc {
  margin-top: 5px !important;
}
.u-mb5,
.u-mb5--pc {
  margin-bottom: 5px !important;
}
.u-ml5,
.u-ml5--pc {
  margin-left: 5px !important;
}
.u-mr5,
.u-mr5--pc {
  margin-right: 5px !important;
}
.u-pt5,
.u-pt5--pc {
  padding-top: 5px !important;
}
.u-pb5,
.u-pb5--pc {
  padding-bottom: 5px !important;
}
.u-pl5,
.u-pl5--pc {
  padding-left: 5px !important;
}
.u-pr5,
.u-pr5--pc {
  padding-right: 5px !important;
}
.u-mt0,
.u-mt0--pc {
  margin-top: 0px !important;
}
.u-mb0,
.u-mb0--pc {
  margin-bottom: 0px !important;
}
.u-ml0,
.u-ml0--pc {
  margin-left: 0px !important;
}
.u-mr0,
.u-mr0--pc {
  margin-right: 0px !important;
}
.u-pt0,
.u-pt0--pc {
  padding-top: 0px !important;
}
.u-pb0,
.u-pb0--pc {
  padding-bottom: 0px !important;
}
.u-pl0,
.u-pl0--pc {
  padding-left: 0px !important;
}
.u-pr0,
.u-pr0--pc {
  padding-right: 0px !important;
}
.width_per1 {
  width: 1%;
}
.width_per2 {
  width: 2%;
}
.width_per3 {
  width: 3%;
}
.width_per4 {
  width: 4%;
}
.width_per5 {
  width: 5%;
}
.width_per6 {
  width: 6%;
}
.width_per7 {
  width: 7%;
}
.width_per8 {
  width: 8%;
}
.width_per9 {
  width: 9%;
}
.width_per10 {
  width: 10%;
}
.width_per11 {
  width: 11%;
}
.width_per12 {
  width: 12%;
}
.width_per13 {
  width: 13%;
}
.width_per14 {
  width: 14%;
}
.width_per15 {
  width: 15%;
}
.width_per16 {
  width: 16%;
}
.width_per17 {
  width: 17%;
}
.width_per18 {
  width: 18%;
}
.width_per19 {
  width: 19%;
}
.width_per20 {
  width: 20%;
}
.width_per21 {
  width: 21%;
}
.width_per22 {
  width: 22%;
}
.width_per23 {
  width: 23%;
}
.width_per24 {
  width: 24%;
}
.width_per25 {
  width: 25%;
}
.width_per26 {
  width: 26%;
}
.width_per27 {
  width: 27%;
}
.width_per28 {
  width: 28%;
}
.width_per29 {
  width: 29%;
}
.width_per30 {
  width: 30%;
}
.width_per31 {
  width: 31%;
}
.width_per32 {
  width: 32%;
}
.width_per33 {
  width: 33%;
}
.width_per34 {
  width: 34%;
}
.width_per35 {
  width: 35%;
}
.width_per36 {
  width: 36%;
}
.width_per37 {
  width: 37%;
}
.width_per38 {
  width: 38%;
}
.width_per39 {
  width: 39%;
}
.width_per40 {
  width: 40%;
}
.width_per41 {
  width: 41%;
}
.width_per42 {
  width: 42%;
}
.width_per43 {
  width: 43%;
}
.width_per44 {
  width: 44%;
}
.width_per45 {
  width: 45%;
}
.width_per46 {
  width: 46%;
}
.width_per47 {
  width: 47%;
}
.width_per48 {
  width: 48%;
}
.width_per49 {
  width: 49%;
}
.width_per50 {
  width: 50%;
}
.width_per51 {
  width: 51%;
}
.width_per52 {
  width: 52%;
}
.width_per53 {
  width: 53%;
}
.width_per54 {
  width: 54%;
}
.width_per55 {
  width: 55%;
}
.width_per56 {
  width: 56%;
}
.width_per57 {
  width: 57%;
}
.width_per58 {
  width: 58%;
}
.width_per59 {
  width: 59%;
}
.width_per60 {
  width: 60%;
}
.width_per61 {
  width: 61%;
}
.width_per62 {
  width: 62%;
}
.width_per63 {
  width: 63%;
}
.width_per64 {
  width: 64%;
}
.width_per65 {
  width: 65%;
}
.width_per66 {
  width: 66%;
}
.width_per67 {
  width: 67%;
}
.width_per68 {
  width: 68%;
}
.width_per69 {
  width: 69%;
}
.width_per70 {
  width: 70%;
}
.width_per71 {
  width: 71%;
}
.width_per72 {
  width: 72%;
}
.width_per73 {
  width: 73%;
}
.width_per74 {
  width: 74%;
}
.width_per75 {
  width: 75%;
}
.width_per76 {
  width: 76%;
}
.width_per77 {
  width: 77%;
}
.width_per78 {
  width: 78%;
}
.width_per79 {
  width: 79%;
}
.width_per80 {
  width: 80%;
}
.width_per81 {
  width: 81%;
}
.width_per82 {
  width: 82%;
}
.width_per83 {
  width: 83%;
}
.width_per84 {
  width: 84%;
}
.width_per85 {
  width: 85%;
}
.width_per86 {
  width: 86%;
}
.width_per87 {
  width: 87%;
}
.width_per88 {
  width: 88%;
}
.width_per89 {
  width: 89%;
}
.width_per90 {
  width: 90%;
}
.width_per91 {
  width: 91%;
}
.width_per92 {
  width: 92%;
}
.width_per93 {
  width: 93%;
}
.width_per94 {
  width: 94%;
}
.width_per95 {
  width: 95%;
}
.width_per96 {
  width: 96%;
}
.width_per97 {
  width: 97%;
}
.width_per98 {
  width: 98%;
}
.width_per99 {
  width: 99%;
}
.width_per100 {
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    transform: none;
    background: rgba(0,0,0,0.7);
  }
  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .md-gd-3 {
    width: 260px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .md-gd-3_item {
    width: 120px;
    margin: 20px 0 0 20px;
  }
  .md-gd-3_item:nth-of-type(2n+1) {
    margin-left: 0;
  }
  .md-title2 .md-title2_head {
    font-size: 35px;
    margin-bottom: 70px;
    line-height: 1.35;
  }
  .md-title3 .md-title3_head {
    font-size: 24px;
  }
  .md-title4 .md-title4_head {
    text-align: left;
  }
  .md-title6 {
    padding: 7px;
  }
  .md-title6 {
    max-width: 212px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .md-titlePoint {
    padding-top: 40px;
    position: relative;
  }
  .md-titlePoint .md-titlePoint_head {
    padding-bottom: 5px;
    line-height: 1.8;
    font-size: 26px;
  }
  .md-titlePoint .md-titlePoint_head:before {
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    background-image: url("/assets/img/common/tag_point_sp.png?jraodds25sum");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 99px;
    height: 30px;
  }
  .fk-ft--xl {
    font-size: 24px;
  }
  .fk-ft--l {
    font-size: 16px;
  }
  .fk-ft--m {
    font-size: 14px;
  }
  .fk-ft--s {
    font-size: 12px;
  }
  .fk-ft--xs {
    font-size: 10px;
  }
  .fk-ft--xxs {
    font-size: 8px;
  }
  .md-txt2 {
    font-size: 13px;
  }
  .md-txt3 {
    font-size: 12px;
  }
  .md-txt4 {
    font-size: 17px;
  }
  .md-read1 {
    line-height: 1.625;
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 14px;
    letter-spacing: 0.08em;
  }
  .md-read1-note {
    font-size: 10px;
    line-height: 1.6;
  }
  .md-read2 {
    text-align: left;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 40px;
    margin-top: 14px;
  }
  .md-read--close {
    padding: 5px;
    width: 295px;
    font-size: 14px;
    border: 1px solid #f6f6f6;
  }
  .md-txtLink2 {
    width: 265px;
    margin: 0 auto;
    font-size: 17px;
  }
  .md-txtLink2 a {
    width: 100%;
    display: block;
  }
  .md-note1 .md-note1_item {
    font-size: 10px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.6;
  }
  .md-note2 .md-note2_item {
    font-size: 10px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.6;
  }
  .md-note2_title {
    font-size: 10px;
  }
  .md-note3 {
    text-align: left;
  }
  .md-note4 {
    text-align: left;
  }
  .md-note4 .md-note4_item {
    text-indent: -1em;
    padding-left: 1em;
  }
  .md-note5 .md-note5_item {
    text-indent: -1em;
    padding-left: 1em;
  }
  .md-olList .md-olList_item {
    font-size: 14px;
    line-height: 1.857142857142857;
  }
  .md-btn01 {
    width: 259.5px;
    height: 60px;
    font-size: 15px;
  }
  .md-btn01 span.md-btn01_txt-s {
    font-size: 12px;
  }
  .md-btn01-large {
    width: 290px;
    height: 69px;
    font-size: 23px;
    background-image: url("/assets/img/common/btn_bg_entry_sp.png?jraodds25sum");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .md-btn01-l {
    line-height: 1.35;
  }
  .md-btn01-middle {
    width: 270px;
    height: 55px;
    font-size: 16px;
    line-height: 1.18;
    background-image: url("/assets/img/common/btn_bg_01_middle_sp.png?jraodds25sum");
    background-repeat: no-repeat;
  }
  .md-btn01-x-large {
    width: 230px;
    height: 55px;
    font-size: 16px;
    line-height: 1.18;
    background-image: url("/assets/img/common/btn_bg_01_x-large_sp.png?jraodds25sum");
    background-repeat: no-repeat;
  }
  .md-btn01 .md-btn01_txt-s {
    font-size: 12px;
  }
  .md-btnArea1 .md-btnArea1_arrow {
    width: 32px;
  }
  .md-btn02 {
    width: 203px;
    height: 36px;
    font-size: 12px;
  }
  .md-table1 th {
    width: 80px;
    font-size: 13px;
    padding: 20px 0;
  }
  .md-table1 td {
    font-size: 13px;
    padding: 20px 15px;
  }
  .md-table5 th {
    width: 80px;
    font-size: 13px;
    padding: 20px 0 20px 10px;
  }
  .md-table5 td {
    font-size: 13px;
    padding: 20px 15px;
  }
  .md-table2Block .md-table2 .md-table2_th {
    font-size: 12px;
    padding: 3px 5px;
  }
  .md-table2Block .md-table2 .md-table2_td {
    font-size: 12px;
    padding: 3.5px 3.5px;
    letter-spacing: 0.05em;
  }
  .md-table2Block--login .md-table2 {
    border: 1px solid #646464;
  }
  .md-table2Block--login .md-table2_th {
    font-size: 12px;
  }
  .md-table2Block--login .md-table2_td.md-table2_arw:after {
    border-width: 6px 0 6px 8px;
    right: -5px;
  }
  .md-table3 th {
    width: 55px;
    font-size: 13px;
    padding: 10px 0;
  }
  .md-table3 td {
    font-size: 13px;
    padding: 6px 5px;
  }
  .md-table-modal {
    margin: 0 auto;
    border-top: 1px solid #303030;
  }
  .md-table-modal th {
    width: 80px;
    font-size: 13px;
    padding: 8px 0;
  }
  .md-table-modal td {
    font-size: 12px;
    padding: 26px 0 0;
  }
  .md-table-modal tr th:nth-of-type(1),
  .md-table-modal tr td:nth-of-type(1) {
    width: 40px;
    display: inline-block;
    width: 60px;
    position: relative;
  }
  .md-table-modal tr th:nth-of-type(1) span,
  .md-table-modal tr td:nth-of-type(1) span {
    position: absolute;
    top: -1px;
    left: 32px;
    width: 60px;
  }
  .md-table-modal tr th:nth-of-type(1) .my-checkbox::before,
  .md-table-modal tr td:nth-of-type(1) .my-checkbox::before {
    position: static;
    margin: 0;
  }
  .md-table-modal tr th:nth-of-type(2),
  .md-table-modal tr td:nth-of-type(2) {
    display: inline-block;
    width: 60px;
  }
  .md-table-modal tr th:nth-of-type(3),
  .md-table-modal tr td:nth-of-type(3) {
    padding-left: 10px;
    width: 215px;
    display: block;
  }
  .md-table-modal tr th {
    font-size: 14px;
  }
  .md-table-modal tr td:nth-of-type(2) {
    font-size: 11px;
  }
  .md-table-modal tr td:nth-of-type(3) {
    padding: 11px 0 26px;
    line-height: 1.6;
  }
  .md-table3 th {
    width: 80px;
    font-size: 13px;
    padding: 20px 0;
  }
  .md-table3 td {
    font-size: 13px;
    padding: 10px 8px;
  }
  .md-table4 {
    width: 100%;
  }
  .md-table4 .md-table4_th {
    width: 65px;
    font-size: 13px;
    padding: 5px 20px;
  }
  .md-table4 .md-table4_td {
    font-size: 12px;
    padding: 13px 15px;
  }
  .md-table2Block--asymmetric .md-table-bg {
    width: 160px;
  }
  .md-table2Block--asymmetric .md-table-left_td,
  .md-table2Block--asymmetric .md-table-right_td {
    font-size: 12px;
    padding: 12px 9px;
  }
  .md-table2Block--asymmetric .md-table-left_td.md-table_arw::after,
  .md-table2Block--asymmetric .md-table-right_td.md-table_arw::after {
    width: 21px;
    height: 14px;
    right: -13px;
  }
  .md-table2Block--asymmetric .md-table-left {
    width: 130px;
    margin-top: 10px;
  }
  .md-table2Block--asymmetric .md-table-left_th {
    padding: 7px 15px;
    font-size: 13px;
    line-height: 1.4;
  }
  .md-table2Block--asymmetric .md-table-left_td {
    padding: 10px 5px 11px;
    font-size: 10px;
  }
  .md-table2Block--asymmetric .md-table-right {
    width: 130px;
    margin: 0 15px 20px 15px;
  }
  .md-table2Block--asymmetric .md-table-right_th {
    padding: 11px 15px;
    font-size: 15px;
    line-height: 1.3;
  }
  .md-table2Block--asymmetric .md-table-right_td {
    padding: 10px 9px;
    font-size: 11px;
  }
  .md-table2Block--asymmetric .md-txt3 {
    padding-top: 18px;
    line-height: 1.7;
  }
  .table-title {
    width: 90px;
    margin: 0 auto 25px;
    font-size: 13px;
  }
  .table-title02 {
    padding-top: 40px;
  }
  .login-table_head {
    font-size: 16px;
  }
  .md-imgBox {
    margin-top: 30px;
  }
  .md-imgPoint {
    width: 68px;
    margin: 0 auto;
  }
  .md-block1 {
    width: auto;
    margin-bottom: 15px;
    border: 2px solid #000;
  }
  .md-flow .md-flowBlock {
    margin-bottom: 75px;
  }
  .md-flow .md-flowBlock:last-child {
    margin-bottom: 0;
  }
  .md-flow .md-flowBlock .md-flowBlock_wrap {
    margin: 0 auto;
  }
  .md-flow .md-flowBlock .md-flowBlock_img {
    margin-bottom: 12px;
  }
  .md-wrap980 {
    width: 335px;
  }
  .md-wrap1016 {
    width: 335px;
  }
  .md-wrap1018 {
    width: 335px;
  }
  .md-bg-layout_inner {
    padding: 0 15px 20px;
  }
  .md-flow2_item {
    border: 4.5px solid #0084d0;
    box-shadow: 0 4px #000;
    padding: 25px 0;
  }
  .md-flow2_item + .md-flow2_item {
    margin-top: 73px;
  }
  .md-flow2_item + .md-flow2_item::before {
    top: -43px;
  }
  .md-flow2_heading {
    width: 42px;
    top: 6px;
    left: 6px;
  }
  .md-flow2_title {
    font-size: 17px;
    line-height: 1.470588235294118;
  }
  .md-flow2_text {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.5;
  }
  .md-triangle-box {
    padding: 20px 20px 16px;
    border: 4.5px solid #83fcfc;
    box-shadow: 0 4px #000;
  }
  .md-triangle-box--bg {
    background-image: url("/assets/img/common/bg_white_sp.png?jraodds25sum");
  }
  .md-triangle-box_heading {
    width: 48px;
    margin-bottom: 16px;
  }
  .md-triangle-box_text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.025em;
  }
  .md-triangle-box_text2 {
    font-size: 12px;
    line-height: 1.916666666666667;
    letter-spacing: 0.05em;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__title {
    padding: 12px 20px;
    font-size: fs14;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__title::after {
    right: 20px;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__body {
    padding: 20px;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__body .box-gray {
    font-size: fs14;
    margin-bottom: 16px;
    padding: 5.084745762711865%;
  }
  .cards {
    margin-top: 16px;
    text-align: center;
    position: relative;
    padding-top: 14.545454545454545%;
  }
  .cards img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .fk-accordion.fk-accordion--payment.fk-accordion--closed .fk-accordion__title::after {
    right: 20px;
  }
  .fk-modalElement__closeBtn {
    float: right;
  }
  #fk-modalView {
    width: 90%;
  }
  #fk-modalView img {
    width: 100%;
  }
  .fk-modalElement__closeBtn {
    float: right;
  }
  #fk-modalView {
    width: 90%;
  }
  #fk-modalView img {
    width: 100%;
  }
  .pcOnly {
    display: none !important;
  }
  .u-mt150--sp {
    margin-top: 150px !important;
  }
  .u-mb150--sp {
    margin-bottom: 150px !important;
  }
  .u-ml150--sp {
    margin-left: 150px !important;
  }
  .u-mr150--sp {
    margin-right: 150px !important;
  }
  .u-pt150--sp {
    padding-top: 150px !important;
  }
  .u-pb150--sp {
    padding-bottom: 150px !important;
  }
  .u-pl150--sp {
    padding-left: 150px !important;
  }
  .u-pr150--sp {
    padding-right: 150px !important;
  }
  .u-mt145--sp {
    margin-top: 145px !important;
  }
  .u-mb145--sp {
    margin-bottom: 145px !important;
  }
  .u-ml145--sp {
    margin-left: 145px !important;
  }
  .u-mr145--sp {
    margin-right: 145px !important;
  }
  .u-pt145--sp {
    padding-top: 145px !important;
  }
  .u-pb145--sp {
    padding-bottom: 145px !important;
  }
  .u-pl145--sp {
    padding-left: 145px !important;
  }
  .u-pr145--sp {
    padding-right: 145px !important;
  }
  .u-mt140--sp {
    margin-top: 140px !important;
  }
  .u-mb140--sp {
    margin-bottom: 140px !important;
  }
  .u-ml140--sp {
    margin-left: 140px !important;
  }
  .u-mr140--sp {
    margin-right: 140px !important;
  }
  .u-pt140--sp {
    padding-top: 140px !important;
  }
  .u-pb140--sp {
    padding-bottom: 140px !important;
  }
  .u-pl140--sp {
    padding-left: 140px !important;
  }
  .u-pr140--sp {
    padding-right: 140px !important;
  }
  .u-mt135--sp {
    margin-top: 135px !important;
  }
  .u-mb135--sp {
    margin-bottom: 135px !important;
  }
  .u-ml135--sp {
    margin-left: 135px !important;
  }
  .u-mr135--sp {
    margin-right: 135px !important;
  }
  .u-pt135--sp {
    padding-top: 135px !important;
  }
  .u-pb135--sp {
    padding-bottom: 135px !important;
  }
  .u-pl135--sp {
    padding-left: 135px !important;
  }
  .u-pr135--sp {
    padding-right: 135px !important;
  }
  .u-mt130--sp {
    margin-top: 130px !important;
  }
  .u-mb130--sp {
    margin-bottom: 130px !important;
  }
  .u-ml130--sp {
    margin-left: 130px !important;
  }
  .u-mr130--sp {
    margin-right: 130px !important;
  }
  .u-pt130--sp {
    padding-top: 130px !important;
  }
  .u-pb130--sp {
    padding-bottom: 130px !important;
  }
  .u-pl130--sp {
    padding-left: 130px !important;
  }
  .u-pr130--sp {
    padding-right: 130px !important;
  }
  .u-mt125--sp {
    margin-top: 125px !important;
  }
  .u-mb125--sp {
    margin-bottom: 125px !important;
  }
  .u-ml125--sp {
    margin-left: 125px !important;
  }
  .u-mr125--sp {
    margin-right: 125px !important;
  }
  .u-pt125--sp {
    padding-top: 125px !important;
  }
  .u-pb125--sp {
    padding-bottom: 125px !important;
  }
  .u-pl125--sp {
    padding-left: 125px !important;
  }
  .u-pr125--sp {
    padding-right: 125px !important;
  }
  .u-mt120--sp {
    margin-top: 120px !important;
  }
  .u-mb120--sp {
    margin-bottom: 120px !important;
  }
  .u-ml120--sp {
    margin-left: 120px !important;
  }
  .u-mr120--sp {
    margin-right: 120px !important;
  }
  .u-pt120--sp {
    padding-top: 120px !important;
  }
  .u-pb120--sp {
    padding-bottom: 120px !important;
  }
  .u-pl120--sp {
    padding-left: 120px !important;
  }
  .u-pr120--sp {
    padding-right: 120px !important;
  }
  .u-mt115--sp {
    margin-top: 115px !important;
  }
  .u-mb115--sp {
    margin-bottom: 115px !important;
  }
  .u-ml115--sp {
    margin-left: 115px !important;
  }
  .u-mr115--sp {
    margin-right: 115px !important;
  }
  .u-pt115--sp {
    padding-top: 115px !important;
  }
  .u-pb115--sp {
    padding-bottom: 115px !important;
  }
  .u-pl115--sp {
    padding-left: 115px !important;
  }
  .u-pr115--sp {
    padding-right: 115px !important;
  }
  .u-mt110--sp {
    margin-top: 110px !important;
  }
  .u-mb110--sp {
    margin-bottom: 110px !important;
  }
  .u-ml110--sp {
    margin-left: 110px !important;
  }
  .u-mr110--sp {
    margin-right: 110px !important;
  }
  .u-pt110--sp {
    padding-top: 110px !important;
  }
  .u-pb110--sp {
    padding-bottom: 110px !important;
  }
  .u-pl110--sp {
    padding-left: 110px !important;
  }
  .u-pr110--sp {
    padding-right: 110px !important;
  }
  .u-mt105--sp {
    margin-top: 105px !important;
  }
  .u-mb105--sp {
    margin-bottom: 105px !important;
  }
  .u-ml105--sp {
    margin-left: 105px !important;
  }
  .u-mr105--sp {
    margin-right: 105px !important;
  }
  .u-pt105--sp {
    padding-top: 105px !important;
  }
  .u-pb105--sp {
    padding-bottom: 105px !important;
  }
  .u-pl105--sp {
    padding-left: 105px !important;
  }
  .u-pr105--sp {
    padding-right: 105px !important;
  }
  .u-mt100--sp {
    margin-top: 100px !important;
  }
  .u-mb100--sp {
    margin-bottom: 100px !important;
  }
  .u-ml100--sp {
    margin-left: 100px !important;
  }
  .u-mr100--sp {
    margin-right: 100px !important;
  }
  .u-pt100--sp {
    padding-top: 100px !important;
  }
  .u-pb100--sp {
    padding-bottom: 100px !important;
  }
  .u-pl100--sp {
    padding-left: 100px !important;
  }
  .u-pr100--sp {
    padding-right: 100px !important;
  }
  .u-mt95--sp {
    margin-top: 95px !important;
  }
  .u-mb95--sp {
    margin-bottom: 95px !important;
  }
  .u-ml95--sp {
    margin-left: 95px !important;
  }
  .u-mr95--sp {
    margin-right: 95px !important;
  }
  .u-pt95--sp {
    padding-top: 95px !important;
  }
  .u-pb95--sp {
    padding-bottom: 95px !important;
  }
  .u-pl95--sp {
    padding-left: 95px !important;
  }
  .u-pr95--sp {
    padding-right: 95px !important;
  }
  .u-mt90--sp {
    margin-top: 90px !important;
  }
  .u-mb90--sp {
    margin-bottom: 90px !important;
  }
  .u-ml90--sp {
    margin-left: 90px !important;
  }
  .u-mr90--sp {
    margin-right: 90px !important;
  }
  .u-pt90--sp {
    padding-top: 90px !important;
  }
  .u-pb90--sp {
    padding-bottom: 90px !important;
  }
  .u-pl90--sp {
    padding-left: 90px !important;
  }
  .u-pr90--sp {
    padding-right: 90px !important;
  }
  .u-mt85--sp {
    margin-top: 85px !important;
  }
  .u-mb85--sp {
    margin-bottom: 85px !important;
  }
  .u-ml85--sp {
    margin-left: 85px !important;
  }
  .u-mr85--sp {
    margin-right: 85px !important;
  }
  .u-pt85--sp {
    padding-top: 85px !important;
  }
  .u-pb85--sp {
    padding-bottom: 85px !important;
  }
  .u-pl85--sp {
    padding-left: 85px !important;
  }
  .u-pr85--sp {
    padding-right: 85px !important;
  }
  .u-mt80--sp {
    margin-top: 80px !important;
  }
  .u-mb80--sp {
    margin-bottom: 80px !important;
  }
  .u-ml80--sp {
    margin-left: 80px !important;
  }
  .u-mr80--sp {
    margin-right: 80px !important;
  }
  .u-pt80--sp {
    padding-top: 80px !important;
  }
  .u-pb80--sp {
    padding-bottom: 80px !important;
  }
  .u-pl80--sp {
    padding-left: 80px !important;
  }
  .u-pr80--sp {
    padding-right: 80px !important;
  }
  .u-mt75--sp {
    margin-top: 75px !important;
  }
  .u-mb75--sp {
    margin-bottom: 75px !important;
  }
  .u-ml75--sp {
    margin-left: 75px !important;
  }
  .u-mr75--sp {
    margin-right: 75px !important;
  }
  .u-pt75--sp {
    padding-top: 75px !important;
  }
  .u-pb75--sp {
    padding-bottom: 75px !important;
  }
  .u-pl75--sp {
    padding-left: 75px !important;
  }
  .u-pr75--sp {
    padding-right: 75px !important;
  }
  .u-mt70--sp {
    margin-top: 70px !important;
  }
  .u-mb70--sp {
    margin-bottom: 70px !important;
  }
  .u-ml70--sp {
    margin-left: 70px !important;
  }
  .u-mr70--sp {
    margin-right: 70px !important;
  }
  .u-pt70--sp {
    padding-top: 70px !important;
  }
  .u-pb70--sp {
    padding-bottom: 70px !important;
  }
  .u-pl70--sp {
    padding-left: 70px !important;
  }
  .u-pr70--sp {
    padding-right: 70px !important;
  }
  .u-mt65--sp {
    margin-top: 65px !important;
  }
  .u-mb65--sp {
    margin-bottom: 65px !important;
  }
  .u-ml65--sp {
    margin-left: 65px !important;
  }
  .u-mr65--sp {
    margin-right: 65px !important;
  }
  .u-pt65--sp {
    padding-top: 65px !important;
  }
  .u-pb65--sp {
    padding-bottom: 65px !important;
  }
  .u-pl65--sp {
    padding-left: 65px !important;
  }
  .u-pr65--sp {
    padding-right: 65px !important;
  }
  .u-mt60--sp {
    margin-top: 60px !important;
  }
  .u-mb60--sp {
    margin-bottom: 60px !important;
  }
  .u-ml60--sp {
    margin-left: 60px !important;
  }
  .u-mr60--sp {
    margin-right: 60px !important;
  }
  .u-pt60--sp {
    padding-top: 60px !important;
  }
  .u-pb60--sp {
    padding-bottom: 60px !important;
  }
  .u-pl60--sp {
    padding-left: 60px !important;
  }
  .u-pr60--sp {
    padding-right: 60px !important;
  }
  .u-mt55--sp {
    margin-top: 55px !important;
  }
  .u-mb55--sp {
    margin-bottom: 55px !important;
  }
  .u-ml55--sp {
    margin-left: 55px !important;
  }
  .u-mr55--sp {
    margin-right: 55px !important;
  }
  .u-pt55--sp {
    padding-top: 55px !important;
  }
  .u-pb55--sp {
    padding-bottom: 55px !important;
  }
  .u-pl55--sp {
    padding-left: 55px !important;
  }
  .u-pr55--sp {
    padding-right: 55px !important;
  }
  .u-mt50--sp {
    margin-top: 50px !important;
  }
  .u-mb50--sp {
    margin-bottom: 50px !important;
  }
  .u-ml50--sp {
    margin-left: 50px !important;
  }
  .u-mr50--sp {
    margin-right: 50px !important;
  }
  .u-pt50--sp {
    padding-top: 50px !important;
  }
  .u-pb50--sp {
    padding-bottom: 50px !important;
  }
  .u-pl50--sp {
    padding-left: 50px !important;
  }
  .u-pr50--sp {
    padding-right: 50px !important;
  }
  .u-mt45--sp {
    margin-top: 45px !important;
  }
  .u-mb45--sp {
    margin-bottom: 45px !important;
  }
  .u-ml45--sp {
    margin-left: 45px !important;
  }
  .u-mr45--sp {
    margin-right: 45px !important;
  }
  .u-pt45--sp {
    padding-top: 45px !important;
  }
  .u-pb45--sp {
    padding-bottom: 45px !important;
  }
  .u-pl45--sp {
    padding-left: 45px !important;
  }
  .u-pr45--sp {
    padding-right: 45px !important;
  }
  .u-mt40--sp {
    margin-top: 40px !important;
  }
  .u-mb40--sp {
    margin-bottom: 40px !important;
  }
  .u-ml40--sp {
    margin-left: 40px !important;
  }
  .u-mr40--sp {
    margin-right: 40px !important;
  }
  .u-pt40--sp {
    padding-top: 40px !important;
  }
  .u-pb40--sp {
    padding-bottom: 40px !important;
  }
  .u-pl40--sp {
    padding-left: 40px !important;
  }
  .u-pr40--sp {
    padding-right: 40px !important;
  }
  .u-mt35--sp {
    margin-top: 35px !important;
  }
  .u-mb35--sp {
    margin-bottom: 35px !important;
  }
  .u-ml35--sp {
    margin-left: 35px !important;
  }
  .u-mr35--sp {
    margin-right: 35px !important;
  }
  .u-pt35--sp {
    padding-top: 35px !important;
  }
  .u-pb35--sp {
    padding-bottom: 35px !important;
  }
  .u-pl35--sp {
    padding-left: 35px !important;
  }
  .u-pr35--sp {
    padding-right: 35px !important;
  }
  .u-mt30--sp {
    margin-top: 30px !important;
  }
  .u-mb30--sp {
    margin-bottom: 30px !important;
  }
  .u-ml30--sp {
    margin-left: 30px !important;
  }
  .u-mr30--sp {
    margin-right: 30px !important;
  }
  .u-pt30--sp {
    padding-top: 30px !important;
  }
  .u-pb30--sp {
    padding-bottom: 30px !important;
  }
  .u-pl30--sp {
    padding-left: 30px !important;
  }
  .u-pr30--sp {
    padding-right: 30px !important;
  }
  .u-mt25--sp {
    margin-top: 25px !important;
  }
  .u-mb25--sp {
    margin-bottom: 25px !important;
  }
  .u-ml25--sp {
    margin-left: 25px !important;
  }
  .u-mr25--sp {
    margin-right: 25px !important;
  }
  .u-pt25--sp {
    padding-top: 25px !important;
  }
  .u-pb25--sp {
    padding-bottom: 25px !important;
  }
  .u-pl25--sp {
    padding-left: 25px !important;
  }
  .u-pr25--sp {
    padding-right: 25px !important;
  }
  .u-mt20--sp {
    margin-top: 20px !important;
  }
  .u-mb20--sp {
    margin-bottom: 20px !important;
  }
  .u-ml20--sp {
    margin-left: 20px !important;
  }
  .u-mr20--sp {
    margin-right: 20px !important;
  }
  .u-pt20--sp {
    padding-top: 20px !important;
  }
  .u-pb20--sp {
    padding-bottom: 20px !important;
  }
  .u-pl20--sp {
    padding-left: 20px !important;
  }
  .u-pr20--sp {
    padding-right: 20px !important;
  }
  .u-mt15--sp {
    margin-top: 15px !important;
  }
  .u-mb15--sp {
    margin-bottom: 15px !important;
  }
  .u-ml15--sp {
    margin-left: 15px !important;
  }
  .u-mr15--sp {
    margin-right: 15px !important;
  }
  .u-pt15--sp {
    padding-top: 15px !important;
  }
  .u-pb15--sp {
    padding-bottom: 15px !important;
  }
  .u-pl15--sp {
    padding-left: 15px !important;
  }
  .u-pr15--sp {
    padding-right: 15px !important;
  }
  .u-mt10--sp {
    margin-top: 10px !important;
  }
  .u-mb10--sp {
    margin-bottom: 10px !important;
  }
  .u-ml10--sp {
    margin-left: 10px !important;
  }
  .u-mr10--sp {
    margin-right: 10px !important;
  }
  .u-pt10--sp {
    padding-top: 10px !important;
  }
  .u-pb10--sp {
    padding-bottom: 10px !important;
  }
  .u-pl10--sp {
    padding-left: 10px !important;
  }
  .u-pr10--sp {
    padding-right: 10px !important;
  }
  .u-mt5--sp {
    margin-top: 5px !important;
  }
  .u-mb5--sp {
    margin-bottom: 5px !important;
  }
  .u-ml5--sp {
    margin-left: 5px !important;
  }
  .u-mr5--sp {
    margin-right: 5px !important;
  }
  .u-pt5--sp {
    padding-top: 5px !important;
  }
  .u-pb5--sp {
    padding-bottom: 5px !important;
  }
  .u-pl5--sp {
    padding-left: 5px !important;
  }
  .u-pr5--sp {
    padding-right: 5px !important;
  }
  .u-mt0--sp {
    margin-top: 0px !important;
  }
  .u-mb0--sp {
    margin-bottom: 0px !important;
  }
  .u-ml0--sp {
    margin-left: 0px !important;
  }
  .u-mr0--sp {
    margin-right: 0px !important;
  }
  .u-pt0--sp {
    padding-top: 0px !important;
  }
  .u-pb0--sp {
    padding-bottom: 0px !important;
  }
  .u-pl0--sp {
    padding-left: 0px !important;
  }
  .u-pr0--sp {
    padding-right: 0px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .md-gd-3_item {
    width: 286.6666666666667px;
    margin: 30px 0 0 30px;
  }
  .md-gd-3_item:nth-of-type(3n+1) {
    margin-left: 0;
  }
  a:hover {
    color: #157072;
    text-decoration: underline;
  }
  .md-link1:hover {
    text-decoration: none;
  }
  .md-title2 .md-title2_head {
    font-size: 50px;
    margin-bottom: 90px;
    line-height: 1.5;
  }
  .md-title3 .md-title3_head {
    font-size: 42px;
  }
  .md-title4 .md-title4_head {
    text-align: center;
  }
  .md-title6 {
    padding: 5px;
  }
  .md-title6 {
    max-width: 276px;
    margin-bottom: 50px;
    font-size: 20px;
  }
  .md-titlePoint .md-titlePoint_head {
    padding-bottom: 10px;
    font-size: 34px;
    margin-left: 170px;
    position: relative;
  }
  .md-titlePoint .md-titlePoint_head:before {
    left: -170px;
    top: -3px;
    background-image: url("/assets/img/common/tag_point_pc.png?jraodds25sum");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 148px;
    height: 47px;
  }
  .fk-ft--xl {
    font-size: 32px;
  }
  .fk-ft--l {
    font-size: 24px;
  }
  .fk-ft--m {
    font-size: 16px;
  }
  .fk-ft--s {
    font-size: 14px;
  }
  .fk-ft--xs {
    font-size: 12px;
  }
  .fk-ft--xxs {
    font-size: 10px;
  }
  .md-txt2 {
    font-size: 14px;
  }
  .md-txt3 {
    font-size: 12px;
  }
  .md-txt4 {
    font-size: 24px;
  }
  .md-read1 {
    text-align: center;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .md-read1-note {
    font-size: 12px;
    line-height: 1.666666666666667;
  }
  .md-read2 {
    text-align: center;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .md-read--close {
    padding: 12px;
    width: 500px;
    font-size: 18px;
    border: 2px solid #f6f6f6;
  }
  .md-txtLink1:hover {
    text-decoration: none;
  }
  .md-txtLink2 {
    font-size: 18px;
  }
  .md-txtLink2 a {
    padding-right: 20px;
  }
  .md-txtLink2 a:hover {
    text-decoration: none;
  }
  .md-note3 {
    text-align: center;
  }
  .md-note4 {
    text-align: center;
  }
  .md-olList .md-olList_item {
    font-size: 20px;
    line-height: calc(38 / 20);
  }
  .md-btn01 {
    width: 320px;
    height: 60px;
    font-size: 19px;
  }
  .md-btn01 span.md-btn01_txt-s {
    font-size: 13px;
  }
  .md-btn01:hover {
    text-decoration: none;
    cursor: pointer;
  }
  .md-btn01-large {
    width: 416px;
    height: 78px;
    font-size: 27px;
    background-image: url("/assets/img/common/btn_bg_entry_pc.png?jraodds25sum");
    background-repeat: no-repeat;
  }
  .md-btn01-large:hover {
    background-image: url("/assets/img/common/btn_bg_entry_pc_on.png?jraodds25sum");
    background-repeat: no-repeat;
  }
  .md-btn01-l {
    width: 380px;
    height: 60px;
    background-image: url("/assets/img/common/btn_bg_l_pc.png?jraodds25sum");
  }
  .md-btn01-l:hover {
    background-image: url("/assets/img/common/btn_bg_l_pc_on.png?jraodds25sum");
  }
  .md-btn01-middle {
    width: 330px;
    height: 64px;
    font-size: 20px;
    background-image: url("/assets/img/common/btn_bg_01_middle.png?jraodds25sum");
    background-repeat: no-repeat;
    letter-spacing: -0.1em;
  }
  .md-btn01-middle:hover {
    background-image: url("/assets/img/common/btn_bg_01_hover_middle.png?jraodds25sum");
    background-repeat: no-repeat;
  }
  .md-btn01-x-large {
    width: 370px;
    height: 64px;
    font-size: 20px;
    background-image: url("/assets/img/common/btn_bg_01_x-large.png?jraodds25sum");
    background-repeat: no-repeat;
    letter-spacing: -0.1em;
  }
  .md-btn01-x-large:hover {
    background-image: url("/assets/img/common/btn_bg_01_hover_x-large.png?jraodds25sum");
    background-repeat: no-repeat;
  }
  .md-btn01 .md-btn01_txt-s {
    font-size: 13px;
  }
  .md-btnArea1 .md-btnArea1_arrow {
    width: 45px;
  }
  .md-btnArea1_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin-bottom: 120px;
    margin-left: 20px;
  }
  .md-btn-gd {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .md-btn02 {
    width: 235px;
    height: 45px;
    font-size: 17px;
  }
  .md-btn02:hover {
    opacity: 0.75;
  }
  .md-table1 th {
    width: 260px;
    font-size: 16px;
    padding: 12px 0;
  }
  .md-table1 td {
    font-size: 16px;
    padding: 12px 30px;
  }
  .md-table5 th {
    width: 220px;
    font-size: 14px;
    padding: 12px 0 12px 25px;
  }
  .md-table5 td {
    font-size: 14px;
    padding: 12px 30px;
  }
  .md-table2Block {
    margin: 0 auto;
  }
  .md-table2Block.md-table2Block-width100 {
    width: 100%;
  }
  .md-table2Block .md-table2 .md-table2_th {
    font-size: 20px;
    padding: 10px 17px;
  }
  .md-table2Block .md-table2 .md-table2_td {
    font-size: 20px;
    padding: 10px 17px;
    letter-spacing: 0.25em;
  }
  .md-table2Block .md-table2.md-table2-column3 .md-table2_th:nth-child(1) {
    width: 28%;
  }
  .md-table2Block .md-table2.md-table2-column3 .md-table2_th:nth-child(2) {
    width: 40%;
  }
  .md-table2Block--login .md-table2 {
    border: 2px solid #646464;
  }
  .md-table2Block--login .md-table2_th {
    padding: 18px 17px !important;
  }
  .md-table2Block--login .md-table2_td {
    font-size: 20px;
    padding: 17.5px 17px !important;
  }
  .md-table2Block--login .md-table2_td.md-table2_arw:after {
    border-width: 12px 0 12px 15px;
    right: -10px;
  }
  .md-table3 th {
    font-size: 15px;
    padding: 6px 0;
  }
  .md-table3 th:nth-child(1) {
    width: 155px;
  }
  .md-table3 th:nth-child(2) {
    width: 110px;
  }
  .md-table3 th:nth-child(3) {
    width: 110px;
  }
  .md-table3 th:nth-child(4) {
    width: 360px;
  }
  .md-table3 th:nth-child(5) {
    width: 180px;
  }
  .md-table3 td {
    font-size: 15px;
    padding: 12px 30px;
  }
  .md-table-modal th {
    width: 260px;
    font-size: 14px;
    padding: 14px 0;
  }
  .md-table-modal td {
    padding: 20px 20px 22px;
    font-size: 14px;
    line-height: 0.583333333333333;
  }
  .md-table-modal tr th:nth-of-type(1),
  .md-table-modal tr td:nth-of-type(1) {
    width: 116px;
    max-width: 116px;
  }
  .md-table-modal tr th:nth-of-type(2),
  .md-table-modal tr td:nth-of-type(2) {
    width: 120px;
    max-width: 120px;
  }
  .md-table-modal tr th:nth-of-type(3),
  .md-table-modal tr td:nth-of-type(3) {
    padding-left: 35px;
    width: 764px;
    max-width: 764px;
  }
  .md-table-modal tr th {
    font-size: 16px;
  }
  .md-table-modal tr td:nth-of-type(2) {
    line-height: 1.8;
    padding-left: 0;
    padding-right: 0;
  }
  .md-table-modal tr td:nth-of-type(3) {
    font-size: 14px;
    line-height: 2;
  }
  .md-table3 th {
    width: 260px;
    font-size: 16px;
    padding: 12px 0;
  }
  .md-table3 td {
    font-size: 16px;
    padding: 12px 30px;
  }
  .md-table4 {
    width: 540px;
    margin: 0 auto;
  }
  .md-table4 .md-table4_th {
    width: 160px;
    font-size: 16px;
    padding: 12px 30px 12px 30px;
  }
  .md-table4 .md-table4_td {
    font-size: 15px;
    padding: 12px 30px;
  }
  .md-table2Block--asymmetric {
    width: 730px;
    margin: 0 auto;
    padding-left: 30px;
  }
  .md-table2Block--asymmetric .md-table-bg {
    width: 410px;
  }
  .md-table2Block--asymmetric .md-table-left_td,
  .md-table2Block--asymmetric .md-table-right_td {
    font-size: 16px;
    padding: 14px 17px 13px;
  }
  .md-table2Block--asymmetric .md-table-left_td.md-table_arw::after,
  .md-table2Block--asymmetric .md-table-right_td.md-table_arw::after {
    width: 32px;
    height: 22px;
    right: -17px;
  }
  .md-table2Block--asymmetric .md-table-left {
    width: 320px;
    margin-top: 19px;
  }
  .md-table2Block--asymmetric .md-table-left_th {
    padding: 13px 17px 12px;
    font-size: 16px;
  }
  .md-table2Block--asymmetric .md-table-left_td {
    font-size: 15px;
  }
  .md-table2Block--asymmetric .md-table-right {
    width: 350px;
    margin: 0 30px 30px 30px;
  }
  .md-table2Block--asymmetric .md-table-right_th {
    padding: 21px 17px 20px;
    font-size: 18px;
  }
  .md-table2Block--asymmetric .md-table-right_td {
    padding: 11px 17px 10px;
    font-size: 19px;
  }
  .md-table2Block--asymmetric .md-txt3 {
    padding-top: 30px;
    line-height: 1.5;
  }
  .table-title {
    width: 126px;
    margin: 0 auto 31px;
    padding-top: 10px;
    font-size: 16px;
  }
  .table-title02 {
    padding-top: 55px;
  }
  .login-table_head {
    font-size: 30px;
  }
  .md-block1 {
    border: 4px solid #000;
  }
  .md-block-scroll-y::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .md-block-scroll-y::-webkit-scrollbar-track {
    background: #2c2c2c;
    border: none;
    border-radius: 10px;
  }
  .md-block-scroll-y::-webkit-scrollbar-thumb {
    background-color: #969696;
    border-radius: 10px;
    box-shadow: none;
    border: none;
  }
  .md-flow {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .md-flow .md-flowBlock {
    width: 420px;
  }
  .md-flow .md-flowBlock .md-flowBlock_img {
    margin-bottom: 20px;
  }
  .md-wrap980 {
    width: 980px;
    padding: 0 30px;
  }
  .md-wrap1016 {
    width: 1016px;
  }
  .md-wrap1018 {
    width: 1018px;
  }
  .md-bg-layout_inner {
    padding: 0 50px 40px;
  }
  .md-flow2_item {
    border: 10px solid #0084d0;
    padding: 40px;
    box-shadow: 0 10px #000;
  }
  .md-flow2_item + .md-flow2_item {
    margin-top: 70px;
  }
  .md-flow2_item + .md-flow2_item::before {
    top: -47px;
  }
  .md-flow2_heading {
    top: 16px;
    left: 16px;
    width: 64px;
  }
  .md-flow2_title {
    font-size: 30px;
  }
  .md-flow2_text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  .md-triangle-box {
    padding: 40px 40px 30px;
    border: 10px solid #83fcfc;
    box-shadow: 0 10px #000;
  }
  .md-triangle-box--bg {
    background-image: url("/assets/img/common/bg_white_pc.png?jraodds25sum");
  }
  .md-triangle-box_heading {
    width: 88px;
    margin-bottom: 20px;
  }
  .md-triangle-box_text {
    font-size: 20px;
    line-height: 1.9;
  }
  .md-triangle-box_text2 {
    font-size: 20px;
    line-height: 1.9;
  }
  .md-triangle-box--bg .md-triangle-box_heading {
    width: 78px;
    height: 78px;
  }
  .md-triangle-box--bg .md-triangle-box_heading img {
    width: 78px;
    height: 78px;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__title {
    padding: 16px 40px;
    font-size: fs18;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__title::after {
    right: 30px;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__body {
    padding: 40px;
  }
  .fk-accordion.fk-accordion--payment .fk-accordion__body .box-gray {
    font-size: fs18;
    margin-bottom: 24px;
    padding: 30px 0;
  }
  .cards {
    width: 374px;
    height: 54px;
    margin-top: 24px;
  }
  .fk-accordion.fk-accordion--payment.fk-accordion--closed .fk-accordion__title::after {
    right: 30px;
  }
  .fk-modalElement__closeBtn {
    float: right;
  }
  .fk-modalView-movie {
    max-width: 980px;
  }
  .fk-modalElement__closeBtn {
    float: right;
  }
  .fk-modalView-movie {
    max-width: 980px;
  }
  .rollover {
    opacity: 1;
  }
  .rollover:hover {
    opacity: 0.8;
    text-decoration: none;
  }
  .spOnly {
    display: none !important;
  }
  .txC--pc {
    text-align: center !important;
  }
  .simplebar-content-wrapper {
    overflow-y: visible !important;
    overflow-x: visible !important;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 768px) {
  .md-title2 .md-title2_head {
    font-size: 44px;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 767px) {
  .md-title2 .md-title2_head {
    font-size: 30px;
  }
}
