@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: "M PLUS 1p", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.gothic {
  font-family: "M PLUS 1p", "游ゴシック体", 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: 1140px;
  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/MPLUS1p-Medium.ttf) format("truetype");
  font-family: "M PLUS 1p";
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../font/MPLUS1p-Bold.ttf) format("truetype");
  font-family: "M PLUS 1p";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/MPLUS1p-ExtraBold.ttf) format("truetype");
  font-family: "M PLUS 1p";
  font-weight: 900;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#header.is-white {
  background: #fff;
}
#header.is-white:before {
  position: absolute;
  top: 0;
  right: 0;
}
#header.is-white .header-logo__img .bk {
  display: block;
}
#header.is-white .c-nav-btn span {
  background: #E50211;
}
#header.is-white .c-nav-btn.active span {
  background: #fff;
}

.header-contact-btn {
  width: 200px;
  height: 200px;
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  -webkit-transform: translate(55px, -118px);
          transform: translate(55px, -118px);
  position: absolute;
  top: 0;
  right: 0;
}
.header-contact-btn:before {
  width: 148px;
  height: 114px;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  background: url("../img/contact-nav-icon.png") no-repeat center;
  background-size: contain;
  opacity: 0;
  z-index: 10;
}
.header-contact-btn__icon {
  position: absolute;
  left: 80%;
  top: -30%;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 182px;
  height: 147px;
}
.header-contact-btn__icon img {
  width: 100%;
}
.header-contact-btn__txt {
  position: relative;
  z-index: 3;
  text-align: center;
  display: inline-block;
  background: #fff;
  color: #E50211;
  font-size: 16px;
  font-weight: bold;
  padding: 7px 12px;
}
.header-contact-btn__txt2 {
  margin-top: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.header-contact-btn__mail {
  position: relative;
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
.header-contact-btn__mail img {
  width: 29px;
}

.header-contact-btn:hover {
  z-index: 3;
  -webkit-transform: translate(65px, -78px);
          transform: translate(65px, -78px);
  background: #E50211;
}
.header-contact-btn:hover:before {
  opacity: 1;
}
.header-contact-btn:hover:after {
  content: "";
  display: block;
  width: 92%;
  height: 92%;
  border: solid 3px #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header-contact-btn:hover .header-contact-btn__txt {
  border-color: transparent;
  letter-spacing: 0.3em;
  background: transparent;
  display: none;
}
.header-contact-btn:hover .header-contact-btn__txt2 {
  opacity: 1;
  visibility: visible;
  display: block;
}
.header-contact-btn:hover .header-contact-btn__icon {
  top: 60%;
  left: -60%;
}
.header-contact-btn:hover .header-contact-btn__mail {
  opacity: 1;
}
.header-contact-btn:hover .header-nav-btn-hover-box:hover {
  z-index: 0;
}

.header-nav-btn-hover-box.is-active {
  z-index: 0;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn {
  -webkit-transform: translate(65px, -78px);
          transform: translate(65px, -78px);
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn {
  background: #E50211;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn:before {
  opacity: 1;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn:after {
  content: "";
  display: block;
  width: 92%;
  height: 92%;
  border: solid 3px #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn__txt {
  border-color: transparent;
  letter-spacing: 0.3em;
  background: transparent;
  display: none;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn__txt2 {
  opacity: 1;
  visibility: visible;
  display: block;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn__icon {
  top: 60%;
  left: 29%;
}
.header-nav-btn-hover-box.is-active + .header-nav-btn .header-contact-btn__mail {
  opacity: 1;
}

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

.header-logo__img > img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-width: 152px;
}

.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: bold;
  font-size: 16px;
  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: #E50211;
  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;
  width: 115px;
  position: relative;
}

.header-btn {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-align: center;
  color: #E50211;
  background: #fff;
  padding: 10px 14px;
  -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);
}

.c-nav-btn {
  width: 38px;
  height: 24px;
  position: relative;
  z-index: 1000;
}
.c-nav-btn span {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-nav-btn span:nth-child(1) {
  top: 0;
}
.c-nav-btn span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.c-nav-btn span:nth-child(3) {
  top: 100%;
}
.c-nav-btn.active span:nth-child(1) {
  top: 36%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-nav-btn.active span:nth-child(2) {
  opacity: 0;
}
.c-nav-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 36%;
}

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

.footer-logo {
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer-logo-img {
  margin-right: 20px;
}

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

.footer-copy__link {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
  font-weight: bold;
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: right;
  color: #fff;
}

.footer-copy__text {
  font-weight: bold;
  font-size: 19px;
  color: #fff;
}

.footer-external-link {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 3px;
  display: inline-block;
  position: relative;
}
.footer-external-link:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/bx-link-external.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 10px);
}

.c-btn {
  padding: 21px 54.3px 21px 59px;
  width: 624px;
  background: #E50211;
  color: #FFF;
  font-weight: bold;
  font-size: 32px;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  color: #E50211;
  font-weight: bold;
  font-size: 121px;
}
.c-ttl__jp {
  font-weight: 900;
  font-size: 54px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #141414;
}

.c-txt {
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  color: #2f2f2f;
  margin-top: 60px;
}

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

.c-txt > span {
  font-size: 20px;
  font-weight: bold;
  color: #EB0101;
}
.c-required {
  background: #E50211;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  color: #fff;
  padding: 6px 6px;
  margin-left: 7px;
  line-height: 1;
  display: inline-block;
}
.c-required--any {
  background: #aaa;
}

.c-ttl03 {
  font-weight: 900;
  font-size: 54px;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-ttl03__inner {
  display: inline-block;
  border-bottom: solid 1px #E50211;
}
.c-ttl03__strong {
  color: #E50211;
}

.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: 74px;
  height: 74px;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*------------------------------------------------------------------------------
  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 {
  background: #E50211;
}
.mv .parts01 {
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.mv .parts01 img {
  width: 39.16vw;
  -webkit-transform: translateX(2.416666667vw);
          transform: translateX(2.416666667vw);
}
.mv .mv-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.circle-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.circle-list .circle {
  position: absolute;
  width: 22vw;
  height: 22vw;
  opacity: 0;
}
.circle-list .circle img {
  width: 100%;
}
.circle-list .circle1 {
  top: -10.41666667vw;
  left: 18.41666667vw;
}
.circle-list .circle2 {
  left: 63.5vw;
  top: -9.375vw;
}
.circle-list .circle3 {
  left: -10.41666667vw;
  top: 25vw;
}
.circle-list .circle4 {
  left: 88.54166667vw;
  top: 4.947916667vw;
}
.circle-list .circle5 {
  left: 29.58333333vw;
  top: 44.21875vw;
}
.circle-list .circle6 {
  left: 17.34375vw;
  top: 15vw;
}
.circle-list .circle7 {
  left: -2.552083333vw;
  top: 1.145833333vw;
}
.circle-list .circle8 {
  left: 59.32291667vw;
  top: 13.28125vw;
}
.circle-list .circle9 {
  left: 3.020833333vw;
  top: 47.91666667vw;
}
.circle-list .circle10 {
  left: 59.32291667vw;
  top: 36.92708333vw;
}
.circle-list .circle11 {
  left: 77.8125vw;
  top: 52.5vw;
}
.circle-list .circle12 {
  left: 82.39583333vw;
  top: 27.40625vw;
}

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

#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 {
  padding-top: 90px;
  padding-bottom: 189px;
}

.qa-list {
  margin-top: 78px;
}
.qa-list > li {
  border-top: 1px solid #E0D1C0;
  cursor: pointer;
}
.qa-list > li:first-child {
  border: none;
}

.qa-list-question {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20.5px 0 40px;
}
.qa-list-question__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 26px;
  letter-spacing: 0.05em;
  font-weight: 900;
  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;
  position: relative;
}
.qa-list-question__num:before {
  display: block;
  content: "";
  width: 64px;
  height: 64px;
  background: url("../img/icon-qa-num.svg") no-repeat center;
  background-size: contain;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.qa-list-question__num-txt {
  position: relative;
  z-index: 1;
  margin-left: 4px;
}
.qa-list-question__txt {
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: left;
  margin: 28px 0 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: 3px;
  height: 20px;
  margin: auto;
  background-color: #E50211;
  -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: 20px;
  height: 3px;
  margin: auto;
  background-color: #E50211;
}

.qa-list-answer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: none;
  background: #F8F2EC;
  margin-bottom: 20px;
}
.qa-list-answer__txt {
  font-weight: bold;
  font-size: 19px;
  line-height: 28px;
  text-align: left;
  margin: auto 0;
  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;
}

#cta-bnr {
  padding-bottom: 80px;
}

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

.contact-list-wrap {
  padding: 26px 20px;
}

.contact-list__office {
  font-weight: bold;
  color: #E50211;
  font-size: 20px;
  padding: 5px 0 7px 0;
}

.contact-list-box {
  position: relative;
}
.contact-list-box__num {
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: left;
}
.contact-list-box__time {
  font-size: 12px;
  text-align: left;
  color: #747474;
}

.contact-form {
  padding-bottom: 150px;
}
.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%;
  background: #F5F5F5;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  padding: 24px 0 24px 17px;
}

.contact-table tr {
  border-bottom: solid 1px #E0D1C0;
}
.contact-table tr:last-child {
  border: none;
}
.contact-table th {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #E50211;
  padding: 20px 20px;
  vertical-align: middle;
  width: 300px;
}
.contact-table td {
  padding: 20px 0;
}
.contact-table td > textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  width: 100%;
  height: 140px;
  background: #F5F5F5;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  padding: 24px 0 24px 17px;
}
.contact-table tr.contact-content-tr-any th {
  padding-top: 0;
  vertical-align: top;
}
.contact-table tr.contact-content-tr-any td {
  padding-top: 0;
}
.contact-table tr.contact-content-tr-any .contact-th {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-th {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-content-tr {
  border: none !important;
}
.contact-content-tr th {
  vertical-align: top;
  padding-bottom: 5px;
}
.contact-content-tr td {
  padding-bottom: 5px;
}
.contact-content-tr .contact-th {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact-content-tr__req {
  font-size: 0;
}
.contact-content-tr__req > * {
  display: block;
}
.contact-content-tr__req > *:nth-child(1) {
  margin-top: 4px;
}
.contact-content-tr__req > *:nth-child(2) {
  margin-top: 103px;
}

.contact-form-btn {
  text-align: center;
}
.contact-form-btn__txt {
  font-weight: normal;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  color: #000;
  margin-top: 20px;
}
.contact-form-btn__check {
  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: 186px;
  background: #F8F2EC;
}
.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: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 19px;
  display: inline-block !important;
}
.contact-checkbox01::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 41px;
  height: 41px;
  background: url("../img/icon-checkmark-circle.svg") no-repeat center;
  background-size: contain;
  content: "";
  display: block;
}
.contact-checkbox01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  display: block;
  width: 41px;
  height: 41px;
  background: url("../img/icon-checkmark-circle-checked.svg") no-repeat center;
  background-size: contain;
  content: "";
  opacity: 0;
}

.contact-btn {
  position: relative;
  color: #FFF;
  background: #E50211;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.17em;
  text-align: center;
  padding: 28px 149px;
  margin-top: 50px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.contact-btn:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icon-arrow-right.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 26px;
}
.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);
}

.contact-txt-box {
  padding-bottom: 40px;
}

.radio-box > label {
  display: block;
}
.radio-box > label + label {
  margin-top: 8px;
}

.radio-dot {
  position: relative;
  padding-left: 23px;
}
.radio-dot::before {
  z-index: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
  content: "";
  margin-right: 10px;
  border-radius: 50%;
  background-color: #E50211;
  background-repeat: no-repeat;
  background-position: center center;
}
.radio-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fcfcfc;
  border: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
}

input[type=radio]:checked + .radio-dot::before {
  opacity: 1;
}

.check-box > label {
  display: block;
}
.check-box > label + label {
  margin-top: 8px;
}

.check-dot {
  position: relative;
  padding-left: 23px;
}
.check-dot::before {
  z-index: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
  content: "";
  margin-right: 10px;
  background: url("../img/icon-check.svg") no-repeat center;
  background-size: contain;
}
.check-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fcfcfc;
  border: 2px solid #e1e1e1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
}

input[type=checkbox]:checked + .check-dot::before {
  opacity: 1;
}

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

.worries-block {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(20.2%, #fff), to(#cecece));
  background: linear-gradient(#fff 0%, #fff 20.2%, #cecece 100%);
}
.worries-block__ttl {
  margin-bottom: 80px;
}
.worries-list__img {
  width: 100%;
}
.worries-list__desc {
  text-align: center;
  margin-top: 36px;
  font-size: 19px;
  font-weight: bold;
}
.worries-list__strong {
  font-size: 23px;
  color: #E50211;
}

.feature-block {
  position: relative;
  padding-top: 150px;
  padding-bottom: 127px;
}
.feature-block__ttl {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  font-size: 215px;
  line-height: 1;
  color: #E50211;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}
.feature-block__ttl .small {
  color: #333;
  font-size: 121px;
}
.feature-block__btn {
  margin-top: 135px;
  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;
}

.feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.feature-list__item {
  position: relative;
  background: #F8F2EC;
  padding: 110px 20px 40px;
  height: 100%;
}
.feature-list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 50px solid transparent;
  border-left: 140px solid #fff;
  border-bottom: 140px solid transparent;
  border-left: 140px solid #fff;
}
.feature-list__num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 132px;
  font-weight: bold;
  letter-spacing: -0.02em;
  color: #E2DBD5;
  line-height: 1;
  margin-top: 10px;
}
.feature-list__icon {
  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;
  height: 170px;
}
.feature-list__desc {
  margin-top: 30px;
  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;
}
.feature-list__desc-icon {
  margin-right: 20px;
}
.feature-list__desc-txt {
  font-size: 33px;
}

.feature-detail-block {
  background: #E50211;
}
.feature-detail-block__inner {
  padding: 160px 110px;
}

.feature-detail-box {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
.feature-detail-box + .feature-detail-box {
  margin-top: 40px;
}
.feature-detail-box__cont {
  margin-top: 60px;
}

.feature-detail-ttl {
  position: relative;
  padding-top: 20px;
}
.feature-detail-ttl__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.feature-detail-ttl__num {
  text-align: center;
  font-size: 54px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  margin-bottom: 32px;
}
.feature-detail-ttl__num:before {
  content: "";
  display: block;
  width: 16px;
  height: 4px;
  background: #141414;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  margin: auto;
}
.feature-detail-ttl__txt {
  font-size: 90px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #E50211;
  letter-spacing: 0.176em;
}

.feature-detail-desc {
  margin-top: 80px;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-align: center;
}
.feature-detail-desc .strong {
  color: #E50211;
}
.feature-detail-desc .gray {
  font-size: 18px;
  color: #6A6A6A;
}

.feature-detail02-ttl__en {
  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;
}
.feature-detail02-ttl__en-txt {
  font-size: 27px;
  color: #9D5300;
  text-align: center;
  opacity: 0.61;
}
.feature-detail02-ttl__main {
  text-align: center;
  font-size: 33px;
  font-weight: bold;
}
.feature-detail02-ttl__main .strong {
  color: #E50211;
}

.feature-detail02-case-swiper {
  margin-top: 50px;
  max-width: 1443px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
.feature-detail02-case-swiper.is-active {
  display: block;
}
.feature-detail02-case-swiper__box01 {
  overflow: hidden;
}
.feature-detail02-case-swiper__box01 .swiper-button-box {
  position: relative;
  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;
}
.feature-detail02-case-swiper__box01 .swiper-slide > img {
  width: 100%;
}
.feature-detail02-case-swiper__box01 .swiper-pagination,
.feature-detail02-case-swiper__box01 .swiper-button-next,
.feature-detail02-case-swiper__box01 .swiper-button-prev {
  position: relative;
  top: initial;
  bottom: initial;
  left: initial;
  right: initial;
  margin-top: initial;
}
.feature-detail02-case-swiper__box01 .swiper-pagination {
  display: inline-block;
  width: auto;
}
.feature-detail02-case-swiper__box01 .swiper-button-next::after,
.feature-detail02-case-swiper__box01 .swiper-button-prev::after {
  content: "";
  width: 24px;
  height: 39px;
  background-image: url(../img/arrow-red-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.feature-detail02-case-swiper__box01 .swiper-button-prev {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.feature-detail02-variation-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.feature-detail02-variation-list__item {
  text-align: center;
  background: #EDE7E1;
  border: solid 1px #707070;
  height: 58px;
  line-height: 58px;
  letter-spacing: 0.14em;
}

.feature-detail02-case {
  background-color: #F2EAEA;
  padding: 100px 0 160px;
}
.feature-detail02-case__ttl {
  text-align: center;
  font-size: 80px;
  letter-spacing: -0.02em;
  color: #E50211;
  font-weight: bold;
}

.feature-detail02-case-list {
  margin-top: 50px;
  padding: 0 40px;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
}

.feature-detail02-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px 10px;
}
.feature-detail02-list > li.is-active .feature-detail02-list__img {
  border: solid 3px #E50211;
}
.feature-detail02-list > li.is-active .feature-detail02-list__ttl {
  background-color: #E50211;
}
.feature-detail02-list > li.is-active .feature-detail02-list__ttl::before {
  background-color: #E50211;
}
.feature-detail02-list__item {
  text-align: center;
}
.feature-detail02-list__img {
  border: solid 3px transparent;
}
.feature-detail02-list__ttl {
  margin: 12px 0 0 0;
  display: inline-block;
  padding: 2px 8px;
  background-color: #363636;
  border-radius: 2px;
  color: #fff;
  font-size: clamp(16px,0.9895833333vw,19px);
  letter-spacing: 0.16em;
  font-weight: bold;
  position: relative;
}
.feature-detail02-list__ttl::before {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background-color: #363636;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.feature-detail02-line {
  margin-top: 90px;
}

.feature-detail02-works-txt, .feature-detail02-works-txt2 {
  margin-top: 90px;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}
.feature-detail02-works-txt .strong, .feature-detail02-works-txt2 .strong {
  color: #E50211;
  font-size: 42px;
}
.feature-detail02-works-txt .strong02, .feature-detail02-works-txt2 .strong02 {
  color: #E50211;
  font-size: 32px;
}
.feature-detail02-works-txt .num, .feature-detail02-works-txt2 .num {
  color: #E50211;
  font-size: 63px;
  line-height: 1;
}

.feature-detail02-works-txt2 {
  margin-top: 10px;
}

.feature-detail02-btn {
  margin-top: 70px;
  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;
}

.feature-detail03-list {
  padding-bottom: 40px;
}
.feature-detail03-list__cap {
  margin-top: 20px;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.16em;
}

.feature-detail04-price {
  margin-top: 80px;
}
.feature-detail04-price__ttl-box {
  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;
}
.feature-detail04-price__ttl {
  padding: 4px 40px;
  display: inline-block;
  background: #E50211;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
}
.feature-detail04-price__ttl .strong {
  font-weight: 900;
}
.feature-detail04-price__cont {
  font-size: 46px;
  letter-spacing: -0.02em;
  font-weight: bold;
  margin-top: 20px;
}
.feature-detail04-price__cont .num {
  color: #E50211;
  font-size: 124px;
  font-weight: bold;
  line-height: 1;
  margin-right: 10px;
}

.feature-detail04-cont01 {
  margin-top: 90px;
}
.feature-detail04-cont01__ttl {
  background: #EDE4D9;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.feature-detail04-cont01__ttl:before {
  content: "";
  display: block;
  width: 28px;
  height: 30px;
  border-top: 30px solid #EDE4D9;
  border-right: 28px solid transparent;
  border-left: 28px solid transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.feature-detail04-cont01__ttl-txt {
  line-height: 1.8;
  font-size: 31px;
  font-weight: bold;
}
.feature-detail04-cont01__ttl-txt .strong {
  color: #E50211;
}
.feature-detail04-cont01__cont {
  margin-top: 80px;
  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;
  height: 230px;
  padding: 0 40px;
}
.feature-detail04-cta {
  margin-top: 50px;
}

.feature-detail04-btn {
  margin-top: 70px;
  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;
}
.feature-detail01-slider .slick-arrow {
  content: "";
  width: 34px;
  height: 55px;
  background: url("../img/arrow-red-left.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.feature-detail01-slider .slick-arrow.slick-prev {
  left: -40px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.feature-detail01-slider .slick-arrow.slick-next {
  right: -40px;
}

.feature-detail02-slider {
  position: relative;
}
.feature-detail02-slider .swiper-container {
  width: 100%;
  margin: 40px 0;
  padding: 45px 0;
}
.feature-detail02-slider .swiper-slide {
  opacity: 0.7;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-top: auto;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  border: solid 1px #ddd;
}
.feature-detail02-slider .swiper-slide img {
  width: 100%;
}
.feature-detail02-slider .swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
.feature-detail02-slider .swiper-button-prev {
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  -webkit-transform: translateX(-50px) rotate(180deg);
          transform: translateX(-50px) rotate(180deg);
  width: 24px;
  height: 39px;
  background: url("../img/arrow-red-left.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-detail02-slider .swiper-button-prev:after {
  display: none;
}
.feature-detail02-slider .swiper-button-next {
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  width: 24px;
  height: 39px;
  background: url("../img/arrow-red-left.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-detail02-slider .swiper-button-next:before {
  display: none;
}
.feature-detail02-slider .swiper-button-next:after {
  display: none;
}

.splide__slide {
  margin-top: auto;
}

.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.fixed-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #E50211;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
}
.fixed-banner__item {
  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;
  color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
}
.fixed-banner__item:first-child {
  padding-left: 20px;
}
.fixed-banner__item:last-child {
  padding-left: 20px;
  padding-right: 20px;
  border-left: solid 2px #fff;
}
.fixed-banner__icon {
  width: 32px;
}
.fixed-banner__ttl {
  width: calc(100% - 32px);
  padding: 0 2px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.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;
  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;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 18px 141px;
  background: #E50211;
  -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;
  }
  #header.is-white .header-list > li > a {
    color: #E50211;
  }
  .header-logo__img > img {
    width: 152px;
    height: 42.92px;
  }
  .header-contact-btn__txt {
    color: #fff;
    background-color: #E50211;
    border: 2px solid #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-nav-btn-hover-box {
    z-index: 2;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
  }
  .header-wrap {
    background-color: rgba(255, 255, 255, 0.77);
  }
  .header-list > li > a {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
    color: #E50211;
  }
  .footer-copy {
    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;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    margin: auto;
  }
  .c-txt {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .paging-area > *:not(.dots):hover {
    background: blue;
    color: #fff;
  }
  #pagetop:hover a {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .mv {
    width: 100%;
    height: 56.25vw;
  }
  .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;
  }
  .qa-list-question__txt {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .qa-list-answer {
    padding: 44px 44px 44px 90px;
  }
  .qa-list-answer__txt {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .contact-list {
    background-color: #F8F2EC;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact-list > li + li {
    position: relative;
  }
  .contact-list > li + li:before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background: #C1B8AD;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  .contact-list-box {
    margin-top: 5px;
  }
  .contact-list-box__num {
    font-size: 28px;
  }
  .contact-form-btn__txt {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .contact-form-btn-box__inner {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .worries-block {
    padding-top: 370px;
    padding-bottom: 270px;
  }
  .worries-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .worries-list > li {
    width: calc((100% - 20px) / 3 );
    margin-left: 10px;
  }
  .worries-list > li:nth-child(3n+1) {
    margin-left: 0;
  }
  .worries-list__desc {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .feature-list > li {
    width: calc((100% - 18px) / 2);
  }
  .feature-list > li:nth-child(2n+1) {
    margin-right: 18px;
  }
  .feature-list > li:nth-child(n+3) {
    margin-top: 18px;
  }
  .feature-detail-box__inner {
    padding: 0 40px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-detail01-slider__item {
    height: min(772px, 80vh);
  }
  .feature-detail01-slider__item > img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .feature-detail-ttl__icon {
    width: 561px;
  }
  .feature-detail-desc {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .feature-detail02-case-swiper {
    padding: 0 40px;
  }
  .feature-detail02-case-swiper__box01 .swiper-button-box {
    margin-top: 30px;
    gap: 0 70px;
  }
  .feature-detail02-variation-list > li {
    width: calc(((100% - 40px) / 5));
    margin-left: 10px;
  }
  .feature-detail02-variation-list > li:nth-child(5n+1) {
    margin-left: 0;
  }
  .feature-detail02-variation-list > li:nth-child(n+6) {
    margin-top: 10px;
  }
  .feature-detail02-variation-list__item {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .feature-detail02-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .feature-detail02-list > li {
    width: calc((100% - 50px) / 6);
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .feature-detail02-list > li:hover {
    opacity: 0.8;
  }
  .feature-detail03-list {
    margin-top: 60px;
  }
  .feature-detail04-price {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-detail04-cont01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .feature-detail04-cont01__box {
    width: calc((100% - 40px) / 2);
  }
  .feature-detail04-cont01__box:nth-child(2) {
    margin-left: 40px;
  }
  .feature-detail01-slider .slick-arrow {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .feature-detail01-slider .slick-arrow.slick-prev:hover {
    -webkit-transform: rotate(180deg) translateX(8px) scale(1.1);
            transform: rotate(180deg) translateX(8px) scale(1.1);
  }
  .feature-detail01-slider .slick-arrow.slick-next:hover {
    -webkit-transform: translateX(8px) scale(1.1);
            transform: translateX(8px) scale(1.1);
  }
  .feature-detail02-slider {
    margin-top: 26vw;
  }
  .feature-detail02-slider .swiper-slide-active {
    -webkit-transform: scale(2.4) translateY(-40px) !important;
            transform: scale(2.4) translateY(-40px) !important;
  }
  .feature-detail02-slider .swiper-button-prev:hover {
    -webkit-transform: translateX(-60px) rotate(180deg);
            transform: translateX(-60px) rotate(180deg);
  }
  .feature-detail02-slider .swiper-button-next:hover {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
  .fixed-banner {
    display: none !important;
  }
  .p_check-table th {
    width: 172px;
  }
  .p_check-table td {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .p_check-table__txt {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
  .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;
  }
  .p_finish-txt {
    -webkit-transform: rotate(0.05deg);
            transform: rotate(0.05deg);
  }
}

@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.is-white .header-list > li > a {
    color: #fff;
  }
  .header-contact-btn {
    display: none;
  }
  .header-wrap {
    padding: 15px 13px;
  }
  .header-nav {
    display: block;
    position: fixed;
    padding-top: 80px;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 100;
    background: #E50211;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    height: 100%;
    overflow-y: auto;
  }
  .header-nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-list {
    width: 90%;
  }
  .header-list__item > img {
    opacity: 0.7;
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header-list > li {
    width: 100%;
    border-bottom: solid 2px #fff;
  }
  .header-list > li > a {
    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;
    font-weight: 900;
    font-size: 16px;
    text-align: left;
    padding: 20px;
    color: #fff;
    padding-left: 70px;
  }
  .header-list > li > a.top {
    padding-left: 70px;
  }
  .header-list > li + li {
    margin-left: 0;
  }
  .header-nav-btn {
    margin-left: 0 !important;
  }
  #footer {
    padding: 20px 10px;
  }
  .footer-logo-img {
    width: 140px;
  }
  .footer-copy__text {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
  }
  .footer-external-link {
    font-size: 14px;
    padding-right: 26px;
  }
  .footer-external-link:before {
    width: 14px;
    height: 14px;
    left: auto;
    right: 0;
  }
  .c-btn > img {
    width: 22px !important;
    margin-right: 10px;
  }
  .c-btn {
    padding: 14px 20px !important;
    width: 100% !important;
    font-size: 1vw !important;
    font-size: 15px !important;
    text-align: left;
    margin: 0 auto;
  }
  .c-ttl__en {
    font-size: 50px;
  }
  .c-ttl__jp {
    font-size: 30px;
  }
  .c-txt {
    font-size: 14px;
    margin-top: 18px;
  }
  .c-ttl03 {
    font-size: 24px;
  }
  #pagetop a {
    width: 50px;
    height: 50px;
  }
  .mv {
    width: 100%;
    height: 189.7435897vw;
  }
  .mv .parts01 img {
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
  .circle-list .circle {
    width: 52.30769231vw;
    height: 52.30769231vw;
  }
  .circle-list .circle1 {
    left: -6.923076923vw;
    top: 52.82051282vw;
  }
  .circle-list .circle2 {
    left: 73.84615385vw;
    top: 6.923076923vw;
  }
  .circle-list .circle3 {
    left: 16.41025641vw;
    top: -4.358974359vw;
  }
  .circle-list .circle4 {
    left: 71.28205128vw;
    top: 62.30769231vw;
  }
  .circle-list .circle5 {
    top: 118.974359vw;
    left: -15.64102564vw;
  }
  .circle-list .circle6 {
    left: 55.38461538vw;
    top: 120vw;
  }
  .circle-list .circle7 {
    display: none;
  }
  .circle-list .circle8 {
    display: none;
  }
  .circle-list .circle9 {
    display: none;
  }
  .circle-list .circle10 {
    display: none;
  }
  .circle-list .circle11 {
    display: none;
  }
  .circle-list .circle12 {
    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;
  }
  #flow {
    margin-top: 45px;
    padding-top: 40px;
  }
  .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: 94px;
  }
  .qa-list {
    margin-top: 39px;
  }
  .qa-list-question {
    padding: 10px 0 20px;
  }
  .qa-list-question__txt {
    margin-left: 14px;
    font-size: 16px;
    padding-right: 25px;
  }
  .qa-list-question__btn {
    right: 25px;
  }
  .qa-list-answer__txt {
    padding: 10px;
    font-size: 14px;
  }
  #cta-bnr {
    padding-bottom: 40px;
  }
  .contact-tel {
    padding: 17px 0 27px;
    margin-bottom: 0;
  }
  .contact-list > li + li {
    margin-top: 10px;
  }
  .contact-list-wrap {
    background-color: #F8F2EC;
    display: block;
    padding: 12px 0;
  }
  .contact-list__office {
    font-size: 20px;
    width: auto;
    text-align: center;
  }
  .contact-list-box {
    margin-left: 0;
    margin-top: 5px;
    text-align: center;
  }
  .contact-list-box__num {
    font-size: 30px;
    text-align: center;
  }
  .contact-list-box__time {
    text-align: center;
    font-size: 11px;
  }
  .contact-form__text {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .contact-table th {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    font-size: 18px;
  }
  .contact-table td {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 4px;
  }
  .contact-table tr:nth-child(5) th {
    padding-top: 0;
  }
  .contact-table tr.contact-content-tr-any th {
    margin-top: 0;
  }
  .contact-th {
    padding-bottom: 5px;
  }
  .contact-th__label {
    padding: 0;
  }
  .contact-form-btn__txt {
    font-size: 15px;
    margin-top: 10px;
  }
  .contact-form-btn__check {
    margin-top: 20px;
  }
  .contact-checkbox01 {
    font-size: 16px;
  }
  .contact-checkbox01::before {
    width: 36px;
    height: 36px;
  }
  .contact-checkbox01::after {
    width: 36px;
    height: 36px;
  }
  .contact-btn {
    padding: 14px 75px;
    margin-top: 25px;
    font-size: 22px;
  }
  .contact-txt-box {
    padding-bottom: 25px;
  }
  label {
    display: inline-block;
    padding-bottom: 10px;
  }
  .validate-text {
    margin-bottom: 5px;
  }
  .worries-block {
    margin-top: 40vw;
    padding-top: 100px;
    padding-bottom: 90px;
  }
  .worries-block__ttl {
    margin-bottom: 40px;
  }
  .worries-list > li + li {
    margin-top: 16px;
  }
  .worries-list__desc {
    margin-top: 12px;
    font-size: 16px;
  }
  .worries-list__strong {
    font-size: 20px;
  }
  .feature-block {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .feature-block__ttl {
    font-size: 14vw;
  }
  .feature-block__ttl .small {
    font-size: 10vw;
  }
  .feature-block__btn {
    margin-top: 70px;
  }
  .feature-list > li {
    width: calc((100% - 18px) / 2);
  }
  .feature-list > li:nth-child(2n+1) {
    margin-right: 18px;
  }
  .feature-list > li:nth-child(n+3) {
    margin-top: 18px;
  }
  .feature-list__item {
    padding: 55px 10px 20px;
  }
  .feature-list__item:before {
    border-bottom: 25px solid transparent;
    border-left: 70px solid #fff;
    border-bottom: 70px solid transparent;
    border-left: 70px solid #fff;
  }
  .feature-list__num {
    font-size: 40px;
  }
  .feature-list__icon {
    height: 56px;
  }
  .feature-list__icon img {
    max-height: 100%;
  }
  .feature-list__desc {
    margin-top: 14px;
  }
  .feature-list__desc-icon {
    margin-right: 10px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .feature-list__desc-icon img {
    width: 20px;
  }
  .feature-list__desc-txt {
    font-size: 17px;
  }
  .feature-detail-block__inner {
    padding: 80px 10px;
  }
  .feature-detail-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .feature-detail-box__inner {
    padding: 0 10px;
  }
  .feature-detail-ttl__icon {
    width: 100px;
  }
  .feature-detail-ttl__num {
    font-size: 32px;
  }
  .feature-detail-ttl__txt {
    font-size: 46px;
  }
  .feature-detail-desc {
    margin-top: 40px;
    font-size: 15px;
  }
  .feature-detail-desc .gray {
    font-size: 12px;
  }
  .feature-detail02-ttl__en-txt {
    font-size: 18px;
  }
  .feature-detail02-ttl__main {
    font-size: 22px;
  }
  .feature-detail02-ttl__main .mark {
    letter-spacing: -0.5em;
  }
  .feature-detail02-case-swiper {
    margin-top: 25px;
    position: relative;
  }
  .feature-detail02-case-swiper__box01 {
    padding: 0 40px 20px;
    position: relative;
  }
  .feature-detail02-case-swiper__box01 .swiper-button-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .feature-detail02-case-swiper__box01 .swiper-slide {
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .feature-detail02-case-swiper__box01 .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  .feature-detail02-case-swiper__box01 .swiper-pagination {
    position: absolute;
    bottom: 0;
  }
  .feature-detail02-case-swiper__box01 .swiper-button-next,
.feature-detail02-case-swiper__box01 .swiper-button-prev {
    width: 17px;
    height: 27px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .feature-detail02-case-swiper__box01 .swiper-button-next::after,
.feature-detail02-case-swiper__box01 .swiper-button-prev::after {
    width: 17px;
    height: 27px;
  }
  .feature-detail02-case-swiper__box01 .swiper-button-prev {
    left: 10px;
  }
  .feature-detail02-case-swiper__box01 .swiper-button-next {
    right: 10px;
    left: initial;
  }
  .feature-detail02-variation-list > li {
    width: calc(((100% - 10px) / 2));
    margin-left: 10px;
  }
  .feature-detail02-variation-list > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .feature-detail02-variation-list > li:nth-child(n+3) {
    margin-top: 10px;
  }
  .feature-detail02-case {
    padding: 50px 0 80px;
  }
  .feature-detail02-case__ttl {
    font-size: 36px;
  }
  .feature-detail02-case-list {
    padding: 0 10px;
  }
  .feature-detail02-list {
    gap: 15px;
  }
  .feature-detail02-list > li {
    width: calc((100% - 15px) / 2);
  }
  .feature-detail02-list__ttl {
    font-size: 12px;
    margin: 6px 0 0 0;
  }
  .feature-detail02-line {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .feature-detail02-works-txt, .feature-detail02-works-txt2 {
    margin-top: 45px;
    font-size: 19px;
  }
  .feature-detail02-works-txt .strong, .feature-detail02-works-txt2 .strong {
    font-size: 26px;
  }
  .feature-detail02-works-txt .strong02, .feature-detail02-works-txt2 .strong02 {
    font-size: 22px;
  }
  .feature-detail02-works-txt .num, .feature-detail02-works-txt2 .num {
    font-size: 38px;
  }
  .feature-detail03-list {
    margin-top: 20px;
  }
  .feature-detail03-list__cap {
    font-size: 14px;
  }
  .feature-detail04-price {
    margin-top: 40px;
  }
  .feature-detail04-price__ttl {
    font-size: 16px;
  }
  .feature-detail04-price__cont {
    margin-top: 10px;
    font-size: 24px;
    text-align: center;
  }
  .feature-detail04-price__cont .num {
    font-size: 50px;
  }
  .feature-detail04-cont01 {
    margin-top: 45px;
  }
  .feature-detail04-cont01__box + .feature-detail04-cont01__box {
    margin-top: 60px;
  }
  .feature-detail04-cont01__ttl {
    padding: 10px;
  }
  .feature-detail04-cont01__ttl-txt {
    font-size: 18px;
  }
  .feature-detail04-cont01__cont {
    margin-top: 40px;
    height: auto;
    padding: 0 10px;
  }
  .feature-detail04-cta {
    margin-top: 25px;
  }
  .feature-detail01-slider {
    padding: 0 40px;
  }
  .feature-detail01-slider .slick-arrow {
    width: 17px;
    height: 27px;
  }
  .feature-detail01-slider .slick-arrow.slick-prev {
    left: 0;
  }
  .feature-detail01-slider .slick-arrow.slick-next {
    right: 0;
  }
  .feature-detail02-slider {
    margin-top: 40px;
    padding: 0 40px;
  }
  .feature-detail02-slider .swiper-button-prev {
    width: 17px;
    height: 27px;
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .feature-detail02-slider .swiper-button-next {
    width: 17px;
    height: 27px;
    top: 0;
    bottom: 0;
    left: auto;
    right: 10px;
    -webkit-transform: none;
            transform: none;
  }
  .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: 450px) {
  .header-logo__img > img {
    width: 37vw;
  }
}

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

@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 (max-width: 350px) {
  .feature-list__desc-txt {
    font-size: 14px;
  }
}

@media only screen and (max-width: 374px) {
  .feature-detail04-cont01__ttl.pat01 {
    padding: 10px 5px;
  }
}
/*# 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;
}
