@charset "UTF-8";

/* ///////////// device ///////////// */
.pc-view {
  display: block;
}
.tablet-view {
  display: none;
}
.sp-view {
  display: none;
}
@media only screen and (max-width: 1110px) {
  .tablet-view {
    display: block;
  }
  .sp-view {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
}

/* ///////////// background ///////////// */
.c-background-gray {
  margin: 110px 0;
  padding: 110px 0;
  background-color: #EEF1F4;
}
@media only screen and (max-width: 479px) {
  .c-background-gray {
    margin: 70px 0;
    padding: 70px 0;
  }
}

/* ///////////// font ///////////// */
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* ///////////// color ///////////// */
body {
  color: #231815;
}

.c-color-bg__blue {
  background-color: #EEF1F4;
}

/* ///////////// title ///////////// */
#c-title-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 233px;
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  background-image: url('/wp-content/themes/assets/img/common/title_main_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 783px) {
  #c-title-main {
    margin-top: 0;
  }
}
@media only screen and (max-width: 479px) {
  #c-title-main {
    font-size: 27px;
    height: 147px;
  }
}

/* ///////////// text ///////////// */
.c-text-caution {
  color: #555;
  font-size: 11px;
  font-weight: normal;
  line-height: 18px;
}
.c-text-sup {
  position: relative;
  font-size: 11px;
  vertical-align: top;
}

/* ///////////// icon ///////////// */
.c-icon__another-window {
  padding-right: 20px;
  background-image: url('../img/icon_outside.png');
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right center;
}

/* ///////////// button ///////////// */
.c-button-primary {
  display: flex;
  position: relative;
  width: 100%;
  height: 56px;
  padding: 21px 0;
  overflow: hidden;
  border: solid 1px #B6111C;
  border-radius: 2px;
  background-color: #B6111C;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  text-align: center;
  transition: .3s;
  justify-content: center;
  align-items: center;
}
.c-button-primary::after {
position: absolute;
content: "";
top: 50%;
right: 4px;
height: 11px;
width: 12px;
background: url('../img/cta_arrow_white.svg') no-repeat center center;
background-size: contain;
transform: translate(-50%, -50%);
}
.c-button-primary::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #fff;
  content: '';
  transition: transform .3s;
}
.c-button-primary:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.c-button-primary span {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  background-image: none;
}
.c-button-primary .button_acc {
  background-color: #fff;
  position: relative;
  padding: 3px 6px;
  border: 1px solid #fff;
  border-radius: 2px;
  color: #b6111c;
  font-size: 12px;
  margin-right: 10px;
  transition: .3s;
}
.c-button-primary:hover .button_acc {
border: solid 1px #b6111c;
background-color: #fff;
color: #b6111c;
}
.c-button-primary .button_text {
  margin-right: 16px;
}
.c-button-primary:hover {
  border: solid 1px #B6111C;
  background-color: #fff;
  color: #B6111C;
}
.c-button-primary:hover::after {
background: url('../img/cta_arrow_red.svg') no-repeat center center;
}
.c-button-secondary {
  display: flex;
  position: relative;
  width: 100%;
  height: 56px;
  padding: 21px 0;
  overflow: hidden;
  border: solid 1px #B6111C;
  border-radius: 2px;
  background-color: #B6111C;
  color: #fff;
  font-size: clamp(0.75rem, 0.488rem + 0.55vw, 1rem);
  font-weight: bold;
  line-height: 14px;
  text-align: center;
  transition: .3s;
  justify-content: center;
  align-items: center;
}
.c-button-secondary span {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    background-image: none;
}
.c-button-secondary:hover {
  border: solid 1px #B6111C;
  background-color: #fff;
  color: #B6111C;
}
.c-button-secondary:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}
.c-button-secondary span.button_acc {
    background-color: #fff;
    position: relative;
    padding: 3px 6px;
    border: 1px solid #fff;
    border-radius: 2px;
    color: #b6111c;
    font-size: 12px;
    margin-right: 10px;
    transition: .3s;
}
#l-footer__fixed-cta .c-button-secondary span.button_acc {
  font-size: clamp(0.75rem, 0.57rem + 0.38vw, 0.875rem);
}
.c-button-secondary span.button_text {
    margin-right: 16px;
}
.c-button-secondary:hover .button_acc {
    border: solid 1px #b6111c;
    background-color: #fff;
    color: #b6111c;
}
.c-button-secondary:hover .button_text {
  color: #b6111c;
}
.c-button-red {
  display: inline-block;
  width: 100%;
  padding: 13px 0;
  border: solid 1px #fff;
  border-radius: 2px;
  background-color: #B6111C;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  text-align: center;
}
.c-button-red:hover {
  border: solid 1px #B6111C;
  background-color: #fff;
  color: #B6111C;
}
.c-button-tel {
  display: inline-block;
  width: 100%;
  padding: 13px 0;
  border: solid 1px #fff;
  border-radius: 2px;
  background-color: #231815;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  text-align: center;
}
.c-button-tel span {
  font-size: 11px;
}
@media (min-width:768px) {
  /* 電話番号PC画面のfacetimeを無効 */
  a[href^="tel:"], .disable_call span {
    pointer-events: none;
    cursor: default;
  }
}
.c-button-cta-block__demo {
  height: 332px;
  margin: 80px auto 0;
  padding-left: 95px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  transition: 1s all ease;
  pointer-events: none;
}
.webp .c-button-cta-block__demo {
  background-image: url('../img/cta_demo_bg.webp');
}
.no-webp .c-button-cta-block__demo {
  background-image: url('../img/cta_demo_bg.jpg');
}
.c-button-cta-block__demo:hover {
  background-size: auto 110%;
}
.c-button-cta-block__demo .btn {
  pointer-events: auto;
}
.c-button-cta-block__demo .c-text-sup {
  top: -8px;
  right: 0;
}
.c-button-cta-block__demo .c-text-caution {
  margin-top: 12px;
  color: #fff;
}
.c-button-cta-block__inner {
  display: flex;
  width: 1110px;
  margin: 0 auto;
  padding-top: 70px;
}
.c-button-cta-block__price .c-button-cta-block__inner {
  justify-content: flex-end;
}
.c-button-cta-block__inner h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 46px;
}
.c-button-cta-block__inner a {
  width: 330px;
  margin-top: 33px;
}
.c-button-about {
  padding: 110px 0;
  background-color: #fff;
  text-align: center;
}
.c-button-about h2 {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
}
.c-button-about ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 32px;
}
.c-button-about__2colmn {
  width: 920px;
}
.c-button-about__2colmn img {
  transition: transform .3s ease;
}
.c-button-about__2colmn img:hover {
  transform: scale(1.1, 1.1);
}
.c-button-about__3colmn {
  width: 825px;
}
.c-button-about__3colmn img {
  transition: transform .3s ease;
}
.c-button-about__3colmn img:hover {
  transform: scale(1.1, 1.1);
}
.c-button-about p {
  margin-top: 27px;
  font-size: 20px;
  font-weight: bold;
}
.c-button-about a {
  color: #231815;
}
@media only screen and (max-width: 1110px) {
  .c-button-cta-block__price {
    background-position: left center;
  }
  .c-button-cta-block__demo {
    width: 90%;
    padding-left: 20px;
    background-position: right top;
  }
  .c-button-cta-block__inner {
    width: 90%;
  }
}
@media only screen and (max-width: 936px) {
  .c-button-cta-block__price .c-button-cta-block__inner {
    justify-content: flex-start;
  }
  .c-button-about__2colmn {
    width: 90%;
  }
  .c-button-about__2colmn li {
    width: 48%;
  }
  .c-button-about__3colmn {
    width: 90%;
  }
  .c-button-about__3colmn li {
    width: 30%;
  }
  .c-button-about li img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .c-button-about {
    padding: 40px 0;
  }
  .c-button-about h2 {
    font-size: 21px;
    margin-bottom: 0;
  }
  .c-button-about ul {
    display: block;
  }
  .c-button-about__2colmn li {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .c-button-about__3colmn li {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .c-button-about__2colmn {
    width: 80%;
  }
  .c-button-about__3colmn {
    width: 90%;
  }
  .c-button-about__2colmn img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .c-button-about img {
    margin-top: 35px;
  }
  .c-button-about p {
    margin-top: 15px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 479px) {
  .c-button-primary {
    padding: 20px 0;
    border: none;
    border-radius: 2px;
    background-color: #B6111C;
    color: #fff;
  }
  .c-button-cta-block__price {
    height: 329px;
    background-image: url('../img/cta_price_bg_sp.png');
    background-position: top;
  }
  .c-button-cta-block__demo {
    width: 100%;
    height: 388px;
    margin: 60px auto 0;
    padding-left: 0;
    background-image: url('../img/cta_demo_bg_sp.png');
    background-position: top left;
    background-size: 100%;
  }
  .c-button-cta-block__inner {
    display: block;
    width: 90%;
    padding-top: 65px;
  }
  .c-button-cta-block__inner h3 {
    font-size: 21px;
    line-height: 39px;
  }
  .c-button-cta-block__inner a {
    width: 100%;
    margin-top: 45px;
    border: solid 1px #fff;
  }
  .c-button-primary .button_acc {
    margin-right: 4px;
    padding: 0px 4px;
  }
}
/* ///////////// button end ///////////// */
