@charset "UTF-8";
/* Color */
/* 余白 */
/* Animation 関連 */
.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

.number {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "wght" 400, "wdth" 50, "slnt" 0;
}

header {
  position: fixed;
  width: 100%;
  height: 58px;
  top: 0;
  right: 0px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.6862745098);
}

.header__inner {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
  }
}

/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
  Released under the MIT license
 */
/* 基本CSS */
ul,
div,
img {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}

#navi {
  /* position: fixed; */
  top: 0;
  left: 0;
  height: 58px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* チェックボックスを非表示 */
#navi input {
  display: none;
}

/* 左上ロゴ */
.menu-left {
  line-height: 58px;
  display: flex;
  justify-content: space-between;
  padding-right: 70px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 0;
  max-height: 58px;
}
@media screen and (min-width: 992px) {
  .menu-left {
    padding-right: 10px;
    width: 550px;
  }
}
.menu-left .logo {
  background: #AF1754;
  padding: 0 30px;
}

/* 上部メニュー */
.menu {
  /* float: right; */
  display: flex;
}

.menu-parent {
  float: left;
  margin-right: 10px;
  padding: 0 1rem;
  line-height: 40px;
  font-size: 17px;
  white-space: nowrap;
  background-color: #AF1754;
  border-radius: 7px;
}

.menu-parent a,
.menu-parent a:hover {
  color: #FFF;
  padding: auto 10px;
  text-decoration: none;
}

/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}

/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 620px) {
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    padding: 0px 20px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}
/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}

.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-top: 10px;
  width: auto;
  box-sizing: border-box;
  padding: 0px 20px;
}

/* パソコン用 */
@media screen and (min-width: 620px) {
  .menu-parent:hover .menu-child,
  .menu-child:hover {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 620px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    position: relative;
    padding: 0 20px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type=checkbox]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
    color: #fff;
  }
  #navi input[type=checkbox]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  font-size: 14px;
  border-bottom: 1px solid #DDD;
  min-height: 40px;
  background-color: #AF1754;
  padding: 5px 20px;
}

.menu-child li:first-child {
  margin-top: 2px;
  border-radius: 10px 10px 0 0;
}

/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
  border-radius: 0 0 10px 10px;
}

.menu-child li i {
  margin-right: 3px;
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}

@media screen and (max-width: 620px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  #navibtn span {
    display: block;
    width: 58px;
    height: 58px;
    background-color: #AF1754;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left: 17px;
    content: "";
    width: 24px;
    height: 2px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top: 19px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top: 28px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 17px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom: 28px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 29px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}
.heading {
  display: block;
  position: relative;
  max-width: 375px;
  text-align: center;
  margin: 0 auto 40px;
  color: #AF1754;
  font-size: 1.625rem;
}
.heading span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  padding-bottom: 2rem;
  position: relative;
}
.heading span::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #AF1754;
}
.heading::before, .heading::after {
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #AF1754;
  content: "";
}
.heading::before {
  bottom: 10%;
  right: -3rem;
  transform: rotate(-50deg);
  margin-right: 40px;
}
.heading::after {
  bottom: 10%;
  left: -3rem;
  transform: rotate(50deg);
  margin-left: 40px;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 2.3125rem;
    max-width: 600px;
  }
}

/* ランキング商品 */
.product {
  position: relative;
}
.product .ranking-icon {
  position: absolute;
  top: -40px;
  left: -10px;
  width: 70px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
}
.product.ranking-no1 .ranking-icon {
  background-image: url("../../img/common/ranking_no1.png");
}
.product.ranking-no2 .ranking-icon {
  background-image: url("../../img/common/ranking_no2.png");
}
.product.ranking-no3 .ranking-icon {
  background-image: url("../../img/common/ranking_no3.png");
}
.product .product-image {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product .product-body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product .product-body .region {
  display: inline-block;
  color: #fff;
  background-color: #AF1754;
  padding: 0.25rem 0.75rem;
  top: -1px;
  font-size: 0.75rem;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .product .product-body .region {
    font-size: 0.9375rem;
  }
}
.product .product-body .product-name {
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .product .product-body .product-name {
    font-size: 1.25rem;
  }
}
.product .product-body .product-name a {
  color: #252525;
  text-decoration: none;
}
.product .product-body .set-info {
  display: inline-block;
  font-size: 0.9375rem;
  border: 1px solid #777;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .product .product-body .set-info {
    font-size: 0.9375rem;
  }
}
.product .product-body .price {
  position: relative;
  font-size: 0.875rem;
}
.product .product-body .price::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 2rem;
  margin-left: 0.5rem;
  vertical-align: -0.4rem;
  background: transparent url(../img/common/icon_freeshipping.svg) center center no-repeat;
}
.product .product-body .price span {
  margin: 0 0.5rem;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .product .product-body .price span {
    font-size: 1.875rem;
  }
}
.product .purchase ul.links {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.product .purchase ul.links li {
  padding: 5px;
  margin-right: 0;
}
.product .purchase ul.links .col a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: block;
  padding: 5px;
  min-height: 46px;
  transition: all 0.5s ease;
}
.product .purchase ul.links .col a img {
  max-width: 100%;
  max-height: 35px;
}
.product .purchase ul.links .col a:hover {
  opacity: 0.5;
}
.product .purchase ul.links .link-fc a {
  background-color: #AD0003;
  border: 1px solid #AD0003;
}
.product .purchase ul.links .link-rt a {
  background-color: #BF0000;
  border: 1px solid #BF0000;
}
.product .purchase ul.links .link-sf a {
  background-color: #ffffff;
  border: 1px solid #9D6029;
}
.product .purchase ul.links .link-fn a {
  background-color: #ffffff;
  border: 1px solid #707070;
}
.product .purchase ul.links .link-la a {
  background-color: #ffffff;
  border: 1px solid #4EB7E9;
}

.c-button a {
  display: block;
  background: #fff;
  max-width: 310px;
  min-width: 275px;
  padding: 15px 30px 15px 20px;
  text-align: center;
  color: #AF1754;
  margin: 0 0 0 auto;
  border: 1px solid;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.c-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 50px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #AF1754;
  border-bottom: 1px solid #AF1754;
  transform: skew(45deg);
  transition: 0.3s;
}
.c-button a:hover::after {
  color: #AF1754;
  right: 20px;
  width: 50px;
  border-right: 2px solid #AF1754;
  border-bottom: 1px solid #AF1754;
}
.c-button a a, .c-button a:hover {
  color: #AF1754;
  background: #fff;
  text-decoration: none;
}

.c-list li {
  line-height: 1.5;
  padding: 0.3em 0 0.5em 1.4em;
  border-bottom: dashed 1px #fff;
  list-style-type: none !important;
  width: 100%;
}

.c-list_cap {
  text-align: left;
  margin: 24px 0;
}
.c-list_cap li {
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}

/*----------------------------
scroll_fade ｜下から上へ出現
----------------------------*/
.scroll_fade {
  transition: 2s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_fade.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.scroll_left {
  transition: 2s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.p-fv {
  position: relative;
  width: 100%;
  max-height: 460px;
  overflow: hidden;
  /* スライダー
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
}
.p-fv .slider__mv {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-fv .slider__mv ul {
  padding-left: 0;
}
.p-fv .slider {
  width: 100%;
  height: 100%;
}
.p-fv .slider .slick-img {
  width: auto;
  height: 100%;
}
.p-fv .slider .slick-img img {
  width: auto;
  height: 100%;
  max-height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .p-fv .slider .slick-img {
    max-height: 1080px;
  }
  .p-fv .slider .slick-img img {
    width: 100%;
    height: 100%;
    max-height: inherit;
  }
}
.p-fv .p-fv__title_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  width: 80%;
}
.p-fv .p-fv__title_box img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .p-fv .p-fv__title_box {
    padding: 120px;
    max-width: 970px;
  }
}
@media (min-width: 769px) {
  .p-fv {
    max-height: 1022px;
  }
  .p-fv .slider__mv {
    max-height: 1022px;
    aspect-ratio: 16/9;
  }
}
.p-fv .slider {
  /*---------- 矢印 ----------*/
}
.p-fv .slider .slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 25px;
  height: auto;
  z-index: 10;
}
.p-fv .slider .prev-arrow {
  left: 0;
}
.p-fv .slider .next-arrow {
  right: 0;
}
@media (min-width: 769px) {
  .p-fv .slider .slide-arrow {
    width: 50px;
  }
}

/*----------------
キャンペーン
----------------*/
.campaign-section {
  margin-top: 40px;
  padding-bottom: 40px;
}

.campaign {
  background-color: #AF1754;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*PCでは画像が左、テキストが右*/
}
.campaign__content {
  display: contents;
}
.campaign h2 {
  position: relative;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 1.6rem;
  padding: 0 3rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  /* 背景画像（リボン枠） */
  background-image: url("../../img/common/ribon-waku.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  order: 1;
  /* campaign.svg を ::after で追加 */
}
@media screen and (min-width: 992px) {
  .campaign h2 {
    font-size: 1.6rem;
  }
}
.campaign h2::after {
  content: "";
  position: absolute;
  width: 133px;
  /* アイコンのサイズ */
  height: 50px;
  background-image: url("../../img/common/campaign.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -44px;
  bottom: -14px;
}
@media screen and (min-width: 768px) {
  .campaign h2::after {
    width: 100px;
    min-width: 73px;
    height: 66px;
    right: 0;
    bottom: -25px;
  }
}
@media (min-width: 1200px) {
  .campaign h2::after {
    width: 180px;
    min-width: 100px;
    height: 90px;
    right: 10%;
    bottom: 0px;
  }
}
.campaign__photo {
  width: 256px;
  height: 190px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
  order: 2;
}
.campaign__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.campaign__text {
  color: #fff;
  order: 3;
}
.campaign .c-button {
  margin-top: 10px;
  order: 4;
}
@media screen and (min-width: 992px) {
  .campaign {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
    padding: 10px;
  }
  .campaign__photo {
    width: 290px;
    height: 290px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    order: 0;
  }
  .campaign__content {
    width: 68%;
    height: 290px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .campaign__content h2 {
    padding: 0 0 0 2rem;
    text-align: left;
    background-position: left;
    order: 0;
  }
  .campaign__content .campaign__text {
    order: 1;
  }
  .campaign__content .c-button {
    margin-top: auto;
    order: 2;
  }
}

.campaign-btn a {
  display: block;
  position: relative;
  margin: 15px auto;
  padding: 10px;
  width: auto;
  height: 150px;
  background: #fff;
  box-sizing: border-box;
  border: solid 5px #AF1754;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #AF1754;
  text-decoration: none;
}
.campaign-btn a::after {
  margin-left: 10px;
  content: url("../../img/common/link-arrow.png");
}
.campaign-btn a p {
  font-size: 1.35rem;
  font-weight: bold;
  padding-left: 2rem;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .campaign-btn a {
    margin: 0 auto 10px;
  }
}

.ribbon-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 177px;
  height: 91px;
  overflow: hidden;
}
.ribbon-content .ribbon {
  display: inline-block;
  position: absolute;
  padding: 5px 0;
  left: -50px;
  top: 14px;
  width: 200px;
  text-align: center;
  font-size: 15px;
  line-height: 16px;
  background: #AF1754;
  color: #fff;
  letter-spacing: 0.05em;
  transform: rotate(-30deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/*----------------
ランキング
----------------*/
.ranking-section {
  background-color: #F0F0F0;
}
.ranking-section__inner {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .ranking-section__inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-inline-start: clamp(30px, 50vw - 650px, 100%);
  }
}
.ranking-section__title {
  width: 252px;
  height: auto;
}
.ranking-section .heading-box {
  text-align: center;
  padding: 65px 0 0;
  max-width: 400px;
  min-width: 400px;
  margin: 0 auto;
}
.ranking-section .heading-box p {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .ranking-section .heading-box {
    padding: 65px 0;
  }
  .ranking-section .heading-box p {
    padding: 30px;
    margin-bottom: 20px;
  }
}
.ranking-section .heading-box .slick-nav-arrows {
  display: none;
}
@media screen and (min-width: 768px) {
  .ranking-section .heading-box .slick-nav-arrows {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
}
.ranking-section .heading-box .slick-next {
  right: calc(50% - 60px);
  width: 50px;
  height: 50px;
}
.ranking-section .heading-box .slick-prev {
  left: calc(50% - 60px);
  width: 50px;
  height: 50px;
}
.ranking-section .heading-box .slick-next:before,
.ranking-section .heading-box .slick-prev:before {
  color: #000;
}
.ranking-section .heading-box .slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.ranking-section .heading-box .slick-next:before {
  background: url(../../img/common/arrow-r.svg) !important;
  background-size: contain !important;
}
.ranking-section .heading-box .slick-prev:before {
  background: url(../../img/common/arrow-l.svg) !important;
  background-size: contain !important;
}

.section-lineup {
  overflow: hidden;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .section-lineup {
    padding: 60px 0;
  }
}
.section-lineup .inner {
  margin: 0 30px auto;
  width: 100%;
  padding-right: 4rem;
}
.section-lineup .lineup {
  position: relative;
}
.section-lineup .lineup-carousel li.item {
  position: relative;
  background-color: #fff;
  height: 630px;
  padding: 20px;
  margin-right: 24px;
}
.section-lineup .lineup-carousel img {
  display: block;
  width: 100%;
}
.section-lineup .slick-list {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .section-lineup .slick-dots {
    display: none;
  }
}
.section-lineup .dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  bottom: -40px;
  gap: 3px;
  list-style: none;
}
.section-lineup .dots-wrap li {
  width: 40px;
  height: 4px;
  margin: 0 5px;
  background: #ccc;
  cursor: pointer;
}
.section-lineup .dots-wrap li:hover,
.section-lineup .dots-wrap li.slick-active {
  background: #000;
}
.section-lineup .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.pickup-section {
  margin-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .pickup-section {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}
.pickup-section .pickup-product {
  display: flex;
}
@media screen and (min-width: 768px) {
  .pickup-section .pickup-product {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .pickup-section .pickup-product .product-name {
    font-size: 2.3125rem;
  }
}
.pickup-section .purchase-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .pickup-section .purchase-box {
    flex-direction: row;
  }
}
.pickup-section .purchase {
  flex-grow: 2;
  width: 100%;
}

.furusato-section {
  margin-top: 40px;
  padding: 80px 0;
  margin-top: 40px;
  background-color: #F0F0F0;
  border-top: solid 6px #AF1754;
}
.furusato-section article {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .furusato-section article {
    margin-bottom: 120px;
  }
}
.furusato-section article-main {
  margin-bottom: 0px;
}
.furusato-section article p {
  max-width: 900px;
  font-weight: normal;
  line-height: 2;
  margin: 0 auto;
  padding: 0 15px;
}
.furusato-section article .text-box {
  margin: 20px auto;
}
.furusato-section article img {
  width: 100%;
  border: none;
  display: block;
}
.furusato-section .frusato-title {
  width: 300px;
  padding: 2.2rem;
  border-radius: 46px;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  background-color: #AF1754;
  margin: 0 auto 40px;
}
@media screen and (min-width: 992px) {
  .furusato-section .frusato-title {
    width: 743px;
    height: auto;
    border-radius: 96px;
    font-size: 2.3125rem;
    margin: 0 auto 80px;
  }
}
.furusato-section .frusato-title-sub {
  width: 250px;
  padding: 1.6rem;
  text-align: center;
  color: #AF1754;
  background-color: #fff;
  font-size: 1rem;
  border: solid 1px #AF1754;
  margin: 0 auto 25px;
}
@media screen and (min-width: 992px) {
  .furusato-section .frusato-title-sub {
    width: 311px;
    height: auto;
    font-size: 1.25rem;
    margin: 0 auto 50px;
  }
}

/*spで改行・pcで改行なし*/
.br-sp {
  display: block;
}
@media screen and (min-width: 992px) {
  .br-sp {
    display: none;
  }
}

/*pcで改行・spで改行なし*/
.br-pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .br-pc {
    display: block;
  }
}

/*spで非表示・pcで表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 992px) {
  .sp-only {
    display: none;
  }
}

/*右寄せ*/
.right {
  margin: 0 0 0 auto;
}

.text-right {
  text-align: right;
}

/*中央寄せ*/
.center {
  margin: 0 auto;
  text-align: center;
}

/*左寄せ*/
.left {
  margin: 0 auto 0 0;
}

/*テキストサイズ*/
.text-12 {
  font-size: 1.2rem;
}

.text-24 {
  font-size: 2.4rem;
}

.text-80 {
  font-size: 4rem;
}

/*背景色*/
.bg {
  background-color: #F0F0F0;
}

/* 余白 10px毎〜50まで
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

/* ページTOPに戻る */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #252525;
  border-radius: 50%;
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

html {
  font-size: 0.875rem;
  scroll-padding-top: 80px;
}
@media (min-width: 769px) {
  html {
    font-size: 1rem;
    scroll-padding-top: 100px;
  }
}

/* メニューの高さ分下げる */
main {
  margin-top: 58px;
}

img,
video,
object {
  border: none;
  display: block;
  margin: 0 auto;
}/*# sourceMappingURL=common.css.map */