/*base     ======================================
フォントや文字色、ベースカラーなど
=================================================*/
html {
  font-size: 62.5%;
  /*10px*/
}
body {
  background-color: #fff;
  color: #231815;
  letter-spacing: 0.1rem;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    background-color: #9D2125;
}
a, a:link, a:hover, a:active, a:visited {
  display: block;
  border: none;
  color: #231815;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  width: 100%;
  line-height: 0;
  image-rendering: -webkit-optimize-contrast;
  height: auto;
}
.hover a:hover {
  opacity: 0.7;
}
.pc {
  display: none !important;
}
@media screen and (min-width:769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

/*layout   ======================================
header、footer、hamburger など
=================================================*/
.container {
  margin: auto;
  max-width: 1000px;
  width: 100%;
  overflow-x: hidden;
}
/*横幅フル*/
.container--wfull {
  max-width: 100% !important;
  width: 100% !important;
}
/*左右余白アリ*/
.content {
  width: calc(100% - 40px);
  max-width: 900px;
  margin: auto;
}
/*左右余白ナシ*/
.content--pdLess {
  max-width: 1000px !important;
  width: 100%;
}
/*スマホの時のみ左右余白ナシ*/
.content--pdLess--sp {
  max-width: 100%;
  width: 100%;
}
.posi--r {
  position: relative;
  width: 100%;
}
.posi--a {
  position: absolute;
}
.posi--fix {
  position: fixed;
}
.columns {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.justify-content_c {
  justify-content: center;
}
.justify-content_l {
  justify-content: left;
}
.align-items_c {
  align-items: center;
}
.column2 {
  width: 48.5%;
}
.column3 {
  width: 33%;
}
.column2--pc3 {
  margin-top: 2%;
  width: 48%;
}
.column2--pc5 {
  margin-top: 3%;
  width: 48.5%;
}
.column3--pc5 {
  margin-top: 3%;
  width: 31.5%;
}
.column3--pc6 {
  margin-top: 3%;
  width: 31%;
}
.column1--pc3 {
  margin: auto;
  width: 70%;
}

@media all and (min-width:769px) {
  .content {
    width: calc(100% - 60px);
  }
  /*左右余白ナシ*/
  .content--pdLess {
    margin: auto;
    max-width: 1000px;
    width: 100%;
  }
  /*スマホの時のみ左右余白ナシ*/
  .content--pdLess--sp {
    width: calc(100% - 40px);
    max-width: 900px;
    margin: auto;
  }
  .column1--pc2 {
    margin-top: 2%;
    margin-right: 2%;
    width: calc(98%/2);
  }
  .column1--pc2:nth-child(even) {
    margin-right: 0%;
  }
  .column1--pc3 {
    width: calc(96%/3);
  }
  .column2--pc3 {
    margin-top: 2%;
    width: 31%;
  }
  .nav .columns::after {
    display: block;
    width: 31%;
    content: "";
  }
  .column2--pc5, .column3--pc5 {
    margin-top: 3%;
    width: 18.5%;
  }
  .column3--pc6 {
    width: 15.5%;
  }
}

/*header*/
.header_logo a:hover {
  opacity: 1;
}
.header_logo a:hover img {
  opacity: 1;
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #000;
}
.header_inner {
  position: relative;
  z-index: 100;
  display: table;
  margin: auto;
  padding: 6px 0 3px 8px;
  max-width: 1300px;
  width: 100%;
}
.header_logo {
  display: table-cell;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
}
.header_logo a {
  display: inline-block;
}
.header_logo img {
  margin: 0;
  width: auto;
  height: 50px;
}

@media all and (min-width:769px) {
  .header_logo {
    text-align: center;
  }
  .header_logo img {
    margin: auto;
    width: auto;
    height: 58px;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  width: 65px;
  height: 65px;
  cursor: pointer;
  background-color: #FFF;
  border-radius: 100px;
  margin:0;
  position: relative;
  border: 4px solid #9D2125;
  box-shadow: 
  inset 1px 1px 2px 2px rgba(0, 0, 0, 0.5),
  2px 2px 5px 2px rgba(0, 0, 0, 0.5);
}

.hamburger::before {
  content: 'メニュー';
  position: absolute;
  font-size: 9px;
  top:7px;
  left:50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 700;
}

.hamburger span {
  position: absolute;
  left: 16px;
  width: 26px;
  height: 3px;
  background-color: #000;
  transition: all 0.6s;
}
.hamburger__lineTop {
  top: 24px;
}
.hamburger__lineCenter {
  top: 32px;
}
.hamburger__lineBottom {
  top: 40px;
}

.overlay {
  position: fixed;
  top: -100vh;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.overlay .inner {
  display: block !important;
  margin-top: 100px;
  max-width: 660px;
}
.inner_sp_anchor {
  background: #f08300;
}

/* メニューが開いた時のCSS */
.nav-open .hamburger__lineTop {
  top: 32px;
  transform: rotate(45deg);
}
.nav-open .hamburger__lineCenter {
  left: 50%;
  width: 0;
}
.nav-open .hamburger__lineBottom {
  top: 32px;
  transform: rotate(-45deg);
}
.nav-open .hamburger::before {
  content: '閉じる';
  position: absolute;
  font-size: 9px;
  top:7px;
  left:50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 700;
}
.nav-open .overlay {
  top:0;
  z-index: 99;
  visibility: visible;
  overflow: hidden;
  opacity: 1;
  background-color: #9D2125;
  background-size: cover;
  background-position: left top;

}
.nav-open .overlay .content {
  max-width: 480px;
}

.overlay .side_r_title{
  margin-left: 10%;
  width: 70%;
}

.overlay .side_r_title2{
  margin-left: 10%;
  margin-top: 10%;
  width: 70%;
}

.hamburger_fixed{
  position: fixed;
  top:20px;
  right:1%;
  z-index: 999;
}
/*footer*/
footer {
  padding-bottom: 40px;
}
@media all and (max-width: 768px) {
  footer {
    padding-bottom: 80px;
  }
}

/*component =====================================
サイト内で何度も使いまわしたいもの(btnや各ブロックのタイトルなど)
=================================================*/
/*画像ボタン*/
a.btn--img:hover, button.btn--img:hover, .modal_btn:hover, .modal_btn:hover img {
  opacity: .7;
  cursor: pointer;
  transition: 0.5s;
}

.info img:hover {
  opacity: 0.7;
}

.btn_nav::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 80px;
  height: 90%;
  transform: scale(1.5) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 5s;
  animation-delay: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.btn_nav:hover {
  background-color: rgba(255, 255, 255, .1);
  background-repeat: no-repeat;
  margin: 5px 0 0px;
}

a.btn, button.btn {
  margin: auto;
  padding: 5px 0;
  max-width: 500px;
  width: 80%;
  border: 1px solid #FFF;
  border-radius: 5px;
  background-color: #FFF;
  color: #004DA0;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}
a.btn:hover, button.btn:hover {
  border: 1px solid #004DA0;
  background-color: #004DA0;
  color: #FFF;
  transition: 0.3s;
}

@media all and (min-width:769px) {
  a.btn, button.btn {
    padding: 8px 0;
    max-width: 500px;
    width: 60%;
    font-size: 1.4rem;
  }
}

/*ボタン 共通デフォルト 赤いボタン テキスト白*/
.button {
  position: relative;
  max-width: 430px;
  width: 100%;
  text-align: center;
  margin: 0 auto !important;
}
.button a {
  display: block;
  height: 40px;
  border: 2px #ba1b21 solid;
  border-radius: 10px;
  background-image: linear-gradient(to bottom, #e74a36, #ca0810, #8d0c0b 90%, #63140a);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 34px;
  -webkit-filter: drop-shadow(1px 1px 5px #999);
  filter: drop-shadow(1px 1px 5px #999);
  transition: 0.5s;
  transform: rotate(0.05deg);
  letter-spacing: 0rem;
  padding: 0 10px;
  margin: 5px 0;
}
.button a:hover {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  transition: 0.4s;
  margin: 10px auto 0px;
}
.button:after {
  position: absolute;
  top: 30%;
  right: 2%;
  z-index: 9;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/ico_arrow@2x.png) no-repeat;
  background-size: 100% 100%;
  content: "";
}
@media screen and (min-width: 769px) {
  .button {
    cursor: pointer;
  }
  .button a {
    height: 70px;
    font-size: 24px;
    line-height: 64px;
    font-weight: bold;
    padding: 0 100px;
  }
  .button:after {
    position: absolute;
    top: 27px;
    right: 2%;
    z-index: 9;
    width: 16px;
    height: 18px;
    background-size: 100% 100%;
    content: "";
  }
}
/* map用*/
.button0 {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto !important;
}
.button0 a {
  display: block;
  height: 40px;
  border: 2px #ba1b21 solid;
  border-radius: 10px;
  background-image: linear-gradient(to bottom, #e74a36, #ca0810, #8d0c0b 90%, #63140a);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 34px;
  -webkit-filter: drop-shadow(1px 1px 5px #999);
  filter: drop-shadow(1px 1px 5px #999);
  transition: 0.5s;
  transform: rotate(0.05deg);
  letter-spacing: 0rem;
  padding: 0 10px;
  margin: 5px 0;
}
.button0 a:hover {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  transition: 0.4s;
  margin: 10px auto 0px;
}
.button0:after {
  position: absolute;
  top: 30%;
  right: 2%;
  z-index: 9;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/ico_arrow@2x.png) no-repeat;
  background-size: 100% 100%;
  content: "";
}
@media screen and (min-width: 769px) {
  .button0 {
    cursor: pointer;
  }
  .button0 a {
    height: 70px;
    font-size: 24px;
    line-height: 64px;
    font-weight: bold;
    padding: 0 100px;
  }
  .button0:after {
    position: absolute;
    top: 27px;
    right: 2%;
    z-index: 9;
    width: 16px;
    height: 18px;
    background-size: 100% 100%;
    content: "";
  }
}

/*??*/
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004DA0;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 3.3rem;
}
.title:before, .title:after {
  flex-grow: 1;
  border-top: 15px solid #004DA0;
  content: "";
}
.title:before {
  margin-right: 20px;
}
.title:after {
  margin-left: 20px;
}
@media all and (min-width:769px) {
  .title {
    letter-spacing: 0.2rem;
    font-weight: 700;
    font-size: 3.7rem;
  }
  .title:before, .title:after {
    flex-grow: 1;
    border-top: 20px solid #004DA0;
    content: "";
  }
  .title:before {
    margin-right: 25px;
  }
  .title:after {
    margin-left: 25px;
  }
}

.copyright {
  letter-spacing: 0.1rem;
  font-size: 1rem;
  line-height: 1.4;
}

/*project  ======================================
各ブロックごとのスタイルを指定
=================================================*/
/*動画*/
.youtube {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* bg */
.bgColor--w,
.bgColor--white {
  background: #FFFFFF !important;
}
.bgColor--blue {
  background: url("../images/common/bg_blue.webp?20250728") no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}

/* map */
.bg--map {
  background: url("../images/common/bg_map.webp?20251112") no-repeat center top /cover;
}

/* SHOP LIST */
.map__bg--sp {
  background-color: #9fa0a0;
}
.accordion_btn_sp {
  margin: auto;
  padding: 10px;
  width: 45%;
}
.accordion.close {
  display: none;
}
@media all and (min-width:769px) {
  .map__title_bg {
    padding-bottom: 15px;
    background-image: url(../images/common/map_bg_pc.png);
    background-size: 100% 100%;
  }
  .accordion_btn {
    bottom: -5px;
    left: 38.6%;
    width: 100%;
  }
}
.accordion {
  cursor: pointer;
}
.accordion--open {
  display: none;
  width: 100%;
  height: auto;
  background: #fff;
}

/* SHOP LIST */
/*PCのときのみ画像2つ横並びになるとき */
.column1--pcColumn2 {
  width: 100%;
}
.column1__pcColumn2--space {
  width: 100%;
}
@media screen and (min-width:769px) {
  .column1--pcColumn2 {
    max-width: 500px;
    width: 50%;
  }
  #event .column1--pcColumn2, #zrv .column1--pcColumn2 {
    width: 48%;
  }
  .column1__pcColumn2--space {
    width: 48%;
  }
  .columns.fukushima li:nth-child(1) {
    order: 1;
  }
  .columns.fukushima li:nth-child(2) {
    order: 3;
  }
  .columns.fukushima li:nth-child(3) {
    order: 5;
  }
  .columns.fukushima li:nth-child(4) {
    order: 7;
  }
  .columns.fukushima li:nth-child(5) {
    order: 9;
  }
  .columns.fukushima li:nth-child(6) {
    order: 11;
  }
  .columns.fukushima li:nth-child(7) {
    order: 13;
  }
  .columns.fukushima li:nth-child(8) {
    order: 15;
  }
  .columns.fukushima li:nth-child(9) {
    order: 2;
  }
  .columns.fukushima li:nth-child(10) {
    order: 4;
  }
  .columns.fukushima li:nth-child(11) {
    order: 6;
  }
  .columns.fukushima li:nth-child(12) {
    order: 8;
  }
  .columns.fukushima li:nth-child(13) {
    order: 10;
  }
  .columns.fukushima li:nth-child(14) {
    order: 12;
  }
  .columns.fukushima li:nth-child(15) {
    order: 14;
  }
  .columns.fukushima li:nth-child(16) {
    order: 16;
  }
  .columns.miyagi li:nth-child(1) {
    order: 1;
  }
  .columns.miyagi li:nth-child(2) {
    order: 3;
  }
  .columns.miyagi li:nth-child(3) {
    order: 5;
  }
  .columns.miyagi li:nth-child(4) {
    order: 7;
  }
  .columns.miyagi li:nth-child(5) {
    order: 9;
  }
  .columns.miyagi li:nth-child(6) {
    order: 11;
  }
  .columns.miyagi li:nth-child(7) {
    order: 13;
  }
  .columns.miyagi li:nth-child(8) {
    order: 15;
  }
  .columns.miyagi li:nth-child(9) {
    order: 17;
  }
  .columns.miyagi li:nth-child(10) {
    order: 2;
  }
  .columns.miyagi li:nth-child(11) {
    order: 4;
  }
  .columns.miyagi li:nth-child(12) {
    order: 6;
  }
  .columns.miyagi li:nth-child(13) {
    order: 8;
  }
  .columns.miyagi li:nth-child(14) {
    order: 10;
  }
  .columns.miyagi li:nth-child(15) {
    order: 12;
  }
  .columns.miyagi li:nth-child(16) {
    order: 14;
  }
  .columns.miyagi li:nth-child(17) {
    order: 16;
  }
  .columns.miyagi li:nth-child(18) {
    order: 18;
  }
  .columns.yamagata li:nth-child(1) {
    order: 1;
  }
  .columns.yamagata li:nth-child(2) {
    order: 3;
  }
  .columns.yamagata li:nth-child(3) {
    order: 5;
  }
  .columns.yamagata li:nth-child(4) {
    order: 7;
  }
  .columns.yamagata li:nth-child(5) {
    order: 2;
  }
  .columns.yamagata li:nth-child(6) {
    order: 4;
  }
  .columns.yamagata li:nth-child(7) {
    order: 6;
  }
  .columns.yamagata li:nth-child(8) {
    order: 8;
  }
}

.shop__list--btn01 {
  position: relative;
  z-index: 9;
  margin: auto;
  margin-bottom: 10px;
  padding: 1px 25px 1px 8px;
  width: 100%;
  border-radius: 13px;
  background: #E5C9AA;
  color: #000;
  font-size: 12px;
  font-family: 'M PLUS 1p', sans-serif;
  line-height: 40px;
  transition: 0.5s;
  transform: rotate(0.05deg);
}
@media screen and (min-width:769px) {
  .shop__list--btn01 {
    margin: auto;
    margin-bottom: 12px;
    max-width: 450px;
    width: 95%;
    font-size: 25px;
    line-height: 38px;
  }
}
.shop__list--btn01 a {
  color: #000;
  transition: 0.5s;
}
.shop__list--btn01:after {
  position: relative;
  position: absolute;
  top: 33%;
  right: 2%;
  z-index: 9;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/arrow_shop.webp);
  background-size: 100% 100%;
  content: "";
  transition: 0.5s;
}
.shop__list--btn01:hover a {
  color: #000;
  transition: 0.6s;
}
.shop__list--btn01:hover:after {
  background-image: url(../images/common/arrow_shop.webp);
  transition: 0.6s;
}
.shop__list {
  padding: 20px 0 15px;
  width: 100%;
}
@media all and (min-width:769px) {
  .shop__list {
    margin: auto;
    max-width: 910px;
    width: 100%;
  }
}

.link_btn {
  position: relative;
  margin: auto;
  max-width: 523px;
  width: 90%;
  text-align: center;
}
.link_btn a {
  display: block;
  padding: 5px 0;
  width: 100%;
  border: 2px #fcd15b solid;
  border-radius: 15px;
  background: -moz-linear-gradient(top, #fffdf7, #fbd65c, #f9be00);
  background: -webkit-linear-gradient(top, #fffdf7, #fbd65c, #f9be00);
  background: linear-gradient(to bottom, #fffdf7, #fbd65c, #f9be00);
  color: #231815;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
}
.link_btn:after {
  position: relative;
  position: absolute;
  top: calc(50% - 9px);
  right: 10px;
  z-index: 9;
  content: url(../images/common/sp/link_btn_arrow.png);
}
@media screen and (min-width: 601px) and (max-width: 1000px) {
  .link_btn {
    max-width: 526px;
    width: 52.6%;
  }
  .link_btn a {
    padding: 15px 0;
    font-weight: bold;
    font-size: 20px;
  }
  .link_btn:after {
    top: calc(50% - 13px);
    right: 10px;
    content: url(../images/common/pc/link_btn_arrow.png);
  }
}
@media screen and (min-width: 1001px) {
  .link_btn {
    max-width: 526px;
    width: 52.6%;
  }
  .link_btn a {
    padding: 10px 0;
    font-size: 24px;
    line-height: 60px;
  }
  .link_btn:after {
    top: calc(50% - 13px);
    right: 10px;
    content: url(../images/common/pc/link_btn_arrow.png);
  }
}

/*shop__list*/
.shop__list {
  width: 100%;
}
@media all and (min-width:769px) {
  .shop__list {
    margin: auto;
    max-width: 910px;
    width: 100%;
  }
}

.map__close {
  margin: auto;
  padding: 5px 0;
  width: 90%;
  border-radius: 15px;
  background: #9e9e9f;
  color: #fff;
  text-align: center;
}
@media screen and (min-width:769px) {
  .map__close {
    padding: 10px 0;
    width: 60%;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .shop__title {
    width: 60%;
    text-align: left;
    font-size: 1.7rem;
    font-size: 12px;
  }
  .shop__text {
    width: 40%;
    text-align: right;
  }
}
@media screen and (min-width:769px) and (max-width: 768px) {
  .shop__title {
    width: 60%;
    text-align: left;
    font-size: 1.4rem;
  }
  .shop__text {
    min-width: 40%;
    text-align: right;
    font-size: 11px;
  }
}
@media screen and (min-width:769px) {
  .shop__title {
    width: 60%;
    text-align: left;
    font-size: 1.7rem;
  }
  .shop__text {
    width: 40%;
    text-align: right;
    font-size: 1.3rem;
  }
}
.shop__title span {
  display: inline-block;
  margin: -1px 4px 0 0;
  padding: 1px 2px 0px 0px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #e73820;
  color: #fff;
  text-align: center;
  text-align: center;
  letter-spacing: -0.5px;
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
}
@media screen and (min-width:769px) {
  .shop__title span {
    display: inline-block;
    margin: -1px 5px 4px 0;
    padding: 1px 1px 0px 0px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #e73820;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
    font-weight: 800;
    font-size: 12px;
    line-height: 22px;
  }
}
.shop__title span.blue {
  background: #00a0e9;
}

/*sensing*/
.ico_sensing1, .ico_sensing2 {
  top: 12%;
  left: 7%;
  width: 19%;
}
.ico_sensing3 {
  top: 19.2%;
  left: 7%;
  width: 35%;
}
.ico_sensing4 {
  top: 28.2%;
  left: 6.5%;
  width: 35%;
}
.ico_sensing5 {
  top: 16.2%;
  left: 7.5%;
  width: 35%;
}
.ico_sensing6 {
  top: 13.5%;
  left: 8.8%;
  width: 35%;
}


/*modal*/
.modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  width: 100%;
  height: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 5, 0.8);
  cursor: pointer;
}
.modal_box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: calc(100vh - 30%);
  height: calc(100svh - 30%);
  height: 70vh !important;
}
@media screen and (max-height: 785px) {
  .modal_box {
    height: 80vh !important;
  }
}
.modal_inner {
  position: absolute;
  margin-top: 30px;
  top: 5%;
  right: 50%;
  z-index: 2;
  overflow: auto;
  padding: 5px;
  width: calc(100% - 30px);
  height: calc(100svh - 40%);
  background-color: #fff;
  transform: translate(50%, 0%);
}
.info_inner {
  padding: 5px;
  max-width: calc(100% - 16px);
  height: auto;
}
.popup--bg {
  display: block;
  margin: auto;
  max-width: 700px;
}
.info_inner .popup--bg {
  max-width: 100%;
  height: auto;
}
.modal_close {
  position: fixed;
  margin-top: -20px;
  right: 7px;
  z-index: 1000;
  width: 39px;
  height: 39px;
  color: #ccc;
  font-size: 5rem;
  cursor: pointer;
}
.modal_close p {
  display: block;
  text-align: center;
  line-height: 39px;
}
.info__tel {
  top: 23.7%;
  right: 50%;
  right: 50%;
  width: 93.8%;
  transform: translateX(50%);
}
.info__back {
  right: 50%;
  right: 50%;
  bottom: 2.2%;
  width: 80.7%;
  transform: translateX(50%);
}
/*モーダル表示時に背景を固定する*/
body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

@media all and (min-width:769px) {
  .modal_btn_info_InfectionControl {
    bottom: 9%;
    width: 57%;
  }
  .modal_inner {
    position: absolute;
    top: 55px;
    right: 50%;
    z-index: 2;
    overflow: auto;
    padding: 5px 15px 20px 15px;
    max-width: 650px;
    height: calc(100vh - 390px);
    background-color: #fff;
    transform: translate(50%, 0%);
  }
  .info_inner {
    padding: 10px;
    max-width: 600px;
    width: 80%;
    height: auto;
  }
  .info_inner .popup--bg {
    max-width: none;
  }
  .modal_close {
    top: -20px;
    right: 28px;
    width: 50px;
    height: 50px;
    font-size: 7.2rem;
  }
  .modal_close p {
    line-height: 50px;
  }
  .modal_info_InfectionControl .modal_close {
    top: 0px;
  }
}
/*popup内のボタン位置*/
.modal_inner_newnwgn {
  top: 20%;
}
.btn_nwgntsrSite {
  top: 75%;
  left: 11%;
  width: 33%;
}
.btn_tsrSite {
  top: 7.4%;
  left: 76%;
  width: 20%;
}
.btn_tsrSite2 {
  top: 40%;
  left: 78%;
  width: 20%;
}
@media screen and (min-width:769px) {
  .modal_inner_newnwgn {
    top: 5%;
  }
}
p.pop_days {
  text-align: right;
  font-size: 10px;
}
@media screen and (min-width:769px) {
  p.pop_days {
    margin: auto;
    max-width: 900px;
    width: 90%;
    font-size: 12px;
  }
}

/*追従リンク*/
.floatingMenu {
  position: fixed;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  border: none;
}
.floatingMenu a {
  display: block;
  padding: 0;
  width: calc(100% / 2);
  border: none;
}
.floatingMenu a.btn_floatingMenu_instagram{
  display: block;
  padding: 0;
  width: 100%;
  border: none;
}

.floatingMenu a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

@media all and (min-width:769px) {
  .floatingMenu{
    background-color:rgba(255, 255, 255, 0.8);
  }
  .floatingMenu .columns{
    max-width: 769px;
    margin: auto;
  }

  .floatingMenu a {
  display: block;
  padding: 0;
  width: calc(100% / 3);
  border: none;
}
.floatingMenu a.btn_floatingMenu_instagram{
  width: calc(100% / 3);
}
}


#subscription .accordion_btn {
  position: relative;
  left: 0;
  z-index: 1;
}





/*animation =====================================
画像遅延表示など動きの設定
=================================================*/
/*loading*/
.loader-wrap {
  position: fixed;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: #FFF;
}
.loader, .loader:after {
  width: 5em;
  height: 5em;
  border-radius: 50%;
}
.loader {
  position: relative;
  margin: 60px auto;
  border-top: 0.8em solid rgba(230, 230, 230, 0.2);
  border-right: 0.8em solid rgba(230, 230, 230, 0.2);
  border-bottom: 0.8em solid rgba(230, 230, 230, 0.2);
  border-left: 0.8em solid #ddd;
  text-indent: -9999em;
  font-size: 10px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loader 1.1s infinite linear;
  animation: loader 1.1s infinite linear;
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media all and (min-width:769px) {
  .loader, .loader:after {
    width: 10em;
    height: 10em;
    border-radius: 50%;
  }
  .loader {
    margin: 60px auto;
    border-top: 1.1em solid rgba(230, 230, 230, 0.2);
    border-right: 1.1em solid rgba(230, 230, 230, 0.2);
    border-bottom: 1.1em solid rgba(230, 230, 230, 0.2);
    border-left: 1.1em solid #ddd;
    font-size: 10px;
  }
}
/*TOPへ戻る*/
.page_top {
  position: fixed;
  right: 5px;
  bottom: 30vw;
  z-index: 98;
  width: 30px;
  height: 30px;
  border: 1px solid #888;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.6;
}
.page_top a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  text-decoration: none;
}
.page_top a::before {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 27px;
  color: #888;
  content: '\f106';
  text-align: center;
  font-weight: 900;
  font-size: 25px;
  font-family: 'Font Awesome 5 Free';
}

@media all and (min-width:769px) {
  .page_top {
    right: 10px;
    bottom: 89px;
    width: 40px;
    height: 40px;
  }
  .page_top a {
    width: 40px;
    height: 40px;
  }
  .page_top a::before {
    top: -20px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 27px;
    font-size: 28px;
  }
}

/*fadein*/
.fadein {
  opacity: 0;
}
.fadein--show {
  -webkit-animation: fadein--show .5s;
  animation: fadein--show .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein--show {
  0% {
    opacity: 0.7;
    transform: translate(0%, -2%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes fadein--show {
  0% {
    opacity: 0.7;
    transform: translate(0%, -2%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
.floatingMenu.fadein--show {
  -webkit-animation: fadein--floatingMenu .3s;
  animation: fadein--floatingMenu .3s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein--floatingMenu {
  0% {
    opacity: 0.7;
    transform: translate(0%, 10%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes fadein--floatingMenu {
  0% {
    opacity: 0.7;
    transform: translate(0%, 10%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

/* kirari */
.btn_nav {
  background-repeat: no-repeat;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  margin: 0 0 5px;
}
@keyframes shiny {
  0% {
    left: -10%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}


/*らくまる 続きを読む*/
.text_wrapper {
  position: relative;
  margin-bottom: 50px;
}
.text {
  overflow: hidden;
  padding-bottom: 50px;
  height: 100px;
}
.show_more, .show_more2 {
  position: absolute;
  bottom: -25px;
  left: 0%;
  padding-top: 60px;
  width: 100%;
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgba(76, 165, 53, 1) 50%);
  color: #fff;
  text-align: center;
  letter-spacing: 0.4rem;
  font-weight: bold;
  font-size: 2rem;
  line-height: 57px;
  cursor: pointer;
  transition: bottom 0.2s;
}
.active {
  bottom: -30px;
  background: none;
  color: rgba(76, 165, 53, 1);
}
@media all and (min-width:769px) {
  .text {
    overflow: hidden;
    padding-bottom: 50px;
    height: 150px;
  }
}
.mainte_title_ico {
  top: -4%;
  left: 79%;
  width: 22%;
}
@media all and (min-width:769px) {
  .mainte_title_ico {
    top: -10%;
    left: 83%;
    width: 16%;
  }
}
/*utility  ======================================
その他、調整のためのクラスなど
=================================================*/
.w100p {
  width: 100% !important;
}
.w98p {
  margin: auto;
  width: 98% !important;
}
.w96p {
  margin: auto;
  width: 96% !important;
}
.w95p {
  margin: auto;
  width: 95% !important;
}
.w92p {
  margin: auto;
  width: 92% !important;
}
.w90p {
  margin: auto;
  width: 90% !important;
}
.w87p {
  margin: auto;
  max-width: 870px !important;
  width: 87% !important;
}
.w85p {
  margin: auto;
  width: 85% !important;
}
.w80p {
  margin: auto;
  width: 80% !important;
}
.w78p {
  margin: auto;
  width: 78% !important;
}
.w75p {
  margin: auto;
  width: 75% !important;
}
.w70p {
  margin: auto;
  width: 70% !important;
}
.w60p {
  margin: auto;
  width: 60% !important;
}
.w90p--pcw80p {
  margin: auto;
  width: 90% !important;
}
.w80p--pcw100p {
  margin: auto;
  width: 80% !important;
}
.w80p--pcw70p {
  margin: auto;
  width: 80% !important;
}
.w70p {
  margin: auto;
  width: 72% !important;
}
.w62p {
  margin: auto;
  width: 62% !important;
}
.w60p {
  margin: auto;
  width: 65% !important;
}
.w59p {
  margin: auto;
  width: 59% !important;
}
.w55p {
  margin: auto;
  width: 55% !important;
}
.w50p {
  margin: auto;
  width: 50% !important;
}
.w43p {
  margin: auto;
  width: 43% !important;
}
.w40p {
  margin: auto;
  width: 40% !important;
}
.w30p {
  margin: auto;
  width: 30% !important;
}
.w1300 {
  margin: auto;
  max-width: 1300px;
  width: 100% !important;
}
.w1000 {
  margin: auto;
  max-width: 1000px !important;
  width: 100% !important;
}
.w1040 {
  margin: auto;
  max-width: 1300px !important;
  width: 100% !important;
}
.w750 {
  margin: auto;
  max-width: 750px !important;
  width: 100% !important;
}
.w720 {
  margin: auto;
  max-width: 720px !important;
  width: 100% !important;
}
.w680 {
  margin: auto;
  max-width: 680px !important;
  width: 100% !important;
}
.w70psp--w100ppc {
  margin: auto;
  max-width: 433px !important;
  width: 89% !important;
}
.w100psp--w80p {
  margin: auto;
  max-width: 850px !important;
  width: 100% !important;
}
.w100psp--w85p {
  margin: auto;
  max-width: 850px !important;
  width: 100% !important;
}
.w100psp--w90p {
  margin: auto;
  max-width: 900px !important;
  width: 100% !important;
}
.w100psp--w98p {
  margin: auto;
  max-width: 980px !important;
  width: 100% !important;
}
.w100psp--w98p {
  margin: auto;
  max-width: 980px !important;
  width: 100% !important;
}
.w90psp--w100p {
  width: 90%;
  margin: auto;
}
.w35psp--w25p {
  display: flex;
  align-items: center;
  width: 35% !important;
}
.w60psp--w70p {
  width: 60% !important;
}
.w100psp--w80p {
  width: 100% !important;
}
.w90psp--w65p {
  width: 90% !important;
}
@media screen and (min-width:769px) {
  .w100psp--w80p {
    width: 80% !important;
  }
  .w80p--pcw100p {
    margin: auto;
    width: 100% !important;
  }
  .w80p--pcw70p {
  margin: auto;
  width: 70% !important;
  }
  .w100psp--w80p {
    margin: auto;
    width: 80% !important;
  }
  .w100psp--w85p {
    width: 85% !important;
  }
  .w100psp--w90p {
    width: 90% !important;
  }
  .w100psp--w98p {
    width: 97.3% !important;
  }
  .w35psp--w25p {
    width: 25% !important;
  }
  .w60psp--w70p {
    width: 70% !important;
  }
  .w70psp--w100ppc {
    margin: auto;
    max-width: 700px !important;
    width: 100% !important;
  }
  .w90psp--w100p {
    width: 100%;
    margin: auto;
  }
  .w90psp--w65p {
    width: 65% !important;
  }
}
/*margin・padding*/
.m--auto {
  display: block !important;
  margin: auto !important;
}
.mt--s {
  margin-top: 15px !important;
}
.mt--m {
  margin-top: 25px !important;
}
.mt---m {
  margin-top: -25px !important;
}
.mt---l {
  margin-top: -30px !important;
}
.mt--l {
  margin-top: 45px !important;
}
.mb--s {
  margin-bottom: 15px !important;
}
.mb--m {
  margin-bottom: 25px !important;
}
.mb--l {
  margin-bottom: 45px !important;
}
.mb---s {
  margin-bottom: -10px !important;
}
.mb---m {
  margin-bottom: -25px !important;
}
.pt--s {
  padding-top: 15px !important;
}
.pt--m {
  padding-top: 25px !important;
}
.pt--l {
  padding-top: 45px !important;
}
.pt--s__sp {
  padding-top: 5px !important;
}
.pb--s {
  padding-bottom: 15px !important;
}
.pb--m {
  padding-bottom: 25px !important;
}
.pb--l {
  padding-bottom: 45px !important;
}
.pt--3 {
  padding-top: 3px !important;
}
.pt--5 {
  padding-top: 5px !important;
}
.pt--10 {
  padding-top: 10px !important;
}
.pt--15 {
  padding-top: 15px !important;
}
.pb--3 {
  padding-bottom: 3px !important;
}
.pb--5 {
  padding-bottom: 5px !important;
}
.pb--10 {
  padding-bottom: 10px !important;
}
.pb--15 {
  padding-bottom: 15px !important;
}
.pt--mPC {
  padding-top: 1px !important;
}
.mt---2 {
  margin-top: -2px !important;
}
.mt---3 {
  margin-top: -3px !important;
}
.mt---9 {
  margin-top: -9px !important;
}
.mt--3 {
  margin-top: 3px !important;
}
.mt--5 {
  margin-top: 5px !important;
}
.mt--10 {
  margin-top: 10px !important;
}
.mt--15 {
  margin-top: 15px !important;
}
.mb--3 {
  margin-bottom: 3px !important;
}
.mb--5 {
  margin-bottom: 5px !important;
}
.mb--10 {
  margin-bottom: 10px !important;
}
.mb--15 {
  margin-bottom: 15px !important;
}
.ml--3p {
  margin-left: 3% !important;
}
.p--3 {
  padding: 3px;
}
.p--1p {
  padding: 1%;
}
.p--2p {
  padding: 2%;
}
.p--3p {
  padding: 3%;
}
.p--5p {
  padding: 5%;
}
.mt--anchor {
  margin-top: -95px !important;
  padding-top: 95px !important;
}
.pr--10 {
  padding-right: 10%;
}
.pl--10 {
  padding-left: 10%;
}
.pr--7 {
  padding-right: 7%;
}
.pr--5 {
  padding-right: 5%;
}
.pl--5 {
  padding-left: 5%;
}
.pl--1 {
  padding-left: 1%;
}
.pt--m--pc {
  padding-top: 0px !important;
}
.pb--m--pc {
  padding-bottom: 0px !important;
}
.pb--s--sp {
  padding-bottom: 15px !important;
}
@media all and (min-width:769px) {
  .mt--s {
    margin-top: 20px !important;
  }
  .mt--m {
    margin-top: 40px !important;
  }
  .mt---s {
    margin-top: -20px !important;
  }
  .mt---m {
    margin-top: -40px !important;
  }
  .mt---l {
    margin-top: -70px !important;
  }
  .mt--l {
    margin-top: 80px !important;
  }
  .mb--s {
    margin-bottom: 20px !important;
  }
  .mb--m {
    margin-bottom: 40px !important;
  }
  .mb--l {
    margin-bottom: 80px !important;
  }
  .pt--s {
    padding-top: 15px !important;
  }
  .pt--m {
    padding-top: 40px !important;
  }
  .pt--l {
    padding-top: 80px !important;
  }
  .pb--s {
    padding-bottom: 15px !important;
  }
  .pb--m {
    padding-bottom: 40px !important;
  }
  .pb--l {
    padding-bottom: 80px !important;
  }
  .pt--m--pc {
    padding-top: 40px !important;
  }
  .pb--m--pc {
    padding-bottom: 40px !important;
  }
  .pb--s--sp {
    padding-bottom: 0px !important;
  }
}
/*boder*/
.border1 {
  border: 1px solid #000;
}
.border {
  border: 3px solid #000;
}
.border--red {
  border: 3px solid #CA1C1D;
}
.borderTop--red {
  border-top: 5px solid #CA1C1D;
}
.borderBtm--red {
  border-bottom: 5px solid #CA1C1D;
}
.borderTop--bk {
  border-top: 2px solid #888888;
}
.borderBtm--bk {
  border-bottom: 1px solid #000000;
}
.borderBtm--blue {
  border-bottom: 3px solid #3263B5;
}
.borderTop__gry {
  border-top: 1px solid #aaa !important;
}
.borderBtm__gry {
  padding-bottom: 10px;
  border-bottom: 1px solid #888;
}
.borderBtm__gry--bold {
  border-bottom: 20px solid #9F9F9F;
}
.borderTop__gry--bold {
  border-top: 20px solid #9F9F9F;
}
.borderBtm__bk--bold {
  border-bottom: 7px solid #231815;
}
.borderBtm__bk--bold02 {
  border-bottom: 7px solid #231815;
}
.borderBtm__bk--bold03 {
  border-bottom: 20px solid #231815;
}
.borderBtm__white {
  border-bottom: 3px solid #fff;
}
.borderBtm__yellow {
  border-bottom: 5px solid #F8E79F;
}
.borderBtm__green {
  border-bottom: 20px solid #28AD0C;
}
@media screen and (max-width: 768px) {
  .borderBtm__bk--bold03 {
    border-bottom: 7px solid #F8E79F;
  }
}
.borderTop__pink--bold {
  border-top: 20px solid #78ff8c;
  border-image: linear-gradient(90deg, rgba(80, 195, 255, 1) 0%, rgba(120, 255, 140, 1) 100%);
  border-image-slice: 1;
}
@media screen and (min-width: 769px) {
  .borderTop__pink--bold {
    border-top: 30px solid #78ff8c;
    border-image: linear-gradient(90deg, rgba(80, 195, 255, 1) 0%, rgba(120, 255, 140, 1) 100%);
    border-image-slice: 1;
  }
}
.borderTop__bule--bold {
  border-top: 7px solid #004DA0;
}
.borderTop__red--bold {
  border-top: 7px solid #AB0008;
}
.borderTop__bk--bold {
  border-top: 7px solid #231815;
}
.borderBtm__red {
  border-bottom: 2px #ee7800 solid;
}
/*color*/
.bgColor__bk {
  background: #000;
}
.bgColor--gr {
  background: #dcdddd;
}
.bgColor__red02 {
  background: #e50012;
}
.bgColor__w {
  background: #FFF;
}
.bgColor--bule {
  background: #006AB8;
}
.bgColor__yw {
  background: #FFF000;
}
.bgColor__rakumaru {
  background: #E3F5DF;
}

/*font＿color*/
.fontColor--w {
  color: #FFF;
}
.fontColor--gry {
  color: #78828a;
}
.fontColor--red {
  color: #CA1C1D;
}
.fontColor--blue {
  color: #003E8A;
}
.fontColor--grn {
  color: #3DA138;
}
.linkText_red {
  color: #CA1C1D;
  text-decoration: underline;
}
/*font*/
.font--M_PLUS_Rounded {
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  transform: rotateZ(0.03deg);
  /*文字のジャギジャギを直す*/
}

.fontSize--s {
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.fontSize--m {
  font-size: 1.2rem;
  line-height: 1.4;
}
.font--l, .font--l a {
  font-size: 1.7rem;
  line-height: 1.4;
}
@media all and (min-width:769px) {
  .fontSize--s {
    letter-spacing: 0.2px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .fontSize--m {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .fontSize--m--pc {
    font-size: 1.5rem;
  }
}
.lineHight1 {
  line-height: 1;
}
.lineHight14 {
  line-height: 1.4;
}
.letterSpacing02 {
  letter-spacing: 0.2rem;
}
.letterSpacing0 {
  letter-spacing: 0.;
}
.bold {
  font-weight: bold;
}
.textAlign--l {
  text-align: left;
}
.textAlign--r {
  text-align: right;
}
.textAlign--c {
  text-align: center;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.z4 {
  z-index: 4;
}
.shadow {
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
.shadow--l {
  -webkit-filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
}



/*==========================================
 GPS MAP
===========================================*/

@media (min-width: 769px) {
  #map {
    width: 100%;
    height: 80%;
  }

  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
.gm-style > div > div > div > div > div {
  opacity: 0.8;
}

.new__map iframe {
  width: 100%;
  height: 400px;
}
#map {
  width: 100%;
  height: 400px;
}
#map {
  margin-top: -20px;
}
#gpsInfo {
  display: none;
}
.gpsmap {
  display: none;
}
.display {
  display: block !important;
}



/*==========================================
 ADD 2024.04.25
===========================================*/

#newcar .button02-s {
  position: absolute !important;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%,0);
}

/*==========================================
 ADD 2024.06.27
===========================================*/

.freed2 .sensing {
  top: 7%;
  left: 81%;
  width: 17%;
}

.freed3 .sensing {
  top: 7%;
  left: 81%;
  width: 17%;
}

#vezel .sensing {
  width: 22.5%;
  top: 6%;
  right: 4%;
}

#wrv .sensing {
  width: 22.5%;
  top: 10%;
  right: 4%;
}

.civic .sensing {
  width: 18%;
  top: 12%;
  right: 10%;
}

.civic2 .sensing {
  width: 18%;
  top: 8%;
  right: 10%;
}


/*==========================================
 ADD 2024.09.26
===========================================*/

.nbox--sensing .sensing {
  width: 25%;
  bottom: 12%;
  left: 1%;
}

.nvan--sensing01 .sensing {
  width: 23%;
  top: 18%;
  left: 30%;
}

.nvan--sensing02 .sensing {
  width: 25%;
  top: 14%;
  left: 26%;
}

.stepwgn1 .sensing {
  width: 20%;
  top: 20%;
  left: 7%;
}

.stepwgn2 .sensing {
  width: 20%;
  top: 17%;
  left: 7%;
}

.odyssey .sensing {
  width: 20%;
  top: 6%;
  right: 7%;
}

/*==========================================
 ADD 2024.11.23
===========================================*/

.bgColor--black2 {
  background-image: url("../images/common/bg_black_zebra.webp?20241211");
  background-size: 100% 100%;
}
.bg--present2 {
  background-image: url("../images/common/bg_present03.webp?20241211");
  background-position: center;
  background-size: 90% 96%;
  background-repeat: no-repeat;
}
.original_present {
  left: -2%;
  top: -3px;
}
.select_present {
  left: 0;
  top: -5px;
}
@media screen and (min-width: 601px) {
  .select_present {
    top: -10px;
  }
}
.accord--sensing {
  width: 20%;
  top: 7%;
  left: 72%;
}
.new_thum, .new_thum2 {
  max-width: 105%;
  width: 105%;
  margin-left: -1%;
  text-align: left;
}
/* 画像のレスポンシブ対応 */
@media screen and (min-width: 769px) {
  .new_thum {
    max-width: 103.5%;
    width: 103.5%;
    margin-left: -6px;
  }
  .new_thum2 {
    max-width: 102.5%;
    width: 102.5%;
    margin-left: 0px;
  }
}

/*==========================================
 ADD 2024.12.11
===========================================*/
.bg--present3 {
  background-image: url("../images/common/bg_present04.webp?20241211");
  background-position: center;
  background-size: 100% 100%;
}
.bg--credit {
  background-image: url("../images/common/bg_.webp?20241211");
  background-size: 100% 140%;
  background-repeat: no-repeat;
}
.posi--morioka {
  left: 2%;
}
.credit--title {
  position: relative;
  top: -16px;
}
.line--black {
  display: block;
  height: 17px;
  background-color: #3E3A39;
}
.line--yellow {
  display: block;
  height: 20px;
  background-color: #F8BB00;
}
.nvan--finish, .nvan--face {
  position: relative;
}
.nvan--finish:after {
  content: "";
  display: block;
  width: 28%;
  height: 28%;
  background-image: url("../images/common/nvan_thum04_finish.webp?20241211");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 14%;
  left: 77%;
}
.nvan--face:after {
  content: "";
  display: block;
  width: 31%;
  height: 31%;
  background-image: url("../images/common/nvan_thum05_face.webp?20241211");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -8%;
  left: -8%;
}
.kv--thum {
  max-width: 102%;
  width: 102%;
  margin-left: -1%;
  text-align: left;
}
.title--posi {
  top: 4px;
}
.nvane {
  width: 22%;
  bottom: 20.5%;
  left: 8.5%;
}
@media screen and (min-width: 769px) {
  .title--posi {
    top: 8px;
  }
  .credit--title {
    position: relative;
    top: -23px;
  }
}

/* 20250126 ADD */

.btn--special {
  width: 60%;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.nbox--sensing {
  width: 21%;
  bottom: 34.5%;
  left: 21%;
}

.stepwgn--new--sensing1 {
  width: 21%;
  top: 20.5%;
  left: 7.5%;
}

.stepwgn--new--sensing2 {
    width: 21%;
    top: 4.5%;
    left: 44%;
}

.stepwgn--new--sensing3 {
  width: 20%;
  bottom: 88%;
  left: 82%;
}

.stepwgn--sensing {
  width: 21%;
  bottom: 75%;
  left: 7%;
}

.sakatakita--kv {
  margin-top: -39.5%;
  position: relative;
  z-index: 3;
}

/* 20250326 ADD */
.btn--special-1 {
  width: 60%;
  position: absolute;
  bottom: 23%;
  left: 50%;
  transform: translateX(-50%);
}

.bg--pink {
  background-color: #F8CBCD;
}

.nbox-joy--sensing {
  width: 21%;
  bottom: 40.7%;
  left: 5.7%;
}

.none--sensing {
  width: 21%;
  bottom: 25%;
  left: 20.5%;
}

.nwgn--sensing {
  width: 21%;
  bottom: 23%;
  left: 20.5%;
}

.btn--nvan {
  width: 53.5%;
  bottom: 31.5%;
  left: 6%;
}

.wrv--sensing {
  width: 21%;
  bottom: 81.3%;
  left: 5%;
}

.bgColor--blue3 {
  background: url("../images/common/bg_blue2.webp?20250326") no-repeat;
  background-size: 100% 100%;
}

.blue--frame {
  background: url("../images/common/blue_frame.webp?20250326") no-repeat center;
  background-size: 90% 100%;
}

/* 20250424 ADD */
.bgColor--lime {
  background: url("../images/common/bg_lime.webp") no-repeat;
  /* background-position: top center; */
  background-size: 100% 100%;
}

.bgColor--cream {
  background: url("../images/common/bg_cream.webp") no-repeat;
  background-size: 100% 100%;
}

.pl--3 {
  padding-left: 3%;
}

.fit--sensing {
  width: 21%;
  bottom: 75%;
  left: 4.5%;
}

.vezel--sensing {
  width: 21%;
  bottom: 71%;
  left: 5.6%;
}

.pr--15 {
  padding-right: 15%;
}

.pr--3 {
  padding-right: 3%;
}

.bg--sagae {
  background: url("../images/common/bg_sagae01.webp") no-repeat;
  background-size: 100% 100%;
}

.bg--sagae2 {
  background: url("../images/common/bg_sagae02.webp") no-repeat;
  background-size: 100% 100%;
}

.bg--sagae3 {
  background: url("../images/common/bg_sagae03.webp") no-repeat;
  background-size: 100% 100%;
}

/* 20250626 ADD */
.borderTop__red--gold {
  width: 100%;
  height: 7px;
  background: url("../images/common/border_red-gold.webp") no-repeat;
  background-size: 100% 100%;
}

.bgColor--sky {
  background: url("../images/common/bg_sky.webp") no-repeat;
  background-size: 100% 100%;
}

.white--frame {
  background: url("../images/common/white_frame.webp") no-repeat;
  background-size: 100% 100%;
}

.summerEvent_thum01 {
  position: relative;
  width: 105%;
  max-width: 105%;
  left: -2.9%;
}

.bgColor--blue--zebra {
  background: url("../images/common/bg_blue_zebra.webp?20250626") no-repeat;
  background-size: 100% 100%;
}

.btn--usedcar {
  width: 54%;
  bottom: 6.5%;
  left: 24%;
}

.bg_stepwgn_new {
  background: url("../images/common/bg_stepwgn_new.webp?20250626") no-repeat;
  background-size: 100% 100%;
}

.bg_freed_fit {
  background: url("../images/common/bg_freed_fit.webp?20250626") no-repeat;
  background-size: 100% 100%;
}

.bg_nbox {
  background: url("../images/common/bg_nbox.webp?20250626") no-repeat;
  background-size: 100% 100%;
}

.bg_nvane {
  background: url("../images/common/bg_nvane.webp?20250626") no-repeat;
  background-size: 100% 100%;
}

.nvan--sensing {
  width: 21%;
  bottom: 25%;
  left: 20.5%;
}

.zrv--sensing {
  width: 21%;
  top: 14%;
  left: 6.5%;
}


/* 20250728 ADD */
#main {
  width: 100%;
  max-width: 769px;
  margin: auto;
}


.inner {
  display: none;
  max-width: 769px;
  margin: 0 auto;
}

@media all and (min-width: 1000px) {
  .inner {
    display: block;
  }
}

.bg--prelude {
  background-image: url("../images/common/bg_prelude.webp?20250728");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--blue_line {
  background: url("../images/common/bg_blue_line.webp?20251112") no-repeat;
  background-size: 100% 100%;
}

.bg--gray_line {
  background: url("../images/common/bg_gray_line.webp?20250728") no-repeat;
  background-size: 100% 100%;
}

.civic--sensing {
  width: 21%;
  top: 5%;
  left: 7%;
}

.accord--sensing {
  width: 21%;
  top: 4%;
  left: 7%;
}

.bgColor--red--zebra {
  background-image: url("../images/common/bg_red_zebra.webp?20250728");
  background-size: 100% 100%;
}

.none_e--sensing1 {
  width: 22%;
  bottom: 21.5%;
  left: 5.9%;
}
.none_e--sensing2 {
  width: 20%;
  top: 10%;
  right: 4.5%;
}

/* 20250918 いわき正内 */
.iwaki-shonai .bg--gray {
  background-color:#595656;
}
.iwaki-shonai .bg--red {
  background-color:#e50012;
}
.bg--none--iwaki {
  background:#f4e48d url(../images/iwaki-shounaimachi/3_base.webp) repeat-y;
}
.bg--none--iwaki-pre {
  background:#f4e48d url(../images/iwaki-shounaimachi/4_base.webp) repeat-y;
}
.iwaki-shonai .bgColor--w {
  background: #fff;
}

/* 20250925 */
.bg--freed {
  background-image: url("../images/common/bg_freed.webp?20250925");
  background-size: 100% 100%;
}
.bg--yellow_line {
  background: url("../images/common/bg_yellow_line.webp?20250925");
  background-size: 100% 100%;
}
.bg--purple_line {
  background: url("../images/common/bg_purple_line.webp?20250925");
  background-size: 100% 100%;
}
.bg--brown_line {
  background: url("../images/common/bg_brown_line.webp?20250925");
  background-size: 100% 100%;
}
.nvan_thum11 {
  position: relative;
  right: -1%;
}

/* 20251112 */
.bg--present {
  background-image: url("../images/common/bg_present.webp?20251112");
  background-position: center;
  background-size: 100% 100%;
}

.bgColor--red {
  background: url("../images/common/bg_red_line.webp?20251112") no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}

.bg--none {
  background-image: url("../images/common/bg_debut_none_e.webp?20251112");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--tokuten {
  background-image: url("../images/common/bg_nvane_tokuten.webp?20251112");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--nvane {
  background-image: url("../images/common/bg_nvane.webp?20251112");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--nbox {
  background-image: url("../images/common/bg_nbox.webp?20251112");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--suv {
  background-image: url("../images/common/bg_suv.webp?20251112");
  background-repeat: no-repeat;
  background-size: cover;
}

.freed--sensing {
  width: 21%;
  bottom: 70%;
  left: 6.5%;
}

.freed--sensing2 {
  width: 21%;
  bottom: 67%;
  left: 6.5%;
}

.freed--sensing3 {
  width: 21%;
  bottom: 66%;
  left: 6.5%;
}

.slope--sensing {
  width: 21%;
  top: 4.5%;
  right: 34.5%;
}

.slope--sensing2 {
  width: 21%;
  top: 6.5%;
  right: 21.5%;
}

.btn--crv {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}