@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------------------------------------------
設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
メディアクエリ
-------------------------------------------------------------*/
/*!
	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;
  -webkit-box-sizing: border-box;
          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 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: #0676BC;
  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 20px;
}
.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: 1240px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          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: #0676BC;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #fff;
}
.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: 24px;
  width: 2px;
  height: 22px;
  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;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          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;
  -webkit-box-shadow: none !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%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          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;
}

@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: 20px;
    padding-right: 20px;
  }
  .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 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-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.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);
}
@-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);
  }
}
.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);
}

/*-------------------------------------------------------------
 フォーム
-------------------------------------------------------------*/
input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
}

input[type=button] {
  /* reset */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* reset */
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=checkbox],
input[type=radio],
textarea,
select {
  /* reset */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  /* reset */
  border: 1px solid #c6c6c6;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
  width: 100%;
  background-color: transparent;
}
@media (min-width: 768px) {
  input[type=text].form-w1,
  input[type=number].form-w1,
  input[type=email].form-w1,
  input[type=tel].form-w1,
  input[type=checkbox].form-w1,
  input[type=radio].form-w1,
  textarea.form-w1,
  select.form-w1 {
    width: 10%;
  }
  input[type=text].form-w2,
  input[type=number].form-w2,
  input[type=email].form-w2,
  input[type=tel].form-w2,
  input[type=checkbox].form-w2,
  input[type=radio].form-w2,
  textarea.form-w2,
  select.form-w2 {
    width: 20%;
  }
  input[type=text].form-w3,
  input[type=number].form-w3,
  input[type=email].form-w3,
  input[type=tel].form-w3,
  input[type=checkbox].form-w3,
  input[type=radio].form-w3,
  textarea.form-w3,
  select.form-w3 {
    width: 30%;
  }
  input[type=text].form-w4,
  input[type=number].form-w4,
  input[type=email].form-w4,
  input[type=tel].form-w4,
  input[type=checkbox].form-w4,
  input[type=radio].form-w4,
  textarea.form-w4,
  select.form-w4 {
    width: 40%;
  }
  input[type=text].form-w5,
  input[type=number].form-w5,
  input[type=email].form-w5,
  input[type=tel].form-w5,
  input[type=checkbox].form-w5,
  input[type=radio].form-w5,
  textarea.form-w5,
  select.form-w5 {
    width: 50%;
  }
  input[type=text].form-w6,
  input[type=number].form-w6,
  input[type=email].form-w6,
  input[type=tel].form-w6,
  input[type=checkbox].form-w6,
  input[type=radio].form-w6,
  textarea.form-w6,
  select.form-w6 {
    width: 60%;
  }
  input[type=text].form-w7,
  input[type=number].form-w7,
  input[type=email].form-w7,
  input[type=tel].form-w7,
  input[type=checkbox].form-w7,
  input[type=radio].form-w7,
  textarea.form-w7,
  select.form-w7 {
    width: 70%;
  }
  input[type=text].form-w8,
  input[type=number].form-w8,
  input[type=email].form-w8,
  input[type=tel].form-w8,
  input[type=checkbox].form-w8,
  input[type=radio].form-w8,
  textarea.form-w8,
  select.form-w8 {
    width: 80%;
  }
  input[type=text].form-w9,
  input[type=number].form-w9,
  input[type=email].form-w9,
  input[type=tel].form-w9,
  input[type=checkbox].form-w9,
  input[type=radio].form-w9,
  textarea.form-w9,
  select.form-w9 {
    width: 90%;
  }
  input[type=text].form-w10,
  input[type=number].form-w10,
  input[type=email].form-w10,
  input[type=tel].form-w10,
  input[type=checkbox].form-w10,
  input[type=radio].form-w10,
  textarea.form-w10,
  select.form-w10 {
    width: 100%;
  }
}

input,
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 1.2rem 1.6rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
@media (min-width: 768px) {
  input,
  input[type=text],
  input[type=number],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    padding: 1.4rem 1.6rem;
  }
  input.size-s,
  input[type=text].size-s,
  input[type=number].size-s,
  input[type=email].size-s,
  input[type=tel].size-s,
  select.size-s,
  textarea.size-s {
    max-width: 36.8rem;
  }
  input.size-m,
  input[type=text].size-m,
  input[type=number].size-m,
  input[type=email].size-m,
  input[type=tel].size-m,
  select.size-m,
  textarea.size-m {
    max-width: 57.6rem;
  }
  input.size-l,
  input[type=text].size-l,
  input[type=number].size-l,
  input[type=email].size-l,
  input[type=tel].size-l,
  select.size-l,
  textarea.size-l {
    max-width: 100%;
  }
}

input[type=submit] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #c6c6c6;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #c6c6c6;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #c6c6c6;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #c6c6c6;
}

input::placeholder,
textarea::placeholder {
  color: #c6c6c6;
}

textarea {
  width: 100% !important;
  min-height: 18rem;
}

.form-select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.form-select:after {
  background: url(../img/common/arrow_select.png) no-repeat center/100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.4rem;
  width: 16px;
  height: 9px;
  pointer-events: none;
}
.form-select select {
  padding: 1.5rem 3.2rem 1.5rem 2.4rem;
  border: 1px solid #c6c6c6;
  background: transparent;
}
@media (min-width: 768px) {
  .form-select.size-m {
    max-width: 57.6rem;
  }
}
.form-select select::-ms-expand {
  display: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  border: 1px solid #F5A100;
}

.btn-cmn > span {
  text-align: left;
}

body.windows input[type=text],
body.windows input[type=email],
body.windows input[type=tel],
body.windows input[type=checkbox],
body.windows input[type=radio],
body.windows textarea,
body.windows select {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.mfp_buttons {
  margin-top: 16px;
}

#mfp_button_send {
  background-color: rgba(255, 238, 204, 0.4);
  border: 0.1rem solid #c6c6c6;
  padding: 4px 24px;
}

#mfp_button_cancel {
  text-decoration: underline;
  font-size: 1.4rem;
  display: block;
  margin: 10px auto 0;
}

.form .block01 > dl dt,
.form .block02 > dl dt {
  margin-bottom: 0.4rem;
}
.form .block01 > dl:not(:last-child),
.form .block02 > dl:not(:last-child) {
  margin-bottom: 1.6rem;
}
.form .block01 li:not(:last-child) {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(198, 198, 198, 0.4);
}
.form .block01 li:first-child {
  border-bottom: 1px solid rgba(245, 161, 0, 0.4);
}
.form .btn_send {
  margin-top: 6.4rem;
  text-align: center;
}
.form .btn_send .btn-submit {
  margin: 0 auto;
  max-width: 30rem;
  background: #F5A100;
  color: #fff;
  padding: 1em;
}

/*-------------------------------------------------------------
基本設定
-------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  max-width: 1920px;
  margin: auto;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #000000;
  text-decoration: none;
}

/*-------------------------------------------------------------
基本レイアウト
-------------------------------------------------------------*/
.container {
  margin: 0 auto;
  width: 80.694%;
  max-width: 1162px;
}

body:not(.home) .main .container {
  margin: 0 auto;
  width: 80.694%;
  max-width: 960px;
}

/* セクション */
.sec-cmn {
  padding: 56px 0;
}
@media (min-width: 1024px) {
  .sec-cmn {
    padding: 94px 0;
  }
}
.sec-cmn .sec-cmn {
  padding-top: 0;
}
.sec-cmn .sec-cmn:last-child {
  padding-bottom: 0;
}

.sec-cmn-sub {
  margin-top: 24px !important;
}
@media (min-width: 1024px) {
  .sec-cmn-sub {
    margin-top: 64px !important;
  }
}

/*-------------------------------------------------------------
デバイスサイズでの表示切り替え
-------------------------------------------------------------*/
@media (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

.only-pc {
  display: none;
}
@media (min-width: 1024px) {
  .only-pc {
    display: block;
  }
}

.hide-sp {
  display: none;
}
@media (min-width: 768px) {
  .hide-sp {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hide-pc {
    display: none !important;
  }
}

/*-------------------------------------------------------------
ヘッダー
-------------------------------------------------------------*/
.header-cmn {
  background-color: #F5A100;
  padding: 9px 14px;
}
.header-cmn .logo {
  width: 240px;
}
@media (min-width: 375px) {
  .header-cmn .logo {
    width: 290px;
  }
}
@media (min-width: 768px) {
  .header-cmn .logo {
    width: 320px;
  }
}
@media (min-width: 1024px) {
  .header-cmn .logo {
    width: 436px;
  }
}

/*-------------------------------------------------------------
フッター
-------------------------------------------------------------*/
.footer-cmn .mod-siteinfo {
  background-color: #3c3c3c;
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.footer-cmn .mod-siteinfo .txt-sitename {
  font-weight: bold;
  margin-bottom: 1em;
}
.footer-cmn .mod-siteinfo .txt-information {
  font-size: 1.4rem;
}
.footer-cmn .mod-siteinfo .txt-information span {
  font-weight: bold;
}
.footer-cmn .txt-copyright {
  font-size: 1.2rem;
  padding: 1em 0;
  text-align: center;
}
.footer-cmn .box-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .footer-cmn .mod-siteinfo {
    padding: 64px 0;
    text-align: left;
  }
  .footer-cmn .mod-siteinfo .txt-sitename {
    font-size: 2.5rem;
  }
  .footer-cmn .mod-siteinfo .txt-information {
    font-size: 1.6rem;
  }
  .footer-cmn .box-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    margin-top: 4rem;
  }
  .footer-cmn .txt-copyright {
    font-size: 1.4rem;
    padding: 2em 0;
  }
}

/*-------------------------------------------------------------
グローバルナビ
-------------------------------------------------------------*/
.header-cmn {
  position: relative;
}
@media (min-width: 1520px) {
  .header-cmn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header-cmn #global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 9.66vw;
  background: #fff;
  color: #F5A100;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: 777;
  overflow: auto;
}
.header-cmn #global-nav.is-show {
  opacity: 1;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.header-cmn #global-nav ul {
  width: 100%;
  max-width: 64rem;
}
.header-cmn #global-nav ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 83, 111, 0.2);
}
.header-cmn #global-nav a {
  display: block;
  padding: 16px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.header-cmn #global-nav a:hover {
  opacity: 0.4;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.header-cmn #global-nav a.disabled {
  opacity: 0.15;
  pointer-events: none;
}
.header-cmn #global-nav a.gray {
  color: rgba(123, 123, 123, 0.63) !important;
}
.header-cmn #global-nav a.gray:hover {
  opacity: 1;
}
@media (min-width: 1520px) {
  .header-cmn #global-nav {
    margin-left: 2.4rem;
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    font-size: 1.6rem;
    opacity: 1;
  }
  .header-cmn #global-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: initial;
  }
  .header-cmn #global-nav ul li:not(:last-child) {
    border-bottom: none;
  }
  .header-cmn #global-nav a {
    padding: 10px 12px;
    color: #fff;
  }
  .header-cmn #global-nav a.disabled {
    opacity: 0.3;
  }
  .header-cmn #global-nav a.gray {
    color: rgba(255, 255, 255, 0.631372549) !important;
  }
  .header-cmn #global-nav a.gray:hover {
    color: rgba(255, 255, 255, 0.631372549);
  }
}
.header-cmn #btn-menu {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
}
@media (min-width: 1520px) {
  .header-cmn #btn-menu {
    display: none;
  }
}
.header-cmn #btn-menu.line-base {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #FF6D00;
  cursor: pointer;
  min-width: 1.9rem;
  width: 5.09rem;
  height: 5.09rem;
  font-size: 1rem;
  color: #fff;
  padding: 1.4rem 1.4rem 1.2rem;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 375px) {
  .header-cmn #btn-menu.line-base {
    width: 5.78rem;
    height: 5.78rem;
  }
}
@media (min-width: 768px) {
  .header-cmn #btn-menu.line-base {
    width: 6.19rem;
    height: 6.19rem;
  }
}
@media (min-width: 1024px) {
  .header-cmn #btn-menu.line-base {
    width: 7.78rem;
    height: 7.78rem;
  }
}
@media (min-width: 1520px) {
  .header-cmn #btn-menu.line-base {
    display: none;
  }
}
.header-cmn #btn-menu .line {
  display: block;
  margin: auto;
  width: 3.26rem;
  height: 2px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
}
.header-cmn #btn-menu .line:before, .header-cmn #btn-menu .line:after {
  position: absolute;
  display: block;
  width: 3.2rem;
  height: 2px;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.header-cmn #btn-menu .line:before {
  top: -1rem;
}
.header-cmn #btn-menu .line:after {
  top: 1rem;
}
.header-cmn #btn-menu.line-base[aria-expanded=true] .line {
  background-color: transparent;
}
.header-cmn #btn-menu.line-base[aria-expanded=true] .line:before, .header-cmn #btn-menu.line-base[aria-expanded=true] .line:after {
  top: 0;
  background-color: #fff;
}
.header-cmn #btn-menu.line-base[aria-expanded=true] .line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-cmn #btn-menu.line-base[aria-expanded=true] .line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-cmn .txt-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/*-------------------------------------------------------------
見出し・テキスト
-------------------------------------------------------------*/
.txt-center {
  text-align: center;
}

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

.txt-strike {
  text-decoration: line-through;
}

strong {
  color: #ce0000;
}

b {
  color: #0057CE;
}

.txt-bold {
  font-weight: bold;
}

.cl-main {
  color: #F5A100;
}

.txt-link {
  color: #FF6D00;
  text-decoration: underline;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.txt-link:hover {
  opacity: 0.4;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.txt-bg {
  padding: 0.6em 1.2em;
  background: rgba(245, 219, 77, 0.2);
}

.ttl-page {
  background: #F5F7F9;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  color: #333333;
  padding: 2.4rem 1.6rem;
}
@media (min-width: 1024px) {
  .ttl-page {
    font-size: 3.6rem;
    padding: 4rem;
  }
}

.ttl-01 {
  color: #FF6D00;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2em;
}
.ttl-01 span {
  border-bottom: 1px solid #FF6D00;
  padding-bottom: 0.2em;
}
@media (min-width: 1024px) {
  .ttl-01 {
    font-size: 3rem;
  }
}

.ttl-02 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #F5A100;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .ttl-02 {
    font-size: 2.6rem;
  }
}

.ttl-03 {
  color: #F5A100;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.4em;
}
@media (min-width: 1024px) {
  .ttl-03 {
    font-size: 2.2rem;
  }
}

.ttl-04 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.4em;
  padding-left: 0.5em;
  border-left: 6px solid #FF6D00;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .ttl-04 {
    font-size: 1.8rem;
  }
}

.ttl-05 {
  font-weight: bold;
  line-height: 1.6;
  margin: 1.6rem 0 0.5em;
}

/*-------------------------------------------------------------
ボタン
-------------------------------------------------------------*/
.box-button {
  margin-top: 32px !important;
}

.btn-download,
.btn-form {
  display: block;
  max-width: 40rem;
  margin: 0 auto;
  padding: 16px 16px 18px;
  background: #F5A100;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.btn-download:hover,
.btn-form:hover {
  opacity: 0.4;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.btn-download.disabled,
.btn-form.disabled {
  background: #ccc;
  pointer-events: none;
}
.btn-download.disabled:hover,
.btn-form.disabled:hover {
  opacity: 1;
}

/*-------------------------------------------------------------
汎用スタイル
-------------------------------------------------------------*/
/* dl */
.list-cmn-dl > div {
  border-bottom: 1px solid #c6c6c6;
  padding: 1em 0;
}
.list-cmn-dl > div:first-child {
  border-top: 1px solid #c6c6c6;
}
.list-cmn-dl dt {
  color: #F5A100;
}
@media (min-width: 1024px) {
  .list-cmn-dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .list-cmn-dl dt {
    padding-left: 1em;
    width: 20%;
    min-width: 192px;
  }
  .list-cmn-dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}

/* ol */
.list-cmn-ol > li {
  counter-increment: ol-num;
  padding-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.6;
}
.list-cmn-ol > li:before {
  padding-right: 0.5em;
  color: #F5A100;
  content: counter(ol-num) ".";
}
.list-cmn-ol > li:not(:last-child) {
  margin-bottom: 0.5em;
}

.list-ol-indent > li {
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.list-ol-indent > li:not(:last-child) {
  margin-bottom: 0.5em;
}

/* ul */
.list-square > li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.6;
}
.list-square > li:before {
  padding-right: 0.5em;
  color: #d8d8d8;
  content: "◆";
}
.list-square > li:not(:last-child) {
  margin-bottom: 0.5em;
}

.list-indent {
  padding-left: 1.25em;
  text-indent: -1.25em;
}

.box-program .list-program div:first-child {
  border-top: none;
  padding-top: 0;
}
.box-program .list-program div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.box-program .list-program .txt-time {
  color: #333333;
}
.box-program .list-program .ttl-program {
  color: #F5A100;
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
}

[class^=box-cmn-] {
  padding: 24px;
}
@media (min-width: 768px) {
  [class^=box-cmn-] {
    padding: 40px;
  }
}

.box-cmn-border {
  border: 1px solid #c6c6c6;
}

.box-cmn-bg {
  background: #fff;
}
.bg-colored {
  background: rgb(217, 250, 252);
  background: linear-gradient(36deg, rgb(217, 250, 252) 0%, rgb(208, 233, 241) 100%);
}

/*-------------------------------------------------------------
ポップアップ
-------------------------------------------------------------*/
/* 背景のオーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

/* ポップアップ表示用 */
.overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
}

/* :targetで表示 */
.overlay:target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

/*-------------------------------------------------------------
_home.scss
-------------------------------------------------------------*/
body.home {
  /*-----------------------------------------------------------*/
  /*-----------------------------------------------------------*/
}
body.home .area-fv {
  margin: 0 auto;
}
body.home .area-fv .txt-lead {
  color: #ce0000;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.8em;
  text-align: center;
}
body.home .area-lead {
  padding: 40px 0;
}
body.home .area-lead p {
  font-size: 1.6rem;
}
body.home .area-lead p:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  body.home .area-lead {
    padding: min(9.765625vw, 100px) 0;
  }
  body.home .area-lead p {
    font-size: 1.8rem;
  }
}
body.home .sec-program {
  background: url(../img/home/bg-program.jpg) no-repeat center/cover;
}
body.home .sec-program .wrap-program {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 24px;
  text-align: center;
}
body.home .sec-program .wrap-program img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  body.home .sec-program .wrap-program {
    padding: 40px;
  }
}
body.home .sec-about .box-message:not(:first-child) {
  margin-top: 32px;
}
body.home .sec-about .box-message .txt-update {
  margin-top: 1rem;
  text-align: right;
}
body.home .sec-info .list-info {
  max-width: 960px;
  height: 30rem;
  overflow-y: scroll;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
}
body.home .sec-info .list-info li:not(:last-child) {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c6c6c6;
}
body.home .sec-info .list-info .date,
body.home .sec-info .list-info .text {
  display: block;
}
@media (min-width: 768px) {
  body.home .sec-info .list-info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.home .sec-info .list-info .date {
    width: 10em;
  }
  body.home .sec-info .list-info .text {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}

/*-----------------------------------------------------------*/
/* program.php */
/*-----------------------------------------------------------*/
body.program .table-fee {
  width: 100%;
  min-width: 960px;
}
body.program .table-fee thead tr th {
  width: 29%;
  background-color: rgba(255, 238, 204, 0.4);
}
body.program .table-fee thead tr th:nth-child(1) {
  width: 13%;
}
body.program .table-fee tr th,
body.program .table-fee tr td {
  border: solid 1px #000;
  padding: 8px;
}
body.program .table-fee tr td[colspan] {
  text-align: center;
}

body:not(.home) main .sec-cmn p + p, body:not(.home) main .sec-cmn p + ul, body:not(.home) main .sec-cmn p + ol, body:not(.home) main .sec-cmn p + [class^=box-], body:not(.home) main .sec-cmn ul + p, body:not(.home) main .sec-cmn ul + ul, body:not(.home) main .sec-cmn ul + ol, body:not(.home) main .sec-cmn ul + [class^=box-], body:not(.home) main .sec-cmn ol + p, body:not(.home) main .sec-cmn ol + ul, body:not(.home) main .sec-cmn ol + ol, body:not(.home) main .sec-cmn ol + [class^=box-], body:not(.home) main .sec-cmn .box-cmn + p, body:not(.home) main .sec-cmn .box-cmn + ul, body:not(.home) main .sec-cmn .box-cmn + ol, body:not(.home) main .sec-cmn .box-cmn + [class^=box-] {
  margin-top: 1.6rem;
}

.box-contact .ttl {
  color: #FF6D00;
  font-weight: bold;
}
.box-contact .ttl + p {
  margin-top: 0.6rem;
}
/*-------------------------------------------------------------
ご挨拶
-------------------------------------------------------------*/
body.aisatsu p + p {
  margin-top: 1em;
}

/*-------------------------------------------------------------
開催概要
-------------------------------------------------------------*/
body.kaisaigaiyou .box-kaijyo {
  padding: 0.6em 1.2em;
  margin-bottom: 2.4rem;
}
body.kaisaigaiyou .box-kaijyo p + p, body.kaisaigaiyou .box-kaijyo p + ul, body.kaisaigaiyou .box-kaijyo ul + p, body.kaisaigaiyou .box-kaijyo ul + ul {
  margin-top: 0.4em !important;
}
body.kaisaigaiyou .box-kaijyo + .box-kaijyo {
  background: rgba(245, 219, 77, 0.2);
}

/*-------------------------------------------------------------
特別企画講演プログラム
-------------------------------------------------------------*/
body.program .ttl-02 span {
  display: block;
}
@media (min-width: 768px) {
  body.program .ttl-02 span {
    display: inline-block;
    margin-left: 1em;
  }
}

/*-------------------------------------------------------------
参加者の皆様へ
-------------------------------------------------------------*/
body.sanka .list-info > li:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #c6c6c6;
}
body.sanka .list-info > li:nth-child(4), body.sanka .list-info > li:nth-child(5) {
  padding-bottom: 0;
  margin-bottom: 16px;
  border-bottom: none;
}
body.sanka .sec-cmn-sub {
  margin-top: 24px !important;
}
@media (min-width: 1024px) {
  body.sanka .sec-cmn-sub {
    margin-top: 32px !important;
  }
}
body.sanka .txt-vewing {
  background: rgba(206, 0, 0, 0.1);
}
@media (min-width: 768px) {
  body.sanka .txt-vewing {
    text-align: center;
  }
}
body.sanka .box-button.watchingmovie {
  margin: 32px 0 !important;
}
body.sanka .box-button.watchingmovie .btn-form {
  margin: 0 auto;
}
body.sanka .box-button.sankatouroku {
  margin: 16px 0 !important;
}
body.sanka .btn-form {
  margin: 0;
}
@media (min-width: 1024px) {
  body.sanka .list-info > li:not(:last-child) {
    padding-bottom: 64px;
    margin-bottom: 64px;
  }
  body.sanka .list-info > li:nth-child(4), body.sanka .list-info > li:nth-child(5) {
    padding-bottom: 0;
    margin-bottom: 24px;
    border-bottom: none;
  }
}

/*-------------------------------------------------------------
演者の皆様へ
-------------------------------------------------------------*/
body.zacyou .dl-award .box-award:not(:last-child) {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #F5A100;
}
body.zacyou .dl-award .box-award dt {
  color: #F5A100;
}
body.zacyou .dl-award .box-award dd {
  font-weight: bold;
}
body.zacyou .dl-award .box-award .name {
  display: block;
  font-weight: normal;
}
@media (min-width: 768px) {
  body.zacyou .dl-award .box-award {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.zacyou .dl-award .box-award dt {
    width: 6em;
    margin-right: 2em;
  }
  body.zacyou .dl-award .box-award dd {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}

/*-------------------------------------------------------------
演題募集
-------------------------------------------------------------*/
body.endai .txt-period {
  margin-bottom: 1em;
  color: #ce0000;
  font-weight: bold;
}
@media (min-width: 1024px) {
  body.endai .txt-period {
    font-size: 2.4rem;
    text-align: center;
  }
}
body.endai .modaal-wrapper .modaal-close {
  background: #0057CE;
  background: #F5A100;
}

.tbl-cmn {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #aaa;
}
.tbl-cmn tr:nth-child(odd) {
  background: rgba(255, 238, 204, 0.4);
}
.tbl-cmn tr th, .tbl-cmn tr td {
  display: block;
  padding: 0.5em;
}
.tbl-cmn tr th {
  font-weight: bold;
}
.tbl-cmn tr td {
  border-bottom: 1px solid #aaa;
  padding-top: 0;
}
@media (min-width: 1024px) {
  .tbl-cmn tr th, .tbl-cmn tr td {
    display: table-cell;
    border: 1px solid #aaa;
  }
  .tbl-cmn tr th {
    width: 24rem;
  }
  .tbl-cmn tr td {
    padding-top: 0.5em;
  }
}

/*-------------------------------------------------------------
会場案内
-------------------------------------------------------------*/
body.kaijyou .pict {
  margin: 24px 0;
}
body.kaijyou .pict img {
  display: block;
}
body.kaijyou .pict img:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  body.kaijyou .pict {
    margin: 40px 0;
  }
}
body.kaijyou .map iframe {
  width: 100%;
  height: 400px;
}
body.kaijyou .map-img-small {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 1rem auto 4rem;
}
body.kaijyou .floor-map {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 1rem auto 4rem;
}