@charset "utf-8";

/*==============================================================

  1. basic

================================================================*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 100%;
  text-align: left;
  line-height: inherit;
  vertical-align: baseline;
  box-sizing:border-box;
}
body {
  background: white;
  line-height: 1;
  color: black;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  box-sizing:border-box;
}
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
form label,
form button {
  cursor: pointer;
}
img {
  vertical-align: bottom;
  border: none;
  max-width:100%;
  height:auto;
}
iframe{
  border: none;
  max-width:100%;
}
blockquote,
q {
  quotes: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
  margin:0;
  padding:0;
  font-weight:normal;
  font-size:100%;
  line-height: 120%;
}
input,
button,
textarea,
select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==============================================================

  2. common

================================================================*/

/*--------------------------------------------------------------
  ■A.文字
--------------------------------------------------------------*/
body {
  background-color: #fff;
  margin: 0px auto;
  padding: 0px;
  font-family: "FOT-筑紫A丸ゴシック Std M", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , "Meiryo" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
}
strong{
  font-weight:700;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: "FOT-筑紫A丸ゴシック Std M", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , "Meiryo" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}


/*--------------------------------------------------------------
  ■B.リンク
--------------------------------------------------------------*/
a {
  color: #fff;
  -webkit-tap-highlight-color: #fff;
  outline: none;
  border-style: none;
  text-decoration: none;
  transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
}
@media screen and (min-width:481px){
  a:hover {
    opacity: 0.8;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
  }
  a:hover img{
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
    background-color:transparent;
    text-decoration:none;
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
  }
}

/*--------------------------------------------------------------
  ■C.共通定義
--------------------------------------------------------------*/
.clearfix{
  min-height: 1px;
}
.clearfix::after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.clear{
  clear: both;
}
.container{
  margin:0 auto;
  padding: 0;
  position:relative;
  max-width: 992px;
  width: 100%;
}

small{
  font-size: 10px;
}

@media screen and (min-width:769px){
  .pc_disp{
    display: block;
  }
  .tb_disp{
    display: none;
  }
  .sp_disp{
    display: none;
  }
}
@media screen and (max-width:768px){
  .pc_disp{
    display: none;
  }
  .tb_disp{
    display: block;
  }
  .sp_disp{
    display: none;
  }
}
@media screen and (max-width:480px){
  .pc_disp{
    display: none;
  }
  .tb_disp{
    display: none;
  }
  .sp_disp{
    display: block;
  }
}


/*==============================================================

  3. header

================================================================*/
header{
  padding: 24px 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  height: 78px;
}
@media screen and (max-width:768px){
  header{
    padding: 32px 0;
  }
}
@media screen and (max-width:480px){
  header{
    padding: 24px 0;
  }
}
header .container{
  max-width: 100%;
  padding: 0 40px;
}
header .site_logo img{
  height: 55px;
}
@media screen and (max-width:768px){
  header .site_logo{
    text-align: center;
  }
}
@media screen and (max-width:480px){
  header .site_logo img{
    height: 44px;
    width: auto;
  }
}
header .menu_open{
  display: inline;
}
@media screen and (min-width:769px){
  header nav{
    position: absolute;
    right: 40px;
    top: 0;
  }
  header nav > a,
  header .menu_open{
    color: #fff;
    margin-left: 20px;
    line-height: 30px;
  }
  header nav a.nopc{
    display: none;
  }
  header .menu_open span{
    cursor: pointer;
  }
}
@media screen and (max-width:768px){
  header nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: table;
    background-color: #001f3b;
    z-index: 99;
  }
  header nav > a,
  header .menu_open{
    display: table-cell;
    width: 25%;
    text-align: center;
    line-height: 46px;
    color: #fff;
    font-size: 14px;
  }
  header nav > a.bo,
  header .menu_open.bo{
    border-right: 1px solid #0a3a63;
  }
}
header .sub_header{
  padding: 10px 0;
  width: 100%;
  position: fixed;
  top: -500px;
  left: 0;
  z-index: 999;
  background-color: #0d3675;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}
@media screen and (max-width:768px){
  header .sub_header{
    display: none;
  }
}
header .sub_header .site_logo img{
  height: 41px;
  width: auto;
}
header .sub_header nav a{
  line-height: 41px;
}
header.sticky .sub_header{
  top: 0;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}




/* メニュー */
@media screen and (min-width:769px){
  header .slide_menu{
    display: none;
  }
  header .menu_open{
    position: relative;
  }
  header .menu_open .menu{
    position: absolute;
    top: 0;
    right: -98px;
    width: 888px;
    height: 432px;
    background-image: url('/images/rescue/00_menu_bg.png');
    background-position: center bottom;
    background-size: auto auto;
    background-repeat: no-repeat;
    padding: 70px 32px 0;
    display: none;
  }
  header .sub_header .menu_open .menu{
    height: 410px;
    padding: 70px 32px 0;
  }
  header .menu_open:hover .menu{
    display: block;
  }
  header .menu_open .menu_btn .fl{
    float: left;
    width: 50%;
    padding-right: 4px;
  }
  header .menu_open .menu_btn .fr{
    float: right;
    width: 50%;
    padding-left: 4px;
  }
  header .menu_open .menu .menu_btn{
    float: left;
    width: 50%;
    padding: 0 8px;
  }
  header .menu_open .menu .menu_btn a{
    display: block;
    background-color: #f26ba1;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    padding: 13px 0;
    font-size: 14px;
    line-height: 1;
  }
  header .menu_open .menu .menu_form{
    float: right;
    width: 50%;
    padding: 0 8px;
  }
  header .menu_open .menu .menu_form form{
    width: 100%;
    height: 40px;
    border: 2px solid #f26ba1;
    padding: 2px 0 4px 6px;
    border-radius: 8px;
    background-image: url('/images/rescue/00_search.jpg');
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  header .menu_open .menu .menu_form input[type="text"]{
    width: 78%;
    border: none;
    background-color: transparent;
    color: #fff;
  }
  header .menu_open .menu .menu_form input[type="text"]:focus{
    outline: 0;
  }
  header .menu_open .menu .menu_form input[type="submit"]{
    width: 20%;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  header .menu_open .menu .menu_list{
  }
  header .menu_open .menu .nav{
    margin-top: 18px;
    float: left;
    width: 25%;
    padding: 0 8px;
  }
  header .menu_open .menu .nav li{
    font-size: 14px;
  }
  header .menu_open .menu .nav li a{
    color: #fff;
    display: block;
    line-height: 1.6;
  }
  header .menu_open .menu .nav li.ttl{
    color: #e3b674;
    border-bottom: 1px solid #e3b674;
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width:768px){
  header .menu_open .menu{
    display: none;
  }
  header .slide_menu{
        background-color: #173f7a;
    position: fixed;
    z-index: 98;
    top: 0;
    left: -1000px;
    width: 100%;
    height: 100%;
    display: table;
    transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    -ms-transition: all 0.6s ease 0s;
  }
  header .slide_menu.active{
    left: 0;
  }
  header .slide_menu > div{
    display: table-cell;
  }
  header .slide_menu .close{
    width: 40px;
    background-color: rgba(18,35,62,0.94);
    position: relative;
  }
  header .slide_menu  .close_btn{
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    right: 12px;
  }
  header .slide_menu .close a,
  header .slide_menu .close a img{
    display: block;
  }
  header .slide_menu .menu{
    padding: 24px;
    height: 100%;
    overflow: hidden;
  }
  header .slide_menu .menu .menu_scroll{
    height:  calc( 100vh - 94px );
    overflow-y: auto;
  }
  header .slide_menu .menu_btn .fl{
    float: left;
    width: 50%;
    padding-right: 4px;
  }
  header .slide_menu .menu_btn .fr{
    float: right;
    width: 50%;
    padding-left: 4px;
  }
  header .slide_menu .menu .menu_btn a{
    display: block;
    background-color: #f26ba1;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1;
  }
  header .menu_open .menu .menu_btn a img{
    height: 12px;
    width: auto;
  }
  header .slide_menu .menu .menu_form{
    margin-top: 16px;
  }
  header .slide_menu .menu .menu_form form{
    width: 100%;
    border: 2px solid #f26ba1;
    padding: 2px 0 4px 6px;
    border-radius: 8px;
    background-image: url('/images/rescue/00_search.jpg');
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  header .slide_menu .menu .menu_form input[type="text"]{
    width: 72%;
    border: none;
    background-color: transparent;
    color: #fff;
    box-sizing: border-box;
  }
  header .slide_menu .menu .menu_form input[type="submit"]{
    width: 20%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    box-sizing: border-box;
  }
  header .slide_menu .menu .menu_list{
    padding-bottom: 40px;
  }
  header .slide_menu .menu .nav{
    margin-top: 40px;
  }
  header .slide_menu .menu .nav li{
    font-size: 14px;
    border-bottom: 1px solid #395d7a;
  }
  header .slide_menu .menu .nav li a{
    padding: 12px 0;
    color: #fff;
    display: block;
  }
  header .slide_menu .menu .nav li.ttl{
    color: #e3b674;
    border-bottom: 1px solid #e3b674;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
@media screen and (min-width:481px){
  header .slide_menu .close{
    width: 64px;
  }
  header .slide_menu .menu{
    padding: 40px;
  }
  header .slide_menu .menu .menu_btn{
    float: left;
    width: 50%;
    padding-right: 6px;
  }
  header .slide_menu .menu .menu_form{
    float: right;
    width: 50%;
    padding-left: 6px;
    margin: 0;
  }
  header .slide_menu .menu_btn .fl{
    padding-right: 6px;
  }
  header .slide_menu .menu_btn .fr{
    padding-left: 6px;
  }
  header .slide_menu .menu .nav.fl{
    float: left;
    width: 50%;
    padding-right: 12px;
  }
  header .slide_menu .menu .nav.fr{
    float: right;
    width: 50%;
    padding-left: 12px;
  }
}



/*==============================================================

  4. footer

================================================================*/
footer{
  padding-top: 96px;
  padding-bottom: 40px;
  position: relative;
  background-color: #0d3675;
}
footer .ttl{
  text-align: center;
}
footer .ttl img{
  height: 73px;
  width: auto;
}
@media screen and (max-width:768px){
  footer{
    padding-bottom: 86px;
  }
}
@media screen and (max-width:480px){
  footer{
    padding-top: 64px;
  }
  footer .ttl img{
    height: 70px;
  }
}
footer .sns {
  text-align: center;
  margin-top: 26px;
}
footer .sns img {
  width: 84px;
  height: auto;
}
@media screen and (max-width:480px){
    footer .sns {
      margin-top: 0;
    }
  footer .sns img.mt {
    margin-top: 32px;
  }
}
footer .copy{
  margin-top: 94px;
  font-size: 10px;
  text-align: center;
  color: #fff;
}
footer .ft_nav{
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width:480px){
  footer .copy{
    margin-top: 72px;
    text-align: left;
    padding: 0 24px;
  }
  footer .ft_nav{
    text-align: left;
    padding: 0 24px;
  }
}
footer .top{
  width: 64px;
  height: 64px;
}
@media screen and (min-width:481px){
  footer .top{
    position: absolute;
    bottom: 86px;
    right: 40px;
  }
}
@media screen and (min-width:769px){
  footer .top{
    bottom: 40px;
  }
}
@media screen and (max-width:480px){
  footer .top{
    position: relative;
    margin: 40px auto 46px;
    width: 64px;
    height: 64px;
  }
}


/*==============================================================

  5. breadcrumb

================================================================*/
#breadcrumb{
  padding: 10px;
  border-bottom: 1px solid #3d5e91;
  font-size: 12px;
  background-color: #0d3675;
}
@media screen and (max-width:768px){
  #breadcrumb .container{
    padding: 0 40px;
  }
}
@media screen and (max-width:480px){
  #breadcrumb .container{
    padding: 0 24px;
  }
}
#breadcrumb li{
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
#breadcrumb li::after {
  position: absolute;
  top: 0;
  right: -15px;
  content: ">";
}
#breadcrumb li.current::after {
  content: "";
}
#breadcrumb .home img{
  height: 11px;
  width: auto;
  position: relative;
  bottom: 5px;
}

/*==============================================================

  6. index

================================================================*/

/* #index #index #section01 */
#index #section01{
  overflow: hidden;
  position: relative;
}
@media screen and (min-width:769px){
  #index #section01{
    height: 775px;
  }
}
#index #section01 .pink{
  background-color: #e61869;
}
/* #index #section01 .pink .product .copy{
  animation: rotation1 2s linear 0s infinite alternate none running;
} */
@keyframes rotation1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
#index #section01 .blue{
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#003b96+9,008ac8+100 */
  background: #003b96; /* Old browsers */
  background: -moz-linear-gradient(top, #003b96 9%, #008ac8 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #003b96 9%,#008ac8 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #003b96 9%,#008ac8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003b96', endColorstr='#008ac8',GradientType=0 ); /* IE6-9 */
}
/* #index #section01 .blue .product .copy{
  animation: rotation2 2s linear 0s infinite alternate none running;
} */
#index #section01 .yellow{
  background-color: #ffb647;
}
/* #index #section01 .yellow .product .copy{
  animation: rotation1 2s linear 0s infinite alternate none running;
} */
#index #section01 .product .copy{ /* 3商品になったので動き揃える */
  animation: rotation1 2s linear 0s infinite alternate none running;
}
@media screen and (min-width:769px){
  #index #section01 .blue{
    background-image: url('/images/rescue/01_blue_bg.jpg');
    background-position: center center;
  }
  #index #section01 .yellow{
    background-image: url('/images/rescue/01_yellow_bg.jpg');
    background-position: center center;
  }
}
@media screen and (max-width:768px) and (min-width:481px){
  #index #section01 .blue{
    background-image: url('/images/rescue/01_blue_bg_tb.jpg');
    background-position: center center;
    background-size: auto 100%;
  }
  #index #section01 .yellow{
    background-image: url('/images/rescue/01_yellow_bg_tb.jpg');
    background-position: center center;
    background-size: auto 100%;
  }
}
@keyframes rotation2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
/* #index #section01 PC・タブレット表示のみの記述 */
@media screen and (min-width:481px){
  #index #section01 .pc_disp{
    display: block; /*ここはPCとタブレットは同一ソース */
  }
}
@media screen and (max-width:480px){
  #index #section01 .pc_disp{
    display: none;
  }
}
#index #section01 .pc_disp .product_box{
  position: relative;
  display: table;
  width: 100%;
  z-index: 0;
}
#index #section01 .pc_disp .product_box > div{
  display: table-cell;
  width: 33.33%;
  text-align: center;
}
@media screen and (min-width:769px){
  #index #section01 .pc_disp .product_box > div{
    padding-top: 338px;
    height: 775px;
  }
}
@media screen and (max-width:768px){
  #index #section01 .pc_disp .product_box > div{
    padding-top: 326px;
    height: 941px;
  }
}
#index #section01 .pc_disp .product_box > div .product{
  position: relative;
}
@media screen and (min-width:769px){
  #index #section01 .pc_disp .product_box > div .product{
    position: relative;
    width: 376px;
    margin: 0 auto;
  }
}
@media screen and (max-width:768px){
  #index #section01 .pc_disp .product_box > div .product{
    padding: 0 38px ;
  }
}
#index #section01 .pc_disp .product_box > div .product > img{
  position: relative;
  z-index: 1;
  width: 190px;
  height: auto;
}
#index #section01 .pc_disp .product_box > div .product > .copy{
  z-index: 0;
  width: 221px;
  height: auto;
}
#index #section01 .pc_disp .product_box > div .product > .new{
  position: absolute;
  z-index: 2;
}
@media screen and (min-width:769px){
  #index #section01 .pc_disp .product_box > div .product > .copy{
    position: absolute;
    top: 65px;
    left: -8px;
  }
  #index #section01 .pc_disp .product{
    text-align: right;
  }
  #index #section01 .pc_disp .product .copy{
    right: 216px;
  }
  #index #section01 .pc_disp .product_box > div .product > .new{
    width: 139px;
    height: auto;
    top: -34px;
    left: 132px;
  }
}
@media screen and (max-width:768px){
  #index #section01 .pc_disp .product_box > div .product{
    text-align: center;
  }
  #index #section01 .pc_disp .product_box > div .product > .copy{
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: auto;
  }
  #index #section01 .pc_disp .product_box > div .product > img{
    bottom: 16px;
  }
  #index #section01 .pc_disp .product_box > div .product > .new{
    width: 104px;
    height: auto;
    top: 114px;
    left: 8px;
  }
}
#index #section01 .pc_disp .ttl{
  text-align: center;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width:769px){
  #index #section01 .pc_disp .ttl{
    top: 80px;
  }
  #index #section01 .pc_disp .ttl img{
    width: 906px;
    height: auto;
  }
}
@media screen and (max-width:768px){
  #index #section01 .pc_disp .ttl{
    top: 118px;
    padding: 0 40px;
  }
  #index #section01 .pc_disp .ttl img{
    width: 100%;
    height: auto;
  }
}
#index #section01 .pc_disp .star{
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
}
@media screen and (min-width:769px){
  #index #section01 .pc_disp .star{
    background-image: url('/images/rescue/01_star.png');
    width: 165px;
    height: 775px;
  }
}
@media screen and (max-width:768px){
  #index #section01 .pc_disp .star{
    background-image: url('/images/rescue/01_star_tb.png');
    width: 92px;
    height: 941px;
  }
}
#index #section01 .pc_disp .cloud{
  background-position: center bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}
@media screen and (min-width:769px){
  #index #section01 .pc_disp .cloud{
    background-image: url('/images/rescue/01_cloud.png');
    height: 260px;
  }
}
@media screen and (max-width:768px){
  #index #section01 .pc_disp .cloud{
    background-image: url('/images/rescue/01_cloud_tb.png');
    height: 74px;
  }
}

/* #index #section01 SP表示のみの記述 */
#index #section01 .sp_disp{
  width: 100%;
  overflow: hidden;
  position: relative;
}
#index #section01 .sp_disp .slide{
  width: 300%;
  position: relative;
  z-index: 0;
  display: table;
  animation: slide 9s linear 0s infinite alternate none running;
}
@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  26% {
    transform: translate(0, 0);
  }
  36% {
    transform: translate(-33.33%, 0);
  }
  64% {
    transform: translate(-33.33%, 0);
  }
  74% {
    transform: translate(-66.66%, 0);
  }
  100% {
    transform: translate(-66.66%, 0);
  }
}
#index #section01 .sp_disp .product_box{
  overflow: hidden;
  position: relative;
  padding-bottom: 104px;
  display: table-cell;
}
#index #section01 .sp_disp .ttl{
  margin-top: 94px;
  position: relative;
  z-index: 1;
}
#index #section01 .sp_disp .product{
  position: relative;
  z-index: 1;
  height: 480px;
}
#index #section01 .sp_disp .product .product_img{
  height: 317px;
  width: auto;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#index #section01 .sp_disp .product .copy{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  text-align: center;
}
#index #section01 .sp_disp .product .new{
  position: absolute;
  z-index: 2;
  width: 122px;
  height: auto;
  left: 28px;
  top: 134px;
}
#index #section01 .sp_disp .product .copy > img{
  height: 182px;
  width: auto;
}
#index #section01 .sp_disp .star{
  overflow: hidden;
  width: 77px;
  height: 771px;
  position: absolute;
  z-index: 0;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#index #section01 .sp_disp .star1{
  background-image: url('/images/rescue/01_star1_sp.png');
  left: 0;
  top: 0;
}
#index #section01 .sp_disp .star2{
  background-image: url('/images/rescue/01_star2_sp.png');
  right: 0;
  top: 0;
}
#index #section01 .sp_disp .twinkle{
  width: 84px;
}
#index #section01 .sp_disp .twinkle1{
  background-image: url('/images/rescue/01_twinkle1_sp.png');
}
#index #section01 .sp_disp .twinkle2{
  background-image: url('/images/rescue/01_twinkle2_sp.png');
}
#index #section01 .sp_disp .cloud{
  background: none;
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
}

/* #index #section02 */
#index #section02{
  background-color: #fff;
  background-image: url('/images/rescue/02_bg.jpg');
  background-position: center top;
  background-size: auto auto;
  background-repeat: no-repeat;
  height: 651px;
  position: relative;
}
@media screen and (max-width:768px){
  #index #section02{
    background-image: url('/images/rescue/02_bg_tb.jpg');
    background-size: 100% auto;
    min-height: 613px;
    height: auto;
  }
}
@media screen and (max-width:480px){
  #index #section02{
    background-image: url('/images/rescue/02_bg_sp.jpg');
    background-size: 100% auto;
    min-height: 630px;
    height: auto;
  }
}
#index #section02 .container{
  overflow: hidden;
}
#index #section02 .ttl{
  width: 340px;
  height: 336px;
  margin: 78px auto 0;
  position: relative;
}
@media screen and (max-width:768px){
  #index #section02 .ttl{
    width: 325px;
    height: 326px;
    margin: 94px auto 0;
  }
}
@media screen and (max-width:480px){
  #index #section02 .ttl{
    width: 227px;
    height: 228px;
    margin: 52px auto 0;
  }
}
#index #section02 .balloon01 svg,
#index #section02 .balloon02 svg,
#index #section02 .balloon03 svg,
#index #section02 .balloon04 svg{
  height: 128px;
  width: 128px;
}
@media screen and (max-width:480px){
  #index #section02 .balloon01 svg,
  #index #section02 .balloon02 svg,
  #index #section02 .balloon03 svg,
  #index #section02 .balloon04 svg{
    width: 91px;
    height: 89px;
  }
}
#index #section02 .balloon01{
  width: 171px;
  height: 128px;
  background-image: url('/images/rescue/02_img2.png');
  background-position: left top;
  background-size: auto auto;
  background-repeat: no-repeat;
  left: 175px;
  top: 104px;
  position: absolute;
}
@media screen and (max-width:768px){
  #index #section02 .balloon01{
    width: 168px;
    height: 126px;
    background-image: url('/images/rescue/02_img2_tb.png');
    background-size: 100% 100%;
    left: 61px;
    top: 110px;
  }
}
@media screen and (max-width:480px){
  #index #section02 .balloon01{
    width: 95px;
    height: 94px;
    background-image: url('/images/rescue/02_img2_sp.png');
    background-size: 100% 100%;
    left: 24px;
    top: 17px;
  }
}
#index #section02 .balloon02{
  width: 181px;
  height: 128px;
  background-image: url('/images/rescue/02_img3.png');
  background-position: left bottom;
  background-size: auto auto;
  background-repeat: no-repeat;
  left: 165px;
  top: 277px;
  position: absolute;
}
@media screen and (max-width:768px){
  #index #section02 .balloon02{
    width: 175px;
    height: 127px;
    background-image: url('/images/rescue/02_img3_tb.png');
    background-size: 100% 100%;
    left: 51px;
    top: 283px;
  }
}
@media screen and (max-width:480px){
  #index #section02 .balloon02{
    width: 95px;
    height: 91px;
    background-image: url('/images/rescue/02_img3_sp.png');
    background-size: 100% 100%;
    left: 24px;
    top: 223px;
  }
}
#index #section02 .balloon03{
  width: 183px;
  height: 128px;
  background-image: url('/images/rescue/02_img4.png');
  background-position: right top;
  background-size: auto auto;
  background-repeat: no-repeat;
  right: 163px;
  top: 75px;
  position: absolute;
  text-align: right;
}
@media screen and (max-width:768px){
  #index #section02 .balloon03{
    width: 180px;
    height: 128px;
    background-image: url('/images/rescue/02_img4_tb.png');
    background-size: 100% 100%;
    right: 53px;
    top: 81px;
  }
}
@media screen and (max-width:480px){
  #index #section02 .balloon03{
    width: 99px;
    height: 94px;
    background-image: url('/images/rescue/02_img4_sp.png');
    background-size: 100% 100%;
    right: 24px;
    top: 17px;
  }
}
#index #section02 .balloon04{
  width: 188px;
  height: 128px;
  background-image: url('/images/rescue/02_img5.png');
  background-position: right bottom;
  background-size: auto auto;
  background-repeat: no-repeat;
  right: 158px;
  top: 284px;
  position: absolute;
  text-align: right;
}
@media screen and (max-width:768px){
  #index #section02 .balloon04{
    width: 180px;
    height: 128px;
    background-image: url('/images/rescue/02_img5_tb.png');
    background-size: 100% 100%;
    right: 48px;
    top: 290px;
  }
}
@media screen and (max-width:480px){
  #index #section02 .balloon04{
    width: 99px;
    height: 91px;
    background-image: url('/images/rescue/02_img5_sp.png');
    background-size: 100% 100%;
    right: 24px;
    top: 223px;
  }
}
#index #section02 .txt{
  margin-top: 46px;
  text-align: center;
}
#index #section02 .txt img{
  margin: 0 auto;
}
@media screen and (max-width:480px){
  #index #section02 .txt{
    margin-top: 32px;
  }
}

/* #index #section03 */
#index .raindrops_box{
  width: 100%;
  overflow: hidden;
}
#index #raindrops{
  background-color: #fff;
  height: 100px;
  width: 1920px;
}
@media screen and (max-width:768px){
  #index #raindrops{
    height: 65px;
  }
}
#index .wave{
}
#index .wave canvas{
  height: 50px;
  width: 100%;
  display: block;
}
#index #section03{
  padding: 30px 0 80px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#003b96+16,008ac8+100 */
  background: #003b96; /* Old browsers */
  background: -moz-linear-gradient(top, #003b96 16%, #008ac8 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #003b96 16%,#008ac8 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #003b96 16%,#008ac8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003b96', endColorstr='#008ac8',GradientType=0 ); /* IE6-9 */
}
@media screen and (min-width:769px){
  #index #section03 .img{
    float: left;
    height: 464px;
    width: 464px;
  }
  #index #section03 .txt{
    float: right;
  }
}
@media screen and (max-width:768px){
  #index #section03{
    padding: 64px 0 96px;
  }
  #index #section03 .img{
    margin: 40px auto 0;
    height: 464px;
    width: 464px;
  }
  #index #section03 .txt{
    padding: 0 40px;
  }
}
@media screen and (max-width:480px){
  #index #section03{
    padding: 39px 0 72px;
  }
  #index #section03 .img{
    padding: 0 24px;
    margin-top: 32px;
    width: 100%;
    height: auto;
  }
  #index #section03 .txt{
    padding: 0 24px;
  }
}
#index #section03 .txt .ttl{
  display: table;
  width: 447px;
}
@media screen and (max-width:768px){
  #index #section03 .txt .ttl{
    width: 100%;
  }
}
@media screen and (max-width:480px){
  #index #section03 .txt .ttl{
    width: 100%;
    margin-top: 16px;
  }
  #index #section03 .txt .ttl_icon{
    display: none;
  }
}
#index #section03 .txt .ttl > div{
  display: table-cell;
}
#index #section03 .txt .ttl .ttl_txt{
  animation: translate1 1s ease-in-out 0s infinite alternate none running;
}
@keyframes translate1 {
  0% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(3px);
  }
}
#index #section03 .txt .ttl .ttl_img{
  animation: translate2 1s ease-in-out 0.5s infinite alternate none running;
}
@keyframes translate2 {
  0% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-3px);
  }
}
#index #section03 .txt p{
  margin-top: 46px;
}
@media screen and (max-width:480px){
  #index #section03 .txt p{
    margin-top: 32px;
  }
}

/* #index #section04 */
#index #section04{
  position: relative;
  overflow: hidden;
}
#index #section04 .product_box{
  position: relative;
  display: table;
  width: 100%;
  z-index: 0;
  text-align: center;
}
#index #section04 .product_box > div{
  display: table-cell;
  width: 33.33%;
  text-align: center;
  padding-top: 227px;
  padding-bottom: 172px;
  position: relative;
}
@media screen and (max-width:768px){
  #index #section04 .product_box > div{
    padding: 203px 0 128px;
  }
  #index #section04 .product_box > div img{
    max-width: 200px;
    height: auto;
  }
}
@media screen and (max-width:480px){
  #index #section04 .product_box{
    display: block;
  }
  #index #section04 .product_box > div{
    display: block;
    width: 100%;
    padding: 0 24px 0;
  }
  #index #section04 .product_box > div img{
    max-width: 100%;
    height: auto;
  }
}
#index #section04 .product_box .pink{
  background-color: #e61869;
}
#index #section04 .product_box .blue{
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#003b96+9,008ac8+100 */
  background: #003b96; /* Old browsers */
  background: -moz-linear-gradient(top, #003b96 9%, #008ac8 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #003b96 9%,#008ac8 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #003b96 9%,#008ac8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003b96', endColorstr='#008ac8',GradientType=0 ); /* IE6-9 */
}
#index #section04 .product_box .yellow{
  background-color: #ffb647;
}
@media screen and (min-width:769px){
  #index #section04 .product_box .blue{
    background-color: #008ac8;
    background-image: url('/images/rescue/04_blue_bg.jpg');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #index #section04 .product_box .yellow{
    background-image: url('/images/rescue/04_yellow_bg.jpg');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width:768px){
  #index #section04 .product_box .blue{
    background-image: url('/images/rescue/04_blue_bg_tb.jpg');
    background-position: center center;
    background-size: auto 100%;
  }
  #index #section04 .product_box .yellow{
    background-image: url('/images/rescue/04_yellow_bg_tb.jpg');
    background-position: center center;
    background-size: auto 100%;
  }
}
@media screen and (max-width:480px){
  #index #section04 .product_box .pink{
    padding-top: 202px;
    padding-bottom: 76px;
  }
  #index #section04 .product_box .blue{
    padding-top: 76px;
    padding-bottom: 76px;
    background-image: url('/images/rescue/04_blue_bg_sp.jpg');
    background-position: center center;
    background-size: auto 100%;
  }
  #index #section04 .product_box .yellow{
    padding-top: 76px;
    padding-bottom: 95px;
    background-image: url('/images/rescue/04_yellow_bg_sp.jpg');
    background-position: center center;
    background-size: auto 100%;
  }
}
#index #section04 .product_box .btn{
  text-align: center;
  margin-top: 13px;
}
#index #section04 .product_box .yellow_box{
  margin: 0 auto;
  position: relative;
}
#index #section04 .product_box .new{
  position: absolute;
}
@media screen and (min-width:769px){
  #index #section04 .product_box .yellow_box{
    width: 250px;
  }
  #index #section04 .product_box .new{
    width: 114px;
    height: 114px;
    top: -54px;
    left: -54px;
  }
}
@media screen and (max-width:768px){
  #index #section04 .product_box .yellow_box{
    max-width: 200px;
  }
  #index #section04 .product_box .new{
    width: 104px;
    height: 104px;
    top: 77px;
    left: -20px;
  }
  #index #section04 .product_box .new img{
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:480px){
  #index #section04 .product_box .new{
    width: 98px;
    height: 98px;
    top: 14px;
    left: 14px;
  }
}
#index #section04 .star{
  background-image: url('/images/rescue/04_star.png');
  background-position: right top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 165px;
  height: 1006px;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
}
@media screen and (max-width:768px){
  #index #section04 .star{
    background-image: url('/images/rescue/04_star_tb.png');
    background-size: auto 100%;
    width: 53px;
    height: 100%;
  }
}
@media screen and (max-width:480px){
  #index #section04 .star{
    background-image: url('/images/rescue/04_star_sp.png');
    background-size: auto 100%;
    width: 53px;
    height: 100%;
  }
}
#index #section04 .cloud{
  //background-image: url('/images/rescue/04_cloud.png');
  background-position: center bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  height: 88px;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}
@media screen and (max-width:768px){
  #index #section04 .cloud{
    background: none;
    width: 100%;
    height: auto;
  }
}
#index #section04 .ttl{
  position: absolute;
  z-index: 1;
  top: 96px;
  left: 0;
  text-align: center;
  width: 100%;
}
@media screen and (max-width:768px){
  #index #section04 .ttl{
    padding: 0 40px;
    top: 96px;
  }
}
@media screen and (max-width:480px){
  #index #section04 .ttl{
    padding: 0 24px;
    top: 64px;
  }
}
#index #section04 .nav{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 225px;
}

#index #section04 .nav.fix{
  position: fixed;
}
#index #section04 .nav.stop{
  display: none;
}
#index #section04 .sub_nav{
  position: absolute;
  z-index: 2;
  top: 460px;
  left: 0;
  text-align: center;
  width: 100%;
  visibility: hidden;
}
#index #section04 .sub_nav.stop{
  visibility: visible;
  animation: slide2 1s linear 0s infinite alternate none running;
}
@keyframes slide2 {
  0% {
    transform: translate(1%, 0);
  }
  100% {
    transform: translate(-1%, 0);
  }
}
@media screen and (max-width:768px){
  #index #section04 .nav,
  #index #section04 .nav.fix,
  #index #section04 .nav.stop,
  #index #section04 .sub_nav,
  #index #section04 .sub_nav.stop{
    display: none;
  }
}


/* #index #section05 */
#index #section05{
    position: relative;
  background:linear-gradient(90deg,#f5f4f2 0%,#f5f4f2 50%,#d9bf79 50%,#d9bf79 100%);
  overflow: hidden;
  padding-bottom: 94px;
}

#index #section05::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 100%;
  background-image: url(/images/rescue/common/bg-star_pc.png);
  background-position: top center;
  background-size: 100% auto;
  background-repeat: repeat-y:
}

@media screen and (max-width:768px){
  #index #section05{
    padding-bottom: 94px;
  }
}
@media screen and (max-width:480px){
  #index #section05{
    padding-bottom: 72px;
  }

  #index #section05::before {
    background-image: url(/images/rescue/common/bg-star_sp.png);
  }
}
#index #section05 .container{
  max-width: 1166px;
}
#index #section05 .ttl{
  text-align: center;
  margin-top: 46px;
}
#index #section05 .ttl img{
  height: 75px;
  width: auto;
}
@media screen and (max-width:768px){
  #index #section05 .ttl{
    margin-top: 45px;
  }
}
@media screen and (max-width:480px){
  #index #section05 .ttl{
    margin-top: 40px;
  }
  #index #section05 .ttl img{
    height: 70px;
  }
}
#index #section05 .carousel{
  margin-top: 48px;
  position: relative;
}
@media screen and (max-width:480px){
  #index #section05 .carousel{
    margin-top: 32px;
  }
}
#index #section05 .owl-carousel .owl-nav.disabled{
  display: block;
}
#index #section05 .owl-carousel .owl-nav .owl-prev,
#index #section05 .owl-carousel .owl-nav .owl-next{
  position: absolute;
  width: 64px;
  height: 64px;
  color: transparent;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#index #section05 .owl-carousel .owl-nav .owl-next{
  background-image: url('/images/rescue/05_nav_next.png');
  right: -60px;
}
#index #section05 .owl-carousel .owl-nav .owl-prev{
  background-image: url('/images/rescue/05_nav_prev.png');
  left: -60px;
}
@media screen and (max-width:768px){
  #index #section05 .owl-carousel .owl-nav .owl-next{
    right: 40px;
  }
  #index #section05 .owl-carousel .owl-nav .owl-prev{
    left: 40px;
  }
}
@media screen and (max-width:480px){
  #index #section05 .owl-carousel .owl-nav .owl-next{
    right: 24px;
    width: 64px;
    height: 64px;
  }
  #index #section05 .owl-carousel .owl-nav .owl-prev{
    left: 24px;
    width: 64px;
    height: 64px;
  }
}


/*==============================================================

  7. 商品個別

================================================================*/

/* #product #section01 */
#product #section01{
  background-position: center top;
  background-size: auto auto;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#product.pink #section01{
  background-color: #e61869;
}
#product.blue #section01{
  background-color: #008ac8;
}
#product.yellow #section01{
  background-color: #ffb647;
}
@media screen and (min-width:769px){
  #product.pink #section01{
    background-image: url('/images/rescue/hoshitsu/01_bg.jpg');
    width: 100%;
    height: 775px;
  }
  #product.pink #section01 .txt{
    height: 71px;
    width: 800px;
    margin: 262px auto 0;
  }
  #product.blue #section01{
    background-image: url('/images/rescue/off/01_bg.jpg');
    width: 100%;
    height: 775px;
  }
  #product.blue #section01 .txt{
    height: 52px;
    width: 566px;
    margin: 268px auto 0;
  }
  #product.yellow #section01{
    background-image: url('/images/rescue/vitamin/01_bg.jpg');
    width: 100%;
    height: 775px;
  }
}
@media screen and (max-width:768px){
  #product.pink #section01{
    background-image: url('/images/rescue/hoshitsu/01_bg_tb.jpg');
    background-size: 100% auto;
    width: 100%;
    height: 1080px;
  }
  #product.pink #section01 .txt{
    height: 97px;
    width: 408px;
    margin: 180px auto 0;
  }
  #product.blue #section01{
    background-image: url('/images/rescue/off/01_bg_tb.jpg');
    background-size: 100% auto;
    width: 100%;
    height: 1115px;
  }
  #product.blue #section01 .txt{
    height: 64px;
    width: 226px;
    margin: 204px auto 0;
    text-align: right;
  }
  #product.yellow #section01{
    background-image: url('/images/rescue/vitamin/01_bg_tb.jpg');
    background-size: 100% auto;
    width: 100%;
    height: 1115px;
  }
}
@media screen and (max-width:480px){
  #product.pink #section01{
    background-image: url('/images/rescue/hoshitsu/01_bg_sp.jpg');
    background-size: 100% auto;
    width: 100%;
    height: 838px;
  }
  #product.pink #section01 .txt{
    height: 53px;
    width: 215px;
    margin: 123px auto 0;
  }
  #product.blue #section01{
    background-image: url('/images/rescue/off/01_bg_sp.jpg');
    background-size: 100% auto;
    width: 100%;
    height: 848px;
  }
  #product.blue #section01 .txt{
    height: 34px;
    width: 123px;
    margin: 136px auto 0;
    text-align: right;
  }
  #product.yellow #section01{
    background-image: url('/images/rescue/vitamin/01_bg_sp.jpg');
    background-size: 100% auto;
    width: 100%;
    height: 848px;
  }
}
#product #section01 .txt img{
  width: auto;
  height: 100%;
  animation: rotation1 2s linear 0s infinite alternate none running;
}
#product #section01 .cloud{
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background-position: center bottom;
  background-size: auto auto;
  background-repeat: no-repeat;
}
@media screen and (min-width:769px){
  #product #section01 .cloud{
    height: 260px;
    background-image: url('/images/rescue/hoshitsu/01_cloud.png');
  }
  #product.blue #section01 .star1{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 165px;
    height: 775px;
    background-position: left top;
    background-image: url('/images/rescue/off/01_star1.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  #product.blue #section01 .star2{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 165px;
    height: 775px;
    background-position: left top;
    background-image: url('/images/rescue/off/01_star2.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  #product.yellow #section01 .star1{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 158px;
    height: 775px;
    background-position: left top;
    background-image: url('/images/rescue/vitamin/01_star1.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  #product.yellow #section01 .star2{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 157px;
    height: 775px;
    background-position: left top;
    background-image: url('/images/rescue/vitamin/01_star2.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width:768px){
  #product #section01 .cloud{
    height: 131px;
    background-size: auto 100%;
    background-image: url('/images/rescue/hoshitsu/01_cloud_tb.png');
  }
}
@media screen and (max-width:480px){
  #product #section01 .cloud{
    height: 77px;
    background-size: auto 100%;
    background-image: url('/images/rescue/hoshitsu/01_cloud_sp.png');
  }
}

/* #product #section02 */
#product #section02{
  background-color: #fff;
  background-position: center top;
  background-size: auto auto;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (min-width:769px){
  #product #section02{
    background-image: url('/images/rescue/hoshitsu/02_bg.jpg');
    padding: 58px 0 40px;
  }
}
@media screen and (max-width:768px){
  #product #section02{
    background-image: url('/images/rescue/hoshitsu/02_bg_tb.jpg');
    background-size: 100% auto;
    padding: 48px 0 56px;
  }
  #product.blue #section02{
    background-image: url('/images/rescue/off/02_bg_tb.jpg');
  }
}
@media screen and (max-width:480px){
  #product #section02{
    background-image: url('/images/rescue/hoshitsu/02_bg_sp.jpg');
    background-size: 100% auto;
    padding: 32px 0 32px;
  }
  #product.blue #section02{
    background-image: url('/images/rescue/off/02_bg_sp.jpg');
  }
}


/* #product #section03 */
#product .raindrops_box{
  width: 100%;
  overflow: hidden;
}
#product #raindrops{
  background-color: #fff;
  height: 65px;
  width: 1920px;
}
#product .wave{
}
#product .wave canvas{
  height: 50px;
  width: 100%;
  display: block;
}
#product #section03{
  padding: 30px 0 80px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#003b96+16,008ac8+100 */
  background: #003b96; /* Old browsers */
  background: -moz-linear-gradient(top, #003b96 16%, #008ac8 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #003b96 16%,#008ac8 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #003b96 16%,#008ac8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003b96', endColorstr='#008ac8',GradientType=0 ); /* IE6-9 */
}
@media screen and (min-width:769px){
  #product #section03 .img{
    float: left;
    height: 464px;
    width: 464px;
  }
  #product #section03 .txt{
    float: right;
  }
}
@media screen and (max-width:768px){
  #product #section03{
    padding: 64px 0 96px;
  }
  #product #section03 .img{
    margin: 40px auto 0;
    height: 464px;
    width: 464px;
  }
  #product #section03 .txt{
    padding: 0 40px;
  }
}
@media screen and (max-width:480px){
  #product #section03{
    padding: 39px 0 72px;
  }
  #product #section03 .img{
    padding: 0 24px;
    margin-top: 32px;
    width: 100%;
    height: auto;
  }
  #product #section03 .txt{
    padding: 0 24px;
  }
}
#product #section03 .txt .ttl{
  display: table;
  width: 447px;
}
@media screen and (max-width:768px){
  #product #section03 .txt .ttl{
    width: 100%;
  }
}
@media screen and (max-width:480px){
  #product #section03 .txt .ttl{
    width: 100%;
    margin-top: 16px;
  }
  #product #section03 .txt .ttl_icon{
    display: none;
  }
}
#product #section03 .txt .ttl > div{
  display: table-cell;
}
#product #section03 .txt .ttl .ttl_txt{
  animation: translate1 1s ease-in-out 0s infinite alternate none running;
}
#product #section03 .txt .ttl .ttl_img{
  animation: translate2 1s ease-in-out 0.5s infinite alternate none running;
}
#product #section03 .txt p{
  margin-top: 46px;
}
@media screen and (max-width:480px){
  #product #section03 .txt p{
    margin-top: 32px;
  }
}


/* #product #section04 */
#product #section04{
  position: relative
}
#product.pink #section04{
  background-color: #e61869;
}
#product.blue #section04{
  background-color: transparent;
}
@media screen and (min-width:769px){
  #product #section04{
    padding: 80px 0 180px;
  }
  #product.blue #section04{
    padding: 80px 0 0;
    position: relative;
    z-index: 5;
  }
  #product.yellow #section04{
    padding: 80px 0 0;
    position: relative;
    z-index: 5;
  }
  #product #section04 .btn{
    /* padding: 30px 0 48px; */
    padding: 0 0 48px;
    text-align: center;
  }
}
@media screen and (max-width:768px){
  #product #section04{
    padding: 96px 0 230px;
  }
  #product.blue #section04{
    padding: 96px 0 0px;
  }
  #product.yellow #section04{
    padding: 96px 0 0px;
  }
  #product #section04 .btn{
    /* padding: 30px 0 48px; */
    padding: 0 0 48px;
    text-align: center;
  }
  #product #section04 .btn img{
    height: 40px;
    width: auto;
  }
}
@media screen and (max-width:480px){
  #product #section04{
    padding: 72px 0 162px;
  }
  #product #section04 .info{
    padding: 0 24px;
  }
  #product #section04 .info .box{
    margin-top: 30px;
    height: 56px;
    overflow: hidden;
  }
  #product #section04 .info .box .ttl{
    background-image: url('/images/rescue/hoshitsu/04_ttl_bg1_sp.png');
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 55px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  #product #section04 .info .box .ttl.active{
    background-image: url('/images/rescue/hoshitsu/04_ttl_bg2_sp.png');
  }
  #product #section04 .info .box .ttl img{
    display: block;
    max-height: 100%;
    height: auto;
    width: auto;
  }
  #product.blue #section04 .info .box .ttl{
    background-image: url('/images/rescue/off/04_ttl_bg1_sp.png');
    border-top: 1px solid #003b96;
    border-bottom: 1px solid #003b96;
  }
  #product.blue #section04 .info .box .ttl.active{
    background-image: url('/images/rescue/off/04_ttl_bg2_sp.png');
  }
  #product.yellow #section04 .info .box .ttl{
    background-image: url('/images/rescue/vitamin/04_ttl_bg1_sp.png');
    border-top: 1px solid #00b7b2;
    border-bottom: 1px solid #00b7b2;
  }
  #product.yellow #section04 .info .box .ttl.active{
    background-image: url('/images/rescue/vitamin/04_ttl_bg2_sp.png');
  }
  #product #section04 .btn{
    /* padding: 30px 24px 30px; */
    padding: 0 0 30px;
    text-align: center;
  }
  #product #section04 .btn img{
    height: 32px;
    width: auto;
  }
}
#product #section04 .cloud{
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background-position: center bottom;
  background-size: auto auto;
  background-repeat: no-repeat;
}
@media screen and (min-width:769px){
  #product.pink #section04 .cloud{
    height: 319px;
    background-image: url('/images/rescue/hoshitsu/04_cloud.png');
  }
}
@media screen and (max-width:768px){
  #product.pink #section04 .cloud{
    height: 147px;
    background-size: auto 100%;
    background-image: url('/images/rescue/hoshitsu/04_cloud_tb.png');
  }
}
@media screen and (max-width:480px){
  #product.pink #section04 .cloud{
    height: 112px;
    background-size: auto 100%;
    background-image: url('/images/rescue/hoshitsu/04_cloud_sp.png');
  }
}


/* #product #section05 */
#product #section05{
  position: relative;
  overflow: hidden;
}
#product.pink #section05{
  background-color: #fdd000;
}
#product.blue #section05 .cloud_mask{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
#product.yellow #section05 .cloud_mask{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

#product #section05 .btn_shop {
  margin: 20px auto 0;
}
@media screen and (min-width:769px){
  #product.blue #section05{
    padding-top: 319px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#003b96+16,008ac8+100 */
    background: #003b96; /* Old browsers */
    background: -moz-linear-gradient(top, #003b96 16%, #008ac8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #003b96 16%,#008ac8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #003b96 16%,#008ac8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003b96', endColorstr='#008ac8',GradientType=0 ); /* IE6-9 */
    position: relative;
    z-index: 0;
    margin-top: -139px;
  }
  #product.blue #section05 .cloud_mask{
    height: 319px;
    background-image: url('/images/rescue/off/05_cloud_mask.png');
  }
  #product.blue #section05 .star1{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 165px;
    height: 960px;
    background-position: left top;
    background-image: url('/images/rescue/off/05_star1.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.blue #section05 .star2{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 165px;
    height: 960px;
    background-position: left top;
    background-image: url('/images/rescue/off/05_star2.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.yellow #section05{
    padding-top: 319px;
    background-color: #ffb647;
    position: relative;
    z-index: 0;
    margin-top: -139px;
  }
  #product.yellow #section05 .cloud_mask{
    height: 319px;
    background-image: url('/images/rescue/vitamin/05_cloud_mask.png');
  }
  #product.yellow #section05 .star1{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 158px;
    height: 1072px;
    background-position: left top;
    background-image: url('/images/rescue/vitamin/05_star1.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.yellow #section05 .star2{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 157px;
    height: 1072px;
    background-position: left top;
    background-image: url('/images/rescue/vitamin/05_star2.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width:768px){
  #product.blue #section05{
    background-color: #008ac8;
    padding-top: 196px;
    background-image: url('/images/rescue/off/05_bg_tb.jpg');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.yellow #section05{
    background-color: #ffb647;
    background-image: url('/images/rescue/vitamin/05_bg_tb.jpg');
    padding-top: 146px;
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.blue #section05 .cloud_mask{
    height: 196px;
    background-image: url('/images/rescue/off/05_cloud_mask_tb.png');
  }
  #product.yellow #section05 .cloud_mask{
    height: 196px;
    background-image: url('/images/rescue/vitamin/05_cloud_mask_tb.png');
  }
  #product.yellow #section05 .cloud_mask{
    height: 196px;
    background-image: url('/images/rescue/off/05_cloud_mask_tb.png');
  }
}
@media screen and (max-width:480px){
  #product.blue #section05{
    background-color: #008ac8;
    padding-top: 162px;
    background-image: url('/images/rescue/off/05_bg_sp.jpg');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.yellow #section05{
    background-color: #ffb647;
    padding-top: 122px;
    background-image: url('/images/rescue/vitamin/05_bg_sp.jpg');
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #product.blue #section05 .cloud_mask{
    height: 162px;
    background-image: url('/images/rescue/off/05_cloud_mask_sp.png');
  }
  #product.yellow #section05 .cloud_mask{
    height: 162px;
    background-image: url('/images/rescue/vitamin/05_cloud_mask_sp.png');
  }

    #product #section05 .btn_shop {
      margin: 30px 10px 0 auto;
    }
}
#product #section05 .ttl{
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (min-width:769px){
  #product #section05{
    padding: 0 0 130px;
  }
  #product #section05 .img,
  #product #section05 .txt{
    float: left;
  }
  #product #section05 .img{
    padding-left: 154px;
    width: 50%;
  }
  #product #section05 .img img{
    width: 262px;
    height: auto;
  }
    #product.yellow #section05 .ttl {
      font-size: 32px;
      color: #fff;
    }
  #product #section05 .txt{
    width: 295px;
    padding-left: 49px;
    padding-top: 79px;
  }

  #product #section05 .txt .name{
    display: block;
    margin-bottom: 12px;
  }
    #product.yellow .txt .item-name {
        text-align: center;
        font-size: 24px;
        line-height: 1;
    }
    #product.yellow .txt .item-name span {
        font-size: 18px;
    }
    #product.yellow .txt .detail {
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
    }

  #product #section05 .txt .btn{
    padding-top: 20px;
  }
  #product #section05 .txt .btn input[type="submit"]{
    width: 246px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: transparent;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  #product.pink #section05 .txt .btn input[type="submit"]{
    background-image: url('/images/rescue/hoshitsu/05_btn1.png');
  }
  #product.blue #section05 .txt .btn input[type="submit"]{
    background-image: url('/images/rescue/off/05_btn1.png');
  }
  #product.yellow #section05 .txt .btn input[type="submit"]{
    background-image: url('/images/rescue/vitamin/05_btn1.png');
  }
  #product #section05 .txt p{
    text-align: center;
    margin-top: 20px;
  }
}
@media screen and (max-width:768px) and (min-width:481px){
  #product #section05{
    padding: 0 0 98px;
  }
  #product #section05 .container{
    max-width: 572px;
    margin-top: 48px;
  }
  #product #section05 .img,
  #product #section05 .txt{
    float: left;
  }
  #product #section05 .img{
    padding-left: 56px;
    width: 50%;
  }
  #product #section05 .img img{
    width: 190px;
    height: auto;
  }
    #product.yellow #section05 .ttl {
      font-size: 24px;
      color: #fff;
    }

  #product #section05 .txt{
    width: 286px;
    padding-left: 40px;
    padding-top: 0;
  }

  #product #section05 .txt .name{
    display: block;
    margin-bottom: 12px;
  }

  #product.yellow #section05 .txt .name{
    display: inline;
    margin-bottom: 0;
  }
    #product.yellow .txt .item-name {
        text-align: center;
        font-size: 24px;
        line-height: 1;
    }
    #product.yellow .txt .item-name span {
        font-size: 18px;
    }
    #product.yellow .txt .detail {
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
    }
  #product #section05 .txt .btn{
    padding-top: 20px;
  }
  #product #section05 .txt .btn{
    width: 246px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: transparent;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  #product.pink #section05 .txt .btn input[type="submit"]{
    background-image: url('/images/rescue/hoshitsu/05_btn1.png');
  }
  #product.blue #section05 .txt .btn input[type="submit"]{
    background-image: url('/images/rescue/off/05_btn1.png');
  }
  #product.yellow #section05 .txt .btn input[type="submit"]{
    background-image: url('/images/rescue/vitamin/05_btn1.png');
  }
  #product #section05 .txt p{
    text-align: center;
    margin-top: 20px;
  }
}
@media screen and (max-width:480px){
  #product #section05{
    padding: 0 0 96px;
  }
  #product #section05 .container{
    margin-top: 24px;
    padding: 0 24px;
  }
  #product #section05 .img{
    text-align: center;
  }
  #product #section05 .img img{
    width: 190px;
    height: auto;
  }
    #product.yellow #section05 .ttl {
      font-size: 24px;
      color: #fff;
    }
  #product #section05 .txt{
    display: none;
  }
  #product #section05 .sp_txt{
    margin-top: 20px;
  }
    #product.yellow .sp_txt .item-name {
        text-align: center;
        font-size: 24px;
        line-height: 1;
    }
    #product.yellow .sp_txt .item-name span {
        font-size: 18px;
    }
    #product.yellow .sp_txt .detail {
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
    }
  #product #section05 .sp_txt .btn{
    padding-top: 20px;
  }
  #product #section05 .sp_txt .btn input[type="submit"]{
    width: 327px;
    height: 41px;
    border: none;
    background-color: transparent;
    color: transparent;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  #product.pink #section05 .sp_txt .btn input[type="submit"]{
    background-image: url('/images/rescue/hoshitsu/05_btn1_sp.png');
  }
  #product.blue #section05 .sp_txt .btn input[type="submit"]{
    background-image: url('/images/rescue/off/05_btn1_sp.png');
  }
  #product.yellow #section05 .sp_txt .btn input[type="submit"]{
    background-image: url('/images/rescue/vitamin/05_btn1_sp.png');
  }
  #product #section05 .sp_txt p{
    text-align: center;
    margin-top: 20px;
  }
}
@media screen and (max-width:320px){
  #product #section05 .sp_txt .btn input[type="submit"]{
    width: 272px;
    height: 34px;
  }
}
#product #section05 .txt_link a{
  font-size: 14px;
  color: #e61869;
  text-decoration: underline;
  cursor: pointer;
}
#product.blue #section05 .txt_link a{
  color: #fff;
}
#product.yellow #section05 .txt_link a{
  color: #fff;
}
#product #section05 .cloud{
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background-position: center bottom;
  background-size: auto auto;
  background-repeat: no-repeat;
}
@media screen and (min-width:769px){
  #product #section05 .cloud{
    height: 49px;
    background-image: url('/images/rescue/hoshitsu/05_cloud.png');
  }
}
@media screen and (max-width:768px){
  #product #section05 .cloud{
    height: 39px;
    background-image: url('/images/rescue/hoshitsu/05_cloud_tb.png');
    background-size: 100% auto;
  }
}

/* #product .modal */
#product .modal{
  position: fixed;
  width: 100%;
  z-index: 9998;
  display: none;
  color: #9c9a99;
}
#product .modal.active{
  display: block;
}
#product .modal .modal_txt{
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: calc( 100vh - 80px );
  width: calc( 100% - 80px );
  max-width:  992px;
  z-index: 1;
}
#product .modal .modal_txt .inner{
  padding: 40px;
  position: relative;
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width:480px){
  #product .modal .modal_txt{
    width: calc( 100% - 48px );
  }
  #product .modal .modal_txt .inner{
    padding: 32px 24px;
  }
}
#product .modal .modal_txt .inner h2{
  font-size: 20px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  text-align: center;
}
#product .modal .modal_txt .inner p{
  font-size: 12px;
  padding-bottom: 16px;
  text-align: left;
}
#product .modal .modal_txt .inner p span{
  font-size: 16px;
}
#product .modal .modal_txt .inner .txt_close{
  border-top: 1px solid #e6e6e6;
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (max-width:480px){
  #product .modal .modal_txt .inner .txt_close{
    padding-bottom: 32px;
  }
}
#product .modal .modal_txt .inner .txt_close a{
  background-color: rgba(153,153,153,0.94);
  color: #fff;
  display: inline-block;
  padding: 8px 24px;
}
#product .modal .modal_txt .close{
  background-color: rgba(153,153,153,0.94);
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
#product .modal .modal_txt .close a{
  display: block;
  padding: 12px;
  text-align: center;
  line-height: 1;
}
#product .modal .bg{
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}


/* #product #section06 */
#product #section06{
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 94px;
}
@media screen and (max-width:768px){
  #product #section06{
    padding-bottom: 94px;
  }
}
@media screen and (max-width:480px){
  #product #section06{
    padding-bottom: 72px;
  }
}
#product #section06 .container{
  max-width: 1166px;
}
#product #section06 .ttl{
  text-align: center;
  margin-top: 46px;
}
#product #section06 .ttl img{
  height: 30px;
  width: auto;
}
@media screen and (max-width:768px){
  #product #section06 .ttl{
    margin-top: 85px;
  }
}
@media screen and (max-width:480px){
  #product #section06 .ttl{
    margin-top: 58px;
  }
  #product #section06 .ttl img{
    height: 28px;
  }
}
#product #section06 .carousel{
  margin-top: 48px;
  position: relative;
}
@media screen and (max-width:480px){
  #product #section06 .carousel{
    margin-top: 32px;
  }
}
#product #section06 .owl-carousel .owl-nav.disabled{
  display: block;
}
#product #section06 .owl-carousel .owl-nav .owl-prev,
#product #section06 .owl-carousel .owl-nav .owl-next{
  position: absolute;
  width: 64px;
  height: 64px;
  color: transparent;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#product #section06 .owl-carousel .owl-nav .owl-next{
  background-image: url('/images/rescue/05_nav_next.png');
  right: -60px;
}
#product #section06 .owl-carousel .owl-nav .owl-prev{
  background-image: url('/images/rescue/05_nav_prev.png');
  left: -60px;
}
@media screen and (max-width:768px){
  #product #section06 .owl-carousel .owl-nav .owl-next{
    right: 40px;
  }
  #product #section06 .owl-carousel .owl-nav .owl-prev{
    left: 40px;
  }
}
@media screen and (max-width:480px){
  #product #section06 .owl-carousel .owl-nav .owl-next{
    right: 24px;
    width: 64px;
    height: 64px;
  }
  #product #section06 .owl-carousel .owl-nav .owl-prev{
    left: 24px;
    width: 64px;
    height: 64px;
  }
}
