@charset "UTF-8";
/*!
	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: 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;
  -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: #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;
}

@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;
}
.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);
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */ /*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

html {
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.outer-block {
  min-width: 1100px;
}

.inner-block {
  position: relative;
  width: auto;
  max-width: 1046px;
  padding: 0 20px;
}
.inner-block.pat01 {
  max-width: 956px;
}
.inner-block.pat02 {
  max-width: 874px;
}
.inner-block.pat03 {
  max-width: 898px;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
@font-face {
  src: url(../font/NotoSansJP-Medium.woff) format("woff"), url(../font/NotoSansJP-Medium.otf) format("opentype");
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSansJP-Bold.woff) format("woff"), url(../font/NotoSansJP-Bold.otf) format("opentype");
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/Jost-SemiBold.woff) format("woff"), url(../font/Jost-SemiBold.otf) format("opentype");
  font-family: "Jost";
  font-weight: 600;
  font-display: swap;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* --------------------------------
c-header
----------------------------------- */
#header {
  position: fixed;
  width: 100%;
  z-index: 999;
  border-bottom: 2px solid #EFEFEF;
}

.header-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 35px 12px 40px;
  background-color: #FFFFFF;
}

.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.header-list__item {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-align: right;
  color: #2f2f2f;
}
.header-list > li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.header-list > li > a::after {
  background: #22A6C2;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-list > li > a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header-list > li + li {
  margin-left: 22px;
}

.header-nav-btn {
  margin-left: 35px;
}

.header-btn {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  border-radius: 21px;
  background: -webkit-gradient(linear, left top, right top, from(#008cd6), to(#003d91));
  background: linear-gradient(to right, #008cd6 0%, #003d91 100%);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
  padding: 10px 51px 11px 53px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}
.header-btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
}

#footer {
  position: relative;
  padding: 40.4px 180px 41.2px;
  background-color: #2F2F2F;
}

.footer-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.footer-copy {
  text-align: right;
}

.footer-copy__link {
  font-family: "Noto Sans CJK JP";
  font-weight: bold;
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: right;
  color: #fff;
}

.footer-copy__text {
  font-family: "Noto Sans CJK JP";
  font-weight: normal;
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin-top: 15px;
}

.c-btn {
  padding: 21px 54.3px 21px 59px;
  width: 340px;
  border-radius: 34px;
  background: -webkit-gradient(linear, left top, right top, from(#008cd6), to(#003d91));
  background: linear-gradient(to right, #008cd6, #003d91);
  color: #FFF;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
}

.c-ttl__en {
  text-align: center;
}
.c-ttl__jp {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #2f2f2f;
  margin-top: -53px;
}
.c-ttl__jp.pat01 {
  color: #FFFFFF;
}

.c-txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 34px;
  text-align: center;
  color: #2f2f2f;
  margin-top: 15px;
}

.c-txt.pat01 {
  color: #fff;
}

.c-txt > span {
  font-size: 20px;
  font-weight: bold;
  color: #EB0101;
}
.c-required {
  border-radius: 0.3em;
  background: #D35A50;
  font-weight: 500;
  font-size: 11px;
  line-height: 25px;
  text-align: left;
  color: #fff;
  padding: 2px 6px;
  margin-left: 7px;
}

.paging-area {
  font-size: 0;
  padding: 50px 0 0;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.paging-area > * {
  border: 1px solid blue;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  line-height: 1;
  color: blue;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin: 0 5px 5px;
  padding: 0 4px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.paging-area .back {
  padding: 0 32px;
}

.paging-area .page-numbers.current {
  background: blue;
  color: #fff;
}

.paging-area .page-numbers.dots {
  border-color: transparent;
  min-width: 1px;
  margin: 0;
}

.paging-area .next.page-numbers,
.paging-area .prev.page-numbers {
  position: relative;
}

.paging-area .next.page-numbers:before,
.paging-area .prev.page-numbers:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/common/ico-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.paging-area .next.page-numbers:hover:before,
.paging-area .prev.page-numbers:hover:before {
  background-image: url("../img/common/ico-arrow-wt.svg");
}

.paging-area .prev.page-numbers:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pagetop {
  z-index: 100;
}
#pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 62px;
  background-color: #e9a2af;
}
#pagetop img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 2px;
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
  animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/*------------------------------------------------------------------------------
  original
------------------------------------------------------------------------------*/
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.mv {
  position: relative;
  padding-top: 67px;
}
.mv::before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#d5e0e3), color-stop(15%), to(#fff));
  background: linear-gradient(to bottom, #d5e0e3, 15%, #fff);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

.mv-bg {
  position: absolute;
  background: url(../img/mv_sp.png) no-repeat;
  background-position: right 0 bottom 0px;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.mv-block {
  position: relative;
}
.mv-block-wrap__ttl {
  font-weight: 900;
  font-size: 2.19vw;
  letter-spacing: 0.04em;
  text-align: left;
  color: #2f2f2f;
  margin-top: 10px;
}
.mv-block-wrap__ttl > span {
  color: #0043A1;
}
.mv-block-wrap__price {
  font-family: "Jost";
  font-weight: 600;
  font-size: 5.7vw;
  text-align: left;
  color: #eb0101;
}
.mv-block-wrap__price > span {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 2.84vw;
  letter-spacing: 0.04em;
  text-align: left;
  margin-left: 7px;
}
.mv-block-wrap__img {
  width: 19.9vw;
}

.mv-block-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.mv-block-img > img {
  width: 100%;
}
.mv-scroll {
  margin-left: 28.8px;
}

#about {
  padding-top: 87px;
  position: relative;
  padding-bottom: 80px;
}
#about::before {
  content: "";
  display: block;
  background-color: #F3F6FA;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

.about-youtube {
  margin-top: 50px;
  text-align: center;
}

.about-youtube-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.about-youtube-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#work {
  padding-top: 90px;
  background-color: #0043A1;
}

.work-list {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
}
.work-list > li {
  width: calc((100% - 40px) / 4);
  height: 161px;
  margin-left: 10px;
  background-color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.work-list > li > img {
  padding: 10px;
}
.work-list > li:nth-child(n+5) {
  margin-top: 10px;
}

.work-circle {
  margin-top: 35px;
  padding-bottom: 42px;
}
.work-circle > li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFF;
  margin: 0 auto;
}
.work-circle > li + li {
  margin-top: 20px;
}

#lineup {
  padding-top: 90px;
}

.lineup-list {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.lineup-list__img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lineup-list__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.lineup-list > li > a > img {
  width: 100%;
}
.lineup-list > li:nth-child(n+5) > img {
  width: 100%;
}
.lineup-list__ttl {
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #0f5e94;
}
.lineup-list__txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 26px;
  text-align: left;
  color: #000;
  margin-top: 15px;
}
.lineup-list__arrow {
  margin-top: 23px;
  text-align: center;
  position: relative;
}
.lineup-list__arrow::after {
  border-bottom: 2px dotted #D3D3D3;
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  z-index: -1;
}
.lineup-list__price01 {
  font-family: "Jost";
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  color: #eb0101;
}
.lineup-list__price01 > span {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.04em;
  text-align: center;
}
.lineup-list__price02 {
  font-family: "Jost";
  font-weight: bold;
  font-size: 50px;
  text-align: center;
  color: #eb0101;
}
.lineup-list__price02 > p {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: -15px;
}
.lineup-list__price02 > span {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.04em;
}

.lineup-list-wrap {
  margin: 20px auto 0;
}

.lineup-list-wrap02 {
  margin: 20px auto 0;
}

#feature {
  margin-top: 120px;
  padding-top: 90px;
  background-color: #EB0101;
  padding-bottom: 182px;
}

.feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin-top: 50px;
}
.feature-list > li:nth-child(2) .feature-list__img {
  padding-bottom: 0px;
}
.feature-list > li:nth-child(2) .feature-list__img > img {
  max-width: none;
}
.feature-list > li:nth-child(3) .feature-list__img {
  padding-bottom: 0px;
}
.feature-list__img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #FFFFFF;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
}
.feature-list__ttl {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #eb0101;
  background-color: #FFC640;
  display: inline-block;
  margin-top: -20px;
  padding: 0 15px;
}
.feature-list__txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 26px;
  text-align: center;
  color: #fff;
  margin-top: 15px;
}
.feature-list__txt > span {
  font-size: 16px;
  font-weight: bold;
}

#flow {
  padding-top: 90px;
}

.flow-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 42px;
}
.flow-list > li {
  position: relative;
}
.flow-list > li:nth-last-child(n+2) .flow-list__img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -15px;
  width: 10px;
  height: 26px;
  background: url(../img/flow_arrow.svg) no-repeat;
}
.flow-list__img {
  position: relative;
  width: 151px;
  height: 151px;
  background-color: #F3F6FA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow-list__txt {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #2f2f2f;
  margin-top: 12px;
}

#qa {
  background-color: #0043A1;
  margin-top: 129px;
  padding-top: 90px;
  padding-bottom: 167px;
}

.qa-list {
  margin-top: 78px;
  border-bottom: 3px solid #527AB2;
}
.qa-list > li {
  border-top: 3px solid #527AB2;
  cursor: pointer;
}

.qa-list-question {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20.5px 0;
}
.qa-list-question__num {
  background-color: #008CD6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: normal;
  font-size: 24px;
  line-height: 99px;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.qa-list-question__txt {
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin: auto 0;
  margin-left: 28px;
}
.qa-list-question__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
}
.qa-list-question__btn > span {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 24px;
  left: 8px;
  width: 2px;
  height: 17px;
  margin: auto;
  background-color: #fff;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.qa-list-question__btn > span.is-none {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa-list-question__btn > span:nth-child(2) {
  position: absolute;
  display: block;
  top: 24px;
  bottom: 24px;
  right: 0;
  left: 0;
  width: 17px;
  height: 2px;
  margin: auto;
  background-color: #fff;
}

.qa-list-answer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20.5px 0;
  border-top: 2px dotted #527AB2;
  display: none;
}
.qa-list-answer__num {
  position: absolute;
  background-color: #2F2F2F;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: normal;
  font-size: 24px;
  line-height: 99px;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.qa-list-answer__txt {
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin: auto 0;
  padding-left: 77px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact {
  padding-top: 90px;
  margin-bottom: 150px;
}

.contact-tel {
  background-color: #F3F6FA;
  padding: 34px 30px 34px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.contact-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.contact-list__office {
  width: 129px;
  border-radius: 18px;
  background: -webkit-gradient(linear, left top, right top, from(#008cd6), to(#003d91));
  background: linear-gradient(to right, #008cd6 0%, #003d91 100%);
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 5px 0 7px 0;
}
.contact-list-box__num {
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  color: #0f5e94;
}
.contact-list-box__time {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #2f2f2f;
}

.contact-form {
  border-top: 3px dotted #D0D0D0;
}
.contact-form__intro {
  font-weight: normal;
  font-size: 17px;
  line-height: 32px;
  text-align: center;
  color: #000;
  margin-top: 40px;
}
.contact-form__text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border: 2px solid #BFBFBF;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  padding: 15px 0 15px 17px;
}

.contact-table th {
  position: relative;
  font-size: 14px;
  line-height: 32px;
  font-weight: 500;
  text-align: left;
  color: #000;
  padding: 20px 0;
  vertical-align: middle;
  width: 166px;
}
.contact-table td {
  padding: 20px 0;
}
.contact-table td > textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  width: 100%;
  height: 165px;
  border: 2px solid #BFBFBF;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  padding-top: 15px;
  padding-left: 17px;
}
.contact-table tr:nth-child(5) th {
  vertical-align: top;
  padding-top: 28px;
}

.contact-form-btn {
  text-align: center;
}
.contact-form-btn__txt {
  font-weight: normal;
  font-size: 17px;
  line-height: 32px;
  text-align: center;
  color: #000;
  margin-top: 20px;
}
.contact-form-btn__check {
  background-color: #F3F6FA;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

.contact-form-btn-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 177px;
  border: solid 2px #E5E5E5;
  border-radius: 5px;
}
.contact-form-btn-box__inner {
  overflow-y: scroll;
  height: 100%;
  font-weight: normal;
  font-size: 13px;
  line-height: 24px;
  text-align: left;
  color: #000;
  padding: 19px 37px 19px 23px;
}
.contact-form-btn-box__inner::-webkit-scrollbar {
  width: 10px;
}
.contact-form-btn-box__inner::-webkit-scrollbar-thumb {
  background: #D0D0D0;
  border-radius: 5px;
}
.contact-form-btn-box__inner p {
  margin-bottom: 1.5rem;
}
.contact-form-btn-box__inner h3 {
  font-weight: 700;
  font-size: 15px;
  margin: 30px 0 10px;
}
.contact-form-btn-box__inner ol {
  list-style: decimal;
  margin-left: 25px;
}
.contact-form-btn-box__inner li {
  margin-bottom: 5px;
}
.contact-form-btn-box__inner dt {
  font-weight: 700;
}
.contact-form-btn-box__inner dd {
  margin-left: 20px;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked + .contact-checkbox01::after {
  opacity: 1;
}

.contact-checkbox01 {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: auto;
  padding-left: 33px;
}
.contact-checkbox01::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  border: 1px solid #707070;
  border-radius: 0.2em;
  background: #fff;
  content: "";
}
.contact-checkbox01::after {
  position: absolute;
  top: 50%;
  left: 0.6em;
  display: block;
  margin-top: -0.9em;
  width: 0.5em;
  height: 1.2em;
  border-right: 4px solid #007CCF;
  border-bottom: 4px solid #007CCF;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact-btn {
  position: relative;
  border-radius: 42px;
  background: -webkit-gradient(linear, left top, right top, from(#008cd6), to(#003d91));
  background: linear-gradient(to right, #008cd6, #003d91);
  color: #FFF;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 32px;
  text-align: center;
  color: #fff;
  padding: 28px 149px;
  margin-top: 50px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}
.contact-btn:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
}

.validate-text {
  font-weight: bold;
  color: #eb0101;
  margin-top: 5px;
}

.modaal-video-wrap {
  margin: auto;
  position: relative;
  width: 100%;
}

.c-video {
  width: 100%;
}

.modaal-container {
  background: none;
}

.modaal-content-container {
  padding: 0;
}

.p_check {
  padding: 130px 0 120px;
}

.p_check-ttl-wrap {
  text-align: center;
}

.p_check-txt {
  margin-top: 27px;
  text-align: center;
  font-size: 17px;
  color: #000;
}

.c-ttl02 {
  font-weight: bold;
  font-size: 36px;
  color: #2f2f2f;
}

.p_check-sec02 {
  margin-top: 50px;
}

.p_check-table {
  width: 100%;
  border-top: 3px solid #e2e5e8;
  border-bottom: 3px solid #e2e5e8;
}
.p_check-table tr {
  border-top: 2px dotted #ced1d5;
}
.p_check-table th {
  background-color: #f3f6fa;
  padding: 25px 30px;
  text-align: left;
}
.p_check-table td {
  padding: 25px 35px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #2f2f2f;
}
.p_check-table__txt {
  font-weight: 500;
  font-size: 14px;
  line-height: 32px;
  text-align: left;
  color: #000;
}

.input-area.check {
  display: none;
}

.p-form__button {
  margin-top: 50px;
}

.c-btn02 {
  position: relative;
  border-radius: 30px;
  background-color: #707070;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 18px 141px;
  -webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.3));
}

.c-btn03 {
  position: relative;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 18px 141px;
  background: -webkit-gradient(linear, left top, right top, from(#008cd6), to(#003d91));
  background: linear-gradient(90deg, #008cd6 0%, #003d91 100%);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.p_finish {
  padding: 220px 0 180px;
}

.p_finish-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  color: #2F2F2F;
}

.p_finish-txt {
  background-color: #F3F6FA;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  text-align: center;
  color: #000;
  margin-top: 42px;
  padding: 39px 0;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@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 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;
  }
}

@media only screen and (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .paging-area > *:not(.dots):hover {
    background: blue;
    color: #fff;
  }
  #pagetop a {
    padding: 14.5px 21px;
  }
  #pagetop:hover a {
    background-color: #e1647b;
  }
  .mv-block {
    background-color: rgba(255, 255, 255, 0.4);
  }
  .mv-block-wrap {
    margin-left: 10.59vw;
    padding-top: 6.2vw;
  }
  .lineup-list__img:hover {
    opacity: 0.8;
  }
  .lineup-list > li {
    width: calc((100% - 30px) / 2);
  }
  .lineup-list > li:nth-child(even) {
    margin-left: 30px;
  }
  .lineup-list > li:nth-child(n+3) {
    margin-top: 34px;
  }
  .lineup-list > li:nth-child(n+5) {
    width: calc((100% - 60px) / 3);
  }
  .lineup-list > li:nth-child(7) {
    margin-left: 30px;
  }
  .lineup-list-wrap {
    width: 350px;
  }
  .lineup-list-wrap02 {
    width: 265px;
  }
  .feature-list > li {
    width: calc((100% - 122px) / 3);
  }
  .contact-list-box {
    margin-top: 10px;
  }
  .p_check-table th {
    width: 172px;
  }
  .p-form__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-form__button button + button {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 10px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  .header-wrap {
    padding: 15px 13px;
  }
  .header-nav-btn {
    margin-left: 0 !important;
  }
  #footer {
    padding: 20px 10px;
  }
  .footer-logo {
    width: 35%;
  }
  .footer-copy__text {
    margin-top: 7px;
  }
  .c-btn > img {
    width: auto !important;
  }
  .c-btn {
    padding: 18.5px 59.6px 20.2px 52.7px !important;
    width: 303px !important;
    font-size: 1vw !important;
    font-size: 15px !important;
    text-align: left;
    margin: 0 auto;
  }
  .c-ttl__en > img {
    width: 286px;
  }
  .c-ttl__jp {
    font-size: 32px;
    margin-top: -28px;
  }
  .c-txt {
    margin-top: 7px;
  }
  #pagetop a {
    padding: 16px 21px;
  }
  #pagetop img {
    margin-top: 1px;
  }
  .mv {
    padding: 129px 24px 408px 3.5vw;
  }
  .mv-block-wrap__ttl {
    line-height: 1;
    font-size: 6.66vw;
    line-height: 1.35;
    text-align: center;
    color: #2f2f2f;
  }
  .mv-block-wrap__price {
    font-size: 14.69vw;
    line-height: 1.5;
    text-align: center;
  }
  .mv-block-wrap__price > span {
    font-size: 8.7vw;
    line-height: 3;
  }
  .mv-block-wrap__img {
    width: 61.8vw;
    margin: 0 auto;
  }
  .mv-block-img {
    width: 65.4vw;
  }
  .mv-scroll {
    display: none;
  }
  #about {
    margin-top: -235px;
    padding-top: 155px;
  }
  .about-youtube {
    margin-top: 25px;
  }
  .work-list {
    margin-top: 25px;
  }
  .work-list > li {
    width: calc((100% - 20px) / 2);
  }
  .work-list > li:nth-child(n+3) {
    margin-top: 10px;
  }
  .work-circle {
    margin-top: 17.5px;
    padding-bottom: 21px;
  }
  .work-circle > li + li {
    margin-top: 10px;
  }
  #lineup {
    margin-top: 45px;
  }
  .lineup-list {
    margin-top: 25px;
  }
  .lineup-list > li + li {
    margin-top: 65px;
  }
  .lineup-list__txt {
    margin-top: 7px;
  }
  .lineup-list__arrow {
    margin-top: 11px;
  }
  .lineup-list-wrap {
    margin: 10px auto 0;
  }
  .lineup-list-wrap02 {
    margin: 10px auto 0;
  }
  #feature {
    margin-top: 60px;
    padding-top: 45px;
    padding-bottom: 91px;
  }
  .feature-list {
    margin-top: 35px;
  }
  .feature-list > li + li {
    margin-top: 30px;
  }
  .feature-list__img {
    width: 230px;
    height: 230px;
  }
  #flow {
    margin-top: 45px;
  }
  .flow-list {
    margin-top: 21px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .flow-list > li + li {
    margin-top: 45px;
  }
  .flow-list > li:nth-last-child(n+2) .flow-list__img::before {
    display: none;
  }
  .flow-list > li:nth-last-child(n+2)::before {
    content: "";
    position: absolute;
    rotate: 90deg;
    width: 10px;
    height: 26px;
    right: 50%;
    bottom: -32px;
    background: url(../img/flow_arrow.svg) no-repeat;
  }
  .flow-list__img {
    width: auto;
    height: 100px;
  }
  #qa {
    margin-top: 65px;
    padding-top: 45px;
    padding-bottom: 83px;
  }
  .qa-list {
    margin-top: 39px;
  }
  .qa-list > li:nth-child(2) .qa-list-answer {
    padding: 60.5px 0;
  }
  .qa-list-question__txt {
    margin-left: 14px;
    font-size: 16px;
    padding-right: 25px;
  }
  .qa-list-question__btn {
    right: 25px;
  }
  #contact {
    margin-top: 45px;
    margin-bottom: 75px;
  }
  .contact-tel {
    padding: 17px 0 27px;
  }
  .contact-list {
    display: block;
    text-align: center;
  }
  .contact-list > li + li {
    margin-top: 10px;
  }
  .contact-list-box {
    margin-left: 0;
    margin-top: 5px;
  }
  .contact-list-box__num {
    font-size: 30px;
  }
  .contact-list-box__time {
    text-align: center;
    font-size: 11px;
  }
  .contact-table th {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .contact-table td {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 4px;
  }
  .contact-table tr:nth-child(5) th {
    padding-top: 0;
  }
  .contact-form-btn__txt {
    font-size: 15px;
    margin-top: 10px;
  }
  .contact-form-btn__check {
    margin-top: 20px;
  }
  .contact-btn {
    padding: 14px 75px;
    margin-top: 25px;
  }
  .p_check-table th {
    display: block;
    width: 100%;
    padding: 12px 15px;
  }
  .p_check-table td {
    display: block;
    width: 100%;
    padding: 12px 17px;
  }
  .p-form__button {
    text-align: center;
  }
  .p-form__button button + button {
    margin-top: 15px;
  }
  .p_finish-ttl {
    font-size: 32px;
  }
  .p_finish-txt {
    font-size: 15px;
    padding: 20px 0;
  }
}

@media screen and (max-width: 390px) {
  .header-logo__img > img {
    width: 37vw;
  }
  .header-btn {
    padding: 2.5vw 11.4vw 2.7vw 12.3vw;
  }
}

@media screen and (max-width: 980px) {
  .header-list {
    display: none;
  }
}

@media screen and (max-width: 1160px) {
  .header-list__item {
    font-size: 13px;
  }
  .header-list > li + li {
    margin-left: 12px;
  }
  .header-nav-btn {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1020px) {
  .header-list__item {
    font-size: 12px;
  }
}

@media screen and (max-width: 1366px) {
  .c-btn > img {
    width: 2.8vw;
  }
  .c-btn {
    width: 26vw;
    padding: 1.5vw 2.9vw 1.5vw 2.5vw;
    font-size: 1.32vw;
  }
}

@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
    animation: fadeIn 1.5s forwards;
  }
  .anm-up {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
  }
  .anm-left {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
    animation: fadeInLeft 1.5s forwards;
  }
  .anm-right {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
    animation: fadeInRight 1.5s forwards;
  }
}

@media only screen and (min-width: 1367px) {
  .mv-block-img > img {
    width: 64vw;
  }
}

@media screen and (max-width: 810px) {
  .contact-list-wrap {
    display: block;
  }
  .contact-list__office {
    margin: auto;
    width: 103px;
    font-size: 12px;
    padding: 5px 0;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */


.privacy_policy {
    margin: 30px 0;
    padding: 20px 10px;
    border: 1px solid #ddd;
    height: 150px;
    overflow-y: scroll;
    font-size: 12px;
    text-align: left;
}
.privacy_policy h1 {
    text-align: center;
    font-size: 2em;
    margin: .67em 0;
    font-weight: bold;

}
.privacy_policy p {
    margin-bottom: 1.5em;
}
.policy_bold {
    font-weight: bold;
}
.privacy_policy dt {
    font-weight: 700;
}
.privacy_policy ul{
    list-style: unset;
    margin-left: 3rem;
    margin-bottom: 1.5em;
}
.privacy_policy dd{
margin-left:2rem;
}

