@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");
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: 1900px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

.narrow_width {
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
  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: 350px;
  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: 120px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 5vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

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

	content 
	個別のコンテンツ

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

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

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

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

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

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
} /* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 20vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 3vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
} /* for SP */
/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid_wrp .grid {
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          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: 8vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 5vw;
  }
  .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
.thiscontents_nav .navigation li {
  line-height: 1.5;
  font-size: 16px;
}
.thiscontents_nav .navigation li span {
  font-size: 14px;
  font-weight: normal;
}
.thiscontents_nav .navigation li a {
  color: #e2cb7b;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #a59456;
  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_twitter.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: 50%;
  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;
    -webkit-box-sizing: border-box;
            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;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-sizing: border-box;
            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;
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .sp_menu.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
  .sp_menu.active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        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;
    -webkit-box-sizing: border-box;
            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;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .body {
    text-align: center;
    padding-bottom: 20px;
    background-color: #000;
    -webkit-box-shadow: rgba(0, 0, 0, 0.701961) 0px 10px 10px 0px;
            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: 126px;
}
.block + .block {
  margin-top: 36px;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 16vw;
  }
  .block + .block {
    margin-top: 4vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline {
  text-align: center;
}
.headline .title {
  font-size: 45px;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: normal;
}
.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;
    padding-top: 10vw;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .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 {
  margin-bottom: 30px;
}
.content_title .title {
  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: 350px;
  margin: 0 auto;
  margin-top: 50px;
}

.btn_detail a {
  position: relative;
  display: block;
  /*background-color: #c3943c;*/
  background: linear-gradient(45deg, #ccb35c 0%, #ccb35c 45%, #feefbc 70%, #ccb35c 85%, #ccb35c 90% 100%);
  background-size: 300% 200%;
  -webkit-animation: gradient 4s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
          animation: gradient 4s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
  text-align: center;
  color: #000;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  padding: 25px 0;
  border-radius: 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 10px;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn_detail a:after {
  content: "";
  position: absolute;
  top: 39%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 7px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.3s;
}

.btn_detail a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.btn_detail a:hover::after {
  right: 10px;
}

.arw_down a:after {
  top: 41%;
  right: 15px;
  border-top: 10px solid #000;
  border-right: 7px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 7px solid transparent;
}

.arw_down a:hover:after {
  top: 45%;
  right: 15px;
}

.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;
}

/* タブレット以下 */
/* for tablet max-width: 1030px */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
  .btn_detail {
    width: 100%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .btn_detail a {
    font-size: 4.5vw;
    padding: 4vw 0;
  }
} /* 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;
  -webkit-transform: rotate(45deg);
  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 */
/*===============================================================

	_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_tablet {
  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: 7.5vw;
  }
  .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 {
  margin-left: -15px;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.txtlink a:hover {
  color: #ddd;
}
.txtlink a:after {
  position: absolute;
  content: " ";
  width: 8px;
  height: 8px;
  top: 8px;
  bottom: auto;
  left: auto;
  right: -12px;
  margin: auto;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 800px) {
  .txtlink a {
    margin-left: -3vw;
  }
  .txtlink a:after {
    width: 1.5vw;
    height: 1.5vw;
    top: 1.7vw;
    bottom: auto;
    left: auto;
    right: -3vw;
  }
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================

  	kv

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

  	共通

  ===============================================================*/
  /*-------------------------------------------------------------
  	linkarea
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
  /*-------------------------------------------------------------
  	bnr_wrp
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
  /*===============================================================

  	section_work

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

  	section_ceremony

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



  ===============================================================*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------

  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.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: 16px;
  line-height: 1.8;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
.thiscontents a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thiscontents a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
}
.thiscontents .kv {
  width: 100%;
  text-align: center;
  background-image: url("../images/kv/kv_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .kv .kv_title {
  width: 60%;
  height: auto;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .kv {
    padding: 25px 0;
  }
  .thiscontents .kv .kv_title {
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .kv {
    background-image: url("../images/kv/kv_bg_sp.jpg");
    padding: 4vw 0;
  }
  .thiscontents .kv .kv_title {
    width: 110%;
    margin-left: -4vw;
  }
}
.thiscontents .category_title {
  font-size: 28px;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  color: #e2cb7b;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .category_title {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}
.thiscontents .linkarea {
  -webkit-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
}
.thiscontents .linkarea,
.thiscontents .program_item.linkarea {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
.thiscontents .linkarea:hover,
.thiscontents .program_item.linkarea:hover {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
  z-index: 2;
}
.thiscontents .haslink {
  cursor: pointer;
}
.thiscontents .linkarea {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thiscontents .linkarea:hover {
  opacity: 0.8;
}
@media screen and (max-width: 800px) {
  .thiscontents .linkarea:hover,
  .thiscontents .program_item.linkarea:hover {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .thiscontents .linkarea:hover {
    opacity: 1;
  }
}
.thiscontents .bnr_wrp {
  width: 700px;
  height: auto;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}
.thiscontents .bnr_wrp img {
  margin-top: 10px;
}
.thiscontents .bnr_wrp a:hover img {
  opacity: 0.6;
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thiscontents .bnr_wrp.btn_txt {
  color: #fff;
}
.thiscontents .text-upper {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.thiscontents .text-upper::before,
.thiscontents .text-upper::after {
  position: absolute;
  top: 5px;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 0px;
  height: 20px;
  border-left: 1px solid #fff;
  margin: auto;
}
.thiscontents .text-upper::before {
  left: 0;
  -webkit-transform: rotate(-38deg);
          transform: rotate(-38deg);
}
.thiscontents .text-upper::after {
  right: 0;
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
}
@media screen and (max-width: 1030px) {
  .thiscontents .bnr_wrp {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .bnr_wrp {
    width: 80%;
    margin: 0 auto;
    margin-top: 10vw;
  }
  .thiscontents .bnr_wrp a:hover img {
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    z-index: 2;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .thiscontents .text-upper {
    font-size: 4vw;
  }
}
.thiscontents .section_work {
  background: #222;
  background-image: url("../images/bg_decoration.png");
  background-repeat: no-repeat;
  background-size: 280px auto;
  background-position: center top;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .section_work .grid {
  background-color: #000;
  position: relative;
}
.thiscontents .section_work .grid .work_txt {
  padding: 15px;
}
.thiscontents .section_work .grid .work_txt .copyright {
  font-size: 12px;
  line-height: 1.2;
  color: #999;
}
.thiscontents .section_work .grid .work_txt .title {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  color: #fff;
}
.thiscontents .section_work .grid .work_txt .tag_wrp {
  margin: 15px 0 0;
}
.thiscontents .section_work .grid .work_txt .tag_wrp .tag_sell, .thiscontents .section_work .grid .work_txt .tag_wrp .tag_rental {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
  padding: 2px 10px;
  color: #fff;
}
.thiscontents .section_work .grid .work_txt .tag_wrp .tag_sell {
  background-color: #786814;
}
.thiscontents .section_work .grid .work_txt .tag_wrp .tag_rental {
  background-color: #95461d;
}
.thiscontents .section_work .grid .icon_tag span {
  position: absolute;
  top: -28.5px;
  left: -10px;
  z-index: 5;
  font-size: 15px;
  color: #fff;
  background-color: #980507;
  display: inline-block;
  padding: 3px 10px;
}
.thiscontents .section_work .grid .icon_tag span:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: transparent;
  left: 0;
  bottom: -10px;
  border-top: 5px solid #500305;
  border-right: 5px solid #500305;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
}
.thiscontents .section_work .jcomstream .grid .work_txt .title {
  padding-top: 10px;
}
.thiscontents .section_work .netflix .bnr_wrp img {
  display: block;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_work .grid .work_txt {
    padding: 2.8vw;
  }
  .thiscontents .section_work .grid .work_txt .copyright {
    font-size: 3.5vw;
  }
  .thiscontents .section_work .grid .work_txt .title {
    font-size: 4.5vw;
    line-height: 1.3;
  }
  .thiscontents .section_work .grid .work_txt .tag_wrp {
    margin: 2.5vw 0 0;
  }
  .thiscontents .section_work .grid .work_txt .tag_wrp .tag_sell, .thiscontents .section_work .grid .work_txt .tag_wrp .tag_rental {
    font-size: 3vw;
    padding: 1vw;
  }
  .thiscontents .section_work .grid .icon_tag span {
    padding: 0.5vw 2vw;
    top: -5.6vw;
    font-size: 3vw;
  }
  .thiscontents .section_work .grid .icon_tag span:after {
    left: 0;
    bottom: -1.4vw;
    border-top: 0.7vw solid #500305;
    border-right: 0.7vw solid #500305;
    border-bottom: 0.7vw solid transparent;
    border-left: 0.7vw solid transparent;
  }
  .thiscontents .section_work .jcomstream .grid .work_txt .title {
    padding-top: 2.5vw;
  }
}
.thiscontents .section_ceremony {
  background: #111;
  background-image: url("../images/bg_decoration.png");
  background-repeat: no-repeat;
  background-size: 280px auto;
  background-position: center top;
}
.thiscontents .section_ceremony .ceremony_wrp {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 60px;
  margin-top: 40px;
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .section_ceremony .ceremony_wrp .item_txt {
  text-align: center;
}
.thiscontents .section_ceremony .ceremony_wrp .item_txt .title {
  font-size: 28px;
  color: #e2cb7b;
}
.thiscontents .section_ceremony .ceremony_wrp .item_txt .date {
  font-size: 18px;
  font-weight: bold;
}
.thiscontents .section_ceremony .ceremony_wrp .item_txt .txtlink {
  margin-top: 20px;
}
.thiscontents .section_ceremony .ceremony_wrp .item_txt .about {
  font-size: 18px;
  margin-top: 20px;
}
.thiscontents .section_ceremony .ceremony_wrp .item_txt.tv_program {
  text-align: left;
}
.thiscontents .section_ceremony .ceremony_wrp .btn_txt {
  text-align: center;
  margin-top: 20px;
}
.thiscontents .section_ceremony .ceremony_wrp .btn_txt .text-upper {
  color: #e2cb7b;
}
.thiscontents .section_ceremony .ceremony_wrp .btn_txt .text-upper::before,
.thiscontents .section_ceremony .ceremony_wrp .btn_txt .text-upper::after {
  border-left: 1px solid #e2cb7b;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_ceremony .ceremony_wrp {
    padding-top: 10vw;
    margin-top: 10vw;
  }
  .thiscontents .section_ceremony .ceremony_wrp .item_txt .title {
    font-size: 5.5vw;
  }
  .thiscontents .section_ceremony .ceremony_wrp .item_txt .date {
    font-size: 4.5vw;
  }
  .thiscontents .section_ceremony .ceremony_wrp .item_txt .txtlink {
    margin-top: 5vw;
  }
  .thiscontents .section_ceremony .ceremony_wrp .item_txt .about {
    font-size: 4.5vw;
    margin-top: 5vw;
  }
  .thiscontents .section_ceremony .ceremony_wrp .btn_txt {
    margin-top: 5vw;
  }
}
/*===============================================================

	program_item

===============================================================*/
.section_master_list {
  background: #222;
  background-image: url("../images/bg_decoration.png");
  background-repeat: no-repeat;
  background-size: 280px auto;
  background-position: center top;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP */
  /*-------------------------------------------------------------
  	program_item txt	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	noimage	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	show_more_btn	
  -------------------------------------------------------------*/
  /*===============================================================

  	no_data_box

  ===============================================================*/
  /* タブレット以下 */
  /* for TABLET */
  /* SP向けレイアウトの指定：～736px */
  /* for SP */
  /*===============================================================

  	program_list_title

  ===============================================================*/
  /*  max-width: 1200px */
  /* タブレット以下 */
  /* for TABLET */
  /* SP向けレイアウトの指定：～736px */
  /* for SP */
}
.section_master_list .loaded {
  min-height: inherit;
  background: none;
}
.section_master_list .loaded .list {
  opacity: 1;
}
.section_master_list .content_master_list_css .program_item_list .list {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item {
  width: 23%;
  margin-right: 2.6666%;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  margin-top: 30px;
  background: #000;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.section_master_list .content_master_list_css .program_item_list .list .program_item img {
  width: 100%;
  height: auto;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item:nth-child(4n) {
  margin-right: 0;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item:hover {
  opacity: 0.7;
  cursor: pointer;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .thumb_block, .section_master_list .content_master_list_css .program_item_list .list .program_item .info_block {
  width: 100%;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .thumb_block img {
  width: 100%;
  height: 147px;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .info_block {
  padding: 15px 15px 20px 15px;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_icon {
  margin-right: 10px;
  width: 24%;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_icon img {
  width: 100%;
  border: 1px solid #F8F8F8;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_txt {
  width: 70%;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_txt .channel_name {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_txt .schedule {
  font-size: 14px;
  font-weight: bold;
  margin-right: 0.5em;
}
@media screen and (max-width: 1030px) {
  .section_master_list {
    background-size: 240px auto, auto auto;
  }
  .section_master_list .content_master_list_css .program_item_list .list {
    margin-top: 20px;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item, .section_master_list .content_master_list_css .program_item_list .list .program_item:nth-child(4n) {
    width: 31%;
    margin-right: 3.5%;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item:nth-child(3n) {
    margin-right: 0;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .thumb_block img {
    height: 142px;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info {
    margin-top: 2vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .channel_icon {
    width: 6.8vw;
  }
}
@media screen and (max-width: 800px) {
  .section_master_list {
    background-size: 34vw auto, auto auto;
  }
  .section_master_list .content_master_list_css .program_item_list {
    margin-top: 0;
  }
  .section_master_list .content_master_list_css .program_item_list .list {
    margin-top: 0;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item,
  .section_master_list .content_master_list_css .program_item_list .list .program_item:nth-child(3n),
  .section_master_list .content_master_list_css .program_item_list .list .program_item:nth-child(4n) {
    width: 48%;
    margin-right: 4%;
    margin-top: 5vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item:nth-child(2n) {
    margin-right: 0;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item + .program_item {
    margin-top: 5vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .thumb_block, .section_master_list .content_master_list_css .program_item_list .list .program_item .info_block {
    width: 100%;
    display: block;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .thumb_block img {
    height: 26.3vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .info_block {
    margin-top: 2vw;
    display: block;
    padding: 2vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info {
    margin-top: 2vw;
    padding-top: 3vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_icon {
    width: 15vw;
    display: none;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_txt {
    width: 100%;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_txt .channel_name {
    font-size: 3.5vw;
  }
  .section_master_list .content_master_list_css .program_item_list .list .program_item .program_info .program_info_inner .channel_txt .schedule {
    font-size: 3.5vw;
    margin-right: 0;
  }
}
.section_master_list .content_master_list_css {
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP */
}
.section_master_list .content_master_list_css .program_item .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}
.section_master_list .content_master_list_css .program_item .summary {
  display: none;
}
.section_master_list .content_master_list_css .program_item .channel_name {
  font-size: 12px;
  line-height: 1.4;
  font-weight: normal;
  margin-top: 0.2em;
  overflow: hidden;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
  word-break: break-all;
}
.section_master_list .content_master_list_css .program_item .schedule {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
}
.section_master_list .content_master_list_css .program_item .schedule span {
  font-size: 11px;
  line-height: 1.6;
  padding: 1px 5px;
  display: block;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  width: 70px;
  text-align: center;
  background: #E73416;
}
.section_master_list .content_master_list_css .program_item .copyright {
  font-size: 11px;
  line-height: 1.3;
  margin-top: 10px;
  padding: 0 10px 10px 10px;
  color: #999;
}
@media screen and (max-width: 800px) {
  .section_master_list .content_master_list_css .program_item .title {
    font-size: 4vw;
  }
  .section_master_list .content_master_list_css .program_item .program_info .channel_name {
    font-size: 2.5vw;
    margin-top: 0em;
    line-height: 1.4;
  }
  .section_master_list .content_master_list_css .program_item .program_info .schedule {
    font-size: 3vw;
    margin-top: 1.5vw;
    line-height: 1.2;
  }
  .section_master_list .content_master_list_css .program_item .program_info .schedule span {
    font-size: 2.5vw;
    line-height: 4.5vw;
    padding: 0;
    margin-right: 0;
    width: 16vw;
  }
  .section_master_list .content_master_list_css .program_item .copyright {
    width: 100%;
    font-size: 2.5vw;
    margin-top: 3vw;
  }
}
.section_master_list .thumb_block.noimage {
  border: solid 1px #626262;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP */
}
.section_master_list .thumb_block.noimage img {
  width: 100%;
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
}
@media screen and (max-width: 1030px) {
  .section_master_list .thumb_block.noimage img {
    height: 24vw;
  }
}
@media screen and (max-width: 800px) {
  .section_master_list .thumb_block.noimage img {
    height: 40vw;
  }
}
.section_master_list .show_more_btn {
  margin: 0 auto;
  margin-top: 40px;
  padding-top: 40px;
  /* タブレット以下 */
  /* for TABLET */
  /* SP向けレイアウトの指定：～736px */
  /* for SP */
}
.section_master_list .show_more_btn a {
  display: block;
  margin: 0 auto;
  width: 360px;
  text-align: center;
  /*border: solid 1px #999;*/
  color: #000;
  background: linear-gradient(45deg, #ccb35c 0%, #ccb35c 45%, #feefbc 70%, #ccb35c 85%, #ccb35c 90% 100%);
  background-size: 300% 200%;
  -webkit-animation: gradient 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
          animation: gradient 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  padding: 25px 0;
  border-radius: 1px;
  position: relative;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 10px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 10px;
}
.section_master_list .show_more_btn a:hover {
  opacity: 0.8;
  /*text-decoration: none;
  background: #d5ad62;
  color: #000;
  /*border: solid 1px #333;*/
}
.section_master_list .show_more_btn a::after {
  content: "";
  position: absolute;
  top: 41%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 10px solid #000;
  border-right: 7px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 7px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.3s;
}
.section_master_list .show_more_btn a:hover::after {
  border-top: 10px solid #000;
}
.section_master_list .show_more_btn a.up_arw::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #333;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  -webkit-transform: translate(4em, -5px);
          transform: translate(4em, -5px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_master_list .show_more_btn a.up_arw:hover::after {
  border-bottom: 10px solid #fff;
}
.section_master_list .show_more_btn a.right_arw::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #333;
  border-right: 10px solid transparent;
  -webkit-transform: translate(4em, 0);
          transform: translate(4em, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_master_list .show_more_btn a.right_arw:hover::after {
  border-left: 10px solid #fff;
}
@media screen and (max-width: 1030px) {
  .section_master_list .show_more_btn {
    margin-top: 3.88vw;
    padding-top: 3.88vw;
  }
  .section_master_list .show_more_btn a {
    width: 40vw;
    padding: 2.5vw 0;
  }
}
@media screen and (max-width: 800px) {
  .section_master_list .show_more_btn {
    margin-top: 5vw;
    padding-top: 5vw;
    width: 100%;
  }
  .section_master_list .show_more_btn a {
    width: 90%;
    font-size: 4vw;
    padding: 5vw 0;
  }
}
.section_master_list .no_data_box {
  background: #fafafa;
  padding: 60px 0;
  text-align: center;
}
.section_master_list .no_data_box p {
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .section_master_list .no_data_box {
    padding: 10vw 0;
  }
  .section_master_list .no_data_box p {
    font-size: 4vw;
  }
}
.section_master_list .program_list_title {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  background: repeating-linear-gradient(to top, #fff, #ccc);
  -webkit-background-clip: text;
  color: transparent;
}
.section_master_list .program_list_subtitle {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  color: #e2cb7b;
  margin-top: 15px;
}
@media screen and (max-width: 1200px) {
  .section_master_list .program_list_title {
    font-size: 42px;
  }
}
@media screen and (max-width: 1030px) {
  .section_master_list .program_list_title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 800px) {
  .section_master_list .program_list_title {
    font-size: 7vw;
    margin-top: 2vw;
    line-height: 1.3;
  }
  .section_master_list .program_list_subtitle {
    font-size: 6vw;
    margin-top: 8vw;
    letter-spacing: 0.1em;
  }
  .section_master_list .list_past .program_list_title {
    margin-top: 0;
  }
}

.thiscontents {
  /*===============================================================

  	howto

  ===============================================================*/
}
.thiscontents .howto {
  color: #000;
  background: #F7F7F7;
  font-family: "Noto Sans JP", sans-serif !important;
  /* for TABLET */
  /* for SP */
  /*===============================================================

  	howto_headline

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

  	howto_content

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

  	howto_flex

  ===============================================================*/
  /* for SP */
  /*===============================================================

  	howto_block

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

  	link_announce

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

  	howto_accordion

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

  	jcom_btn

  ===============================================================*/
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.thiscontents .howto img {
  width: 100%;
  height: auto;
}
.thiscontents .howto .howto_inner {
  padding: 80px 50px;
  background: #f3f3f3;
}
.thiscontents .howto .howto_inner .howto_note {
  font-size: 12px;
  line-height: 1.6;
}
.thiscontents .howto .howto_inner .howto_link {
  color: #E93817;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .thiscontents .howto .howto_link:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_inner {
    padding: 8vw 5vw;
  }
  .thiscontents .howto .howto_inner .howto_note {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_inner {
    padding: 10vw 5vw;
  }
  .thiscontents .howto .howto_inner .howto_note {
    font-size: 3vw;
  }
  .thiscontents .howto .howto_inner .howto_pc {
    display: none;
  }
}
.thiscontents .howto .howto_headline {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto .howto_headline + * {
  margin-top: 50px;
}
.thiscontents .howto .howto_headline::before, .thiscontents .howto .howto_headline::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: calc((100% - 300px) / 2);
  height: 3px;
  background: #000;
}
.thiscontents .howto .howto_headline::before {
  left: 0;
}
.thiscontents .howto .howto_headline::after {
  right: 0;
}
.thiscontents .howto .howto_headline .howto_subtitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
.thiscontents .howto .howto_headline .howto_title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_headline + * {
    margin-top: 5vw;
  }
  .thiscontents .howto .howto_headline::before, .thiscontents .howto .howto_headline::after {
    width: calc((100% - 30vw) / 2);
  }
  .thiscontents .howto .howto_headline .howto_subtitle {
    font-size: 2vw;
  }
  .thiscontents .howto .howto_headline .howto_title {
    font-size: 3vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_headline + * {
    margin-top: 10vw;
  }
  .thiscontents .howto .howto_headline::before, .thiscontents .howto .howto_headline::after {
    border-width: 1px;
    width: calc((100% - 55vw) / 2);
  }
  .thiscontents .howto .howto_headline .howto_subtitle {
    font-size: 4.5vw;
  }
  .thiscontents .howto .howto_headline .howto_title {
    font-size: 6vw;
  }
}
.thiscontents .howto .howto_content {
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto .howto_content + .howto_content {
  margin-top: 80px;
}
.thiscontents .howto .howto_content .howto_content_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #222;
}
.thiscontents .howto .howto_content .howto_content_title_icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.thiscontents .howto .howto_content .howto_content_title + * {
  margin-top: 20px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_content + .howto_content {
    margin-top: 8vw;
  }
  .thiscontents .howto .howto_content .howto_content_title {
    font-size: 2.2vw;
  }
  .thiscontents .howto .howto_content .howto_content_title_icon {
    width: 4vw;
    height: 4vw;
    margin-right: 1vw;
  }
  .thiscontents .howto .howto_content .howto_content_title + * {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_content + .howto_content {
    margin-top: 10vw;
  }
  .thiscontents .howto .howto_content .howto_content_title {
    font-size: 4.5vw;
  }
  .thiscontents .howto .howto_content .howto_content_title_icon {
    width: 8vw;
    height: 8vw;
    margin-right: 2vw;
  }
  .thiscontents .howto .howto_content .howto_content_title + * {
    margin-top: 5vw;
  }
}
.thiscontents .howto .howto_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.thiscontents .howto .howto_flex_item {
  width: 48%;
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .thiscontents .howto .howto_flex_item {
    width: 100%;
  }
}
.thiscontents .howto .howto_block {
  background: #fff;
  min-height: 250px;
  padding: 30px;
  border-radius: 5px;
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto .howto_block .howto_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.thiscontents .howto .howto_block .howto_detail + * {
  margin-top: 30px;
}
.thiscontents .howto .howto_block .howto_detail .howto_detail_img img {
  width: auto;
  height: 80px;
}
.thiscontents .howto .howto_block .howto_detail_txt {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 20px;
  font-size: 16px;
}
.thiscontents .howto .howto_block .howto_detail_txt .howto_link {
  font-weight: bold;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_block {
    padding: 3vw;
    min-height: 31.6vw;
  }
  .thiscontents .howto .howto_block .howto_detail + * {
    margin-top: 3vw;
  }
  .thiscontents .howto .howto_block .howto_detail_img img {
    height: 8vw;
  }
  .thiscontents .howto .howto_block .howto_detail_txt {
    padding-left: 2vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_block {
    min-height: auto;
    padding: 5vw;
  }
  .thiscontents .howto .howto_block + * {
    margin-top: 5vw;
  }
  .thiscontents .howto .howto_block .howto_detail_img img {
    height: 15vw;
  }
  .thiscontents .howto .howto_block .howto_detail_txt {
    padding-left: 5vw;
    font-size: 3.6vw;
  }
}
.thiscontents .howto .link_announce {
  padding: 0 30px 30px;
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto .link_announce .link_txt_block {
  line-height: 2;
  text-align: center;
}
.thiscontents .howto .link_announce .link_txt_block .title {
  font-size: 20px;
  font-weight: bold;
  color: #ff0000;
}
.thiscontents .howto .link_announce .link_txt_block .txt {
  font-size: 15px;
}
.thiscontents .howto .link_announce .jcom_btn {
  width: auto;
  margin: 0 auto;
  max-width: 400px;
  margin-top: 40px;
}
.thiscontents .howto .link_announce .jcom_btn a {
  padding: 14px 60px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.thiscontents .howto .link_announce .simpe_notes_block {
  margin: 5px auto 14px;
  text-align: center;
}
.thiscontents .howto .link_announce .simpe_notes_link {
  color: #000;
  position: relative;
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  margin: auto;
  font-weight: bold;
}
.thiscontents .howto .link_announce .simpe_notes_link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.thiscontents .howto .link_announce .simpe_notes_link::after {
  content: "";
  display: inline-block;
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg);
  width: 16px;
  height: 16px;
  margin-left: 5px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .link_announce .link_txt {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .link_announce {
    padding: 0 0vw 15vw;
  }
  .thiscontents .howto .link_announce .link_txt_block {
    font-size: 3.5vw;
    line-height: 1.6;
    text-align: left;
  }
  .thiscontents .howto .link_announce .link_txt_block .title {
    font-size: 3.9vw;
    padding-bottom: 2vw;
  }
  .thiscontents .howto .link_announce .link_txt_block .txt {
    font-size: 3.5vw;
    line-height: 1.6;
    text-align: left;
  }
  .thiscontents .howto .link_announce .jcom_btn {
    max-width: 100%;
    margin-top: 5vw;
    width: 100%;
  }
  .thiscontents .howto .link_announce .btn_link_detail a {
    padding: 3.5vw 10vw !important;
    line-height: 1.2;
  }
  .thiscontents .howto .link_announce .simpe_notes_block {
    margin: 0vw auto 5vw;
  }
  .thiscontents .howto .link_announce .link_txt_block {
    font-size: 3.5vw;
    line-height: 1.6;
    text-align: left;
  }
  .thiscontents .howto .link_announce .link_txt_block .title {
    font-size: 3.9vw;
    padding-bottom: 2vw;
  }
  .thiscontents .howto .link_announce .link_txt_block .txt {
    font-size: 3.5vw;
    line-height: 1.6;
    text-align: left;
  }
  .thiscontents .howto .link_announce .simpe_notes_link {
    font-size: 3.8vw;
  }
  .thiscontents .howto .link_announce .simpe_notes_link::after {
    width: 3.8vw;
    height: 3.8vw;
    margin-left: 1.5vw;
  }
}
.thiscontents .howto .howto_accordion {
  position: relative;
  /* for TABLET */
  /* for SP */
  /*---------------------------------------------------------------
  	howto_accordion_header
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	howto_accordion_body
  ---------------------------------------------------------------*/
}
.thiscontents .howto .howto_accordion + .howto_accordion {
  margin-top: 30px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_accordion + .howto_accordion {
    margin-top: 3vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_accordion + .howto_accordion {
    margin-top: 5vw;
  }
}
.thiscontents .howto .howto_accordion .howto_accordion_header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #E93817;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_title {
  color: #fff;
  font-size: 20px;
}
.thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon {
  position: relative;
  width: 30px;
  height: 30px;
}
.thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::before,
.thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.thiscontents .howto .howto_accordion .howto_accordion_header.is_active {
  border-radius: 5px 5px 0 0;
}
.thiscontents .howto .howto_accordion .howto_accordion_header.is_active .howto_accordion_icon::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
@media (hover: hover) {
  .thiscontents .howto .howto_accordion .howto_accordion_header:hover {
    background-color: #ff6549;
  }
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_accordion .howto_accordion_header {
    height: 7vw;
    padding: 0 3vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_title {
    font-size: 2vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon {
    width: 3vw;
    height: 3vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::before,
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::after {
    width: 2.5vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_accordion .howto_accordion_header {
    height: 14vw;
    padding: 0 5%;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_title {
    font-size: 4vw;
    letter-spacing: 0.05em;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon {
    width: 4vw;
    height: 4vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::before,
  .thiscontents .howto .howto_accordion .howto_accordion_header .howto_accordion_icon::after {
    width: 4vw;
  }
}
.thiscontents .howto .howto_accordion .howto_accordion_body {
  background: #fff;
  /* for TABLET */
  /* for SP */
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps,
.thiscontents .howto .howto_accordion .howto_accordion_body .accordion_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps > :not(:nth-child(3n-2)) {
  margin-left: 30px;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps > :not(:nth-child(3n-2))::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -30px;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid #ccc;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_step {
  position: relative;
  width: calc((100% - 60px) / 3);
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  line-height: 35px;
  font-weight: bold;
  text-align: center;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_txt {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .howto_note {
  display: inline-block;
  margin-top: 5px;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .accordion_txt {
  font-size: 15px;
  line-height: 1.6;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .jcom_btn {
  width: auto;
  margin: 0 auto;
  max-width: 400px;
  margin-top: 20px;
}
.thiscontents .howto .howto_accordion .howto_accordion_body .jcom_btn a {
  padding: 14px 60px;
  position: relative;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps {
    padding: 3vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps > :not(:nth-child(3n-2)) {
    margin-left: 3vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps > :not(:nth-child(3n-2))::before {
    top: 40%;
    left: -3vw;
    width: 1.8vw;
    height: 1.8vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step {
    width: calc((100% - 6vw) / 3);
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_num {
    top: -1vw;
    left: -1vw;
    width: 3.5vw;
    height: 3.5vw;
    font-size: 1.8vw;
    line-height: 3.5vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_txt {
    font-size: 1.5vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .accordion_txt {
    font-size: 1.5vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_note {
    margin-top: 0.5vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps {
    padding: 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps > :not(:nth-child(3n-2)) {
    margin-left: initial;
    margin-top: 4vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_steps > :not(:nth-child(3n-2))::before {
    display: none;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step {
    width: 100%;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_img {
    border: 1px solid #ddd;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_num {
    top: -3vw;
    left: -3vw;
    width: 8vw;
    height: 8vw;
    font-size: 3.6vw;
    line-height: 8vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_txt {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .accordion_txt {
    font-size: 3.5vw;
    padding: 5vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_step_txt + .howto_step_txt {
    margin-top: 0;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .howto_note {
    margin-top: 1vw;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .jcom_btn {
    max-width: 100%;
    margin-top: 4vw;
    width: 70%;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .jcom_btn a {
    padding: 3.5vw 10vw !important;
    line-height: 1.8;
  }
  .thiscontents .howto .howto_accordion .howto_accordion_body .btn_link_detail a {
    padding: 3.5vw 10vw !important;
    line-height: 1.3;
  }
}
.thiscontents .howto .jcom_btn {
  max-width: 450px;
  margin: 0 auto;
}
.thiscontents .howto .jcom_btn [class^=btn_] {
  font-size: 16px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .howto .jcom_btn [class^=btn_] {
    min-height: 5.8vw;
    padding: 1.4vw 4vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .howto .jcom_btn [class^=btn_] {
    min-height: 12vw;
    padding: 4vw 12vw;
    font-size: 3.6vw;
  }
}
/*# sourceMappingURL=style.css.map */