@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-lg {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/*共通*/
.mo_fa_wrap {
  overflow: hidden;
}

body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: black;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
}

.wrap {
  margin: 0 20px;
  position: relative;
  z-index: 2;
}

p {
  color: #231815;
  line-height: 1.4;
}

/* -------------------------------------
        ＴＯＰ
------------------------------------- */
.top_logo {
  position: absolute;
  z-index: 10;
  width: 60px;
  left: 10px;
  top: 30px;
}
@media screen and (max-width: 767px) {
  .top_logo {
    width: 45px;
    top: 30px;
  }
}

.fv {
  position: relative;
  height: 50vh;
  min-height: 400px;
  border-top: 20px solid #F4C9C9;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 60vh;
  }
}
.fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10%;
  background: #F4C9C9;
  top: 45%;
  z-index: 1;
}
.fv--top {
  width: 100%;
  height: 45%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/fv_slide_top.png) repeat-x 0 0;
  background-position: center;
  background-size: contain;
  animation: bg-tb 60s linear infinite;
}
@media screen and (max-width: 1024px) {
  .fv--top {
    background-size: cover;
  }
}
.fv--bottom {
  width: 100%;
  height: 45%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/fv_slide_bottom.png) repeat-x 0 0;
  background-position: center;
  background-size: contain;
  animation: bg-bt 60s linear infinite;
}
@media screen and (max-width: 1024px) {
  .fv--bottom {
    background-size: cover;
  }
}
.fv--ttlarea {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}
.fv--ttl {
  position: absolute;
  left: 5%;
  z-index: 1;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .fv--ttl {
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@keyframes bg-tb {
  from {
    background-position: top 0 left 0;
  }
  to {
    background-position: top 0 left -1061px;
  }
}
@keyframes bg-bt {
  from {
    background-position: top 0 right 0;
  }
  to {
    background-position: top 0 right -1061px;
  }
}
/* -------------------------------------
        ご予約情報
------------------------------------- */
.online {
  position: relative;
  text-align: center;
  padding: 40px 0;
  z-index: 2;
}
.online--btn {
  max-width: 350px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  background: #FEC240;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 0 10px #999898;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .online--btn {
    width: 90%;
    max-width: 350px;
  }
}
.online--btn:hover {
  box-shadow: none;
}
.online--btn a {
  display: block;
  padding: 12px;
  font-size: 1.1em;
  line-height: 1.4;
  position: relative;
  color: #333;
}
.online--btn a::after {
  content: "";
  position: absolute;
  background: url("../img/arrow_black.svg") no-repeat;
  background-position: center;
  width: 15px;
  height: 100%;
  right: 6%;
  bottom: 0;
  transition: all 0.3s;
}
.online--btn a:hover::after {
  right: 4%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .online--btn a {
    padding-bottom: 4px;
  }
}

.content {
  position: relative;
  background: #F7F7F7;
  padding: 40px 0;
  border-top: 20px solid #F4C9C9;
}
.content::before {
  content: "";
  position: absolute;
  width: 0;
  border-top: 40px solid #F4C9C9;
  border-right: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid transparent;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content::before {
    border-top: 30px solid #F4C9C9;
    border-right: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
  }
}
.content--ttl {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .content--ttl {
    font-size: 1.1em;
  }
}
.content--ttl p {
  display: inline-block;
  background: linear-gradient(transparent 60%, #FEC240 60%);
}
.content--subttl {
  text-align: center;
}
.content--subttl p {
  display: inline-block;
  position: relative;
}
.content--subttl p::before, .content--subttl p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #231815;
}
.content--subttl p::before {
  transform: rotate(-30deg);
  left: -5%;
}
.content--subttl p::after {
  transform: rotate(30deg);
  right: -5%;
}

.order {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .order {
    padding: 60px 0 40px;
  }
}
.order--select {
  margin-top: 24px;
}
.order--select-btn {
  display: flex;
  justify-content: center;
}
.order--select-btn-con {
  cursor: pointer;
  margin: 0 12px;
  max-width: 210px;
}
.order--select-img {
  width: 95%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 12px;
}

/* -------------------------------------
        メイン
------------------------------------- */
.product {
  position: relative;
}
.product--list {
  background: #FDF6F7;
}
.product--list__mother_fathergift {
  background: #FCF1EC;
}

.list {
  width: 95%;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 0 80px;
}
@media screen and (max-width: 767px) {
  .list {
    padding: 20px 0 0;
  }
}
.list--ttl {
  position: relative;
  text-align: center;
  font-size: 1.8em;
  font-weight: 700;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .list--ttl {
    font-size: 1.4em;
  }
}
.list--ttl p {
  position: relative;
  display: inline-block;
  text-align: center;
}
.list--ttl p::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 20px;
  background: url(../img/list_dec.png) repeat-x;
  background-size: contain;
  left: -10%;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
}
.list--subttl {
  position: relative;
  margin-top: 80px;
  font-size: 1.3em;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .list--subttl {
    font-size: 1.2em;
  }
}
.list--subttl::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  left: -10%;
  top: -80px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .list--subttl::before {
    width: 140px;
    height: 140px;
    top: -40px;
  }
}
.list--subttl p {
  position: relative;
  display: inline-block;
}
.list--subttl p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  background: url(../img/subttl_dec.png) repeat-x;
  background-size: contain;
  left: 0;
  bottom: -40px;
}
.list--item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 32px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .list--item {
    display: block;
  }
}
.list--weblimited {
  text-align: center;
}
.list--weblimited .weblimited--subttl {
  margin-top: 12px;
}
.list--weblimited .weblimited--subttl p {
  position: relative;
  display: inline-block;
}
.list--weblimited .weblimited--subttl p::before, .list--weblimited .weblimited--subttl p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #231815;
}
.list--weblimited .weblimited--subttl p::before {
  transform: rotate(-30deg);
  left: -5%;
}
.list--weblimited .weblimited--subttl p::after {
  transform: rotate(30deg);
  right: -5%;
}
.list--weblimited .weblimited--btn {
  background: #EB6371;
}
.list--weblimited .weblimited--btn a {
  color: #fff;
}
.list--weblimited .weblimited--btn a::after {
  content: "";
  position: absolute;
  background: url("../img/arrow_white.svg") no-repeat;
  background-position: center;
  width: 8px;
  height: 100%;
  right: 6%;
  bottom: 0;
  transition: all 0.3s;
}
.list--weblimited .weblimited--btn a:hover::after {
  right: 4%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list--weblimited .weblimited--btn a {
    padding-bottom: 4px;
  }
}

.item {
  position: relative;
  width: 45%;
  max-width: 450px;
  margin-bottom: 60px;
  padding: 0 1em 1em;
  border-top: 8px solid #E07382;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 60px;
    padding: 0 0.5em 1em;
  }
}
.item--ordericon {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
}
.item--ordericon img {
  max-width: 100%;
  height: 100%;
}
.item--img {
  margin: 16px auto;
}
.item--icon {
  display: flex;
  font-weight: 500;
}
.item--icon-mono span.ttl {
  background: #E52D8A;
  color: #fff;
  font-size: 1.1em;
  padding: 0 4px;
}
.item--icon-mono span.no {
  border: 0.5px solid #E52D8A;
  background: #fff;
  color: #E52D8A;
  padding: 0 4px;
}
.item--icon-set300 {
  margin-left: 8px;
}
.item--icon-set300 p {
  color: #fff;
  background: #A9CE52;
  padding: 0 4px;
}
.item--icon-fano {
  margin-left: 8px;
}
.item--icon-fano span.ttl {
  background: #1D50A2;
  color: #fff;
  font-size: 1.1em;
  padding: 0 4px;
}
.item--icon-fano span.no {
  border: 0.5px solid #1D50A2;
  background: #fff;
  color: #1D50A2;
  padding: 0 4px;
}
.item--icon-flozen {
  margin-left: 8px;
}
.item--icon-flozen p {
  color: #fff;
  background: #81C0E9;
  padding: 0 4px;
}
.item--icon-reizo {
  margin-left: 8px;
}
.item--icon-reizo p {
  border: 2px solid #8BD1F4;
  color: #8BD1F4;
}
.item--ttl p {
  margin: 8px 0;
  font-size: 1.1em;
  font-weight: 700;
}
.item--txt {
  margin-bottom: 16px;
}
.item--txt p {
  padding: 4px 0;
  background: #F7F7F7;
}
.item--notice {
  font-size: 0.9em;
  margin-top: 8px;
}
.item--price {
  border-top: 1px solid #231815;
  padding-top: 4px;
  margin-top: 8px;
  text-align: right;
  font-size: 1.8em;
}
.item--price span.tax {
  margin-left: 8px;
  font-size: 0.6em;
}
.item--btn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 12px;
}
.item--btn .orderbtn {
  width: 49%;
  max-width: 240px;
  padding: 12px 4px;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .item--btn .orderbtn {
    margin: 0;
  }
}
.item--btn .orderbtn:hover {
  background: #333;
}
.item--btn .orderbtn:hover a {
  color: #fff;
}
.item--btn .orderbtn a {
  display: block;
  color: #333;
}
.item--btn .orderbtn--tenpo {
  background: #fff;
  border: 1px solid #B3B3B3;
}
.item--btn .orderbtn--tenpo__w100 {
  width: 100%;
  max-width: none;
}
.item--btn .orderbtn--online {
  background: #FEC240;
}
.item--btn .orderbtn--online__w100 {
  margin-top: 8px;
  padding: 8px 4px;
}
.item--btn .orderbtn--online__w100 a {
  line-height: 1.4;
}

.online {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .online {
    padding-bottom: 40px;
  }
}
.online--catalog {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  margin-top: 40px;
}
.online--catalogimg {
  width: 40%;
  max-width: 250px;
}
.online--catalogtxt {
  margin-left: 12px;
}
.online--catalogtxt a {
  color: #E52D8A;
  font-size: 1.2em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .online--catalogtxt a {
    font-size: 1em;
  }
}
.online--point {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 30px;
}
.online--point-youmeonline {
  width: 35%;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .online--point-youmeonline {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .online--point-x5 {
    width: 55%;
  }
}
.online--notice {
  width: 95%;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 8px;
}
.online--notice p {
  font-size: 0.9em;
  color: #E52D8A;
}
.online--btnarea {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 95%;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 12px;
}
.online--btnarea .online--btn {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .online--btnarea .online--btn {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
.online--btnarea .online--btn a {
  font-size: 1em;
}

/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translateY(50px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* -------------------------------------
        注意文
------------------------------------- */
.notice {
  padding: 40px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .notice {
    font-size: 0.9em;
  }
}
.notice--txt {
  width: 95%;
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}
.notice--txt p {
  text-align: left;
  font-size: 0.9em;
}
.notice--logo {
  width: 95%;
  margin: 0 auto;
  max-width: 550px;
  text-align: center;
}

/* -------------------------------------
        スマホ版フローティングバナー
------------------------------------- */
.sp_footer_menu {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(116, 116, 116, 0.7);
}
.sp_footer_menu li {
  list-style: none;
  width: 85%;
  margin: 8px auto;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border-radius: 5px;
}
.sp_footer_menu a {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 8px 0;
  line-height: 1.5;
  color: #c70079;
  font-weight: 700;
  font-size: 1.1em;
}

/*footer*/
.sale__shoplist-btn {
  background-color: #F5F5F5;
  padding: 80px 0 50px;
}

.wrap {
  margin: 0 20px;
  position: relative;
  z-index: 2;
}

.sale__shoplist-btn h2 {
  text-align: center;
}

.sale__shoplist-btn .list {
  display: none;
}

.sale__shoplist-cont h2 {
  background-color: #D3D3D3;
  height: 70px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #fff;
}

.sale__shoplist-cont .area__parent {
  display: none;
}

.sale__shoplist-cont h3 {
  background-color: #EBEBEB;
  height: 70px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #fff;
}

.area__detail {
  display: none;
}

.area__detail > div {
  padding: 30px;
  border-bottom: 1px solid #D3D3D3;
}

.area__detail > div .ttl {
  font-size: 15px;
  margin-bottom: 16px;
}

.area__detail > div ul {
  display: flex;
}

.area__detail > div ul a {
  color: #2E3192;
  font-size: 14px;
}

.area__detail > div ul li:last-child {
  margin-left: 30px;
}

.addr {
  display: none;
}

.sale__shoplist-cont h2::before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  transition: 0.3s;
}

.sale__shoplist-cont h2::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: 0.3s;
}

.area__detail > div ul a::after {
  content: "";
  display: inline-block;
  background: url(../img/link_arrow_blue.svg) no-repeat 50% 50%/contain;
  width: 8px;
  height: 10px;
  margin-left: 10px;
  transition: 0.3s;
}

.sale__shoplist-btn h2 {
  font-weight: bold;
  font-size: 1.3em;
}

@media screen and (min-width: 1024px) {
  .area__detail {
    display: block !important;
  }
  .sale__shoplist-cont h3 {
    pointer-events: none;
  }
  .sale__shoplist-btn {
    padding: 80px 0;
    margin-bottom: 80px;
  }
  .sale__shoplist-btn .wrap {
    display: flex;
    align-items: center;
  }
  .sale__shoplist-btn h2 {
    text-align: center;
    margin-right: 194px;
    flex: none;
  }
  .sale__shoplist-btn .list {
    display: block;
    flex: none;
  }
  .sale__shoplist-btn .list dl {
    display: flex;
    margin-bottom: 20px;
  }
  .sale__shoplist-btn .list dt {
    margin-right: 50px;
    font-weight: 500;
  }
  .sale__shoplist-btn .list dd {
    margin-right: 40px;
    font-weight: 400;
  }
  .sale__shoplist-btn .list dl a {
    color: #333;
    text-decoration: underline;
  }
  .sale__bd {
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 80px;
  }
  .sale__shoplist-cont {
    width: 1000px;
    margin: 0 auto;
  }
  .sale__shoplist-cont h2 {
    display: none;
  }
  .sale__shoplist-cont .area__parent {
    display: block;
  }
  .sale__shoplist-cont h3 {
    background-color: #fff;
    height: auto;
    padding-left: 0px;
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .sale__shoplist-cont h3::before {
    content: "";
    width: 61px;
    height: 3px;
    background-color: #B40067;
    display: block;
    margin-bottom: 20px;
  }
  .area__detail {
    display: block;
    margin-bottom: 80px;
  }
  .area__detail > div:first-child {
    border-top: 1px solid #D3D3D3;
  }
  .area__detail > div {
    border-bottom: 1px solid #D3D3D3;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .area__detail > div .ttl {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
    width: 173px;
  }
  .area__detail > div ul {
    display: flex;
    width: 330px;
  }
  .area__detail > div ul a {
    color: #2E3192;
    font-size: 14px;
  }
  .area__detail > div ul li:last-child {
    margin-left: 40px;
  }
}
@media screen and (min-width: 768px) {
  .wrap {
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1023px) {
  .sale__shoplist-cont h3::after {
    content: "";
    background: url(https://www.izumi.jp/themes/custom/izumi/img/icon/arrow_black.svg) no-repeat 50% 50%/contain;
    width: 8px;
    height: 10px;
    display: block;
    position: absolute;
    right: 23px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
  }
  .sale__shoplist-cont h3.act::after {
    transform: rotate(90deg);
  }
}
/*footer*/
#s_footer .s_coNav li a,
#s_header .s_subNav a {
  transition: color 0.5s ease-out;
}

#s_footer a {
  color: #222;
}

#s_footer .s_coNav {
  padding: 0 39px;
  font-size: 0;
}

#s_footer .s_coNav li {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
  white-space: nowrap;
}

#s_footer .s_coNav li a {
  padding-right: 14px;
  background: url("../img/arrow_pink.svg") no-repeat 100% 50%/6.828px auto;
}

@media (min-width: 768px) {
  #s_footer .s_coNav {
    padding-top: 65px;
    margin-bottom: 24px;
    text-align: center;
  }
  #s_footer .s_coNav li {
    display: inline-block;
    padding: 0 1em;
  }
}
@media (max-width: 767px) {
  #s_footer .s_coNav {
    padding: 50px 39px 21px;
  }
  #s_footer .s_coNav li {
    margin-bottom: 10px;
  }
}
#s_footer .s_coSubNav {
  padding: 0 39px;
  font-size: 0;
}

#s_footer .s_coSubNav li {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  #s_footer .s_coSubNav li {
    font-size: 0.9rem;
  }
}
#s_footer .s_coSubNav li a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  #s_footer .s_coSubNav {
    text-align: center;
    color: #6f6f6f;
  }
  #s_footer .s_coSubNav li {
    display: inline-block;
    white-space: nowrap;
  }
  #s_footer .s_coSubNav li:not(:last-child):after {
    content: "|";
    display: inline-block;
    padding: 0 1.5em;
  }
  #s_footer .s_coSubNav li a {
    color: #6f6f6f;
  }
}
@media (max-width: 767px) {
  #s_footer .s_coSubNav {
    margin-bottom: 34px;
  }
  #s_footer .s_coSubNav li:last-child {
    margin-bottom: 0;
  }
}
#s_footer .s_copyright {
  padding: 89px 0 51px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #9d9d9d;
}

@media (max-width: 767px) {
  #s_footer .s_copyright {
    font-size: 0.8rem;
    padding: 19px 0 16px;
    background: #f5f5f5;
    color: #6f6f6f;
  }
}
#s_footer #s_toPageTop {
  padding: 50px;
  padding-top: 10px;
  padding-left: 10px;
  overflow: hidden;
  position: fixed;
  right: -26px;
  bottom: -26px;
  z-index: 50;
}

#s_footer #s_toPageTop button {
  width: 64px;
  height: 64px;
  overflow: hidden;
  position: relative;
  background: url("../img/pageTop.svg") no-repeat 50% 50%/64px 64px #fff;
  text-indent: -9999em;
  white-space: nowrap;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border: none;
}

#s_footer #s_toPageTop button:after {
  content: "";
  display: block;
  width: 18px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -9px;
  transform: rotate(-90deg);
  background: url("../img/arrow_black.svg") no-repeat 50% 50%/17px auto;
}

@media (max-width: 767px) {
  #s_footer #s_toPageTop {
    right: -40px;
    /*bottom: -28px*/
    bottom: 16px;
  }
  #s_footer #s_toPageTop button {
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  }
  #s_footer #s_toPageTop button:after {
    width: 6px;
    height: 36px;
    margin-left: -3px;
    background-size: 5px auto;
  }
}
.one {
  margin-left: 0 !important;
}

#tenpo,
#s_footer {
  background: #fff;
}

.area__detail > div ul {
  justify-content: flex-end;
}/*# sourceMappingURL=style-2023mothersday_fathersday.css.map */