@charset "UTF-8";
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
body .txt_blue {
  color: var(--main);
}

main > .inner {
  max-width: 100%;
  padding: 0;
  display: flex;
}

.main_contents {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .main_contents {
    width: calc(100% - 390px);
  }
}

.side_form {
  width: 0;
  height: 100vh;
  max-width: 390px;
  background: #fff;
  position: fixed;
  right: 0;
  z-index: 1020;
  transition: 0.5s;
}
.side_form.open {
  width: calc(100% - 30px);
}
@media screen and (min-width: 768px) {
  .side_form.open {
    width: calc(100% - 50px);
  }
}
@media screen and (min-width: 1200px) {
  .side_form.open {
    width: 100%;
  }
}
.side_form #sidemenu {
  opacity: 0;
  transition: 0.5s;
}
.side_form #sidemenu.open {
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  .side_form #sidemenu {
    opacity: 1;
  }
}

section {
  padding: 2.5em 0;
}

.section_title {
  margin-bottom: 2em;
  color: #666;
  font-weight: 700;
  font-size: 125%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section_title {
    font-size: 150%;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .section_title {
    font-size: 212.5%;
  }
}
.section_title::before {
  content: "";
  width: 2.8em;
  height: 3.4em;
  background: url(../images/sectitle_icon.png) center bottom/contain no-repeat;
  display: block;
}
.section_title span {
  padding-left: 0.25em;
  border-bottom: 1px dotted #80acce;
}
.section_title small {
  font-size: 50%;
}

.modal {
  padding-right: 0 !important;
}
.modal-dialog {
  max-width: 1100px;
}
.modal-content {
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
}
.modal-content > .inner {
  max-width: 800px;
  padding: 0;
}
.modal-content .close {
  position: absolute;
  top: 0;
  right: 5px;
}
.modal-content .dl {
  width: 100%;
  max-width: 20em;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: calc(100% - 2rem);
    padding: 2em;
  }
  .modal-content .close {
    top: 0.5em;
    right: 1em;
  }
}

.test_wrap {
  height: 100%;
  padding: 1.5em 1em;
  background: var(--main);
  border-radius: 0.875em;
  color: #fff;
  font-size: 80%;
  position: relative;
}
@media screen and (min-width: 370px) {
  .test_wrap {
    font-size: 100%;
  }
}
.test_wrap::before {
  content: "無料";
  padding: 0.5rem 0.3em 0.75rem;
  background: linear-gradient(to bottom, #ab9882 2px, #e9e0d0 2px 4px, #dacdb7 4px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  color: #d91c24;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0.5em;
}
.test_wrap p {
  color: #fff;
  font-size: 100%;
  font-weight: 700;
}
@media screen and (min-width: 360px) {
  .test_wrap p {
    font-size: 112.5%;
  }
}
.test_wrap input, .test_wrap select, .test_wrap textarea {
  width: 100%;
  padding: 0.5em;
  background: #fff;
  border-radius: 4px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .test_wrap input::placeholder, .test_wrap select::placeholder, .test_wrap textarea::placeholder {
    font-size: 80%;
  }
}
@media screen and (min-width: 768px) {
  .test_wrap input, .test_wrap select, .test_wrap textarea {
    font-size: 80%;
  }
}
.test_wrap button {
  width: 100%;
  padding: 0.5em;
  background: var(--ac);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 80%;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
.test_wrap button:focus {
  outline: 0;
}
.test_wrap button.gray, .test_wrap button:disabled {
  background: #ccc;
}
.test_wrap .msg {
  color: #ff0;
  font-size: 80%;
  font-weight: 400;
  text-align: center;
}
.test_wrap .btn.reset {
  width: 100%;
  margin-top: 1em;
  background: #fff;
  border: 1px solid var(--main);
  color: var(--main);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  white-space: pre-wrap;
  text-align: center;
}
.test_wrap .btn.reset::after {
  display: none;
}
.test_wrap audio {
  width: 100%;
}

#sec_test #btn_reset2 {
  display: flex;
  flex-direction: column;
}

/*--------------------------------------------------------------
# メインコンテンツ
--------------------------------------------------------------*/
.secMV {
  padding: 0;
  background: var(--main);
  position: relative;
  overflow: hidden;
}
.secMV__inner {
  width: calc(100% - 1rem);
  max-width: 500px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 375px) {
  .secMV__inner {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 768px) {
  .secMV__inner {
    width: calc(100% - 40px);
    max-width: 1330px;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__inner {
    width: calc(100% - 50px);
  }
}
@media screen and (min-width: 1600px) {
  .secMV__inner {
    width: calc(100% - 70px);
    max-width: 1460px;
  }
}
.secMV__blk {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .secMV__blk--left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .secMV__blk--left {
    padding: 20px 0 20px 0;
  }
  .secMV__blk--right {
    width: auto;
    padding: 20px 0 20px;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__blk--left {
    padding: 20px 0 20px 30px;
  }
  .secMV__blk--right {
    padding: 30px 0 20px;
  }
}
.secMV__ttl {
  width: 100%;
  color: #fff;
  font-size: clamp(30px, 8.54vw, 50px);
  font-weight: 700;
  letter-spacing: -0.019em;
  line-height: 1.35;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .secMV__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .secMV__ttl {
    font-size: 50px;
  }
}
@media screen and (min-width: 992px) {
  .secMV__ttl {
    font-size: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__ttl {
    font-size: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .secMV__ttl {
    font-size: 60px;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__ttl {
    font-size: 70px;
  }
}
@media screen and (min-width: 1800px) {
  .secMV__ttl {
    font-size: 80px;
  }
}
.secMV__flow {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
.secMV__flow::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 2px dotted #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  animation: flow_anime1 2s linear infinite;
}
.secMV__flow li {
  position: relative;
  z-index: 1;
}
.secMV__flow li:nth-child(1) {
  width: 18%;
  background: var(--main);
  transform: translateX(-80px);
  animation: flow_anime2 2s ease-in infinite;
}
.secMV__flow li:nth-child(2) {
  width: 13%;
  transform: translateY(0px);
  animation: flow_anime3 2s ease-in infinite;
}
.secMV__flow li:nth-child(3) {
  width: 10%;
  background: var(--main);
  animation: flow_anime4 2s ease-in infinite;
}
.secMV__flow li:nth-child(4) {
  width: 12%;
  animation: flow_anime5 2s ease-in infinite;
}
.secMV__flow li:nth-child(5) {
  width: 21.5%;
  display: flex;
  align-items: center;
}
.secMV__flow li:nth-child(5) img {
  max-width: 50%;
}
.secMV__flow li:nth-child(5) img:nth-child(1) {
  animation: flow_anime6 2s ease-in infinite;
}
.secMV__flow li:nth-child(5) img:nth-child(2) {
  animation: flow_anime7 2s ease-in infinite;
}
.secMV__flow li:nth-child(6) {
  width: 10%;
}
@media screen and (min-width: 768px) {
  .secMV__flow {
    width: calc(100% + 40px);
    margin-bottom: 0;
    transform: scale(0.6) translateX(40px);
    transform-origin: left;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__flow {
    transform: scale(0.6);
  }
}
.secMV__features {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  grid-gap: 16px;
  position: relative;
  z-index: 1;
}
.secMV__features li {
  padding: 6px 10px;
  background-color: #2E5078;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .secMV__features {
    max-width: 500px;
    margin-bottom: 1rem;
    grid-gap: 10px 16px;
    justify-content: flex-start;
  }
  .secMV__features li {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .secMV__features {
    max-width: 100%;
    flex-wrap: nowrap;
    grid-gap: 10px 10px;
  }
  .secMV__features li {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .secMV__features {
    max-width: 500px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__features li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1700px) {
  .secMV__features li {
    font-size: 20px;
  }
}
.secMV__videoWrap p {
  margin: 0.5em 0;
  color: #fff;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .secMV__videoWrap {
    width: clamp(160px, 15vw, 200px);
    margin: 0.5em 0 0 auto;
    font-size: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .secMV__videoWrap p {
    font-size: 75%;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__videoWrap p {
    font-size: 80%;
  }
}
.secMV__video {
  width: clamp(160px, 60vw, 288px);
  background-color: #fff;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  position: relative;
}
.secMV__video::after {
  content: "1分で概要を確認";
  width: 100%;
  height: 100%;
  background: rgba(77, 77, 77, 0.8);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.secMV__video:hover {
  opacity: 1;
}
.secMV__video:hover::after {
  opacity: 1;
}
.secMV__video video {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .secMV__video {
    width: clamp(160px, 15vw, 200px);
  }
}
.secMV__priceTxt {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .secMV__priceTxt {
    width: 80%;
    max-width: 350px;
  }
}
@media screen and (min-width: 992px) {
  .secMV__priceTxt {
    max-width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__priceTxt {
    max-width: 350px;
  }
}
@media screen and (min-width: 1440px) {
  .secMV__priceTxt {
    max-width: 400px;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__priceTxt {
    max-width: 520px;
  }
}
.secMV__awards {
  width: 80%;
  max-width: 390px;
  margin: 20px auto 0;
}
.secMV__awards li {
  width: 50%;
  padding: 0 0.1rem;
}
.secMV__awards_service {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .secMV__awards {
    width: 350px;
    max-width: 620px;
    margin: auto 0 0 -160px;
  }
  .secMV__awards li {
    padding: 0;
  }
  .secMV__awards_service {
    width: 95%;
    padding-top: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .secMV__awards {
    width: 400px;
    margin: auto 0 0 -160px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__awards {
    width: 350px;
  }
}
@media screen and (min-width: 1440px) {
  .secMV__awards {
    width: 400px;
    margin: auto 0 0 -160px;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__awards {
    width: 500px;
  }
}
@media screen and (min-width: 1800px) {
  .secMV__awards {
    width: 620px;
    margin: auto 100px 0 -160px;
  }
}
.secMV__mvImg {
  width: 80%;
  margin: 0 -20% 10px;
}
@media screen and (min-width: 768px) {
  .secMV__mvImg {
    width: 65%;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: -5%;
  }
}
@media screen and (min-width: 992px) {
  .secMV__mvImg {
    width: 60%;
    right: 0;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .secMV__mvImg {
    width: 62%;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__mvImg {
    width: 58%;
  }
}
@media screen and (min-width: 1800px) {
  .secMV__mvImg {
    width: 55%;
    max-width: 840px;
    right: auto;
    left: calc(50% - 70px);
  }
}

@keyframes flow_anime1 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes flow_anime2 {
  0% {
    transform: translateX(-80px);
  }
  15% {
    transform: translateX(-80px);
  }
  40% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes flow_anime3 {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(0px);
  }
  36.25% {
    transform: translateY(10px);
  }
  42.5% {
    transform: translateY(0px);
  }
  48.75% {
    transform: translateY(10px);
  }
  55% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes flow_anime4 {
  0% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(0);
  }
  51.25% {
    transform: rotate(5deg);
  }
  57.5% {
    transform: rotate(0);
  }
  63.75% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes flow_anime5 {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  66.25% {
    transform: scale(1.2);
  }
  72.5% {
    transform: scale(1);
  }
  78.75% {
    transform: scale(1.2);
  }
  85% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flow_anime6 {
  0% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(0);
  }
  81.25% {
    transform: rotate(5deg);
  }
  87.5% {
    transform: rotate(0);
  }
  93.75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes flow_anime7 {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1);
  }
  81.25% {
    transform: scale(1.2);
  }
  87.5% {
    transform: scale(1);
  }
  93.75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.secCM {
  padding: 2.5em 0;
}
@media screen and (min-width: 768px) {
  .secCM {
    padding: 60px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .secCM__inner {
    max-width: 600px;
  }
}
.secCM__ttl {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
.secCM__ttl strong {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 375px) {
  .secCM__ttl {
    font-size: 16px;
  }
  .secCM__ttl strong {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .secCM__ttl_l1 {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .secCM__ttl {
    font-size: 18px;
  }
  .secCM__ttl strong {
    font-size: 26px;
  }
}
@media screen and (min-width: 992px) {
  .secCM__ttl {
    font-size: 20px;
  }
  .secCM__ttl strong {
    font-size: 32px;
  }
}
.secCM__contentsWrap {
  width: 100%;
  padding: 40px 20px 30px;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 40px;
}
@media screen and (min-width: 768px) {
  .secCM__contentsWrap {
    padding: 60px 20px 40px;
    flex-direction: row;
    align-items: flex-start;
    grid-gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .secCM__contentsWrap {
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .secCM__contentsWrap {
    grid-gap: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .secCM__contentsWrap {
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .secCM__contentsWrap {
    padding: 100px 40px 60px;
    grid-gap: 50px;
  }
}
.secCM__mainBlk {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.secCM__mainBlk iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .secCM__mainBlk {
    width: 55%;
    padding-top: 30.9375%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1200px) {
  .secCM__mainBlk {
    width: 60.8547%;
    padding-top: 34.2307692281%;
  }
}
.secCM__makingBlk {
  width: 100%;
}
.secCM__makingBlk_ttl {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.secCM__makingBlk_txt {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.secCM__makingBlk_videoWrap {
  width: 80%;
  padding-top: 45%;
  margin-top: 50px;
  margin-left: auto;
  position: relative;
}
.secCM__makingBlk_videoWrap::before {
  content: "making movie";
  width: 28.8946%;
  padding-top: 20.0466%;
  background: url(../images/cm_deco.png) center/contain no-repeat;
  color: transparent;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -78%);
  pointer-events: none;
}
.secCM__makingBlk_videoWrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .secCM__makingBlk_ttl {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .secCM__makingBlk_txt {
    font-size: 16px;
  }
  .secCM__makingBlk_videoWrap {
    width: 100%;
    padding-top: 56.25%;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .secCM__makingBlk_ttl {
    font-size: 18px;
  }
  .secCM__makingBlk_txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) {
  .secCM__makingBlk_ttl {
    font-size: 24px;
  }
  .secCM__makingBlk_txt {
    font-size: 18px;
  }
}
.secCM__campBlk {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .secCM__campBlk {
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 10px 20px;
  }
}
@media screen and (min-width: 992px) {
  .secCM__campBlk {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1200px) {
  .secCM__campBlk {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1440px) {
  .secCM__campBlk {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1920px) {
  .secCM__campBlk {
    grid-gap: 30px;
  }
}
.secCM__campBlk_ttl {
  width: 180px;
  flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .secCM__campBlk_ttl {
    width: 200px;
  }
}
@media screen and (min-width: 1600px) {
  .secCM__campBlk_ttl {
    width: 268px;
  }
}
.secCM__campBlk_term {
  padding: 10px;
  background-color: var(--main);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .secCM__campBlk_term {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  .secCM__campBlk_term {
    font-size: 18px;
  }
}
.secCM__campBlk_txtWrap {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
.secCM__campBlk_txtWrap strong {
  color: var(--main);
  font-weight: 700;
  font-size: 120%;
}
.secCM__campBlk_txtWrap a {
  text-decoration: underline;
}
.secCM__campBlk_txtWrap a:hover {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .secCM__campBlk_txtWrap {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .secCM__campBlk_txtWrap {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .secCM__campBlk_txtWrap {
    text-align: left;
  }
}
@media screen and (min-width: 1600px) {
  .secCM__campBlk_txtWrap {
    font-size: 18px;
  }
}
@media screen and (min-width: 1920px) {
  .secCM__campBlk_txtWrap {
    font-size: 20px;
  }
}

.secContact__ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: center;
  cursor: pointer;
}
.secContact__ttl:hover {
  text-decoration: none;
}
@media screen and (min-width: 375px) {
  .secContact__ttl {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .secContact__ttl {
    font-size: 26px;
  }
}
@media screen and (min-width: 992px) {
  .secContact__ttl {
    font-size: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .secContact__ttl br.d-xl-block {
    display: none !important;
  }
}
.secContact__detail {
  width: 100%;
  padding: 30px 20px;
  background-color: var(--bg);
  border-radius: 20px;
}
.secContact__detail.show {
  margin-bottom: 20px;
}
.secContact__detail_txt {
  line-height: 1.8;
}
.secContact__detail_txt strong {
  color: #e6821f;
}
.secContact__detail_list {
  margin-left: 1em;
  line-height: 1.8;
}
.secContact__detail_list li {
  list-style: disc;
}
.secContact__detail_link {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: grid;
  grid-gap: 10px;
}
.secContact__detail_link .btn {
  width: 100%;
}
.secContact__detail_link .btn--price {
  background: linear-gradient(#ff91a9 0%, #ffafc0 30%, #ff7b98 100%);
}
.secContact__detail_link .btn--form {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 5px;
}
@media screen and (min-width: 768px) {
  .secContact__detail {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .secContact__detail_link {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 240px);
    grid-gap: 10px;
  }
  .secContact__detail_link .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.secContact__cntctTxt {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 15px;
}
.secContact__cntctTxt_ttl {
  font-size: 20px;
  font-weight: 700;
}
.secContact__cntctTxt_btn {
  width: 14em;
  font-size: 18px;
}
.secContact__cntctTxt_btn--tel {
  background: linear-gradient(#6ebc7a 0%, #7bc286 30%, #39a44a 100%);
}
.secContact__cntctTxt_btn--form {
  background: linear-gradient(#efaf6e 0%, #eb9946 30%, #e6821f 100%);
}
@media screen and (min-width: 768px) {
  .secContact__cntctTxt {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1440px) {
  .secContact__cntctTxt__ttl {
    font-size: 24px;
  }
  .secContact__cntctTxt__btn {
    font-size: 22px;
  }
}

#sec_logos {
  overflow: hidden;
}

#sec_logos h2 {
  margin-bottom: 0.2rem;
  font-weight: 700;
  font-size: 125%;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

#sec_logos h2::before,
#sec_logos h2::after {
  content: "";
  width: 1em;
  height: 2em;
  margin: 0 0.1em;
  border-right: 1px solid #4d4d4d;
  transform: rotate(-15deg);
  position: absolute;
  left: -2rem;
}

#sec_logos h2::after {
  border-right: 0;
  border-left: 1px solid #4d4d4d;
  transform: rotate(15deg);
  left: auto;
  right: -2.5rem;
}

@media screen and (min-width: 768px) {
  #sec_logos h2::before,
  #sec_logos h2::after {
    height: 1.5em;
    margin: 0 1em;
    position: relative;
    left: 0;
    right: 0;
  }
  #sec_logos h2::after {
    margin-left: 0.5em;
  }
}
@media screen and (min-width: 992px) {
  #sec_logos h2 {
    margin-bottom: 1rem;
  }
}
.sec_logos .slide {
  width: 100%;
}

.sec_logos .slide.animation {
  width: 200%;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .sec_logos:has(.d-sp-contents) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 15px 20px;
  }
  .sec_logos .slide.d-sp-contents {
    display: contents;
  }
  .sec_logos .slide.d-sp-contents ul {
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .sec_logos .slide.animation {
    width: 100%;
  }
}
.sec_logos .slide1.animation {
  animation: loop1 40s -20s infinite linear;
}

.sec_logos .slide2.animation {
  animation: loop2 40s infinite linear;
}

.sec_logos .slide ul {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  grid-gap: 10px 15px;
}

.sec_logos .slide.animation ul {
  flex-wrap: nowrap;
  row-gap: 0;
  column-gap: 20px;
}

.sec_logos .slide ul li {
  height: 2em;
}

@media screen and (min-width: 768px) {
  .sec_logos .slide {
    flex-wrap: nowrap;
  }
  .sec_logos .slide ul {
    flex-wrap: nowrap;
  }
  .sec_logos .slide ul li {
    height: 3em;
  }
}
@media screen and (min-width: 992px) {
  .sec_logos .slide ul {
    grid-gap: 10px 0;
  }
  .sec_logos .slide.animation ul {
    column-gap: 0;
  }
}
.sec_logos .slide ul li img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

@keyframes loop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#sec_news iframe {
  width: 100%;
}

#sec_news .news_wrap li {
  padding: 1em 0;
  border-bottom: 1px dotted #ccc;
  color: var(--main);
  font-weight: 700;
  font-size: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#sec_news .news_wrap li:last-child {
  border-bottom: 0;
}

#sec_news .news_wrap li a,
#sec_news .news_wrap li span {
  color: var(--main);
  display: block;
}

#sec_news .news_wrap li time {
  margin-left: auto;
  flex-shrink: 0;
}

#sec_news .news_wrap li time::before {
  content: "(";
}

#sec_news .news_wrap li time::after {
  content: ")";
}

#sec_call .box {
  height: 100%;
  padding: 0.5em;
  background: #fff;
  border: 1px solid var(--main);
  border-radius: 1em;
  color: #666;
  font-size: 68%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 360px) {
  #sec_call .box {
    font-size: 70%;
  }
}
@media screen and (min-width: 768px) {
  #sec_call .box {
    padding: 0.5em 1em;
    font-size: 100%;
  }
}
@media screen and (min-width: 1200px) {
  #sec_call .box {
    font-size: 70%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_call .box {
    font-size: 100%;
  }
}
#sec_call .box.customer {
  position: relative;
}

#sec_call .box.customer::before,
#sec_call .box.customer::after {
  content: "";
  width: 2em;
  height: 2em;
  display: block;
  position: absolute;
  right: -1.75em;
  z-index: 1;
}

#sec_call .box.customer::before {
  background: url(../images/call_img6.svg) center/contain no-repeat;
  top: 9em;
}

#sec_call .box.customer::after {
  background: url(../images/call_img7.svg) center/contain no-repeat;
  bottom: 9em;
}

@media screen and (min-width: 768px) {
  #sec_call .box.customer::before,
  #sec_call .box.customer::after {
    width: 3em;
    height: 3em;
    right: -2em;
  }
  #sec_call .box.customer::before {
    top: 6.5em;
  }
  #sec_call .box.customer::after {
    bottom: 6em;
  }
}
@media screen and (min-width: 992px) {
  #sec_call .box.customer::before,
  #sec_call .box.customer::after {
    width: 2em;
    height: 2em;
    right: -1.5em;
  }
  #sec_call .box.customer::before {
    top: 7.5em;
  }
}
@media screen and (min-width: 1200px) {
  #sec_call .box.customer::before,
  #sec_call .box.customer::after {
    right: -1.75em;
  }
  #sec_call .box.customer::before {
    top: 8.5em;
  }
}
@media screen and (min-width: 1440px) {
  #sec_call .box.customer::before,
  #sec_call .box.customer::after {
    width: 2em;
    height: 2em;
    right: -1.5em;
  }
  #sec_call .box.customer::before {
    top: 7.5em;
  }
}
#sec_call .phase {
  width: 100%;
  margin-bottom: 1rem;
}

#sec_call .phase1 {
  height: 3em;
}

@media screen and (min-width: 768px) {
  #sec_call .phase1 {
    height: 3.5em;
  }
}
#sec_call .phase2 {
  height: 19em;
}

@media screen and (min-width: 768px) {
  #sec_call .phase2 {
    height: 12em;
  }
}
@media screen and (min-width: 992px) {
  #sec_call .phase2 {
    height: 15em;
  }
}
@media screen and (min-width: 1200px) {
  #sec_call .phase2 {
    height: 18em;
  }
}
@media screen and (min-width: 1440px) {
  #sec_call .phase2 {
    height: 14.5em;
  }
}
@media screen and (min-width: 1580px) {
  #sec_call .phase2 {
    height: 12.5em;
  }
}
#sec_call .phase3 {
  margin-bottom: 0;
}

#sec_call .text h3 {
  height: 1.5em;
  font-size: 150%;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #sec_call .text h3 {
    font-size: 125%;
  }
}
#sec_call .text h3 img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: block;
}

#sec_call .text p.trouble {
  color: #b9272d;
  font-size: 125%;
  font-weight: 700;
}

#sec_call .text p.trouble img {
  width: 2.5em;
  margin-right: 0.25em;
  display: inline-block;
}

#sec_call .text h4 {
  width: 100%;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 120%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

#sec_call .text .label {
  padding: 0.1em 2em 0.1em 1em;
  border-radius: 1.5em;
  color: #fff;
  font-size: 60%;
  position: relative;
}

#sec_call .text .label span {
  font-size: 300%;
  font-weight: 700;
  position: absolute;
  bottom: -5px;
  right: 0;
  transform: scaleX(0.8);
}

#sec_call .text h4 img {
  width: 3em;
  height: 3em;
  position: absolute;
  top: -1em;
  right: 0.5em;
  display: block;
}

#sec_call .text .customer h4 {
  color: #ffa5c3;
}

#sec_call .text .customer .label {
  background: #ffa5c3;
}

#sec_call .text .customer .label span {
  color: #ff7ba4;
}

#sec_call .text .melucolu h4 {
  color: #80acce;
}

#sec_call .text .melucolu .label {
  background: #80acce;
}

#sec_call .text .melucolu .label span {
  color: var(--main);
}

#sec_call .text .melucolu h4 small.bold {
  font-size: 60%;
}

#sec_call .text h4.option {
  max-width: 16.5em;
  font-size: 80%;
}

#sec_call .text h4.option small {
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}

#sec_call .text h4.option .label {
  padding: 0.1em 1em;
  font-size: 80%;
  font-weight: 400;
}

#sec_call .text p {
  font-weight: 700;
}

#sec_call .text h4.option + p,
#sec_call .text p small {
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  #sec_call .text p small {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  #sec_call .text h4.option + p,
  #sec_call .text p small {
    font-size: 75%;
  }
  #sec_call .text ul {
    font-size: 65%;
  }
}
#sec_call .text ul li {
  padding-left: 0.5em;
  position: relative;
}

#sec_call .text ul li::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  background: #666;
  border-radius: 50%;
  position: absolute;
  top: 0.4em;
  left: 0;
}

#sec_call .text p strong {
  background: linear-gradient(transparent 60%, #ff0 60%);
}

#sec_call .movie .video_wrap {
  padding: 1em 0;
}

@media screen and (min-width: 992px) {
  #sec_call .movie .video_wrap {
    height: 100%;
    padding: 0 8%;
    background: url(../images/call_moviebg.png) center/contain no-repeat;
    display: flex;
  }
}
#sec_call .movie .video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

#sec_call .movie .video a {
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#sec_call .movie .video a:hover {
  opacity: 1;
}

#sec_call .movie .video a:hover::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 2em solid #fff;
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  display: block;
  position: absolute;
  top: 0;
  bottom: 1.5em;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

#sec_call .movie .video a:hover::after {
  content: "音声ありの動画を視聴する";
  width: 100%;
  height: 100%;
  padding-top: 2em;
  background: rgba(77, 77, 77, 0.8);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

#sec_call .movie video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  #sec_test > .inner {
    max-width: 900px;
  }
}
#sec_test h2 {
  color: #666;
  font-weight: 700;
  font-size: 125%;
}

@media screen and (min-width: 768px) {
  #sec_test h2 {
    font-size: 150%;
  }
}
#sec_overview h2 {
  font-weight: 700;
  font-size: 110%;
}

@media screen and (min-width: 360px) {
  #sec_overview h2 {
    font-size: 120%;
  }
}
@media screen and (min-width: 768px) {
  #sec_overview h2 {
    font-size: 135%;
  }
}
@media screen and (min-width: 992px) {
  #sec_overview h2 {
    font-size: 150%;
  }
}
@media screen and (min-width: 1200px) {
  #sec_overview h2 {
    font-size: 130%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_overview h2 {
    font-size: 150%;
  }
}
#sec_overview figure {
  width: 100%;
  background: #fff;
  box-shadow: 5px 8px 11px rgba(86, 82, 82, 0.6);
}

#sec_overview img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#sec_cases .case {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

#sec_cases h3 {
  margin-bottom: 0.5em;
  color: #666;
  font-weight: 700;
  font-size: 90%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #sec_cases h3 {
    font-size: 100%;
    white-space: nowrap;
  }
}
@media screen and (min-width: 992px) {
  #sec_cases h3 {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_cases h3 {
    font-size: 120%;
  }
}
#sec_cases img {
  width: 100%;
  display: block;
}

#sec_cases .voice_title {
  margin-bottom: 1em;
  color: var(--main);
  font-weight: 700;
  font-size: 115%;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice_title {
    font-size: 150%;
  }
}
@media screen and (min-width: 1200px) {
  #sec_cases .voice_title {
    font-size: 212.5%;
  }
}
#sec_cases .voice_title::before,
#sec_cases .voice_title::after {
  content: "";
  width: 1em;
  height: 2em;
  margin: 0 0.1em;
  border-right: 1px solid var(--main);
  transform: rotate(-15deg);
  position: absolute;
  left: -1rem;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice_title::before,
  #sec_cases .voice_title::after {
    height: 1.5em;
    margin: 0 1em;
    position: relative;
    left: 0;
    right: 0;
  }
}
#sec_cases .voice_title::after {
  border-right: 0;
  border-left: 2px solid var(--main);
  transform: rotate(15deg);
  left: auto;
  right: -0.5rem;
}

#sec_cases .voice_wrap {
  padding: 0 1rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice_wrap {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 768px) {
  #sec_cases .voice_wrap .slick-list {
    padding: 0 20% 0 0 !important;
  }
}
#sec_cases .voice_wrap .slick-track {
  margin-bottom: 1em;
  display: flex;
}

#sec_cases .voice_wrap .slick-arrow {
  width: 0.8rem;
  height: 0.8rem;
  text-indent: -9999px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  transform: rotate(45deg);
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice_wrap .slick-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}
#sec_cases .voice_wrap .slick-arrow.slick-prev {
  border-left: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  left: 0.2rem;
}

#sec_cases .voice_wrap .slick-arrow.slick-next {
  border-right: 1px solid #4d4d4d;
  border-top: 1px solid #4d4d4d;
  right: 0.2rem;
}

#sec_cases .voice_wrap .slick-arrow:focus {
  outline: 0;
}

#sec_cases .voice_wrap .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_cases .voice_wrap .slick-dots li {
  padding: 0 0.25em;
}

#sec_cases .voice_wrap .slick-dots li button {
  width: 0.75em;
  height: 0.75em;
  background: var(--main);
  border-radius: 50%;
  text-indent: -9999px;
  opacity: 0.5;
  cursor: pointer;
}

#sec_cases .voice_wrap .slick-dots li.slick-active button {
  opacity: 1;
}

#sec_cases .voice {
  height: auto;
  padding: 0;
  font-size: 80%;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice {
    padding: 0 1rem;
    font-size: 100%;
  }
}
#sec_cases .voice .box {
  height: 100%;
  padding: 1rem 0.2rem;
  border: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice .box {
    padding: 1rem;
  }
}
#sec_cases .voice h4 {
  color: var(--main);
  font-size: 112.5%;
  font-weight: 700;
}

#sec_cases .voice .company_name {
  font-size: 112.5%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_cases .voice .logo {
  width: auto;
  height: 3em;
  margin: 0;
  box-shadow: none !important;
}

#sec_cases .voice .logo.ube {
  width: 6.5em;
  object-fit: contain;
}

@media screen and (min-width: 992px) {
  #sec_cases .voice .logo.ube {
    width: 10em;
  }
}
#sec_cases .voice figure img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

#sec_cases .voice .text {
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #sec_cases .voice .text {
    font-size: 90%;
  }
}
#sec_cases .voice .text h5 {
  font-size: 90%;
  font-weight: 700;
}

#sec_cases .voice .text .industry {
  margin-bottom: 0.5em;
  padding: 0.2em 1em;
  background: var(--main);
  border-radius: 0.5em;
  color: #fff;
  display: inline-block;
}

#sec_cases .voice .text .comment {
  font-size: 85%;
}

#sec_cases .case_text strong {
  padding: 2px 5px;
  background-color: var(--main);
  color: #fff;
  display: inline-block;
}

#sec_function .section_sub_title {
  margin: 0 auto 1em;
  color: #7cae89;
  font-weight: 700;
  font-size: 125%;
  text-align: center;
  position: relative;
}

#sec_function .section_sub_title > span {
  padding-top: 0.5em;
  position: relative;
}

#sec_function .section_sub_title small {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -1em;
  transform: rotate(-8deg);
}

@media screen and (min-width: 768px) {
  #sec_function .section_sub_title {
    padding-top: 0.75em;
    font-size: 150%;
  }
  #sec_function .section_sub_title small {
    font-size: 16px;
    left: 0;
    transform: translateX(-2em) rotate(-10deg);
  }
}
@media screen and (min-width: 1440px) {
  #sec_function .section_sub_title {
    padding-top: 0.5em;
    font-size: 212.5%;
  }
}
#sec_function .func {
  width: calc((100% - 0.5rem) / 2);
  margin-bottom: 1.2em;
}

@media screen and (min-width: 400px) {
  #sec_function .func {
    width: calc((100% - 1rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  #sec_function .func {
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (min-width: 992px) {
  #sec_function .func {
    width: calc((100% - 3rem) / 4);
  }
}
#sec_function .func.security {
  width: 100%;
}

@media screen and (min-width: 992px) {
  #sec_function .func.security {
    width: calc((100% - 3rem) / 2 + 1rem);
  }
}
@media screen and (min-width: 1200px) {
  #sec_function .func.security {
    width: calc((100% - 3rem) * 0.75 + 2rem);
  }
}
@media screen and (min-width: 1600px) {
  #sec_function .func.security {
    width: calc((100% - 3rem) / 2 + 1rem);
  }
}
#sec_function .card {
  width: 100%;
  max-height: 10em;
  padding: 1rem 0.5rem 2rem 0.5rem;
  background: #fff;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0 3px rgba(140, 140, 141, 0.6);
  color: #666;
  font-weight: 700;
  text-decoration: none;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #sec_function .card {
    max-height: 12em;
    padding: 1rem 1rem 2rem 1rem;
  }
}
#sec_function .card::before {
  content: "クリックすると詳細が出ます";
  width: 100%;
  height: 2rem;
  padding-right: 1em;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  color: #ff7b98;
  font-weight: 700;
  font-size: 10px;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #sec_function .card::before {
    font-size: 75%;
  }
}
#sec_function .card:hover::before {
  opacity: 0.8;
}

#sec_function .card.open {
  height: 100%;
  max-height: 100em;
  padding-bottom: 1rem;
}

#sec_function .card.open::before {
  display: none;
}

#sec_function .card.open:hover {
  opacity: 1;
}

#sec_function .card .card_icon {
  width: 100%;
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #sec_function .card .card_icon {
    padding-right: 0;
  }
}
#sec_function .card .card_icon img {
  width: auto;
  height: 55px;
  display: block;
}

@media screen and (min-width: 768px) {
  #sec_function .card .card_icon img {
    height: 65px;
  }
}
#sec_function .card .card-body {
  width: 100%;
  font-size: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 1440px) {
  #sec_function .card .card-body {
    font-size: 100%;
  }
}
#sec_function .card.open .card-body {
  overflow: visible;
  text-overflow: initial;
  display: block;
}

#sec_function .card.security .card-body {
  overflow: visible;
  text-overflow: initial;
  display: flex;
}

#sec_function .card h3 {
  margin-bottom: 0.85em;
  font-size: 100%;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #sec_function .card h3 {
    font-size: 112.5%;
  }
}
#sec_function .card-body p strong {
  color: #ff7b98;
}

#sec_function .card-body p a {
  color: currentColor;
  text-decoration: underline;
}

#sec_function .card-body p a:hover {
  text-decoration: none;
}

#sec_function .card-body ul li {
  padding-left: 0.5em;
  position: relative;
}

#sec_function .card-body ul li::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  background: #666;
  border-radius: 50%;
  position: absolute;
  top: 0.4em;
  left: 0;
}

#sec_function .card-body ul li.bisonly {
  margin-top: 1.2rem;
}

#sec_function .card-body ul li.bisonly::after {
  content: "ビジネス";
  padding: 2px 5px;
  background: #4d4d4d;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
}

#sec_function .card ul.type {
  position: absolute;
  top: 1rem;
  right: 0.5rem;
}

@media screen and (min-width: 768px) {
  #sec_function .card ul.type {
    right: 1rem;
  }
}
#sec_function .card ul.type li {
  width: 100%;
  padding: 2px 5px;
  margin-bottom: 3px;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  display: flex;
  align-items: center;
}

/* パートナープラン用 */
#sec_function .func.partner--large {
  width: 100%;
}

@media screen and (min-width: 992px) {
  #sec_function .func.partner {
    width: calc((100% - 2rem) / 3);
  }
}
#sec_function .func.partner--large .card {
  flex-direction: row;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  #sec_function .func.partner--large .card {
    padding: 2rem 1rem 2rem 1rem;
    flex-wrap: wrap;
  }
}
#sec_function .func.partner--large .card .card_icon {
  width: 80px;
  padding-right: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  #sec_function .func.partner--large .card .card_icon {
    width: 190px;
  }
}
#sec_function .func.partner--large .card h3 {
  text-align: left;
}

#sec_function .func.partner--large .card-body-wrap {
  width: 100%;
  padding: 0 70px 0 0;
}

#sec_function .func.partner--large .card-body {
  padding: 0;
}

@media screen and (min-width: 768px) {
  #sec_function .func.partner--large .card-body-wrap {
    display: contents;
  }
  #sec_function .func.partner--large .card-body {
    width: calc(100% - 190px);
    padding-right: 70px;
  }
  #sec_function .func.partner--large .card-body-img {
    width: 100%;
  }
  #sec_function .func.partner--large .card-body-img + .card-body {
    padding-right: 0;
  }
}
#sec_function .card ul.type li:nth-child(1) {
  background: var(--main);
}

#sec_function .card ul.type li:nth-child(2) {
  background: #666;
}

#sec_function .card ul.type li:nth-child(3) {
  background: #4d4d4d;
  margin-bottom: 0;
}

#sec_function .card ul.type li.partner {
  background: #7cae89;
}

#sec_function .card ul.type li::before {
  display: none;
}

#sec_function .card ul.type li.disabled {
  opacity: 0;
}

#sec_function .card ul.type li img {
  width: 1em;
}

#sec_function .card.security {
  max-height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  cursor: initial;
}

@media screen and (min-width: 768px) {
  #sec_function .card.security {
    padding: 1rem 0.5rem;
    background: linear-gradient(to right, #d8d3ac 12%, #bbaa81 31%, #ffe1b6 56%, #bbaa81 74%, #c7be97 97%);
    border-radius: 1rem;
    box-shadow: 0 0 3px rgba(140, 140, 141, 0.6);
  }
}
@media screen and (min-width: 992px) {
  #sec_function .card.security {
    font-size: 80%;
    height: 11.25rem;
  }
}
@media screen and (min-width: 1440px) {
  #sec_function .card.security {
    font-size: 100%;
    height: 12rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_function .card.security .left {
    padding: 1rem 0.5rem;
    background: linear-gradient(to right, #d8d3ac 12%, #bbaa81 31%, #ffe1b6 56%, #bbaa81 74%, #c7be97 97%);
    border-radius: 1rem;
    box-shadow: 0 0 3px rgba(140, 140, 141, 0.6);
  }
}
#sec_function .card.security .right img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #sec_function .card.security .right img {
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  #sec_function .card.security .right img {
    max-width: 260px;
  }
}
@media screen and (min-width: 1440px) {
  #sec_function .card.security .right img {
    max-width: 300px;
  }
}
#sec_function .card.security::before {
  display: none;
}

#sec_function .card.security h3 {
  border-bottom: 1px dotted #666;
}

#sec_function .card.security strong {
  font-size: 120%;
}

#sec_function .card.security ol {
  font-size: 80%;
  counter-reset: scrty_cnt 0;
}

#sec_function .card.security ol li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  list-style: none;
  position: relative;
}

@media screen and (min-width: 768px) {
  #sec_function .card.security ol li {
    white-space: nowrap;
  }
}
#sec_function .card.security ol li:nth-child(2)::after {
  content: "";
  width: 5em;
  height: 3em;
  background: url(../images/function_func15_img1.png) center/cover no-repeat;
  display: block;
  position: absolute;
  top: -1em;
  right: 0;
}

@media screen and (min-width: 360px) {
  #sec_function .card.security ol li:nth-child(2)::after {
    top: -0.5em;
  }
}
@media screen and (min-width: 768px) {
  #sec_function .card.security ol li:nth-child(2)::after {
    width: 8em;
    height: 5em;
    top: -1em;
  }
}
@media screen and (min-width: 992px) {
  #sec_function .card.security ol li:nth-child(2)::after {
    width: 7em;
    height: 4em;
    top: -1em;
  }
}
#sec_function .card.security ol li:last-child {
  margin-bottom: 0;
}

#sec_function .card.security ol li::before {
  font-size: 150%;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
  counter-increment: scrty_cnt 1;
  content: counter(scrty_cnt);
  display: inline-block;
  position: absolute;
  top: -0.2em;
  left: 0;
}

#sec_function .security p.dl {
  font-size: 75%;
  font-weight: 700;
}

@media screen and (min-width: 360px) {
  #sec_function .security p.dl {
    font-size: 80%;
    font-weight: 700;
  }
}
#sec_function .security p.dl a {
  color: #4d4d4d;
  text-decoration: underline;
}

#sec_function .security a.dl {
  width: 4em;
  display: block;
  position: absolute;
  right: 0;
  bottom: -1em;
}

@media screen and (min-width: 995px) {
  #sec_function .security a.dl {
    bottom: -1.5em;
  }
}
@media screen and (min-width: 1200px) {
  #sec_function .security a.dl {
    bottom: -0.5em;
  }
}
#sec_function .security a.dl img {
  width: 100%;
  border-radius: 0.5em;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.62);
  display: block;
}

#sec_function .security a.dl:hover {
  opacity: 1;
  transform: translateY(5px);
}

#sec_features h2 {
  color: #666;
  font-weight: 700;
  font-size: 125%;
}

@media screen and (min-width: 768px) {
  #sec_features h2 {
    font-size: 150%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_features h2 {
    font-size: 212.5%;
  }
}
#sec_features .comparisontable .tableheader {
  width: calc(100% - 1rem + 2px);
  max-width: 360px;
  background: var(--bg);
  display: none;
}

@media screen and (min-width: 375px) {
  #sec_features .comparisontable .tableheader {
    width: calc(100% - 2rem + 2px);
  }
}
@media screen and (min-width: 768px) {
  #sec_features .comparisontable .tableheader {
    width: calc(100% - 60px);
    max-width: 1330px;
  }
}
@media screen and (min-width: 1200px) {
  #sec_features .comparisontable .tableheader {
    width: calc(100% - 60px - 390px);
  }
}
@media screen and (min-width: 1440px) {
  #sec_features .comparisontable .tableheader {
    width: calc(100% - 80px - 390px);
  }
}
@media screen and (min-width: 1600px) {
  #sec_features .comparisontable .tableheader {
    width: calc(100% - 100px - 390px);
    max-width: 1250px;
  }
}
#sec_features .comparisontable.fixed .tableheader {
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  #sec_features .comparisontable.fixed .tableheader {
    top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  #sec_features .comparisontable.fixed .tableheader {
    right: 390px;
  }
}
#sec_features .comparisontable .attention {
  margin-bottom: 0;
  color: #ff7b98;
  font-size: 10px;
  white-space: nowrap;
}

#sec_features table {
  width: 100%;
  font-size: 75%;
  table-layout: fixed;
}

@media screen and (min-width: 768px) {
  #sec_features table {
    font-size: 70%;
    table-layout: auto;
  }
}
@media screen and (min-width: 992px) {
  #sec_features table {
    font-size: 75%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_features table {
    font-size: 80%;
  }
}
@media screen and (min-width: 1700px) {
  #sec_features table {
    font-size: 100%;
  }
  #sec_features table .d-xxl-none {
    display: none;
  }
}
#sec_features table th,
#sec_features table td {
  padding: 0.5em;
  vertical-align: middle;
}

#sec_features table thead th {
  font-size: 115%;
  text-align: center;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  #sec_features table thead th {
    font-size: 125%;
    white-space: nowrap;
  }
}
#sec_features table thead th img {
  width: 3em;
  display: inline-block;
}

#sec_features table tbody {
  background: #fff;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
}

@media screen and (max-width: 767px) {
  #sec_features table.right tbody {
    border-top: 0;
  }
}
#sec_features table tbody th,
#sec_features table tbody td {
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
}

#sec_features table tbody th {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  #sec_features table tbody th {
    white-space: nowrap;
  }
}
#sec_features table tbody td {
  text-align: center;
}

#sec_features table tbody td.highlight {
  background: #ffffc5;
}

#sec_features table tbody th strong,
#sec_features table tbody td strong {
  font-weight: 700;
}

#sec_features table tbody .fs70 {
  font-size: 70%;
}

#sec_features table tbody .fs80 {
  font-size: 80%;
}

#sec_features table tbody .fs90 {
  font-size: 90%;
}

#sec_features table tbody .fs110 {
  font-size: 110%;
}

#sec_features table tbody .fs120 {
  font-size: 120%;
}

#sec_features table tbody .fs130 {
  font-size: 130%;
}

#sec_features table tbody .fs140 {
  font-size: 140%;
}

/*仮用*/
@media screen and (min-width: 768px) and (max-width: 991px) {
  #sec_features table tr.nowrap th,
  #sec_features table tr.nowrap td {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  #sec_features table.maintable {
    cursor: pointer;
    transition: 0.5s;
  }
  #sec_features table.maintable:hover {
    opacity: 0.9;
  }
  #sec_features table tr.sp_hide {
    display: none;
  }
  #sec_features table.open tr.sp_hide {
    background: var(--bg);
    display: table-row;
  }
  #sec_features table.open tr.sp_hide th {
    background: #fff;
  }
}
#sec_features h3 {
  font-size: 125%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1440px) {
  #sec_features h3 {
    font-size: 160%;
  }
}
#sec_features h3 img {
  width: 2.5em;
}

#sec_features .feature_list {
  font-size: 70%;
}

@media screen and (min-width: 360px) {
  #sec_features .feature_list {
    font-size: 80%;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  #sec_features .feature_list {
    font-size: 85%;
  }
}
@media screen and (min-width: 992px) {
  #sec_features .feature_list {
    padding-left: 0.5em;
    font-size: 100%;
  }
}
@media screen and (min-width: 1200px) {
  #sec_features .feature_list {
    font-size: 90%;
  }
}
@media screen and (min-width: 1300px) {
  #sec_features .feature_list {
    font-size: 100%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_features .feature_list {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 1600px) {
  #sec_features .feature_list {
    font-size: 130%;
  }
}
@media screen and (min-width: 1920px) {
  #sec_features .feature_list {
    font-size: 140%;
  }
}
#sec_features .feature_list li {
  padding-left: 1.8em;
  margin-bottom: 0.75em;
  display: flex;
  position: relative;
}

#sec_features .feature_list li::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#sec_features .feature_list li:nth-child(1)::before {
  background: url(../images/icon_envelope.svg) center/contain no-repeat;
}

#sec_features .feature_list li:nth-child(2)::before {
  background: url(../images/icon_message.svg) center/contain no-repeat;
}

#sec_features .feature_list li:nth-child(3)::before {
  background: url(../images/icon_phone-volume-solid.svg) center/contain no-repeat;
}

#sec_features .feature_list li:nth-child(4)::before {
  background: url(../images/icon_chalkboard-user.svg) center/contain no-repeat;
}

#sec_features .feature_list li:nth-child(5)::before {
  background: url(../images/icon_piggy-bank.svg) center/contain no-repeat;
}

#sec_features .feature_list li strong {
  color: var(--main);
  font-weight: 600;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #sec_features .feature_list li {
    font-size: 87.5%;
  }
  #sec_features .feature_list li strong {
    font-size: 114.285714%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  #sec_features .feature_list li {
    font-size: 87.5%;
  }
  #sec_features .feature_list li strong {
    font-size: 114.285714%;
  }
}
#sec_features p a {
  color: #4d4d4d;
}

#sec_price h2 {
  padding: 4em 0 2em 0;
  margin-bottom: -1rem;
  background: url(../images/price_titlebg.png) right bottom/contain no-repeat;
  color: #666;
  font-weight: 700;
  font-size: 125%;
}

@media screen and (min-width: 768px) {
  #sec_price h2 {
    padding: 3em 0;
    background-position: right 10% bottom;
    font-size: 150%;
  }
}
@media screen and (min-width: 1440px) {
  #sec_price h2 {
    font-size: 212.5%;
  }
}
@media screen and (min-width: 768px) {
  #sec_price h2 span {
    padding-right: 3em;
  }
}
#sec_price .pricetable {
  width: 100%;
  font-size: 60%;
  font-weight: 700;
}

@media screen and (min-width: 360px) {
  #sec_price .pricetable {
    font-size: 70%;
  }
}
@media screen and (min-width: 390px) {
  #sec_price .pricetable {
    font-size: 75%;
  }
}
@media screen and (min-width: 768px) {
  #sec_price .pricetable {
    font-size: 80%;
  }
}
@media screen and (min-width: 992px) {
  #sec_price .pricetable {
    font-size: 85%;
  }
}
#sec_price .pricetable.fixed {
  padding-top: 5em;
}

#sec_price .pricetable .pricetableHeader {
  width: 100%;
  height: 5em;
  padding: 0 0.5rem;
  background: #fff;
  display: none;
}

@media screen and (min-width: 1200px) {
  #sec_price .pricetable .pricetableHeader {
    width: calc(100% - 390px);
  }
}
#sec_price .pricetable.fixed .pricetableHeader {
  position: fixed;
  top: 50px;
  left: 0;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable.fixed .pricetableHeader {
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  #sec_price .pricetable.fixed .pricetableHeader > .inner {
    justify-content: flex-end;
  }
}
#sec_price .pricetable.fixed .pricetableHeader .headerScrollArea {
  width: 75%;
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable.fixed .pricetableHeader .headerScrollArea {
    width: 100%;
    padding-left: 16.6666666667%;
    justify-content: space-between;
  }
}
#sec_price .pricetable.fixed .pricetableHeader .headerScrollArea::-webkit-scrollbar {
  display: none;
}

#sec_price .pricetable.fixed .pricetableHeader .head {
  width: 33.3333333333%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable.fixed .pricetableHeader .head {
    width: calc(25% - 2px);
  }
}
#sec_price .pricetable.fixed .pricetableHeader .head span {
  width: 100%;
  padding: 0.5rem;
  height: 4em;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: -1px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sec_price .pricetable .head {
  width: 25%;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .head {
    width: 16.6666666667%;
  }
}
#sec_price .pricetable .pricetable_slick {
  width: 75%;
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .pricetable_slick {
    width: 83.3333333333%;
  }
}
#sec_price .pricetable .pricetable_slick::-webkit-scrollbar {
  display: none;
}

#sec_price .pricetable .slick-track {
  display: flex;
}

#sec_price .pricetable .column {
  width: 33.3333333333%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .column {
    width: 25%;
  }
}
#sec_price .pricetable.fixed::before {
  content: "";
  width: 20em;
  height: 20em;
  background: url(../images/price_arrow.gif) center/contain no-repeat;
  mix-blend-mode: multiply;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable.fixed::before {
    display: none;
  }
}
#sec_price .pricetable .r {
  width: 100%;
  padding: 1rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r {
    padding: 1rem 0.5rem;
  }
}
#sec_price .pricetable .head .r {
  align-items: flex-start;
}

#sec_price .pricetable .r:nth-child(3) {
  height: 5em;
  border-bottom: 1px dotted #4d4d4d;
}

@media screen and (min-width: 375px) {
  #sec_price .pricetable .r:nth-child(3) {
    height: 4em;
  }
}
#sec_price .pricetable .r:nth-child(n+4) {
  height: 4em;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r:nth-child(n+4) {
    height: 3.5em;
  }
}
#sec_price .pricetable .r:last-child {
  height: 10em;
}

#sec_price .pricetable .r:nth-child(2n+5) {
  background: #f0f4f5;
}

#sec_price .pricetable .r:nth-child(10) { /*電話登録台数*/
  height: 6em;
}

@media screen and (max-width: 767px) {
  #sec_price .pricetable .r:nth-child(28) { /*折り返し電話転送(SPのみ)*/
    height: 5em;
  }
}
#sec_price .pricetable .r .small {
  font-size: 10px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r .small {
    font-size: 90%;
  }
}
#sec_price .pricetable .column .r:last-child {
  justify-content: flex-start;
}

#sec_price .pricetable .r.head {
  height: 5em;
  padding: 0;
  justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r.head {
    padding: 0 1px;
  }
}
#sec_price .pricetable.fixed .r.head {
  display: none;
}

#sec_price .pricetable .r.head span {
  width: 100%;
  padding: 0.5rem;
  height: 4em;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: -1px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r.head span {
    padding: 1rem 0.5rem;
    letter-spacing: 0;
  }
}
#sec_price .pricetable.fixed .pricetableHeader .head.free span,
#sec_price .pricetable .free .head span {
  background: #fff;
  border: 1px solid var(--main);
  color: #666;
}

#sec_price .pricetable.fixed .pricetableHeader .head.splt span,
#sec_price .pricetable .splt .head span {
  background: var(--main);
}

#sec_price .pricetable.fixed .pricetableHeader .head.bislt span,
#sec_price .pricetable .bislt .head span {
  background: #666;
  position: relative;
}

#sec_price .pricetable.fixed .pricetableHeader .head.bislt span::after,
#sec_price .pricetable .bislt .head span::after {
  content: "";
  width: 3em;
  height: 2em;
  background: url(../images/icon_crown.svg) center/contain no-repeat;
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #sec_price .pricetable.fixed .pricetableHeader .head.bislt span::after {
    width: 2em;
    height: 1em;
    top: 0.2em;
  }
}
#sec_price .pricetable.fixed .pricetableHeader .head.bis span,
#sec_price .pricetable .bis .head span {
  background: #4d4d4d;
}

#sec_price .pricetable.fixed .pricetableHeader .head.medical span,
#sec_price .pricetable .medical .head span {
  background: #e79c3b;
}

#sec_price .pricetable .r.detail {
  height: 6em;
  font-size: 10px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r.detail {
    height: 5em;
    font-size: 90%;
  }
}
@media screen and (min-width: 992px) {
  #sec_price .pricetable .r.detail {
    height: 5.5em;
  }
}
#sec_price .pricetable .r.detail .label {
  width: 100%;
  margin-top: 0.5em;
  border-radius: 1em;
  font-weight: 700;
  display: block;
}

#sec_price .pricetable .bislt .r.detail .label {
  background: #ff7b98;
  color: #fff;
}

#sec_price .pricetable .free .r.detail .label {
  background: var(--main);
  color: #fff;
}

#sec_price .pricetable .medical .r.detail .label {
  background: linear-gradient(to right, #d8d3ac 12%, #bbaa81 31%, #ffe1b6 56%, #bbaa81 74%, #c7be97 97%);
}

@media screen and (max-width: 374px) {
  #sec_price .pricetable .r br.d-none.xs {
    display: block !important;
  }
}
#sec_price .pricetable .r small {
  font-weight: 700;
}

#sec_price .pricetable .r .btn {
  width: calc(100% - 4px);
  padding: 0.75em 0.2em;
  margin-bottom: 5px;
  border-radius: 0.5rem;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  #sec_price .pricetable .r .btn {
    font-size: 80%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #sec_price .pricetable .r .btn {
    font-size: 100%;
  }
}
#sec_price .pricetable .r .btn:last-child {
  margin-bottom: 0;
}

#sec_price .pricetable .column.splt .r:last-child .btn:first-child,
#sec_price .pricetable .column.bis .r:last-child .btn:first-child {
  margin-top: 3em;
}

#sec_price .pricetable .column.bislt .r:last-child .btn:first-child {
  background: linear-gradient(#ff91a9 0%, #ffafc0 30%, #ff7b98 100%);
}

#sec_price .pricetable .fs80 {
  font-size: 80%;
}

#sec_price .pricetable .fs90 {
  font-size: 90%;
}

#sec_price .pricetable .fs112 {
  font-size: 112.5%;
}

#sec_price .pricetable .fs125 {
  font-size: 125%;
}

#sec_price .pricetable .fs140 {
  font-size: 140%;
}

@media screen and (min-width: 1440px) {
  #sec_price .pricetable .d-xxl-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  #sec_price > .inner > .inner {
    max-width: 990px;
  }
}
#sec_price .partner {
  padding: 1rem 0.5rem;
  background-color: #7cae89;
  color: #fff;
}

@media screen and (min-width: 360px) {
  #sec_price .partner {
    padding: 1rem;
  }
}
#sec_price .partner h3 {
  font-size: 120%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #sec_price .partner h3 {
    font-size: 195%;
  }
}
#sec_price .partner h3 img {
  width: 2em;
  margin-right: 0.25em;
  display: block;
}

#sec_price .partner p {
  font-size: 90%;
}

@media screen and (min-width: 360px) {
  #sec_price .partner p {
    font-size: 100%;
  }
}
#sec_price .partner ul {
  font-size: 80%;
}

@media screen and (min-width: 768px) {
  #sec_price .partner ul {
    font-size: 100%;
  }
}
#sec_price .partner ul li {
  list-style-type: disc;
}

#sec_price .note {
  font-size: 75%;
}

@media screen and (min-width: 768px) {
  #sec_price .note {
    font-size: 80%;
  }
}
#sec_price .note h4 {
  font-weight: 400;
  font-size: 100%;
}

@media screen and (max-width: 767px) {
  #sec_companies .section_title {
    margin-bottom: 0;
  }
  #sec_companies .section_title + p {
    margin-bottom: 40px;
    font-size: 80%;
  }
}
#sec_companies .logos_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
}

@media screen and (min-width: 768px) {
  #sec_companies .logos_wrap {
    grid-template-columns: repeat(6, 1fr);
  }
}
#sec_companies .logos_wrap figure {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #sec_column .column_item {
    padding: 0 5px;
  }
}
#sec_column .column_item .card {
  height: 100%;
  border: 1px solid var(--main);
  border-radius: 15px;
  overflow: hidden;
}

#sec_column .column_item .card-img-top {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

#sec_column .column_item .card-img-top img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#sec_column .column_item .card-title {
  margin-bottom: 0;
  font-size: 100%;
  line-height: 1.4;
}

@media screen and (min-width: 1600px) {
  #sec_column .column_item .card-title {
    font-size: 120%;
  }
}
#sec_etcinfo {
  background: var(--main);
}

#sec_etcinfo .card {
  width: 100%;
  padding: 1rem;
  border: 0;
  border-radius: 1.875em;
  box-shadow: 1px 2px 3px rgba(86, 82, 82, 0.6);
  color: #666;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #sec_etcinfo .card1 {
    width: calc((100% - 2rem) * 0.35);
  }
  #sec_etcinfo .card2 {
    width: calc((100% - 2rem) * 0.3);
  }
  #sec_etcinfo .card3 {
    width: calc((100% - 2rem) * 0.35);
  }
}
@media screen and (min-width: 992px) {
  #sec_etcinfo .card1 {
    width: calc((100% - 2rem) * 0.4);
  }
  #sec_etcinfo .card3 {
    width: calc((100% - 2rem) * 0.3);
  }
}
@media screen and (min-width: 1200px) {
  #sec_etcinfo .card1 {
    width: calc((100% - 2rem) * 0.41);
  }
  #sec_etcinfo .card2 {
    width: calc((100% - 2rem) * 0.26);
  }
  #sec_etcinfo .card3 {
    width: calc((100% - 2rem) * 0.33);
  }
}
@media screen and (min-width: 1440px) {
  #sec_etcinfo .card1 {
    width: calc((100% - 2rem) * 0.4);
  }
  #sec_etcinfo .card2 {
    width: calc((100% - 2rem) * 0.3);
  }
  #sec_etcinfo .card3 {
    width: calc((100% - 2rem) * 0.3);
  }
}
#sec_etcinfo .card1 h3 {
  font-size: 130%;
  font-weight: 700;
  text-align: center;
}

#sec_etcinfo .card1 h3 span {
  font-size: 70%;
}

#sec_etcinfo .card1 img {
  width: 100%;
}

#sec_etcinfo .card1 p {
  font-size: 75%;
}

@media screen and (min-width: 768px) {
  #sec_etcinfo .card1 p {
    font-size: 70%;
  }
}
#sec_etcinfo .card2 {
  color: #666;
}

#sec_etcinfo .card2 img {
  width: 4.875em;
}

#sec_etcinfo .card2 span {
  width: 100%;
  font-size: 130%;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 1440px) {
  #sec_etcinfo .card2 span {
    font-size: 150%;
  }
}
#sec_etcinfo .card2 span::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.5em;
  border-right: 3px solid #666;
  border-top: 3px solid #666;
  display: block;
  transform: rotate(45deg);
}

#sec_etcinfo .card3 h3 {
  padding-top: 1em;
  font-size: 130%;
  font-weight: 700;
  position: relative;
}

@media screen and (min-width: 768px) {
  #sec_etcinfo .card3 h3 {
    font-size: 110%;
  }
}
#sec_etcinfo .card3 h3 span {
  font-size: 80%;
  position: absolute;
  top: 0;
  transform: rotate(-5deg);
}

#sec_etcinfo .card3 h3 span::before,
#sec_etcinfo .card3 h3 span::after {
  content: "";
  width: 1em;
  height: 1em;
  margin: 0.2em 0.1em;
  border-right: 1px solid #666;
  transform: rotate(-15deg);
  position: absolute;
  left: -1.5rem;
}

#sec_etcinfo .card3 h3 span::after {
  border-right: 0;
  border-left: 1px solid #666;
  transform: rotate(15deg);
  left: auto;
  right: -1.5rem;
}

#sec_etcinfo .card3 img {
  width: 90%;
}

#sec_etcinfo .card3 p {
  font-size: 68.75%;
}

/*------------------------------------------------------
    sidemenu
-------------------------------------------------------*/
#sidemenu {
  overflow: hidden;
}

.side_form.open #sidemenu {
  width: 100%;
  height: calc(100vh - 60px);
  padding: 1em 1em 10rem 1em;
  background: #fff;
  border-radius: 1.5em;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  transition: 0.5s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 1;
}

.side_form.open #sidemenu::-webkit-scrollbar {
  display: none;
}

#sidemenu .side_test_wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

#sidemenu .side_test_wrap.show {
  max-height: 500em;
  opacity: 1;
}

#sidemenu .side_test_wrap + .btn.test {
  background: linear-gradient(#6892b5 0%, #93b2cb 30%, #4e80a9 100%);
  display: inline-block;
}

#sidemenu .side_test_wrap.show + .btn.test {
  display: none;
}

#sidemenu .btn {
  width: 100%;
  position: relative;
}

#sidemenu .btn::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.25em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 0.9em;
  right: 1.5em;
}

#sidemenu .btn.noarrow::after {
  display: none;
}

#sidemenu .trial .trial_btn_wrap {
  padding-top: 1.5rem;
}

#sidemenu .trial .trial_btn_wrap.trial {
  padding-top: 3rem;
}

#sidemenu .trial .trial_btn_wrap .trial_btn {
  display: none;
}

#sidemenu .trial .trial_btn_wrap .notrial_btn {
  display: block;
}

#sidemenu .trial .trial_btn_wrap.trial .trial_btn {
  display: block;
}

#sidemenu .trial .trial_btn_wrap.trial .notrial_btn {
  display: none;
}

#sidemenu .trial .btn.fukidashi::before {
  content: "";
  width: 100px;
  height: 70px;
  background: url(../images/btndeco_trial.svg) center/contain no-repeat;
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
}

#sidemenu .contact .contact_btn_wrap .btn.mitsumori {
  display: none;
}

#sidemenu .contact .contact_btn_wrap.mitsumori .btn {
  display: none;
}

#sidemenu .contact .contact_btn_wrap.mitsumori .btn.mitsumori {
  display: block;
}

#sidemenu .trial p.btndeco {
  padding: 0 1.5em;
  margin-bottom: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#sidemenu .trial p.btndeco::before,
#sidemenu .trial p.btndeco::after {
  content: "";
  width: 1em;
  height: 1.5em;
  margin: 0 1em;
  border-right: 1px solid #4d4d4d;
  transform: rotate(-15deg);
  position: absolute;
  left: -1rem;
}

#sidemenu .trial p.btndeco::after {
  border-right: 0;
  border-left: 1px solid #4d4d4d;
  transform: rotate(15deg);
  left: auto;
  right: -1rem;
}

#sidemenu .form_wrap {
  max-height: 0;
  border: 1px solid #4d4d4d;
  border-radius: 1.5em;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

#sidemenu .form_wrap.show {
  max-height: 500em;
  padding: 1rem 1rem 2rem 1rem;
  margin-top: 2rem;
  opacity: 1;
}

#sidemenu .form_wrap .trial_form_head .trial {
  display: none;
}

#sidemenu .form_wrap .trial_form_head .notrial {
  display: block;
}

#sidemenu .form_wrap .trial_form_head.trial .trial {
  display: block;
}

#sidemenu .form_wrap .trial_form_head.trial .notrial {
  display: none;
}

#sidemenu .form_wrap .trial_form_head .trial_ttlWrap {
  position: relative;
}

#sidemenu .form_wrap .trial_form_head .trial_ttlWrap .form_title {
  padding-right: 40px;
}

#sidemenu .form_wrap .trial_form_head .trial_ttlWrap p {
  width: 80px;
  height: 80px;
  margin-bottom: 0;
  background: var(--main);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: calc(50% + 30px);
  transform: translateY(-50%);
}

#sidemenu .form_wrap .trial_form_head .trial_ttlWrap p strong {
  font-size: 16px;
  font-weight: 700;
}

#sidemenu .form_wrap .contact_form_head h3.mitsumori {
  display: none;
}

#sidemenu .form_wrap .contact_form_head.mitsumori h3 {
  display: none;
}

#sidemenu .form_wrap .contact_form_head.mitsumori h3.mitsumori {
  display: flex;
}

#sidemenu .form_wrap .form_title {
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sidemenu .form_wrap .form_title small {
  margin-bottom: 0.25em;
  color: #80a9cb;
  font-size: 150%;
  font-weight: 700;
  display: flex;
  align-items: center;
}

#sidemenu .form_wrap .form_title small img {
  width: 1em;
  display: block;
}

#sidemenu .form_wrap .recommendBnr {
  border-bottom: 1px solid var(--main);
}

#sidemenu .form_wrap h4 {
  width: 100%;
  color: var(--main);
  font-size: 100%;
  font-weight: 700;
}

#sidemenu .form_wrap h5,
#sidemenu .form_wrap h6 {
  width: 100%;
  margin-bottom: 0.25em;
  font-size: 100%;
  font-weight: 700;
  display: flex;
  align-items: center;
}

#sidemenu .form_wrap h6 {
  font-size: 90%;
}

#sidemenu .form_wrap h5 small,
#sidemenu .form_wrap h6 small {
  font-weight: 700;
  font-size: 10px;
}

#sidemenu .form_wrap span.inquiry {
  padding: 2px 5px;
  background: #f00;
  border-radius: 5px;
  color: #fff;
  font-weight: 300;
  font-size: 10px;
  white-space: nowrap;
}

#sidemenu .form_wrap input[type=text],
#sidemenu .form_wrap input[type=tel],
#sidemenu .form_wrap input[type=email],
#sidemenu .form_wrap select,
#sidemenu .form_wrap textarea {
  width: 100%;
  padding: 0.5em;
  background: #fff;
  border: 1px solid #868686;
  border-radius: 10px;
}

#sidemenu .form_wrap input.prefecture {
  width: 10em;
}

#sidemenu .form_wrap input::placeholder {
  color: #a0a0a0;
}

#sidemenu .form_wrap input[type=checkbox],
#sidemenu .form_wrap input[type=radio] {
  appearance: auto;
}

#sidemenu .form_wrap input[type=radio] {
  margin-right: 0.2em;
}

#sidemenu .form_wrap .desired_id strong {
  color: var(--main);
  font-weight: 700;
}

#sidemenu .form_wrap .desired_id ul {
  padding-left: 1em;
  font-size: 10px;
  font-weight: 700;
}

#sidemenu .form_wrap .desired_id ul li {
  padding-left: 0.25em;
  position: relative;
}

#sidemenu .form_wrap .desired_id ul li::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  background: #4d4d4d;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0.5em;
  left: -0.25em;
}

#sidemenu .form_wrap .desired_id .btn {
  width: 70%;
  height: 6em;
  margin: 0 auto;
  font-size: 90%;
  white-space: pre-wrap;
}

#sidemenu .form_wrap .desired_id .btn::before,
#sidemenu .form_wrap .desired_id .btn::after {
  display: none;
}

#sidemenu .form_wrap .name input {
  width: calc((100% - 1rem) / 2);
}

#sidemenu .form_wrap p.attention {
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--main);
  color: var(--main);
  font-weight: 700;
}

#sidemenu .form_wrap p.attention small {
  color: #4d4d4d;
  font-weight: 500;
}

#sidemenu .form_wrap .call_num .button {
  padding: 0.5em;
  background: var(--ac);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  white-space: nowrap;
  text-align: center;
}

#sidemenu .form_wrap p.note {
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}

#sidemenu .form_wrap p.info {
  color: var(--main);
  font-weight: 700;
}

#sidemenu .form_wrap .address p {
  font-weight: 700;
  font-size: 80%;
}

#sidemenu .form_wrap .enquete {
  color: var(--main);
  font-weight: 700;
  font-size: 90%;
}

#sidemenu .form_wrap .question {
  width: 1em;
  cursor: pointer;
  position: relative;
}

#sidemenu .form_wrap .description {
  width: 15em;
  padding: 1em;
  background: #fff;
  border: 1px solid var(--main);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-size: 10px;
  position: absolute;
  top: 1rem;
  margin: 0 -8em;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}

#sidemenu .form_wrap .question:hover .description {
  opacity: 1;
}

#sidemenu .form_wrap .errmsg {
  margin-bottom: 0.25em;
  color: #f00;
  font-size: 87.5%;
  line-height: 1;
  display: inline-block;
}

#sidemenu #invoice_stg {
  padding: 1em;
  margin-top: -1rem;
  margin-bottom: 1em;
  background: #ffffc5;
  border-radius: 0.5em;
}

#sidemenu .form_wrap div.note {
  background: #ffffc5;
}

#sidemenu .form_wrap div.note ul {
  margin-left: 2em;
}

#sidemenu .form_wrap div.note ul li {
  list-style-type: disc;
}

@media screen and (max-width: 1199px) {
  #side_open_btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 1;
  }
  #side_open_btn:focus {
    outline: 0;
  }
  #side_open_btn span {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #4d4d4d;
    transition: 0.5s;
    display: block;
  }
  .side_form.open #side_open_btn {
    right: 390px;
    z-index: -1;
  }
  .side_form.open #side_open_btn span {
    transform: rotate(180deg) translate(-3px);
  }
}
@media screen and (max-width: 767px) {
  #side_open_btn {
    width: 30px;
    height: 40px;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
@media screen and (max-width: 419px) {
  .side_form.open #side_open_btn {
    right: calc(100vw - 30px);
  }
}
.side_form .reset_link {
  color: var(--main);
  text-decoration: underline;
}