@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap");
/*---------------------------------------
reset
---------------------------------------*/
body {
  margin: 0;
  padding: 0;
}
/*---------------------------------------
nav
---------------------------------------*/
.disp_sp {
  display: none;
}
.nav_content {
  width: auto;
  max-width: 1160px;
  padding: 15px 20px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav_content h2 a {
  display: block;
  margin-top: 10px;
  width: 110px;
}
.nav_content h2 a img {
  vertical-align: baseline;
}
.p_stan nav {
  background: #000;
}
.p_stan nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.p_stan nav ul li a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  position: relative;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 900;
  white-space: nowrap;
}
.p_stan nav ul li a:hover {
  text-decoration: none;
}
.p_stan nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  margin: auto;
  height: 2px;
  background: #fff;
  bottom: 10px;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p_stan nav ul li a:hover:after {
  width: 75%;
}
.p_stan nav ul li.active a:after {
  content: "";
  position: absolute;
  width: 75%;
  margin: auto;
  height: 2px;
  background: #fff;
  bottom: 10px;
  left: 0;
  right: 0;
}
.p_stan h2 {
  float: left;
  width: inherit;
  margin: 0;
  padding: 0;
  line-height: 2;
  font-size: 20px;
}
.p_stan h2 img {
  width: 110px;
  height: auto;
}
.p_stan ul#g_navi {
  float: right;
}
/*---------------------------------------
loading
---------------------------------------*/
#stan_loading {
  position: fixed;
  background-color: #000;
  width: 100vw;
  height: -webkit-fill-available;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 10000;
  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;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity ease 0.7s;
  transition: opacity ease 0.7s;
}
#stan_loading.is_loading {
  opacity: 1;
}
#stan_loading .logo_area {
  position: relative;
}
#stan_loading .logo_area.logo_area, #stan_loading .logo_area .logo_base_wrap, #stan_loading .logo_area .logo_overlay_wrap, #stan_loading .logo_area .logo_base, #stan_loading .logo_area .logo_overlay {
  width: 100px;
  height: 100px;
  border: none;
}
#stan_loading .logo_area .logo_base_wrap, #stan_loading .logo_area .logo_overlay_wrap {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
}
#stan_loading .logo_area .logo_base, #stan_loading .logo_area .logo_overlay {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100002;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#stan_loading .logo_area .logo_base svg, #stan_loading .logo_area .logo_overlay svg {
  display: block;
}
#stan_loading .logo_area .logo_base_wrap {
  z-index: 10001;
}
#stan_loading .logo_area .logo_overlay_wrap {
  z-index: 100002;
  -webkit-animation: logoOverlayScale cubic-bezier(0.37, 0.02, 0.96, 0) 1.5s;
  animation: logoOverlayScale cubic-bezier(0.37, 0.02, 0.96, 0) 1.5s;
  left: 0;
}
#stan_loading .logo_area .logo_base svg {
  fill: #555;
}
#stan_loading .logo_area .logo_overlay {
  fill: #fff;
}
@-webkit-keyframes logoOverlayScale {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}
@keyframes logoOverlayScale {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .disp_sp {
    display: block;
  }
  .p_stan nav h2 {
    width: 100%;
  }
  .p_stan nav h2 a {
    width: 100%;
  }
  .p_stan ul#g_navi {
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    float: none;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }
  .p_stan ul#g_navi li {
    width: auto;
    width: calc(100% / 5);
    background-repeat: no-repeat;
    background-size: 60px auto;
    background-position: center top 5px;
  }
  .p_stan ul#g_navi li:nth-child(1) {
    background-image: url(https://zojirushi.mom/syohin/stan_contents/images/sp_navi_icn01.png);
  }
  .p_stan ul#g_navi li:nth-child(2) {
    background-image: url(https://zojirushi.mom/syohin/stan_contents/images/sp_navi_icn02.png);
  }
  .p_stan ul#g_navi li:nth-child(3) {
    background-image: url(https://zojirushi.mom/syohin/stan_contents/images/sp_navi_icn03.png);
  }
  .p_stan ul#g_navi li:nth-child(4) {
    background-image: url(https://zojirushi.mom/syohin/stan_contents/images/sp_navi_icn04.png);
  }
  .p_stan ul#g_navi li:nth-child(5) {
    background-image: url(https://zojirushi.mom/syohin/stan_contents/images/sp_navi_icn05.png);
  }
  .p_stan ul#g_navi li:nth-child(6) {
    background-image: url(https://zojirushi.mom/syohin/stan_contents/images/sp_navi_icn06.png);
  }
  .nav_content {
    text-align: center;
    padding: 10px 20px;
  }
  .p_stan h2 {
    float: none;
  }
  .p_stan nav ul li a {
    padding: 35px 0 0px;
    color: #000;
    text-indent: -99999px;
  }
  .p_stan nav ul li a:after {
    display: none;
  }
  .p_stan h2 img {
    width: 80px;
    height: auto;
    vertical-align: baseline;
  }
  .nav_content h2 a {
    margin-top: 0;
  }
}
/*---------------------------------------
top
---------------------------------------*/
.top_stan_logoarea {
  text-align: center;
  margin-bottom: 65px;
}
.top_stan_logoarea .top_stan_logoarea_img {
  padding: 65px 0 18px;
  letter-spacing: 0.08em;
}
.top_stan_logoarea .top_stan_logoarea_img img {
  width: 410px;
}
.top_stan_logoarea .top_stan_logoarea_ttl {
  font-size: 28px;
  line-height: 1.4;
}
.top_stan_logoarea .top_stan_logoarea_txt {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 15px;
}
.top_stan_logoarea .top_stan_logoarea_tieup {
  padding-top: 20px;
}
.top_stan_logoarea .top_stan_logoarea_tieup img {
  width: 200px;
}
.top_stan_bottom_txt {
  text-align: center;
  padding-top: 85px;
  padding-bottom: 80px;
}
.standbyyourlife_top .sticky-section-01 .sticky-bg {
  background-image: url(../img/bg_top_momou.jpg);
    background-position: center center;
}
.standbyyourlife_top .sticky-section-02 .sticky-bg {
  background-image: url(../img/bg_top_yamamoto.jpg);
     background-position: center center;
}
.standbyyourlife_top .sticky-section-03 .sticky-bg {
  background-image: url(../img/bg_top_horide.jpg);
     background-position: center center;
}
.standbyyourlife_top .sticky-section-04 .sticky-bg {
  background-image: url(../img/bg_top_okumura.jpg);
     background-position: center center;
}
.top_name {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 20px 25px 25px;
  color: #000;
  text-align: center;
}
.top_name.right {
  left: auto;
  right: 0;
}
.top_name .top_name_number {
  font-size: 14px;
  position: relative;
}
.top_name .top_name_number::after {
  content: "";
  background-color: #ddd;
  width: 20px;
  height: 1px;
  display: block;
  margin: 7px auto 18px
}
.top_name .top_name_box {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
}
.top_name .top_name_box .top_name_job {
  font-size: 15px;
  line-height: 1.2;
}
.top_name .top_name_box .top_name_txt {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.18em;
}
.top_txtarea {
  max-width: 440px;
  position: absolute;
  bottom: 45px;
  left: auto;
  right: 50px;
}
.top_txtarea.left {
  left: 50px;
  right: auto;
}
.top_txtarea .top_txt {
  text-align: justify;
}
.top_txtarea .top_btn {
  margin-top: 20px;
}
.top_txtarea .top_btn a {
  border: 1px solid #fff;
  width: 230px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  display: block;
  border-radius: 5px;
  background-color: transparent;
}
.top_txtarea .top_btn a:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
.top_product_img {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.top_product_img.right {
  left: auto;
  right: 40px;
}
.top_product_img img {
  max-width: 200px;
}




.top_product_img.right ul,
.top_product_img.pod ul{
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
}
.top_product_img.right ul li {
  margin: 0 0 0 20px;
}
.top_product_img.right ul li:first-child img {
  width: 120px;
}
.top_product_img.right ul li:nth-child(2) img {
  width: 112px;
}
.top_product_img.nabe ul li img {
  width: 120px;
}
.top_product_img.nabe ul li:nth-child(2) img {
  width: 120px;
}

.top_product_img.pod ul li:nth-child(2) {
    padding-left: 25px;
}
.top_product_img.pod ul li img {
  width: 180px;
}

.top_product_img.pod ul li:nth-child(2) img {
  width: 130px;
}



@media screen and (max-width: 768px) {
  .top_stan_logoarea {
    margin-bottom: 50px;
  }
  .top_stan_logoarea .top_stan_logoarea_img {
    padding: 45px 0 5px;
  }
  .top_stan_logoarea .top_stan_logoarea_img img {
    width: 76%;
  }
  .top_stan_logoarea .top_stan_logoarea_ttl {
    font-size: 22px;
    line-height: 1.6;
    padding-bottom: 8px;
  }
  .top_stan_logoarea .top_stan_logoarea_txt {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 15px;
  }
  .top_stan_logoarea .top_stan_logoarea_tieup {
    padding-top: 20px;
  }
  .top_stan_logoarea .top_stan_logoarea_tieup img {
    width: 150px;
  }
  .top_stan_bottom_txt {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .standbyyourlife_top .sticky-section-01 .sticky-bg {
    background-image: url(../img/bg_top_momou_sp.jpg);
  }
  .standbyyourlife_top .sticky-section-02 .sticky-bg {
    background-image: url(../img/bg_top_yamamoto_sp.jpg);
  }
.standbyyourlife_top .sticky-section-03 .sticky-bg {
    background-image: url(../img/bg_top_horide_sp.jpg);
  }
.standbyyourlife_top .sticky-section-04 .sticky-bg {
    background-image: url(../img/bg_top_okumura_sp.jpg);
  }
  .top_name {
    padding: 15px 17px 15px;
    top: 0;

  }
  .top_name .top_name_number {
    font-size: 11px;
    position: relative;
    line-height: 1.0;
  }
  .top_name .top_name_number::after {
    width: 20px;
    margin: 5px auto 12px
  }
  .top_name .top_name_box .top_name_job {
    font-size: 12px;
    line-height: 1.3;
  }
  .top_name .top_name_box .top_name_txt {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
  .top_txtarea {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    bottom: 90px;
    left: auto;
    right: auto;
    font-size: 14px;
    line-height: 1.7;
  }
  .top_txtarea.left {
    left: auto;
  }
  .top_txtarea .top_btn {
    margin-top: 16px;
  }
  .top_txtarea .top_btn a {
    border: 1px solid #fff;
    width: 53%;
    height: 45px;
    line-height: 45px;
  }
  .top_txtarea .top_btn a:hover {
    background-color: transparent;
    color: #fff;
  }
  .top_product_img {
    bottom: 90px;
    left: auto;
    right: 20px;
  }
  .top_product_img.right {
    left: auto;
    right: 20px;
  }
  .top_product_img img {
    max-width: 110px;
  }
  .top_product_img.right ul li {
    margin: 0 0 0 8px;
  }
  .top_product_img.right ul li:first-child img {
    width: 58px;
  }
  .top_product_img.right ul li:nth-child(2) img {
    width: 53px;
  }
    .top_product_img.nabe ul li img {
   width: 53px;
}
.top_product_img.nabe ul li:nth-child(2) img {
  width: 53px;
}

    .top_product_img.pod ul li:nth-child(2) {
    padding-left: 7px;
}
.top_product_img.pod ul li img {
  width: 62px;
}

.top_product_img.pod ul li:nth-child(2) img {
  width: 44px;
}


}
@media all and (-ms-high-contrast: none){
  /* IE対応 iEだけ高さが100%になってしまうので数文字多くても大丈夫な値で高さ固定 */
 .top_name{
  height: 236px;
 }
}
/*---------------------------------------
top scroll effect
---------------------------------------*/
.sticky-container-scroll {
  color: #fff;
  position: absolute;
  right: 45px;
  top: 45px;

  text-align: center;
  padding: 60px 0 0;
  letter-spacing: 0.05em;
  font-size: 16px;
  -webkit-transition: opacity ease 0.8s;
  transition: opacity ease 0.8s;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sticky-container-scroll.left {
  right: auto;
    left: 45px;

}

.sticky-container-scroll.is_hide {
  opacity: 0;
}

.sticky-container-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  -webkit-animation: scrollAttention 2s ease 0s infinite normal;
  animation: scrollAttention 2s ease 0s infinite normal;
}

.standbyyourlife_top .sticky-container [data-fadein] {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.6s cubic-bezier(0.51, 0.04, 0.32, 0.99);
  transition: opacity 0.8s, -webkit-transform 0.6s cubic-bezier(0.51, 0.04, 0.32, 0.99);
  transition: opacity 0.8s, transform 0.6s cubic-bezier(0.51, 0.04, 0.32, 0.99);
  transition: opacity 0.8s, transform 0.6s cubic-bezier(0.51, 0.04, 0.32, 0.99), -webkit-transform 0.6s cubic-bezier(0.51, 0.04, 0.32, 0.99);
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="1"] {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="2"] {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="3"] {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="4"] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="5"] {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="6"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="7"] {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="8"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="9"] {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.standbyyourlife_top .sticky-container [data-fadein][data-fadein-delay="10"] {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.standbyyourlife_top .sticky-container.is-enter [data-fadein] {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
}

.standbyyourlife_top .sticky-container.is-current [data-fadein] {
  opacity: 1;
  pointer-events: auto;
}

.standbyyourlife_top .sticky-container.is-leave [data-fadein] {
  pointer-events: none;
  opacity: 1;
}

.standbyyourlife_top .stickery-anker {
  position: absolute;
  top: 0.4vh;
}

.standbyyourlife_top .sticky-container {
  width: 100vw;
  height: 300vh;
}

.standbyyourlife_top .sticky-element {
  position: sticky;
  top: 0;
  height: auto;
  padding-top: 0;
  overflow: hidden;
  background-color: #fff;
}

.standbyyourlife_top .sticky-content-area {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.standbyyourlife_top .sticky-content-area .sticky-bg {
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.standbyyourlife_top .sticky-content-area .sticky-bg .sticky-bg-overlay {
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
}

.standbyyourlife_top .sticky-container .sticky-content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.standbyyourlife_top .sticky-container .sticky-content-inner {
  width: 100%;
  height: 100%;
  color: #fff;
}

.standbyyourlife_top .sticky-content-group > * {
  z-index: 11;
}

@media screen and (max-width: 768px) {
  .sticky-container-scroll {
    top: 105px;
    right: 15px;
    font-size: 14px;
      padding-left: 3px;
  }
    .sticky-container-scroll.left {
  right: auto;
    left: 15px;

}


  .sticky-container-scroll::after {
    height: 13vw;
  }
  .standbyyourlife_top .sticky-element {
    margin-top: -65px;
    background: transparent;
  }
  .standbyyourlife_top .sticky-content-area {
    position: relative;
    top: 65px;
    height: calc(100vh - 65px);
  }
  .standbyyourlife_top .sticky-container .sticky-content-inner {
    width: 100%;
  }
}

/*---------------------------------------
scroll effect
---------------------------------------*/
.stickey-bg-area {
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: sticky;
}
.stickey-bg-area .section-bg {
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
  opacity: 0;
  background-size: cover;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.stickey-bg-area .section-bg:first-child {
  opacity: 1 !important;
}
.stickey-bg-area .section-bg.is-show {
  opacity: 1;
}
.stickey-bg-area .section-bg.is-overlay:after {
  opacity: 1;
}
.stickey-bg-area .section-bg:after {
  opacity: 0;
  -webkit-transition: opacity ease 0.8s;
  transition: opacity ease 0.8s;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.mv_scroll {
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  text-align: center;
  margin-left: -25px;
  padding: 0 0 52px;
  letter-spacing: 0.05em;
  font-size: 18px;
  -webkit-transition: opacity ease 0.8s;
  transition: opacity ease 0.8s;
}
.mv_scroll.is_hide {
  opacity: 0;
}
.mv_scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-animation: scrollAttention 2s ease 0s infinite normal;
  animation: scrollAttention 2s ease 0s infinite normal;
}
@media screen and (max-width: 768px) {
  .mv_scroll {
    padding: 0 0 15vw;
    bottom: 67px;
    font-size: 16px;
  }
  .mv_scroll::after {
    height: 15vw;
  }
}
@-webkit-keyframes scrollAttention {
  0%, 100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  30% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  80% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
@keyframes scrollAttention {
  0%, 100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  30% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  80% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
.fixed-section-spacer {
  height: 50vh;
}
.fixed-section {
  position: relative;
}
.fixed-section .fixed-content-area {
  padding: 50vh 0;
}
.fixed-section.type-stickey {
  z-index: 9;
}
.fixed-section.type-stickey .fixed-content-area {
  padding: 100vh 0 100vh;
}
.fixed-section.type-stickey .fixed-bg {
  position: sticky;
  opacity: 1;
}
.fixed-section.type-stickey .fixed-bg::before {
  opacity: 0;
}
.fixed-section.type-fixed {
  z-index: 10;
}
.fixed-section.type-fixed .fixed-bg {
  position: fixed;
  opacity: 0;
}
.fixed-section.type-fixed .fixed-bg::before {
  opacity: 0;
}
.fixed-section.type-fixed.is-show .fixed-container .fixed-bg {
  opacity: 1;
}
.fixed-section.type-fixed.is-show .fixed-container .fixed-bg::before {
  opacity: 1;
}
.fixed-section .fixed-container {
  min-height: 100vh;
  padding: 60px 0;
}
.fixed-section .fixed-container .fixed-content-area {
  width: calc(100% - 16%);
  max-width: 100%;
  margin: 0 auto;
}
.fixed-section .fixed-container .fixed-header, .fixed-section .fixed-container .fuxed-content {
  width: 330px;
  margin: 0 0 0 auto;
}
.fixed-section .fixed-container .fixed-header {
  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;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.fixed-section .fixed-container .fixed-header .fixed-header-title {
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  z-index: 2;
}
.fixed-section .fixed-container .fuxed-content {
  position: relative;
  z-index: 2;
  min-height: 50vh;
}
.fixed-section .fixed-container .fuxed-content .fuxed-content-inner {
  padding: 40px 0 0;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .stickey-bg-area .section-bg:after {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .fixed-section .fixed-container .fixed-content-area {
    width: 100%;
  }
  .fixed-section .fixed-container .fixed-header, .fixed-section .fixed-container .fuxed-content {
    width: 100%;
    margin: 0 auto;
  }
  .fixed-section .fixed-container .fixed-header .fixed-header-title {
    font-size: 20px;
  }
  .fixed-section .fixed-container .fuxed-content .fuxed-content-inner {
    padding: 30px;
    font-size: 15px;
    line-height: 1.9;
  }
}
/*---------------------------------------
common
---------------------------------------*/
#stan_container .stan_contents_wrap {
  font-size: 16px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#stan_container .stan_contents_wrap .mincho {
  font-family: "Noto Serif JP", serif;
}
#stan_container .stan_contents_wrap h2 {
  width: 100%;
}
#stan_container .stan_contents_wrap *:focus {
  outline: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #stan_container .stan_contents_wrap {
    font-size: 14px;
    line-height: 1.9;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*---------------------------------------
contents
---------------------------------------*/
.stan_contents_main {
  background-image: url(../img/bg_contents_main_monou.jpg);
  height: 700px;
  background-position: center top;
  background-size: cover;
  text-align: center;
}
.stan_contents_main.yamamoto {
  background-image: url(../img/bg_contents_main_yamamoto.jpg);
}

.stan_contents_main.horide {
  background-image: url(../img/bg_contents_main_horide.jpg);
}
.stan_contents_main.okumura {
  background-image: url(../img/bg_contents_main_okumura.jpg);
}


.stan_contents_main .stan_contents_main_img {
  padding-top: 45px;
}
.stan_contents_main .stan_contents_main_img.left {
  text-align: left;
  padding-left: 50px;
}
.stan_contents_main .stan_contents_main_img img {
  width: 280px;
}
.stan_contents_main .stan_contents_main_txt {
  padding-top: 10px;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" !important;
}
.stan_contents_main .stan_contents_main_txt.left {
  text-align: left;
  padding-left: 50px;
}
.stan_contents_main .stan_contents_main_txt.txt_white {
    color: #fff;
}


.stan_contents_main .stan_contents_main_txt dt {
  font-size: 24px;
  line-height: 1.5;
}
.stan_contents_main .stan_contents_main_txt dd {
  font-size: 17px;
    line-height: 1.6;
    padding-top: 5px;
}
.stan_contents_main .stan_contents_main_txt.left dd {
  margin-left: -6px;
}
.stan_contents_profile {
  max-width: 700px;
  margin: 70px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stan_contents_profile .stan_contents_profile_name {
  width: 30%;
}
.stan_contents_profile .stan_contents_profile_name .contents_number {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 22px;
}
.stan_contents_profile .stan_contents_profile_name .profile_job {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.stan_contents_profile .stan_contents_profile_name .profile_name {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.stan_contents_profile .stan_contents_profile_detail {
  width: 70%;
  border-left: 1px solid #ddd;
  padding-left: 55px;
}
.stan_contents_slide {}
.stan_contents_slide .stan_contents_slide_ttl {
  max-width: 700px;
  margin: 110px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left {
  width: 30%;
}
.stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left .logo_standby {
  padding: 0;
}
.stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left .logo_standby img {
  width: 160px;
}
.stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left .txt_standby {
  font-size: 18px;
  letter-spacing: 0.15em;
}
.stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_right {
  width: 68%;
  border-left: 1px solid #ddd;
  padding-left: 45px;
  font-size: 15px;
}
#slide {
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: auto;
  position: relative;
  display: block;
}
#slide .section-wrap {
  padding: 0px 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
#slide .slide-wrap div {
  line-height: 1;
  vertical-align: top;
  margin: 0 auto;
  box-sizing: border-box;
}
#slide .slide-wrap .slide-list {
  position: relative;
  padding: 0 35px;
  margin: 0 auto;
  box-sizing: border-box;
}
#slide .slide-wrap .slide-list img {
  width: 700px;
  position: relative;
}
#slide .slide-wrap .slick-prev {
  width: 19px;
  height: 36px;
  left: calc(50% - 397px);
  background: url(../img/arrow_left.png) center center/19px 36px no-repeat;
  z-index: 100;
}
#slide .slide-wrap .slick-next {
  width: 19px;
  height: 36px;
  right: calc(50% - 397px);
  background: url(../img/arrow_right.png) center center/19px 36px no-repeat;
  z-index: 100;
}
#slide .slick-prev:before, #slide .slick-next:before {
  display: none;
}
#slide .slide-wrap .slide-list .slide_txt {
  font-size: 20px;
  letter-spacing: 0.1em;
  background-color: #fff;
  padding: 25px 25px 0px 0;
  z-index: 500;
    line-height: 1.6;
  position: relative;
  display: inline-block;
  margin-top: -80px;
}
.stan_contents_product {
  margin-top: 75px;
  text-align: center;
  margin-bottom: 90px;
}
.stan_contents_product .stan_contents_product_img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stan_contents_product .stan_contents_product_img li {
  padding: 0 20px;
}
.stan_contents_product .stan_contents_product_img li:first-child img {
  width: 212px;
}
.stan_contents_product .stan_contents_product_img li:nth-child(2) img {
  width: 197px;
}
.stan_contents_product .stan_contents_product_img.hotplate li:first-child img, .stan_contents_product .stan_contents_product_img.hotplate li:nth-child(2) img {
  width: 320px;
}

.stan_contents_product .stan_contents_product_img.hotplate li {
  padding: 0 60px;
}

.stan_contents_product .stan_contents_product_img.nabe li img {
  width: 189px;
}


.stan_contents_product .stan_contents_product_img.pod li {
  padding: 0 60px;
}


.stan_contents_product .stan_contents_product_img.pod li img {
  width: 270px;
}
.stan_contents_product .stan_contents_product_img.pod li:nth-child(2) img {
  width: 180px;
}


.stan_contents_product .stan_contents_product_name {
  font-size: 26px;
  padding-top: 40px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.stan_contents_product .stan_contents_product_model {
  font-size: 15px;
  color: #666666;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.stan_contents_product .stan_contents_product_buy {}
.stan_contents_product .stan_contents_product_buy a {
  border: 1px solid #000;
  color: #000;
  max-width: 400px;
  line-height: 70px;
  height: 75px;
  margin: 0 auto;
  display: block;
  border-radius: 3px;
  font-size: 18px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stan_contents_product .stan_contents_product_buy a::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 29px;
  height: 27px;
  top: -2px;
  margin-right: 8px;
  vertical-align: middle;
  background: url(../img/icon_cart.png) no-repeat center center;
  background-size: contain;
}
.stan_contents_product .stan_contents_product_buy a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}
.stan_contents_product .stan_contents_product_buy a:hover::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 29px;
  height: 27px;
  top: -2px;
  margin-right: 8px;
  vertical-align: middle;
  background: url(../img/icon_cart_wh.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .stan_logoarea {
    margin-bottom: 36px;
  }
  .stan_logoarea .stan_logoarea_img {
    padding: 45px 0 5px;
  }
  .stan_logoarea .stan_logoarea_img img {
    width: 68%;
  }
  .stan_contents_main {
    background-image: url(../img/bg_contents_main_monou_sp.jpg);
    height: 500px;
    background-position: center center;
    text-align: center;
    position: relative;
    margin-bottom: 180px;
  }
  .stan_contents_main.yamamoto {
    background-image: url(../img/bg_contents_main_yamamoto_sp.jpg);
    height: 500px;
    background-position: center center;
    text-align: center;
    position: relative;
    margin-bottom: 180px;
  }
      .stan_contents_main.horide {
    background-image: url(../img/bg_contents_main_horide_sp.jpg);
    height: 500px;
    background-position: center center;
    text-align: center;
    position: relative;
    margin-bottom: 180px;
  }
        .stan_contents_main.okumura {
    background-image: url(../img/bg_contents_main_okumura_sp.jpg);
    height: 500px;
    background-position: center center;
    text-align: center;
    position: relative;
    margin-bottom: 180px;
  }


  .stan_contents_main .stan_contents_main_inner {
    background-color: #fff;
    padding: 0px 20px 0px;
    width: 70%;
    margin: 100px auto 0px;
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
  }
  .stan_contents_main .stan_contents_main_img {
    padding-top: 32px;
  }
  .stan_contents_main .stan_contents_main_img img {
    width: 80%;
      margin: 0 auto;
  }
  .stan_contents_main .stan_contents_main_txt {
    padding-top: 10px;
    letter-spacing: 0.05em;
  }
    .stan_contents_main .stan_contents_main_txt.txt_white {
    color: #000;
}
  .stan_contents_main .stan_contents_main_txt dt {
    font-size: 20px;
    line-height: 1.8;
  }
  .stan_contents_main .stan_contents_main_txt dd {
    font-size: 14px;
    padding-top: 4px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .stan_contents_main .stan_contents_main_img.left {
    text-align: center;
    padding-left: 0px;
  }
  .stan_contents_main .stan_contents_main_txt.left {
    text-align: center;
    padding-left: 0px;
  }
  .stan_contents_main .stan_contents_main_txt.left dd {
    margin-left: 0px;
  }
  .stan_contents_profile {
    max-width: 700px;
    margin: 70px auto;
    display: block;
    padding: 0 35px;
    align-items: center;
    justify-content: center;
  }
  .stan_contents_profile .stan_contents_profile_name {
    width: 100%;
  }
  .stan_contents_profile .stan_contents_profile_name .contents_number {
    font-size: 11px;
    margin-bottom: 16px;
    text-align: center;
  }
  .stan_contents_profile .stan_contents_profile_name .profile_job {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }
  .stan_contents_profile .stan_contents_profile_name .profile_name {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
  }
  .stan_contents_profile .stan_contents_profile_detail {
    width: 100%;
    border-left: none;
    border-top: 1px solid #ddd;
    padding-left: 0px;
    padding-top: 20px;
    margin-top: 20px;
  }
  .stan_contents_slide .stan_contents_slide_ttl {
    max-width: 100%;
    margin: 75px auto 20px;
    padding: 0 35px;
    display: block;
  }
  .stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left {
    width: 100%;
    text-align: center;
  }
  .stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left .logo_standby {
    padding: 0;
  }
  .stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left .logo_standby img {
    width: 130px;
    vertical-align: middle;
  }
  .stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_left .txt_standby {
    font-size: 20px;
    letter-spacing: 0.15em;
    margin-top: 6px;
  }
  .stan_contents_slide .stan_contents_slide_ttl .stan_contents_slide_ttl_right {
    width: 100%;
    border-left: none;
    padding-left: 0px;
    padding-top: 2px;
    font-size: 14px;
  }
  #slide .section-wrap {
    padding: 0 0 0px;
  }
  #slide .slide-wrap .slide-list {
    width: 100vw;
    padding: 0;
    position: relative;
  }
  #slide .slide-wrap .slide-list img {
    width: 100vw;
    border-radius: 0px;
  }
  #slide .slide-wrap .slick-prev {
    width: 19px;
    height: 36px;
    left: 15px;
    background: url(../img/arrow_left_wh.png) center center/19px 36px no-repeat;
    z-index: 100;
  }
  #slide .slide-wrap .slick-next {
    width: 19px;
    height: 36px;
    right: 15px;
    background: url(../img/arrow_right_wh.png) center center/19px 36px no-repeat;
    z-index: 100;
  }
  .slick-prev, .slick-next {
    top: 50%;
    margin-top: -18px;
  }

    .stan_contents_wrap.standbyyourlife_horide .slick-prev, .stan_contents_wrap.standbyyourlife_horide .slick-next,
    .stan_contents_wrap.standbyyourlife_okumura .slick-prev, .stan_contents_wrap.standbyyourlife_okumura .slick-next{
    top: 40%;
  }





  #slide .slide-wrap .slide-list .slide_txt {
    font-size: 18px;
    letter-spacing: 0em;
    padding: 15px 20px 0px 20px;
    line-height: 1.6;
    position: relative;
    display: inline-block;
    margin-top: -20px;
  }
  .stan_contents_product {
    margin-top: 55px;
    text-align: center;
    margin-bottom: 60px;
  }
  .stan_contents_product .stan_contents_product_img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
  }
  .stan_contents_product .stan_contents_product_img li {
    padding: 0 10px;
    width: 46%;
  }
  .stan_contents_product .stan_contents_product_img li:first-child img {
    width: 100%;
  }
  .stan_contents_product .stan_contents_product_img li:nth-child(2) img {
    width: 99%;
  }

    .stan_contents_product .stan_contents_product_img.nabe li img {
 width: 100%;
}


  .stan_contents_product .stan_contents_product_img.hotplate {
    display: block;
    padding: 0 0px;
  }
  .stan_contents_product .stan_contents_product_img.hotplate li:first-child img, .stan_contents_product .stan_contents_product_img.hotplate li:nth-child(2) img {
    width: 90%;
  }
  .stan_contents_product .stan_contents_product_img.hotplate li {
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

    .stan_contents_product .stan_contents_product_img.pod li {
  padding: 0 10px;
         width: 100%;
    box-sizing: border-box;
}

  .stan_contents_product .stan_contents_product_img.pod {
    display: block;
    padding: 0 0px;
  }


.stan_contents_product .stan_contents_product_img.pod li img {
  width: 90%;
}
.stan_contents_product .stan_contents_product_img.pod li:nth-child(2) img {
 width: 58%;
}


  .stan_contents_product .stan_contents_product_name {
    font-size: 20px;
    padding-top: 20px;
  }
  .stan_contents_product .stan_contents_product_model {
    font-size: 13px;
    margin-bottom: 35px;
  }
  .stan_contents_product .stan_contents_product_buy a {
    max-width: 75%;
    line-height: 55px;
    height: 55px;
    font-size: 16px;
    background-color: #fff;
    transition: none;
  }
  .stan_contents_product .stan_contents_product_buy a::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 21px;
    height: 20px;
    top: -2px;
    margin-right: 8px;
    vertical-align: middle;
    background: url(../img/icon_cart.png) no-repeat center center;
    background-size: contain;
  }
  .stan_contents_product .stan_contents_product_buy a:hover {
    color: #000;
    background-color: #fff;
  }
  .stan_contents_product .stan_contents_product_buy a:hover::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 21px;
    height: 20px;
    top: -2px;
    margin-right: 8px;
    vertical-align: middle;
    background: url(../img/icon_cart.png) no-repeat center center;
    background-size: contain;
  }
}
/*---------------------------------------
sub page akiko monou
---------------------------------------*/
.standbyyourlife_akiko_monou .section-01-bg {
  background-image: url(../img/bg_contents_section_monou01.jpg);
  background-position: center center;
}
.standbyyourlife_akiko_monou .section-02-bg {
  background-image: url(../img/bg_contents_section_monou02.jpg);
  background-position: center center;
}
.standbyyourlife_akiko_monou .section-03-bg {
  background-image: url(../img/bg_contents_section_monou03.jpg);
  background-position: center center;
}
.standbyyourlife_akiko_monou .section-04-bg {
  background-image: url(../img/bg_contents_section_monou04.jpg);
  background-position: center center;
}
.standbyyourlife_akiko_monou .section-05-bg {
  background-image: url(../img/bg_contents_section_monou05.jpg);
  background-position: center center;
}
.standbyyourlife_akiko_monou .section-06-bg {
  background-image: url(../img/bg_contents_section_monou06.jpg);
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .standbyyourlife_akiko_monou .section-01-bg {
    background-image: url(../img/bg_contents_section_monou01_sp.jpg);
  }
  .standbyyourlife_akiko_monou .section-02-bg {
    background-image: url(../img/bg_contents_section_monou02_sp.jpg);
  }
  .standbyyourlife_akiko_monou .section-03-bg {
    background-image: url(../img/bg_contents_section_monou03_sp.jpg);
  }
  .standbyyourlife_akiko_monou .section-04-bg {
    background-image: url(../img/bg_contents_section_monou04_sp.jpg);
  }
  .standbyyourlife_akiko_monou .section-05-bg {
    background-image: url(../img/bg_contents_section_monou05_sp.jpg);
  }
  .standbyyourlife_akiko_monou .section-06-bg {
    background-image: url(../img/bg_contents_section_monou06_sp.jpg);
  }
}
/*---------------------------------------
sub page masaya yamamoto
---------------------------------------*/
.standbyyourlife_masaya_yamamoto .section-01-bg {
  background-image: url(../img/bg_contents_section_yamamoto01.jpg);
  background-position: center center;
}
.standbyyourlife_masaya_yamamoto .section-02-bg {
  background-image: url(../img/bg_contents_section_yamamoto02.jpg);
  background-position: center center;
}
.standbyyourlife_masaya_yamamoto .section-03-bg {
  background-image: url(../img/bg_contents_section_yamamoto03.jpg);
  background-position: center center;
}
.standbyyourlife_masaya_yamamoto .section-04-bg {
  background-image: url(../img/bg_contents_section_yamamoto04.jpg);
  background-position: center center;
}
.standbyyourlife_masaya_yamamoto .section-05-bg {
  background-image: url(../img/bg_contents_section_yamamoto05.jpg);
  background-position: center center;
}
.standbyyourlife_masaya_yamamoto .section-06-bg {
  background-image: url(../img/bg_contents_section_yamamoto06.jpg);
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .standbyyourlife_masaya_yamamoto .section-01-bg {
    background-image: url(../img/bg_contents_section_yamamoto01_sp.jpg);
  }
  .standbyyourlife_masaya_yamamoto .section-02-bg {
    background-image: url(../img/bg_contents_section_yamamoto02_sp.jpg);
  }
  .standbyyourlife_masaya_yamamoto .section-03-bg {
    background-image: url(../img/bg_contents_section_yamamoto03_sp.jpg);
  }
  .standbyyourlife_masaya_yamamoto .section-04-bg {
    background-image: url(../img/bg_contents_section_yamamoto04_sp.jpg);
  }
  .standbyyourlife_masaya_yamamoto .section-05-bg {
    background-image: url(../img/bg_contents_section_yamamoto05_sp.jpg);
  }
  .standbyyourlife_masaya_yamamoto .section-06-bg {
    background-image: url(../img/bg_contents_section_yamamoto06_sp.jpg);
  }
}

/*---------------------------------------
sub page horide
---------------------------------------*/
.standbyyourlife_horide .section-01-bg {
  background-image: url(../img/bg_contents_section_horide01.jpg);
  background-position: center center;
}
.standbyyourlife_horide .section-02-bg {
  background-image: url(../img/bg_contents_section_horide02.jpg);
  background-position: center center;
}
.standbyyourlife_horide .section-03-bg {
  background-image: url(../img/bg_contents_section_horide03.jpg);
  background-position: center center;
}
.standbyyourlife_horide .section-04-bg {
  background-image: url(../img/bg_contents_section_horide04.jpg);
  background-position: center center;
}
.standbyyourlife_horide .section-05-bg {
  background-image: url(../img/bg_contents_section_horide05.jpg);
  background-position: center center;
}
.standbyyourlife_horide .section-06-bg {
  background-image: url(../img/bg_contents_section_horide06.jpg);
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .standbyyourlife_horide .section-01-bg {
    background-image: url(../img/bg_contents_section_horide01_sp.jpg);
  }
  .standbyyourlife_horide .section-02-bg {
    background-image: url(../img/bg_contents_section_horide02_sp.jpg);
  }
  .standbyyourlife_horide .section-03-bg {
    background-image: url(../img/bg_contents_section_horide03_sp.jpg);
  }
  .standbyyourlife_horide .section-04-bg {
    background-image: url(../img/bg_contents_section_horide04_sp.jpg);
  }
  .standbyyourlife_horide .section-05-bg {
    background-image: url(../img/bg_contents_section_horide05_sp.jpg);
  }
  .standbyyourlife_horide .section-06-bg {
    background-image: url(../img/bg_contents_section_horide06_sp.jpg);
  }
}


/*---------------------------------------
sub page okumura
---------------------------------------*/
.standbyyourlife_okumura .section-01-bg {
  background-image: url(../img/bg_contents_section_okumura01.jpg);
  background-position: center center;
}
.standbyyourlife_okumura .section-02-bg {
  background-image: url(../img/bg_contents_section_okumura02.jpg);
  background-position: center center;
}
.standbyyourlife_okumura .section-03-bg {
  background-image: url(../img/bg_contents_section_okumura03.jpg);
  background-position: center center;
}
.standbyyourlife_okumura .section-04-bg {
  background-image: url(../img/bg_contents_section_okumura04.jpg);
  background-position: center center;
}
.standbyyourlife_okumura .section-05-bg {
  background-image: url(../img/bg_contents_section_okumura05.jpg);
  background-position: center center;
}
.standbyyourlife_okumura .section-06-bg {
  background-image: url(../img/bg_contents_section_okumura06.jpg);
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .standbyyourlife_okumura .section-01-bg {
    background-image: url(../img/bg_contents_section_okumura01_sp.jpg);
  }
  .standbyyourlife_okumura .section-02-bg {
    background-image: url(../img/bg_contents_section_okumura02_sp.jpg);
  }
  .standbyyourlife_okumura .section-03-bg {
    background-image: url(../img/bg_contents_section_okumura03_sp.jpg);
  }
  .standbyyourlife_okumura .section-04-bg {
    background-image: url(../img/bg_contents_section_okumura04_sp.jpg);
  }
  .standbyyourlife_okumura .section-05-bg {
    background-image: url(../img/bg_contents_section_okumura05_sp.jpg);
  }
  .standbyyourlife_okumura .section-06-bg {
    background-image: url(../img/bg_contents_section_okumura06_sp.jpg);
  }
}
