@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Contents
========================================================================== */
#page, .container {
  font-family: Meiryo, メイリオ, sans-serif !important;
}

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 800px) {
  .full_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.max_width {
  max-width: 1880px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .content_width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 780px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.btn_width {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

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

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 15vw;
    padding-bottom: 15vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

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

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 100px;
}

.content + .headline {
  margin-top: 100px;
}

.headline + .content {
  margin-top: 80px;
}

.content .content + *,
.content * + .content {
  margin-top: 70px;
}

.content_title + .content {
  margin-top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .headline + .content {
    margin-top: 80px;
  }
} /* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 10vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 8vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
} /* for SP */
/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -40px;
  box-sizing: border-box;
}
.grid_wrp .grid {
  box-sizing: border-box;
  margin-top: 40px;
}
.grid_wrp .grid .grid_wrp {
  margin-top: -20px;
}
.grid_wrp .grid .grid {
  margin-top: 20px;
}
.grid_wrp .grid_1_1 {
  width: 100%;
}
.grid_wrp .grid_2_1 {
  width: calc((100% - 40px) / 2);
}
.grid_wrp .grid_3_1 {
  width: calc((100% - 40px * 2) / 3); /* 40px * 2 = 80px */
}
.grid_wrp .grid_3_2 {
  width: calc(100% - (100% - 40px * 2) / 3 - 40px);
}
.grid_wrp .grid_4_1 {
  width: calc((100% - 40px * 3) / 4); /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - 40px * 2) / 5); /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - 40px * 5) / 6); /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - 40px * 2) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - 40px * 3) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - 40px * 2) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

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

	thiscontents_nav

===============================================================*/
.thiscontents_nav {
  width: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	navigation	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	// thiscontents_nav	ここまで
  -------------------------------------------------------------*/
}
.thiscontents_nav .navigation_wrp {
  width: 100%;
  text-align: left;
  top: 0;
  left: 0;
  height: 60px;
  background: #000;
  z-index: 999;
  padding: 0 10px;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav {
    display: none;
  }
}
.thiscontents_nav .navigation {
  max-width: 1030px;
  position: relative;
  margin: 0 auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents_nav .navigation ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  height: 60px;
}
.thiscontents_nav .navigation li {
  line-height: 1.5;
  font-size: 16px;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #ccc;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 20px;
  margin-right: 20px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.thiscontents_nav .navigation .localnav li:first-child {
  padding-left: 0;
  border-left: 0px;
}
.thiscontents_nav .navigation .localnav li.blank a {
  background: url(/special/common/images/asset/icon-blank-pc.gif) no-repeat right top; /* white	 */
  background: url(/special/common/images/asset/icon-blank-pc_bk.gif) no-repeat right top; /* black	 */
  padding-right: 20px;
}
.thiscontents_nav .navigation .sns {
  position: absolute;
  top: 0;
  right: 0;
}
.thiscontents_nav .navigation .sns li {
  margin-left: 10px;
}
.thiscontents_nav .navigation .sns li.twitter a,
.thiscontents_nav .navigation .sns li.instagram a,
.thiscontents_nav .navigation .sns li.facebook a {
  width: 30px;
  height: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: 30px 30px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.thiscontents_nav .navigation .sns li.twitter a {
  background-image: url(/special/common/images/asset/icon_x_w.png);
}
.thiscontents_nav .navigation sns li.instagram a {
  background-image: url(/special/common/images/asset/icon_instagram.png);
}
.thiscontents_nav .navigation .sns li.facebook a {
  background-image: url(/special/common/images/asset/icon_facebook.png);
}
.thiscontents_nav .navigation .sns li.twitter,
.thiscontents_nav .navigation .sns li.twitter img,
.thiscontents_nav .navigation .sns li.facebook,
.thiscontents_nav .navigation .sns li.facebook img {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav .navigation .navigation_wrp {
    display: none;
  }
}
/*===============================================================

	linebtn

===============================================================*/
.linebtn {
  position: absolute;
  top: -1000px;
}

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

	sp_menu

===============================================================*/
.sp_menu {
  display: none;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	menu-trigger
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu	 sp_sns
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu navigation
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu body	
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	// sp_menu	ここまで
  -------------------------------------------------------------*/
}
@media screen and (max-width: 1030px) {
  .sp_menu {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50px;
    left: 0;
    z-index: 200;
    background: #000;
  }
  .sp_menu .inner {
    position: relative;
    width: 100%;
  }
  .sp_menu .menu {
    width: 100px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1200;
    background: none;
    color: #fff;
    text-align: center;
    border-top: solid 0 #000;
  }
  .sp_menu .menu a {
    display: block;
    position: relative;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    text-align: right;
    padding-right: 40px;
  }
  .sp_menu .active .menu {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .sp_menu .nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
  .sp_menu .nav .nav_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 140px;
    box-sizing: border-box;
  }
  .sp_menu .nav .nav_container::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .sp_menu .menu {
    width: 80px;
    height: 40px;
  }
}
@media screen and (max-width: 320px) {
  .sp_menu .menu {
    width: 40px;
    height: 40px;
  }
  .sp_menu .menu a {
    width: 40px;
    height: 40px;
    text-indent: 100vw;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu {
    /* animation */
  }
  .sp_menu .menu-trigger, .sp_menu .menu-trigger span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .sp_menu .menu-trigger a {
    position: relative;
    font-size: 14px;
  }
  .sp_menu .menu-trigger span {
    position: absolute;
    right: 7px;
    width: 25px;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
  }
  .sp_menu .menu-trigger span:nth-of-type(1) {
    top: 10px;
  }
  .sp_menu .menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .sp_menu .menu-trigger span:nth-of-type(3) {
    bottom: 10px;
  }
  .sp_menu.active .menu-trigger span:nth-of-type(1) {
    top: 9px;
    transform: translateY(10px) rotate(-45deg);
  }
  .sp_menu.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
    transform: translateY(0) rotate(45deg);
  }
  .sp_menu.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .sp_sns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1000;
    overflow: hidden;
  }
  .sp_menu .sns ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sp_menu .sp_sns .sns li.twitter,
  .sp_menu .sp_sns .sns li.instagram,
  .sp_menu .sp_sns .sns li.facebook,
  .sp_menu .sp_sns .sns li.line {
    width: 40px;
  }
  .sp_menu .sp_sns .sns li.twitter a, .sp_menu .sp_sns .sns li.instagram a, .sp_menu .sp_sns .sns li.facebook a, .sp_menu .sp_sns .sns li.line a {
    background-image: url(/special/common/images/asset/sp_btn_twitter.png);
    background-color: #33ccff;
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    padding: 0;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    display: block;
    width: 40px;
    height: 40px;
  }
  .sp_menu .sp_sns .sns li.instagram a {
    background-size: 40px 40px;
    background-position: center center;
  }
  .sp_menu .sp_sns .sns li.twitter a {
    background-image: url(/special/common/images/asset/sp_btn_twitter.png);
    background-color: #33ccff;
  }
  .sp_menu .sp_sns .sns li.instagram a {
    background-image: url(/special/common/images/asset/sp_btn_instagram.png);
    background-color: #33ccff;
  }
  .sp_menu .sp_sns .sns li.facebook a {
    background-image: url(/special/common/images/asset/sp_btn_facebook.png);
    background-color: #3b5998;
  }
  .sp_menu .sp_sns .sns li.line a {
    background-image: url(/special/common/images/asset/sp_btn_line.png);
    background-color: #00c300;
  }
  .sp_menu .sp_sns .sns li.socialplus {
    float: left;
    margin-left: 5px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .navigation {
    background-color: #000;
  }
  .sp_menu .navigation .localnav li {
    width: 100%;
    text-align: left;
    background: #fff;
  }
  .sp_menu .navigation .localnav li a {
    position: relative;
    display: block;
    color: #333;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    padding: 3vw;
    box-sizing: border-box;
    font-size: 4vw;
    line-height: 1.5;
  }
  .sp_menu .navigation .localnav li a:hover {
    text-decoration: none;
  }
  .sp_menu .navigation .localnav li a::after {
    position: absolute;
    content: " ";
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    left: auto;
    right: 18px;
    margin: auto;
    border-top: solid 1px #999;
    border-left: solid 1px #999;
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .body {
    text-align: center;
    padding-bottom: 20px;
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.701961) 0px 10px 10px 0px;
  }
  .sp_menu .body h3 {
    border-top: solid 1px #e63311;
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }
  .sp_menu .body h3 span {
    color: #e63311;
  }
  .sp_menu .body h4 {
    border-top: solid 1px #e63311;
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
  }
  .sp_menu .body .btn a {
    width: 90%;
    margin: 0 auto;
    display: block;
    color: #fff;
    background: #222;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    border-bottom: solid 2px rgba(0, 0, 0, 0.5);
  }
  .sp_menu .body .notmember h4 {
    color: #e63311;
  }
  .sp_menu .body .notmember .btn a {
    color: #fff;
    background: #e63311;
  }
  .sp_menu .body .recommend ul {
    width: 100%;
    overflow: hidden;
  }
  .sp_menu .body .bnr {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
  .sp_menu .body .bnr img {
    width: 100%;
    height: auto;
  }
  .sp_menu .body .sp_vodlink {
    border-top: solid 1px #e63311;
    padding-top: 10px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 800px) {
  .sp_menu .body .bnr {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
}

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

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 70px;
}
.block + .block {
  margin-top: 20px;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 8vw;
  }
  .block + .block {
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline .title {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-weight: bold;
  color: #D10000;
}
.headline .title::before, .headline .title::after {
  content: "";
  flex: 1;
  border-top: 8px double;
  margin: 0 1rem;
}
.headline .title::before {
  margin: 0 2rem 0 0;
}
.headline .title::after {
  margin: 0 0 0 2rem;
}
.headline .title .deco {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  background-image: url("../images/deco/deco_headline.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.headline .lead {
  font-size: 20px;
  line-height: 1.6;
}
.headline .title + .lead {
  margin-top: 15px;
}
.headline .lead + .title {
  margin-top: 10px;
}
.content * + .headline {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .headline {
    margin-bottom: 8vw;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .headline .title::before {
    margin: 0 1rem 0 0;
  }
  .headline .title::after {
    margin: 0 0 0 1rem;
  }
  .headline .title .deco {
    position: absolute;
    top: -8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 16vw;
    height: 16vw;
    background-image: url("../images/deco/deco_headline.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .headline .lead {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 2vw;
  }
  .content * + .headline {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	content_title	
-------------------------------------------------------------*/
.content_title .title {
  text-align: center;
  font-size: 30px;
}
.content_title .lead {
  font-size: 20px;
  line-height: 1.6;
}
.content_title .title + .lead {
  margin-top: 15px;
}
.content_title .lead + .title {
  margin-top: 10px;
}
.content * + .content_title {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .content_title {
    margin-bottom: 5.5vw;
  }
  .content_title .title {
    font-size: 5vw;
  }
  .content_title .lead {
    font-size: 4vw;
    line-height: 1.5;
  }
  .content_title .title + .lead {
    margin-top: 2vw;
  }
  .content_title .lead + .title {
    margin-top: 2vw;
  }
  .content * + .content_title {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_1	
-------------------------------------------------------------*/
.lv_1 {
  margin-bottom: 20px;
}
.lv_1 .title {
  font-size: 30px;
}
.lv_1 .lead {
  font-size: 20px;
}
.lv_1 .title + .lead {
  margin-top: 5px;
}
.lv_1 .lead + .title {
  margin-top: 10px;
}
.content * + .lv_1 {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .lv_1 {
    margin-bottom: 5vw;
  }
  .lv_1 .title {
    font-size: 5vw;
  }
  .lv_1 .lead {
    font-size: 3.5vw;
    line-height: 1.5;
  }
  .lv_1 .title + .lead {
    margin-top: 1vw;
  }
  .lv_1 .lead + .title {
    margin-top: 1vw;
  }
  .content * + .lv_1 {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 {
  margin-bottom: 20px;
}
.lv_2 .title {
  font-size: 25px;
}
.lv_2 .lead {
  font-size: 18px;
}
.lv_2 .title + .lead {
  margin-top: 5px;
}
.lv_2 .lead + .title {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .lv_2 {
    margin-bottom: 3vw;
  }
  .lv_2 .title {
    font-size: 4.5vw;
  }
  .lv_2 .lead {
    font-size: 3.5vw;
  }
  .lv_2 .title + .lead {
    margin-top: 1vw;
  }
  .lv_2 .lead + .title {
    margin-top: 1vw;
  }
}

/*-------------------------------------------------------------
	lv_3	
-------------------------------------------------------------*/
.lv_3 {
  margin-bottom: 20px;
}
.lv_3 .title {
  font-size: 20px;
}
.lv_3 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_3 {
    margin-bottom: 3vw;
  }
  .lv_3 .title {
    font-size: 4.2vw;
  }
  .lv_3 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_3 .title + .lead {
    margin-top: 1vw;
  }
  .lv_3 .lead + .title {
    margin-top: 0vw;
  }
}

/*-------------------------------------------------------------
	lv_4	
-------------------------------------------------------------*/
.lv_4 {
  margin-bottom: 20px;
}
.lv_4 .title {
  font-size: 18px;
}
.lv_4 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_4 {
    margin-bottom: 3vw;
  }
  .lv_4 .title {
    font-size: 4.2vw;
  }
  .lv_4 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_4 .title + .lead {
    margin-top: 1vw;
  }
  .lv_4 .lead + .title {
    margin-top: 0vw;
  }
}

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

	btn_detail

===============================================================*/
.btn_detail {
  width: 340px;
  margin: 0 auto;
  margin-top: 30px;
}

.btn_detail a {
  position: relative;
  display: block;
  background-color: #D10000;
  text-align: center;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 0.2rem;
}

.btn_detail.blank a:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  left: auto;
  right: 16px;
  margin: auto;
  border-left: none;
  border-top: none;
  background: url(../images/assets/blank_white.svg) no-repeat center right/contain;
  border-top: none;
  border-right: none;
  transform: none;
}

.btn_detail.arrow a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  transform: rotate(135deg);
}

.btn_detail a:hover {
  text-decoration: none;
  background-color: #f00;
}

.btn_detail_red a {
  background-color: #c91b36;
}

.btn_detail_red a:hover {
  background-color: #e31838;
}

.btn_detail_black a {
  background-color: #000;
}

.btn_detail_black a:hover {
  background-color: #222;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .btn_detail a {
    font-size: 23px;
  }
} /* for tablet max-width: 1030px */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
  .btn_detail {
    width: 64%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .btn_detail a {
    font-size: 4vw;
    padding: 5vw 0;
  }
  .btn_detail.blank a:after {
    width: 5vw;
    height: 5vw;
    right: 3vw;
  }
} /* for SP max-width: 736px */
/*-------------------------------------------------------------
	flexbtn	
-------------------------------------------------------------*/
.flexbtn {
  width: auto;
  text-align: center;
}

.flexbtn a {
  display: inline-block;
  padding: 15px 40px;
}

/* タブレット以下 */
/* for tablet max-width: 1030px */
/* SP向けレイアウトの指定：～736px */
/* for SP max-width: 736px */
/*===============================================================

	PAGETOP

===============================================================*/
#btn_pagetop {
  width: 100%;
  overflow: hidden;
}

#btn_pagetop a {
  display: block;
  position: fixed;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #d2191a;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
}

#btn_pagetop a:hover {
  background-color: #c00;
}

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP max-width: 736px */
/*===============================================================

   FUNJ ヘッダ、フッター　対応用

===============================================================*/
/*-------------------------------------------------------------
    リンク色
-------------------------------------------------------------*/
.l-header .p-gnav a:hover {
  color: #E93817;
}

.p-footer a:hover,
.gnavContent_body .channel a:hover,
.gnavContent_body .genre a:hover,
.l-header .popup a:hover,
.l-header .p-gnav .p-gnav_item-program a:hover {
  color: #333;
}

/*-------------------------------------------------------------
    ナビ追従時の位置調整
-------------------------------------------------------------*/
.navigation_wrp.fixed {
  top: 79px;
  z-index: 99;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .sp_menu {
    top: 128px;
    z-index: 99;
  }
  .sp_menu.fixed {
    top: 72px;
  }
}
@media screen and (max-width: 800px) {
  .sp_menu {
    top: 24vw;
  }
  .sp_menu.fixed {
    top: 0;
  }
}
/*===============================================================

	_utils.scss 2021/9/24

===============================================================*/
.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

@media only screen and (max-width: 800px) {
  .sp_align_center {
    text-align: center !important;
  }
  .sp_align_right {
    text-align: right !important;
  }
  .sp_align_left {
    text-align: left !important;
  }
} /* for SP  */
/*===============================================================

	フロート関係

===============================================================*/
.clear {
  width: 100%;
  overflow: hidden;
}

.clearboth {
  clear: both;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

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

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
}
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
}

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

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.pc {
  display: block;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
} /* for SP max-width: 800px */
/*===============================================================

	img fig

===============================================================*/
.fig img,
.fitimg img,
.photo img {
  width: 100%;
  height: auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================

	マージン

===============================================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mb40 {
    margin-bottom: 3.74vw;
  }
  .mb50 {
    margin-bottom: 4.67vw;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media screen and (max-width: 800px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.63vw;
  }
  .mt10 {
    margin-top: 1.25vw;
  }
  .mt15 {
    margin-top: 1.88vw;
  }
  .mt20 {
    margin-top: 2.5vw;
  }
  .mt25 {
    margin-top: 3.13vw;
  }
  .mt30 {
    margin-top: 3.75vw;
  }
  .mt40 {
    margin-top: 5vw;
  }
  .mt50 {
    margin-top: 6.25vw;
  }
  .mt60 {
    margin-top: 5vw !important;
  }
  .mt70 {
    margin-top: 8.75vw;
  }
  .mt80 {
    margin-top: 10vw;
  }
  .mt90 {
    margin-top: 11.25vw;
  }
  .mt100 {
    margin-top: 12.5vw;
  }
  .mb05 {
    margin-bottom: 0.63vw;
  }
  .mb10 {
    margin-bottom: 1.25vw;
  }
  .mb15 {
    margin-bottom: 1.88vw;
  }
  .mb20 {
    margin-bottom: 2.5vw;
  }
  .mb25 {
    margin-bottom: 3.13vw;
  }
  .mb30 {
    margin-bottom: 3.75vw;
  }
  .mb40 {
    margin-bottom: 5vw;
  }
  .mb50 {
    margin-bottom: 6.25vw;
  }
} /* for SP max-width: 800px */
/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

.bg_fixed {
  background-attachment: fixed;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
} /* for tablet max-width: 940px */
/* SP向けレイアウトの指定：～800px */
/* for SP */
/*===============================================================

	テーブル

===============================================================*/
.table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  border-collapse: separate;
  border-spacing: 0;
}

.table th,
.table td {
  padding: 10px;
  border: solid 1px #ddd;
  border-bottom: 0;
  color: #000;
}

.table th {
  font-weight: bold;
  border-right: 0;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.table td {
  color: #000;
}

.table td + td {
  border-left: 0;
}

.table tr:nth-child(odd) {
  background: #fff;
}

.table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

/* タブレット */
/* for tablet */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
  .table {
    padding: 0;
    margin-top: 0px;
  }
  .table th,
  .table td {
    padding: 3vw;
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .table tr:nth-child(odd),
  .table tr:nth-child(even) {
    background: #fff;
  }
  .table_wrp_scroll {
    overflow-y: scroll;
  }
  .table_wrp_scroll .table {
    min-width: 200vw;
  }
} /* for SP */
/*===============================================================

	フォーム

===============================================================*/
/* タブレット */
/* for tablet */
/* SP */
/* for SP */
/*===============================================================

    txtlink

===============================================================*/
.txtlink {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	txtlink
  ===============================================================*/
}
.txtlink a {
  padding-left: 15px;
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.txtlink a:hover {
  color: #c00;
}
.txtlink a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 7px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
  border-top: solid 2px #c00;
  border-left: solid 2px #c00;
  transform: rotate(135deg);
}
@media screen and (max-width: 800px) {
  .txtlink a {
    padding-left: 4vw;
  }
  .txtlink a:after {
    width: 1.5vw;
    height: 1.5vw;
    top: 1vw;
    bottom: auto;
    left: 0;
    right: auto;
  }
}

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

	jcomヘッダ非表示要素

===============================================================*/
.spNavigation_menus {
  display: none;
}

.l-headerWrapper .p-snav {
  display: none;
}

.p-header .p-header_sub {
  display: none;
}

.fixedHeader {
  display: none;
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
  background-color: #FDF6ED;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents * {
  box-sizing: border-box;
  color: #6E4905;
}
.thiscontents img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.thiscontents .none {
  display: none;
}
.thiscontents h1, .thiscontents h2, .thiscontents h3, .thiscontents h4, .thiscontents h5, .thiscontents h6 {
  font-weight: bold;
  line-height: 1.6;
}
.thiscontents p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
.thiscontents a {
  transition: all 0.3s;
}
.thiscontents a:hover {
  color: #fff;
}
.thiscontents .serif {
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.thiscontents .bg_white {
  background-color: #fff !important;
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
}

.red {
  color: #D10000;
}

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

	c_accordion

===============================================================*/
.content_aco {
  position: relative;
}

.c_accordion {
  z-index: 15;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.4rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	accordion_header	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	accordion_body	
  -------------------------------------------------------------*/
  /*===============================================================
  	//	c_accordion
  ===============================================================*/
}
.c_accordion + .c_accordion {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .c_accordion + .c_accordion {
    margin-top: 5vw;
  }
}
.c_accordion .accordion_header {
  border-radius: 0.4rem;
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: #E3B765 !important;
  color: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
  padding: 30px;
  transition: all 0.3s;
  cursor: pointer;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_accordion .accordion_header:hover {
  background: #D99F34 !important;
}
.c_accordion .accordion_header .plus_minus,
.c_accordion .accordion_header .icon_arw_down {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  height: 1em;
}
.c_accordion .accordion_header .plus_minus {
  width: 2em;
  height: 2em;
  right: 30px;
  background-color: #fff;
  border-radius: 5rem;
}
.c_accordion .accordion_header .plus_minus::after, .c_accordion .accordion_header .plus_minus::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 1.2em;
  height: 2px;
  background: #D6A14D;
}
.c_accordion .accordion_header .plus_minus::before {
  transition: all 0.3s;
  transform: rotate(90deg);
}
.c_accordion .accordion_header.opened {
  border-radius: 0.4rem 0.4rem 0 0;
}
.c_accordion .accordion_header.opened .icon_arw_down {
  transform: rotate(180deg);
}
.c_accordion .accordion_header.opened .plus_minus::before {
  transform: rotate(0);
}
@media screen and (max-width: 800px) {
  .c_accordion .accordion_header {
    padding: 4vw 5vw;
    font-size: 4.2vw;
  }
  .c_accordion .accordion_header .plus_minus {
    width: 1.8em;
    height: 1.8em;
    right: 3vw;
  }
  .c_accordion .accordion_header .plus_minus::after, .c_accordion .accordion_header .plus_minus::before {
    width: 1.1em;
  }
}
.c_accordion .accordion_body {
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_accordion .accordion_body .inner {
  padding: 50px 30px;
}
.c_accordion .accordion_body .inner .product_name {
  margin-top: 18px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.c_accordion .accordion_body .inner p {
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .c_accordion .accordion_body .inner {
    padding: 5vw;
  }
  .c_accordion .accordion_body .inner .product_name {
    margin-top: 3vw;
    font-size: 2.8vw;
    font-weight: bold;
  }
  .c_accordion .accordion_body .inner p {
    font-size: 3vw;
  }
}

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

	c_carousel_slider_lineup

===============================================================*/
.c_carousel_slider_lineup {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	slider	
  -------------------------------------------------------------*/
  /*===============================================================
  	dots	
  ===============================================================*/
  /*===============================================================
  	pager	
  ===============================================================*/
  /*===============================================================

  	スライド起動しない場合

  ===============================================================*/
}
.c_carousel_slider_lineup .slider {
  max-width: 1200px;
  margin: 0 auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_carousel_slider_lineup .slider .slide {
  box-sizing: border-box;
  width: 373.3333333333px;
  padding: 0 20px;
}
.c_carousel_slider_lineup .slider .slick-list {
  margin: 0 -20px;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider_lineup .slider .slide {
    width: 100%;
    position: relative;
  }
}
.c_carousel_slider_lineup .slick-dots {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 60px;
}
.c_carousel_slider_lineup .slick-dots li {
  width: 10px;
  height: 10px;
  line-height: 0;
}
.c_carousel_slider_lineup .slick-dots button {
  padding: 0;
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F4DEB5;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  transition: 0.2s;
}
.c_carousel_slider_lineup .slick-dots .slick-active button {
  background: #E3B765;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider_lineup .slick-dots {
    gap: 2vw;
    margin-top: 10vw;
  }
  .c_carousel_slider_lineup .slick-dots li {
    width: 2vw;
    height: 2vw;
  }
}
.c_carousel_slider_lineup .slick-prev,
.c_carousel_slider_lineup .slick-next {
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  z-index: 5;
  transition: opacity 0.3s;
  height: 3.75rem;
  width: 3.75rem;
  top: -62px;
  bottom: 0;
  margin: auto;
  border: solid 2px #E3B765 !important;
  background: #E3B765 !important;
}
.c_carousel_slider_lineup .slick-prev::before,
.c_carousel_slider_lineup .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg) translate(-1px, -1px);
  transition: all 0.3s;
}
.c_carousel_slider_lineup .slick-prev:hover,
.c_carousel_slider_lineup .slick-next:hover {
  border: solid 2px #E3B765 !important;
  background: #fff !important;
}
.c_carousel_slider_lineup .slick-prev:hover::before,
.c_carousel_slider_lineup .slick-next:hover::before {
  border-right: solid 2px #E3B765;
  border-bottom: solid 2px #E3B765;
}
.c_carousel_slider_lineup .slick-prev {
  left: -76px;
}
.c_carousel_slider_lineup .slick-prev::before {
  transform: rotate(135deg) translate(-1px, -1px);
}
.c_carousel_slider_lineup .slick-next {
  right: -76px;
}
@media screen and (max-width: 1280px) {
  .c_carousel_slider_lineup .slick-prev {
    left: -40px;
  }
  .c_carousel_slider_lineup .slick-next {
    right: -40px;
  }
}
@media screen and (max-width: 800px) {
  .c_carousel_slider_lineup .slick-prev,
  .c_carousel_slider_lineup .slick-next {
    width: 3.4rem;
    top: 3.4rem;
  }
  .c_carousel_slider_lineup .slick-prev::before,
  .c_carousel_slider_lineup .slick-next::before {
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    width: 8px;
    height: 8px;
  }
  .c_carousel_slider_lineup .slick-prev {
    left: 3vw;
  }
  .c_carousel_slider_lineup .slick-next {
    right: 3vw;
  }
}
.c_carousel_slider_lineup.no_slick .slick_slider {
  display: flex;
  justify-content: flex-start;
}
.c_carousel_slider_lineup.no_slick .slide + .slide {
  padding-left: 40px;
}
.c_carousel_slider_lineup.no_slick .slide {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: content-box;
}
@media screen and (max-width: 1280px) {
  .c_carousel_slider_lineup.no_slick .slick_slider {
    width: 100%;
  }
  .c_carousel_slider_lineup.no_slick .slide {
    width: 465px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 800px) {
  .c_carousel_slider_lineup.no_slick .slick_slider {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c_carousel_slider_lineup.no_slick .slide + .slide {
    padding-left: 0;
  }
  .c_carousel_slider_lineup.no_slick .slide {
    width: 48%;
  }
  .c_carousel_slider_lineup.no_slick .slide .img_block {
    width: 100%;
  }
  .c_carousel_slider_lineup.no_slick .slide:nth-child(n+3) {
    margin-top: 8vw;
  }
}

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

	c_carousel_slider_recommend

===============================================================*/
.c_carousel_slider_recommend {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	slider	
  -------------------------------------------------------------*/
  /*===============================================================
  	thumb
  ===============================================================*/
  /*===============================================================
  	pager	
  ===============================================================*/
}
.c_carousel_slider_recommend .slider {
  margin: 0 auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_carousel_slider_recommend .slider .slide {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c_carousel_slider_recommend .slider .slide img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider_recommend .slider .slide {
    width: 100%;
    position: relative;
    aspect-ratio: 1/1;
  }
}
.c_carousel_slider_recommend .slider-for img {
  width: 100%;
}
.c_carousel_slider_recommend .slider-nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 20px;
  /* SP */
}
.c_carousel_slider_recommend .slider-nav .thumb {
  width: 100%;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.c_carousel_slider_recommend .slider-nav .thumb img {
  width: 100%;
  border: 2px solid transparent;
}
.c_carousel_slider_recommend .slider-nav .thumb.is-active {
  opacity: 1;
}
.c_carousel_slider_recommend .slider-nav .thumb.is-active img {
  border-color: #D10000;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider_recommend .slider-nav {
    gap: 1vw;
    margin-top: 3vw;
  }
}
.c_carousel_slider_recommend .slick-prev,
.c_carousel_slider_recommend .slick-next {
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  z-index: 5;
  transition: opacity 0.3s;
  height: 3.75rem;
  width: 3.75rem;
  top: 3.75rem;
  bottom: 0;
  margin: auto;
  border: solid 2px #E3B765 !important;
  background: #E3B765 !important;
}
.c_carousel_slider_recommend .slick-prev::before,
.c_carousel_slider_recommend .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg) translate(-1px, -1px);
  transition: all 0.3s;
}
.c_carousel_slider_recommend .slick-prev:hover,
.c_carousel_slider_recommend .slick-next:hover {
  border: solid 2px #E3B765 !important;
  background: #fff !important;
}
.c_carousel_slider_recommend .slick-prev:hover::before,
.c_carousel_slider_recommend .slick-next:hover::before {
  border-right: solid 2px #E3B765;
  border-bottom: solid 2px #E3B765;
}
.c_carousel_slider_recommend .slick-prev {
  left: -40px;
}
.c_carousel_slider_recommend .slick-prev::before {
  transform: rotate(135deg) translate(-1px, -1px);
}
.c_carousel_slider_recommend .slick-next {
  right: -40px;
}
@media screen and (max-width: 1280px) {
  .c_carousel_slider_recommend .slick-prev {
    left: -20px;
  }
  .c_carousel_slider_recommend .slick-next {
    right: -20px;
  }
}
@media screen and (max-width: 800px) {
  .c_carousel_slider_recommend .slick-prev,
  .c_carousel_slider_recommend .slick-next {
    width: 3rem;
    height: 3rem;
    bottom: -125vw;
  }
  .c_carousel_slider_recommend .slick-prev::before,
  .c_carousel_slider_recommend .slick-next::before {
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    width: 8px;
    height: 8px;
  }
  .c_carousel_slider_recommend .slick-prev {
    left: 60vw;
  }
  .c_carousel_slider_recommend .slick-next {
    right: 0;
  }
}

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

	section_kv

===============================================================*/
.section_kv {
  position: relative;
  overflow: hidden;
  background-image: url("../images/kv/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 54vh;
  min-height: 28vw;
}
.section_kv::before, .section_kv::after {
  content: "";
  position: absolute;
  top: 0;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
.section_kv::before {
  left: 0;
  background-image: url("../images/kv/confetti_l.svg");
}
.section_kv::after {
  right: 0;
  background-image: url("../images/kv/confetti_l.svg");
}
.section_kv .narrow_width {
  max-width: 50vw;
}
.section_kv .inner {
  position: relative;
  margin-top: 20px;
}
.section_kv .inner .title_block {
  z-index: 4;
  position: relative;
  padding: 85px 100px 120px;
  background-image: url("../images/kv/bg_title.svg");
  background-size: 85%;
  background-position: top;
  background-repeat: no-repeat;
}
.section_kv .inner .title_block .logo_gourmet {
  margin: 0 auto;
  width: 58%;
}
.section_kv .inner .title_block .title {
  margin: 32px auto 0;
  width: 100%;
}
.section_kv .inner .title_block::before, .section_kv .inner .title_block::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 6;
}
.section_kv .inner .title_block::before {
  background-image: url("../images/kv/croud_r.svg");
  width: 229px;
  height: 150px;
  top: 17px;
  right: -40px;
}
.section_kv .inner .title_block::after {
  background-image: url("../images/kv/croud_l.svg");
  width: 144px;
  height: 144px;
  bottom: 77px;
  left: -51px;
}
.section_kv .inner .deco {
  z-index: 16;
  position: absolute;
}
.section_kv .inner .deco.deco_01 {
  top: -13%;
  left: -55%;
  width: 85%;
}
.section_kv .inner .deco.deco_02 {
  bottom: 0%;
  right: -27%;
  width: 32%;
}
.section_kv .inner .deco.deco_03 {
  top: -3%;
  right: -19%;
  width: 24%;
}
.section_kv .inner .deco.deco_04 {
  top: 13%;
  right: -40%;
  width: 20%;
}
.section_kv .cloud {
  z-index: 5;
  display: flex;
  position: absolute;
  bottom: -58px;
  left: 0;
  right: 0;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 1600px) {
  .section_kv {
    min-height: 470px;
  }
  .section_kv .narrow_width {
    max-width: 800px;
  }
  .section_kv .cloud {
    bottom: -60px;
  }
  .section_kv .deco.deco_01 {
    top: -10% !important;
    left: -46% !important;
    width: 70% !important;
  }
  .section_kv .deco.deco_02 {
    bottom: -12%;
    right: -31%;
    width: 44%;
  }
  .section_kv .deco.deco_03 {
    top: -1%;
    right: -12%;
    width: 23%;
  }
}
@media screen and (max-width: 1400px) {
  .section_kv {
    max-height: 52vh;
    min-height: 29vw;
  }
}
@media screen and (max-width: 1300px) {
  .section_kv {
    min-height: 32vw;
  }
  .section_kv .narrow_width {
    max-width: 58vw;
  }
  .section_kv .deco.deco_01 {
    top: -4% !important;
    left: -45% !important;
    width: 76% !important;
  }
  .section_kv .deco.deco_02 {
    bottom: 5% !important;
    right: -20% !important;
    width: 28% !important;
  }
  .section_kv .deco.deco_03 {
    top: -3% !important;
    right: -15% !important;
    width: 24% !important;
  }
  .section_kv .deco.deco_04 {
    top: 24% !important;
    right: -34% !important;
    width: 19% !important;
  }
}
@media screen and (max-width: 1100px) {
  .section_kv {
    max-height: 36vw;
  }
  .section_kv::before, .section_kv::after {
    width: 400px;
    height: 400px;
  }
  .section_kv .narrow_width {
    max-width: 68vw;
  }
  .section_kv .narrow_width .title_block {
    padding: 54px 90px 120px;
  }
  .section_kv .narrow_width .title_block::before {
    width: 173px;
    top: -19px;
    right: -40px;
  }
  .section_kv .narrow_width .title_block::after {
    width: 117px;
    bottom: 32px;
    left: -51px;
  }
  .section_kv .deco.deco_01 {
    top: -10% !important;
    left: -33% !important;
    width: 70% !important;
  }
  .section_kv .deco.deco_02 {
    bottom: 13% !important;
    right: -11% !important;
    width: 25% !important;
  }
  .section_kv .deco.deco_03 {
    top: -3% !important;
    right: -6% !important;
    width: 21% !important;
  }
  .section_kv .deco.deco_04 {
    top: 17% !important;
    right: -21% !important;
    width: 18% !important;
  }
  .section_kv .cloud {
    bottom: -45px;
  }
}
@media screen and (max-width: 800px) {
  .section_kv {
    min-height: 64vw;
  }
  .section_kv::before, .section_kv::after {
    content: "";
    position: absolute;
    top: 0;
    width: 45vw;
    height: 45vw;
  }
  .section_kv .narrow_width {
    max-width: 100vw;
  }
  .section_kv .inner {
    margin-top: 4vw;
  }
  .section_kv .inner .title_block {
    padding: 10vw 15vw 16vw;
    background-size: 86%;
  }
  .section_kv .inner .title_block .logo_gourmet {
    width: 50%;
  }
  .section_kv .inner .title_block .title {
    margin: 5vw auto 0;
    width: 84%;
  }
  .section_kv .inner .title_block::before {
    width: 35vw;
    height: 35vw;
    top: -13vw;
    right: 1vw;
  }
  .section_kv .inner .title_block::after {
    width: 20vw;
    height: 20vw;
    bottom: 7vw;
    left: -3vw;
  }
  .section_kv .inner .deco.deco_02 {
    bottom: -14% !important;
    left: 1% !important;
    width: 21% !important;
    transform: rotate(-36deg);
  }
  .section_kv .inner .deco.deco_03 {
    top: -4% !important;
    left: 0% !important;
    width: 25% !important;
  }
  .section_kv .inner .deco.deco_04 {
    top: -4% !important;
    left: 22% !important;
    width: 13% !important;
  }
  .section_kv .inner .deco.deco_05 {
    bottom: -23%;
    right: -18%;
    width: 57%;
  }
  .section_kv .cloud {
    bottom: -2vw;
  }
}

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

	section_lead

===============================================================*/
.section_lead {
  z-index: 12;
  position: relative;
  text-align: center;
}
.section_lead .lead {
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  .section_lead .lead {
    font-size: 5.2vw;
  }
}

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

	section_category

===============================================================*/
.section_category {
  position: relative;
}
.section_category::before, .section_category::after {
  content: "";
  position: absolute;
  top: -83%;
  width: 106%;
  height: 238%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
}
.section_category::before {
  left: -25%;
  background-image: url("../images/bg_assets/bg_croud_01.png");
}
.section_category::after {
  right: -60%;
  opacity: 0.6;
  background-image: url("../images/bg_assets/bg_croud_02.png");
}
.section_category .section_inner {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.section_category .category_list {
  z-index: 8;
  position: relative;
  padding: 40px;
}
.section_category .category_list .head .title {
  text-align: center;
  font-size: 26px;
  color: #804909;
}
.section_category .category_list .list {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 34px;
}
.section_category .category_list .list .category_btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 34px;
  background-color: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 8px rgba(96, 61, 25, 0.2);
}
.section_category .category_list .list .category_btn a {
  font-size: 17px;
  color: #6E4905;
}
.section_category .category_list .list .category_btn a:hover {
  text-decoration: none;
}
.section_category .category_list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_assets/bg_category.png") no-repeat center/100%;
  z-index: -1;
}
.section_category .cap {
  z-index: 8;
  position: relative;
  margin-top: 20px;
  text-align: center;
  color: #96672A;
}
@media screen and (max-width: 1200px) {
  .section_category .conetnt_width {
    padding-left: 25px;
    padding-right: 25px;
  }
  .section_category .category_list {
    position: relative;
    padding: 44px;
  }
  .section_category .category_list .head .title {
    font-size: 24px;
  }
  .section_category .category_list .list {
    margin-top: 10px;
    gap: 18px;
  }
  .section_category .category_list .list .category_btn {
    padding: 12px 16px;
  }
  .section_category .category_list .list .category_btn a {
    font-size: 1.6vw;
    color: #6E4905;
  }
}
@media screen and (max-width: 800px) {
  .section_category {
    position: relative;
  }
  .section_category::before, .section_category::after {
    top: -32%;
    width: 79%;
    height: 152%;
  }
  .section_category::before {
    left: -9%;
  }
  .section_category::after {
    right: -26%;
  }
  .section_category .section_inner {
    padding-top: 5vw !important;
    padding-bottom: 3vw !important;
  }
  .section_category .category_list {
    padding: 5vw 8vw;
    min-height: 72vw;
  }
  .section_category .category_list .head .title {
    font-size: 5vw;
  }
  .section_category .category_list .list {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3vw;
    gap: 4vw;
  }
  .section_category .category_list .list .category_btn {
    width: 46%;
    text-align: center;
    padding: 2vw;
  }
  .section_category .category_list .list .category_btn a {
    font-size: 4vw;
  }
  .section_category .category_list::before {
    background: url("../images/bg_assets/bg_category_sp.png") no-repeat center/100%;
  }
  .section_category .cap {
    margin-top: 2.8vw;
  }
}

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

content_recommend

===============================================================*/
.content_recommend {
  /* タブレット */
  /* for TABLET */
}
.content_recommend .recommend_block + .recommend_block {
  margin-top: 80px;
  padding-top: 80px;
  border-top: solid 1px #E6BC89;
}
.content_recommend .recommend_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content_recommend .recommend_block .img_block {
  width: 45%;
}
.content_recommend .recommend_block .txt_block {
  width: 49%;
}
.content_recommend .recommend_block .txt_block .product_name {
  font-size: 34px;
}
.content_recommend .recommend_block .txt_block .price {
  margin-top: 5px;
  font-size: 64px;
  color: #D10000;
  font-weight: bold;
  line-height: 1;
}
.content_recommend .recommend_block .txt_block .price .yen {
  font-size: 38px;
  color: #D10000;
  font-weight: bold;
}
.content_recommend .recommend_block .txt_block .price .s {
  font-size: 28px;
  color: #D10000;
  font-weight: bold;
}
.content_recommend .recommend_block .txt_block .detail_head {
  margin-top: 20px;
  font-size: 26px;
  font-weight: bold;
}
.content_recommend .recommend_block .txt_block .cap {
  font-size: 14px;
}
.content_recommend .recommend_block .txt_block .btn_block {
  margin-top: 60px;
}
.content_recommend .recommend_block .txt_block .btn_block .btn_detail {
  margin: 0 auto 0 0;
}
.content_recommend .recommend_block .txt_block .btn_block .btn_captiom {
  margin-top: 8px;
  font-size: 14px;
}
@media screen and (max-width: 1300px) {
  .content_recommend .recommend_block .txt_block .product_name {
    font-size: 2.5vw;
  }
  .content_recommend .recommend_block .txt_block .price {
    margin-top: 10px;
    font-size: 4.4vw;
  }
  .content_recommend .recommend_block .txt_block .price .yen {
    font-size: 3vw;
  }
  .content_recommend .recommend_block .txt_block .price .s {
    font-size: 2.4vw;
  }
  .content_recommend .recommend_block .txt_block .detail_head {
    margin-top: 20px;
    font-size: 2vw;
  }
  .content_recommend .recommend_block .txt_block .btn_block {
    margin-top: 60px;
  }
  .content_recommend .recommend_block .txt_block .btn_block .btn_detail {
    margin: 0 auto 0 0;
  }
  .content_recommend .recommend_block .txt_block .btn_block .btn_captiom {
    margin-top: 8px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1030px) {
  .content_recommend .recommend_block .txt_block {
    width: 51%;
  }
  .content_recommend .recommend_block .txt_block .product_name {
    font-size: 2.8vw;
  }
  .content_recommend .recommend_block .txt_block .price {
    font-size: 5vw;
  }
  .content_recommend .recommend_block .txt_block .price .yen {
    font-size: 3.4vw;
  }
  .content_recommend .recommend_block .txt_block .price .s {
    font-size: 2.8vw;
  }
  .content_recommend .recommend_block .txt_block .detail_head {
    font-size: 2.6vw;
  }
  .content_recommend .recommend_block .txt_block p {
    font-size: 16px;
  }
  .content_recommend .recommend_block .txt_block .btn_block {
    margin-top: 40px;
  }
  .content_recommend .recommend_block .txt_block .btn_block .btn_detail {
    margin: 0 auto 0 0;
  }
  .content_recommend .recommend_block .txt_block .btn_block .btn_captiom {
    margin-top: 8px;
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  .content_recommend .recommend_block + .recommend_block {
    margin-top: 6vw;
    padding-top: 6vw;
    border-top: solid 1px #E6BC89;
  }
  .content_recommend .recommend_block {
    display: block;
  }
  .content_recommend .recommend_block .img_block {
    width: 100%;
  }
  .content_recommend .recommend_block .txt_block {
    margin-top: 18vw;
    width: 100%;
  }
  .content_recommend .recommend_block .txt_block .product_name {
    font-size: 5.5vw;
  }
  .content_recommend .recommend_block .txt_block .price {
    margin-top: 1vw;
    font-size: 9.5vw;
  }
  .content_recommend .recommend_block .txt_block .price .yen {
    font-size: 7vw;
  }
  .content_recommend .recommend_block .txt_block .price .s {
    font-size: 4vw;
  }
  .content_recommend .recommend_block .txt_block .detail_head {
    margin-top: 5vw;
    font-size: 4.5vw;
  }
  .content_recommend .recommend_block .txt_block .cap {
    font-size: 3.8vw;
  }
  .content_recommend .recommend_block .txt_block .btn_block {
    margin-top: 8vw;
  }
  .content_recommend .recommend_block .txt_block .btn_block .btn_detail {
    margin: 0 auto;
  }
  .content_recommend .recommend_block .txt_block .btn_block .btn_captiom {
    text-align: center;
    margin-top: 3vw;
    font-size: 3.4vw;
  }
  .content_recommend .recommend_block .txt_block p {
    font-size: 3.8vw;
  }
  .content_recommend .recommend_block.no_slider .txt_block {
    margin-top: 5vw;
  }
  .content_recommend .recommend_block.col3_slider .slick-prev {
    bottom: -172.5vw;
  }
  .content_recommend .recommend_block.col3_slider .slick-next {
    bottom: -170vw;
  }
}

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

 content_lineup

===============================================================*/
.section_uminosachi .content_lineup .lineup_block, .section_kudamono .content_lineup .lineup_block, .section_souzai .content_lineup .lineup_block {
  min-height: 670px !important;
}
@media screen and (max-width: 800px) {
  .section_uminosachi .content_lineup .lineup_block, .section_kudamono .content_lineup .lineup_block, .section_souzai .content_lineup .lineup_block {
    min-height: -moz-min-content !important;
    min-height: min-content !important;
  }
}

.content_lineup .lineup_block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  min-height: 618px;
}
.content_lineup .lineup_block .top_block {
  height: -moz-fit-content;
  height: fit-content;
}
.content_lineup .lineup_block .top_block .product_name {
  margin-top: 18px;
  font-size: 18px;
}
.content_lineup .lineup_block .bottom_block {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.content_lineup .lineup_block .bottom_block .price {
  color: #D10000;
  font-size: 28px;
  font-weight: bold;
}
.content_lineup .lineup_block .bottom_block .price .s {
  color: #D10000;
  font-size: 16px;
  font-weight: bold;
}
.content_lineup .lineup_block .bottom_block .btn_block {
  width: 100%;
}
.content_lineup .lineup_block .bottom_block .btn_block .btn_detail {
  margin-top: 20px;
  width: 250px;
}
.content_lineup .lineup_block .bottom_block .btn_block .btn_detail a {
  font-size: 20px;
}
.content_lineup .lineup_block .bottom_block .btn_block .btn_captiom {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 800px) {
  .content_lineup .lineup_block {
    min-height: 30vw;
  }
  .content_lineup .lineup_block .top_block .product_name {
    margin-top: 3vw;
    font-size: 3.5vw;
  }
  .content_lineup .lineup_block .bottom_block .price {
    font-size: 6.5vw;
  }
  .content_lineup .lineup_block .bottom_block .price .s {
    font-size: 3vw;
  }
  .content_lineup .lineup_block .bottom_block .btn_block {
    width: 100%;
  }
  .content_lineup .lineup_block .bottom_block .btn_block .btn_detail {
    margin-top: 2vw;
    width: 100%;
  }
  .content_lineup .lineup_block .bottom_block .btn_block .btn_detail a {
    padding: 4vw 2vw 4vw 0;
    font-size: 3.5vw;
  }
  .content_lineup .lineup_block .bottom_block .btn_block .btn_captiom {
    margin-top: 2vw;
    font-size: 2.8vw;
  }
}

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

	content_footer

===============================================================*/
.section_souzai .section_inner {
  padding-bottom: 0;
}

.contents_footer {
  position: relative;
  overflow: hidden;
  padding-top: 240px;
  padding-bottom: 80px;
  /* タブレット */
}
.contents_footer .logo_block {
  z-index: 3;
  position: relative;
  width: 300px;
  margin: 0 auto;
}
.contents_footer .btn_block {
  z-index: 3;
  position: relative;
  margin-top: 44px;
}
.contents_footer .btn_block .btn_detail {
  max-width: 580px;
  width: 100%;
}
.contents_footer::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: -118px;
  left: -350px;
  width: 1500px;
  transform: rotate(0deg);
  height: 1000px;
  background: url("../images/bg_assets/bg_croud_01.png");
}
.contents_footer::after {
  z-index: 2;
  content: "";
  position: absolute;
  top: -93px;
  right: -10px;
  width: 1100px;
  height: 800px;
  opacity: 0.7;
  background: url("../images/bg_assets/bg_croud_02.png");
}
@media screen and (max-width: 1030px) {
  .contents_footer {
    padding-top: 200px;
    padding-bottom: 60px;
  }
  .contents_footer .logo_block {
    z-index: 3;
    position: relative;
    width: 300px;
    margin: 0 auto;
  }
  .contents_footer .btn_block {
    z-index: 3;
    position: relative;
    margin-top: 44px;
  }
  .contents_footer .btn_block .btn_detail {
    max-width: 580px;
    width: 100%;
  }
  .contents_footer::before {
    top: -100px;
    left: -433px;
  }
  .contents_footer::after {
    z-index: 2;
    content: "";
    position: absolute;
    top: -66px;
    right: -118px;
  }
}
@media screen and (max-width: 800px) {
  .contents_footer {
    padding-top: 29vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .contents_footer .logo_block {
    z-index: 3;
    position: relative;
    width: 60vw;
    margin: 0 auto;
  }
  .contents_footer .btn_block {
    z-index: 3;
    position: relative;
    margin-top: 8vw;
  }
  .contents_footer .btn_block .btn_detail {
    max-width: 580px;
    width: 100%;
  }
  .contents_footer::before {
    top: -100px;
    left: -433px;
    width: 800px;
    height: 600px;
  }
  .contents_footer::after {
    top: -68px;
    right: -311px;
    width: 639px;
    height: 600px;
    background-size: 100%;
  }
}

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

　共通のデコレーション

===============================================================*/
.section_uminosachi, .section_niku, .section_kudamono, .section_souzai {
  position: relative;
}

.section_souzai {
  z-index: 20;
}

.section_osechi .content_recommend {
  position: relative;
}
.section_osechi .section_inner {
  padding-bottom: 160px;
}
@media screen and (max-width: 800px) {
  .section_osechi .section_inner {
    padding-bottom: 15vw;
  }
}

.section {
  /* SP */
}
.section .deco_content {
  position: absolute;
}
.section .deco_content.deco_01 {
  width: 10%;
  height: 10%;
  top: -11%;
  right: -5%;
  z-index: 16;
}
.section .deco_content.deco_05 {
  width: 47%;
  height: 40%;
  top: -10%;
  left: -28%;
}
.section .deco_content.deco_06 {
  width: 42%;
  height: 30%;
  top: 99%;
  right: -28%;
}
.section .deco_content.deco_07 {
  width: 21%;
  height: 22%;
  top: -7%;
  left: -5%;
  z-index: 18;
}
.section .deco_content.deco_08 {
  width: 11%;
  height: 10%;
  bottom: 8%;
  left: 2%;
}
.section .deco_content.deco_09 {
  width: 25%;
  height: 10%;
  top: -19%;
  right: -10%;
}
.section .deco_content.deco_10 {
  width: 33%;
  height: 10%;
  top: 7%;
  left: -8%;
}
.section .deco_content.deco_11 {
  width: 25%;
  height: 10%;
  top: -8%;
  left: -8%;
}
.section .deco_content.deco_12 {
  width: 23%;
  height: 10%;
  bottom: -2%;
  right: -5%;
}
.section .deco_content.deco_13 {
  width: 37%;
  height: 10%;
  bottom: 32%;
  left: -14%;
}
.section .deco_content.deco_14 {
  width: 11%;
  height: 10%;
  top: 0;
  left: -5%;
  z-index: 16;
}
.section .deco_content.deco_15 {
  z-index: 16;
  width: 20%;
  height: 10%;
  top: 2px;
  right: -14%;
  transform: translateY(-200px);
}
@media screen and (max-width: 800px) {
  .section .deco_content {
    position: absolute;
  }
  .section .deco_content.deco_01 {
    width: 20%;
    height: 10%;
    top: -4.2%;
    right: 1%;
  }
  .section .deco_content.deco_03 {
    width: 103%;
    height: 62%;
    bottom: -18%;
    right: -42%;
    left: auto;
  }
  .section .deco_content.deco_05 {
    width: 70%;
    height: 55%;
    top: -3%;
    left: -34%;
  }
  .section .deco_content.deco_06 {
    width: 30%;
    height: 30%;
    bottom: 12%;
    right: -8%;
  }
  .section .deco_content.deco_07 {
    width: 43%;
    height: 22%;
    top: -1.5%;
    left: -5%;
    z-index: 18;
  }
  .section .deco_content.deco_08 {
    width: 27%;
    height: 10%;
    bottom: -7%;
    left: 3%;
  }
  .section .deco_content.deco_09 {
    width: 25%;
    height: 10%;
    top: -19%;
    right: -10%;
  }
  .section .deco_content.deco_10 {
    width: 33%;
    height: 10%;
    top: 7%;
    left: -8%;
  }
  .section .deco_content.deco_11 {
    width: 41%;
    height: 10%;
    top: -3%;
    left: -8%;
  }
  .section .deco_content.deco_12 {
    width: 48%;
    height: 10%;
    bottom: -6%;
    right: -20%;
  }
  .section .deco_content.deco_13 {
    width: 65%;
    height: 10%;
    bottom: 2%;
    right: -19%;
    left: auto;
  }
  .section .deco_content.deco_14 {
    width: 16%;
    height: 10%;
    top: 0;
    left: -5%;
    z-index: 16;
  }
  .section .deco_content.deco_15 {
    pointer-events: none;
    width: 26%;
    height: 10%;
    top: 2px;
    right: -7%;
    transform: translateY(-16vw);
  }
}/*# sourceMappingURL=style.css.map */