@charset "UTF-8";
/* 変数 */
:root {
    --main-bg-color: #fff0c8;
    --main-key-color:#f06400;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #42210B;
}

.inner {
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: auto;
    height: auto;
  }
}

.common_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px;
  padding: 10px 5%;
  z-index: 10;
  overflow: hidden;
  background-color: #FFF;
}

.common_header .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.common_header .box .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 210px;
          flex: 0 0 210px;
  line-height: normal;

  & img {
    max-height: 60px;
    vertical-align: middle;
  }
}

.common_header .box .headTx {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}

.common_header .box .tel {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.common_header .box .tel .tx1 {
  text-align: right;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0;
  border-right: 1px solid #42210B;
  padding-right: 20px;
}

.common_header .box .tel .tx1 ruby rt {
  font-size: 10px;
}

.common_header .box .tel .tx1 .no:before {
  content: url("../images/common/head_free.png");
  display: inline-block;
  margin-right: 10px;
  vertical-align: bottom;
}

.common_header .box .tel .tx2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size:12px;
  line-height: 1.35;
}

.common_header .box .areaBtn {
  display: none;
}

.common_header .box .menuBtn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
}

@media screen and (max-width: 768px) {
  .common_header {
    height: 60px;
    padding: 0;
  }
  .common_header .box {
    display: grid;
    grid-template-columns: 135px 1fr 56px;
    gap: 0;
    white-space: unset;

    .logo {
      grid-column: 1/2;
      padding-left: 10px;
    }
    .headTx {
      display: none;
    }
    .tel {
      display: none;
    }
    .areaBtn {
      grid-column: 2/3;

      display: block;
      text-align: right;
      padding-right: 20px;
      .sp_btn {
        background-image: url("../images/common/bnrIcon1.webp");
        background-repeat: no-repeat;
        background-position: 0.75em center;
        background-color: var(--main-key-color);
        background-size: 22px;
        border-radius: 6px;
        color: #fff;
        font-weight: bold;
        font-size: 12px;
        padding: 0.75em;
        padding-left: calc(1.25em + 22px);
      }
    }
    .menuBtn {
      grid-column: 3/4;
    }
  }

  body.front_page {
    .common_header .box {
      .headTx {
        display: block;
        grid-column: 2/3;

        padding: 0.5em 1em;
        font-size: 9px;
        overflow-wrap: break-word;
        word-break: break-all;
        & br {
          display: none;
        }
      }
      .areaBtn {
        display: none;
      }
    }
  }
}


/* スクロール時に付けるシャドウ */
.sh {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

/* メニュー開閉ボタン */
.menuBtn,
.menuBtn_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--main-key-color);
  width: 56px;
  height: 60px;
  z-index: 102;
}

@media screen and (max-width: 768px) {
  .menuBtn,
  .menuBtn_close {
    border-radius: 0;
  }
}
.menuBtn span,
.menuBtn_close span {
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  left: 13px;
  background: #FFF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menuBtn span:nth-child(1),
.menuBtn_close span:nth-child(1) {
  top: 17px;
}

.menuBtn span:nth-child(2),
.menuBtn_close span:nth-child(2) {
  top: 27px;
}

.menuBtn span:nth-child(3),
.menuBtn_close span:nth-child(3) {
  top: 37px;
}

.menuBtn_close {
  background-color: transparent;
  display: none;
  position: fixed;
  top: 0;
  right: 10px;
}

.menuBtn_close span:nth-child(1) {
  top: 24px;
  left: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menuBtn_close span:nth-child(2),
.menuBtn_close span:nth-child(3) {
  top: 24px;
  left: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menuBtn_close.active {
  display: block;
}

/* グローバルナビ */
.spnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.spnav ul li {
  margin: 0 5px;
  font-weight: 500;
  text-align: center;
}

.spnav .menu {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: var(--main-key-color);
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #000;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 400px;
  height: 100%;
  z-index: 101;
  overflow: auto;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .spnav .menu {
    width: 100%;
  }
}
.spnav .menu a {
  color: #FFF;
}

.spnav .menu.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.spnav .logo_menu {
  padding: 8px;
  border-bottom: 1px solid #FFF;
}

.spnav .logo_menu img {
  width: 125px;
}

.spnav .par {
  position: relative;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-bottom: 1px solid #FFF;
  cursor: pointer;
}

.spnav .par:after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: " ";
  width: 15px;
  height: 2px;
  border-top: 3px solid #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.spnav .par:before {
  position: absolute;
  content: " ";
  right: 11px;
  top: 50%;
  width: 15px;
  height: 2px;
  border-top: 3px solid #fff;
  -webkit-transform: translate(-50%, 0%) rotate(90deg);
          transform: translate(-50%, 0%) rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.spnav .par.arr {
  border-bottom: 1px dotted #FFF;
}

.spnav .par.arr:after {
  width: 15px;
  right: 15px;
  -webkit-transform: translate(0%, 0%) rotate(-45deg);
          transform: translate(0%, 0%) rotate(-45deg);
}

.spnav .par.arr:before {
  width: 15px;
  right: 26px;
  -webkit-transform: translate(0%, 0%) rotate(45deg);
          transform: translate(0%, 0%) rotate(45deg);
}

.spnav .par.link:after,
.spnav .par.link:before {
  display: none;
}

.spnav .par.link a {
  display: block;
}

.spnav .chi {
  display: none;
}

.spnav .chi ul {
  border-bottom: 1px solid #FFF;
  display: block;
  padding: 10px;
}

.spnav .chi li {
  text-align: left;
  margin: 0 20px;
  font-weight: normal;
}

.spnav .chi li:last-child {
  border-bottom: none;
}

.spnav .chi li a {
  display: block;
  padding: 5px 0;
}

.spnav .otherLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 0;
}

.spnav .otherLink .in {
  font-size:12px;
  padding: 0 20px;
}

.spnav .otherLink .in:first-child {
  border-right: 1px solid #FFF;
  padding: 0 20px 0 0;
}

.spnav .contactLink .btn {
  margin: 10px auto;
}

.spnav .contactLink .btn a {
  background-color: #FFF;
  color: var(--main-key-color) !important;
}

.spnav .contactLink .btn:before {
  background-color: var(--main-key-color);
}

.spnav .contactLink .btn:after {
  border-left: 8px solid #FFF;
}

.spnav .snsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 20px 0 0 0;
}
.spnav .snsBox a{
  width: 30px; 
  margin: 0 8px;
}
.spnav .snsBox img {
  width: 100%;
}
.top #container {
  padding: 98px 0 0 0;
}

@media screen and (max-width: 768px) {
  .top #container {
    padding: 52px 0 0 0;
  }
}
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top_news {
  background-color: var(--main-key-color);
  padding: 5px 0;
  margin: 0 0 5px;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top_news {
    padding: 5px 10px;
  }
}
.top_news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_news .inner a {
  color: #42210B;
  /* font-size:14px */
}

.top_news .tBox {
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .top_news .tBox {
    width: 16%;
    font-size: 16px;
    /* font-size:14px */
  }
}
.top_news .lBox {
  width: 45%;
  background-color: #FFF;
  color: #FFF;
  border-radius: 50px;
  padding: 3px;
}

@media screen and (max-width: 768px) {
  .top_news .lBox {
    width: 84%;
  }
}
.top_news .lBox .caroufredsel_wrapper {
  height: 24px !important;
}

.top_news .lBox .newsBox {
  display: none;
}

.top_news .lBox .newsBox .in {
  display: block;
  float: left;
  width: 420px;
}

@media screen and (max-width: 768px) {
  .top_news .lBox .newsBox .in {
    width: 280px;
  }
}
.top_news .lBox .newsBox .in a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1px 0 0 0;
}

.top_news .lBox .newsBox .in a:after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 10px;
  border-color: transparent transparent transparent #42210B;
}

.top_news .lBox .newsBox .in a .icon {
  background-color: #FFA8A9;
  color: #FFF;
  /* font-size:10px; */
  border-radius: 30px;
  width: 20%;
  text-align: center;
  margin: 0 10px 0 0;
}

.top_news .lBox .newsBox .in a .icon1 {
  background-color: #5BB331;
}

@media screen and (max-width: 768px) {
  .top_news .lBox .newsBox .in a .icon1 {
    display: none;
  }
}
.top_news .lBox .newsBox .in a .tx {
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top_news .lBox .newsBox .in a .tx {
    width: 95%;
    /* font-size:3vw */
  }
}
.top_news .rBox {
  width: 45%;
  background-color: #FFF;
  color: #FFF;
  border-radius: 50px;
  padding: 4px 10px 4px 20px;
  overflow: hidden;
}

.top_news .rBox:nth-child(n+3) {
  margin-top: 5px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .top_news .rBox {
    display: none;
  }
}
.top_news .rBox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* flex-wrap:wrap */
}

.top_news .rBox a:after {
  content: " ";
  margin: 4px 0 0 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 10px;
  border-color: transparent transparent transparent #42210B;
}

.top_news .rBox_no {
  color: #42210B;
}

.mv {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    overflow: hidden;
  }
}
.mv .mainSlide {
  overflow: hidden;
  position: relative;
  width: 960px;
  height: 450px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .mv .mainSlide {
    width: 100%;
    max-height: 411px;
    height: 101vw;
  }
}
/*
.mv .mainSlide .slide:first-child {
  margin-top: 20px;
}
*/
.mv .mainSlide .slide {
  position: relative;
  text-align: center;
  width: 960px;
  height: 450px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .mv .mainSlide {
    max-height: none;
    height: auto;
  }
  .mv .mainSlide .slide {
    width: 100%;
    margin-top: 0;
  }
  .mv .mainSlide .slide picture {
    display: block;
  }
  .mv .mainSlide .slide .mainimg {
    display: block;
    padding: 0 5px;
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.mv .mainSlide .slide .btnArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 360px;
  position: absolute;
  right: 20px;
  bottom: 111px;
}

.mv .mainSlide .slide .btnArea a {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .mv .mainSlide .slide figure {
    position: relative;
  }
  .mv .mainSlide .slide .btnArea {
    width: 130px;
    right: 7%;
    bottom: 10%;
  }
  .mv .mainSlide .slide figure {
    display: inline-block;
  }
}
@media (max-width: 420px) {
  .mv .mainSlide .slide .btnArea {
    right: 6.5%;
    bottom: 9.5%;
  }
}
@media (max-width: 390px) {
  .mv .mainSlide .slide .btnArea {
    right: 6.5%;
    bottom: 9%;
  }
  .mv .mainSlide .slide .btnArea a {
    /* width: 48%; */
    width: 96%;
  }
}
@media (max-width: 365px) {
  .mv .mainSlide .slide .btnArea {
    width: 115px;
  }
}
.mv .service_icon_area {
  background-color: #F1F1F1;
  padding: 20px 0 50px;
  margin: 20px 0 0 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .mv .service_icon_area {
    padding: 20px 0;
  }
}
.mv .service_icon_area .inner .service_icon_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .mv .service_icon_area .inner .service_icon_title {
    font-size: 16px;
  }
}
.mv .service_icon_area .inner .caroufredsel_wrapper {
  height: 110px !important;
}

.mv .service_icon_area .inner .service_icon_slider {
  height: 100px;
  display: none;
}

.mv .service_icon_area .inner .service_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  float: left;
}

@media screen and (max-width: 768px) {
  .mv .service_icon_area .inner .service_icon {
    float: none;
    display: block;
    width: 800px;
    height: 80px;
  }
}
.mv .service_icon_area .inner .service_icon .sub {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding: 0 30px 0 0;
}

.mv .service_icon_area .inner .service_icon .in {
  position: relative;
  color: #FFF;
  text-align: center;
  /* font-size:12px; */
  font-weight: bold;
  text-decoration: none !important;
  height: 100px;
}

@media screen and (max-width: 768px) {
  .mv .service_icon_area .inner .service_icon .in {
    height: 80px;
    /* font-size:1vw; */
    margin: 0 5px;
    float: left;
  }
}
.mv .service_icon_area .inner .service_icon .in .imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  align-items: center;
  width: 110px;
  height: 110px;
  background-color: #F1962C;
  border-radius: 10px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .mv .service_icon_area .inner .service_icon .in .imgBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 10px 5px;
    border-radius: 10px;
    margin: 0 0 10px;
  }
}
.mv .service_icon_area .inner .service_icon .in .imgBox picture {
  width: 100%;
}

.mv .service_icon_area .inner .service_icon .in .tx {
  display: block;
  width: 100%;
  line-height: 120%;
  /* font-size:12px; */
}

/* @media screen and (max-width: 768px){.mv .service_icon_area .inner .service_icon .in .tx{font-size:10px;}} */
.mv .service_icon_area .inner .service_icon .in2 .imgBox {
  background-color: #5BB231;
}

.mv .service_icon_area .inner .service_icon .in3 .imgBox {
  background-color: var(--main-key-color);
}

.mv .service_icon_area .inner .pc_slide {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mv .service_icon_area .inner .pc_slide .in {
  margin: 0 5px;
}

.mv .service_icon_area .inner .pager {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: auto;
  bottom: 0;
}

.mv .service_icon_area .inner .pager a {
  background-color: #E3E3E3;
  border-radius: 5px;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 10px;
}

.mv .service_icon_area .inner .pager a:hover {
  background: #42210B;
}

.mv .service_icon_area .inner .pager a span {
  display: none;
}

.mv .service_icon_area .inner .pager .selected {
  background: #42210B;
}

.staffbox,
.endless_scroll {
  overflow: hidden;
  display: none;
}

.staffbox li,
.endless_scroll li {
  height: 100px;
  float: left;
  overflow: hidden;
  margin: 0 3px;
}

.staffbox li img,
.endless_scroll li img {
  width: 1420px;
}

@media screen and (max-width: 768px) {
  .staffbox li img,
  .endless_scroll li img {
    width: auto;
    margin-top: 0;
  }
  .staffbox li,
  .endless_scroll li {
    height: 90px;
    width: auto;
  }
  .staffbox li img,
  .endless_scroll li img {
    height: 100%;
    max-width: none;
  }
}
.floating,
.floating1 {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: var(--main-key-color);
  color: #FFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
          text-orientation: upright;
  padding: 30px 14px;
  /* font-size:14px; */
  font-weight: bold;
  border-radius: 10px 0 0 10px;
}

@media screen and (max-width: 768px) {
  .floating,
  .floating1 {
    display: none;
  }
}
.floating:hover,
.floating1:hover {
  opacity: 1;
  color: #FFF;
  padding: 30px 18px 30px 14px;
}

.floating img,
.floating1 img {
  padding: 0 0 5px;
  width: 20px;
}

.floating1 {
  top: 100px;
}


/* フローティングCTA(PC) */
.floatingBox_pc {
  position: fixed;
  left: 50%;
  bottom: -200px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background-color: #FFF;
  width: auto;
  z-index: 9;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.floatingBox_pc .inBox {
  position: relative;
}

.floatingBox_pc .inBox .in {
  width: auto;
  padding: 20px 15px 25px 15px;
}

.floatingBox_pc .inBox .in .tx {
  font-size: 17px;
  font-weight: bold;
  position: relative;
  text-align: center;
  padding: 0 30px 5px;
}

.floatingBox_pc .inBox .in .tx:before,
.floatingBox_pc .inBox .in .tx:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 0px;
  width: 20px;
  height: 2px;
  border-radius: 30px;
  background-color: #42210B;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.floatingBox_pc .inBox .in .tx:after {
  left: auto;
  right: 5px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.floatingBox_pc .inBox .in ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.floatingBox_pc .inBox .in ul li {
  width: 48%;
  height: 48px;
  text-align: center;
  position: relative;
}

.floatingBox_pc .inBox .in ul li.email {
  width: 100%;
}

.floatingBox_pc .inBox .in ul li a {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  background-color: var(--main-key-color);
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 0 #DC3246;
          box-shadow: 0 5px 0 #DC3246;
  padding: 7px 0px 5px;
  top: 0;
  left: 0;
  width: 100%;
}

.floatingBox_pc .inBox .in ul li a:hover {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 #DC3246;
          box-shadow: 0 0 0 #DC3246;
  top: 5px;
}

.floatingBox_pc .inBox .in ul li a span {
  padding: 0 0 3px 5px;
  font-size: 14px;
}

.floatingBox_pc .inBox .in ul li.email a {
  background-color: var(--main-key-color);
  -webkit-box-shadow: 0 5px 0 #DC3246;
          box-shadow: 0 5px 0 #DC3246;
}

.floatingBox_pc .inBox .in ul li.email a:hover {
  -webkit-box-shadow: 0 0 0 #DC3246;
          box-shadow: 0 0 0 #DC3246;
}

@media screen and (max-width: 768px) {
  .floatingBox_pc {
    display: none;
  }
}

/* フローティングCTA(Mobile) */
.floatingBox_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .floatingBox_sp {
      display:block;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      overflow: hidden;
  }

  .floatingBox_sp .tx {
      background-color: #42210b;
      color: #fff;
      padding: 2px 0;
      font-size: 12px;
      font-weight: 700;
      text-align: center;
  }

  .floatingBox_sp ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  }

  .floatingBox_sp ul li {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
  }

  .floatingBox_sp ul li a {
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      line-height: 130%;
      padding: 0.5em 0;
  }

  .floatingBox_sp ul li a:before {
      margin-right: 7px;
  }

  .floatingBox_sp ul li.email {
      background-color: var(--main-key-color);
  }

  .floatingBox_sp ul li.email a:before {
      content: url("../images/common/bnrIcon1_sp.svg");
      display: block;
      width: 20px;
      height: 14px;
      margin-top: -3px;
  }

  .floatingBox_sp ul li.tel {
      background-color: #f1962c;
  }

  .floatingBox_sp ul li.tel a:before {
      content: url("../images/common/bnrIcon2_sp.svg");
      display: block;
      width: 16px;
      height: 22px;
      margin-top: 2px;
  }
}

.titleBox {
  background: url("../images/common/bg1.webp") center center repeat;
  background-repeat: repeat-x;
  background-position: center top;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #42210B;
  padding: 30px 20px 50px;
  margin: 0 0 50px;
}

.no-webp .titleBox {
  background: url("../images/common/bg1.png") center center repeat;
}

@media screen and (max-width: 768px) {
  .titleBox {
    background: url("../images/common/bg1_sp.webp") center center repeat;
    background-repeat: repeat-x;
    background-position: center top;
    padding: 10px 10px 30px;
    margin: 0 0 30px;
  }
  .no-webp .titleBox {
    background: url("../images/common/bg1_sp.png") center center repeat;
  }
}
.titleBox .title {
  font-size: 35px;
}

@media screen and (max-width: 768px) {
  .titleBox .title {
    font-size: 5vw;
  }
}
.titleBox .title span {
  color: var(--main-key-color);
}

.titleBox .sub {
  padding: 0 0 10px;
}

.titleBox .sub span {
  font-size: 16px;
  /* font-size:14px; */
  color: #FFF;
  border: 1px solid #FFF;
  border-radius: 30px;
  padding: 3px 10px;
}

@media screen and (max-width: 768px) {
  .titleBox .sub span {
    font-size: 16px;
    /* font-size:3vw */
  }
}
.titleBox2 {
  background: url("../images/common/bg2.webp") center center repeat;
  background-repeat: repeat-x;
  background-position: center bottom;
}

.no-webp .titleBox2 {
  background: url("../images/common/bg2.png") center center repeat;
}

@media screen and (max-width: 768px) {
  .titleBox2 {
    background: url("../images/common/bg2_sp.webp") center center repeat;
    background-repeat: repeat-x;
    background-position: center top;
  }
  .no-webp .titleBox2 {
    background: url("../images/common/bg2_sp.png") center center repeat;
  }
}
.titleBox2 .sub span {
  color: var(--main-key-color);
  border: 1px solid var(--main-key-color);
}

.titleBox3 {
  background: url("../images/common/bg5.png") center center repeat;
  background-repeat: repeat-x;
  background-position: center top;
}

.pageMain {
  padding: 80px 0 0 0;
}

@media screen and (max-width: 768px) {
  .pageMain {
    padding: 52px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .pageMain .titleBox {
    padding: 20px 10px 30px;
  }
}

@media screen and (max-width: 768px) {
  .promotion_single .inner .txBox .imgBox img {
    width: 100%;
  }
}

.three_point .inBox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--main-key-color);
  color: #FFF;
  padding: 20px;
  margin: 30px auto 0;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .three_point .inBox2 {
    margin: 20px;
  }
}
.three_point .inBox2 .in {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .three_point .inBox2 .in {
    width: 100%;
    text-align: center;
  }
}
.three_point .inBox2 .in:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 71%;
}

@media screen and (max-width: 768px) {
  .three_point .inBox2 .in:last-child {
    width: 100%;
    text-align: left;
    padding: 10px 0 0 0;
  }
}
.three_point .inBox2 .in .tx4 {
  font-size: 30px;
  font-weight: bold;
}

.three_point .inBox2 .in .tx4 span {
  /* font-size:12px; */
  display: block;
}

.three_point .inBox2 .in .in1 {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .three_point .inBox2 .in .in1 {
    width: 100%;
    padding: 5px 0;
  }
}
.three_point .inBox2 .in .in1 .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF;
  width: 35px;
  height: 35px;
  border-radius: 17px;
  color: var(--main-key-color);
  margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
  .three_point .inBox2 .in .in1 .tx5 {
    width: 80%;
  }
}
.three_point .inBox3 {
  background: url("../images/top/top1_2imgBg.webp") center center repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 0 0;
  text-align: center;
  /* font-size:10px */
}

.no-webp .three_point .inBox3 {
  background: url("../images/top/top1_2imgBg.png") center center repeat;
}

@media screen and (max-width: 768px) {
  .three_point .inBox3 {
    background: url("../images/top/top1_2imgBg_sp.webp") center center repeat;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0 0;
  }
  .no-webp .three_point .inBox3 {
    background: url("../images/top/top1_2imgBg_sp.png") center center repeat;
  }
}
.three_point .inBox3 .inner {
  width: auto;
  max-width: none;
  display: block;
  position: relative;
}

@media screen and (max-width: 768px) {
  .three_point .inBox3 .inner {
    padding: 0 30px 60px;
  }
}
.three_point .inBox3 .inner .mini {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 600px;
  -webkit-transform: translate(-65%, 50px);
          transform: translate(-65%, 50px);
}

@media screen and (max-width: 768px) {
  .three_point .inBox3 .inner .mini {
    width: 90%;
    text-align: left;
    left: 52%;
    -webkit-transform: translate(-50%, 120px);
            transform: translate(-50%, 120px);
  }
}
.three_point .inBox3 .inner .mini .tx_we {
  padding: 30px 30px 0 0 !important;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .three_point .inBox3 .inner .mini .tx_we {
    padding: 10px 0 0 0 !important;
    text-align: left;
  }
}
.three_point .inBox3 .mini {
  line-height: 180%;
}

.mv .mainSlide.flickity-enabled.is-draggable {
  height: 450px;
}

@media screen and (max-width: 768px) {
  .mv .mainSlide.flickity-enabled.is-draggable {
    height: 360px;
  }
  .mv .mainSlide.flickity-enabled.is-draggable .slide {
    height: 350px;
  }
  .mv .mainSlide .flickity-slider {
    top: 0px;
  }
  .mv .mainSlide .slide .mainimg {
    margin-left: auto;
    margin-right: auto;
  }
  /* for iPhone */
  .mv .mainSlide .slide figure picture,
  .mv .mainSlide .slide picture {
    height: 350px;
    position: relative;
    top: 0;
    left: 0;
  }
  .mv .mainSlide .slide figure picture source,
  .mv .mainSlide .slide picture source {
    position: relative;
    top: 0;
    left: 0;
  }
  .mv .mainSlide .slide figure .btnArea picture,
  .mv .mainSlide .slide figure .btnArea picture source,
  .mv .mainSlide .slide .btnArea picture,
  .mv .mainSlide .slide .btnArea picture source {
    position: relative;
    top: 0;
    left: 0;
  }
}
#content .contactBnr {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  #content .contactBnr {
    padding: 60px 0;
  }
}
/* 
* 上部CTAボタン
*/
#content .cta_wrap dl {
  position: relative;
  margin: 0 auto;
  width: 800px;
  background-color: #fff0c8;
  border-radius: 20px;
  color: #42210b;
}

#content .cta_wrap dt {
  font-weight: bold;
  font-size: 18px;
  padding: 25px 23px 12px;
  text-align: center;
  background: NONE;
}
#content .cta_wrap dt span::before, #content .cta_wrap dt span::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-bottom: 2px solid #42210b;
}
#content .cta_wrap dt span::before {
  margin-right: 0.5em;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
}
#content .cta_wrap dt span::after {
  margin-left: 0.5em;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}

#content .cta_wrap dd {
  padding: 12px 23px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#content .cta_wrap dd .bytel {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
#content .cta_wrap dd .byemail {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

#content .cta_wrap dd a {
  text-decoration: none;
  color: #fff;
}

#content .cta_wrap .bytel .t_l {
  font-size: 35px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}
#content .cta_wrap .bytel .t_l .dw05_tx {
  display: none;
}
#content .cta_wrap .bytel .t_l figure {
  margin-right: 5px;
}
#content .cta_wrap .bytel .t_l .number {
  color: #42210b;
  font-weight: 800;
  background: url("../images/lp/icon_freedial_brown.webp") left center no-repeat;
  background-size: 47px;
  padding-left: 57px;
}
#content .cta_wrap .bytel .note {
  font-size: 12px;
  padding: 0;
}

#content .cta_wrap .byemail .cta_btn {
  display: block;
  background-color: var(--main-key-color);
  border-bottom: 3px solid #dc3246;
  border-radius: 17px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.9px;
  text-decoration: none;
  padding: 10px 0;
}
#content .cta_wrap .byemail .cta_btn .innerwrap {
  font-size: 18px;
  display: block;
  /* width: calc(9em + 40px); */
  width: 11em;
  margin: 0 auto;
  background: url("../images/lp/mail_ico.png") left center no-repeat;
  background-size: 30px;
  padding-left: 40px;
}
#content .cta_wrap .byemail .cta_btn .innerwrap .text {
  display: block;
  font-size: 18px;
}
#content .cta_wrap .byemail .cta_btn .innerwrap .note {
  display: block;
  font-size: 12px;
}

#content .cta_wrap .btn_shiny {
  position: relative;
  overflow: hidden;
}

#content .cta_wrap .btn_shiny::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  -webkit-transform: scale(2) rotate(20deg);
          transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#content .cta_wrap .byemail .btn_shiny::after {
  /* アニメーション */
  -webkit-animation-name: shiny;
          animation-name: shiny;
}
@-webkit-keyframes shiny {
  0% {
    left: -20%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@media (max-width: 768px) {
  #content .cta_wrap dl {
    width: calc(100% - 30px);
    background-color: transparent;
  }
  #content .cta_wrap dt {
    padding: 0;
    font-size: 14px;
    /* letter-spacing: 1.6px; */
    text-align: center;
  }
  #content .cta_wrap dd {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
  #content .cta_wrap dd .bytel .t_l {
    font-size: 15px;
    background-color: var(--main-key-color);
    border-radius: 30px;
    border-bottom: 3px solid #dc3246;
    width: 100%;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    pointer-events: auto;
  }
  #content .cta_wrap dd .bytel .t_l .dw05_tx {
    color: #fff;
    display: inline-block;
    background: url("../images/lp/icon_tel_circle.webp") left center no-repeat;
    background-size: 25px;
    padding: 5px 0;
    padding-left: 30px;
    padding-right: 10px;
  }
  #content .cta_wrap dd .bytel .t_l .number {
    color: #fff;
    font-size: 15px;
    background-image: url("../images/lp/fd.png");
    background-size: 20px;
    padding: 5px 0;
    padding-left: 25px;
  }
  #content .cta_wrap dd .bytel .note {
    font-size: 12px;
    text-align: center;
  }
  #content .cta_wrap dd .byemail {
    margin-top: 30px;
  }
  #content .cta_wrap dd .byemail .cta_btn {
    padding: 0;
    margin: 0;
  }
  #content .cta_wrap dd .byemail .cta_btn .innerwrap {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 0;
    background: none;
  }
  #content .cta_wrap dd .byemail .cta_btn .innerwrap .text {
    display: block;
    text-align: center;
    font-size: 14px;
    padding: 0.75em 0;
  }
  #content .cta_wrap dd .byemail .cta_btn .innerwrap .text::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../images/lp/mail_ico.png") left center no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
  }
  #content .cta_wrap dd .byemail .cta_btn .innerwrap .note {
    display: block;
    width: calc(100% - 6px);
    margin-left: auto;
    margin-right: auto;
    padding: 0.25em 0;
    background-color: #FFF;
    color: var(--main-key-color);
    text-align: center;
    font-size: 16px;
    border-radius: 0 0 15px 15px;
  }
  #content .cta_wrap .bytel .btn_shiny::after {
    /* アニメーション */
    -webkit-animation-name: shiny;
            animation-name: shiny;
  }
}
#content .add-limited-campaign-info + .contactBnr {
  padding-top: 0;
}
